/*------>>> TABLE OF CONTENTS <<<-------
	- FOUNDATION OVERRIDE STYLES
	- SLICK SLIDE OVERRIDE STYLES
	- RESETS AND OVERRIDES
	- BASIC STYLES
	- UTILITIES | GLOBAL
	- ANIMATIONS
	
/*------->>> COLOR PALETTE <<<-------
	#001E5C - rgb(0,30,92) | Primary Color [Blue Medium]
	#1b314a - rgb(27,49,74) | Secondary Color [Blue Dark, Base Font Color]
	#4ca5d8 - rgb(76,165,216) | Tertiary Color [Blue Light]
	#a62639 - rgb(166,38,57) | Accent Color  [Red]
	#d2e8f5 - rgb(210,232,245) | Support Color [Blue Lightest]
	#f5f5f5 - rgb(245,245,245) | Gray
	
/*------->>> FONT STACKS & TYPOGRAPHY <<<-------
    font-family: 'Karla', sans-serif; [Primary Font | 400 & 700]

*/

/************************************
/*----------------------------------
/* 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(27,49,74,.85);
}
.reveal {
	margin-left:auto;
	margin-right:auto;
    padding: 1rem;
    border:1px solid #f5f5f5;
    border-radius:7px;
    background-color:#fff;
	-webkit-box-shadow: 10px 25px 30px 0px rgba(0,0,0,0.13);
	-moz-box-shadow: 10px 25px 30px 0px rgba(0,0,0,0.13);
	box-shadow: 10px 25px 30px 0px rgba(0,0,0,0.13);
	width:90%;
	max-width:1000px;
}
.close-button {
    color:#4ca5d8;
	right:0.5rem;
    top:0;
    font-size:2rem;
}
.close-button:hover {
	color:#001e5c;
}
/*---> 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%;
	}
}

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

.slick-slider { /*- ul class */
}
.slick-slide { /*- li  class */
	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:#A62639;
	padding:0;	
	width:43px;
	height:43px;
	border-radius:0;
	position:absolute;
	bottom:0;
	cursor:pointer;
	color:transparent;
	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:#001e5c;	
}
.slick-prev {
	left:0;
}
.slick-next {
	right:0;
}
.slick-prev:before,
.slick-next:before {
	margin:0 auto;
	display:block;
	width:14px;
	height:23px;
	position:absolute;
	top:50%;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
	transition:all 0.5s ease-in-out;
	-webkit-transition:all 0.5s ease-in-out;
}
.slick-prev:before {
	left:13px;
	right:auto;
	content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.743' height='23.109' viewBox='0 0 13.743 23.109'%3E%3Cpath id='Path_510' data-name='Path 510' d='M530.8-7552.045l-10.54,10.127,10.54,10.855' transform='translate(-518.133 7553.127)' fill='none' stroke='%23fff' stroke-width='3'/%3E%3C/svg%3E");
}
.slick-next:before {
	left:auto;
	right:13px;
	content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.743' height='23.109' viewBox='0 0 13.743 23.109'%3E%3Cpath id='Path_511' data-name='Path 511' d='M10.54,0,0,10.127,10.54,20.982' transform='translate(11.616 22.027) rotate(180)' fill='none' stroke='%23fff' stroke-width='3'/%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.938rem;
	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;
}
.slick-dots li:focus {
	outline: none;
}
.slick-dots button {
	color: transparent;
	text-indent: -99999px;
	height:9px;
	width:9px;
	background: #f5f5f5;
	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: #a62639;
}


/************************************
/*----------------------------------
/* 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%;
    overflow-x: hidden;
}
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 */
}
body {
	background-color:#fff;
	font-family:'Karla', sans-serif;
	font-weight:400;
	font-size:1rem;
	font-size:16px;
	color:#1b314a;
	line-height:1;
}
a {
	color:#4ca5d8;
	font-weight:inherit;
    transition:all 200ms ease-in-out;
    -webkit-transition:all 200ms ease-in-out;
}
a:hover,
a:focus {
	background:#d2e8f5;
	color:#1b314a;
}
a.no-style {
    color: inherit;
    font-weight: inherit;
}
abbr { /* Replaces acronym */
	color: #001e5c;
	text-decoration: none;
	border: 0px;
	cursor: help;
}
blockquote {
	position: relative;
	padding:2.5rem 2rem 0.063rem 2rem;
	display: block;
	background: #1b314a;
	box-shadow: 0px 7px 18px 0px rgba(1, 1, 1, 0.22);
	overflow:hidden;
}
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: #4ca5d8;
	z-index: 1;
}
blockquote:after {
	content: "“";
	position: absolute;
	top: -0.55rem;
	text-align: center;
	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: bold;
}
blockquote cite:before {
	content: '\2014 \0020';
	color:#4ca5d8;
}
blockquote cite:after {
	content: '\0020 \2014';
	color:#4ca5d8;
}
code {
	background:#e8f5e1;
	overflow:visible;
	color:#1b314a;
	padding:3px 5px;
}
i, /* Legacy */
em { /* Replaces Legacy <i> */
	font-style:italic;
}
hr {
	border:0; 
	height:2px;
	background:#1b314a;
	margin-left:auto !important;
	margin-right:auto !important;
	position:relative;
}
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:#f5f5f5;
}
figure img {
	display:block;
	width:100%;
}
figure p,
figure table {
	margin:0rem !important;
}
figcaption {
	padding:0.938rem 0;
	color:#1b314a;
	font-size:1.125rem;
	font-weight:400;
	text-align:center;
	text-transform:none;
}
figcaption,
figure p {
	line-height:1.1 !important;
}
h1, h2, h3, h4, h5, h6,
.like-h1, .like-h2, .like-h3, .like-h4, .like-h5, .like-h6 {
	font-family:'Karla', sans-serif;
	line-height:1;
}
h1, .like-h1 {
	font-size:2.875rem;
	color:#1b314a;
	font-weight:400;
	text-transform:uppercase;
}
h2, .like-h2 {
	font-size:2.25rem;
	color:#1b314a;
	font-weight:400;
	text-transform:uppercase;
}
h3, .like-h3 {
	font-size:2rem;
	font-weight:400;
	color:#4ca5d8;
}
h4, .like-h4 {
	font-size:1.563rem;
	font-weight:400;
	color:#a62639;
	text-transform:uppercase;
}
h5, .like-h5 {
	font-size:1.25rem;
	font-weight:700;
	color:#1b314a;
	letter-spacing:0.01em;
}
h6, .like-h6 {
	font-size:1rem;
	font-weight:700;
	color:#4ca5d8;
	text-transform:uppercase;
	letter-spacing:0.01em;
}
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;
	line-height:1;
	font-size:1rem;
	font-weight:700;
	color:#4ca5d8;
	text-transform:uppercase;
	letter-spacing:0.01em;
	margin:0.5rem 0;
}
p, li, td, dt, dd {
	font-size:1rem;
	font-weight:400;
}
h1, h2, h3, h4, h5, h6,
p, ul, ol, dl, table, blockquote, blockquote p, hr,
form, figure {
	margin:1.5rem 0;
}
p, ul, ol, dl, table, blockquote, blockquote p, hr,
form {
	line-height:1.625;
}
ul:not([class]) {
	list-style: none;
	padding:0;
	margin-left:1rem;
}
ul:not([class]) li {
	position: relative;
	margin:0 0 0.313rem 0;
	padding-left:0.875rem;
}
ul:not([class]) li:last-of-type {
	margin-bottom:0;
}
ul:not([class]) li:before {
	display:inline-block;
	position:absolute;
	top:0.75rem;
	left:0;	
	width:5px;
	height:5px;
	content:"";
	background:#4ca5d8;
	border-radius:100%;
}
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:2.125rem;
	position: relative;
	counter-increment: step-counter;
	margin:0 0 0.313rem 0;
}
ol:not([class]) li:last-of-type {
	margin-bottom:0;
}
ol:not([class]) li:before {
	content: counter(step-counter);
	width:25px;
	height:25px;
	background:#4ca5d8;
	font-family:'Karla',sans-serif;
	font-size:0.875rem;
	font-weight:600;
	text-align:center;
	line-height:25px;
	color:#fff;
	position:absolute;
	top:0.250rem;
	left:0;
	border-radius:100%;
}
dl:not([class]) {
}
dl:not([class]) dt {
	font-family:'Karla', sans-serif;
	font-weight:700;
	font-size:1.125rem;
	color:#1b314a;
	text-transform:none;
}
dl:not([class]) dd {
	margin-bottom:1.5rem;
	margin-top:-0.5rem;
}
dl:not([class]) dd:last-of-type {
	margin-bottom:0;
}
label,
fieldset legend {
	font-family:'Karla', sans-serif;
	font-size:1rem;
    font-weight:600 !important;
    line-height: 1;
	color: #1b314a;
}
input[type="file"]::file-selector-button {
    font-family:inherit;
}
form input[type=text],
form input[type=email],
form input[type=tel],
form textarea,
form select,
select {
	background-color: #f5f5f5; 
    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: #1b314a;
	outline: 0;
    border:1px solid #ddd;
    border-radius:0;
	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(../images/icon-select-caret.svg);
	background-position: calc(100% - 0.5rem) center;
	background-repeat: no-repeat;
	background-size: 15px 15px;
	-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;
	background-color:#edf6fb;
	border:1px solid #4ca5d8;
	transition: all .5s ease-in-out;
	box-shadow:none;
}
form input[type=radio],
form input[type=checkbox] {
	margin:0 0.313rem 0.250rem 0;
}
input[type="submit"],
form button,
input[type="button"],
input[type="file"]::file-selector-button {
	display:inline-block;
	width:auto;
	padding:0.625rem 2.875rem;	
	margin:0 auto 0 !important;		
	position:relative;
	top:0;
	background:#A62639;
	font-family:'Karla', sans-serif;
	font-size:1.125rem;
	font-weight:700;
	color:#fff;
	line-height:1;
	text-align:center;
	text-decoration:none;
	text-transform:uppercase;
	border-radius:0;
	border:0;
	-webkit-transition: all 350ms linear 50ms !important;
	transition: all 350ms linear 50ms !important;
	cursor:pointer;
}  
form button,
input[type="button"],
input[type="file"]::file-selector-button {
	margin:10px 0 0 0 !important;
	background:#1B314A;
}
input[type="submit"]:hover {
	top:4px;
	background: #1B314A;
}
input[type="button"]:hover,
input[type="file"]::file-selector-button:hover {
	top:4px;
	background:#a62639;
}
/*- Highlighting on Select [Click and Drag] -*/
::-moz-selection {
	background:#f5f5f5;
	color:#1b314a;
}
::selection {
	background:#f5f5f5;
	color:#1b314a;
}

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

.svg-container {
	position: absolute;
	height: 0;
}
.icon-svg-line-accent {
	fill:#4BA7C0;
}
.icon-svg-line-secondary {
	fill:#8DCE69;
}
.icon-svg-stroke-accent {
	fill:#4ba7c0;
}
.icon-svg-line-secondary {
	fill:#8dce69;
}
.no-pointer-events {
	pointer-events:none;
}
.has-bottom-border {
	position:relative;
	padding-bottom:1.25rem;
}
.has-bottom-border:after {
	display:block;
	content:"";
	width:115px;
	height:2px;
	background:#4CA5D8;
	position:absolute;
	bottom:0;
	left:0;
	margin:0;
}
.text-center.has-bottom-border:after {
	right:0;
	margin:0 auto;
}
.has-text-shadow {
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.has-text-shadow-deep {
	text-shadow:0 0 20px rgba(0,0,0,0.75);	
}
.has-drop-shadow {
	-webkit-box-shadow: 5px 5px 8px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 5px 5px 8px 0px rgba(0,0,0,0.25);
	box-shadow: 5px 5px 8px 0px rgba(0,0,0,0.25);	
}
.has-drop-shadow-deep {
	-webkit-box-shadow: 10px 25px 30px 0px rgba(0,0,0,0.30);
	-moz-box-shadow: 10px 25px 30px 0px rgba(0,0,0,0.30);
	box-shadow: 10px 25px 30px 0px rgba(0,0,0,0.30);	
}
a.has-video {
	display:block;
	position:relative;
}
a.has-video:hover,
a.has-video:focus {
	background:transparent;
}
a.has-video:after {
	margin:0 auto;
	width:80px;
	height:80px;
	content:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Cg transform='translate(0 -0.135)'%3E%3Cg transform='translate(0 0.135)' fill='none' stroke='%23fff' stroke-width='1'%3E%3Ccircle cx='40' cy='40' r='40' stroke='none'/%3E%3Ccircle cx='40' cy='40' r='39.5' fill='none'/%3E%3C/g%3E%3Cpath d='M18.5,0,37,32H0Z' transform='translate(59.5 21.5) rotate(90)' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E");
	position:absolute;
	left:0;
	right:0;
	top:50%;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
/*- Checklist -*/
.checklist {
	list-style: none;
	padding:0;
	margin-left:0;
}
.checklist-item {
	font-family: 'Karla', sans-serif;
	font-size:1rem;
	font-weight:400;
	color:#001e5c;
	line-height: 1.5rem;
	padding-left:2rem;
	position: relative;
	margin-bottom:1rem;
}
.checklist-item-bullet {
	width:18px;
	height:18px;
	border-radius:100%;
	background:#4ca5d8;
	text-align:center;
	position:absolute;
	top:0.063rem;
	left:0;
}
.checklist-item-bullet svg {
	fill:#fff;
	width:10px;
	height:8px;
	position:absolute;
	top:50%;
	left:50%;
	-webkit-transform:translate(-50%, -50%);
	transform:translate(-50%, -50%);	
}
/*---> Flexible Iframes <---*/
.flex-container {
	position:relative;
	height:0;
	overflow:hidden;
	padding-bottom:56.25%;
}
.flex-container--map {
    padding-bottom:95%;
}
.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:0.75rem;
	border-collapse:separate;
	text-align:center;
	border-radius:0;
	overflow:hidden;
}  
.table caption {
	background:transparent;
	text-align:center;
	font-family:"Karla",sans-serif;
	font-size: 1.5rem;
	font-weight:400;
	color:#1b314a;
	text-transform:uppercase;
	padding:1rem 0;
}
.table thead tr th {
	padding:1rem 0;
	font-family:"Karla",sans-serif;
	font-weight:700;
	font-size:1.125rem;
	color:#fff;
	line-height:1.2;
	text-transform:uppercase;
	text-align:center;
	vertical-align:middle;
	background:#1B314A;
}
.table td {
	font-size:1rem;
	color:#1B314A;
	border-left:1px solid #B0CCD5;
	border-bottom:1px solid #B0CCD5;
	padding:0.188rem 0.5rem;
	border-collapse:collapse;
}
.table td:last-of-type {
	border-right:1px solid #B0CCD5;	
}
.table tr:nth-child(even) {
	background:#f5f5f5;
}
.table tr:nth-child(odd) {
	background:#fff;
}
/*--> Accent Table for Dark Backrounds <---*/
.table-accent caption {
	color:#fff;
}
.table-accent thead tr th {
	background:#4CA5D8;
}
/*- 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.625rem 2.875rem;	
	margin:0;	
	position:relative;
	top:0;
	background:#A62639;
	font-family:'Karla', sans-serif;
	font-size:1.125rem;
	font-weight:700;
	color:#fff;
	line-height:1;
	text-align:center;
	text-decoration:none;
	text-transform:uppercase;
	border-radius:0;
	-webkit-transition: all 350ms linear 50ms !important;
	transition: all 350ms linear 50ms !important;
}
.btn:hover {
	top:4px;
	cursor:pointer;	
	color:#fff;
	background:#1B314A;
	-webkit-transition: all 350ms linear 50ms;
	transition: all 350ms linear 50ms;	
}
.btn-large {
	padding:0.5rem 2rem;	
	font-size:1.375rem;
}
.btn.position-center {
	display:block;
	margin:0 auto;
	width:auto;
}
/*--> Link Class with Arrows <--*/
.link-more {
	position:relative;
	transition:all 200ms ease-in-out;
	-webkit-transition:all 200ms ease-in-out;
}
.link-more-svg {
	width:17px;
	height:17px;
	fill:#4ca5d8;
	position:relative;
	top:3px;
	right:0px;
	transition:all 200ms ease-in-out;
	-webkit-transition:all 200ms ease-in-out;	
}
.link-more:hover .link-more-svg {
	fill:#1b314a;
	right:-5px;
}
/*---> Line Breaks <br  /> <---*/
.break-on-mobile { /*-  Function in scripts-global.js -*/
}
.break-on-desktop { /*-  Function in scripts-global.js -*/
}
/*---> Backgrounds <---*/
.background-primary	{
	background-color:#001e5c;
}
.background-secondary	{
	background-color:#1b314a;
}
.background-tertiary {
	background-color:#4ca5d8;
}
.background-support {
	background-color:#d2e8f5;
}
.background-accent {
	background-color: #a62639;
}
.background-gray {
	background-color:#f5f5f5;
}
.background-white {
	background-color: #fff;
}
.background-black {
	background: #000;
}
/*---> 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:#001e5c;
}
.color-secondary {
	color:#1b314a;
}
.color-tertiary {
	color:#4ca5d8;
}
.color-support {
	color:#d2e8f5;
}
.color-accent {
	color:#a62639;
}
.color-gray {
	color:#f5f5f5;
}
.color-white {
    color: #fff;
}
.color-black {
    color: #000;
}
.font-primary {
	font-family:'Karla', 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;
}
.weight600 {
	font-weight:600;
}
.weight700 {
	font-weight:700;
}
.line-height-reduced {
	line-height:1.3;
}
ul:not([class]) li.line-height-reduced:before {
	top:0.563rem;
}
/*---> Text Alignment <---*/
.text-left {
	text-align:left;
}
.text-center {
	text-align:center;
}
.text-right {
	text-align:right;
}
.text-justify {
	text-align:justify;
}
/* Alignment */
.justify-center {
    justify-content: center;
}
/*---> Spacing <---*/
.margin-bottom-0 {
    margin-bottom:0;
}
.margin-top-0 {
    margin-top:0;
}
.margin-x-0 {
    margin-top:0;
    margin-bottom:0;
}
.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-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-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-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-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-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-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;
}

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

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

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

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}