/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
/************************************/
/* RESET */
/************************************/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
  margin: 0;
  padding: 0;
	box-sizing: border-box;
}

img {
  width: 100%;
}

:focus {
	outline: none;
}

.clearFix {
	clear: both;
}

/************************************/
/* END RESET */
/************************************/

body {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #333;
	background: #fff;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1200px;
  position: relative;
  margin: auto;
}

.wrap960 {
  max-width: 960px;
}

.size36 { font-size: 36px; }
.size30 { font-size: 30px; }
.size20 { font-size: 20px; }

.weight300 { font-weight: 300;}
.weight700 { font-weight: 700;}

section {
	width: 100%;
	padding: 70px 0 0 0;
	background: #fff;
	position: relative;
}

/************************************/
/* GRAPHIC ELEMENTS */
/************************************/
a {
  color: #26afec;
	text-decoration: none;
}

a:hover {
	color: #26afec;
  text-decoration: underline;
}

.linkBlueBlank {
	background: linear-gradient(to bottom, rgba(38,175,236,1) 50%, rgba(38,175,236,.2) 50%);
	color: #fff;
	padding: 10px 30px;
	border-radius: 3px;
}

.linkBlueBlank:hover {
	color: #26afec;
	text-decoration: none;
}

.linkBlankBlue {
	background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, #26afec 50%);
	color: #26afec;
}

.linkBlankBlue:hover {
	color: #fff;
}

.linkAnimation {
	background-size: 100% 200%;
	-webkit-transition: all .2s ease-out;
	transition: all .2s ease-out;
}

.linkAnimation:hover {
	background-position: 0 100%;
}

/************************************/
/* END GRAPHIC ELEMENTS */
/************************************/

/************************************/
/* HEADER */
/************************************/
#header {
	position: fixed;
	width: 100%;
	background: #f2f2f2;
	box-shadow: 0 3px 5px rgba(0,0,0,.2);
	z-index: 2;
}
#header .logo {
	display: inline-block;
	max-width: 358px;
	padding: 10px 0;
}

#header ul.burger {
	display: none;
}

#header a {
	text-decoration: none;
}

#header nav.mainNav {
	float: right;
}

#header ul {
	display: inline-block;
}

#header ul:first-child {
	padding: 0 80px 0 0;
}

#header ul > li {
	position: relative;
	display: inline-block;
}

#header ul.mainLinks a {
	display: block;
	padding: 40px 25px;
	font-size: 18px;
}

#header ul.mainLinks > li > a {
	text-transform: uppercase;
}

#header ul.subLinks li {
	display: block;
	font-size: 16px;
}

#header ul.subLinks li a {
	text-transform: capitalize;
}

#header .grey {
	color: #666;
}

#header ul.offLinks li {
	padding: 10px 15px;
	font-size: 15px;
}

#header ul.offLinks li:nth-child(2) {
	text-transform: capitalize;
}


#header ul.offLinks > li:last-child::before {
	content: "";
	display: block;
	position: absolute;
	left: -2px;
	top: 0;
	width: 1px;
	height: 10px;
	background: #666;
	margin: 15px 0 0 0;
}

#header ul.offLinks > li:last-child::after {
	content: "";
	display: block;
	bottom: 0;
	width: 6px;
	height: 6px;
	border-bottom: 1px solid #666;
	border-right: 1px solid #666;
	margin: auto;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

#header ul.subLinks {
	position: absolute;
	display: none;
	min-width: 200px;
	background: #fff;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	box-shadow: 0 0 3px rgba(0,0,0,.2);
}

#header ul.offLinks ul.subLinks {
	min-width: initial;
	top: 40px;
}

#header ul.offLinks ul.subLinks li {
	padding: 0;
}

#header ul.subLinks a {
	display: block;
	padding: 10px 10px;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
}

#header ul.burger {
	position: absolute;
	top: 2px;
	right: 0;
	padding: 10px;
}

#header ul.burger li {
	background: #26afec;
	width: 36px;
	height: 2px;
	margin: 10px 0;
	box-sizing: border-box;
	display: block;
	transition: all .3s ease-out;
}

#header ul.burgerClose li:first-child {
	top: 12px;
	transform: rotate(45deg);
}

#header ul.burgerClose li:last-child {
	top: -12px;
	transform: rotate(-45deg);
}

#header ul.burgerClose li:nth-child(2) {
	opacity: 0;
}

.headerHeight {
	height: 100px;
}
/************************************/
/* END HEADER */
/************************************/

/************************************/
/* FOOTER */
/************************************/
#footer {
	padding: 70px 0 50px 0;
	text-align: center;
}

#footer ul li {
	margin: 20px 0;
}

#footer li:first-child img {
	width: auto;
}

#footer li:last-child a {
	font-size: 48px;
	margin: 0;
	color: #999;
	text-decoration: none;
}

#footerLogos {
    display: block;
}

#footerLogos ul li:first-child {
    display: block;
}

#footerLogos ul li:not(:first-child) {
    display: inline-block;
    margin: 0;
    padding: 10px;
}




/************************************/
/* END FOOTER */
/************************************/


/************************************/
/************************************/
/* TABLET */
/************************************/
/************************************/

@media (max-width:1200px) {

  .wrap, .wrap960 {
    max-width: 720px;
  }

  .size36 { font-size: 28px; }
	.size30 { font-size: 26px; }
	.size20 { font-size: 18px; }

	section {
		padding: 60px 0 0 0;
	}

  /************************************/
  /* HEADER */
  /************************************/
	#header .logo {
		max-width: 250px;
	}

	#header nav.mainNav {
		display: block;
	}

	#header ul:first-child {
		padding: 0 20px 0 0;
	}

	#header ul.mainLinks a {
		padding: 25px 10px;
	}

	.headerHeight {
		height: 70px;
	}
  /************************************/
  /* END HEADER */
  /************************************/

	/************************************/
  /* FOOTER */
  /************************************/
	#footer {
		padding: 60px 0 40px 0
	}
  /************************************/
  /* END FOOTER */
  /************************************/
}


/************************************/
/************************************/
/* MOBILE */
/************************************/
/************************************/

@media (max-width:767px) {

  .wrap, .wrap960 {
    max-width: 100%;
    padding: 0 10px;
  }

  .size36 { font-size: 24px; }
	.size30 { font-size: 22px; }
	.size20 { font-size: 16px; }

	section {
		padding: 40px 0 0 0;
	}

  /************************************/
  /* HEADER */
  /************************************/
	#header .logo {
		max-width: 200px;
	}

	#header ul.burger {
		display: block;
	}

	#header nav.mainNav {
		display: none;
		float: none;
		overflow-y: scroll;
		max-height: 80vh;
	}

	#header ul:first-child {
		width: 100%;
		padding: 20px 0 0 0;
	}

	#header ul > li {
		display: block;
		width: 100%;
		text-align: center;
	}

	#header ul:first-child > li {
		border-top: 1px solid #ccc;
	}

	#header ul:first-child > li:last-child {
		border-bottom: 1px solid #ccc;
	}

	#header ul.mainLinks a {
		padding: 10px 0;
	}

	#header ul.subLinks {
		position: relative;
	}

	#header ul.offLinks {
		width: 100%;
		margin: 20px 0 0 0;
	}

	#header ul.offLinks li {
		width: 100%;
		text-transform: uppercase;
	}

	#header ul.offLinks li:last-child::before {
		display: none;
	}

	#header ul.offLinks li:last-child > a {
		display: none;
	}

	#header ul.offLinks ul.subLinks {
		display: block !important;
		position: relative;
		top: 0;
		background: none;
		box-shadow: none;
	}

	#header ul.offLinks > li:last-child::after {
		display: none;
	}

	#header ul.offLinks ul.subLinks li {
		display: inline-block;
		width: auto;
	}

	#header ul.offLinks ul.subLinks a {
		width: auto;
		display: initial;
		color: #333;
	}

	#header ul.offLinks ul.subLinks a::before {
		content: "·";
		position: absolute;
		left: -3px;
	}

	#header ul.offLinks ul.subLinks li:first-child a::before {
		content: "";
	}

	.headerHeight {
		height: 60px;
	}
  /************************************/
  /* END HEADER */
  /************************************/

	/************************************/
  /* FOOTER */
  /************************************/
	#footer {
		padding: 40px 0 20px 0
	}
  /************************************/
  /* END FOOTER */
  /************************************/
}
