@charset "utf-8";
body {
	font-family: alegreya, sans-serif;
	font-style: normal;
	font-weight: 400;
	margin: 0;
	line-height: 1.625;
	background-color: #f4f4f4;
	background-image: linear-gradient(blue,black,gray,blue,black,blue,gray,blue), url(images/background.jpg);
	transition: background 0.5s ease-in-out, color 0.5s ease-in-out, text-shadow 0.5s ease-in-out;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}
.header-container {
	background-size: cover;
	background-position: center center;
	color: #FFFFFF;
	padding-bottom: 10vw;
	text-align: center;
}
.header-container .site-header {
	padding: 20px 0;
	margin: 0 auto;
	max-width: 1200px;
	text-transform: uppercase;
}
.main-navigation {
	font-size: 16px;
	font-weight: 400;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	font-family: sans-serif;
	transition: color 0.5s ease-in-out;
}
/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: gray;
  font-family: inherit;
  margin: 0;
}

/* Add a darkblue background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: darkblue;
  color: white;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: left 0;
  background-color: rgba(0, 0, 0, 0.8);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a blue background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: blue;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
.main-navigation ul {
	margin: 0;
}
.main-navigation ul li {
	display: inline-block;
}
.main-navigation ul li a {
	padding: 17px 37px;
	text-decoration: none;
	display: inline-block;
	color: #fff;
}
.main-navigation ul li a:hover {
	text-decoration: underline;
}
.header-container .page-title {
	padding: 8vw 180px 0 180px;
}
.header-container .page-title h2 {
	font-size: 4.5em;
	margin-bottom: 0;
}
.page-description {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.5em;
}
.page-content {
	background-color: #fff;
	margin: -50px auto 0;
	max-width: 1000px;
	padding-top: 2em;
	column-gap: 2em;
	-webkit-box-shadow: 0 25px 40px 0 rgba(0, 0, 0, 0.05);
	box-shadow: 0 25px 40px 0 rgba(0, 0, 0, 0.05);
	padding-bottom: 2em;
	padding-right: 3em;
	padding-left: 3em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
}
.entry-content h2 {
	font-size: 3em;
}
.cta-form form {
	max-width: 490px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}
.cta-form form input {
	display: inline-block;
	width: 100%;
	padding: 18px 24px 14px;
	min-height: 35px;
	margin-bottom: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 14px;
}
.cta-form form input[type="submit"] {
	border: none;
	background-color: #A86500;
	text-shadow: 0px 0px;
	color: #FFFFFF;
	text-transform: uppercase;
}
.cta-form form input[type="submit"]:hover {
	background-color: #333333;
}
.site-footer {
	padding-top: 60px;
	padding-bottom: 60px;
	text-align: center;
	font-size: 16px;
	line-height: 1;
	font-family: sans-serif;
}
.social.menu ul {
	text-transform: uppercase;
	list-style-type: none;
	padding: 0;
	display: inline-block;
}
.social.menu ul li {
	display: inline-block;
}
.social.menu ul li a {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	text-decoration: none;
	color: rgba(168,101,0,1.00);
	font-weight: 500;
}
.social.menu ul li a:hover {
	color: #333333;
}
@media (max-width:375px){
	.header-container .page-title {
		padding-left: 0px;
		padding-right: 0px;
	}
	.header-container .page-title h2 {
		font-size: 2.5em;
	}
}
@media print {
	html, body {
		display: none;
	}
}

