/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
	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;vertical-align: baseline; }
	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block; }
	body {line-height: 1; }
	blockquote, q {quotes: none; }
	blockquote:before, blockquote:after,q:before, q:after {content: '';content: none; }
	table {border-collapse: collapse;border-spacing: 0; }
	img, svg {max-width: 100%;height: auto;vertical-align: middle; }
	iframe {max-width: 100%;vertical-align: middle; }
	ol, ul, li {padding-left: 10px;margin-left: 10px; }
	ul {list-style: disc; }
	ol {list-style: decimal; }
	hr {height: 20px;margin: 0 0 20px;clear: both;border: 1px solid #CCC;	border-width: 0 0 1px;}
	a,a:visited {color: rgba(70, 70, 70, 1);-webkit-transition: all 200ms linear;-moz-transition: all 200ms linear;-o-transition: all 200ms linear;transition: all 200ms linear;}
	a:hover,a:active {color: rgba(137, 48, 1, 1);-webkit-transition: all 200ms linear;-moz-transition: all 200ms linear;-o-transition: all 200ms linear;transition: all 200ms linear;}
	a.anchor {padding-top: 7rem;}
	.webkit a.anchor {display: block;	margin-top: -7rem;}
	.has-text-centered {text-align: center;}
	.has-text-right {text-align: right;}
	.has-text-left {text-align: left;}
	.is-hidden,
	.is-hidden-not-mobile { display: none;}

	
	/* #Base 1200 Grid
================================================== */
	.container {
		position: relative;
		width: 1300px;
		padding: 0 50px;
		margin: auto;
		box-sizing: border-box;
		z-index: 1;
	}

/* Columns */
	.columns {
		margin: -2rem -2rem auto;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: calc(100% + 4rem);
	}
	.columns.is-centered {
		justify-content: center;
	}
	.columns:last-child {
		margin-bottom: -2rem;
	}
	.columns:not(:last-child) {
		margin-bottom: 2rem;
	}
	.columns.is-multiline {
		flex-wrap: wrap;
	}
	.columns.is-gapless,
	.columns.is-gapless:last-child,
	.columns.is-gapless:not(:last-child) {
		margin: auto;
		width: 100%;
	}

/* Column */
	.column {
		display: block;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		-ms-flex-negative: 1;
		flex-shrink: 1;
		padding: 2rem;
		box-sizing: border-box;
	}
	.is-gapless > .column {
		padding: 0;
	}
	.column.is-1,
	.column.is-2,
	.column.is-3,
	.column.is-4,
	.column.is-5,
	.column.is-6,
	.column.is-7,
	.column.is-8,
	.column.is-9,
	.column.is-10,
	.column.is-11,
	.column.is-12 {
		-webkit-box-flex: 0;
		-ms-flex: none;
		flex: none;
	}

	.column.is-1 {
		width: calc(100% / 12 * 1);
	}
	.column.is-2 {
		width: calc(100% / 12 * 2);
	}
	.column.is-3 {
		width: calc(100% / 12 * 3);
	}
	.column.is-4 {
		width: calc(100% / 12 * 4);
	}
	.column.is-5 {
		width: calc(100% / 12 * 5);
	}
	.column.is-6 {
		width: calc(100% / 12 * 6);
	}
	.column.is-7 {
		width: calc(100% / 12 * 7);
	}
	.column.is-8 {
		width: calc(100% / 12 * 8);
	}
	.column.is-9 {
		width: calc(100% / 12 * 9);
	}
	.column.is-10 {
		width: calc(100% / 12 * 10);
	}
	.column.is-11 {
		width: calc(100% / 12 * 11);
	}
	.column.is-12 {
		width: calc(100% / 12 * 12);
	}

/* Offsets */
	.column.is-offset-1 {
		margin-left: calc(100% / 12 * 1);
	}
	.column.is-offset-2 {
		margin-left: calc(100% / 12 * 2);
	}
	.column.is-offset-3 {
		margin-left: calc(100% / 12 * 3);
	}
	.column.is-offset-4 {
		margin-left: calc(100% / 12 * 4);
	}
	.column.is-offset-5 {
		margin-left: calc(100% / 12 * 5);
	}
	.column.is-offset-6 {
		margin-left: calc(100% / 12 * 6);
	}
	.column.is-offset-7 {
		margin-left: calc(100% / 12 * 7);
	}
	.column.is-offset-8 {
		margin-left: calc(100% / 12 * 8);
	}
	.column.is-offset-9 {
		margin-left: calc(100% / 12 * 9);
	}
	.column.is-offset-10 {
		margin-left: calc(100% / 12 * 10);
	}
	.column.is-offset-11 {
		margin-left: calc(100% / 12 * 11);
	}
/* #Small Screen 
================================================== */
/* Note: Design for a width of 960px */
@media only screen and (min-width: 1040px) and (max-width: 1299px) {
	.container {
		padding: 0 40px;
		width: 1040px;
	}
	.column.is-desktop-1 {
		width: calc(100% / 12 * 1);
	}
	.column.is-desktop-2 {
		width: calc(100% / 12 * 2);
	}
	.column.is-desktop-3 {
		width: calc(100% / 12 * 3);
	}
	.column.is-desktop-4 {
		width: calc(100% / 12 * 4);
	}
	.column.is-desktop-5 {
		width: calc(100% / 12 * 5);
	}
	.column.is-desktop-6 {
		width: calc(100% / 12 * 6);
	}
	.column.is-desktop-7 {
		width: calc(100% / 12 * 7);
	}
	.column.is-desktop-8 {
		width: calc(100% / 12 * 8);
	}
	.column.is-desktop-9 {
		width: calc(100% / 12 * 9);
	}
	.column.is-desktop-10 {
		width: calc(100% / 12 * 10);
	}
	.column.is-desktop-11 {
		width: calc(100% / 12 * 11);
	}
	.column.is-desktop-12 {
		width: calc(100% / 12 * 12);
	}

/* Offsets */
	.column.is-offset-desktop-1 {
		margin-left: calc(100% / 12 * 1);
	}
	.column.is-offset-desktop-2 {
		margin-left: calc(100% / 12 * 2);
	}
	.column.is-offset-desktop-3 {
		margin-left: calc(100% / 12 * 3);
	}
	.column.is-offset-desktop-4 {
		margin-left: calc(100% / 12 * 4);
	}
	.column.is-offset-desktop-5 {
		margin-left: calc(100% / 12 * 5);
	}
	.column.is-offset-desktop-6 {
		margin-left: calc(100% / 12 * 6);
	}
	.column.is-offset-desktop-7 {
		margin-left: calc(100% / 12 * 7);
	}
	.column.is-offset-desktop-8 {
		margin-left: calc(100% / 12 * 8);
	}
	.column.is-offset-desktop-9 {
		margin-left: calc(100% / 12 * 9);
	}
	.column.is-offset-desktop-10 {
		margin-left: calc(100% / 12 * 10);
	}
	.column.is-offset-desktop-11 {
		margin-left: calc(100% / 12 * 11);
	}
}
/* #Tablet (Portrait)
================================================== */
/* Note: Design for a width of 768px */
@media only screen and (min-width: 768px) and (max-width: 1039px) {
	.container {
		padding: 0 24px;
		width: 738px;
	}
	.column.is-tablet-1 {
		width: calc(100% / 12 * 1);
	}
	.column.is-tablet-2 {
		width: calc(100% / 12 * 2);
	}
	.column.is-tablet-3 {
		width: calc(100% / 12 * 3);
	}
	.column.is-tablet-4 {
		width: calc(100% / 12 * 4);
	}
	.column.is-tablet-5 {
		width: calc(100% / 12 * 5);
	}
	.column.is-tablet-6 {
		width: calc(100% / 12 * 6);
	}
	.column.is-tablet-7 {
		width: calc(100% / 12 * 7);
	}
	.column.is-tablet-8 {
		width: calc(100% / 12 * 8);
	}
	.column.is-tablet-9 {
		width: calc(100% / 12 * 9);
	}
	.column.is-tablet-10 {
		width: calc(100% / 12 * 10);
	}
	.column.is-tablet-11 {
		width: calc(100% / 12 * 11);
	}
	.column.is-tablet-12 {
		width: calc(100% / 12 * 12);
	}

/* Offsets */
	.column.is-offset-tablet-1 {
		margin-left: calc(100% / 12 * 1);
	}
	.column.is-offset-tablet-2 {
		margin-left: calc(100% / 12 * 2);
	}
	.column.is-offset-tablet-3 {
		margin-left: calc(100% / 12 * 3);
	}
	.column.is-offset-tablet-4 {
		margin-left: calc(100% / 12 * 4);
	}
	.column.is-offset-tablet-5 {
		margin-left: calc(100% / 12 * 5);
	}
	.column.is-offset-tablet-6 {
		margin-left: calc(100% / 12 * 6);
	}
	.column.is-offset-tablet-7 {
		margin-left: calc(100% / 12 * 7);
	}
	.column.is-offset-tablet-8 {
		margin-left: calc(100% / 12 * 8);
	}
	.column.is-offset-tablet-9 {
		margin-left: calc(100% / 12 * 9);
	}
	.column.is-offset-tablet-10 {
		margin-left: calc(100% / 12 * 10);
	}
	.column.is-offset-tablet-11 {
		margin-left: calc(100% / 12 * 11);
	}
}
/*  #Mobile (Portrait)
================================================== */
@media only screen and (max-width: 767px) {
	.container {
		padding: 0 20px;
		width: 100%;
	}
	.column.is-1,
	.column.is-2,
	.column.is-3,
	.column.is-4,
	.column.is-5,
	.column.is-6,
	.column.is-7,
	.column.is-8,
	.column.is-9,
	.column.is-10,
	.column.is-11,
	.column.is-12 {
		width: 100%;
	}
	.column.is-offset-1,
	.column.is-offset-2,
	.column.is-offset-3,
	.column.is-offset-4,
	.column.is-offset-5,
	.column.is-offset-6,
	.column.is-offset-7,
	.column.is-offset-8,
	.column.is-offset-9,
	.column.is-offset-10,
	.column.is-offset-11,
	.column.is-offset-12 {
		margin-left: auto;
	}
	.column.is-mobile-1 {
		width: calc(100% / 12 * 1);
	}
	.column.is-mobile-2 {
		width: calc(100% / 12 * 2);
	}
	.column.is-mobile-3 {
		width: calc(100% / 12 * 3);
	}
	.column.is-mobile-4 {
		width: calc(100% / 12 * 4);
	}
	.column.is-mobile-5 {
		width: calc(100% / 12 * 5);
	}
	.column.is-mobile-6 {
		width: calc(100% / 12 * 6);
	}
	.column.is-mobile-7 {
		width: calc(100% / 12 * 7);
	}
	.column.is-mobile-8 {
		width: calc(100% / 12 * 8);
	}
	.column.is-mobile-9 {
		width: calc(100% / 12 * 9);
	}
	.column.is-mobile-10 {
		width: calc(100% / 12 * 10);
	}
	.column.is-mobile-11 {
		width: calc(100% / 12 * 11);
	}
	.column.is-mobile-12 {
		width: calc(100% / 12 * 12);
	}

/* Offsets */
	.column.is-offset-mobile-1 {
		margin-left: calc(100% / 12 * 1);
	}
	.column.is-offset-mobile-2 {
		margin-left: calc(100% / 12 * 2);
	}
	.column.is-offset-mobile-3 {
		margin-left: calc(100% / 12 * 3);
	}
	.column.is-offset-mobile-4 {
		margin-left: calc(100% / 12 * 4);
	}
	.column.is-offset-mobile-5 {
		margin-left: calc(100% / 12 * 5);
	}
	.column.is-offset-mobile-6 {
		margin-left: calc(100% / 12 * 6);
	}
	.column.is-offset-mobile-7 {
		margin-left: calc(100% / 12 * 7);
	}
	.column.is-offset-mobile-8 {
		margin-left: calc(100% / 12 * 8);
	}
	.column.is-offset-mobile-9 {
		margin-left: calc(100% / 12 * 9);
	}
	.column.is-offset-mobile-10 {
		margin-left: calc(100% / 12 * 10);
	}
	.column.is-offset-mobile-11 {
		margin-left: calc(100% / 12 * 11);
	}
}
/*  #Mobile (Landscape)
================================================== */
@media only screen and (min-width: 480px) and (max-width: 767px) {
	.column.is-landscape-1 {
		width: calc(100% / 12 * 1);
	}
	.column.is-landscape-2 {
		width: calc(100% / 12 * 2);
	}
	.column.is-landscape-3 {
		width: calc(100% / 12 * 3);
	}
	.column.is-landscape-4 {
		width: calc(100% / 12 * 4);
	}
	.column.is-landscape-5 {
		width: calc(100% / 12 * 5);
	}
	.column.is-landscape-6 {
		width: calc(100% / 12 * 6);
	}
	.column.is-landscape-7 {
		width: calc(100% / 12 * 7);
	}
	.column.is-landscape-8 {
		width: calc(100% / 12 * 8);
	}
	.column.is-landscape-9 {
		width: calc(100% / 12 * 9);
	}
	.column.is-landscape-10 {
		width: calc(100% / 12 * 10);
	}
	.column.is-landscape-11 {
		width: calc(100% / 12 * 11);
	}
	.column.is-landscape-12 {
		width: calc(100% / 12 * 12);
	}

/* Offsets */
	.column.is-offset-landscape-1 {
		margin-left: calc(100% / 12 * 1);
	}
	.column.is-offset-landscape-2 {
		margin-left: calc(100% / 12 * 2);
	}
	.column.is-offset-landscape-3 {
		margin-left: calc(100% / 12 * 3);
	}
	.column.is-offset-landscape-4 {
		margin-left: calc(100% / 12 * 4);
	}
	.column.is-offset-landscape-5 {
		margin-left: calc(100% / 12 * 5);
	}
	.column.is-offset-landscape-6 {
		margin-left: calc(100% / 12 * 6);
	}
	.column.is-offset-landscape-7 {
		margin-left: calc(100% / 12 * 7);
	}
	.column.is-offset-landscape-8 {
		margin-left: calc(100% / 12 * 8);
	}
	.column.is-offset-landscape-9 {
		margin-left: calc(100% / 12 * 9);
	}
	.column.is-offset-landscape-10 {
		margin-left: calc(100% / 12 * 10);
	}
	.column.is-offset-landscape-11 {
		margin-left: calc(100% / 12 * 11);
	}
}
/*  #Mobile (Portrait)
================================================== */

@media only screen and (max-width: 480px) {
	.column.is-portrait-1 {
		width: calc(100% / 12 * 1);
	}
	.column.is-portrait-2 {
		width: calc(100% / 12 * 2);
	}
	.column.is-portrait-3 {
		width: calc(100% / 12 * 3);
	}
	.column.is-portrait-4 {
		width: calc(100% / 12 * 4);
	}
	.column.is-portrait-5 {
		width: calc(100% / 12 * 5);
	}
	.column.is-portrait-6 {
		width: calc(100% / 12 * 6);
	}
	.column.is-portrait-7 {
		width: calc(100% / 12 * 7);
	}
	.column.is-portrait-8 {
		width: calc(100% / 12 * 8);
	}
	.column.is-portrait-9 {
		width: calc(100% / 12 * 9);
	}
	.column.is-portrait-10 {
		width: calc(100% / 12 * 10);
	}
	.column.is-portrait-11 {
		width: calc(100% / 12 * 11);
	}
	.column.is-portrait-12 {
		width: calc(100% / 12 * 12);
	}

/* Offsets */
	.column.is-offset-portrait-1 {
		margin-left: calc(100% / 12 * 1);
	}
	.column.is-offset-portrait-2 {
		margin-left: calc(100% / 12 * 2);
	}
	.column.is-offset-portrait-3 {
		margin-left: calc(100% / 12 * 3);
	}
	.column.is-offset-portrait-4 {
		margin-left: calc(100% / 12 * 4);
	}
	.column.is-offset-portrait-5 {
		margin-left: calc(100% / 12 * 5);
	}
	.column.is-offset-portrait-6 {
		margin-left: calc(100% / 12 * 6);
	}
	.column.is-offset-portrait-7 {
		margin-left: calc(100% / 12 * 7);
	}
	.column.is-offset-portrait-8 {
		margin-left: calc(100% / 12 * 8);
	}
	.column.is-offset-portrait-9 {
		margin-left: calc(100% / 12 * 9);
	}
	.column.is-offset-portrait-10 {
		margin-left: calc(100% / 12 * 10);
	}
	.column.is-offset-portrait-11 {
		margin-left: calc(100% / 12 * 11);
	}
}
/* #Clearing
================================================== */
	.container:after {content: "\0020";display: block;height: 0;clear: both;visibility: hidden;}
	.clearfix:before,.clearfix:after,.row:before,.row:after {	content: '\0020';	display: block;	overflow: hidden;	visibility: hidden;	width: 0;	height: 0;}
	.row:after,.clearfix:after {clear: both;}
	.row,.clearfix {zoom: 1;}
	.clearAll {clear: both;	display: block;overflow: hidden;visibility: hidden;line-height: 0.1;width: 0;height: 0;content: ' ';}

/* #Fonts
======================================================================================================== */
/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on May 23, 2017 */
@font-face {
	font-family: 'libre_baskervillebold';
	src: url('../fonts/librebaskerville-bold-webfont.woff2') format('woff2'), url('../fonts/librebaskerville-bold-webfont.woff') format('woff');font-weight: normal;font-style: normal;
}
@font-face {
	font-family: 'libre_baskervilleitalic';
	src: url('../fonts/librebaskerville-italic-webfont.woff2') format('woff2'), url('../fonts/librebaskerville-italic-webfont.woff') format('woff');font-weight: normal;font-style: normal;
}
@font-face {
	font-family: 'libre_baskervilleregular';
	src: url('../fonts/librebaskerville-regular-webfont.woff2') format('woff2'), url('../fonts/librebaskerville-regular-webfont.woff') format('woff');font-weight: normal;font-style: normal;
}



/* #Basic Styles
======================================================================================================== */
html {
	font-size: 10px;
	height: 100%;
	overflow-x: hidden;
}
body {
	background: rgba(255, 255, 255, 1);
	font: 1.8rem/2.4rem 'libre_baskervilleregular';
	color: rgba(70, 70, 70, 1);
	-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
	-webkit-text-size-adjust: 100%;
	position: relative;
	display: flex;
	flex-flow: column wrap;
	align-items: stretch;
	min-height: 100%;
	overflow-x: hidden;
}
body:before {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: '';
	display: block;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,f3d07f+100 */
	background: rgb(255,255,255); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(243,208,127,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(243,208,127,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(243,208,127,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.header,
.section,
.footer {
	position: relative;
	z-index: 20;
}
.hero {
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
	z-index: 10;
}
.hero-head {
	-webkit-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	background: rgba(0, 0, 0, 1);
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
	position: relative;
	padding: 1rem 0;
}
.hero-head:before {
	position: absolute;
	content: '';
	display: block;
	height: 50%;
	width: 50%;
	transform: rotate(-2deg);
	box-shadow: 0 3rem 2rem rgba(0, 0, 0, 0.5);
	left: -3rem;
	bottom: 3rem;
}
.hero-head:after {
	position: absolute;
	content: '';
	display: block;
	height: 50%;
	width: 50%;
	transform: rotate(2deg);
	box-shadow: 0 3rem 2rem rgba(0, 0, 0, 0.5);
	right: -3rem;
	bottom: 3rem;
}
.hero-body {
	-webkit-box-align: start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	justify-content: center;
	padding: 4rem 0;
}
.hero-foot {
	-webkit-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	position: relative;
	padding: 2rem 0;
}
.hero.is-fullheight {
	min-height: 100vh;
}
.logo {
	display: flex;
	height: 100%;
	align-items: center;
}
.stepsNavigation,
.is-portrait-only {
	display: none;
}
.steps {
	font-size: 0;
	padding: 1rem 0 3rem;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
	opacity: 1;
}
.steps:not(.is-active) {
	opacity: 0;
}
.checkCircle {
	width: 4rem;
	height: 4rem;
	border: 1px solid rgba(70, 70, 70, 1);
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	display: inline-block;
	background: rgba(243, 208, 127, 0);
	overflow: hidden;
}
.checkCircle:not(:first-child) {
	margin-left: 2rem;
}
.checkCircle svg {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
}
.checkCircle.is-active svg {
	background: rgba(243, 208, 127, 1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}


/* #Fonts
================================================== */
h1 {
	color: rgba(137, 48, 1, 1);
	font: 4rem/5rem 'libre_baskervilleregular';
	text-transform: uppercase;
}
h2 {
	color: rgba(253, 156, 49, 1);
	font: 3rem/4rem 'libre_baskervilleregular';
}
h3 {
	color: rgba(63, 169, 213, 1);
	font: 1.9rem/3rem 'libre_baskervilleregular';
	text-transform: uppercase;
	letter-spacing: 2px;
}
h4 {
	color: rgba(63, 169, 213, 1);
	font: 2.2rem/3rem 'libre_baskervilleregular';
	font-weight: 600;
	text-transform: uppercase;
}
h5 {
	color: rgba(10, 8, 83, 1);
	text-transform: uppercase;
	font: 1.7rem/3rem 'libre_baskervilleregular';
}
h6 {
	color: #333333;
	text-transform: uppercase;
	font: 1.7rem/3rem 'libre_baskervilleregular';
}
.phone h1 {
	font-size: 4.3rem;
}
.phone a,
.phone a:visited {
	color: rgba(255, 255, 255, 1);
	text-decoration: none;
}
.phone h1,
.phone h3 {
	color: rgba(255, 255, 255, 1);
}

.footer,
.small {
	font: 1.2rem/1.6rem 'Arial', sans-serif;
	color: #231F1F;
}
.footer a,
.footer a:visited,
.small a,
.small a:visited {
	color: rgba(35, 31, 31, 1);
	text-decoration: none;
}
.footer a:hover,
.footer a:active,
.small a:hover,
.small a:active {
	color: rgba(137, 48, 1, 1);
	text-decoration: none;
}
.step-5 {
	text-transform: uppercase;
}
span.is-primary {
	color: rgba(137, 48, 1, 1);
	display: block;
}
span.is-primary a,
span.is-primary a:visited {
	color: rgba(137, 48, 1, 1);
	text-decoration: none;
}
.content.is-secundary {
	font: 1.5rem/2.4rem 'libre_baskervilleregular';
}


/* #Forms & Buttons
================================================== */

.button,
.button:visited {
	display: inline-block;
	font: 1.8rem/2.6rem 'libre_baskervilleregular';
	background: rgba(137, 48, 1, 1);
	color: rgba(255, 255, 255, 1);
	text-decoration: none;
	padding: 1rem 2rem;
	text-transform: uppercase;
	border: 1px solid rgba(137, 48, 1, 1);
	min-width: 20rem;
	cursor: pointer;
	border-radius: 1rem;
	text-align: center;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
}
.button:hover,
.button:active {
	background: rgba(255, 255, 255, 1);
	color: rgba(137, 48, 1, 1);
}

.label {
	text-transform: uppercase;
	font-size: 2rem;
	line-height: 2.4rem;
}



.control {
	position: relative;
	padding-bottom: 0;
}
.control:not(:last-child) {
 	margin-bottom: 2rem;
}
.control.is-grouped {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.control.is-grouped > .control {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.control.is-grouped > .control:not(:last-child) {
	margin-bottom: 0;
	margin-right: 2rem;
}
.control.is-grouped > .control.is-expanded {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-negative: 1;
	flex-shrink: 1;
}
.control.is-grouped.is-grouped-centered {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.control.is-grouped.is-grouped-right {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.label {
	display: block;
}


input[type="text"],
select,
textarea {
	background: #FFF;
	padding: 1rem;
	font: 1.8rem/2.5rem 'libre_baskervilleregular';
	border: 1px solid #999;
	width: -webkit-calc(100% - 2rem - 2px);
	width: -moz-calc(100% - 2rem - 2px);
	width: calc(100% - 2rem - 2px);
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-box-shadow: inset 0 0 1rem rgba(243, 208, 127, 0);
	-moz-box-shadow: inset 0 0 1rem rgba(243, 208, 127, 0);
	-o-box-shadow: inset 0 0 1rem rgba(243, 208, 127, 0);
	box-shadow: inset 0 0 1rem rgba(243, 208, 127, 0);
}
input[type="text"]:focus,
select:focus,
textarea:focus {
	-webkit-box-shadow: inset 0 0 1rem rgba(243, 208, 127, 0.8);
	-moz-box-shadow: inset 0 0 1rem rgba(243, 208, 127, 0.8);
	-o-box-shadow: inset 0 0 1rem rgba(243, 208, 127, 0.8);
	box-shadow: inset 0 0 1rem rgba(243, 208, 127, 0.8);
}
select {
	width: 100%;
}
textarea {
	height: 12rem;
}
input[type="submit"] {
	display: inline-block;
	font: 1.8rem/5rem 'libre_baskervilleregular';
	background: rgba(2, 44, 100, 1);
	color: #FFF;
	text-decoration: none;
	padding: 0 5rem;
	text-transform: uppercase;
	-webkit-border-radius: 1rem;
	-moz-border-radius: 1rem;
	border-radius: 1rem;
	border: none;
	cursor: pointer;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
}
input[type="submit"]:hover {
	background: #87FFFF;
	color: #032A64;
}

.checkbox input,
.radio input {
	opacity: 0;
	display: none;
}
.checkbox .label,
.radio .label {
	position: relative;
	padding-left: 24px;
	cursor: pointer;
}
.checkbox .label:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 4px;
	border: 1px solid #4f6d7a;
	border-radius: 3px;
	height: 12px;
	width: 12px;
}
.checkbox .label:after {
	content: '';
	display: block;
	position: absolute;
	left: 1px;
	top: 7px;
	border-left: 3px solid #4f6d7a;
	border-bottom: 2px solid #4f6d7a;
	-webkit-border-bottom-left-radius: 3px;
	-moz-border-bottom-left-radius: 3px;
	border-bottom-left-radius: 3px;
	height: 3px;
	width: 9px;
	opacity: 0;
	-webkit-transform: rotate(-40deg) skew(-40deg);
	-moz-transform: rotate(-40deg) skew(-40deg);
	-o-transform: rotate(-40deg) skew(-40deg);
	transform: rotate(-40deg) skew(-40deg);
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
}

.radio .label:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 4px;
	border: 1px solid #4f6d7a;
	border-radius: 100%;
	height: 12px;
	width: 12px;
}
.radio .label:after {
	content: '';
	display: block;
	position: absolute;
	left: 3px;
	top: 7px;
	background: #4f6d7a;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	height: 8px;
	width: 8px;
	opacity: 0;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
}
.checkbox .label:hover:after,
.radio .label:hover:after {
	opacity: 0.3;
}
.checkbox input:checked + .label:after,
.radio input:checked + .label:after {
	opacity: 1;
}





.select {
	display: block;
	position: relative;
	vertical-align: top;
}

.select:after {
	border: 1px solid #999;
	border-right: 0;
	border-top: 0;
	content: " ";
	display: block;
	height: 0.5em;
	pointer-events: none;
	position: absolute;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	width: 0.5em;
	margin-top: -0.375em;
	right: 1.125em;
	top: 50%;
	z-index: 4;
}
.select:hover:after {
	border-color: #032A64;
}

.is-error {
	display: block;
}
.error {
	position: absolute;
	opacity: 0;
	right: 1rem;
	height: 3rem;
	margin-top: 1rem;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;	
}
.is-error .error {
	opacity: 1;
}
.is-error .input,
.is-error select {
	border-color: rgba(137, 48, 1, 1);
}



/* #SVG's & Images
================================================== */
svg * {
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
}
.logoSVG svg {
	fill: rgba(255, 255, 255, 1);
	max-width: 35rem;
}
.logoSVG svg .is-primary {
	fill: rgba(137, 48, 1, 1);
}
.checkCircle svg {
	height: 4rem;
	width: 4rem;
	fill: rgba(255, 255, 255, 1);
}
.error svg {
	height: 3rem;
	width: 3rem;
	fill: rgba(137, 48, 1, 1);
}
.footerLogos {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10%;
}
.img {
	display: block;
	width: 100%;
	padding: 1rem;
	max-width: 10rem;
}


/* #iFrames
================================================== */
.videoContainer {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
}
.videoContainer iframe,
.videoContainer object,
.videoContainer embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* #Scripts
================================================== */
.no_js { 
	display: block;
}
.has_js { 
	display: none;
}
.js .no_js { 
	display: none;
}
.js .has_js {
	display: block;
}

/* #Media Specifications
======================================================================================================== */


/* All but except Mobile Sizes */
@media only screen and (min-width: 768px) {
	.step-1 .content {
		max-width: 40rem;
		margin: auto;
	}
}

/* Larger than standard 1200 */
@media only screen and (min-width: 1300px) {
	.step-1 .label {
		padding-bottom: 1rem;
	}
	.step-1 .content {
		padding-top: 7rem;
	}
}

/* Smaller than standard 1200 */
@media only screen and (max-width: 1299px) {
}

/* Small Screen size to standard 1200 */
@media only screen and (min-width: 1040px) and (max-width: 1299px) {
	h1 {
		font-size: 3.5rem;
		line-height: 4.5rem;
	}
	.logoSVG svg {
		max-width: 30rem;
	}
	.phone h1 {
		font-size: 3.8rem;
	}
	.step-1 .content {
		padding-top: 3rem;
	}
}

/* Smaller than standard 960 */
@media only screen and (max-width: 1039px) {	
}

/* Tablet Portrait size to standard 960 */
@media only screen and (min-width: 768px) and (max-width: 1039px) {
	html {
		font-size: 9px;
	}
	h1 {
		font-size: 3rem;
		line-height: 4rem;
	}
	.logoSVG svg {
		max-width: 25rem;
	}
	.phone h1 {
		font-size: 3.3rem;
	}
	.phone h3 {
		font-size: 1.7rem;
	}
	.footerLogos {
		padding: 0;
	}
	.img {
		padding: 5px;
	}
}

/* Tablet Portrait size to standard 1200 */
@media only screen and (min-width: 768px) and (max-width: 1299px) {
}

/* All Mobile Sizes */
@media only screen and (max-width: 767px) {
	html {
		font-size: 8px;
	}
	.columns {
		margin: -1rem -1rem auto;
		width: calc(100% + 2rem);
	}
	.columns:last-child {
		margin-bottom: -1rem;
	}
	.columns:not(:last-child) {
		margin-bottom: 1rem;
	}
	.column {
		padding: 1rem;
	}
	.label {
		font-size: 1.7rem;
	}
	input[type="text"],
	select,
	textarea {
		font-size: 1.6rem;
	}
	.is-display-mobile {
		display: block;
	}
	.is-hidden-mobile {
		display: none;
	}
	.is-hidden-mobile.not-step-1 {
		display: block;
	}
	.hero-body {
		padding-top: 2rem;
	}
}

/* Mobile Landscape Size to Tablet Portrait */
@media only screen and (min-width: 480px) and (max-width: 767px) {
	h1 {
		font-size: 3rem;
		line-height: 4rem;
	}
	.logoSVG svg {
		max-width: 25rem;
	}
	.phone h1 {
		font-size: 2.3rem;
		line-height: 3rem;
	}
	.phone h3 {
		font-size: 1.4rem;
		line-height: 2rem;
	}
}

/* Mobile Portrait Size to Mobile Landscape Size  */
@media only screen and (max-width: 479px) {
	.is-hidden-portrait {
		display: none;
	}
	.is-portrait-only {
		display: block;
	}
	.has-text-centered-portrait {
		text-align: center;
	}
	.logo a,
	.logo span {
		display: block;
		text-align: center;
		width: 100%;
	}
	h1 {
		font-size: 2.5rem;
		line-height: 3.4rem;
	}
	.phone h1 {
		font-size: 3rem;
		line-height: 3.3rem;
	}
	.phone h3 {
		font-size: 1.4rem;
		line-height: 2rem;
	}
	.footerLogos {
		padding: 0;
	}
	.img {
		padding: 5px;
	}
	.hero-foot {
		padding-bottom: 0;
	}
	.footer {
		padding-bottom: 1rem;
	}
	.hero-foot .header {
		-webkit-box-flex: 0;
		-ms-flex-positive: 0;
		flex-grow: 0;
		-ms-flex-negative: 0;
		flex-shrink: 0;
		background: rgba(0, 0, 0, 1);
		box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
		position: relative;
		padding: 1rem 0;
	}
	.hero-foot .header:before {
		position: absolute;
		content: '';
		display: block;
		height: 50%;
		width: 50%;
		transform: rotate(-2deg);
		box-shadow: 0 3rem 2rem rgba(0, 0, 0, 0.5);
		left: -3rem;
		bottom: 3rem;
	}
	.hero-foot .header:after {
		position: absolute;
		content: '';
		display: block;
		height: 50%;
		width: 50%;
		transform: rotate(2deg);
		box-shadow: 0 3rem 2rem rgba(0, 0, 0, 0.5);
		right: -3rem;
		bottom: 3rem;
	}
}

/* #Print Specifications
======================================================================================================== */
@media only print {}