/*
------------------------------------------------------------------------------------------------------------------------------
	RESET
------------------------------------------------------------------------------------------------------------------------------ */

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

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;
}
body {
	line-height: 1;
}
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;
}
.video-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.video-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}

/*
------------------------------------------------------------------------------------------------------------------------------
	**DEFAULT** DESKTOP LAYOUT
------------------------------------------------------------------------------------------------------------------------------ */

body {
	font-family: 'Open Sans', sans-serif;
	color: #333;
}

/* GRID */
*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
[class*='col-'] { float: left; margin-bottom: 36px;}
.col-1-1 { width: 100%; }
.col-1-2 { width: 50%; }
.col-2-3, .col-2-3:before { width: 66.6666666%; }
.col-1-3, .col-1-3:before { width: 33.3333333%; }
.col-1-4 { width: 25%; }
.col-1-5 { width: 20%; margin-bottom: 0;}
.col-1-8 { width: 12.5%; }
.container:after { content: ""; display: table; clear: both; }
[class*='col-'] img { width: 100%; }

.container {
	width: 70%;
	max-width: 1500px;
	margin: 0 auto;
	padding: 0 24px;
}

h1, h2, h3, h4 {
	font-weight: bold;
	margin-bottom: 36px;
}

h1 {
	font-size: 48px;
	line-height: 72px;
}

h2 {
	font-size: 36px;
	line-height: 54px;
}

h3 {
	font-size: 24px;
	line-height: 36px;
	margin-bottom: 12px;
}

h4 {
	font-size: 18px;
	line-height: 27px;
}

p, ul, ol {
	font-size: 18px;
	line-height: 27px;
	margin-bottom: 24px;
}

p:last-of-type {
	margin-bottom: 0;
}

ul, ol {
	margin-left: 36px;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

strong {
	font-weight: bold;
}

nav ul {
	display: block;
	float: right;
	list-style: none;
	margin: 0;
}

nav ul li {
	display: block;
	float: right;
	padding: 12px 6px;
	font-size: 75%;
}

nav ul li.logo {
	float: left;
	padding-left: 0;
	max-width: 180px;
}

table {
	width: 100%;
	border-collapse: collapse;
	text-align: center;
	margin-bottom: 6px;
}

td, th {
	padding: 12px;
}

th {
	font-weight: bold;
	text-transform: uppercase;
}

table, td, th {
	border: 1px solid #aaa;
}

/* LINKS */
a:link,a:visited,a:active {color: #007ebe; text-decoration: none; -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out;}
a:hover {color: #007ebe;}

/* BUTTONS */
button, .button {
	padding: 24px 36px;
	border-radius: 100px;
	font-size: 24px;
	font-weight: bold;
	text-transform: uppercase;
	background-color: #f98f15 !important;
    color: #fff !important;
	display: inline-block;
}

/* ACCORDIANS */
button.accordion {
    background-color: #eee !important;
    color: #444 !important;
    cursor: pointer !important;
    padding: 18px !important;
    width: 100% !important;
    border: none !important;
    text-align: left !important;
    outline: none !important;
    font-size: 15px !important;
    transition: 0.4s !important;
	margin-bottom: 12px;
	border-radius: 0;
}

button.active, button.accordion:hover {
    background-color: #ccc;
}

button.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.panel {
    padding: 0 12px 24px;
    display: none;
    background-color: white;
    overflow: hidden;
}

.panel p {
	font-size: 12px;
}

/* HELPERS */
.txt-center {
	text-align: center;
}

.txt-small {
	font-size: 12px;
}

.bg-grey {
	background-color: #f0f0f0;
}

.bg-lt-blue {
	background-color: #daf2ff87;
}

.padding {
	padding: 36px;
}

.padding-right {
	padding-right: 36px;
}

.padding-none {
	padding: 0 !important;
}

.margin-none {
	margin: 0 !important;
}

@media only screen and (max-width: 850px) and (min-width: 300px) {
	.container {
		width: 100%;
	}
	.col-1-2 { width: 100%; }
	.col-1-4 { width: 100%; }
	.col-2-3, .col-2-3:before { width: 100%; }
	.col-1-3, .col-1-3:before { width: 100%; }
	[class*='col-'] { margin-bottom: 24px;}
	.col-1-5 { margin-bottom: 0;}

	h1, h2 {
		font-size: 24px;
		line-height: 36px;
		margin-bottom: 18px;
	}

	p, ul {
		font-size: 14px;
		line-height: 21px;
	}

	.logo { display: none;}

	/* BUTTONS */
	button, .button {
		padding: 18px 24px;
		font-size: 18px;
		display: block;
	}

	.padding-right {
		padding-right: 0;
	}

	table {
		font-size: 12px;
	}

	td, th {
		padding: 12px 6px;
	}
}
