/* Theme Name: CenExcel HRI - Landing Page 2 */
/* === Global === */
:root {
	--primary-font: 'Source Sans Pro', sans-serif;
	--secondary-font: 'Poppins', sans-serif;
}
html,
body {
	font-family: var(--primary-font);
	font-size: 16px;
}

h1,
h2,
h3 {
	font-family: var(--secondary-font);
	color: var(--color-2);
	font-weight: 700;
}
h2 {
	font-size: 40px;
}
.btn,
body .gform_wrapper.gravity-theme .button {
	background-color: var(--color-2);
	color: #fff;
	padding: 20px 50px;
	border: none;
	border-radius: 2rem;
	font-weight: 700;
	transition: all ease .3s;
}
.btn:hover, .btn:focus,
body .gform_wrapper.gravity-theme .button:hover,
body .gform_wrapper.gravity-theme .button:focus {
	color: var(--color-1);
	background-color: #fff;
}

/* === Header/Nav === */
.primary-header {
	margin-bottom: 120px;
	color: #fff;
	position: relative;
	z-index: 11;
	font-family: var(--secondary-font);
	font-weight: 300;
}
.primary-header a {
	color: #fff;
	border-bottom: 2px solid transparent;
}
.primary-header a:hover, .primary-header a:focus {
	border-bottom: 2px solid #fff;
}
.primary-header .header-row {
	align-items: center;
	justify-content: space-between;
}
.primary-header .social {
	column-gap: 1rem;
	font-size: 18px;
}

/* === Footer === */
.primary-footer {
	background-color: var(--color-3);
	color: #fff;
}
.primary-footer .primary-footer-inner {
	padding: 60px 15px;
}
.primary-footer .primary-footer-inner h2 {
	color: #fff;
	font-weight: 300;
	font-size: 32px;
}
.primary-footer .primary-footer-inner a {
	color: var(--color-2);
	font-weight: 500;
}
.primary-footer .primary-footer-inner a:hover, .primary-footer .primary-footer-inner a:focus {
	color: var(--color-4);
}
.primary-footer .primary-footer-inner .info {
	font-size: 14px;
	font-family: var(--secondary-font);
	font-weight: 300;
}
.primary-footer .primary-footer-inner .info .heading {
	margin-right: .5em;
	font-size: 20px;
}
.primary-footer .map {
	display: flex;
}
.primary-footer .map iframe {
	width: 100%;
	height: 500px;
}
.primary-footer .copyright {
	background-color: #fff;
	padding: 15px 0;
	font-size: 14px;
}
.primary-footer .social {
	column-gap: 1rem;
	margin-top: 20px;
}
.primary-footer .social a {
	color: #fff;
	border-bottom: 2px solid transparent;
}
.primary-footer .social a:hover, .primary-footer .social a:focus {
	border-bottom: 2px solid #fff;
}

/* === Home Page === */
.banner-section {
	background: linear-gradient(90deg, var(--color-2) 0%, var(--color-1) 100%);
	padding: 45px 0 90px;
	color: #fff;
}
.banner-section .image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	mix-blend-mode: multiply;
	opacity: .1;
	z-index: 0;
}
.banner-section .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}
.banner-section .banner-content {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 12px;
}
.banner-section .banner-content h1 {
	font-size: 75px;
	text-align: center;
	color: #fff;
	font-weight: 300;
}
.banner-section .banner-content .form {
	max-width: 800px;
	margin: 0 auto;
}
.banner-section .banner-content .form .gform_wrapper.gravity-theme input:not(.button),
.banner-section .banner-content .form .gform_wrapper.gravity-theme textarea {
	border-radius: 2rem;
	border: none;
	padding: 6px 15px;
}
.banner-section .banner-content .form .gform_wrapper.gravity-theme textarea {
	border-radius: .75rem;
}
.banner-section .banner-content .form .gform_wrapper.gravity-theme .gform_heading {
	display: none;
}
.banner-section .banner-content .form .gform_wrapper.gravity-theme .gfield_label {
	font-weight: 400;
}
.feature-section {
	padding: 90px 0;
	text-align: center;
}
.feature-section h2 {
	margin-bottom: 30px;
}
.feature-section .feature-row {
	justify-content: space-around;
	column-gap: 30px;
	flex-wrap: wrap;
}
.feature-section .feature {
	flex: 1 1 calc(33.33% - 20px);
	max-width: 320px;
	min-width: min(100%, 300px);
}
.feature-section .feature h3 {
	color: var(--text-color);
	font-weight: 300;
	font-size: 28px;
}
.feature-section .feature .icon {
	font-size: 75px;
	width: 180px;
	height: 180px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: var(--color-2);
}
.feature-section .feature .icon:after {
	content: '';
	background-color: #969b9f;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 50%;
	opacity: .05;
}
.content-section {
	background: linear-gradient(90deg, var(--color-2) 0%, var(--color-1) 100%);
	color: #fff;
	padding: 90px 0;
}
.content-section h2 {
	color: #fff;
}
.content-section .content-row {
	column-gap: 100px;
	row-gap: 30px;
	flex-wrap: wrap;
}
.content-section .content-row .col {
	flex: 1 1 calc(50% - 50px);
	min-width: min(100%, 350px);
}
.content-section .content-row .image-col img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}
.testimonial-section {
	padding: 90px 0;
	text-align: center;
}
.testimonial-section h2 {
	color: var(--color-3);
}
.testimonial-section .owl-carousel {
	width: 500px;
	max-width: calc(100% - 60px);
	margin: 0 auto;
}
.testimonial-section .owl-carousel .owl-nav {
	font-size: 40px;
}
.testimonial-section .owl-carousel .owl-nav button.owl-prev,
.testimonial-section .owl-carousel .owl-nav button.owl-next {
	position: absolute;
	top: 0;
}
.testimonial-section .owl-carousel .owl-nav button.owl-prev {
	left: -15vw;
}
.testimonial-section .owl-carousel .owl-nav button.owl-next {
	right: -15vw;
}
.testimonial-section .quote {
	font-size: 100px;
	line-height: 90px;
}

/* === Interior Pages === */
/* === Media Queries === */
body.no-banner .primary-header {
	background-color: var(--color-1);
	padding: 45px 0;
	margin-bottom: 0;
}
.main-section {
	padding: 50px 0;
}
@media screen and (max-width: 767px) {
	.primary-header .header-row {
		display: grid;
		grid-template-rows: auto auto;
		grid-template-columns: auto auto;
		justify-content: space-around;
	}
	.primary-header .header-row .logo-col {
		grid-row: 1/3;
	}
}
@media screen and (max-width: 599px) {
	.primary-header {
		margin-bottom: 50px;
	}
	.primary-header .header-row {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		row-gap: 20px;
	}
	.primary-header .header-row > .col {
		flex: 1 1 auto;
	}
	.primary-header .header-row .logo-col {
		order: -1;
	}
	.banner-section .banner-content h1 {
		font-size: 40px;
	}
	.testimonial-section .owl-carousel {
		max-width: calc(100% - 40px);
	}
	.testimonial-section .owl-carousel .owl-nav {
		font-size: 32px;
	}
	.testimonial-section .owl-carousel .owl-nav button.owl-prev {
		left: -30px;
	}
	.testimonial-section .owl-carousel .owl-nav button.owl-next {
		right: -30px;
	}
	h2 {
		font-size: 32px;
	}
	.feature-section .feature h3 {
		font-size: 28px;
	}
}
