/**
 * ------------------------------------------------
 * FVD General Stylesheet
 * Provides global styles for theme
 * Should be called before module specific sheets.
 * ------------------------------------------------
 */

/**
 * Global Style
 * The default base on which all other styles adhere or deviate from
 * Font size / line height are by default 0 to prevent whitespace influence
 * All elements that have copy need to specify a font-size / line-height
 */

html, body{
	border: 0;
	padding: 0;
	margin: 0;
	line-height: 0;
	font-size: 0;
	background-color: #ffffff;
	color: #ff0000; /* Change to black in production */
	font-family: 'Roboto', helvetica, arial, sans-serif;
}

img{
	max-width: 100%;
}

hr{
	clear: both;
	width: 100%;
	margin: 15px 0;
}

h1{

}

h2{

}

h3{

}

h4{

}

h5{

}

h6{

}

a{
	text-decoration: none;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: color, background-color;
	transition-property: color, background-color;
	color: #0000ff;
}

a.active,
html:not(.touch) a:hover{
	color: currentColor;
	cursor: pointer;
}

ul,ol{
	font-size: 16px;
	line-height: 25px;
}


figure{
	font-size: 16px;
	line-height: 25px;
}


/**
 * WYSIWYG
 */

.wysiwyg{
	font-size: 16px;
	font-weight: 300;
	line-height: 25px;
	color:  #000000;
}

.wysiwyg > p{
	margin-bottom: 24px;
}

.wysiwyg > p:first-child{
	margin-top: 0px;
}

.wysiwyg *:first-child {
	margin-top: 0;
}

.wysiwyg *:last-child {
	margin-bottom: 0;
}

.wysiwyg h3:first-child{
	margin-bottom: 0;
}

.wysiwyg *:not(p) + p{
	margin-top: 0;
}

/*
 * Grid Extensions
 */

.container.thin {
	max-width: 768px;
}

.container.less-thin {
	max-width: 932px;
}

.less-gutter {
	padding-left: 15px;
	padding-right: 15px;
}

.hidden {
	display: none;
}

/**
 * Colors
 * For the purpose of standardization colors are defined as the following
 */



/**
 * Form
 * Form Styling for the Form Framework
 */

form input[type="text"],
form input[type="submit"],
form textarea{
	/* If prefixing nulls out stuff below, this should be set
	-webkit-border-radius:0px;
	-webkit-appearance: none;
	border-radius: 0;
	*/
	-webkit-border-radius:0px;
	-webkit-appearance: none;
	border-radius: 0;
}

form input[type="text"]::-ms-clear {
	display: none;
}


form input::-webkit-input-placeholder { /* Safari, Chrome and Opera */
  color: #1d428a;
  opacity: 1;
}

form input:-moz-placeholder { /* Firefox 18- */
  color: #1d428a;
  opacity: 1;
}

form input::-moz-placeholder { /* Firefox 19+ */
  color: #1d428a;
  opacity: 1;
}

form input:-ms-input-placeholder { /* IE 10+ */
  color: #1d428a;
  opacity: 1;
}

form input::-ms-input-placeholder { /* Edge */
  color: #1d428a;
  opacity: 1;
}

form input:placeholder-shown { /* Standard one last! */
  color: #1d428a;
  opacity: 1;
}


form textarea::-webkit-input-placeholder { /* Safari, Chrome and Opera */
  color: #1d428a;
  opacity: 1;
}

form textarea:-moz-placeholder { /* Firefox 18- */
  color: #1d428a;
  opacity: 1;
}

form textarea::-moz-placeholder { /* Firefox 19+ */
  color: #1d428a;
  opacity: 1;
}

form textarea:-ms-input-placeholder { /* IE 10+ */
  color: #1d428a;
  opacity: 1;
}

form textarea::-ms-input-placeholder { /* Edge */
  color: #1d428a;
  opacity: 1;
}

form textarea:placeholder-shown { /* Standard one last! */
  color: #1d428a;
  opacity: 1;
}




/* Radio Button */
.form .radio{

}

.form .radio input{
	font-size: 7px;
	margin: 0;
	opacity: 0;
	padding: 0;
	width: 14px;
	background-color: #ffffff;
}

.form .radio > label{
	display: inline-block;
	line-height: 10px;
	margin-left: -14px;
}

.form .radio > input + label > span{
	border: 1px solid #d0d0d0;
	border-radius: 7px;
	width: 14px;
	height: 14px;
	display: inline-block;
	margin-right: 5px;
}

.form .radio > input:checked + label > span > span{
	border-radius: 5px;
	width: 10px;
	height: 10px;
	display: inline-block;
	margin: 1px 0 0 1px;
}

.form .radio > input:checked + label > span > span{
	background-color: #f9690e;
}

/* Checkbox Button */
.form .checkbox{

}

.form .checkbox input{
	font-size: 7px;
	margin: 0;
	opacity: 0;
	padding: 0;
	width: 14px;
}

.form .checkbox > label{
	display: inline-block;
	line-height: 10px;
	margin-left: -14px;
}

.form .checkbox > input + label > span{
	border: 1px solid #d0d0d0;
	width: 14px;
	height: 14px;
	display: inline-block;
	margin-right: 5px;
}

.form .checkbox > input:checked + label > span > span{
	width: 10px;
	height: 10px;
	display: inline-block;
	margin: 1px 0 0 1px;
}

.form .checkbox > input:checked + label > span > span{
	background-color: #f9690e;
}


/* Select*/
.form .select{
	position: relative;
	display: inline-block;
	width: 100%;
}

.form .select select::-ms-expand {
	display: none;
}

/* Legacy Fix */
/*
.form .select::after{
	background-color: #ffffff;
	border-bottom: 1px solid #d0d0d0;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	border-right: 1px solid #d0d0d0;
	border-top: 1px solid #d0d0d0;
	content: "";
	height: 41px;
	position: absolute;
	right: 0;
	top: 0;
	width: 30px;
	z-index: 2;
}
*/

.form .select::before{
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #d0d0d0;
	content: "";
	right: 10px;
	top: 50%;
	transform: translateY(-100%);
	-webkit-transform: translateY(-100%);
	position: absolute;
	z-index: 4;
}

.form .select select{
	border: 1px solid #d0d0d0;
	border-radius: 3px;
	margin-bottom: 15px;
	padding: 7px 10px;
	width: 100%;
	-webkit-appearance:none;
	-moz-appearance: none;
	-ms-appearance: none;
	position: relative;
	background-color: #ffffff;
	height: 43px;
}

.form .select select + label{
	display: inline-block;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-100%);
	-webkit-transform: translateY(-100%);
	z-index: 3;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #d0d0d0;
}

.form .select select option{
	background-color: #ffffff;
	color: #000000;
}

/* Textarea */
.form textarea{
	border: 1px solid #D0D0D0;
	border-radius: 3px;
	padding: 7px 10px;
	color: #000000;
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	width: 100%;
	min-height: 100px;
	margin-bottom: 15px;
	-webkit-appearance: none;
}

/* H5 Override */
.form h5{
	margin: 0 0 10px 0;
}

/**
 * Buttons
 * Button style and helpers
 */

.button{
	-webkit-transition: color 125ms ease-out, background-color 125ms ease-out, border-color 125ms ease-out, opacity 250ms ease-out;
	transition: color 125ms ease-out, background-color 125ms ease-out, border-color 125ms ease-out, opacity 250ms ease-out;
	cursor: pointer;
}

.button.square{
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	line-height: 44px;
	color: #ffffff;
	background-color: #283d89;
	height: 44px;
	padding: 0 18px;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
}

html:not(.touch) .button.square:hover{
	background-color: #ffffff;
	color: #283d89;
}

.os-win .button.square{
	line-height: 40px;
}

/**
 * Footer
 */

.footer{
	width: 100%;
	background-color: #dbd6d0;
}

.footer .logo{
	text-align: center;
	width: 100%;
	margin-top: -18px;
	margin-bottom: 30px;
}

.footer .contact{
	font-size: 14px;
	line-height: 18px;
	color: #1d428a;
	margin-bottom: 40px;
	text-align: center;
	width: 100%;
	font-family: "Roboto";
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .15em;
}

.footer .contact a{
	font-weight: normal;
	color: #1d428a;
	text-decoration: none;
	text-transform: uppercase;
}

.footer .footer-navigation{
	font-family: "Roboto Condensed";
	font-size: 14px;
	font-weight: 700;
	color: #8c8985;
	text-align: justify;
	width: 100%;
	margin-bottom: 80px;
}

.footer .footer-navigation:after{
	content: "";
	width: 100%;
	height: 0;
	display: inline-block;
}

.footer .footer-navigation a{
	display: inline-block;
	color: #8c8985;
	text-transform: uppercase;
}

.footer .info{
	width: 100%;
	font-size: 12px;
	line-height: 18px;
	color: #8c8985;
	text-align: center;
	margin-bottom: 60px;
	font-family: "Roboto";
	font-weight: 300;
}

.footer .info .copyright{
	margin-bottom: 10px;
	width: 100%;
	display: block;
}

.footer .info .attribution{
	letter-spacing: .15em;
	width: 100%;
	display: block;
}

.footer .info .attribution a{
	color: #8c8985;
}


/**
 * Navigation - Desktop
 */

.desktop-spacer{
	width: 100%;
	position: relative;
	height: 38px;
	background-color: #1d428a;
}

.desktop-spacer::before {
    background-color: #1d428a;
    content: "";
    height: 38px;
    position: fixed;
    width: 100%;
    z-index: 10;
}

@media screen and ( max-width: 991px ){
	.desktop-spacer{
		display: none;
	}
}

nav.desktop{
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(29, 66, 138, 0.75);
	z-index: 500;
}

@media screen and ( max-width: 991px ){
	nav.desktop{
		display: none;
	}
}


nav.desktop .utility{
	position: absolute;
	right: 30px;
	top: 9px;
	text-align: right;
}

nav.desktop .utility > div{
	vertical-align: middle;
}

nav.desktop .utility .coords{
	display: inline-block;
}

nav.desktop .utility .weather{
	display: inline-block;
    font-family: "Roboto";
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    color: #64ccc9;
}

nav.desktop .utility .divider{
	display: inline-block;
	width: 2px;
	height: 20px;
	margin: 0 30px;
	background-color: #48c5b0;
}

nav.desktop .utility .login{
	display: inline-block;
	font-family: "Roboto Condensed";
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
}

nav.desktop .utility .login a{
	color: #ffffff;
}

nav.desktop .logo{
	display: inline-block;
	margin: 18px 75px 18px 0;
}


nav.desktop .menu{
	display: inline-block;
	position: absolute;
	bottom: 0px;
}

nav.desktop .menu .menu-item{
	color: #ffffff;
	font-family: "Roboto Condensed";
	font-weight: 700;
	margin: 0 24px;
	font-size: 13px;
	line-height: 30px;
	height: 42px;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: .05em;
	position: relative;
}

nav.desktop .menu .menu-item:first-child{
	padding-left: 0;
	margin-left: 0;
}

nav.desktop .menu .menu-item:last-child{
	padding-right: 0;
	margin-right: 0;
}

nav.desktop .menu .menu-item .label{
	font-size: 13px;
	line-height: 30px;
	height: 30px;
	display: block;
	cursor: default;
}

nav.desktop .menu .menu-item a .label {
	cursor: pointer;
}

nav.desktop .menu .menu-item .label.active,
nav.desktop .menu .menu-item:hover .label {
    color: #64ccc9;
}

nav.desktop .menu .menu-item .label.active::after,
nav.desktop .menu .menu-item:hover .label::after {
    background-color: currentcolor;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    bottom: 12px;
    width: 100%;
}

nav.desktop .menu .menu-item .sub-menu{
	display: none;
	position: absolute;
	min-width: 200px;
	background-color: rgba(29, 66, 138, 0.75);
	top: 42px;
}

nav.desktop .menu .menu-item:hover .sub-menu{
	display: block;

}

nav.desktop .menu .menu-item .sub-menu .sub-menu-item {
    clear: both;
    color: #64ccc9;
    display: block;
    font-size: 13px;
    line-height: 18px;
    min-width: 100%;
    padding: 5px 10px;
    position: relative;
}

nav.desktop .menu .menu-item .label {
    display: block;
    font-size: 13px;
    height: 30px;
    line-height: 30px;
    color: #ffffff;
    font-size: 13px;
	-webkit-transition-duration: 0.3s;
	        transition-duration: 0.3s;
	-webkit-transition-property: color, background-color;
	transition-property: color, background-color;
}

nav.desktop .menu .menu-item .sub-menu .sub-menu-item.active,
nav.desktop .menu .menu-item .sub-menu .sub-menu-item:hover {
    color: #ffffff;
}

/**
 * Navigation - Mobile
 */

.mobile-spacer{
	height: 73px;
	display: none;
	position: relative;
	background-color: #1d428a;
}

@media screen and ( max-width: 991px ){
	.mobile-spacer{
		display: block;
	}
}


nav.mobile{
	display: none;
	height: 73px;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 500;
	padding-top: 15px;
	padding-left: 30px;
	padding-bottom: 15px;
	background-color: rgba(29, 66, 138, 0.75);
}

@media screen and ( max-width: 991px ){
	nav.mobile{
		display: block;
	}
}

@media screen and ( max-width: 767px ){
	nav.mobile{
		padding-left: 15px;
	}
}

nav.mobile.active{
	background-color: transparent;
}

nav.mobile .hidden{
	display: none;
}

nav.mobile .logo{
	width: 150px;
	position: absolute;
    top: 50%;
	-webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

nav.mobile.active .logo{
	position: absolute;
	z-index: 1;
}

nav.mobile .logo img{
	width: 100%;
}

nav.mobile .hamburger{
		display: inline-block;
		float: right;
	}

nav.mobile .hamburger .mobile-nav {
	position: absolute;
	top: 15px;
	right: 0px;
	font-size: 35px;
	line-height: 35px;
	text-align: right;
	z-index: 100000;
}

nav.mobile .hamburger .mobile-nav a {
	display: inline-block;
	color: #ffffff;
}


nav.mobile .hamburger .mobile-nav a:hover {
	color: #64ccc9;
}

nav.mobile .hamburger .mobile-nav a{
	background-position: 50% 50%;
	background-repeat: no-repeat;
	cursor: pointer;
	padding: 30px 30px 0 0;
	width: 60px;
	height: 60px;
	text-align: center;
	position: absolute;
	right: -15px;
	top: -10px;
	-webkit-transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1) 0s;
	transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1) 0s;
	z-index: 1000;
	color: #ffffff;
}

@media (max-width: 991px) {
	nav.mobile .hamburger .mobile-nav a{
		right: 0;
	}
}

nav.mobile .hamburger .mobile-nav a .mobile-nav-menu-icon:before {
	top: -8px;
}

nav.mobile .hamburger .mobile-nav a .mobile-nav-menu-icon:after,
nav.mobile .hamburger .mobile-nav a .mobile-nav-menu-icon:before {
	background: none repeat scroll 0 0 #ffffff;
	content: "";
	display: block;
	height: 2px;
	position: absolute;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	width: 24px;
	z-index: -1;
}

nav.mobile .hamburger .mobile-nav a .mobile-nav-menu-icon:after {
	top: 8px;
}

nav.mobile .hamburger .mobile-nav a .mobile-nav-menu-icon {
	background: none repeat scroll 0 0 #ffffff;
	height: 2px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	width: 24px;
	display: inline-block;
	position: absolute;
}

nav.mobile .hamburger .mobile-nav a.active .mobile-nav-menu-icon:before {
	background: none repeat scroll 0 0 #ffffff !important;
	top: 0 !important;
	right: 0;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

nav.mobile .hamburger .mobile-nav a.active .mobile-nav-menu-icon:after {
	background: none repeat scroll 0 0 #ffffff !important;
	top: 0 !important;
	right: 0px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

nav.mobile .hamburger .mobile-nav a.active .mobile-nav-menu-icon {
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
}

nav.mobile .mobile-menu{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 490;
	background-color: rgba(29, 66, 138, 0.9);
	display: block;
	padding-top: 60px;
	overflow: auto;
}

nav.mobile .mobile-menu.hidden{
	display: none !important;
}

nav.mobile .mobile-menu .menu-item{
	width: 100%;
	padding: 15px;
	text-align: center;
	display: block;
}

nav.mobile .mobile-menu .menu-item .label{
	line-height: 42px;
	font-size: 18px;
	color: #64ccc9;
	font-family: "Roboto Condensed";
	font-weight: 700;
	text-transform: uppercase;
}

nav.mobile .mobile-menu .menu-item .label a{
	line-height: 48px;
	font-size: 24px;
	color: #ffffff;
	font-family: "Roboto";
	font-weight: 400;
	text-decoration: none;
}

nav.mobile .mobile-menu .menu-item .label a:active{
	text-decoration: none;
	color: currentColor;
}

nav.mobile .mobile-menu .menu-item .sub-menu-item{
    color: #ffffff;
    display: block;
	line-height: 28px;
    font-size: 24px;
	text-transform: uppercase;
}


/* Form */

form  .header {
	margin-top: 30px;
	line-height: 46px;
	font-family: "Roboto Condensed";
	font-size: 38px;
	font-weight: 300;
	color: #1d428a;
	text-align: center;
	text-transform: uppercase;
}

form .rule {
	width: 50%;
	height: 1px;
	margin: 10px auto;
	background-color: #ffffff;
}

form  .wysiwyg {
	margin-bottom: 30px;
	text-align: center;
}

form  input[type="text"],
form  input[type="password"],
form  textarea {
	width: -webkit-calc(100% - 16px);
	width: calc(100% - 16px);
	margin: 12px 8px;
	border: 1px solid #636363;
	padding: 12px;
	line-height: 20px;
	font-size: 14px;
	color: #1d428a;
	background-color: transparent;
}

form input.slimpad{
	padding: 4px 12px;
}

form  input[type="submit"] {
	display: block;
	margin: 8px auto 30px auto;
	border: 0px solid transparent;
	padding: 8px 32px;
	line-height: 20px;
	font-size: 14px;
	color: #ffffff;
	background-color: #1d428a;
	text-transform: uppercase;

    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: color, background-color;
    transition-property: color, background-color;
}

form  input[type="submit"]:hover{
	background-color: #ffffff;
	color: #1d428a;
}

form  input[type="submit"].dim {
	opacity: 0.5;
}

form  .email:not(span) {
	line-height: 46px;
	font-family: "Roboto";
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	color: #1d428a;
}

form  .email a {
	color: #1d428a;
	font-weight: 400;
}

form  .error {
	line-height: 46px;
	font-family: "Roboto";
	font-size: 20px;
	text-align: center;
	color: #c8102e;
}

form .radio-group{
	display: inline-block;
	margin: 0 10px;
	position: relative;
}

@media screen and ( max-width: 767px ){
	form .radio-group{
		display: block;
		margin: 0;
		position: relative;
	}
}


form .radio-group .radio-option{
	margin-right: 10px;
	position: relative;
	display: inline-block;
}

form .radio-group .radio-option:last-child{
	margin-right: 5px;
}

form .radio-group .radio-option input{
	opacity: 0;
}

form .radio-group .radio-option:after{
	position: absolute;
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 1px solid #636363;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0px;
}

form .radio-group .radio-option.active:after{
	background-color: #1d428a;
}

form .checkbox-group{
	display: inline-block;
	margin: 0 10px;
	position: relative;
}

form .checkbox-group .checkbox-option{
	margin-right: 5px;
	position: relative;
}

form .checkbox-group .checkbox-option:first-child{
	margin-right: 10px;
}

form .checkbox-group .checkbox-option input{
	opacity: 0;
}

form .checkbox-group .checkbox-option:after{
	position: absolute;
	content: "";
	width: 10px;
	height: 10px;
	border: 1px solid #636363;
	top: 2px;
	right: 0px;
}

form .checkbox-group .checkbox-option.active:after{
	background-color: #1d428a;
}

form p.label{
    color: #1d428a;
    font-size: 13px;
    font-weight: 400;
    line-height: 25px;
    margin: 16px 8px 0;
}

form p.fine-print {
	color: #1d428a;
	font-style: italic;
    font-size: 11px;
    font-weight: 400;
    line-height: 21px;
    margin: 16px 8px 0;
}
/*
.popup-form {
	position: fixed;
	left: 0;
	right: 0;
	top: 104px;
	bottom: 0;
	background-color: rgba(164, 226, 216, 0.93);
	overflow: auto;
	z-index: 1;
}

@media screen and (max-width: 991px) {
	.popup-form {
		top: 73px;
	}
}

.popup-form .header {
	margin-top: 30px;
	line-height: 46px;
	font-family: "Roboto Condensed";
	font-size: 38px;
	font-weight: 300;
	color: #1d428a;
	text-align: center;
	text-transform: uppercase;
}

.popup-form .rule {
	width: 50%;
	height: 1px;
	margin: 10px auto;
	background-color: #ffffff;
}

.popup-form .wysiwyg {
	margin-bottom: 30px;
	text-align: center;
}

.popup-form input[type="text"],
.popup-form input[type="password"],
.popup-form textarea {
	width: -webkit-calc(100% - 16px);
	width: calc(100% - 16px);
	margin: 12px 8px;
	border: 1px solid #636363;
	padding: 12px;
	line-height: 20px;
	font-size: 14px;
	color: #1d428a;
	background-color: transparent;
}

.popup-form input[type="submit"] {
	display: block;
	margin: 8px auto 30px auto;
	border: 0px solid transparent;
	padding: 8px 32px;
	line-height: 20px;
	font-size: 14px;
	color: #ffffff;
	background-color: #1d428a;
	text-transform: uppercase;
}

.popup-form input[type="submit"].dim {
	opacity: 0.5;
}

.popup-form .email {
	line-height: 46px;
	font-family: "Roboto";
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	color: #1d428a;
}

.popup-form .email a {
	color: #1d428a;
	font-weight: 400;
}

.popup-form .error {
	line-height: 46px;
	font-family: "Roboto";
	font-size: 20px;
	text-align: center;
	color: #c8102e;
}
*/

/**
 * Featherlight Full Override
 * Usage: data-featherlight-variant="full"
 */
.featherlight.full{

}

.featherlight.full .featherlight-inner{
	display: inline-block;
}

.featherlight.full .featherlight-content{
	margin-left: 0;
	margin-right: 0;
	min-height: 100vh;
	padding-top: 25px;
	text-align: center;
	width: 100%;
	font-size: 32px; /*Firefox scroll bug fix*/
}

.featherlight.full .featherlight-close-icon{
	background-color: #ffffff;
	color: #898989;
	display: inline-block;
	font-size: 45px;
	line-height: 45px;
	right: 5px;
	top: 5px;
	text-align: center;
	width: 50px;
	position: fixed;
}

.featherlight iframe {
	height: 100vh;
	max-height: -webkit-calc(100vh - 50px);
	max-height: calc(100vh - 50px);
	max-width: -webkit-calc(100vw - 50px);
	max-width: calc(100vw - 50px);
	overflow: hidden;
	position: relative;
	width: 100vw;
}

.featherlight.image{

}

.featherlight.full.image .featherlight-inner{
	width: 100%;
}

/**
 * Featherlight Aqua Override.
 */

.featherlight.aqua .featherlight-content {
	padding: 0px;
	overflow: hidden;
}

/**
 * Featherlight Gallery Adjustments.
 */

/* Hide navigation while loading */
.featherlight-loading .featherlight-previous, .featherlight-loading .featherlight-next {
	display:block;
}

@media screen and (max-width: 768px) {
	.featherlight-next,
	.featherlight-previous {
		top: -webkit-calc(50% - 30px);
		top: calc(50% - 30px);
	}
}

.featherlight:last-of-type{
	background-color: rgba(210, 210, 205, 0.9);
}

.featherlight.dark:last-of-type{
	background-color: rgba(0, 0, 0, 0.9);
}

.featherlight .featherlight-content {
	padding: 70px 70px;
	border: none;
	background-color: transparent;
	text-align: center;
}

.featherlight .featherlight-content .caption {
	width: 100%;
	position: absolute;
	left: 0;
	top: -webkit-calc(100% - 32px);
	top: calc(100% - 32px);
	line-height: 24px;
	font-size: 16px;
	text-align: center;
	text-transform: uppercase;
	color: #ffffff;
}

.featherlight-next {
	right: 4px;
}

.featherlight-previous {
	left: 4px;
}

.featherlight-next,
.featherlight-previous {
	display: block;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0%, -50%);
	        transform: translate(0%, -50%);
	cursor: pointer;
	/* preventing text selection */
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.featherlight-next span,
.featherlight-previous span {
	display: block;
	color: #ffffff;
	font-size: 60px;
	font-style: normal;
	font-weight: normal;
}

.featherlight-next:hover,
.featherlight-previous:hover {
	background: none;
}

.featherlight-previous .fl-left-arrow{
	width: 54px;
	height: 54px;
	background-repeat: no-repeat;
	background-image: url('../images/ui/exb-gallery-left-arrow.png');
	display: inline-block;
}

.featherlight-next .fl-right-arrow{
	width: 54px;
	height: 54px;
	background-image: url('../images/ui/exb-gallery-right-arrow.png');
	display: inline-block;
}

/**
 * Transition Plane / Wrapper
 */

.transition-wrapper {
	background-color: #ffffff;
	display: none;
	height: 100%;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 900;
}

.transition-wrapper img {
	left: 50%;
	margin-left: -16px;
	margin-top: -16px;
	position: absolute;
	top: 50%;
}

/*
 * Overlay Wrapper
 */

#overlay-wrapper {
	font-size: 32px;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 2000;
}

#overlay-wrapper > * {
	pointer-events: all;
}

/*
 * General Page Styles
 * These account for fixes, exceptions etc on a page scale
 */

.container,
.container-fluid,
.row {
	clear: both;
}

.container:after,
.container-fluid:after,
.row:after {
	content: "";
	visibility: hidden;
	display: block;
	height: 0;
	clear: both;
}

.no-gutter {
	padding-left: 0px;
	padding-right: 0px;
}

.no-scroll {
	overflow: hidden;
}

.wpcf7-mail-sent-ok,
.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
    border: 2px solid #398f14;
    font-size: 20px;
    text-align: center;
    display: table;
    width: 100%;
    padding: 15px 0 10px !important;
    color: #333;
}

.wpcf7 {
    font-size: 14px;
    color: #1d428a;
}

form input[type="text"], form input[type="password"], form textarea {
	font-weight: normal;
}

textarea {
    height: 100px;
}

.form-row.two .half {
	width: calc(50% - 10px);
	display: inline-block;
}

.form-row.two {
    display: inline-block;
    width: 100%;
}

.form-row.two .half:first-child {
    margin-right: 16px;
}

section#form-holder.disabled {
    opacity: 0.5;
    pointer-events: none;
}

section#form-holder {
    opacity: 1;
    pointer-events: all;
}

span.wpcf7-not-valid-tip {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: auto;
    min-width: 140px;
    height: 2px;
}

.yesno span.wpcf7-not-valid-tip {
    right: -150px;
}

.utility .social-holder {
    position: absolute;
    left: -115px;
    top: 0;
    width: 100px;
    height: 100%;
    color: #fff;
    font-size: 10px;
}

.utility .social-holder a {
	width: 17px;
	text-align: center;
    color: rgba(29, 66, 138, 1);
    background: #64ccc9;
    padding: 3px;
    border-radius: 50px;
    margin: 0 7px;
    border: 1px solid #64ccc9;
    transition: color 0.2s linear, background 0.2s linear;
}

.utility .social-holder a:hover {
    color: #fff;
    background: #64ccc9;
}

.mobile-menu .social-holder {
    position: relative;
    margin: 10px 0 30px;
    font-size: 24px;
    color: #fff;
    text-align: center;
}

.mobile-menu .social-holder a {
    color: #fff;
    margin: 0 10px;
}
