/*
Theme Name: Get Ready
Author: David Rugendyke
Description: Get Ready Theme
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: getReady
*/


/*** Imports **************************/
@import url("assets/css/fonts/_fonts.css") all;
@import url("assets/css/local/_local.css") all;
@import url("assets/css/vendor/_vendor.css") all;



/*** Global ****************************/

html, body {
	padding: 0;
	margin: 0;
	color: #fff;
	font-family: 'Source Sans Pro';
	width: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	text-decoration: none;
}

a img {
	border: 0 none;
}

input {
	 outline: none;
}

iframe {
    width: 100%;
}


a:focus {
	outline: 1px solid orange;
	border-radius: 4px;
}


/*** Elements *************************/

.container {
	position: relative;
	max-width: 1112px;
	padding: 0 30px;
	margin: 0 auto;
}


/*** Accordion **********************/

.accordion {
	overflow:hidden;
}

.accordion-section-content {
	display:none;
}


/*** Header ***************************/
#header {
	position: relative;
	width: 100%;
	background: url(assets/images/header-bg.jpg) no-repeat center top #007EB1;
	height: 132px;
	font-family: Verdana, Geneva, sans-serif;
}

#header > div {
	position: relative;
	padding-top: 20px;
	display: -ms-flexbox;  /* IE 10 */
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

#header > div #logo {
	position: relative;
	-ms-flex: auto 1;
	flex: auto 1;
}

#header > div #logo > div:first-child {
	position: relative;
	margin-bottom: 10px;
}


#header > div #search {
	position: relative;
	width: 290px;
}

#header #mobile-bm {
	position: absolute;
	top: 20px;
	right: 35px;
	background-image: url(assets/images/burger-menu.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 35px;
	height: 35px;
	z-index: 13;
	display: none;
}

#header #mobile-bm.open {
	background-image: url(assets/images/burger-menu-close.png);
}

@media (max-width : 680px) {
	#header {
	    background: #16558B;
		height: auto;
	}

	#header > div {
		align-items: center;
		justify-content: center;
	}

	#header > div #logo img {
		width: 70%;
	}

	#header > div #logo .logo-title {
	    text-align: center;
	    padding-top: 5px;
	}

	#header #logo, #header #search {
		margin-bottom: 15px;
	}

	#header #mobile-bm {
	 	display: block;
	}

}

#header > div #search #links {
	position: relative;
	display: -ms-flexbox;  /* IE 10 */
	display: flex;
	justify-content: center;
	margin-top: 7px;
}

#header > div #search #links > div {
	position: relative;
	font-size: 13px;
	margin-right: 25px;
}

#header > div #search #links > div:last-child {
	margin-right: 0;
}

#header > div #search #links > div a {
	color: #fff;
}

#header > div #search #field {
	position: relative;
	margin-top: 18px;
	width: 100%;
}

#header > div #search #field input[type=text] {
	background: #fff;
	border-radius: 20px;
	color: #696969;
	font-size: 14px;
	border: 0 none;
	width: 260px;
	padding: 12px 18px;
	z-index: 1;
}

#header > div #search #field input[type=submit] {
	position: absolute;
	width: 28px;
	height: 28px;
	background: url(assets/images/icon-search.png) no-repeat #fff;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	border: 0 none;
	cursor: pointer;
	z-index: 2;
}

@media (max-width : 680px) {
	#header > div #search {
		width: 100%;
	}

	#header > div #search #field input[type="text"] {
		width: 90%;
		padding-left: 6%;
		padding-right: 6%;
	}

}


/*** Nav ***************************/

#nav {
	position: relative;
	height: 53px;
	background: url(assets/images/nav-bg.jpg) center center #f7f7f7 no-repeat;
}

#nav > div {
	position: relative;
	display: -ms-flexbox;  /* IE 10 */
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	height: 100%;

}

#nav > div > div {
	position: relative;
	color: #fff;
	font-size: 18px;
	text-align: center;
	padding: 0 24px;
	height: 100%;
	display: -ms-flexbox;  /* IE 10 */
	display: flex;
	align-items: center;
	transition: background-color 0.2s ease;
}

@media (max-width : 980px) {
	 #nav > div > div {
		 font-size: 14px;
		 padding: 0 10px;
	 }
}

#nav > div > div a {
	position: relative;
	color: #444444;
	top: 1px;
}

#nav > div > div:hover, #nav > div > div.in {
	background-color: #ff8400;
}

#nav > div > div:hover a, #nav > div > div.in a {
	color: #fff;
}

@media (max-width : 680px) {

	#nav {
		position: fixed;
		top: 0;
		right: -85%;
		width: 85%;
		background: #F7F7F7;
		height: 100%;
		z-index: 12;
		opacity: 0;
		box-shadow: -3px 0px 4px 0px rgba(0,0,0,0.31);
		transition: right 0.5s ease-in, opacity 0.5s ease-in;
	}

	#nav.open {
		right: 0;
		display: block;
		opacity: 0.97;
	}

	#nav > div {
		-ms-flex-direction: column;
		flex-direction: column;
		-ms-flex-align: start;
		align-items: flex-start;
		padding: 70px 0 30px 30px;
	}

	#nav > div > div {
		height: auto;
		padding: 15px 10%;
		width: 70%;
		font-size: 20px;
		border-radius: 30px;
	}

	#nav a {

	}

}


/*** Footer **********************/

#footer {
	position: relative;
	background-color: #fff;
	min-height: 170px;
	font-size: 16px;
	color: #888888;
	padding-bottom: 20px;
}

#footer > div {
	position: relative;
}

#footer #nav-footer {
	display: -ms-flexbox;  /* IE 10 */
	display: flex;
	margin: 40px 0 40px 0;
    position: relative;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

#footer #nav-footer > div {
	position: relative;
	padding-right: 20px;
	margin-bottom: 8px;
}

#footer a {
	color: #888888;
	white-space: nowrap;
}

#footer #nav-footer > div a:hover {
	color: #fe9321;
}

#footer #copyright {
    position: relative;
	margin-top: 20px;
	display: -ms-flexbox;  /* IE 10 */
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
}

#footer #copyright > div:first-child {
    margin-bottom: 10px;
}


.accordion, .accordion * {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}









