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

:root {
	--color-primary: #1b1b1b;
	--color-secondary: #333;
	--color-orange: #1b1b1b;
	--color-black: #1b1b1b;
	--color-gray: #f6f7fc;
	--theme-color-2: #1b1b1b;
	--theme-color-3: #FBF7EF;
	--font-primary: "Host Grotesk", sans-serif;
	--font-custom: "Red Hat Display", sans-serif;
}

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

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

.bg-color-3{
	background-color: var(--theme-color-3);
}
.bg-black{
	background-color: var(--color-black) !important;
}
.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;
}

h2, h3 {
	margin-bottom: .6em;
	color: var(--color-primary);
	font-weight: 400;
}

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;
	background-color: #F4F2ED;
}
h1, .h1 {
	font-size: 60px;
}
h2, .h2 {
	font-size: 60px;
}
h3, .h3 {
	font-size: 24px;
}
h4, .h4 {
	font-size: 20px;
}
@media (max-width: 767px) {
	body{
		font-size: 14px;
	}
	h2, .h2 {
		font-size: 30px;
	}
	h4, .h4 {
		font-size: 18px;
	}
	.fs-xs-16{
		font-size: 16px !important; 
	}
}

.mx-n-15{
	margin-left: -15px;
	margin-right: -15px;
}
.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-40 {
	margin-top: 60px;
}
.mb-40 {
	margin-bottom: 60px;
}

.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;
	}
}
.overflow-hidden{
	overflow: hidden !important;
}
.relative {
	position: relative;
}
.absolute {
	position: absolute;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}
.float-none{
	float: none !important;
}

.d-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: 1450px;
	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,
.col-4,
.col-5,
.col-6 {
	padding-left: 15px;
	padding-right: 15px;
}
.col-3 {
	width: 25%;
}
.col-4 {
	width: 33.333333%;
}
.col-5 {
	width: 41.666667%;
}
.col-6 {
	width: 50%;
}
@media (max-width: 767px) {
	.col-3,
	.col-4,
	.col-5,
	.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;
	}
}

.border-bottom{
	border-bottom: 1px solid var(--color-black);
}

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

.topbar {
	padding: 10px 0;
	background-color: var(--color-black);
/* 	background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-primary) 50%, var(--color-secondary) 50%, var(--color-secondary) 100%); */
	color: #fff;
	font-family: var(--font-custom);
	font-size: 16px;
	font-weight: 500;
}
@media (max-width: 767px) {
	.topbar {
		display: none;
	}
}
.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: 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: 1px solid var(--color-black);
}
.header-inner {
	display: flex;
	align-items: center;
	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-primary);
	font-weight: 700;
	line-height: 1;
}
.header-box-text {
	font-size: 30px;
	font-weight: 700;
	line-height: 1;
}
.logo-white {
	display: none;
}
.header-bottom {
	padding: 0;
}
.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-nav{
	margin-left: auto;
	margin-right: auto;
}
.header-logo{
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;;
}
@media (max-width: 767px) {
	.header-logo {
		width: 120px;
		margin-top: 0;
		margin-left: auto;
		margin-right: auto;
	}
	.header-inner {
		justify-content: center;
	}
	.header-bottom,
	.header-phone,
	.header-hours {
		display: none;
	}
	.header-top .header-nav, .header-top .header-quote{
		display: none;
	}

}
.menu {
	position: relative;
	padding-left: 0;
	list-style: none;
	display: flex;
	justify-content: space-evenly;
	font-size: 16px;
}
.menu > li {
	position: relative;
	margin: 0 15px;
}
.menu > li > a {
	display: block;
	padding: 15px 0;
	font-family: var(--font-custom);
	font-weight: 500;
	text-transform: uppercase;
	font-size: 18px;
}
.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: 370px;
	}
}
.menu > li:hover .sub-menu {
	visibility: visible;
	opacity: 1;
}
.sub-menu li a {
	display: block;
	padding: 10px 25px;
	font-family: var(--font-custom);
}
.sub-menu li a:hover {
	background-color: var(--color-secondary);
	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); */
	border-bottom: none;
}
.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: #faf8f6;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
	.sticky .header .header-logo{
		margin-top: 0;
		width: 120px;
		margin-bottom: 10px;
	}
	.sticky .header-inner{
		padding-bottom: 0;
	}		

.sticky:not(.header-transparent) {
	padding-top: 213px;
}
@media (max-width: 767px) {
	.sticky:not(.header-transparent) {
		padding-top: 111px;
	}
}

.sd-button {
	display: inline-block;
	padding: 15px 15px;
	font-family: var(--font-custom);
	font-size: 16px;
	font-weight: 500;
	background-color: var(--color-orange);
	color: #fff;
	border-radius: 10px;
}
.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: 900px;
}
.banner-content {
	position: relative;
	text-align: center;
}
.banner-form {
	position: relative;
	padding: 30px 30px 20px;
	background-color: #f6f7fc;
	box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.08);
	border-radius: 5px;
	border: 3px solid #fff;
	max-width: 480px;
	margin-left: auto;
}
.banner-form-title {
	font-family: var(--font-custom);
	font-size: 32px;
	font-weight: 600;
	line-height: 1;
	color: var(--color-primary);
	margin-bottom: 30px;
	text-align: center;
}
.form-desc {
	color: #333;
	font-size: 14px;
	margin-bottom: 20px;
}
.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: 56px;
	line-height: 1;
	/* max-width: 750px; */
	/*margin-left: auto;
	margin-right: auto;*/
	/* text-align: left; */
}
.banner-subtitle {
	font-size: 20px;
}
@media (max-width: 767px) {
	.home .banner-section {
		height: 400px;
		height: auto;
	}
	.slider-title {
		font-size: 36px;
	}
	.home .banner-title {
		font-size: 28px;
		text-align: center;
	}
	.banner-content {
		text-align: center;
	}
	.banner-form {
		padding-left: 15px;
		padding-right: 15px;
	}
}

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

.top-section {
	background-color: var(--color-gray);
}
@media (max-width: 767px) {
	.top-section .h2 {
		font-size: 26px;
	}
}

.page-header h1{
	font-size: 24px;
	font-weight: bold;
}

.page-header-bg{
	background-blend-mode: multiply;
	color: #FFF;
	background: rgba(0,0,0,.45) center center / cover no-repeat;
	height: clamp(200px, 60vh, 800px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.page-header-bg h1{
	color: #FFF !important;
}


.service-box {
	text-align: center;
	padding: 0 20px;
}
.service-image {
	display: inline-block;
	/*width: 370px;
	height: 370px;*/
	border-radius: 20px;
	overflow: hidden;
}
.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.service-content {
	padding: 20px 15px;
}
.service-title {
	color: var(--theme-color-2);
	font-family: var(--font-custom);
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 0;
}
@media (max-width: 767px) {
	.service-box {
		padding: 0;
	}
	.service-image {
		/*width: 300px;
		height: 300px;*/
	}
}

.testi-bg {
	padding-top: 30px;
	padding-bottom: 30px;
	background:url(https://stage.digital/professional-home-remodeling/wp-content/uploads/2024/11/exterior-painting-01.webp) center / cover rgba(0,0,0,.35);
	background-blend-mode: multiply;
	
}
.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(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-primary);
}
.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;
		text-align: center;
	}
	.testi-image {
		margin-left: auto;
		margin-right: auto;
	}
	.testi-name {
		background-position: bottom;
	}
}

.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(--theme-color-3);
	border-radius: 5px;
	max-width: 480px;
	padding-top: 10px;
}
.footer-contact-wrap {
	width: calc(50% - 30px);
}
.footer-form-inner {
	padding: 20px 30px 30px;
}
@media (max-width: 767px) {
	.footer-logo img{
		width: 120px;
	}
	
	.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 .h2 {
	color: var(--color-primary);
	padding: 20px;
	margin-bottom: 0;
	font-size: 60px;
	font-weight: 600;
	line-height: 1;
}


.form-wrap{
	width: 800px;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	background-color: #FFF;
	padding: 15px;
}

.form-field {
	margin-bottom: 10px;
}
.form-field input,
.form-field textarea,
.form-field select {
	padding: 10px 20px;
	font-family: var(--font-custom);
	font-size: 20px;
	border: 2px solid #ccc;
	border-radius: 0;
	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;
}
.form-field label{
	text-transform: uppercase;
	display: block;
	margin-bottom: 6px;
}
.button-field {
	text-align: left;
	margin-bottom: 0;
}
.button-field input {
	width: auto;
	display: inline-block;
	padding: 15px 25px;
	font-family: var(--font-custom);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	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-primary);
	color: #fff;
	border-radius: 50px;
	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: 30px;
	font-weight: 700;
	color: var(--color-primary);
}
.info-box-text {
	overflow-wrap: anywhere;
}

.footer {
	border-top: 5px solid var(--color-secondary);
	color: #fff;
	font-size: 14px;
}
.footer-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	grid-row-gap: 30px;
}

.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;
}
.footer-copy, .footer-address{
	display: flex;
	flex-direction: column;
	justify-content: end;
}
.footer-address{
	margin-right: auto;
	margin-left: 80px;
}

@media (max-width: 767px) {
	.footer-inner{
		text-align: center;
	}
	.footer-col {
		width: 100%;
	}
	.footer-address .d-flex{
		display: block;
	}
	.footer-address{
		margin-left: 0;		
	}
}
.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;
}
	.mobile-button svg{
		width: 30px;	
		display: block;	
	}
.header-transparent:not(.sticky) .mobile-button {
	color: #fff;
}
@media (max-width: 767px) {
	.mobile-button {
		display: block;
		color: var(--color-primary);
		position: absolute;
		right: 20px;
	}
}
.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: -310px;
	width: 310px;
	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;
	}
}


img.size-full {
	border-radius: 20px;
}

.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;
	}
}

.beige-line {
	position: relative;
	padding-bottom: 15px;
}
.beige-line:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100px;
	height: 3px;
	background-color: #ccc;
}
.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;
}
.beige-line.green-line:after {
	background-color: #ccc;
}
.beige-line.top-line {
	padding-top: 15px;
	padding-bottom: 0;
}
.beige-line.top-line:after {
	top: 0;
	bottom: unset;
}

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, .6);
}
.cta-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	grid-row-gap: 30px;
	position: relative;
	text-align: center;
}
.cta-title {
	margin-bottom: 20px;
	font-family: var(--font-custom);
	font-size: 70px;
	font-weight: 700;
	line-height: 1;
}
.cta-text {
	font-size: 24px;
	max-width: 720px;
	margin: auto;
}
@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;
	}
}

.way-item {
	text-align: center;
}
.way-number {
	height: 150px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.way-title {
	margin-top: 20px;
	margin-bottom: 10px;
	color: var(--color-primary);
	font-family: var(--font-custom);
	font-size: 24px;
	font-weight: 600;
}

.started-item {
	text-align: center;
}
.started-number img {
	width: 70px;
}
.started-title {
	margin-top: 20px;
	margin-bottom: 10px;
	color: var(--color-primary);
	font-family: var(--font-custom);
	font-size: 24px;
	font-weight: 600;
	line-height: 1;
}

.financing img {
	margin: 10px 10px;
}

.addition-services-list {
	list-style: none;
	columns: 4;
	padding-left: 0;
	font-size: 16px;
}
.addition-services-list li:before {
	content: "\f00c";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: green;
	margin-right: 10px;
}
@media (max-width: 1024px) {
	.addition-services-list {
		columns: 3;
	}
}
@media (max-width: 767px) {
	.addition-services-list {
		columns: 1;
	}
}

.modula-item-content {
	overflow: hidden;
}

.visible-xs{
	display: none;
}
@media (max-width: 767px) {
	.hide-xs{
		display: none !important;
	}
	.visible-xs{
		display: block;
	}

}

/** WP BAKERY ADJUSTMENTS **/
.section-full-width{
    position: relative;
    width: 100%; /* Full width of the container */
    left: 0;
    right: 0;
    margin-left: calc(-50vw + 50%); /* Calculate the offset dynamically */
    margin-right: calc(-50vw + 50%); /* Calculate the offset dynamically */
    background-color: #f4f4f4; /* Example background color */
    z-index: 1; /* Ensure it sits above other elements if needed */
}

.section-full-width .vc_column_container>.vc_column-inner{
   padding-left: 0;
   padding-right: 0;
}
@media only screen and (max-width: 769px) {
	.swap-on-mobile {
		display: flex !important;
		flex-direction: column-reverse;
	}
}

/** MODULA **/
.fancybox__slide.has-vimeo .fancybox__content{
	height: 80vw !important;
}