/*  ################################### */
/*  !HERO BANNER */
/*  ################################### */

#hero-banner {
	background-image: url('../images/homepage-hero-banner.jpg');
	background-size: cover;
	background-position: center bottom;
	min-height: 720px;
	height: calc(100vh + 100vw*0.06);
	position: relative;
}

#hero-banner .image-caption {
	background-color: rgba(0, 0, 0, 0.4);
}

#hero-banner .chevron:hover img {
    transform: scale(0.75,1.25);
    transition: all .2s ease-in-out;
}

#hero-banner h1 {
	font-family: 'Barlow', sans-serif;
	font-size: 62px ;
	line-height: 64px;
	font-weight: 300;
	letter-spacing: -2px;
	color: #FFFFFF;
	padding-bottom: 0px;
}

#hero-banner h1 span {
	font-size: 72px;
	font-weight: 600;
	line-height: 64px;
}

@media (max-width: 767px) {

	#hero-banner h1 {
		font-size: 52px ;
		line-height: 54px;
	}

	#hero-banner h1 span {
		font-size: 62px;
		line-height: 54px;
	}
	
	
}

@media (max-width: 400px) {

	#hero-banner h1 {
		font-size: 42px ;
		line-height: 54px;
	}

	#hero-banner h1 span {
		font-size: 52px;
		line-height: 54px;
	}
	
	
}

#hero-banner h5 {
	font-weight: 700;
	letter-spacing: -0.49px;
}


/*	################################### */
/*  !SERVICES */
/*  ################################### */

#services .card {
	border: none;
	border-radius: 0px;
	overflow: hidden;
}

#services .card h2 {
	font-family: 'Barlow', sans-serif;
	font-size: 52px;
	line-height: 44px;
	letter-spacing: -1.7px;
	font-weight: 300;
	color: #FFFFFF;
}

#services .card h2 span {
	font-size: 72px;
	font-weight: 600;
	line-height: 64px;
	letter-spacing: -2.35px;
}

#services .card-img-overlay {
	position: absolute;
	top: calc(100% - 165px);
	transition: 0.5s ease-out;
}

#services  .card:hover .card-img-overlay {
	position: absolute;
	top: calc(50% - 165px);
}

#services .card h2 {
	font-size: 44px;
}

#services .card a {
	font-size: 14px;
	color: white;
	text-transform: uppercase;
	text-decoration: none;
}

/* Arrow next to "MORE" button */
#services .arrow-link::after {
    display: inline-block;
    position: relative;
    right: -10px;
    top: 5px;
    width: 20px;
    height: 20px;
    content: '';
    background-image: url('../images/arrow-right.svg');
    background-repeat: no-repeat;
    background-size: 20px 20px;
    transition: all .2s ease-in-out;
}

#services .arrow-link:hover::after {
    right: -15px;
    background-image: url('../images/arrow-right.svg');
}
/* End of code for arrow next to "MORE" button */


@media only screen and (max-width: 1023px) {
	#services .card h2 {
		font-size: 38px;
		line-height: 40px;
	}
}


@media (max-width: 767px) {
    #services .card img {
        max-height: 70vh;
    }
}


@media (max-width: 556px) {
    #services .card img {
        max-height: 100vh;
    }
}


/*  ################################### */
/*  !EXPERIENCE */
/*  ################################### */


@media only screen and (min-width: 992px) {
	#experience .border-left::before {
		display: block;
		position: absolute;
		content: '';
		height: 100%;
		left: 55%;
		border-left: 1px solid #000;
	}
}

@media only screen and (min-width: 1200px) {
	#experience .border-left::before {
		left: 52%;
	}
}

#experience h4 {
	font-family: 'Barlow', sans-serif;
	font-size: 48px;
	letter-spacing: -1.57px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 20px;
}


#experience h4 span {
	font-family: 'Barlow', sans-serif;
	font-size: 68px;
	letter-spacing: -2.22px;
	font-weight: 600;
	text-transform: uppercase;
}

#experience h6 {
	color: black;
}

#experience .figure-caption {
	position: absolute;
	margin-top: -40px;
	color: white;
	padding-left: 20px;
}

#experience .figure-caption h5 {
	font-weight: 700;
	letter-spacing: -0.5px;
}

/*  ################################### */
/*  !CONTACT */
/*  ################################### */

#section-contact {
	background-image: url('../images/contact-banner.jpg');
	background-repeat: no-repeat;
	background-size: cover;
}


