html { font-size: 62.5%; }
* {
	margin: 0;
	padding: 0;
	font-size: inherit;
	line-height: inherit;
}
*,
:after,
:before {
	border-style: solid;
	border-width: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	position: relative;
	display: block;
	font-family: 'Lato', sans-serif;
	font-weight: normal;
	font-size: 18px;
	line-height: 1.25;
    background-color: #000;
	background-size: cover;
	background-position: 50% 50%;
}

/*-- hero image animaition --*/
.img-slider{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
	height: 100vh;
    overflow: hidden;
}
.img-single {
	position: absolute;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	background-position: 50% 50%;
	background-size: cover;
	opacity: 0;
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-animation: imageAnimation 15s linear infinite 0s;
	-moz-animation: imageAnimation 15s linear infinite 0s;
	animation: imageAnimation 15s linear infinite 0s;
}
.img-single:nth-child(1) {}
.img-single:nth-child(2) {
	-webkit-animation-delay: 5s;
	-moz-animation-delay: 5s;
	animation-delay: 5s;
}
.img-single:nth-child(3) {
	-webkit-animation-delay: 10s;
	-moz-animation-delay: 10s;
	animation-delay: 10s;
}
@-webkit-keyframes imageAnimation {
    0%{
		transform: scale(1);
		opacity: 0;
    }
    12%{
        opacity: 1;
    }
	33.3333% {
		opacity: 1;
	}
	50% {
		opacity: 0;
		transform: scale(1.15);
	}
	100% {
		opacity: 0;
		transform: scale(1);
	}
}
@-moz-keyframes imageAnimation {
    0%{
		transform: scale(1);
		opacity: 0;
    }
    12%{
        opacity: 1;
    }
	33.3333% {
		opacity: 1;
	}
	50% {
		opacity: 0;
		transform: scale(1.15);
	}
	100% {
		opacity: 0;
		transform: scale(1);
	}
}
@keyframes imageAnimation {
	0%{
		transform: scale(1);
		opacity: 0;
    }
    12%{
        opacity: 1;
    }
	33.3333% {
		opacity: 1;
	}
	50% {
		opacity: 0;
		transform: scale(1.15);
	}
	100% {
		opacity: 0;
		transform: scale(1);
	}
}

/*-- hero content --*/
.ca-hero-container{
	position: relative;
	margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 120rem;
	height: 100vh;
    color: #fff;
    overflow: hidden;
}
.ca-hero-txt{
	position: absolute;
    top: 50%;
    width: calc(100% - 3rem);
	-webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    margin: 0 auto;
}
h1{
	font-size: 9rem;
	letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 1rem;
}
p{
	font-size: 2.3rem;
	padding-left: 4px;
	letter-spacing: 1px;
	font-weight: 300;
}
.sub-head{
	font-size: 3.6rem;
	font-weight: 300;
	letter-spacing: 5px;
	padding-left: 2px;
}
.sub-head span img{
	width: 4.3rem;
	padding-left: 1.5rem;
}

/*-- Header & Footer --*/
.ev-logo{
	position: fixed;
	top: 5rem;
	right: 5rem;
}
.ev-logo img{
	width: 20rem;
}
.ev-social{
	position: fixed;
	width: 100%;
	max-width: 120rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	bottom: 4.5rem;
	left: 50%;
	transform: translateX(-50%);
}
.ev-social a{
	padding-right: 1.5rem;
}
.ev-social a img{
	width: 4rem;
}

/*-- hubspot form --*/
.hbspt-form form {
	margin: 3rem 0 0;
}
.hbspt-form .hs-email,
.hbspt-form .hs-submit{
	display: inline-block;
	width: 45%;
	padding-right: 1.5rem !important;
	margin: 1.5rem 0 0;
}
.hbspt-form input[type="email"] {
	height: 5.6rem;
}
.hbspt-form label,
.hbspt-form input[type="text"],
.hbspt-form input[type="url"],
.hbspt-form input[type="email"],
.hbspt-form input[type="tel"],
.hbspt-form input[type="number"],
.hbspt-form input[type="date"],
.hbspt-form select,
.hbspt-form textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100% !important;
	line-height: 1.2 !important;
	font-size: 1.4rem;
	font-family: Lato, Arial, Helvetica, sans-serif !important;
	font-weight: normal;
	color: #404041;
	text-transform: none;
}
.hbspt-form label {
	line-height: 1.4;
	font-size: 1.3rem;
	font-weight: 900;
	color: #0098C5;
	margin: 5px 0;
}
.hbspt-form input[type="text"],
.hbspt-form input[type="url"],
.hbspt-form input[type="email"],
.hbspt-form input[type="tel"],
.hbspt-form input[type="number"],
.hbspt-form input[type="date"],
.hbspt-form select,
.hbspt-form textarea {
	background: #fff;
	padding: 7px 10px !important;
	border: 1px solid #fafafa !important;
	box-shadow: none !important;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 2px;
}
.hbspt-form input:focus,
.hbspt-form select:focus,
.hbspt-form textarea:focus {
	background-color: #fff;
}
.hbspt-form select {
	border-radius: 0;
	background: #fff url("https://www.eagleview.com/wp-content/uploads/2020/04/arrow-down-bk.png") 99% 50% no-repeat;
}
.hbspt-form select.error.invalid {
	border-radius: 0 !important;
	background: #fff url("https://www.eagleview.com/wp-content/uploads/2020/04/arrow-down-bk.png") 93% 50% no-repeat;
}
.hbspt-form .hs-form-required {
	padding-left: 2px;
}
.hbspt-form ::placeholder {
	color: #404041 !important;
	opacity: 1;
}
.hbspt-form :-ms-input-placeholder {
	color: #404041 !important;
}
.hbspt-form ::-ms-input-placeholder {
	color: #404041 !important;
}
.hbspt-form .hs-form-field {
	position: relative !important;
}
.hbspt-form .hs-input.error.invalid {
	border: 1px solid #e32e2e !important;
}
.hbspt-form .hs_error_rollup {
	display: none;
}
.hbspt-form .hs-error-msgs {
	position: absolute;
	top: 16px;
	right: 25px;
}
.hbspt-form .hs-error-msgs li {
	line-height: 24px;
	position: relative;
}
.hbspt-form .hs-error-msgs li label.hs-error-msg,
.hbspt-form .hs-error-msgs li label {
	position: absolute;
	top: -5px;
	right: 27px;
	min-width: 220px;
	background-color: #fce5e5 !important;
	border: 1px solid #ec7272 !important;
	color: #dd0000 !important;
	font-size: 1.3rem !important;
	font-weight: 400 !important;
	line-height: 1.1em !important;
	padding: 5px 10px !important;
	z-index: 100;
	display: none;
}
.hbspt-form .hs-error-msgs li label.hs-error-msg a,
.hbspt-form .hs-error-msgs li label a {
	font-size: 1.3rem !important;
	color: #dd0000 !important;
}
.hbspt-form .hs-error-msgs li:after {
	content: "!";
	background: #e32e2e;
	color: #fff;
	font-weight: 900;
	padding: 2px 7px 2px 8px;
	font-size: 1.4rem;
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	border-radius: 10px;
}
.hbspt-form .hs-error-msgs li:hover label.hs-error-msg,
.hbspt-form .hs-error-msgs li:hover label {
	display: block !important;
}
.hbspt-form .hs-error-msgs li:not(:first-child) {
	margin-top: -26px;
}
.hbspt-form input[type=submit] {
	padding: 1.6rem 4.8rem;
	height: auto;
	cursor: pointer;
	font-size: 1.8rem;
	border-radius: 2px;
	border: 1px solid #009a62;
	color: #fff;
	background-color: #009a62;
	background-image: linear-gradient(135deg, #fff 50%, transparent 51%);
	background-size: 100px 100px;
	background-position: -50px -50px;
	background-repeat: no-repeat;
	transition: all 0.3s ease;
	-moz-transition: all ease 0.3s;
	-webkit-transition: all 0.3s ease;
}
.hbspt-form input[type=submit]:hover {
	color: #009a62;
	background-size: 200% 200%;
	background-position: 0 0;
}
.hbspt-form .submitted-message {
	text-align: left;
}
.hbspt-form .submitted-message p:nth-child(1) {
	display: inline-block;
	font-size: 1.6rem;
	padding: 1rem 1.5rem;
	margin-top: 3rem;
	border: 1px solid #fff;
	border-radius: 5px;
	background-color: rgba(255,255,255,.7);
	color: #000;
	font-weight: 400;
	letter-spacing: 0px;
}
.hbspt-form .submitted-message p:nth-child(2) {
	text-align: left !important;
}
.hbspt-form .submitted-message ul li {
	display: inline-block;
	padding: 1.5rem;
}
.hbspt-form .submitted-message ul li a {
	font-weight: bold;
	font-size: 2.4rem;
}
.no-label .hbspt-form .hs-error-msgs {
	top: 5px;
	right: 10px;
}

@media (max-width:767px) {
	h1 {
		font-size: 4rem;
		letter-spacing: 2px;
	}
	p {
		font-size: 2rem;
	}
	.sub-head {
		font-size: 2.6rem;
	}
	.sub-head span img {
		width: 3rem;
		padding-left: 1rem;
	}
	.ev-logo{
		top: 2rem;
		right: 2rem;
	}
	.ev-social{
		bottom: 1.5rem;
	}
	.hbspt-form .hs-email,
	.hbspt-form .hs-submit {
		display: block;
		width: 100%;
		max-width: 60rem;
	}
	.hbspt-form input[type="email"] {
		height: 4.6rem;
	}
	.hbspt-form input[type=submit]{
		padding: 1.1rem 4.8rem
	}
	.hbspt-form .hs-error-msgs {
		top: 10px !important;
	}
}
@media (max-height:450px) {
	h1 {
		font-size: 4rem;
		letter-spacing: 2px;
	}
	p {
		font-size: 2rem;
	}
	.sub-head {
		font-size: 2.6rem;
	}
	.sub-head span img {
		width: 3rem;
		padding-left: 1rem;
	}
	.ev-logo{
		top: 2rem;
		right: 2rem;
	}
	.ev-social{
		left: auto;
		width: auto;
		bottom:2rem;
		right: 0 !important;
		transform: none;
	}
	.hbspt-form .hs-email,
	.hbspt-form .hs-submit {
		display: block;
		width: 100%;
		max-width: 60rem;
	}
	.hbspt-form input[type="email"] {
		height: 4.6rem;
	}
	.hbspt-form input[type=submit]{
		padding: 1.1rem 4.8rem
	}
	.hbspt-form .hs-error-msgs {
		top: 10px !important;
	}
}
