/*
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: #A7479B !important;
	--color-secondary: #333;
	--color-orange: #A7479B;
	--color-black: #000;
	--color-gray: #f6f7fc;
	--theme-color-2: #19598E;
	--theme-color-3: #FAFAFA;
	--font-primary: "Lato", sans-serif;
	--font-custom: "Rubik", sans-serif;

	--theme-btn-fs: 20px;
	--theme-btn-radius: 10px;
	--theme-btn-fw: 500;
	--theme-btn-color: #FFF;
}

.text-primary {
	color: var(--color-primary);
}
.text-secondary {
	color: var(--color-secondary);
}
.text-orange {
	color: var(--color-orange);
}
.text-white {
	color: #fff;
}
.text-black{
	color: var(--color-black) !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);
}

.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 !important;
}
h3{
	color: var(--theme-color-2);
}
h3 b{
	font-weight: 500;
}

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: var(--color-black);
	font-family: var(--font-primary);
	font-size: 18px;
	line-height: 1.5;
	text-align: justify;
	overflow-x: hidden;
}
h1, .h1 {
	font-size: 60px;
}
h2, .h2 {
	font-size: 42px;
}
h3, .h3 {
	font-size: 24px;
}
h4, .h4 {
	font-size: 20px;
}
@media (max-width: 767px) {
	body{
		font-size: 14px;
		text-align: left;
	}
	h2, .h2 {
		font-size: 38px;
	}
	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;
}

.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;
}
.mr-auto{
	margin-right: auto !important;

}
.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: 1600px;
	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;
}
.fs-16{
	font-size: 16px;
}
.fs-14{
	font-size: 14px;
}

@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: #1E4C81;
	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;
}
.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 (max-width: 767px) {
	.header-logo {
		width: 240px;
	}
	.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;
}
.sub-menu  .sub-menu{
	left:0;
	transform: translateX(-100%);
	top: 0;
	width: 350px;

}
@media (min-width: 768px) {
	.sub-menu {
		width: 300px;
	}
	
}
@media screen and (min-width: 1920px) {
	.sub-menu .sub-menu{
		right: auto;
		left: 100%;
		transform: translateX(0);
	}
}
.menu  li:hover  > .sub-menu {
	visibility: visible;
	opacity: 1;
}
.sub-menu li{
	position: relative;
}
.sub-menu li a {
	display: block;
	padding: 10px 25px;
}
.sub-menu li a:hover {
	background-color: var(--theme-color-2);
	color: #fff;
}
@media (max-width: 767px) {
	.menu {
		font-size: 18px;
	}
	.menu > li > a {
		color: var(--color-orange) !important;
	}
	.sub-menu{
		width: auto !important;
	}
	.sub-menu  .sub-menu{
		left:0;
		position: static;
		margin-left: 10px;
		transform: translateX(0);
	}
}

.header-transparent:not(.sticky) .header {
	position: absolute;
	z-index: 3;
	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) .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: #fff;
	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,.wc-block-cart__submit-button {
	display: inline-block;
	padding: 15px 15px;
	font-family: var(--font-primary);
	font-size: var(--theme-btn-fs);
	font-weight: var(--theme-btn-fw);
	background: linear-gradient(to bottom,  #F08F82 0%, #A5479A 100%);
	color: var(--theme-btn-color);
	border-radius: var(--theme-btn-radius);
	text-transform: uppercase;
	cursor: pointer;
}
.sd-button:hover, .wc-block-cart__submit-button:hover {
	background: linear-gradient(to bottom, #A5479A  0%, #F08F82 100%);
}
.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: 970px;
}
.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: 55px;
	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.2) 0%, rgba(0,0,0,0.55) 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, 80vh, 970px);
	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,.page-header-bg .page-subtitle{
	color: #FFF !important;
	font-size: 5.625rem;
}
.page-header .page-title{
	font-size: 2.625rem;

}
	.page-header .page-subtitle{
		color: var(--color-black);
		font-size: 1.75rem;
	}


@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: 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: 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;
	background:url(../../uploads/2025/04/testimonials.jpg) center / cover rgba(0,0,0,.6);
	background-blend-mode: multiply;
	overflow: hidden;
	
}
@media screen and (min-width: 768px) {
	.testi-bg{
		padding-top: 130px;
		padding-bottom: 130px;
	}
}
.testi-bg

.testimonial {
	background-color: #fff;
	height: 100%;
	padding: 40px;
	border-radius: 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 {
	color: var(--theme-color-2);
	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-primary);
	font-size: 18px;
}
.testimonials .owl-stage,
.services-carousel .owl-stage {
	display: flex;
}
.testimonials .owl-item{
	padding: 0 15px;
}
.testimonials.owl-theme .owl-dots .owl-dot span {
	background-color: #FFFFFFA1;
}
.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: #FFF;
	text-shadow: 0 0 10px 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;
  }

.services-carousel{
	margin-bottom: 100px !important;
}
	.services-carousel .owl-item {
		padding: 0 15px 60px;
	}
	.services-carousel__item__image{
		margin-bottom: 20px;
	}
	.services-carousel__item,.services-carousel__item .service-title{
		text-align: center;
	}

.flip-card {
	background-color: transparent;
	width: 100%;
	height: 420px;
	perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	transition: transform 0.8s;
	transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
	transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden; /* Safari */
	backface-visibility: hidden;
}
.flip-card-back {
	height: 100%;
	background-color: #FAFAFA;
	padding: 20px;
	transform: rotateY(180deg);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@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: 30px 0;
	background: url(../../uploads/2024/12/footer-background.jpg) 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 {
	width: calc(35% - 30px);
	background-color: var(--theme-color-3);
	border-radius: 10px;
	max-width: 480px;
	overflow: hidden;
}
.footer-contact-wrap {
	width: calc(65% - 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 .h2 {
	color: #FFF;
	padding: 20px;
	margin-bottom: 0;
	font-size: 40px;
	font-weight: 600;
	line-height: .75;
}
.form-field {
	margin-bottom: 20px;
}
.form-field input,
.form-field textarea,
.form-field select {
	padding: 10px 20px;
	font-family: var(--font-primary);
	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;
	min-width: 160px;
	display: inline-block;
	padding: 15px 15px;
	font-family: var(--font-primary);
	font-size: var(--theme-btn-fs);
	font-weight: var(--theme-btn-fw);
	line-height: 1.5;
	border: none;
	background-color: var(--color-primary);
	color: var(--theme-btn-color);
	border-radius: var(--theme-btn-radius);
	transition: .2s;
	cursor: pointer;
	text-transform: uppercase;
}
.button-field input:hover {
	background-color: var(--theme-color-2);
	color:#FFF;
}
.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: center;
	}
	.info-box-row .info-box{
		width: 50%;
	}
}

.footer {
	border-top: 5px solid var(--color-secondary);
	background-color: var(--color-primary);
	color: #fff;
	position: relative;
	z-index: 2;
}
.footer::before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: no-repeat center left;
    background-size: auto 80%;
    background-image: url(../../../wp-content/uploads/2024/11/lear-logo-footer-white.svg);
    opacity: 0.05;
}

.footer-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	grid-row-gap: 30px;
}

/* .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;
}
.footer-address{
	margin-left: 100px;
	margin-right: auto;
}

@media (max-width: 767px) {
	.footer-col {
		width: 100%;
	}
	.footer .footer-menu-1 .menu{
		columns: 1;
	}
	.footer-address{
		margin-left: auto;
		margin-right: auto;
	}
}


.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: #FFF;
	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: 20px;
	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 **/


/** IMAGE CYCLE **/
.transformation-slider {
    height: 420px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}
	.transformation-slider__mask {
		position: absolute;
		top: 0;
		width: 140px;
		height: 100%;
		z-index: 9999;
	}
		.transformation-slider__mask.left {
			left: 0;
			/* background: #fff;
			background: linear-gradient(270deg, hsla(0, 0%, 100%, 0), #fff); */
		}
		.transformation-slider__mask.right {
			right: 0;
			/* background: #fff;
			background: linear-gradient(90deg, hsla(0, 0%, 100%, 0), #fff); */
		}
	.transformation-slider__content {
		width: 3270px;
		background-position: 50%;
		background-size: auto 100%;
		background-repeat: repeat-x;
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		transform: translateZ(0);
		animation: moveSlideshow 20s linear infinite;
	}				

@keyframes moveSlideshow {
	to {transform:translateX(-50%)}
}


/** MULTISTEP FORM **/
/* Service Selector */
#service-selector-wrap{
	padding: 40px;
	border-radius: var(--theme-btn-radius);
	background-color: rgba(0,0,0,.7);
	width: 100%;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}
#service-selector{
	display: flex;
 	--sc-height: 60px;
	position: relative;
	align-items: center;
	
}

#service-selector select{
	flex: 1;
	width: 100%;
	height: var(--sc-height);
	line-height: var(--sc-height);
	border-radius: var(--theme-btn-radius) 0 0 var(--theme-btn-radius);
	border:none;
	box-sizing: border-box;
	font-family: var(--font-primary);
	font-weight: 500;
	font-size: 20px;
	padding: 0 20px;
	outline: none !important;
    background: white;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M137.4 374.6c12.5 12.5 32.8 12.5 45.3 0l128-128c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8L32 192c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l128 128z"/></svg>'); 
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;

}
#service-selector button{
	flex:0;
	font-family: var(--font-primary);
	border: none;
	border-radius: 0 var(--theme-btn-radius) var(--theme-btn-radius) 0;
	color:#FFF;
	font-size: var(--theme-btn-fs);
	font-weight: var(--theme-btn-fw);
	line-height: var(--sc-height);
	height: var(--sc-height);
	padding: 0 30px;
	background: var(--color-primary);
	cursor: pointer;
	transition: all .3s ease;
	white-space: nowrap;
	text-transform: uppercase;
}
#service-selector button:hover{
	background-color: var(--color-secondary);
	color: var(--color-primary);
}

@media screen and (max-width: 767px) {
	#service-selector{
		display: block;
	}
	#service-selector select{
		border-radius:var(--theme-btn-radius)  var(--theme-btn-radius) 0 0 ;
	}
	#service-selector button{
		width: 100%;
		border-radius: 0 0 var(--theme-btn-radius)  var(--theme-btn-radius)  ;
	}

}

 /* Overlay */

 #step-indicator {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}


#form-lightbox {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	max-width: 800px;
	width: 90%;
	padding: 20px 20px 0;
	box-shadow: -1px 15px 33px 4px rgba(0, 0, 0, 0.15);
	position: relative;
}

#form-lightbox .step {
    display: none;
    text-align: center;
}

#form-lightbox  .wpcf7-form{
	display: flex;
	flex-direction: column;
}
#form-lightbox  .navigation {
    margin-top: 1rem;
    text-align: center;
	display: flex;
	margin-left: -20px;
	margin-right: -20px;
	background-color: var(--color-orange);
	order: 3;
    border-radius: 0 0 10px 10px; 
}
	#form-lightbox .navigation .next-step{
		margin-left: auto;
		border-bottom-right-radius: 10px; 
	}
	#form-lightbox .navigation .prev-step{
		margin-right: auto;
		border-bottom-left-radius: 10px; 
	}

#form-lightbox .navigation button,#form-lightbox .navigation input[type='submit'] {
    padding: 1rem;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    background-color: var(--color-orange);
    color: var(--theme-btn-color);
	width: 50%; 
	transition: all .3s ease;
}


#form-lightbox .navigation button:hover ,#form-lightbox .navigation input[type='submit']:hover{
	background-color: #2a2a2a;
	color: var(--color-orange);
}

#form-lightbox  button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#form-lightbox  button.error {
    border: 1px solid red;
}

#form-lightbox  textarea.error, input.error {
    border-color: red;
}

#form-lightbox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
}


#form-lightbox .wpcf7-form-control-wrap{
	display: block;
	width: 100%;
	max-width: 80%;
	margin: 0 auto 20px;
}
#form-lightbox .wpcf7-form-control-wrap.recaptcha{
	display: inline-block;
	width: auto;
}
#form-lightbox .wpcf7-form-control-wrap.wpcf7-checkbox-image-wrap{
	max-width: 100%;
}

	#form-lightbox .wpcf7-form-control-wrap input[type="text"],
	#form-lightbox .wpcf7-form-control-wrap input[type="email"],
	#form-lightbox .wpcf7-form-control-wrap textarea,
	#form-lightbox select {
		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-response-output{
	order: 2;
	margin-bottom: 1rem;
}
.validating  .wpcf7-response-output{
	display: none;
}

#form-container {
	text-align: center;
}
#form-container .step{
	max-height: 80vh;
	overflow-y: auto;
}

#close-lightbox {
	position: absolute;
	top: 10px;
	right: 10px;
	background: transparent;
	border: none;
	font-size: 1.5rem;
	color: #000;
	cursor: pointer;
}

#close-lightbox:hover {
	color: var(--color-primary);
}


.wpcf7-checkbox-image{
	display: grid;
	grid-template-columns: repeat(4, 1fr); 
	gap: 16px;
}


.wpcf7-checkbox-image .wpcf7-list-item{
	display: block;
	margin: 0;
}

.wpcf7-checkbox-image .wpcf7-list-item img {
    max-width: 100px;
    height: auto;
    display: block;
    margin: 0 auto 5px;
    border: 2px solid transparent;
	height: 70px;
	object-fit: contain;	
}

.wpcf7-checkbox-image .wpcf7-list-item label {
    cursor: pointer;
    display: block;
    text-align: center;
	margin: 0;
	padding: 10px;
	border: 1px solid #D4A65E;
	border-radius: 10px;	
	height: 100%;
	transition: all .3s ease;
	position: relative;
	user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
	line-height: 1;
}
.wpcf7-checkbox-image .wpcf7-list-item label:hover{
	background: #F9F9F9;
}
	.wpcf7-checkbox-image .wpcf7-list-item label:before{
		display: block;
		content: '';
		position: absolute;
		left: 10px;
		top: 10px;
		width: 20px;
		height: 20px;
		border: 1px solid #999;
		background: #FFF;
		box-sizing: border-box;
	}

.wpcf7-checkbox-image .wpcf7-list-item input {
    display: none;
}

.wpcf7-checkbox-image .wpcf7-list-item.selected label {
	background-color: #fbf7f1;
	border-color: #D4A65E;
}

	.wpcf7-checkbox-image .wpcf7-list-item.selected label:before{
		border-color: #1b1b1b;
	}

	.wpcf7-checkbox-image .wpcf7-list-item.selected label:after{
		display: block;
		content: '';
		position: absolute;
		left: 13px;
		top: 13px;
		width: 14px;
		height: 14px;
		background: #1b1b1b;
		box-sizing: border-box;
	}

@media screen and (max-width: 767px) {
	.wpcf7-checkbox-image{
		display: grid;
		grid-template-columns: repeat(2, 1fr); 
		gap: 16px;
	}
}

/** END OF MULTISTEP FORM **/


ul.list-boxed {
	--column-gap: 1rem;
	--columns: 4;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--column-gap);
	list-style: none;
	padding: 0;
	margin: 0;
  }

  ul.list-boxed li {
	width: calc((100% - (var(--columns) - 1) * var(--column-gap)) / var(--columns));
	padding: 5rem 1.5rem;
	min-height: 300px;
	background: linear-gradient(to bottom, #F08F82, #A5479A);
	border-radius: 12px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
	text-align: center;
	color: #333;
	font-weight: bold;
	box-sizing: border-box;
	z-index: 1;
  }

  ul.list-boxed li::before {
	content: "";
	position: absolute;
	inset: 4px;
	background: #FAFAFA;
	border-radius: 10px;
	z-index: -1;
  }

  ul.list-boxed li b{
	font-size: 1.5rem;
	color: var(--color-orange);
  }
  @media screen and (max-width: 767px) {
	ul.list-boxed li{
		width: 100%;
		justify-content: center;
	}
}

.products-grid{
	display: flex; 
	justify-content:center;
	flex-wrap: wrap;
	gap: 10px;
}
.products-grid .product-box{
	margin-left: 10px; margin-right: 10px;
}
.product-box {
   	background: linear-gradient(to bottom, #F08F82, #A5479A);
    padding: 20px;
	border-radius: 12px;
	max-width: 340px;
	text-align: center !important;
	margin: 20px auto;
	position: relative;
	z-index: 1;
}

	.product-box::before {
		content: "";
		position: absolute;
		inset: 4px;
		background: #FAFAFA;
		border-radius: 12px;
		z-index: -1;
	}

	.product-box__image{
		height: 200px;	
		border-radius: 12px;
		overflow: hidden;
		margin-bottom: 20px;
	}
	.product-box img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.product-box .sd-button{
		border: none;

	}

.wc-block-mini-cart__button svg *{
	fill:currentColor !important;
}
.wc-block-mini-cart__badge{
	background: var(--color-primary);
	color: #FFF;
	font-size: .675em !important;
}
.header-transparent:not(.sticky)	.wc-block-mini-cart__button {
	color: #FFF !important;
}	
.sticky  .wc-block-mini-cart__button {
	color: #000 !important;
}
@media screen and (max-width: 767px){
	.header-widget-area{
		margin-left: auto;
	}
	.products-grid{
		flex-direction: column;
	}
}


.section-app{
	width: 100vw;margin-left: calc(-50vw + 50%); background: url(../../uploads/2025/05/app1-2000.png) center top no-repeat; background-size: cover; padding: 20vw 0 10vw;
}
@media screen and (max-width: 767px) {
	.section-app{

		background-image: url('../../uploads/2025/05/img-v2-8.webp');
	}
	.section-app .col-6{
		width: 50%;

	}
}