/*
Theme Name: Stage Digital
Author: Bogdan Bujor
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
	--color-primary: #3e5567;
	--color-black: #000;
	--color-orange: #317faf;
	--color-gray: #f6f7fc;
	--font-primary: "Barlow", sans-serif;
	--font-custom: "Barlow", sans-serif;
}

.text-primary {
	color: var(--color-primary);
}
.text-orange {
	color: var(--color-orange);
}
.text-white {
	color: #fff;
}

.bg-primary {
	background-color: var(--color-primary);
}
.bg-orange {
	background-color: var(--color-orange);
}
.bg-gray {
	background-color: var(--color-gray);
}

.font-custom {
	font-family: var(--font-custom);
}

* {
	box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6 {
	margin: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-custom);
	/*font-weight: 400;*/
	line-height: 1.2;
	text-align: left;
}

h3 {
	margin-bottom: .6em;
	color: var(--color-orange);
	font-weight: 700;
}

p,
ul {
	margin-top: 0;
}
p:last-child,
ul:last-child {
	margin-bottom: 0;
}

a {
	color: inherit;
	text-decoration: none;
	transition: .2s;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

.font-bold {
	font-weight: 700;
}
.font-semibold {
	font-weight: 600;
}
.font-medium {
	font-weight: 500;
}

body {
	color: #333;
	font-family: var(--font-primary);
	font-size: 18px;
	line-height: 1.5;
	text-align: justify;
}
h1, .h1 {
	font-size: 42px;
}
h2, .h2 {
	font-size: 34px;
}
h3, .h3 {
	font-size: 24px;
}
h4, .h4 {
	font-size: 20px;
}
@media (max-width: 767px) {
	h2, .h2 {
		font-size: 30px;
	}
	h4, .h4 {
		font-size: 18px;
	}
}

.mb-0 {
	margin-bottom: 0;
}

.mt-15 {
	margin-top: 15px;
}
.mb-15 {
	margin-bottom: 15px;
}

.mt-30 {
	margin-top: 30px;
}
.mb-30 {
	margin-bottom: 30px;
}

.mt-60 {
	margin-top: 60px;
}
.mb-60 {
	margin-bottom: 60px;
}

.pt-15 {
	padding-top: 15px;
}
.pb-15 {
	padding-bottom: 15px;
}

.pt-30 {
	padding-top: 30px;
}
.pb-30 {
	padding-bottom: 30px;
}

.pt-60 {
	padding-top: 60px;
}
.pb-60 {
	padding-bottom: 60px;
}

@media (min-width: 768px) {
	.columns-2 {
		columns: 2;
	}
}

.relative {
	position: relative;
}
.absolute {
	position: absolute;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.flex {
	display: flex;
}
.flex-wrap {
	flex-wrap: wrap;
}
.items-center {
	align-items: center;
}
.justify-center {
	justify-content: center;
}
.justify-between {
	justify-content: space-between;
}

.gap-30 {
	grid-gap: 30px;
}

.container {
	width: 100%;
	max-width: 1200px;
	padding-left: 15px;
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
}
.row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
	grid-row-gap: 30px;
}
.col-3 {
	width: 25%;
	padding-left: 15px;
	padding-right: 15px;
}
.col-4 {
	width: 33.33%;
	padding-left: 15px;
	padding-right: 15px;
}
.col-6 {
	width: 50%;
	padding-left: 15px;
	padding-right: 15px;
}
@media (max-width: 767px) {
	.col-3,
	.col-4,
	.col-6 {
		width: 100%;
	}
	.reverse :first-child {
		order: 2;
	}
	.reverse :last-child {
		order: 1;
	}
}

.hidden {
	display: none;
}

.text-left {
	text-align: left !important;
}
.text-right {
	text-align: right !important;
}
.text-center {
	text-align: center !important;
}
.text-justify {
	text-align: justify !important;
}
.text-last-center {
	text-align-last: center !important;
}

@media (min-width: 768px) {
	.xs-visible {
		display: none;
	}
}
@media (max-width: 767px) {
	.xs-hidden {
		display: none;
	}
}

.full-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.topbar {
	padding: 10px 0;
	background-color: var(--color-primary);
	background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-primary) 50%, var(--color-orange) 50%, var(--color-orange) 100%);
	color: #fff;
	font-family: var(--font-custom);
	font-size: 14px;
	font-weight: 400;
}
@media (max-width: 767px) {
	.topbar {
		display: none;
	}
}
.topbar-inner {
	display: flex;
	align-items: center;
}
.topbar-content span {
	position: relative;
}
.topbar-content span:not(:last-child) {
	margin-right: 20px;
	padding-right: 20px;
}
.topbar-content span:not(:last-child):after {
	content: "";
	position: absolute;
	top: 2px;
	right: 0;
	width: 1px;
	height: 16px;
	background-color: #fff;
}
.topbar-content span i {
	margin-right: 10px;
	color: #eaeaea;
}
.topbar-social {
	margin-left: auto;
	color: #eaeaea;
}
.topbar-social a:not(:last-child) {
	margin-right: 20px;
}

.header {
	border-bottom: 3px solid var(--color-primary);
}
.header-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding-top: 10px;
	padding-bottom: 10px;
}
.header-box {
	display: flex;
	align-items: center;
}
.header-box-icon {
	width: 40px;
	height: 40px;
	border-radius: 20px;
	background-color: var(--color-primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}
.header-box-title {
	color: var(--color-orange);
	font-weight: 700;
}
.logo-white {
	display: none;
}
.header-bottom {
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: var(--color-primary);
}
.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media (max-width: 767px) {
	.header-logo {
		width: 240px;
	}
	.header-inner {
		justify-content: center;
	}
	.header-bottom,
	.header-phone,
	.header-hours {
		display: none;
	}
}
.menu {
	position: relative;
	padding-left: 0;
	list-style: none;
	display: flex;
	justify-content: space-evenly;
	font-size: 22px;
}
.menu > li {
	position: relative;
	margin: 0 15px;
}
.menu > li > a {
	display: block;
	padding: 15px 0;
	color: #fff;
	font-family: var(--font-custom);
	font-weight: 400;
	text-transform: uppercase;
}
.menu > li.menu-item-has-children > a {
	padding-right: 20px;
}
.menu > li.menu-item-has-children > a:after {
	content: "\f107";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	right: 0;
}
.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	visibility: hidden;
	opacity: 0;
	z-index: 999;
	list-style: none;
	background-color: #fff;
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1);
	width: 100%;
	transition: .2s;
	padding-left: 0;
}
@media (min-width: 768px) {
	.sub-menu {
		width: 270px;
	}
	.menu-item-98 .sub-menu {
		width: 340px;
	}
}
.menu > li:hover .sub-menu {
	visibility: visible;
	opacity: 1;
}
.sub-menu li a {
	display: block;
	padding: 10px 25px;
}
.sub-menu li a:hover {
	background-color: var(--color-orange);
	color: #fff;
}
@media (max-width: 767px) {
	.menu {
		font-size: 18px;
	}
}

.header-transparent:not(.sticky) .header {
	position: absolute;
	z-index: 1;
	width: 100%;
	background-color: rgba(0, 0, 0, .8);
}
.header-transparent:not(.sticky) .logo-main {
	display: none;
}
.header-transparent:not(.sticky) .logo-white {
	display: inline;
}
.header-transparent:not(.sticky) .menu > li > a {
	color: #fff;
}
.header-transparent:not(.sticky) .header-button a:hover {
	background-color: var(--color-primary);
	color: var(--color-orange);
}

.sticky .header {
	position: fixed;
	z-index: 9;
	top: 0;
	width: 100%;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
.sticky:not(.header-transparent) .topbar {
	margin-bottom: 213px;
}

.sd-button {
	display: inline-block;
	padding: 15px 15px;
	font-family: var(--font-custom);
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	background-color: var(--color-orange);
	color: #fff;
	border-radius: 0;
}
.sd-button:hover {
	background-color: var(--color-primary);
	color: #fff;
}
.sd-button.sd-white {
	background-color: #fff;
	color: #000;
}
.sd-button.sd-white:hover {
	background-color: var(--color-primary);
	color: #fff;
}

.banner-section {
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
	background-size: cover;
	background-position: center;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.home .banner-section {
	height: 800px;
	padding-bottom: 120px;
}
.banner-content {
	position: relative;
	max-width: 600px;
}
.banner-form-wrap {
	width: 100%;
	position: absolute;
	top: 100%;
	left: 0;
	transform: translateY(-50%);
}
.banner-form {
	position: relative;
	padding: 20px 20px 10px;
	background-color: #f6f7fc;
	box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.08);
	border-radius: 5px;
	border: 3px solid #fff;
}
.banner-form-title {
	font-family: var(--font-custom);
	font-size: 34px;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 20px;
	text-align: center;
}
@media (min-width: 768px) {
	.banner-form form {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-column-gap: 30px;
	}
}
.banner-form .button-field input {
	width: 100%;
	padding-top: 10px;
	padding-bottom: 11px;
}
.banner-title {
	font-family: var(--font-custom);
	font-size: 60px;
	font-weight: 700;
	line-height: normal;
	text-align: center;
	margin-bottom: 0;
}
.home .banner-title {
	font-size: 70px;
	line-height: 1;
	text-align: left;
}
.banner-subtitle {
	font-size: 20px;
	text-align: left;
}
@media (max-width: 767px) {
	.home .banner-section {
		height: auto;
		padding-bottom: 380px;
	}
	.slider-title {
		font-size: 36px;
	}
	.home .banner-title {
		font-size: 36px;
	}
	.banner-content {
		width: 100%;
		padding-right: 0;
		text-align: center;
	}
}

.black-overlay:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .4);
}

.top-section {
	padding-top: 140px;
}
@media (max-width: 767px) {
	.top-section {
		padding-top: 360px;
	}
	.top-section .h2 {
		font-size: 26px;
	}
}

.service-box {
	overflow: hidden;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 2px 0px 20px 0px rgb(3 15 39 / 7%) !important;
	text-align: center;
	height: 100%;
	padding-bottom: 20px;
}
.service-content {
	padding: 20px 15px;
}
.service-title {
	color: var(--color-primary);
	font-family: var(--font-custom);
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 0;
}

.testi-bg {
	padding-top: 30px;
	padding-bottom: 30px;
	background-color: #f6f7fc;
}
.testimonial {
	background-color: #fff;
	height: 100%;
	padding: 20px;
}
.testi-meta {
	display: flex;
	align-items: center;
}
.testi-image {
	width: 150px;
	height: 150px;
	border-radius: 100px;
	overflow: hidden;
	margin-right: 40px;
}
.testi-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.testi-name {
	font-size: 24px;
	font-weight: 700;
	padding-bottom: 30px;
	background-image: url(https://stage.digital/samuelroofing/wp-content/themes/stagedigital/images/stars.png);
	background-repeat: no-repeat;
	background-position: bottom left;
	flex: 1;
}
.testi-name:before {
	content: "\f10e";
	font-family: "Font Awesome 5 Free";
	font-size: 40px;
	font-weight: 900;
	display: block;
	color: var(--color-orange);
}
.testi-text {
	margin-top: 20px;
	font-family: var(--font-custom);
	font-size: 18px;
}
.testimonials .owl-stage {
	display: flex;
}
.testimonials .owl-item {
	padding: 0 15px;
}
.testimonials.owl-theme .owl-dots .owl-dot span {
	background-color: #888;
}
.testimonials.owl-theme .owl-dots .owl-dot.active span,
.testimonials.owl-theme .owl-dots .owl-dot:hover span {
	background-color: #333;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
	font-size: 60px;
	line-height: 1;
}
.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
	background-color: transparent;
}

@media (max-width: 767px) {
	.testi-bg .h2 {
		font-size: 24px;
	}
	.testimonials {
		padding-left: 0;
		padding-right: 0;
	}
	.testi-meta {
		display: block;
	}
}

.footer-map iframe {
	width: 100%;
	height: 250px;
}

.footer-quote-wrap {
	padding: 30px 0;
}
.footer-quote-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	grid-row-gap: 30px;
}
.footer-form-wrap {
	width: calc(50% - 30px);
	background-color: var(--color-gray);
	/*box-shadow: 0 0 20px 0 rgba(3, 15, 39, .07);*/
	border-radius: 5px;
}
.footer-form-wrap .h2 {
	padding: 10px;
}
.footer-contact-wrap {
	width: calc(50% - 30px);
}
.footer-form-inner {
	padding: 20px 30px 30px;
}
@media (max-width: 767px) {
	.footer-form-wrap,
	.footer-contact-wrap {
		width: 100%;
	}
	.footer-contact-wrap .h2 {
		font-size: 24px;
	}
	.footer-form-inner {
		padding-left: 15px;
		padding-right: 15px;
	}
}
.footer-form-wrap .page-heading {
	background-color: var(--color-primary);
	color: #fff;
	padding: 20px 0;
	margin-bottom: 0;
}
.footer-form-inner .wpcf7 {
	margin-top: 40px;
}
.form-field {
	margin-bottom: 20px;
}
.form-field input,
.form-field textarea,
.form-field select {
	padding: 10px 20px;
	font-family: var(--font-custom);
	font-size: 20px;
	border: 1px solid #e7e7e7;
	border-radius: 3px;
	color: #333;
	width: 100%;
}
.form-field input:focus-visible,
.form-field textarea:focus-visible,
.form-field select:focus-visible {
	outline: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
	color: #333;
}
.form-field select {
	padding-left: 15px;
}
.form-field textarea {
	height: 120px;
}
.button-field {
	text-align: center;
	margin-bottom: 0;
}
.button-field input {
	width: auto;
	display: inline-block;
	padding: 15px 15px;
	font-family: var(--font-custom);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	text-transform: uppercase;
	border: none;
	background-color: var(--color-orange);
	color: #fff;
	border-radius: 0;
	transition: .2s;
	cursor: pointer;
}
.button-field input:hover {
	background-color: var(--color-primary);
	color: #fff;
}
.wpcf7-spinner {
	position: absolute;
	margin: 0;
}
.wpcf7 form.sent .wpcf7-response-output {
	text-align: center;
}

.info-box {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #e7e7e7;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.info-box-icon-inner {
	width: 70px;
	height: 70px;
	background-color: var(--color-orange);
	color: #fff;
	border-radius: 5px;
	font-size: 32px;
	text-align: center;
	line-height: 70px;
}
.info-box-content {
	margin-left: 30px;
}
.info-box-heading {
	margin-bottom: 0;
	font-family: var(--font-custom);
	font-size: 24px;
	font-weight: 700;
	color: var(--color-primary);
}
.info-box-text {
	overflow-wrap: anywhere;
}

.footer {
	border-top: 5px solid var(--color-orange);
	background-color: var(--color-primary);
	color: #fff;
}
.footer-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	grid-row-gap: 30px;
}
@media (max-width: 767px) {
	.footer-col {
		width: 100%;
	}
}
.footer-map iframe {
	max-width: 100%;
	width: 320px;
	height: 200px;
}
.footer-heading {
	font-family: var(--font-custom);
	font-size: 24px;
	margin-bottom: 25px;
}
.footer-menu ul {
	padding-left: 0;
}
.footer-menu ul li {
	margin-left: 25px;
}
.icon-box {
	display: flex;
	margin-bottom: 10px;
}
.icon-box-icon {
	width: 20px;
	text-align: center;
	margin-right: 10px;
}
.icon-box-text {
	text-align: left;
}

.bottombar {
	padding: 15px 0;
	color: #fff;
}
.bottom-link {
	text-align: right;
}
@media (max-width: 767px) {
	.bottombar {
		padding-bottom: 60px;
		font-size: 16px;
	}
	.bottombar .row {
		grid-row-gap: 10px;
	}
	.bottom-text,
	.bottom-link {
		text-align: center;
	}
}

.mobile-button {
	display: none;
	margin-left: auto;
	font-size: 30px;
}
.header-transparent:not(.sticky) .mobile-button {
	color: #fff;
}
@media (max-width: 767px) {
	.mobile-button {
		display: block;
		color: var(--color-primary);
	}
}
.mobile-overlay {
	opacity: 0;
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 9999;
	transition: all ease 0.3s;
}
.mobile-open .mobile-overlay {
	opacity: 1;
	visibility: visible;
}
.mobile-overlay .close {
	position: absolute;
	top: 57px;
	right: 17px;
	color: #fff;
	font-size: 30px;
	line-height: 1;
}
.mobile-menu {
	position: fixed;
	z-index: 9999;
	top: 0;
	left: -300px;
	width: 300px;
	max-width: 100%;
	height: 100%;
	padding-bottom: 50px;
	overflow-x: hidden;
	overflow-y: auto;
	background-color: var(--color-primary);
	color: #fff;
	transition: .2s;
}
.mobile-open .mobile-menu {
	left: 0;
}
.mobile-logo {
	position: relative;
	padding: 25px;
}
@media (max-width: 767px) {
	.menu {
		display: block;
	}
	.menu > li {
		margin: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}
	.menu > li > a {
		padding: 10px 25px;
		color: #fff;
	}
	.menu > li.menu-item-has-children > a:after {
		content: "\f105";
		top: 11px;
		right: 20px;
	}
	.menu > li.menu-item-has-children.open > a:after {
		content: "\f107";
	}
	.sub-menu {
		position: static;
		visibility: visible;
		opacity: 1;
		width: 100%;
		padding: 0;
		background-color: transparent;
		box-shadow: none;
		max-height: 0;
		overflow: hidden;
		transition: .5s;
	}
	.open .sub-menu {
		max-height: 1000px;
	}
}

.page-header {
	position: relative;
	padding: 50px 0;
	background-image: url(https://luxeroofing.com/wp-content/uploads/2023/01/header.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.page-header .container{
    position: relative;
    
}
.page-header.black-overlay:before {
	background-color: rgba(0, 0, 0, .4);
}
.page-title {
	position: relative;
	color: #FFF;
	font-size: 42px;
	font-weight: 400;
	line-height: 1.2;
	text-align: center;
}

.contact-box {
	margin-top: 30px;
	padding: 20px 25px;
	background-color: #fff;
	border: 1px solid #e7e7e7;
	border-radius: 5px;
	display: flex;
	align-items: center;
}
.contact-box-icon {
	width: 40px;
	height: 40px;
	background-color: var(--color-primary);
	color: #fff;
	border-radius: 20px;
	text-align: center;
}
.contact-box-icon i {
	font-size: 18px;
	line-height: 40px;
}
.contact-box-content {
	margin-left: 20px;
}
.contact-box-heading {
	font-weight: 400;
}
.contact-box-text {
	display: inline-block;
	color: var(--color-primary);
	border-bottom: 1px dashed;
}

img.size-full {
	padding-bottom: 2px;
	border-bottom: 3px solid var(--color-primary);
}

.callnow {
	display: none;
}
.callnow a {
	position: fixed;
	z-index: 1;
	display: block;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 10px 0;
	background-color: var(--color-orange);
	color: #fff;
	font-family: var(--font-custom);
	font-size: 24px;
	font-weight: 400;
	text-align: center;
}
@media (max-width: 767px) {
	.callnow {
		display: block;
	}
}

.work-bg {
	background-image: url(https://stage.digital/samuelroofing/wp-content/uploads/2023/08/tile-background.jpg);
	background-size: cover;
	background-position: center;
	padding-top: 60px;
	padding-bottom: 60px;
}
.work-inner {
	/*max-width: 700px;*/
}
.work-box {
	height: 100%;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 3px;
	text-align: center;
	padding: 10px 10px 20px;
}
.work-icon {
	font-size: 36px;
}
.work-title {
	font-family: var(--font-custom);
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 10px;
}

.project-wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 280px;
	color: #fff;
	text-align: center;
}
.project-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.project-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.project-image:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .4);
}
.project-title {
	position: relative;
	font-family: var(--font-custom);
	font-size: 24px;
}
.project-text {
	position: relative;
}
.project-link {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.video-wrap {
	position: relative;
	padding-top: 56.25%;
}
.video-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.beige-line {
	position: relative;
	padding-bottom: 15px;
}
.beige-line:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100px;
	height: 3px;
	background-color: var(--color-orange);
}
.beige-line.text-center:after {
	left: calc(50% - 50px);
}
.beige-line.black-line:after {
	background-color: #000;
}
.beige-line.white-line:after {
	background-color: #fff;
}

hr {
	margin: 0;
	border: 0;
	border-top: 1px solid #888;
}

.cta-bg {
	background-size: cover;
	background-position: center;
	padding-top: 30px;
	padding-bottom: 30px;
	position: relative;
}
.cta-bg:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .4);
}
.cta-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	grid-row-gap: 30px;
	position: relative;
}
.cta-content {
	flex: 1;
	padding-right: 60px;
}
.cta-title {
	margin-bottom: 20px;
	font-family: var(--font-custom);
	font-size: 80px;
	font-weight: 700;
	line-height: 1;
}
.cta-text {
	font-size: 24px;
	max-width: 680px;
}
@media (max-width: 767px) {
	.cta-wrap {
		display: block;
		text-align: center;
	}
	.cta-content {
		padding-right: 0;
	}
	.cta-title {
		font-size: 34px;
	}
	.cta-button {
		margin-top: 20px;
	}
}

.feature-box {
	height: 100%;
	background-color: #fff;
	box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
	text-align: center;
	padding: 20px;
}
.feature-icon {
	font-size: 40px;
	color: var(--color-orange);
	margin-bottom: 10px;
}
.feature-title {
	font-family: var(--font-custom);
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 10px;
}

.counter-wrap {
	margin-top: 60px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
}
.counter-item {
	text-align: center;
	padding: 20px;
}
.counter-number {
	font-size: 40px;
	font-weight: 400;
	color: var(--color-orange);
	margin-bottom: 0;
}
@media (max-width: 767px) {
	.counter-wrap {
		grid-template-columns: repeat(1, 1fr);
	}
}

.brand-bg {
	background-color: var(--color-primary);
	padding-top: 60px;
	padding-bottom: 60px;
}
.brand-wrap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 15px;
}
.brand-item {
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 5px;
	padding: 10px;
	text-align: center;
}
@media (max-width: 767px) {
	.brand-wrap {
		grid-template-columns: repeat(2, 1fr);
	}
}

.experience-bg {
	padding-top: 60px;
	display: none;
}
.exp-number {
	color: var(--color-orange);
	font-size: 48px;
	font-weight: 400;
}
.exp-title {
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 10px;
}
.exp-star {
	color: var(--color-orange);
	margin-bottom: 10px;
}
@media (max-width: 767px) {
	.experience-bg {
		padding-bottom: 60px;
	}
}

.orange-title {
	background-color: var(--color-orange);
	color: #fff;
	padding: 10px;
}

.faq-wrap {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-gap: 30px;
}
.faq-item {
	position: relative;
}
.faq-question {
	background-color: var(--color-gray);
	padding: 20px 60px 20px 20px;
	margin-bottom: 0;
	font-weight: 400;
	text-align: left;
	cursor: pointer;
	position: relative;
}
.faq-question:after {
	content: "\f067";
	font-family: 'Font Awesome 5 Free';
	font-size: 24px;
	font-weight: 900;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	color: var(--color-primary);
}
.active .faq-question:after {
	content: "\f068";
}
.faq-answer {
	position: absolute;
	z-index: 1;
	overflow: hidden;
	width: 100%;
	max-height: 0;
	padding-left: 20px;
	padding-right: 20px;
	background-color: #fff;
	transition: .2s;
}
.active .faq-answer {
	max-height: 500px;
	padding-top: 20px;
	padding-bottom: 20px;
	border: 1px solid #bdc3c7;
}
@media (max-width: 767px) {
	.faq-answer {
		position: static;
	}
}

.logo-carousel {
	display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 30px;
}
@media (max-width: 767px) {
	.logo-carousel {
		flex-wrap: wrap;
		justify-content: center;
	}
	.company-logo {
		max-width: calc(50% - 30px);
		padding: 0 10px;
	}
}

.areas-list {
	list-style: none;
	padding-left: 0;
	columns: 6;
}
.areas-list li:before {
	content: "\f3c5";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 10px;
}
@media (max-width: 1023px) {
	.areas-list {
		columns: 4;
	}
}
@media (max-width: 767px) {
	.areas-list {
		columns: 1;
	}
}

.spec-image {
	text-align: center;
	padding-bottom: 20px;
	border-bottom: 2px solid var(--color-orange);
}
.spec-title {
	margin-top: 20px;
	margin-bottom: 10px;
	color: var(--color-primary);
	font-family: var(--font-custom);
	font-size: 24px;
	font-weight: 700;
}

.way-item {
	text-align: center;
}
.way-number {
	width: 100px;
	height: 100px;
	border-radius: 50px;
	background-color: var(--color-orange);
	color: #fff;
	font-size: 60px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.way-title {
	margin-top: 20px;
	margin-bottom: 10px;
	font-family: var(--font-custom);
	font-size: 24px;
	font-weight: 600;
}