﻿html {
	overflow-y: scroll;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #323232;
    padding-top: 86px;
}

body.open {
	/*overflow-y: hidden;*/
}


@media(min-width: 1200px){
	.container {
		max-width: 1200px;
	}
}

@media(max-width: 767px){
	body {
		padding-top: 60px;
	}
}

/*------------------------------------------------
# Headings, Typography
-------------------------------------------------*/
h1, .h1 {
	font-size: 100px;
	font-weight: 700;
}


h2, .h2 {
	font-size: 24px;
	font-weight: 700;
}

h3, .h3 {
	font-size: 22px;
	font-weight: 700;
}

h4 {
	font-size: 18px;
	font-weight: 400;
}

.uc {
	text-transform: uppercase;
}

.p24 {
	font-size: 24px;
}

.p22 {
	font-size: 22px;
}

.p20 {
	font-size: 20px;
}

.p18 {
	font-size: 18px;
}

.p16 {
	font-size: 16px;
}

.p14 {
	font-size: 14px;
}

.p12 {
	font-size: 12px;
}

.p10 {
	font-size: 10px;
}

.bold {
	font-weight: 700;
}

.medium {
	font-weight: 500;
}

.light {
	font-weight: 300;
}

a, a:link, .brand-blue {
	color: #2e70de;
}

.bg-brand-blue {
	background-color: #2e70de;
}

.bg-grey {
	background-color: #ececec;
}

@media(max-width: 767px){
	h1, .h1 {
		font-size: 44px;
		font-weight: 700;
	}

	.container {
		max-width: 100%;
	}
}


/*------------------------------------------------
# Buttons
-------------------------------------------------*/


a.btn-cta, button.btn-cta {
	background: #90c84d;
	color: #fff;
	font-weight: 500;
	font-size: 16px;
	border-radius: 0px;
	padding: 13px 20px 11px 20px;
	outline: 0;
	border: 0px;
	-webkit-transition: background 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	transition: background 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

a.btn-cta:hover, button.btn-cta:hover {
	color: #fff;
	background-color: #1654bd;
	-webkit-transition: background 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	transition: background 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}


a.btn-cta:focus, 
button.btn-cta:focus {
	color: #fff;
	outline: 0;
}

a.btn-cta.btn-round, button.btn-cta.btn-round {
	border-radius: 10px;
}

a.btn-cta.btn-white, button.btn-cta.btn-white {
	background-color: #fff;
	color: #2e70de !important;
}


.icon-secure {
	width: 23px;
	height: auto;
}

.icon-chat {
	width: 332px;
	height: 332px;
	color: #fff;
	font-size: 40px;
	background: transparent url('../images/icon-chat.png') no-repeat center center;
	display: flex;
	align-items: center;
	padding-left: 30px;
}

@media(max-width: 360px){
	.icon-chat {
		width: 280px;
		height: 280px;
		color: #fff;
		font-size: 40px;
		background: transparent url('../images/icon-chat.png') no-repeat center center / cover;
		display: flex;
		align-items: center;
		padding-left: 30px;
	}
}


/*------------------------------------------------
# Form Styles
-------------------------------------------------*/

.form-control {
	border: 0px;
	border-radius: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	font-size: 16px;
	font-weight: 500;
	color: #323232;
	background-color: #fff;
	height: auto;
	padding: 15px 20px 0px;
	min-height: 48px;
	max-width: 100%;
}

#email {
	/*width: 412px;*/
}

.form-control:focus {
	box-shadow: none;
}

.form-control.valid.dont-mark, .form-control.error.dont-mark {
	background-image: none;
}


.app-row {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 10px;
	max-width: 100%;
}

.app-row label {
	position: absolute;
	z-index: 2;
	font-size: 16px;
	font-weight: 500;
	top: 13px;
	left: 20px;
	color: #999999;
	transition: all 0.2s ease 0s;
	display: block;
	margin-bottom: 0px;
}

.app-row.has-error label {
	display: none;
}


.app-row label.focused {
	font-size: 12px;
	top: 4px;
	pointer-events: none;
}

ul.parsley-errors-list {
	display: none;
	list-style-type: none;
	font-size: 12px;
	margin: 0px;
	padding: 4px;
	border-radius: 4px;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	background-color: red;
}

ul.parsley-errors-list.filled {
	display: block;
}

input.parsley-error {
	background-color: #fdd5d5;
}

@media(max-width: 375px){
	.form-control {
		padding: 15px 10px 0px;
	}

	.app-row label { 
		left: 10px;
	}
}


/*------------------------------------------------
# Header & Navigation
-------------------------------------------------*/

header {
	padding: 15px 0px;
	transition: 0.2s ease-out all;
	background-color: #fff;
	position: fixed;
	top: 0;
	z-index: 10;
	width: 100%;
}

header.scrolling {
	transition: 0.3s ease-out all;
	padding: 10px 0px;
	box-shadow: 0 0 20px 10px rgba(23, 28, 31, 0.25);
}

header.scrolling .logo  {
	/*width: 120px;*/
	height: 40px;
	transition: 0.3s ease-out all;
}

.logo {
	height: 57px;
	width: auto;
	/*width: 170px;
	height: auto;*/
	transition: 0.3s ease-out all;
}

ul.nav {
	margin: 0;
	padding: 0;
}

ul.nav > li {
	margin-left: 40px;
	position: relative;
}

ul.nav > li:first-child {
	margin-left: 0px;
}

ul.nav > li a:not(.btn) {
	font-weight: 500;
	color: #323232;
}

ul.nav > li a {
	position: relative;
}

ul.nav > li a:hover {
	text-decoration: none;
}

ul.nav > li a:not(.btn)::before {
	content: '';
	position: absolute;
	z-index: -1;
	bottom: -5px;
	left: 0;
	background: #90c84d;
	width: 100%;
	height: 5px;
	opacity: 0.8;
	transform: scale3d(0,1,1);
	transform-origin: 0% 50%;
	transition: transform 0.5s;
    transition-timing-function: ease;
	transition-timing-function: cubic-bezier(0.2,1,0.3,1);
}

ul.nav > li:hover > a::before, ul.nav > li.active > a::before {
	transform: scale3d(1,1,1);
}


li.menu-item-has-children > a:after {
  content: '▼';
  padding-left: 3px;
  font-size: 10px;
  display: inline-block;
  position: relative;
  top: -2px;
}


ul.sub-menu {
  background: #f7f7f7;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  padding: 1em 0;
  position: absolute;
  bottom: 0px;
  transform: translateY(105%);
  transition: 0.2s ease-out all;
  /*min-width: 100%;*/
  left: 0%;
  
  z-index: 10;
  list-style-type: none;
  min-width: 160px;
}

ul.sub-menu > li {
  padding: 0;
}
ul.sub-menu > li:before {
  display: none;
}
ul.sub-menu > li > a {
  padding: 0 1em;
  white-space: nowrap;
  color: #fff;
}
ul.sub-menu > li > a:hover {
  text-decoration: underline;
}


ul.nav > li:hover .sub-menu {
	visibility: visible;
  	opacity: 1;
	transition: 0.2s ease-out all;
}

.nav-icon {
	width: 30px;
	height: 50px;
	position: absolute;
	right: 30px;
	top: 34px;
	cursor: pointer;
	display: none;
	transition: 0.3s ease-out all;
}

.nav-icon span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #000000;
	border-radius: 3px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

.nav-icon span:nth-child(1) {
	top: 0px;
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-o-transform-origin: left center;
	transform-origin: left center;
}

.nav-icon span:nth-child(2) {
	top: 8px;
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-o-transform-origin: left center;
	transform-origin: left center;
}

.nav-icon span:nth-child(3) {
	top: 16px;
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-o-transform-origin: left center;
	transform-origin: left center;
}

.nav-icon.open span:nth-child(1) {
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
	top: -2px;
	left: 25px;
  
}

.nav-icon.open span:nth-child(2) {
	width: 0%;
	opacity: 0;
	left: -15px;
}

.nav-icon.open span:nth-child(3) {
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
	top: 19px;
	left: 25px;
}

#mobile-menu {
	position: fixed;
	top: 86px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 90;
	background-color: #2e70de;
	color: #fff;
	display: none;
}

body.scrolling #mobile-menu {
	top: 60px;
}

body.scrolling .nav-icon {
	top: 20px;
	transition: 0.3s ease-out all;
}

#mobile-menu.open {
	display: flex;
}

ul.mobile-nav {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}

ul.mobile-nav > li {
	margin-top: 1rem;
}

ul.mobile-nav > li:first-child {
	margin-top: 0;
}

ul.mobile-nav > li > a {
	font-size: 26px;
	color: #fff;
}

ul.sub-menu-mobile {
	list-style-type: none;
	padding: 0px;
	margin: 10px 0 0 0;
	display: none;
}

ul.sub-menu-mobile > li > a {
	font-size: 18px;
	color: #fff;
}

.menu-item-has-children.open > ul {
	display: block;
}



@media(max-width: 767px){
	header {
		padding: 10px 0px;
	}

	.logo {
		/*width: 120px;*/
		/*height: auto;*/
		height: 40px;
	}

	.nav-icon {
		top: 20px;
	}

	#mobile-menu {
		top: 60px;
	}
}



/*------------------------------------------------
# Hero
-------------------------------------------------*/

#hero {
	background: #000 url('../images/background3.jpg') no-repeat center center / cover;
	color: #fff;
	padding: 150px 0px;
}

.lead-box {
	background-color: #323232;
	padding: 30px;
}

.lead-box.off-page {
	display: none;
}

.section {
	padding-top: 100px;
	padding-bottom: 100px;
}

.section.image {
	padding-top: 200px;
	padding-bottom: 200px;
}

main.section {
	padding-top: 80px;
	padding-bottom: 80px;
}

.how-icon img {
	height: 82px;
	width: auto;
	margin-bottom: 35px;
}

@media(max-width: 991px){
	#hero {
		padding: 80px 0px;

	}
}


@media(max-width: 767px){
	#hero {
		background: #000 url('../images/background_sm.jpg') no-repeat center top;
		background-size: 100%;
	/*background: #000 url('../images/background3.jpg') no-repeat center center / cover;*/

		padding: 50px 0px;
		
	}

	.section, .section.image {
		padding-top: 80px;
		padding-bottom: 80px;
	}
}


/*------------------------------------------------
# Footer
-------------------------------------------------*/

#footer-cta {
	background: #000 url('../images/background2.jpg') no-repeat center center / cover;
	color: #fff;
}




/*------------------------------------------------
# FAQ
-------------------------------------------------*/

.question {
	position: relative;
	padding: 20px 30px;
	border-radius: 20px;
}

.question-title {
	margin-bottom: 5px;
	text-align: left;
	cursor: pointer;
	margin-bottom: 0px;
	padding-right: 25px;
	color: #2e70de;
	font-weight: 700;
}

.question-title:after {
	display: block;
	content: '+';
	color: #2e70de;
	position: absolute;
	right: 20px;
	font-size: 24px;
	top: 18px;
	font-weight: 800;
	-webkit-transition: .15s;
  	-moz-transition: .15s;
  	-o-transition: .15s;
  	transition: .15s;
}

.question-title.active:after {
	/*content: '-';*/
	transform: rotate(45deg);
	-webkit-transition: .15s;
  	-moz-transition: .15s;
  	-o-transition: .15s;
  	transition: .15s;
}

@media(max-width: 767px){
	.question-title.active:after {
		content: '-';
		transform: none;
	}
}

.question-title + div {
	margin-top: 20px;
	display: none;
}

.question-title.active + div {
	display: block;
}


body.apply .lead-box {
	position: fixed;
	top: 0px;
	right: 0px;
	left: 0px;
	bottom: 0px;
	z-index: 99;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0px !important;
	background-color: rgba(30,30,30,0.95);
	color: #fff;
}

.lead-box .close {
 	display: none;
 }

.form-fullscreen {
	display: none;
}

body.apply .lead-box .close {
	position: absolute;
	display: block;
	top: 10px;
	right: 20px;
	font-weight: 300;
	font-size: 60px;
}

body.apply .form-fullscreen {
	display: block;
}

body.apply .lead-box form {
	width: 750px;
}

body.apply .section, body.apply header {
	filter: blur(4px);
}



#banner {
	background-color: #323232;
	color: #fff;
}

#banner h1 {
	font-size: 60px;
}

#banner.image {
	padding: ;
}

#banner.utah {
	background: url('../images/banner-utah.jpg') no-repeat center center / cover;
}


ul.index {
	position: -webkit-sticky; /* Safari */
  	position: sticky;
  	top: 86px;
  	list-style-type: none;
  	background-color: #ececec;
  	text-align: center;
  	padding: 10px 0px 10px 0px;
  	border-radius: 6px;
}

@media(max-width: 767px){
	ul.index {
		font-size: 14px;
	}
}

