/*------>>> TABLE OF CONTENTS <<<-------
	- FOUNDATION OVERRIDE STYLES
	- SLICK SLIDE OVERRIDE STYLES
	- RESETS AND OVERRIDES
	- BASIC STYLES
	- UTILITIES | GLOBAL
	- ANIMATIONS
	
/*------->>> COLOR PALETTE <<<-------
	#2465be - rgb(36,101,190) | Primary Color [Clayton Blue]
	#284169 - rgb(40,65,105) | Secondary Color [Navy]
	#d5c297 - rgb(213,194,151) | Tertiary Color [Khaki]
	#484848 - rgb(72,72,72) | Accent Color [Dark Gray | Font Color]
	#80cdf4 - rgb(128,205,244) | Accent2 Color [Blue Light]
	#919191 - rgb(145,145,145) | Support Color [Medium Gray]
	#ebebeb - rgb(235,235,235) | Support2 Color [Light Gray]
	
/*------->>> FONT STACKS & TYPOGRAPHY <<<-------
    font-family: 'Open Sans', sans-serif; [Primary Font | 400 600 700]
    font-family: 'Montserrat', sans-serif; [Secondary Font |400 500 700]

/*------->>> DROP SHADOWS <<<-------
    DROP SHADOW
    -webkit-box-shadow: 0px 20px 40px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 20px 40px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 20px 40px 0px rgba(0,0,0,0.25);
    
    DEEP DROP SHADOW
    -webkit-box-shadow: 0px 40px 60px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 40px 60px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 40px 60px 0px rgba(0,0,0,0.25);	
*/




  
    
/************************************
/*----------------------------------
/* FOUNDATION OVERRIDE STYLES
/*----------------------------------
/*************************************/


.row {
/*	width:100%; /* IE Fix */
    max-width:1170px;
    max-width:73.125rem;
}
/*---> Reset Table Styling From Foundation <---*/
table {
    border-collapse:collapse;
    border-spacing:0;	
}
table tbody, table tfoot, table thead {
    border:0;
    background-color:inherit;
}
table tbody td, table tbody th, table tfoot td, table tfoot th, table thead td, table thead th {
    padding:inherit;
    font-weight:inherit;
    text-align:inherit;
}
/*---> Reset Card Styling From Foundation <---*/
.card {
    display:block;
    margin-bottom:0;
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow: none;
    overflow: initial;
    color: inherit;
}
.card > :last-child {
    margin-bottom:inherit;
}
/*---> Reset Button Styling from Foundation <---*/
.button {
    display:initial;
    vertical-align:initial;
    margin:0;
    font-family:inherit;
    padding:0;
    -webkit-appearance: none;
    border:0;
    border-radius:0;
    transition:none;
    font-size:inherit;
    line-height:inherit;
    text-align:inherit;
    cursor:inherit;
    background-color:transparent;
    color: inherit;
}
/*---> Reset Callout Styling from Foundation <---*/
.callout {
    position: relative;
    margin:0;
    margin-bottom:0;
    padding:0;
    border:0;
    border-radius:0;
    background-color:transparent;
    color:inherit;
}
/*---> Foundation Reveal <---*/
.reveal-overlay {
    z-index:10005;
    background-color: rgba(49,49,49,0.75);
}
.reveal {
    margin-left:auto;
    margin-right:auto;
    padding:1rem 1.875rem;
    border:0;
    border-radius:0;
    background-color:#fff;
    box-shadow:none;
    width:90%;
    max-width:1000px;
}
.close-button {
    color:#4d85c4;
    right:0.5rem;
    top:0;
    font-size:2rem;
}
.close-button:hover {
    color:#c9342c;
}
/*---> Accordions <---*/
.accordion {
    margin:1.25rem 0;
    background:transparent;
}
.accordion-item:first-child > :first-child,
.accordion-item:last-child > :last-child {
    border-radius:0;
}
.accordion-item:not(:last-child) {
    margin-bottom:1rem;
}
.accordion-title {
    padding: 1.25rem 75px 1.25rem 1rem;
    background:#fafafa;
    border:3px solid #ededed;
    color:#284169;
    font-family:'Montserrat', sans-serif;
    font-size:1.125rem;
    font-weight:600;
    line-height:1.1;
    z-index:100;
    transition:all 200ms ease-in-out;
    -webkit-transition:all 200ms ease-in-out;
}
:last-child:not(.is-active) > .accordion-title {
    border-bottom:3px solid #ededed;
    border-radius:0;
}
.accordion-title:focus,
.accordion-title:active,
.accordion-title:hover,
:last-child:not(.is-active) > .accordion-title:hover,
:last-child:not(.is-active) > .accordion-title:focus,
:last-child:not(.is-active) > .accordion-title:active {
    background:#ecf2f8;
    border:3px solid #2465be;
    color:#284169;
}
.accordion-title::before {
    margin-top:0;
    content: '+';
    position: absolute;
    right:1.25rem;
    top:50%;
    -webkit-transform:translateY(-50%);
    transform:translateY(-50%);
    font-family:'Montserrat', sans-serif;
    font-weight:700;
    font-size:2rem;
    z-index:2;
    transition:all 200ms ease-in-out;
    -webkit-transition:all 200ms ease-in-out;
}
.is-active > .accordion-title::before {
    content: '\2013';
}
.is-active > .accordion-title:hover {
    pointer-events:none;
}
.is-active > .accordion-title::before,
.accordion-title:hover::before {
    color:#fff;
}
.accordion-title::after {
    content:"";
    position: absolute;
    top:-2px;
    right:-2px;
    bottom:-2px;
    background:#ededed;
    width:65px;
    z-index:1;
    transition:all 200ms ease-in-out;
    -webkit-transition:all 200ms ease-in-out;
}
.is-active > .accordion-title::after,
.accordion-title:focus::after,
.accordion-title:active::after,
.accordion-title:hover::after {
    background:#2465be;
}
.accordion-content {
    padding:1rem 0;
    border:0;
    background-color:transparent;
    color: #284169;
}
:last-child > .accordion-content:last-child {
    border-bottom:3px solid #ecf2f8;
}
/*---> Tabs <---*/
.tabs {
    margin:1.25rem 0 -0.188rem 0;
    border:0;
    background:transparent;
}
.tabs-title {
}
.tabs-title > a {
    background:#fafafa;
    border:3px solid #ededed;
    border-bottom:0;
    font-family:'Montserrat', sans-serif;
    font-weight:700;
    font-size:1rem;
    color: #284169;
}
.tabs-title > a:hover,
.tabs-title > a:focus,
.tabs-title > a[aria-selected="true"] {
    border:3px solid #2465be;
    background: #ecf2f8;
    color: #284169;
}
.tabs-title:not(:last-of-type) > a {
    margin-right:0.5rem;
}
.tabs-content {
    border:3px solid #2465be;
    background: transparent;
    color: #284169;
    margin-bottom:1.25rem;
}
/*---> Media Object <---*/
.media-object-section > p:last-child {
    margin-bottom:1.25rem;
}
/*---> Foundation does NOT have a .medium-uncollapse class <---*/

@media all and (min-width:40rem) { /* 640px and up */
	.medium-uncollapse>.columns { 
		padding-right:.625rem;
		padding-left:.625rem;
	}
	.medium-shrink {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		max-width: 100%;
	}
	.medium-expand {
		max-width:100%;
	}
	.medium-align-right {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
	.medium-align-left {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
	.medium-align-center {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.medium-align-justify {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.medium-align-spaced {
		-ms-flex-pack: distribute;
		justify-content: space-around;
	}
	.medium-align-top {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	.medium-align-self-top {
		-ms-flex-item-align: start;
		align-self: flex-start;
	}
	.medium-align-bottom {
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
	.medium-align-self-bottom {
		-ms-flex-item-align: end;
		align-self: flex-end;
	}
	.medium-align-middle {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.medium-align-self-middle {
		-ms-flex-item-align: center;
		align-self: center;
	}
	.medium-align-stretch {
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
	}
	.medium-align-self-stretch {
		-ms-flex-item-align: stretch;
		align-self: stretch;
	}
	.medium-align-center-middle {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-ms-flex-line-pack: center;
		align-content: center;
	}
}
@media all and (min-width:64rem) { /*- 1024px and up -*/
	.large-uncollapse>.columns { 
		padding-right:.625rem;
		padding-left:.625rem;
	}
	.large-shrink {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		max-width: 100%;
	}
	.large-expand {
		max-width:100%;
	}
	.large-align-right {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
	.large-align-left {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
	.large-align-center {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.large-align-justify {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.large-align-spaced {
		-ms-flex-pack: distribute;
		justify-content: space-around;
	}
	.large-align-top {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	.large-align-self-top {
		-ms-flex-item-align: start;
		align-self: flex-start;
	}
	.large-align-bottom {
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
	.large-align-self-bottom {
		-ms-flex-item-align: end;
		align-self: flex-end;
	}
	.large-align-middle {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.large-align-self-middle {
		-ms-flex-item-align: center;
		align-self: center;
	}
	.large-align-stretch {
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
	}
	.large-align-self-stretch {
		-ms-flex-item-align: stretch;
		align-self: stretch;
	}
	.large-align-center-middle {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-ms-flex-line-pack: center;
		align-content: center;
	}
}



/************************************
/*----------------------------------
/* SLICK SLIDE OVERRIDE STYLES
/*----------------------------------
/*************************************/


.slick-slider { /*- ul class */
	margin-bottom:1rem;
}
.slick-slide { /*- li  class */
	position:relative;
	margin: 0;
}
.slick-slide img {
	display:block;
	width:100%;
}
.slick-loading .slick-list {
	background:#fff url('../images/ajax-loader.gif') center center no-repeat;
}
.slider-track {
	transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
}
/*---> Arrows <---*/
.slick-prev, .slick-next {
	display:block;
	background:#d5c297;
	padding:0;	
	width:50px;
	height:50px;
	border-radius:100%;
	position:absolute;
	cursor:pointer;
	color:#284169;
    line-height:0;
    font-size:0;
	outline:none;
	box-shadow:none;	
	z-index:1;
	transition:all 200ms ease-in-out;
	-webkit-transition:all 200ms ease-in-out;
}
.slick-prev:hover, .slick-next:hover {
	background:#baa87b;	
}
.slick-prev {
	left:calc(50% - 30px);
	top:calc(100% - 25px);
	-webkit-transform:translateX(-50%);
	transform:translateX(-50%);
}
.slick-next {
	left:calc(50% + 30px);
	top:calc(100% - 25px);
	-webkit-transform:translateX(-50%);
	transform:translateX(-50%);
}
.slick-prev:before,
.slick-next:before {
	margin:0 auto;
	display:block;
	width:8px;
	height:13px;
	position:absolute;
	left:50%;
	top:50%;
	-webkit-transform:translate(-50%, -50%);
	transform:translate(-50%, -50%);
	transition:all 0.5s ease-in-out;
	-webkit-transition:all 0.5s ease-in-out;
}
.slick-prev:before {
	content:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.831' height='13.327' viewBox='0 0 8.831 13.327'%3E%3Cpath id='Path_126' data-name='Path 126' d='M1.663,13.327,0,11.538,5.243,6.665,0,1.789,1.663,0,8.831,6.665Z' transform='translate(8.831 13.327) rotate(180)' fill='%23284169'/%3E%3C/svg%3E");
}
.slick-next:before {
	content:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.831' height='13.327' viewBox='0 0 8.831 13.327'%3E%3Cpath d='M106.229,19.341l-1.663-1.789,5.243-4.873L104.566,7.8l1.663-1.789,7.168,6.665Z' transform='translate(-104.566 -6.014)' fill='%23284169'/%3E%3C/svg%3E");
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
	opacity:0.5;
}
/*---> Dots <---*/
.slick-dots {
	position: absolute;
	bottom:0;
	left: 0;
	right: 0;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	padding: 0;
}
.slick-dots li {
	margin:0 0.375rem 1.75rem;
	line-height:1;
}
.slick-dots li:focus {
	outline: none;
}
.slick-dots button {
	color: transparent;
	text-indent: -99999px;
	height:9px;
	width:9px;
	background:transparent;
	border:1px solid #fff;
	border-radius: 100%;
	cursor:pointer;
	transition:all 200ms ease-in-out;
    -webkit-transition:all 200ms ease-in-out;
}
.slick-dots button:focus {
	outline: none;
}
.slick-dots button:hover,
.slick-dots .slick-active button {
	background: #fff;
}





/************************************
/*----------------------------------
/* RESETS AND OVERRIDES
/*----------------------------------
/*************************************/


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, 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display:block;
}
html {
    -ms-text-size-adjust:100%;
    -webkit-text-size-adjust:100%;
}
html, html a, body  {
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}
html, body {
	height:auto;
	min-height:100%;
}
body {
	line-height:1;
	box-sizing:border-box;
	margin:0;
	overflow-x:hidden;
}
blockquote, q {
	quotes:none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content:'';
	content:none;
}
::-moz-focus-inner {
    padding:0;
    border:0;
}
:focus {
    outline:0;
}
/*---> Box Model Reset <---*/
*, *::before, *::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/*---> Form Resets <---*/
input, label, select, button, textarea {
	margin:0;
	display:inline-block;
	vertical-align:middle;
	white-space:normal;
	line-height:1;	
	/* Browsers have different default form fonts */
	font-size:13px;
	font-family:Arial;
}
/* Remove the stupid outer glow in Webkit */
input:focus, select:focus{
	outline:0;
}
/* These elements are usually rendered a certain way by the browser */
button, input[type=reset], input[type=button], input[type=submit], input[type=checkbox], input[type=radio], select {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}
input[type=search] {
	-webkit-appearance:textfield;
    -webkit-box-sizing:content-box;
    box-sizing: content-box;
}
::-webkit-search-decoration {
	display:none;
}
button, input[type="reset"], input[type="button"], input[type="submit"] {
	/* Fix IE7 display bug */
	overflow:visible;
	width:auto;
}
::-webkit-file-upload-button {	
	padding:0;
	border:0;
	background:none;
}
textarea  {
	vertical-align:top;
	overflow:auto;
}
select[multiple] {
	vertical-align:top;
}


/************************************
/*----------------------------------
/* BASIC STYLES
/*----------------------------------
/*************************************/


html {
	scroll-behavior: smooth; /* Smooth Scrolling for any Anchor Links */
	overflow-x:hidden;
}
body {
	font-family:'Open Sans', sans-serif;
	font-weight:400;
	font-size:1rem;
	font-size:16px;
	color:#484848;
	line-height:1;
}
a {
	color:#2465be;
	font-weight:inherit;
    transition:all 200ms ease-in-out;
    -webkit-transition:all 200ms ease-in-out;
}
a:hover,
a:focus {
	color:#d5c297;
}
a.no-style {
    color: inherit;
    font-weight: inherit;
}
abbr { /* Replaces acronym */
	color: #2465be;
	text-decoration: none;
	border: 0px;
	cursor: help;
}
blockquote {
	position: relative;
	padding:2.5rem 2rem 0.063rem 2rem;
	display: block;
	background: #284169;
	overflow:hidden;
    -webkit-box-shadow: 0px 20px 40px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 20px 40px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 20px 40px 0px rgba(0,0,0,0.25);
}
blockquote:before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateY(-60%) translateX(-50%);
	-ms-transform: translateY(-60%) translateX(-50%);
	transform: translateY(-60%) translateX(-50%);
	height: 125px;
	width: 125px;
	border-radius: 50%;
	background: #2465be;
	z-index: 1;
}
blockquote:after {
	content: "“";
	position: absolute;
	top: -0.55rem;
	text-align: center;
	font-family:'Montserrat', sans-serif;
	font-size: 124px;
	color: #fff;
	z-index: 2;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	line-height: 1;
	font-family: helvetica;
}
blockquote p {
    font-size:1.125rem;
    font-weight: 400;
    color: #fff;
}
blockquote cite {
    display:block;
    position:relative;
    margin-top: -0.5rem;
    margin-bottom:1.75rem;
    text-align: center;
	color: #fff;
    font-size: 1rem;
    font-weight: 700;
}
blockquote cite:before {
	content: '\2014 \0020';
	color:#2465be;
}
blockquote cite:after {
	content: '\0020 \2014';
	color:#2465be;
}
code {
	background:#fae7e8;
	overflow:visible;
	color:#484848;
	padding:3px 5px;
}
i, /* Legacy */
em { /* Replaces Legacy <i> */
	font-style:italic;
}
hr {
	border:0; 
	height:2px;
	background: linear-gradient(to right, #29A2DE 0%, #2465BE 100%);
	margin-left:auto !important;
	margin-right:auto !important;
	position:relative;
    max-width:100%;
}
small {
	font-size:80%;
}
strong {
	font-weight:bold;
}
sup, sub {
	position:relative;
	top:-0.125rem;
	vertical-align:baseline;
}
sub {
	top:0.4em;
}
figure {
	padding:0;
	background:#ebebeb;
}
figure img {
	display:block;
	width:100%;
}
figure p,
figure table {
	margin:0rem !important;
}
figcaption {
	padding:0.938rem 0;
	color:#284169;
	font-size:1.125rem;
	font-weight:600;
	text-align:center;
	text-transform:none;
	background:#e5ebf5;
	border:1px solid #284169;
}
h1, h2, h3, h4, h5, h6,
.like-h1, .like-h2, .like-h3, .like-h4, .like-h5, .like-h6      {
    line-height:1.1;
    font-family:"Montserrat", sans-serif;
}
h1, .like-h1,
h2, .like-h2 {
    font-weight:700;
    color:#2465be;
}
h1, .like-h1 {
	font-size:3.063rem;
}
h2, .like-h2 {
	font-size:2.563rem;
}
h3, .like-h3,
h4, .like-h4,
h5, .like-h5,
h6, .like-h6  {
    font-weight:500;
    color:#284169;
}
h1, .like-h1,
h2, .like-h2,
h3, .like-h3,
h5, .like-h5,
h6, .like-h6 {
	text-transform:none;
}
h3, .like-h3 {
	font-size:1.813rem;
}
h4, .like-h4 {
    font-size:1.188rem;
    text-transform:uppercase;
    font-weight:700;
}
h5, .like-h5,
h6, .like-h6 {
    font-size:1.188rem;
}
h6, .like-h6 {
    color:#2465be;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
h1 a:link, h2 a:link, h3 a:link, h4 a:link, h5 a:link, h6 a:link,
h1 a:active, h2 a:active, h3 a:active, h4 a:active, h5 a:active, h6 a:active,
h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited,
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
	font-weight:inherit !important;
	font-size:inherit;
	color:inherit;
}
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
    display:block;
	margin:0.313rem 0;
	line-height:inherit;
	font-family:inherit;
	font-size:1.188rem;
	font-weight:700;
    text-transform:uppercase;
}
/*- If our SMALL does not have a font color class, then give it the base font color -*/
h1 small:not([class*="color"]), h2 small:not([class*="color"]), h3 small:not([class*="color"]), h4 small:not([class*="color"]), h5 small:not([class*="color"]), h6 small:not([class*="color"]) {
	color:#284169;
}
p, li, td, dt, dd {
	font-size:1.063rem;
    font-weight:400;
}
p, ul, li, ol, dl, dd, dt, table, td, blockquote, blockquote p, hr, form {
	line-height:1.41;	
}
h1, h2, h3, h4, h5, h6,
.like-h1, .like-h2, .like-h3, .like-h4, .like-h5, .like-h6,
p, ul, ol, dl, table, blockquote, blockquote p, hr,
form, figure {
	margin:1.25rem 0;
}
ul:not([class]) {
	list-style: none;
	padding:0;
	margin-left:3.5rem;
}
ul:not([class]) li {
	position: relative;
	margin:0 0 1rem 0;
	padding-left:1.313rem;
}
ul:not([class]) li:last-of-type {
	margin-bottom:0;
}
ul:not([class]) li:before {
	display:inline-block;
	position:absolute;
	top:0.625rem;
	left:0;	
	width:7px;
	height:7px;
	border-radius:100%;
	content:"";
	background:#2465be;
}
ul:not([class]) li > ul {
	list-style: none;
	margin:0 0 0 1.750rem;
	padding:0;
}
nav ul:not([class]),
form ul:not([class]) {
	list-style: none;
	margin: 0;
	padding: 0;
}
nav ul:not([class]) li,
form ul:not([class]) li {
	padding: 0;
}
nav ul:not([class]) li:before,
form ul:not([class]) li:before {
	display: none;
}
ol:not([class]) {
	list-style: none;
	padding:0;
	margin-left:1rem;
}
ol:not([class]) li {
	padding-left:3.75rem;
	position: relative;
	counter-increment: step-counter;
	margin:0 0 1rem 0;
}
ol:not([class]) li:last-of-type {
	margin-bottom:0;
}
ol:not([class]) li:before {
	content: counter(step-counter)".";
	width:50px;
	height:26px;
	font-family:'Montserrat', sans-serif;
	font-size:1.5rem;
	font-weight:700;
	text-align:right;
	line-height:26px;
	color:#2465be;
	position:absolute;
	top:-0.188rem;
	left:0;
}
dl:not([class]) {
}
dl:not([class]) dt {
	font-family:'Montserrat', sans-serif;
	font-weight:700;
	font-size:1.25rem;
	color:#2465be;
	text-transform:none;
	margin:0;
}
dl:not([class]) dd {
	margin-bottom:1rem;
}
dl:not([class]) dd:last-of-type {
	margin-bottom:0;
}
label,
fieldset legend {
	font-family:'Open Sans', sans-serif;
	font-size:1rem;
    font-weight:600 !important;
    line-height:1;
	color:#484848;
}
form input[type=text],
form input[type=email],
form input[type=tel],
form textarea,
form select,
select {
	background-color:#fff; 
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 2.688rem !important;
    margin:0 !important;
	padding:0.5rem 0.875rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
	color: #484848;
	outline: 0;
    border:1px solid #a3a3a3;
    border-radius:0;
    -webkit-box-shadow:none;
    -moz-box-shadow:none;
    box-shadow:none;	
    transition: all .5s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
	appearance: none;
}
form textarea {
	height:auto !important;
} 
form select,
select {
	line-height: 1;
	padding: 0.250rem 0rem 0.250rem 0.688rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cg style='fill:%23a3a3a3'%3E%3Cpolygon points='0,10.3 16,26.3 32,10.3 27.5,5.7 16,17.2 4.5,5.7'/%3E%3C/g%3E%3C/svg%3E");
	background-position: calc(100% - 1rem) 0.5rem;
	background-repeat: no-repeat;
	background-size: 20px 20px;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
}
form input[type=text]:focus,
form input[type=email]:focus,
form input[type=tel]:focus,
form textarea:focus,
form select:focus,
form input[type=radio]:focus,
form input[type=checkbox]:focus,
select:focus {
	outline: 0;
	border:1px solid #284169;
	background-color:#e5ebf5;
	-webkit-box-shadow:inherit;
	-moz-box-shadow:inherit;
	box-shadow:inherit;
	transition: all .5s ease-in-out;
}
form input[type=radio],
form input[type=checkbox] {
	margin:0 0.313rem 0.250rem 0;
}
input[type="submit"],
form button,
input[type="button"] {
	display:inline-block;
	width:auto;
	padding:0.813rem 1.938rem;
	margin:0 auto 0 !important;		
	position:relative;
	top:0;
	background: #29A2DE;
	background: -webkit-linear-gradient(to bottom, #29A2DE 0%, #2465BE 100%);
	background: -moz-linear-gradient(to bottom, #29A2DE 0%, #2465BE 100%);
	background: linear-gradient(to bottom, #29A2DE 0%, #2465BE 100%);
	font-family:'Monteserrat', sans-serif;
	font-size:1.063rem;
	font-weight:700;
	color:#fff;
	line-height:1;
	text-align:center;
	text-decoration:none;
	text-transform:uppercase;
	border-radius:0;
	border:0;
	-webkit-box-shadow:none;
	-moz-box-shadow:none;
	box-shadow:none;
	-webkit-transition: all 350ms linear 50ms !important;
	transition: all 350ms linear 50ms !important;
	cursor:pointer;
}  
form button,
input[type="button"] {
	margin:10px 0 0 0 !important;
	background:#284169;
}
input[type="submit"]:hover,
input[type="button"]:hover {
	top:4px;
	background: #1B80B2;
	background: -webkit-linear-gradient(to bottom, #1B80B2 0%, #0D4BA0 100%);
	background: -moz-linear-gradient(to bottom, #1B80B2 0%, #0D4BA0 100%);
	background: linear-gradient(to bottom, #1B80B2 0%, #0D4BA0 100%);
}
/*- Highlighting on Select [Click and Drag] -*/
::-moz-selection {
	background:#d5c297;
	color:#284169;
}
::selection {
	background:#d5c297;
	color:#284169;
}


/************************************
/*----------------------------------
/* UTILITIES | GLOBAL STYLES
/*----------------------------------
/*************************************/


.svg-container {
	position: absolute;
	height: 0;
}
.has-text-shadow {
	text-shadow: 6px 6px 15px rgba(0,0,0,0.25);
}
.has-drop-shadow {
    -webkit-box-shadow: 0px 20px 40px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 20px 40px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 20px 40px 0px rgba(0,0,0,0.25);	
}
.has-drop-shadow-deep {
    -webkit-box-shadow: 0px 40px 60px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 40px 60px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 40px 60px 0px rgba(0,0,0,0.25);	
}
.has-border-radius {
	border-radius:5px;
}
.has-letter-spacing {
	letter-spacing:0.01em;
}
.icon-circle {
	display:inline-block;
	width:68px;
	height:68px;
	border-radius:100%;
	position:relative;
}
.icon-circle-large {
	width:96px;
	height:96px;
}
.icon-circle img {
	position:absolute;
	top:50%;
	left:50%;
	-webkit-transform:translate(-50%, -50%);
	transform:translate(-50%, -50%);
}
.has-down-arrow {
	position:relative;
}
.has-down-arrow:not([class*="pad-x"]):not([class*="pad-bottom"]) {
	padding-bottom:6rem;
}
.has-down-arrow:not([class*="pad-x"]):not([class*="pad-top"]) {
	padding-top:3rem;
}
.has-down-arrow:after {
	width:auto;
	height:auto;
	max-width:14px;
	max-height:31px;;
	content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.327' height='30.118' viewBox='0 0 13.327 30.118'%3E%3Cg transform='translate(-952.999 -1011.766)'%3E%3Cpath d='M106.229,19.341l-1.663-1.789,5.243-4.873L104.566,7.8l1.663-1.789,7.168,6.665Z' transform='translate(972.34 928.487) rotate(90)' fill='%23d5c297'/%3E%3Cpath d='M0-.482H27.309V2H0Z' transform='translate(960.326 1011.766) rotate(90)' fill='%23d5c297'/%3E%3C/g%3E%3C/svg%3E");
	position:absolute;
	bottom:3rem;
	left:0;
	right:0;
	margin:0 auto;
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-moz-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}
.has-border-chip {
	position:relative;
}
.has-border-chip::after {
	margin:0 auto;
	display: block;
	width: 100px;
	height: 14px;
	background: #D5C297;
	content: "";
	position: absolute;
	top:0;
	left:0;
	right:0;
	pointer-events:none;
}
/*---> Flexible Iframes <---*/
.flex-container {
	position:relative;
	height:0;
	overflow:hidden;
	padding-bottom:56.25%;
}
.flex-container iframe,   
.flex-container object,  
.flex-container embed,
.flex-container img {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}
.flex-container img {
	margin:0 !important;
}
/*---> Responsive Tables <---*/
.table {
	position:relative;
	width:100%;
	margin-left:auto;
	margin-right:auto;
	font-size:1.125rem;
	border-collapse:separate;
	text-align:center;
	border-radius:0;
	overflow:hidden;
}  
.table caption {
	background:transparent;
	text-align:center;
	font-family:'Montserrat', sans-serif;
	font-size:1.188rem;
	font-weight:700;
	color:#284169;
	padding:1rem 0;
}
.table thead tr th {
	padding:1rem 0;
	font-family:'Montserrat', sans-serif;
	font-weight:600;
	font-size:1.063rem;
	color:#fff;
	line-height:1.2;
	text-align:center;
	vertical-align:middle;
	background:#284169;
}
.table td {
	font-size:0.938rem;
	color:#284169;
	border-left:1px solid #284169;
	border-bottom:1px solid #284169;
	padding:0.313rem 0.5rem;
	border-collapse:collapse;
	vertical-align:middle;
}
.table td:last-of-type {
	border-right:1px solid #284169;	
}
.table tr:nth-child(even) {
	background:#E5EBF5;
}
.table tr:nth-child(odd) {
	background:#fff;
}

.table ul:not([class]) {
	display:inline-block;
	text-align:left;
	margin-left:0;
}
/*--> Accent Table for Dark Backrounds <---*/
.table-accent caption {
	color:#fff;
}
.table-accent thead tr th {
	color:#284169;
	background:#d5c297;
}
.table-accent td {
	color:#284169;
	border-left:1px solid #d5c297;
	border-bottom:1px solid #d5c297;
}
.table-accent td:last-of-type {
	border-right:1px solid #d5c297;	
}
.table-accent tr:nth-child(even) {
	background:#F2ECDE;
}
.table-accent tr:nth-child(odd) {
	background:#fff;
}
/*- Spacing -*/
.table tr td:only-child {
	width: 100%;
}
.table tr  > td:nth-last-child(n+2):nth-last-child(-n+2):first-child,
.table tr > td:nth-last-child(n+2):nth-last-child(-n+2):first-child ~ td {
	width: 50%;
}
.table tr > td:nth-last-child(n+3):nth-last-child(-n+3):first-child,
.table tr > td:nth-last-child(n+3):nth-last-child(-n+3):first-child ~ td {
	width: 33.333%;
}
.table tr > td:nth-last-child(n+4):nth-last-child(-n+4):first-child,
.table tr > td:nth-last-child(n+4):nth-last-child(-n+4):first-child ~ td {
	width: 25%;
}
/*---> Button Styling <---*/
.btn {
	display:inline-block;
	width:auto;
	padding:0.813rem 1.5rem;
	margin:0;	
	position:relative;
	top:0;
    font-family:"Montserrat", sans-serif;
	font-size:1.063rem;
	font-weight:700;
	color:#fff;
	line-height:1;
	text-align:center;
	text-decoration:none;
	text-transform:uppercase;
	-webkit-transition: all 350ms linear 50ms !important;
	transition: all 350ms linear 50ms !important;
}
.btn:not([class*="background"]) {
	background: #29A2DE;
	background: -webkit-linear-gradient(to bottom, #29A2DE 0%, #2465BE 100%);
	background: -moz-linear-gradient(to bottom, #29A2DE 0%, #2465BE 100%);
	background: linear-gradient(to bottom, #29A2DE 0%, #2465BE 100%);
}
.has-icon { /* Icon Assigned in JS */
}
.btn-icon {
    width:1.875rem;
    height:0.875rem;
    display:inline-block;
    margin-left:0.938rem;
    position:relative;
    fill:#fff;
}
.btn:active,
.btn:focus,
.btn:hover {
	color:#fff;
}
.btn:hover {
	top:4px;
	cursor:pointer;
	-webkit-transition: all 350ms linear 50ms;
	transition: all 350ms linear 50ms;	
}
.btn:not([class*="background"]):hover {
	background: #1B80B2;
	background: -webkit-linear-gradient(to bottom, #1B80B2 0%, #0D4BA0 100%);
	background: -moz-linear-gradient(to bottom, #1B80B2 0%, #0D4BA0 100%);
	background: linear-gradient(to bottom, #1B80B2 0%, #0D4BA0 100%);
}
.btn-large {
	padding:0.688rem 1.5rem;	
	font-size:1.313rem;
}
.btn.background-white {
	color:#284169;
}
.btn.background-white:active,
.btn.background-white:focus,
.btn.background-white:hover {
	color:inherit;
	background:#D5C297;
}
.btn.background-white .btn-icon {
    fill:#284169;
}
.btn.background-tertiary {
	color:#284169;
}
.btn.background-tertiary:active,
.btn.background-tertiary:focus,
.btn.background-tertiary:hover {
	color:inherit;
	background:#fff;
}
.btn.background-tertiary .btn-icon {
    fill:#284169;
}
.btn.position-center {
	display:block;
	margin:0 auto;
	width:auto;
}
.btn-download .btn-icon {
    width:1.25rem;
    height:1.25rem;
    display:inline-block;
    margin-left:0.938rem;
    position:relative;
    fill:#fff;
}
/*--> Link Class with Arrows <--*/
.link-more {
	text-transform:uppercase;
	position:relative;
	transition:all 200ms ease-in-out;
	-webkit-transition:all 200ms ease-in-out;
}
.link-more-svg {
    width:1.875rem;
    height:0.875rem;
	fill:#2465be;
	position:relative;
	top:1px;
	right:0;
	margin-left:0.313rem;
	transition:all 200ms ease-in-out;
	-webkit-transition:all 200ms ease-in-out;
}
.link-more:hover .link-more-svg {
	fill:#d5c297;
	right:-3px;
}
/*---> Line Breaks <br  /> <---*/
.break-on-mobile { /*-  Function in scripts-global.js -*/
}
.break-on-desktop { /*-  Function in scripts-global.js -*/
}
/*---> Checklist <---*/
.checklist {
	list-style: none;
	padding:0;
	margin-left:0.5rem;
}
.checklist-item {
	position: relative;
	margin:0 0 1rem 0;
	padding-left:2.313rem;
}
.checklist-item:last-of-type {
	margin-bottom:0;
}
.checklist-item:before {
	display:block;
	content:url(../images/icon-checklist-item.png);
	position:absolute;
	top:-0.125rem;
	left:0;	
	width:29px;
	height:27px;
}
/*---> Checklist Alt <---*/
.checklist-alt {
	list-style: none;
	padding:0;
	margin-left:0;
}
.checklist-alt-item {
	position: relative;
	margin:0;
	padding-left:1.5rem;
}
.checklist-alt-item:last-of-type {
	margin-bottom:0;
}
.checklist-alt-item:before {
	display:block;
	content:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.38' height='15.806' viewBox='0 0 17.38 15.806'%3E%3Cpath d='M1796.5,1118.94c-4,3.174-7.428,8.264-9.56,13.805a3.073,3.073,0,0,1-2.3,1.749,1.091,1.091,0,0,1-1.3-.766,13.628,13.628,0,0,0-3.889-6.634.989.989,0,0,1,.416-1.708c1.382-.316,3.357,0,4.955,3.26a27.818,27.818,0,0,1,9.176-9.541,2.751,2.751,0,0,1,2.493-.165Z' transform='translate(-1779.124 -1118.717)' fill='%232465be'/%3E%3C/svg%3E");
	position:absolute;
	top:0.125rem;
	left:0;	
	width:18px;
	height:16px;
}
/*---> Backgrounds <---*/
.background-primary	{
	background-color:#2465be;
}
.background-secondary	{
	background-color:#284169;
}
.background-tertiary {
	background-color:#d5c297;
}
.background-accent {
	background-color: #484848;
}
.background-accent2 {
	background-color: #80cdf4;
}
.background-support {
	background-color:#919191;
}
.background-support2 {
	background-color:#ebebeb;
}
.background-white {
	background-color: #fff;
}
.background-black {
	background: #000;
}
.background-primary-gradient {
	background: #2465BE;
	background: -webkit-linear-gradient(to bottom left, #2465BE 0%, #284169 100%);
	background: -moz-linear-gradient(to bottom left, #2465BE 0%, #284169 100%);
	background: linear-gradient(to bottom left, #2465BE 0%, #284169 100%);	
}
.background-primary-gradient-alt {
	background: #2465BE;
	background: -webkit-linear-gradient(to bottom right, #2465BE 0%, #284169 100%);
	background: -moz-linear-gradient(to bottom right, #2465BE 0%, #284169 100%);
	background: linear-gradient(to bottom right, #2465BE 0%, #284169 100%);	
}
.background-secondary-gradient {
	background: #29A2DE;
	background: -webkit-linear-gradient(to bottom, #29A2DE 0%, #2465BE 100%);
	background: -moz-linear-gradient(to bottom, #29A2DE 0%, #2465BE 100%);
	background: linear-gradient(to bottom, #29A2DE 0%, #2465BE 100%);	
}
.background-tertiary-gradient {
	background: #1B80B2;
	background: -webkit-linear-gradient(to bottom, #1B80B2 0%, #0D4BA0 100%);
	background: -moz-linear-gradient(to bottom, #1B80B2 0%, #0D4BA0 100%);
	background: linear-gradient(to bottom, #1B80B2 0%, #0D4BA0 100%);
}

/*---> Display <---*/
.display-block {
	display:block;
}
.display-inline {
	display:inline;
}
.display-inline-block {
	display:inline-block;
}
.display-hidden {
	display:none;
}
.display-flex {
	display:flex;
}
/*---> Width and Height <---*/
.width20 {
	width:20%;
}
.width25 {
	width:25%;
}
.width33 {
	width:33%;
}
.width40 {
	width:40%;
}
.width50  {
	width:50%;
}
.width66 {
	width:66%;
}
.width75 {
	width:75%;
}
.width100  {
	width:100%;
}
.height50 {
	height:50%;
}
.height100 {
	height:100%;
}
/*---> Positioning <---*/
.position-fixed    {
	position: fixed;
}
.position-relative {
	position:relative;
}
.position-absolute {
	position: absolute;
}
.position-static {
	position:static;
}
.position-center {
	left:0;
	right:0;
	margin:0 auto;
}
.valign-middle {
	top:50%;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
.center-center {
	left:50%;
	top:50%;
	-webkit-transform:translate(-50%, -50%);
	transform:translate(-50%, -50%);	
}
/*---> Floats <---*/
.clearfix {
	zoom:1;
}
.clearfix:before, 
.clearfix:after {
	display:table;
	content:"";
}
.clearfix:after {
	clear:both;
}
.float-left  {
	float:left;
}
.float-right {
	float:right;
}
/*---> Typography <---*/
.color-primary {
	color:#2465be;
}
.color-secondary {
	color:#284169;
}
.color-tertiary {
	color:#d5c297;
}
.color-accent {
	color:#484848;
}
.color-accent2 {
	color:#80cdf4;
}
.color-support {
	color:#919191;
}
.color-support2 {
	color:#ebebeb;
}
.color-white {
    color: #fff;
}
.color-black {
    color: #000;
}
.font-primary {
	font-family:'Open Sans', sans-serif;
}
.font-secondary {
	font-family:'Montserrat', sans-serif;
}
.underline {
	text-decoration:underline;
}
.uppercase {
	text-transform:uppercase;
}
.titlecase {
  text-transform: capitalize;
}
.lowercase {
  text-transform: lowercase;
}
.sentencecase {
	text-transform:none;
}
.italic {
  font-style: italic;
}
.oblique {
  font-style: oblique;
}
.weight400 {
	font-weight:400;
}
.weight500 {
    font-weight:600;
}
.weight600 {
	font-weight:600;
}
.weight700 {
	font-weight:700;
}
/*---> Text Alignment <---*/
.text-left {
	text-align:left;
}
.text-center {
	text-align:center;
}
.text-right {
	text-align:right;
}
.text-justify {
	text-align:justify;
}
/*---> Spacing <---*/
.pad-0 {
	padding:0;
}
.pad-050 {
	padding:0.5rem;
}
.pad-075 {
	padding:0.75rem;
}
.pad-100 {
	padding:1rem;
}
.pad-125 {
	padding:1.25rem;
}
.pad-150 {
	padding:1.5rem;
}
.pad-200 {
	padding:2rem;
}
.pad-250 {
	padding:2.5rem;
}
.pad-300 {
	padding:3rem;
}
.pad-400 {
	padding:4rem;
}
.pad-500 {
	padding:5rem;
}
.pad-600 {
	padding:6rem;
}
.pad-800 {
	padding:8rem;
}
.pad-1000 {
	padding:10rem;
}
.pad-1100 {
	padding:11rem;
}
.pad-1200 {
	padding:12rem;
}
.pad-1300 {
	padding:13rem;
}
.pad-1400 {
	padding:14rem;
}
.pad-1500 {
	padding:15rem;
}
.pad-x-0 {
	padding-top:0;
	padding-bottom:0;
}
.pad-x-050 {
	padding-top:0.5rem;
	padding-bottom:0.5rem;
}
.pad-x-075 {
	padding-top:0.75rem;
	padding-bottom:0.75rem;
}
.pad-x-100 {
	padding-top:1rem;
	padding-bottom:1rem;
}
.pad-x-125 {
	padding-top:1.25rem;
	padding-bottom:1.25rem;
}
.pad-x-150 {
	padding-top:1.5rem;
	padding-bottom:1.5rem;
}
.pad-x-200 {
	padding-top:2rem;
	padding-bottom:2rem;
}
.pad-x-250 {
	padding-top:2.5rem;
	padding-top:2.5rem;
}
.pad-x-300 {
	padding-top:3rem;
	padding-bottom:3rem;
}
.pad-x-400 {
	padding-top:4rem;
	padding-bottom:4rem;
}
.pad-x-500 {
	padding-top:5rem;
	padding-bottom:5rem;
}
.pad-x-600 {
	padding-top:6rem;
	padding-bottom:6rem;
}
.pad-x-800 {
	padding-top:8rem;
	padding-bottom:8rem;
}
.pad-x-1000 {
	padding-top:10rem;
	padding-bottom:10rem;
}
.pad-x-1100 {
	padding-top:11rem;
	padding-bottom:11rem;
}
.pad-x-1200 {
	padding-top:12rem;
	padding-bottom:12rem;
}
.pad-x-1300 {
	padding-top:13rem;
	padding-bottom:13rem;
}
.pad-x-1400 {
	padding-top:14rem;
	padding-bottom:14rem;
}
.pad-x-1500 {
	padding-top:15rem;
	padding-bottom:15rem;
}
.pad-top-0 {
	padding-top:0;
}
.pad-top-050 {
	padding-top:0.5rem;
}
.pad-top-075 {
	padding-top:0.75rem;
}
.pad-top-100 {
	padding-top:1rem;
}
.pad-top-125 {
	padding-top:1.25rem;
}
.pad-top-150 {
	padding-top:1.5rem;
}
.pad-top-200 {
	padding-top:2rem;
}
.pad-top-250 {
	padding-top:2.5rem;
}
.pad-top-300 {
	padding-top:3rem;
}
.pad-top-400 {
	padding-top:4rem;
}
.pad-top-500 {
	padding-top:5rem;
}
.pad-top-600 {
	padding-top:6rem;
}
.pad-top-800 {
	padding-top:8rem;
}
.pad-top-1000 {
	padding-top:10rem;
}
.pad-top-1100 {
	padding-top:11rem;
}
.pad-top-1200 {
	padding-top:12rem;
}
.pad-top-1300 {
	padding-top:13rem;
}
.pad-top-1400 {
	padding-top:14rem;
}
.pad-top-1500 {
	padding-top:15rem;
}
.pad-bottom-0 {
	padding-bottom:0;
}
.pad-bottom-050 {
	padding-bottom:0.5rem;
}
.pad-bottom-075 {
	padding-bottom:0.75rem;
}
.pad-bottom-100 {
	padding-bottom:1rem;
}
.pad-bottom-125 {
	padding-bottom:1.25rem;
}
.pad-bottom-150 {
	padding-bottom:1.5rem;
}
.pad-bottom-200 {
	padding-bottom:2rem;
}
.pad-bottom-250 {
	padding-top:2.5rem;
}
.pad-bottom-300 {
	padding-bottom:3rem;
}
.pad-bottom-400 {
	padding-bottom:4rem;
}
.pad-bottom-500 {
	padding-bottom:5rem;
}
.pad-bottom-600 {
	padding-bottom:6rem;
}
.pad-bottom-800 {
	padding-bottom:8rem;
}
.pad-bottom-1000 {
	padding-bottom:10rem;
}
.pad-bottom-1100 {
	padding-bottom:11rem;
}
.pad-bottom-1200 {
	padding-bottom:12rem;
}
.pad-bottom-1300 {
	padding-bottom:13rem;
}
.pad-bottom-1400 {
	padding-bottom:14rem;
}
.pad-bottom-1500 {
	padding-bottom:15rem;
}
.pad-y-0 {
	padding-left:0;
	padding-right:0;
}
.pad-y-050 {
	padding-left:0.50rem;
	padding-right:0.50rem;
}
.pad-y-075 {
	padding-left:0.75rem;
	padding-right:0.75rem;
}
.pad-y-100 {
	padding-left:1rem;
	padding-right:1rem;
}
.pad-y-125 {
	padding-left:1.25rem;
	padding-right:1.25rem;
}
.pad-y-150 {
	padding-left:1.5rem;
	padding-right:1.5rem;
}
.pad-y-200 {
	padding-left:2rem;
	padding-right:2rem;
}
.pad-y-250 {
	padding-left:2.5rem;
	padding-right:2.5rem;
}
.pad-y-300 {
	padding-left:3rem;
	padding-right:3rem;
}
.pad-y-400 {
	padding-left:4rem;
	padding-right:4rem;
}
.pad-y-500 {
	padding-left:5rem;
	padding-right:5rem;
}
.pad-y-600 {
	padding-left:6rem;
	padding-right:6rem;
}
.pad-y-800 {
	padding-left:8rem;
	padding-right:8rem;
}
.pad-y-1000 {
	padding-left:10rem;
	padding-right:10rem;
}
.pad-y-1100 {
	padding-left:11rem;
	padding-right:11rem;
}
.pad-y-1200 {
	padding-left:12rem;
	padding-right:12rem;
}
.pad-y-1300 {
	padding-left:13rem;
	padding-right:13rem;
}
.pad-y-1400 {
	padding-left:14rem;
	padding-right:14rem;
}
.pad-y-1500 {
	padding-left:15rem;
	padding-right:15rem;
}
.pad-left-0 {
	padding-left:0;
}
.pad-left-050 {
	padding-left:0.50rem;}
.pad-left-075 {
	padding-left:0.75rem;
}
.pad-left-100 {
	padding-left:1rem;
}
.pad-left-125 {
	padding-left:1.25rem;
}
.pad-left-150 {
	padding-left:1.5rem;
}
.pad-left-200 {
	padding-left:2rem;
}
.pad-left-250 {
	padding-left:2.5rem;
}
.pad-left-300 {
	padding-left:3rem;
}
.pad-left-400 {
	padding-left:4rem;
}
.pad-left-500 {
	padding-left:5rem;
}
.pad-left-600 {
	padding-left:6rem;
}
.pad-left-800 {
	padding-left:8rem;
}
.pad-left-1000 {
	padding-left:10rem;
}
.pad-left-1100 {
	padding-left:11rem;
}
.pad-left-1200 {
	padding-left:12rem;
}
.pad-left-1300 {
	padding-left:13rem;
}
.pad-left-1400 {
	padding-left:14rem;
}
.pad-left-1500 {
	padding-left:15rem;
}
.pad-right-0 {
	padding-right:0;
}
.pad-right-050 {
	padding-right:0.50rem;
}
.pad-right-075 {
	padding-right:0.75rem;
}
.pad-right-100 {
	padding-right:1rem;
}
.pad-right-125 {
	padding-right:1.25rem;
}
.pad-right-150 {
	padding-right:1.5rem;
}
.pad-right-200 {
	padding-right:2rem;
}
.pad-right-250 {
	padding-right:2.5rem;
}
.pad-right-300 {
	padding-right:3rem;
}
.pad-right-400 {
	padding-right:4rem;
}
.pad-right-500 {
	padding-right:5rem;
}
.pad-right-600 {
	padding-right:6rem;
}
.pad-right-800 {
	padding-right:8rem;
}
.pad-right-1000 {
	padding-right:10rem;
}
.pad-right-1100 {
	padding-right:11rem;
}
.pad-right-1200 {
	padding-right:12rem;
}
.pad-right-1300 {
	padding-right:13rem;
}
.pad-right-1400 {
	padding-right:14rem;
}
.pad-right-1500 {
	padding-right:15rem;
}



/************************************
/*----------------------------------
/* ANIMATIONS
/*----------------------------------
/*************************************/

@keyframes navSlide {
	0% {
	  transform: translateY(-100%);
	}
  
	100% {
	  transform: translateY(0);
	}
}

.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
@-webkit-keyframes zoomIn {
	0% {
		-webkit-transform: scale3d(.5, .5, .5);
		transform: scale3d(.5, .5, .5);
	}
}
@keyframes zoomIn {
	0% {
		-webkit-transform: scale3d(.5, .5, .5);
		transform: scale3d(.5, .5, .5);
	}
} 
