/*
Theme Name: Everest Child
Template: everest-parent
Version: 1.0.0
*/
.service-section .content {
	margin-bottom: 50px;
}
.coral-form-section {
	position: relative;
	background-color: #000;
	z-index: 1;
	color: #fff;
	padding: 100px 0;
	font-size: 22px;
}
.coral-form-section h2 {
	margin-bottom: 30px;
	font-size: 70px;
}
.coral-form-section .content-col p {
	max-width: 350px;
	margin: 0 auto;
}
.coral-form-section .background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: .2;
	z-index: -1;
}
.coral-form-section .form-row {
	align-items: center;
	column-gap: 100px;
	row-gap: 50px;
	flex-wrap: wrap;
}
.coral-form-section .form-row .col {
	flex: 1 1 calc(50% - 50px);
	min-width: var(--min);
}
.coral-form-section .form {
	background-color: rgba(0, 0, 0, 0.5);
	padding: 50px 30px;
}
.coral-form-section .form .gform_wrapper.gravity-theme .gfield input.large, 
.coral-form-section .form .gform_wrapper.gravity-theme .gfield select.large,
.coral-form-section .form .gform_wrapper.gravity-theme .gfield textarea.small {
	color: #000;
}
.coral-form-section .form .gform_wrapper.gravity-theme .button {
	display: block;
	width: 100%;
    margin-top: 20px;
    background-color: var(--color-3);
}
.coral-form-section .form .gform_wrapper.gravity-theme .button:hover,
.coral-form-section .form .gform_wrapper.gravity-theme .button:focus {
	background-color: var(--color-1);
	color: var(--color-4);
}
.coral-form-section .form .gform_wrapper.gravity-theme .gform_footer {
	margin: 0;
	padding: 0;
}
.coral-form-section .form .gform_wrapper.gravity-theme .gfield textarea.medium,
.coral-form-section .form .gform_wrapper.gravity-theme .gfield textarea.large {
	height: 122px;
}
.icon-feat-section {
	padding: 100px 0;
	background-color: var(--color-2);
}
.icon-feat-section h2 {
    color: #fff;
}
.icon-feat-section .features {
	flex-wrap: wrap;
	column-gap: 10px;
	row-gap: 10px;
}
.icon-feat-section .feature {
	flex: 1 1 calc(25% - 8px);
	background-color: #fff;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.058823529411764705);
}
.icon-feat-section .feature .icon {
	color: var(--color-3);
    font-size: 42px;
}
.icon-feat-section .feature h3 {
	font-weight: 700;
	font-size: 24px;
	margin: 8px 0 16px;
}
.content-section {
	padding: 100px 0;
}
.services-section {
	padding: 85px 0;
}
.services-section .services {
	flex-wrap: wrap;
	column-gap: 45px;
	row-gap: 30px;
}
.services-section .service {
	flex: 1 1 calc(33.33% - 30px);
	box-shadow: 2px 2px 4px 0 #1e1e1e;
	background-color: var(--color-4);
	transition: transform ease .3s;
}
.services-section .service .image img {
	width: 100%;
}
.services-section .service:hover {
	transform: translateY(-15px);
}
.services-section .service .content {
	padding: 25px;
}
.services-section .service .content p:last-child {
	margin-bottom: 0;
}
.services-section .service h3 {
	font-size: 25px;
	font-weight: 600;
    color: var(--color-3);
}
.services-section .service a {
	font-weight: 400;
	color: var(--color-1);
}
@media screen and (max-width: 991px) {
	.services-section .services {
		max-width: 550px;
		margin: 0 auto;
	}
	.services-section .services .service {
		flex-basis: 100%;
	}
	.services-section .service:hover {
		transform: none;
	}
}
@media screen and (max-width: 450px) {
	.services-section .service .content {
		padding: 25px 15px;
	}
}