/*
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
*/

:root {
	--color-primary: #61684A !important;
	--color-secondary: #333;
	--color-orange: #61684A;
	--color-black: #000;
	--color-gray: #f6f7fc;
	--theme-color-2: #1b1b1b;
	--theme-color-3: #FDFDFE;
	--font-primary: "Barlow", sans-serif;
	--font-custom: "EB Garamond", sans-serif;

	--theme-btn-fs: 27px;
	--theme-btn-radius: 200px;
	--theme-btn-fw: 500;
	--theme-btn-color: var(--theme-color-2);
}

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

.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(--theme-color-3);
}
.bg-color-2{
	background-color: var(--theme-color-2);
}
.bg-color-3{
	background-color: var(--theme-color-3);
}
.bg-leaf{
	background-repeat: no-repeat;
	background-size: auto 110%;
	background-image: url(images/leaf.svg);
	background-position: left -25%  center;

}

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

* {
	box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-primary);
	/*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 !important;
}
.font-semibold {
	font-weight: 500 !important;
}
.font-medium {
	font-weight: 500 !important;
}

body {
	color: var(--theme-color-2);
	font-family: var(--font-primary);
	font-size: 20px;
	line-height: 1.5;
	text-align: justify;
}
h1, .h1 {
	font-size: 60px;
}
h2, .h2 {
	font-size: 38px;
}
h3, .h3 {
	font-size: 36px;
}
h4, .h4 {
	font-size: 20px;
}
@media (max-width: 767px) {
	body{
		font-size: 14px;
		text-align: left;
	}
	h2, .h2 {
		font-size: 32px;
	}
	h3,.h3{
		font-size: 28px;
	}
	h4, .h4 {
		font-size: 18px;
	}
}

.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;
}
.mt-80{
	margin-top: 80px;
}
.mb-80{
	margin-bottom: 80px;
}
.pt-15 {
	padding-top: 15px;
}
.pb-15 {
	padding-bottom: 15px;
}

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

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


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

.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;
}
	.container > .vc_column-inner{
		margin-left: -15px;
		margin-right: -15px;
		width: 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;
}

.fs-24{
	font-size: 24px;
}

@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: #1b1b1b;
/* 	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-primary);
	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;
	align-items: center;
	padding-top: 10px;
	padding-bottom: 10px;
	justify-content: center;
}
.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-top: 10px;
	padding-bottom: 10px;
	background-color: var(--color-primary);
}
.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-nav{
	margin-left: auto;
	margin-right: 15px;
}
@media screen and (min-width: 980px) {
	.header-logo{
		margin-left: 50%;
	}
}

@media (max-width: 767px) {
	.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: 18px;
}
.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: 20px;
}
.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;
}
.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: 3;
	width: 100%;
/* 	background-color: rgba(0, 0, 0, .8); */
	border-bottom: none;
	margin-top: 50px;
}
.header-transparent:not(.sticky) .logo-main {
	display: none;
}
.header-transparent:not(.sticky) .logo-white {
	display: inline;
}
.header-transparent:not(.sticky) .header .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:var(--color-primary);
	border-bottom-color: var(--color-secondary);
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
.sticky:not(.header-transparent) {
	padding-top: 213px;
}
@media (max-width: 767px) {
	.sticky:not(.header-transparent) {
		padding-top: 111px;
	}
}

.sd-button
,.button-field input[type=submit]
,input.wpcf7-submit[type=submit] {
	cursor: pointer;
	font-family: var(--font-primary);
	font-size: var(--theme-btn-fs);
	font-weight: var(--theme-btn-fw);
	line-height: 1;
	text-transform: uppercase;
	background-color: var(--color-primary);
	color: #fff;
	padding: 20px 40px;
	min-width: 290px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: var(--theme-btn-radius);
	white-space: nowrap;
	border: 4px solid var(--color-primary);

}
.sd-button:hover
,.button-field input[type=submit]:hover
,input.wpcf7-submit[type=submit]:hover
{
	background-color: #fff;
    color: var(--color-primary);
}
.sd-button.sd-white {
	background-color: #fff;
	color: var(--color-primary);
}
.sd-button.sd-white:hover {
	background-color: var(--color-primary);
	color: #fff;
}

	.sd-button i {
		margin-right: 5px;
	}

@media (max-width: 767px) {
	.sd-button
	,.button-field input[type=submit]
	,input.wpcf7-submit[type=submit]{
		font-size: 18px;
		min-width: 200px;
		padding: 12px 20px;
	}

}

.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 {
	min-height: 70vh !important;
	height: auto !important;
}
.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: 80px;
	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;

	}
	.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,.page-header-bg::before {
	content: "";
	position: absolute;
	display: block !important;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .6);
	z-index: 0;
}

.banner-section.black-overlay:before, .page-header-bg::before{
	background: rgba(0, 0, 0, .4);
    background: linear-gradient(0deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 100%);
}

.top-section {
	background-color: var(--color-gray);
}


.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;
	position: relative;
}
.page-header-bg .container{
	position: relative;
	z-index: 1;
}
.page-header-bg h1{
	color: #FFF !important;
	font-size: 5.625rem;
}


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

	.page-header-bg h1{
		font-size: 3rem;
		line-height: 1em;
	}
}

.service-box {
	text-align: center;
	padding: 0 20px;
}
.service-image {
	display: inline-block;
	/*width: 370px;
	height: 370px;*/
	border-radius: 40px;
	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: 36px;
	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;
	overflow: hidden;
	
}
@media screen and (min-width: 768px) {
	.testi-bg{
		padding-top: 130px;
		padding-bottom: 130px;
	}
}
.testi-bg

.testimonial {
	border-radius: 40px;
	border: 3px solid var(--color-primary);
	padding: 50px 20px;
	text-align: center;
}
.testi-meta {
	text-align: center;
}
.testi-image {
	width: 70px;
	height: 70px;
	border-radius: 100px;
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
}

.testi-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.testi-rating{
	margin: 10px auto;
	text-align: center;
}
.testi-rating img{
	width: auto !important;
	margin-left:auto;
	margin-right: auto;
}
.testi-name {
	font-size: 28px;
	padding-bottom: 30px;
	font-weight: 700;
	font-style: italic;

}
.testi-text {
	margin-top: 20px;
	text-align: center;
	font-size: 24px;
}
.testimonials .owl-stage {
	display: flex;
}
.testimonials .owl-item {
	padding: 0 15px;
}
.testimonials.owl-theme .owl-dots .owl-dot span {
	background-color: #ccc;
}
.testimonials.owl-theme .owl-dots .owl-dot.active span,
.testimonials.owl-theme .owl-dots .owl-dot:hover span {
	background-color: var(--color-orange);
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
	font-size: 60px;
	line-height: 1;
	color: #61684A77 ;
	/* text-shadow: 0 0 5px rgba(0,0,0,0.8); */
}
.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
	background-color: transparent;
	color: var(--color-primary);
}
.owl-dots{
	margin-top: 30px;
}
.owl-nav {
	position: absolute;
	width: 200px;
	bottom: -18px;
	left: 50%;
    transform: translateX(-50%);
	display: flex;
	justify-content: space-between;
	pointer-events: none;
  }
  
  .owl-nav .owl-prev, 
  .owl-nav .owl-next {
	text-align: center;
	border-radius: 50%;
	pointer-events: all;
	cursor: pointer;
  }
  
  .owl-nav .owl-prev {
	margin-left: -25px !important;
  }
  
  .owl-nav .owl-next {
	margin-right: -25px !important;
  }

@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;
	}
	.testi-text{
		font-size: 16px;
	}

	.owl-nav .owl-prev {
		margin-left: -10px !important;
	  }
	  
	  .owl-nav .owl-next {
		margin-right: -10px !important;
	  }
}

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

.footer-quote-wrap {
	padding: 80px 0;
	background: url(../../uploads/2025/09/footer_bg.png) no-repeat center bottom / cover;
}
.footer-quote-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	grid-row-gap: 30px;
}
.footer-form-wrap {
	background-color: #FFFFFFF2;
	border-radius: 20px;
	max-width: 1100px;
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
	padding: 60px;
}
.footer-contact-wrap {
	width: calc(65% - 30px);
}
@media (max-width: 767px) {
	.footer-form-wrap{
		padding: 30px;

	}
	.footer-form-wrap,
	.footer-contact-wrap {
		width: 100%;
	}
	.footer-form-wrap .h2,
	.footer-contact-wrap .h2 {
		font-size: 28px !important;
	}
}
.footer-form-wrap .h2 {
	color: var(--color-primary);
	margin-bottom: 0.5em;
	font-size: 42px;
	font-weight: 500;
	line-height: 1;
}
.form-field {
	margin-bottom: 20px;
}
.form-field input:not([type="submit"]),
.form-field textarea,
.form-field select {
	padding: 10px 20px;
	font-family: var(--font-primary);
	font-size: 20px;
	border: 1px solid #C6C6C6;
	border-radius: 10px;
	color: #706F6F;
	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: #706F6F;
}
.form-field select {
	padding-left: 15px;
}
.form-field textarea {
	height: 120px;
}
.button-field {
	text-align: center;
	margin-bottom: 0;
}
.wpcf7-spinner {
	position: absolute;
	margin: 0;
}
.wpcf7 form.sent .wpcf7-response-output {
	text-align: center;
	/* background: #1c1c1c; */
	border: 2px solid var(--color-orange);
	color: var(--color-orange);
	font-size: 17px;
	padding-top: 10px;
	padding-bottom: 10px;
}


.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-primary);
	font-size: 30px;
	font-weight: 700;
	color: var(--color-primary);
}
.info-box-text {
	overflow-wrap: anywhere;
}

@media screen and (min-width: 768px){
	.info-box-row{
		display: flex;
		justify-content: space-between;
	}
	.info-box-row .info-box{
		width: 33%;
	}
}

.footer {
	background-color: var(--color-primary);
	color: #fff;
	position: relative;
	z-index: 2;
}

.footer-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 80px;
}

/* .footer-col{
	width: 25%;
} */


.footer .menu{
	display: block;
}
	.footer .menu li{
		margin: 0 0 10px 0;
		border: none !important
	}
	.footer .menu > li > a{
		padding:0;
		font-size: 20px;
		text-transform: none;
	}
	.footer .menu > li > a:hover{
		color: var(--color-primary);
	}
	
.footer .footer-menu-1 .menu{
	columns: 2;
}

@media (max-width: 767px) {
	.footer-inner{
		gap: 40px;
	}
	.footer-col {
		width: 100%;
		text-align: center;
	}
	.footer .footer-menu-1 .menu{
		columns: 1;
	}
}


.footer-map iframe {
	max-width: 100%;
	width: 320px;
	height: 200px;
}
.footer-heading {
	font-family: var(--font-primary);
	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;
}

.icon-box {
	display: flex;
	margin-bottom: 10px;
	line-height: 1;
}
.icon-box-icon {
	width: 20px;
	text-align: center;
	margin-right: 10px;
}

	.footer .icon-box{
		margin-bottom: 16px;
	}
	.footer .icon-box p{
		line-height: 1.25;
		text-align: left;
	}
	.footer .icon-box-icon{
		font-size: 20px;
	}

.icon-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr); 
	gap: 20px;
}


.icon-grid-item{
	text-align: center;
	background-color: #FFF;
	border-radius: var(--theme-btn-radius);
	padding: 30px;
}	
.icon-grid-item .h4{
	font-family: var(--font-custom);
	color: var(--color-orange);
	font-size: 34px;
	font-weight: 400;
	margin-bottom: 0;
	text-transform: uppercase;
}
.icon-grid-icon{
	width: 100px;
	height: 100px;
	border-radius: 100px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 60px;
	color: var(--color-blue);
}

@media screen and (max-width: 767px){
	.icon-grid{
		grid-template-columns: 1fr; 
	}
	.icon-grid-item .h4{
		font-size: 26px;
	}
}


.bottombar {
	padding: 15px 0;
	color: #1c1c1c;
	font-size: 16px;
}
.bottom-link {
	text-align: right;
}
	.bottom-link a:hover{
		color: #FFF;
	}
@media (max-width: 767px) {
	.bottombar {
		padding-bottom: 60px;
		font-size: 16px;
	}
	.bottombar .row {
		grid-row-gap: 10px;
		display: block;
	}
	.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: -310px;
	width: 310px;
	max-width: 100%;
	height: 100%;
	padding-bottom: 50px;
	overflow-x: hidden;
	overflow-y: auto;
	background-color: #FFF;
	color: var(--theme-color-2);
	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(0, 0, 0, 0.1);
	}
	.menu > li > a {
		padding: 10px 25px;
		color: var(--theme-color-2);
	}
	
	.footer .menu > li > a {
		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, .wpb_single_image .vc_single_image-wrapper.vc_box_rounded img {
	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;
	border-radius: 20px;
	background-image: url(images/blueprint.png);
}
/* .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;
	padding-left: 40px;
	padding-right: 40px;
}
.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;
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}
	.cta-content {
		padding-right: 0;
		text-align: center !important;
	}
	.cta-title {
		font-size: 40px;
	}
	.cta-button {
		margin-top: 20px;
		text-align: center !important;
	}
}

.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 ,.financing-inline img {
	margin: 10px 10px;
}
.financing-inline{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;

} 
.financing-inline img{
	width: 30%;
	height: auto !important;
}

@media screen and (max-width: 767px) {
	.financing img ,.financing-inline img{
		margin: 0;
		width: 49%;
	}
}

.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 {
	border-radius: 10px;
	overflow: hidden;
}

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

}

/** WP BAKERY ADJUSTMENTS **/
.wpb-content-wrapper{
	padding-left: 15px;
	padding-right: 15px;
}
@media only screen and (max-width: 769px) {
	.swap-on-mobile {
		display: flex !important;
		flex-direction: column-reverse;
	}
}

/** SCROLL DOWN ARRROW **/
.scroll-button {
	content: "";
    position: absolute;
    left: 50%;
    margin-left: -100px;
	margin-bottom: -2px;
    bottom: 0;
    width: 200px;
    height: 61px;
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 394.7 121.9'%3E%3Cpath fill='%23FFF' d='M.7,121.3c1.4-.1,2.7-.3,4-.4,24.3-3.7,50-13.7,69.2-29.7,5.1-4.2,10.7-9.6,16.7-16,19.1-20.2,29.9-32.2,46.6-46.9C152.6,14.6,171.4,3,191.9.4c21.1-2.7,42.5,8.2,58.9,21.3,10.2,8.2,20.2,17.6,30.1,28.2,16.8,18.2,25.6,28.7,40.1,41.3,19.3,16.7,47.8,27,73.5,30.2.3,0,.3,0,0,.1-1.4.2-2.6.3-3.8.3-128.6,0-257.2,0-385.8,0-1.6,0-3-.1-4.2-.3-.9-.1-.9-.2,0-.3Z'/%3E%3C/svg%3E");
    background-size: 200px 61px;
	padding-top: 20px;
	text-align: center;
	cursor: pointer;
	transition: .2s;
	color: var(--color-orange);
}
.home .scroll-button{
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 394.7 121.9'%3E%3Cpath fill='%23FAFAFA' d='M.7,121.3c1.4-.1,2.7-.3,4-.4,24.3-3.7,50-13.7,69.2-29.7,5.1-4.2,10.7-9.6,16.7-16,19.1-20.2,29.9-32.2,46.6-46.9C152.6,14.6,171.4,3,191.9.4c21.1-2.7,42.5,8.2,58.9,21.3,10.2,8.2,20.2,17.6,30.1,28.2,16.8,18.2,25.6,28.7,40.1,41.3,19.3,16.7,47.8,27,73.5,30.2.3,0,.3,0,0,.1-1.4.2-2.6.3-3.8.3-128.6,0-257.2,0-385.8,0-1.6,0-3-.1-4.2-.3-.9-.1-.9-.2,0-.3Z'/%3E%3C/svg%3E");
}
.scroll-button:hover {
	color: var(--color-primary);
}

/*
.scroll-down-wrap {
	width: fit-content;
    margin-inline: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
    z-index: 2;
}
.home .scroll-down-wrap{
	bottom: -400px;
}
.scroll-down label {
    font-size: 0!important;
    width: 100%;
    height: 100%;
    position: relative!important;
    display: block;
    cursor: initial !important;
	animation: arrow_pulse 2s infinite;	
}
.scroll-down label:hover{
	animation-play-state: paused;	
	opacity: 1 !important;
}
.scroll-down label:before {
	border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    content: "";
    display: block;
    height: 1.25rem;
    width: 1.25rem;
    left: 50%;
    position: absolute;
    top: 0%;
    transform: translate(calc(-50% + 2px), -50%) rotate(-45deg) skew(4deg, 4deg);
	-webkit-transform: translate(calc(-50% + 2px), -50%) rotate(-45deg) skew(4deg, 4deg);
	-moz-transform: translate(calc(-50% + 2px), -50%) rotate(-45deg) skew(4deg, 4deg);
	-o-transform: translate(calc(-50% + 2px), -50%) rotate(-45deg) skew(4deg, 4deg);
	cursor: pointer;
}
.scroll-down label:hover:before{
	border-bottom: 2px solid var(--color-orange);
    border-left: 2px solid var(--color-orange);
}


@keyframes arrow_pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}
@media screen and (max-width: 767px) {
	.scroll-down-wrap{
		bottom: -140px;
	}
}
*/

/** FAQS **/

.faq-item {
	margin-top: 10px;
}
.faq-question {
	background-color: var(--theme-color-2);
	padding: 20px 60px 20px 20px;
	margin-bottom: 0;
	font-weight: 400;
	text-align: left;
	position: relative;
	cursor: pointer;
	border-radius: 8px;
	color: #FFF;
}
	.active .faq-question{
		border-radius: 8px 8px 0 0;
	}
.faq-question:after {
	content: "\f107";
	position: absolute;
	right: 20px;
	top: 20px;
	color: var(--color-orange);
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}
.faq-answer {
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	max-height: 0;
	overflow: hidden;
	transition: max-height .2s, padding .2s;
	border-radius: 0 0 8px 8px;
	background: #FFF;
}
.active .faq-answer {
	padding-top: 20px;
	padding-bottom: 20px;
	max-height: 1000px;
	border: 1px solid #E9E8E8;
}
/** END OF FAQS **/
/** SD COUNTER **/
.sd-counter {
	text-align: center;
	font-size: 4.375rem;
	line-height: 1;
	color: var(--color-primary);
	font-family: var(--font-custom);
}
/** END OF SD COUNTER **/

/** Grid card **/
.grid-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem; 
}
	.grid-card__card{
		border-radius: 40px;
		border: 3px solid var(--color-primary);
		padding: 50px 20px;
		text-align: center;
	}
	.grid-card__title{
		font-size: 30px;
		font-weight: 700 !important;
		font-family: var(--font-primary) !important;
		margin-bottom: 0.5em;
		text-align: center;
	}
	.grid-card__content{
		font-size: 18px;
	}

@media (min-width: 768px) {
  .grid-card {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-card__content{
		font-size: 24px;
	}
}



/** From Global css **/
.home .banner-title,
.banner-form-title,
h1,h2,h3,h4,h5,h6,
.h2,
.cta-title,
.started-title,
.info-box-heading,
.footer-heading,
.service-title,
.header-box-text,
html .header-box-title,
.page-header .banner-title
{
	font-family: var(--font-custom), sans-serif!important;
}
html .menu > li > a {
	font-family: var(--font-primary), sans-serif!important;
}

html .service-title,
html .footer-heading {
	font-weight: 400;
	font-size: 55px;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h2 {
	font-weight: 400!important;
}

html .header-bottom
{
    background-color: var(--theme-color-2);
}

html .info-box-icon-inner,
html .bottombar {
	background-color: var(--color-primary);
}


html .beige-line.top-line,
html .started-title {
    color: var(--theme-color-2);
	font-weight: 400;
}
html .cta-title {
	font-weight: 400;
}
html .beige-line:after,
html .beige-line.top-line:after,
html .header-box-icon
 {
	background-color: #1D1D1B;
}
html .header {
	border-bottom-color:  var(--color-primary);
}
html .info-box-heading
{
	color: var(--theme-color-2);
	font-weight: 400;
}
html .testi-name:before,
html .banner-form-title,
html .header-box-title {
	color: var(--color-primary);
}
html .home .banner-title,
html .banner-form-title {
	font-weight: 400;
}
html #our-services{
	overflow: hidden;
}
html #gallery .row.justify-center > div,
html #our-services .row.justify-center > div {
	padding: 0 5px;
}
html #gallery .row,
html #our-services .row
{
	margin-left: -5px;
	margin-right: -5px;
}
html #gallery .row.justify-center > div > .service-box,
html #our-services .row.justify-center > div > .service-box {
    padding: 0 3px;
}

@media screen and (max-width: 767px){
	html .service-title,
	html .footer-heading{
		font-size: 40px;
	}
	
}


.mirrored {
	transform: scaleX(-1);
}

/* .button-field  */
.btns .btn-transparent {
	background: #59644b60;
	color: white;
}
.banner-content .title2 {
	font-size: 36px;
	line-height: 1.2em;
	margin: 15px 0;
}
.banner-content .btns {
	margin: 20px 0;
	display: flex;
	justify-content: center;
}
.logos {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.logos img {
	border-radius: 0 !important;
	max-width: 140px;
	filter: brightness(0) invert(1) contrast(100%);
	
}
.birthday {
	display: flex;
	justify-content: space-between;
	margin: 0 10% 10px;
	
}
#form-lightbox .birthday .wpcf7-form-control-wrap {
	width: 30%;
	margin: 0;
}

#form-lightbox .wpcf7-tel {
	width: 100%;
	border: 2px solid #cccccc;
    border-radius: 8px;
    padding: 10px 20px;
    min-height: 50px;
    font-size: 16px;
    font-family: var(--font-primary);
}
/* #form-lightbox .wpcf7-submit {
	border: 2px solid #cccccc;
	border-radius: 8px;
	padding: 10px;
	width: 80%;
	margin: 0 auto;
	margin-bottom: 20px;
	font-size: 20px;
	line-height: 1.5;
} */
.form-title {
	font-weight: bold;
	font-size: 20px;
	max-width: 80%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 5px;
	margin-top: 15px;
	text-align: left;
}
#form-lightbox #form-container{
	padding-bottom: 30px;
}
.input-required {
	color: red;
	font-weight: 300;
	font-size: 14px;
	font-style: italic;
	margin-left: 10px;
}
.p1-checkmarks .p1 {
    line-height: 1.2;
}
.p1-checkmarks .p1:before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    width: 20px;
    height: 20px;
    color: var(--color-orange);
    font-size: 20px;
    display: inline-block;
    text-rendering: auto;
    font-weight: 900;
    margin-right: 5px;
}
.form-thank {
    font-size: 32px;
    height: 200px;
    display: flex
;
    align-items: center;
    justify-content: center;
}
#form-lightbox .wpcf7 form.sent .wpcf7-response-output {
    background: var(--color-orange);
    color: #fff;
}
.navigation span.wpcf7-spinner {
    margin-top: 18px;
    margin-left: 5px;
}
@media screen and (max-width: 767px) {
	.banner-content .title2{
		font-size: 20px;
	}
}