/*view more portfolio */
/* Container must be relative for the absolute overlay */
.row-portfolio-list .porfolio-list .elementor-post__thumbnail__link {
	position: relative;
	display: block;
	overflow: hidden;
}

/* The Overlay */
.row-portfolio-list .porfolio-list .custom-view-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0);
	/* Transparent by default */
	display: flex;
	justify-content: center;
	align-items: center;
	transition: background-color 0.4s ease;
	z-index: 10;
	pointer-events: none;
	/* Clicking the button clicks the link */
}

/* The View More Button */
.row-portfolio-list .porfolio-list .custom-view-btn {
	padding: 12px 24px;
	border: 1px solid #ffffff;
	color: #ffffff;
	font-family: inherit;
	/* Inherits your site font */
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(15px);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(2px);
	/* Subtle glass effect */
	pointer-events: auto;
	cursor: pointer;
}

/* Hover States */
.row-portfolio-list .porfolio-list .elementor-post__thumbnail__link:hover .custom-view-overlay {
	background-color: rgba(0, 0, 0, 0.3);
	/* Dim the image */
}

.row-portfolio-list .porfolio-list .elementor-post__thumbnail__link:hover .custom-view-btn {
	opacity: 1;
	transform: translateY(0);
}

/* Optional: Subtle image zoom on hover */
.row-portfolio-list .porfolio-list .elementor-post__thumbnail img {
	transition: transform 0.8s ease !important;
}

.row-portfolio-list .porfolio-list .elementor-post__thumbnail__link:hover img {
	transform: scale(1.08);
}

.row-portfolio-list .porfolio-list .custom-view-btn:hover {
	background-color: #FFA38B;
	border-color: #FFA38B;
}

/*end view more */
/*privacy table */
/* --- Desktop Styling (Matches your Image) --- */
.row-pp-tc .privacy-content table[width="612"] {
	width: 100% !important;
	/* Overrides fixed width for fluid containers */
	max-width: 100%p;
	/* Keeps original size on large screens */
	border-collapse: collapse !important;
	border: 1px solid #000 !important;
	font-family: "Radikal", Montserrat, Sans-serif;
	font-size: 14px;
	margin: 20px 0;
}

/* Base cell styling */
.row-pp-tc .privacy-content table[width="612"] td {
	border: 1px solid #000 !important;
	padding: 15px !important;
	vertical-align: top !important;
	line-height: 1.5;
}

/* Left Column (Grey Labels) */
.row-pp-tc .privacy-content table[width="612"] td:first-child {
	background-color: #d9d9d9 !important;
	font-weight: bold !important;
	width: 22% !important;
	font-size: 20px;
	font-size: 1.25rem;
	/* Overrides the width="159" */
}

/* Right Column (White Content) */
.row-pp-tc .privacy-content table[width="612"] td:last-child {
	background-color: #ffffff !important;
	width: 78% !important;
	/* Overrides the width="453" */
}

/* Paragraph spacing inside cells */
.row-pp-tc .privacy-content table[width="612"] p {
	margin: 0 0 12px 0 !important;
}

.row-pp-tc .privacy-content table[width="612"] p:last-child {
	margin-bottom: 0 !important;
}

/* --- Mobile Responsiveness --- */
@media screen and (max-width: 600px) {
	.row-pp-tc .privacy-content table[width="612"] {
		display: block !important;
	}

	.row-pp-tc .privacy-content table[width="612"] tbody,
	.row-pp-tc .privacy-content table[width="612"] tr {
		display: block !important;
		width: 100% !important;
	}

	.row-pp-tc .privacy-content table[width="612"] td {
		display: block !important;
		width: 100% !important;
		box-sizing: border-box !important;
	}

	/* Styling tweak for stacked look */
	.row-pp-tc .privacy-content table[width="612"] td:first-child {
		border-bottom: none !important;
		/* Merges the label with the description */
		padding-bottom: 8px !important;
		width: 100% !important;
	}

	.row-pp-tc .privacy-content table[width="612"] td:last-child {
		padding-top: 0 !important;
		/* Pulls text closer to its label */
		margin-bottom: 10px;
		/* Space between different cookie sections */
		width: 100% !important;
	}
}


/* ===== Universal Marquee CSS (works for 7/5/3 per view etc) ===== */

/* Your containers (label + marquee) */
.logos-cont,
.partners-cont {
	display: flex;
	align-items: center;
	gap: 32px;
}

/* Label */
.logos-cont .elementor-widget-text-editor,
.partners-cont .elementor-widget-text-editor {
	flex: 0 0 auto;
	white-space: nowrap;
}

/* Viewport */
.logos-viewport {
	flex: 1 1 auto;
	overflow: hidden;
	min-width: 0;
	width: 100%;
	position: relative;
}

/* Track */
.logos-track {
	display: flex;
	flex: 0 0 100%;
	align-items: center;
	flex-wrap: nowrap;
	width: 100%;
	min-width: 100%;
	will-change: transform;
	gap: var(--gap, 24px);
	animation: logosMarquee var(--marquee-duration, 24s) linear infinite;
}

/* Slots = N per view */
.logos-track>.elementor-widget-image {
	flex: 0 0 calc((100% - (var(--gap, 24px) * (var(--cols, 5) - 1))) / var(--cols, 5));
	max-width: calc((100% - (var(--gap, 24px) * (var(--cols, 5) - 1))) / var(--cols, 5));
}


/* Logo scaling */
.logos-track>.elementor-widget-image img {
	width: 70%;
	height: var(--logo-h, 52px);
	object-fit: contain;
	display: block;
}

.logos-cont {
	--cols: 7;
	--gap: 48px;
	--logo-h: 52px;
}

.partners-cont {
	--cols: 5;
	--gap: 24px;
	--logo-h: 52px;
}

/* Animation */
/* to the left 
@keyframes logosMarquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-1 * var(--marquee-distance, 800px)));
	}
}

*/

@keyframes logosMarquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-1 * var(--marquee-distance)));
	}
}

/* ===== Responsive rules ===== */

/* Tablet */
@media (max-width: 1024px) {
	.logos-cont {
		--cols: 5;
		--gap: 32px;
		--logo-h: 44px;
	}

	.partners-cont {
		--cols: 4;
		--gap: 20px;
		--logo-h: 44px;
	}
}

/* Mobile */
@media (max-width: 767px) {

	.logos-cont,
	.partners-cont {
		flex-direction: column;
		align-items: flex-start;
		--gap: 14px;
		--logo-h: 44px;
	}

	/* Bigger logos: fewer per row */
	.logos-cont {
		--cols: 2;
		--gap: 14px;
		--logo-h: 44px;
	}

	.partners-cont {
		--cols: 2;
		--gap: 12px;
		--logo-h: 44px;
	}

	.logos-viewport {
		width: 100%;
	}
}

@media (max-width: 580px) {

	.logos-cont,
	.partners-cont {
		--cols: 2 !important;
		--gap: 16px !important;
		--logo-h: 48px !important;
	}
}


body {
	margin: 0 !important;
	padding: 0 !important;
}

/* styles.css animation 
@keyframes fadeUp {
	0% {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}

	100% {
		opacity: 1;
		transform: none;
	}
}

@keyframes fadeRight {
	0% {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}

	100% {
		opacity: 1;
		transform: none;
	}
}

@keyframes fadeLeft {
	0% {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}

	100% {
		opacity: 1;
		transform: none;
	}
}

@keyframes heartbeat {

	0%,
	100% {
		transform: scale(1);
	}

	10% {
		transform: scale(1.1);
	}

	20% {
		transform: scale(1.05);
	}

	30% {
		transform: scale(1.1);
	}

	40% {
		transform: scale(1);
	}
}

.heartbeat {
	animation-name: heartbeat;
	animation-duration: 2s;
	animation-fill-mode: both;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
}

.fadeUp {
	opacity: 1;
	visibility: visible;
	animation-name: fadeUp;
	animation-duration: 1s;
	animation-fill-mode: both;
	transition: opacity 0.5s ease;
}

.fadeRight {
	opacity: 1;
	visibility: visible;
	animation-name: fadeRight;
	animation-duration: 1s;
	animation-fill-mode: both;
	transition: opacity 0.5s ease;
}

.fadeLeft {
	opacity: 1;
	visibility: visible;
	animation-name: fadeLeft;
	animation-duration: 1s;
	animation-fill-mode: both;
	transition: opacity 0.5s ease;
}
*/

/*css for toggle button on joinery estimating plan */
.elementor .row-plan .plan-cont.pricing-set {
	display: none;
}

.elementor .row-plan .plan-cont.pricing-set.is-active {
	display: grid;
}

/* Toggle bar layout */
.billing-toggle {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 520px;
	max-width: 32.5rem;
	padding: 6px;
	padding: 0.375rem;
	border: 1px solid #d6d6d6;
	border-radius: 999px;
	border-radius: 62.4375rem;
	background: #fff;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
	box-shadow: 0 0.375rem 1.125rem rgba(0, 0, 0, .06);
}

/* Make buttons equal halves */
.billing-toggle .toggle-btn {
	flex: 1 1 50%;
	text-align: center;
	appearance: none;
	border: 0;
	background: transparent;
	padding: 12px 18px;
	padding: 0.75rem 1.125rem;
	border-radius: 999px;
	border-radius: 62.4375rem;
	cursor: pointer;
	font-weight: 700;
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 1;
	color: #111;
	position: relative;
	z-index: 2;
	transition: background-color .2s ease, color .2s ease;
	min-width: 110px;
	min-width: 6.875rem;
}

/* Active pill */
.billing-toggle .toggle-btn.is-active {
	background: #FFA38B;
	color: #000;
}

/* Hover */
.billing-toggle .toggle-btn:not(.is-active):hover {
	background: rgba(0, 0, 0, .04);
}

/* Make the badge anchor to the Annually button */
.billing-toggle .toggle-btn[data-billing="annual"] {
	position: relative;
}

/* SAVE badge on the seam */
.billing-toggle .toggle-save {
	position: absolute;
	top: -10px;
	top: -0.625rem;
	left: 75%;
	transform: translateX(-50%);
	background: #FFA38B;
	color: #000000;
	font-weight: 700;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: 5px 10px;
	padding: 0.3125rem 0.625rem;
	border-radius: 6px;
	border-radius: 0.375rem;
	box-shadow: 0 6px 14px rgba(0, 0, 0, .12);
	box-shadow: 0 0.375rem 0.875rem rgba(0, 0, 0, .12);
	white-space: nowrap;
	z-index: 5;
}

/* Optional: centre the whole widget */
.billing-toggle-wrap {
	display: flex;
	justify-content: center;
}


/*woocommerce */
a.wc-block-components-checkout-return-to-cart-button {
	display: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active>a {
	color: #FFA38B;
	font-weight: 400;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
	color: #000000;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
	color: #FFA38B;
}

.elementor .row-my-account .e-con-inner {
	padding-top: 25px;
	padding-top: 1.5625rem;
	padding-bottom: 75px;
	padding-bottom: 4.6875rem;
}

.elementor .row-my-account .woocommerce-account .woocommerce-MyAccount-navigation ul {
	margin: 0;
}

.elementor .row-my-account a {
	color: #FFA38B;
}

.elementor .row-my-account table tr.payment-method.default-payment-method a,
.elementor .row-my-account .woocommerce-MyAccount-content a.button {
	background-color: #FFA38B;
	color: #000000;
	font-weight: 400;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
	border-top-color: #FFA38B;
	background-color: rgba(255, 163, 139, 0.1);
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
	color: #FFA38B;
}

.row-my-account a.woocommerce-Button.wc-forward.button,
.row-my-account a.woocommerce-Button.button,
.row-my-account a.button.wc-forward,
.row-my-account button.woocommerce-Button.button,
.row-my-account .woocommerce .woocommerce-form-login .woocommerce-form-login__submit,
.row-checkout button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained {
	background-color: #FFA38B;
	color: #000000;
	font-weight: 400;
	border-color: #FFA38B;
}

.row-my-account a.woocommerce-Button.wc-forward.button:hover,
.row-my-account a.woocommerce-Button.button:hover,
.row-my-account a.button.wc-forward:hover,
.row-my-account button.woocommerce-Button.button:hover,
.row-my-account .woocommerce .woocommerce-form-login .woocommerce-form-login__submit:hover,
.row-checkout button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained:hover {
	background-color: #FF6B45;
}

/*header */
header.row-header .e-con-inner {
	max-width: 1344px;
	max-width: 84rem;
	padding-top: 14px;
	padding-top: 0.875rem;
}

header.row-header .logo-cont {
	width: 17%;
	display: flex;
	flex-direction: row;
}

header.row-header .logo-cont img,
header.row-header .logo-cont .elementor-widget-image a img[src$=".svg"],
footer.row-footer .logo-menu-cont .logo-cont .elementor-widget-image a img[src$=".svg"] {
	width: 193px;
	width: 12.0625rem;
}

header.row-header .menu-cont {
	width: 83%;
	display: flex;
	flex-direction: row;
	gap: 33px;
	gap: 2.0625rem;
	justify-content: flex-end;
	align-items: center;
}

header.row-header .menu-cont .elementor-button {
	max-width: 216px;
	max-width: 13.5rem;
	width: 100%;
	height: 42px;
	height: 2.625rem;
	background-color: #FFA38B;
	display: flex;
	width: 216px;
	width: 13.5rem;
	padding: 6px;
	padding: 0.375rem;
	justify-content: center;
	align-items: center;
	border-radius: 10000px;
	border-radius: 625rem;
}

header.row-header .menu-cont .elementor-button span {
	color: #ffffff;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.66667
}

header.row-header .menu-cont .menu .menu-item a {
	color: #ffffff;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	padding: 0px 0px 0px 34.5px;
	padding: 0rem 0rem 0rem 2.1562rem;
}

header.row-header .menu-cont .menu .sub-arrow {
	margin-block-end: -13px;
	margin-block-end: -0.8125rem;
	margin-block-start: -10px;
	margin-block-start: -0.625rem;
	padding: 2px;
	padding: 0.125rem;
}

header.row-header .menu-cont .menu .sub-arrow .e-font-icon-svg.fa-svg-chevron-down {
	height: 16px;
	height: 1rem;
	width: 17px;
	width: 1.0625rem;
	fill: #ffffff;
}

.elementor header.row-header .menu-cont .menu .menu-item a.elementor-sub-item {
	color: #000000;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	padding-left: 2px;
	padding-top: 8px;
	padding-bottom: 5px;
}

.elementor header.row-header .menu-cont .menu .menu-item.current-menu-item a.elementor-sub-item {
	background-color: #EFEFEF;
	color: #FFA38B;
}

header.row-header .menu-cont .menu .menu-item a.elementor-sub-item:hover {
	background-color: #EFEFEF;
}

header.row-header .menu-cont .menu .menu-item .sub-menu {
	left: -54px !important;
	top: 42px !important;
	padding: 18px 37px 21px 12px;
}

/* Target the dropdown list when it's visible */
.elementor-nav-menu--main .menu-item-has-children:hover>.sub-menu:before {
	content: "";
	position: absolute;
	top: -13px;
	left: 54%;
	transform: translateX(-50%);
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-bottom: 13px solid #ffffff;
}

/*white bg */
header.row-header.white-header .menu-cont .menu .sub-arrow .e-font-icon-svg.fa-svg-chevron-down {
	fill: #000000;
}

header.row-header.white-header .menu-cont .menu .menu-item a {
	color: #000000;
}


/*home */
div.row-hero .e-con-inner {
	padding: 146px 0px 15px 73px;
	padding: 9.125rem 0rem 0.9375rem 4.5625rem;
	max-width: 1365px;
	max-width: 85.3125rem;
}

.row-hero .hero-cont {
	width: 45%;
}

div.row-hero div.hero-img {
	width: 55%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	padding-top: 0;
}

.row-hero h1 {
	color: #ffffff;
	width: 100%;
	max-width: 515px;
	max-width: 32.1875rem;
	font-size: 50px;
	font-size: 3.125rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.15;
}

.row-hero p {
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5
}

.elementor div.row-hero .e-con-inner .elementor-button {
	display: flex;
	padding: 18px;
	padding: 1.125rem;
	justify-content: center;
	align-items: center;
	gap: 15px;
	gap: 0.9375rem;
	border-radius: 1000px;
	border-radius: 62.5rem;
	max-width: 229px;
	max-width: 14.3125rem;
	width: 100%;
	height: 66px;
	height: 4.125rem;
	background-color: #FFA38B;
	/*color: #000000; */
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	margin-top: -4px;
	margin-top: -0.25rem;
}

.row-hero .stats {
	margin-top: 60px;
	margin-top: 3.75rem;
}

.row-hero .stats-section {
	display: flex;
	justify-content: space-between;
	text-align: center;
	max-width: 492px;
	max-width: 30.75rem;
	width: 100%;
}

.row-hero .stat-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	gap: 5px;
	gap: 0.3125rem;
}

.row-hero .stat-box:nth-child(1) {
	max-width: 103px;
	max-width: 6.4375rem;
	width: 100%;
}

.row-hero .stat-box:nth-child(2) {
	max-width: 92px;
	max-width: 5.75rem;
	width: 100%;
}

.row-hero .stat-box:nth-child(3) {
	max-width: 158px;
	max-width: 9.875rem;
	width: 100%;
}

.row-hero .counter {
	color: #878787;
	text-align: center;
	font-size: 36px;
	font-size: 2.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1;
}

.row-hero .plus {
	position: absolute;
	top: 0;
	right: -20px;
	right: -1.25rem;
	font-size: 32px;
	font-size: 2rem;
	font-weight: 500;
	color: #878787;
}

.row-hero .stat-box p {
	color: #ffffff;
	text-align: center;
	font-size: 14px;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1;
}

div.row-logos .e-con-inner {
	padding: 10px 52px;
	padding: 0.625rem 3.25rem;
}

div.row-logos .logos-cont {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

div.row-with-testi .e-con-inner {
	padding-bottom: 45px;
	padding-bottom: 2.8125rem;
}

div.row-with-testi.case-studies-testi-cont .e-con-inner {
	padding-bottom: 0;
}

div.row-with-testi div.row-testimonial {
	padding: 20px 20px;
	padding: 1.25rem 1.25rem;
}

.row-testimonial .improva-wrap {
	background: transparent;
	border: 2px solid #303030;
	border: 0.125rem solid #303030;
	padding: 10px 40px 10px 40px;
	padding: 0.625rem 2.5rem 0.625rem 2.5rem;
	color: #ffffff;
	max-width: 1151px;
	max-width: 71.9375rem;
	margin: 20px auto;
	margin: 1.25rem auto;
}

.row-testimonial .improva-inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* disabled nav button state */
.row-testimonial .btn.is-disabled {
	border-color: rgba(255, 163, 139, 0.80);
	color: rgba(255, 163, 139, 0.80);
	cursor: default;
	pointer-events: none;
	opacity: .5;
}


/* centered stars (your style kept) */
.row-testimonial .improva-header {
	display: flex;
	align-items: center;
	margin: -23px 0 0px 0;
	margin: -1.4375rem 0 0rem 0;
	justify-content: center;
	background: transparent;
	max-width: 175px;
	max-width: 10.9375rem;
	width: 100%;
}

.row-testimonial .improva-stars {
	display: flex;
}

.row-testimonial .improva-stars .star {
	width: 27px;
	width: 1.6875rem;
	height: 27px;
	height: 1.6875rem;
	fill: #FFA38B;
	display: block;
}

/* --- slider --- */
.row-testimonial .improva-viewport {
	position: relative;
	width: 100%;
	overflow: hidden;
	min-height: 244px;
	min-height: 15.25rem;
	transition: height 0.3s ease-out;
}

.row-testimonial .improva-slide {
	position: static;
	margin: 0;
	transition: opacity .42s linear;
	opacity: 0;
	pointer-events: none;
	display: none
}

.row-testimonial .improva-slide.is-active {
	display: block;
	opacity: 1;
	pointer-events: auto;
}

.row-testimonial .improva-slide.anim {
	transition: transform .42s cubic-bezier(.4, .1, .2, 1), opacity .42s linear;
}

.row-testimonial .improva-slide.from-left {
	transform: translateX(-100%);
}

.row-testimonial .improva-slide.from-right {
	transform: translateX(100%);
}

.row-testimonial .improva-slide.to-left {
	transform: translateX(-100%);
	opacity: 0;
}

.row-testimonial .improva-slide.to-right {
	transform: translateX(100%);
	opacity: 0;
}

/* content styles */
.row-testimonial .impv4-quote {
	margin-bottom: 8px;
	margin-bottom: 0.5rem;
	margin-top: 39px;
	margin-top: 2.4375rem;
	display: block;
}

.row-testimonial .impv4-quote .impv4-quote-svg {
	width: 24px;
	width: 1.5rem;
	height: 24px;
	height: 1.5rem;
	display: block;
}

.row-testimonial .improva-quote {
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	margin: 0px 0px 38px 5px;
	margin: 0rem 0rem 2.375rem 0.3125rem;
}

.row-testimonial .improva-wrap.case-studies-testi {
	max-width: 1200px;
	max-width: 75rem;
	padding-top: 20px;
	padding-top: 1.25rem;
	padding-bottom: 20px;
	padding-bottom: 1.25rem;
	border: 1px solid #FFA38B;
}

.row-testimonial .case-studies-testi .improva-quote,
.row-testimonial .case-studies-testi .improva-name,
.row-testimonial .case-studies-testi .improva-loc {
	color: #000000;
}

.row-testimonial .case-studies-testi .improva-header {
	display: none;
}

.row-testimonial .case-studies-testi .impv4-quote {
	margin-top: 0;
}

.row-testimonial .case-studies-testi .impv4-quote .impv4-quote-svg path {
	stroke: #000000;
}

.row-testimonial .improva-quote strong {
	font-weight: 700;
}

.row-testimonial .improva-footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	gap: 1.25rem;
}

.row-testimonial .improva-id {
	display: flex;
	align-items: center;
	gap: 20px;
	gap: 1.25rem;
}

.row-testimonial .improva-avatar {
	width: 84px;
	width: 5.25rem;
	height: 84px;
	height: 5.25rem;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	display: none;
}

.row-testimonial .improva-name {
	color: #ffffff;
	text-transform: capitalize;
	font-size: 22px;
	font-size: 1.375rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.3;
}

.row-testimonial .improva-loc {
	color: #ffffff;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.3;
}

.row-testimonial .improva-loc p {
	margin-bottom: 0;
}

.row-testimonial .improva-nav {
	display: flex;
	gap: 8px;
	gap: 0.5rem;
}

.row-testimonial .btn {
	height: 35px;
	height: 2.1875rem;
	max-width: 80px;
	max-width: 5rem;
	min-width: 80px;
	min-width: 5rem;
	width: 100%;
	padding: 0 18px;
	padding: 0 1.125rem;
	border-radius: 151.181px;
	border-radius: 9.4488rem;
	background: transparent;
	border: 1px solid #FFA38B;
	color: #FFA38B;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

div.row-tailored {
	padding: 0px 0px 92px 0px;
	padding: 0rem 0rem 5.75rem 0rem;
}

div.row-tailored .img-cont {
	padding: 0;
	display: flex;
	align-items: flex-start;
	width: 47%;
	background-position: top center;
}

div.row-tailored.free-guide .img-cont {
	background-position: center left;
	background-size: cover;
}

div.row-tailored.free-guide .img-cont img {
	display: none;
}

div.row-tailored .img-cont img,
.row-premium.new2col .premium-img img {
	display: none;
}

div.row-tailored .content-cont {
	width: 53%;
	display: flex;
	flex-direction: column;
	padding-top: 99px;
	padding-top: 6.1875rem;
	padding-left: 70px;
	padding-left: 4.375rem;
}

.row-tailored h2 {
	color: #000000;
	font-size: 48px;
	font-size: 3rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	max-width: 614px;
	max-width: 38.375rem;
	width: 100%;
	margin-bottom: 21px;
	margin-bottom: 1.3125rem;
}

.row-tailored .text p {
	color: #000000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	max-width: 606px;
	max-width: 37.875rem;
	width: 100%;
}

.elementor div.row-tailored div.content-cont div.list {
	margin-top: 8px;
	margin-top: 0.5rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.20);
	max-width: 551px;
	max-width: 34.4375rem;
	width: 100%;
	padding-bottom: 23px;
	padding-bottom: 1.4375rem;
}

.row-tailored h3.elementor-icon-box-title {
	margin-top: -7px;
	margin-top: -0.4375rem;
	color: #000000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 7px;
	margin-bottom: 0.4375rem;
}

.row-tailored p.elementor-icon-box-description {
	color: #000000;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.2;
}

.elementor div.row-tailored div.content-cont div.list.padding {
	padding-top: 21px;
	padding-top: 1.3125rem;
}

.row-tailored .list-2 h3.elementor-icon-box-title,
.row-tailored .list-2 p.elementor-icon-box-description {
	max-width: 554px;
	max-width: 34.625rem;
	width: 108%;
}

.row-tailored .list-3 p.elementor-icon-box-description {
	max-width: 365px;
	max-width: 22.8125rem;
	width: 100%;
}

.elementor div.row-tailored div.content-cont div.list.last {
	border-bottom: none;
}

div.row-tailored .elementor-button {
	max-width: 457px;
	max-width: 28.5625rem;
	width: 100%;
	height: 66px;
	height: 4.125rem;
	display: flex;
	padding: 18px;
	padding: 1.125rem;
	justify-content: center;
	align-items: center;
	border-radius: 1000px;
	border-radius: 62.5rem;
	background: #FFA38B;
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	margin-top: 18px;
	margin-top: 1.125rem;
}

div.row-partners .e-con-inner {
	padding: 10px 52px;
	padding: 0.625rem 3.25rem;
}

div.row-partners .partners-cont {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

div.row-logos .logos-cont p {
	color: #000;
	font-size: 24px;
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1;
	max-width: 115px;
	max-width: 7.1875rem;
	width: 100%;
	margin-bottom: 0;
}

div.row-partners p {
	color: #FFF;
	font-size: 24px;
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 0;
	max-width: 214px;
	max-width: 13.375rem;
	width: 100%;
}

div.row-tailored.luxury .img-cont {
	align-items: flex-end;
	width: 46%;
	background-position: top center;
}

div.row-tailored.luxury .img-cont img {
	display: none;
}

div.row-tailored.luxury .content-cont {
	width: 54%;
	align-items: flex-end;
	padding-top: 87px;
	padding-top: 5.4375rem;
}

div.row-tailored.luxury .content-cont .content-cont-inner {
	max-width: 676px;
	max-width: 42.25rem;
	width: 100%;
}

div.row-tailored.luxury .elementor-button {
	max-width: 421px;
	max-width: 26.3125rem;
}

.row-tailored.luxury .text p {
	max-width: 639px;
	max-width: 39.9375rem;
}

div.row-tailored.luxury {
	padding: 0px 0px 89px 0px;
	padding: 0rem 0rem 5.5625rem 0rem;
}

div.row-showcase {
	padding: 213px 0px 0px 0px;
	padding: 13.3125rem 0rem 0rem 0rem;
	gap: unset;
	background-attachment: fixed;
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: 78% auto;
}

div.row-timeline,
.elementor .row-meet {
	background-attachment: fixed;
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: 78% auto;
}

.row-showcase .showcase-head {
	display: flex;
	align-items: center;
	margin-bottom: 42px;
	margin-bottom: 2.625rem;
}

.row-showcase .showcase-head h2 {
	color: #FFF;
	text-align: center;
	font-size: 48px;
	font-size: 3rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	max-width: 791px;
	max-width: 49.4375rem;
	width: 100%;
}

.row-showcase .showcase-head p {
	color: #FFF;
	text-align: center;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	max-width: 791px;
	max-width: 49.4375rem;
	width: 100%;
}

div.row-showcase .row-walkthrough {
	display: flex;
	flex-direction: row;
	padding: 0;
	gap: unset;
}

.row-showcase .row-walkthrough .video-cont,
.row-showcase .row-walkthrough .walkthrough-cont {
	padding: 0;
}

.row-showcase .row-walkthrough .video-cont .elementor-widget-video {
	height: 557px;
	height: 34.8125rem;
}

.row-showcase .row-walkthrough .video-cont .elementor-wrapper,
.row-showcase .row-walkthrough .video-cont .elementor-custom-embed-image-overlay,
.row-showcase .row-walkthrough .video-cont .elementor-custom-embed-image-overlay img {
	height: 100% !important;
	width: 100% !important;
	object-fit: cover;
	/* This prevents the 'cut' look by scaling the image correctly */
}

/* Required so hover works properly */
.row-showcase .row-walkthrough .video-cont .video-hover-scale .elementor-wrapper {
	overflow: hidden;
}

/* Prevent the container from shifting its internal math during the scale */
.video-hover-scale .elementor-widget-container {
	transform-origin: center center !important;
	backface-visibility: hidden;
	-webkit-font-smoothing: subpixel-antialiased;
}

/* Ensure the play button wrapper doesn't inherit the scale effect directly */
.video-hover-scale .elementor-custom-embed-play {
	pointer-events: none;
	/* Let the hover pass through to the image */
}

/* If the SVG itself is jumping inside the button */
.video-hover-scale svg {
	filter: none !important;
	/* Filters like the figma-bg-blur often cause hover jumps in Chrome */
}

/* Initial state */
.row-showcase .row-walkthrough .video-cont .video-hover-scale .elementor-custom-embed-image-overlay {
	transition: transform 0.5s ease;
}

/* Hover zoom */
.row-showcase .row-walkthrough .video-cont .video-hover-scale:hover .elementor-custom-embed-image-overlay {
	transform: scale(1.1);
}

.row-showcase .row-walkthrough .walkthrough-cont {
	display: flex;
	justify-content: center;
	background-color: #000000;
}

.row-showcase .row-walkthrough .walkthrough-cont .inner {
	padding: 19px 0px 0px 45px;
	padding: 1.1875rem 0rem 0rem 2.8125rem;
}

.row-showcase .row-walkthrough .walkthrough-cont .inner h3 {
	max-width: 534px;
	max-width: 33.375rem;
	width: 100%;
	color: #FFF;
	font-size: 48px;
	font-size: 3rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
}

.row-showcase .row-walkthrough .walkthrough-cont .inner p {
	max-width: 606px;
	max-width: 37.875rem;
	width: 100%;
	color: #FFF;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
}

.row-showcase .row-walkthrough.right .walkthrough-cont {
	align-items: flex-end;
}

.row-showcase .row-walkthrough.right .walkthrough-cont .inner {
	max-width: 646px;
	max-width: 40.375rem;
	width: 100%;
	padding-left: 0;
}

div.row-portfolio {
	min-height: 2028px;
	min-height: 126.75rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

div.row-portfolio .content {
	max-width: 520px;
	max-width: 32.5rem;
	width: 100%;
}

div.row-parallax-landscape.building-industry .content {
	max-width: 849px;
	max-width: 53.0625rem;
	width: 100%;
}

div.row-parallax-landscape {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0;
	gap: 0;
}

div.row-parallax-landscape:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
	/* Black with 0.7 opacity */
	z-index: 5;
	/* Sit above images (z-index 1) but below text (z-index 100) */
	pointer-events: none;
	/* Make sure you can still click things */
}

div.row-parallax-landscape .content {
	transition: opacity 0.5s ease;
	will-change: transform, opacity;
	z-index: 100;
	position: absolute;
	top: 100px;
	left: 0;
	width: 100%;
	z-index: 100;
	max-width: 520px;
	max-width: 32.5rem;
}

div.row-parallax-landscape .elementor-widget-image {
	position: relative;
	z-index: 1;
}

div.row-parallax-landscape .content a,
div.row-parallax-landscape .content button {
	pointer-events: all;
}

div.row-portfolio .content .e-con-inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 41px;
	gap: 2.5625rem;
	margin-top: 228px;
	margin-top: 14.25rem;
}

div.row-parallax-landscape .content .e-con-inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 41px;
	gap: 2.5625rem;
}

.row-portfolio h2,
div.row-parallax-landscape h2 {
	max-width: 520px;
	max-width: 32.5rem;
	width: 100%;
	color: #FFF;
	text-align: center;
	font-size: 48px;
	font-size: 3rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
}

.elementor div.row-portfolio .e-con-inner .elementor-button,
.elementor div.row-parallax-landscape .e-con-inner .elementor-button {
	max-width: 246px;
	max-width: 15.375rem;
	min-width: 246px;
	min-width: 15.375rem;
	width: 100%;
	height: 66px;
	height: 4.125rem;
	display: flex;
	padding: 18px;
	padding: 1.125rem;
	justify-content: center;
	align-items: center;
	border-radius: 1000px;
	border-radius: 62.5rem;
	background: #FFA38B;
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
}

div.row-tailored.why {
	padding-bottom: 0;
}

div.row-tailored.why .img-cont {
	width: 38%;
}

div.row-tailored.why .img-cont img {
	display: none;
}

div.row-tailored.why .content-cont {
	width: 62%;
	padding-top: 91px;
	padding-top: 5.6875rem;
	padding-left: 68px;
	padding-left: 4.25rem;
	padding-bottom: 98px;
	padding-bottom: 6.125rem;

}

.row-tailored.why h2 {
	max-width: 809px;
	max-width: 50.5625rem;
}

.row-tailored.why .icon-cont {
	display: flex;
	column-gap: 65px;
	column-gap: 4.0625rem;
	row-gap: 19px;
	row-gap: 1.1875rem;
	padding: 0;
	margin-top: 37px;
	margin-top: 2.3125rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.elementor div.row-tailored.why div.content-cont div.list {
	max-width: 372px;
	max-width: 23.25rem;
	border-bottom: unset;
	padding-bottom: 0;
}

.row-tailored.why h3.elementor-icon-box-title {
	margin-top: -3px;
	margin-top: -0.1875rem;
}

.row-tailored.why p.elementor-icon-box-description {
	color: #000000;
}

.elementor div.row-tailored.why div.content-cont div.list:nth-child(1) p.elementor-icon-box-description {
	width: 102%;
}

.elementor div.row-tailored.why div.content-cont div.list:nth-child(6) p.elementor-icon-box-description {
	width: 102%;
}

.elementor div.row-tailored.why div.content-cont div.list:nth-child(8) p.elementor-icon-box-description {
	width: 108%;
}

.row-tailored.why .subtext {
	margin-top: 55px;
	margin-top: 3.4375rem;
}

.row-tailored.why .subtext p {
	color: #000;
	max-width: 754px;
	max-width: 47.125rem;
	width: 100%;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.5;
}

div.row-tailored.why .elementor-button {
	max-width: 378px;
	max-width: 23.625rem;
	margin-top: 1px;
	margin-top: 1px;
}



div.row-testimonials {
	background-color: #000000;
}

.elementor div.row-testimonials .e-con-inner {
	padding-top: 113px;
	padding-top: 7.0625rem;
	padding-bottom: 106px;
	padding-bottom: 6.625rem;
	max-width: 1480px;
	max-width: 92.5rem;
	align-items: center;
	overflow: hidden;
}

.row-testimonials .testimonials-cont {
	padding: 0;
	gap: 62px;
	gap: 3.875rem;
}

.row-testimonials .rated-head {
	display: flex;
	justify-content: center;
}

.row-testimonials .testimonials-cont h2 {
	color: #FFF;
	text-align: center;
	font-size: 48px;
	font-size: 3rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	max-width: 1009px;
	max-width: 63.0625rem;
	width: 100%;
}

.row-testimonials .impv4-section {
	color: #fff;
}

.row-testimonials .impv4-grid {
	display: grid;
	grid-template-columns: 493px 494px 493px;
	grid-template-columns: 30.8125rem 30.875rem 30.8125rem;
	max-width: 1480px;
	max-width: 92.5rem;
	margin: 0 auto;
	justify-content: center;
}

.row-testimonials .impv4-item {
	padding: 31px 82px;
	padding: 1.9375rem 5.125rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-right: 1px solid #4e4e4e;
	border-bottom: 1px solid #4e4e4e;
}

.row-testimonials .impv4-item:nth-child(3n) {
	border-right: none;
}

.row-testimonials .impv4-item:nth-last-child(-n+3) {
	border-bottom: none;
}

.row-testimonials .impv4-quote {
	margin-bottom: 8px;
	margin-bottom: 0.5rem;
	display: block;
}

.row-testimonials .impv4-quote-svg {
	width: 24px;
	width: 1.5rem;
	height: 24px;
	height: 1.5rem;
	display: block;
}

.row-testimonials .impv4-text p {
	color: #FFF;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.2;
	max-width: 329px;
	max-width: 20.5625rem;
	width: 100%;
}

.row-testimonials .impv4-text p strong {
	font-weight: 700;
}

.row-testimonials .impv4-stars {
	display: flex;
	margin-bottom: 23px;
	margin-bottom: 1.4375rem;
}

.row-testimonials .impv4-star {
	width: 27px;
	width: 1.6875rem;
	height: 27px;
	height: 1.6875rem;
	fill: #FFA38B;
}

.row-testimonials .impv4-author {
	display: flex;
	align-items: center;
	gap: 20px;
	gap: 1.25rem;
	margin-top: auto;
}

.row-testimonials .impv4-avatar {
	width: 60px;
	width: 3.75rem;
	height: 60px;
	height: 3.75rem;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	background-color: rgba(255, 255, 255, 0.1);
	display: none;
}

.row-testimonials .impv4-details {
	display: flex;
	flex-direction: column;
}

.row-testimonials .impv4-name {
	color: #FFF;
	text-transform: capitalize;
	font-size: 22px;
	font-size: 1.375rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 3px;
	margin-bottom: 0.1875rem;
}

.row-testimonials .impv4-role p {
	color: #FFF;
	font-size: 16px;
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4625;
	margin-bottom: 0;
}

.row-testimonials .testi-all-btn {
	display: flex;
	justify-content: center;
}

.row-testimonials .testi-all-btn .elementor-button {
	max-width: 283px;
	max-width: 17.6875rem;
	width: 100%;
	height: 66px;
	height: 4.125rem;
	display: flex;
	padding: 18px;
	padding: 1.125rem;
	justify-content: center;
	align-items: center;
	border-radius: 1000px;
	border-radius: 62.5rem;
	background: #FFA38B;
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	margin-top: -5px;
	margin-top: -0.3125rem;
}

div.row-hero.about-section {
	padding-bottom: 0;
}

div.row-hero.about-section .hero-cont {
	width: 50%;
	align-items: flex-end;
	padding-top: 193px;
	padding-top: 12.0625rem;
	padding-bottom: 44px;
	padding-bottom: 2.75rem;
}

div.row-hero.about-section .hero-cont-sub {
	max-width: 600px;
	max-width: 37.5rem;
	width: 100%;
}

div.row-hero.about-section div.hero-img {
	width: 50%;
	display: unset;
	flex-direction: unset;
	justify-content: unset;
	align-items: unset;
	padding-top: 0;
	padding-bottom: 0;
	background-position: bottom right;
}

div.row-hero.about-section div.hero-img img {
	display: none;
}

.row-hero.about-section h2 {
	color: #ffffff;
	width: 100%;
	max-width: 579px;
	max-width: 36.1875rem;
	font-size: 48px;
	font-size: 3rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 2px;
	margin-bottom: 0.125rem;
}

.row-hero.about-section p {
	max-width: 577px;
	max-width: 36.0625rem;
	width: 100%;
	margin-bottom: 30px;
	margin-bottom: 1.875rem;
}

.elementor div.row-hero.about-section .elementor-button {
	max-width: 345px;
	max-width: 21.5625rem;
	display: flex;
	padding: 18px;
	padding: 1.125rem;
	justify-content: center;
	align-items: center;
	gap: 15px;
	gap: 0.9375rem;
	border-radius: 1000px;
	border-radius: 62.5rem;
	width: 100%;
	height: 66px;
	height: 4.125rem;
	background-color: #FFA38B;
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	margin-top: -4px;
	margin-top: -0.25rem;
}

.row-hero.about-section .stats {
	margin-top: 19px;
	margin-top: 1.1875rem;
}

div.row-tailored.luxury.joinery {
	background-color: #F4F4F4;
	padding-bottom: 0;
}

div.row-tailored.luxury.joinery .img-cont {
	width: 44%;
}

div.row-tailored.luxury.joinery .content-cont {
	width: 56%;
	padding-top: 69px;
	padding-top: 4.3125rem;
	padding-bottom: 72px;
	padding-bottom: 4.5rem;
}

div.row-tailored.luxury.joinery .content-cont .content-cont-inner {
	max-width: 714px;
	max-width: 44.625rem;
}

.row-tailored.luxury.joinery .text p {
	margin-bottom: 41px;
	margin-bottom: 2.5625rem;
}

.row-tailored.joinery h3.elementor-icon-box-title {
	margin-top: -4px;
	margin-top: -0.25rem;
	margin-bottom: 7px;
	margin-bottom: 0.4375rem;
}

.row-tailored.joinery p.elementor-icon-box-description {
	color: #000000;
}

.elementor div.row-tailored.joinery div.content-cont div.list {
	max-width: 604px;
	max-width: 37.75rem;
	border-bottom: none;
	padding-bottom: 0px;
	padding-bottom: 0rem;
}

.elementor div.row-tailored.joinery div.content-cont div.list.padding {
	padding-top: 8px;
	padding-top: 0.5rem;
}

.row-tailored.joinery .list-3 p.elementor-icon-box-description {
	max-width: unset;
}

.row-tailored.joinery h4 {
	color: #000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.5;
	margin-top: 35px;
	margin-top: 2.1875rem;
}

.row-tailored.joinery .subtext-h4 p {
	color: #000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	max-width: 596px;
	max-width: 37.25rem;
	width: 100%;
}

div.row-tailored.luxury.joinery .elementor-button {
	max-width: 385px;
	max-width: 24.0625rem;
}

div.row-tailored.free-guide {
	padding-bottom: 0;
}

div.row-tailored.free-guide .content-cont {
	width: 53%;
	padding-top: 83px;
	padding-top: 5.1875rem;
	padding-left: 34px;
	padding-left: 2.125rem;
	padding-bottom: 85px;
	padding-bottom: 5.3125rem;
}

.row-tailored.free-guide h2 {
	max-width: 698px;
	max-width: 43.625rem;
}

.row-tailored.free-guide .text p {
	max-width: 660px;
	max-width: 41.25rem;
}

div.row-tailored.free-guide .elementor-button {
	max-width: 330px;
	max-width: 20.625rem;
}

footer.row-footer .e-con-inner {
	padding-top: 43px;
	padding-top: 2.6875rem;
	max-width: 1344px;
	max-width: 84rem;
	gap: 60px;
	gap: 3.75rem;
	padding-bottom: 310px;
	padding-bottom: 19.375rem;
}

footer.row-footer .logo-menu-cont {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

footer.row-footer .logo-menu-cont .logo-cont {
	max-width: 193px;
	max-width: 12.0625rem;
	width: 100%;
	padding: 0;
	display: flex;
	align-items: flex-start;
}

footer.row-footer .logo-menu-cont .menu-cont-footer {
	width: 51.5%;
	padding: 0;
}

footer.row-footer .logo-menu-cont .footer-menu {
	display: flex;
	justify-content: flex-start;
	gap: 40px;
	gap: 2.5rem;
}

footer.row-footer .logo-menu-cont .footer-menu p {
	margin-bottom: 0;
}

footer.row-footer .logo-menu-cont .footer-menu p a {
	color: #FFF;
	text-align: center;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
}

footer.row-footer .footer-copyright {
	border-top: 0.5px solid rgba(255, 255, 255, 0.20);
	border-top: 0.0312rem solid rgba(255, 255, 255, 0.20);
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 91px;
	gap: 5.6875rem;
	padding-top: 23px;
	padding-top: 1.4375rem;
	padding-bottom: 23px;
	padding-bottom: 1.4375rem;
}

footer.row-footer .footer-copyright .copyright-txt {
	max-width: 548px;
	max-width: 34.25rem;
	width: 100%;
	padding: 0;
}

footer.row-footer .footer-copyright .copyright-txt .copyright-date-text p {
	color: #FFF;
	font-size: 16px;
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.625;
	margin-bottom: 0;
}

footer.row-footer .footer-copyright .copyright-txt .copyright-date-text p a {
	color: #FFF;
}

footer.row-footer .footer-copyright .copyright-txt .copyright-date-text p .separator {
	padding-left: 11.5px;
	padding-left: 0.7188rem;
	padding-right: 7px;
	padding-right: 0.4375rem;
}

footer.row-footer .footer-copyright .copyright-txt .copyright-date-text p .separator.last {
	padding-left: 11.5px;
	padding-left: 0.7188rem;
	padding-right: 11.5px;
	padding-right: 0.7188rem;
}


footer.row-footer .footer-copyright .footer-socials {
	padding: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 16px;
	gap: 1rem;
}

footer.row-footer .footer-copyright .footer-socials .facebook-logo svg {
	height: 25px;
	height: 1.5625rem;
}



/* about */
.row-hero.about-section.row-about p {
	max-width: 655px;
	max-width: 40.9375rem;
	width: 105%;
}

.elementor div.row-hero.about-section.row-about .elementor-widget-button {
	width: 100%;
}

.elementor div.row-hero.about-section.row-about .elementor-button {
	max-width: 229px;
	max-width: 14.3125rem;
}

.row-hero.about-section.row-about h1 {
	font-size: 50px;
	font-size: 3.125rem;
	max-width: 614px;
	max-width: 38.375rem;
	line-height: 1.15;
	color: #ffffff;
	width: 100%;
	font-style: normal;
	font-weight: 700;
	margin-bottom: 2px;
	margin-bottom: 0.125rem;
}

div.row-hero.about-section.row-about .hero-cont-sub {
	max-width: 638px;
	max-width: 39.875rem;
}

div.row-hero.about-section.row-about .hero-cont {
	width: 52%;
	padding-top: 198px;
	padding-top: 12.375rem;
	padding-bottom: 142px;
	padding-bottom: 8.875rem;
}

div.row-hero.about-section.row-about div.hero-img {
	width: 48%;
}

div.row-story {
	background: linear-gradient(to bottom, #ffffff 61%, #000000 39%)
}

.elementor div.row-story div.e-con-inner {
	padding-top: 78px;
	padding-top: 4.875rem;
	display: flex;
	gap: 21px;
	gap: 1.3125rem;
	align-items: center;
}

.row-story h2 {
	color: #000;
	text-align: center;
	font-family: Radikal;
	font-size: 48px;
	font-size: 3rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	max-width: 668px;
	max-width: 41.75rem;
	width: 100%;
}

.row-story p {
	margin-bottom: 30px;
	margin-bottom: 1.875rem;
	color: #000;
	text-align: center;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	max-width: 872px;
	max-width: 54.5rem;
	width: 100%;
}

.elementor div.row-story div.e-con-inner .about-video {
	max-width: 1200px;
	max-width: 75rem;
	width: 100%;
	margin-top: -8px;
	margin-top: -0.5rem;
	min-height: 691px;
	min-height: 43.1875rem;
}

/*
div.row-partners.about-aseenin .e-con-inner {
	padding-bottom: 72px;
	padding-bottom: 4.5rem;
} */

.elementor div.row-core-value {
	background: linear-gradient(to bottom,
			rgba(255, 255, 255, 1) 0%,
			rgba(255, 255, 255, 0.85) 30%,
			rgba(255, 255, 255, 0) 100%),
		url('/wp-content/uploads/2026/04/Trust-Based-Connections.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom;

}

.elementor div.row-core-value .e-con-inner {
	padding-top: 119px;
	padding-top: 7.4375rem;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 375px;
	padding-bottom: 23.4375rem;
}

.row-core-value h2 {
	color: #000;
	text-align: center;
	font-size: 48px;
	font-size: 3rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	max-width: 496px;
	max-width: 31rem;
	width: 100%;
}

.row-core-value .circular-slider-container {
	position: relative;
	max-width: 1200px;
	max-width: 75rem;
	margin: 0 auto;
	padding-top: 93px;
	padding-top: 5.8125rem;
}

.row-core-value .circle-shell {
	position: relative;
	width: 750px;
	width: 46.875rem;
	height: 750px;
	height: 46.875rem;
	margin: 0 auto;
}

.row-core-value .circle-path {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.row-core-value .circle-content {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 694px;
	width: 43.375rem;
	height: 694px;
	height: 43.375rem;
	border-radius: 50%;
	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0.05) 0%,
			rgba(0, 0, 0, 0.05) 70%,
			rgba(0, 0, 0, 0.05) 100%),
		url('/wp-content/uploads/2025/11/improva-core-values-union.png');
	background-size: auto;
	background-repeat: no-repeat;
	background-position: 50% 25%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 71px 10px 10px 10px;
	padding: 4.4375rem 0.625rem 0.625rem 0.625rem;
	z-index: 1;
}

.row-core-value .content-step-number {
	color: #000;
	text-align: center;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.5;
	margin-top: -25px;
	margin-top: -1.5625rem;
}

.row-core-value .circle-content .content-title {
	color: #000;
	text-align: center;
	font-size: 48px;
	font-size: 3rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	margin-top: 9px;
	margin-top: 0.5625rem;
}

.row-core-value .circle-content .content-text {
	color: #000;
	text-align: center;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.2;
	max-width: 538px;
	max-width: 33.625rem;
	width: 100%;
	margin-top: 13px;
	margin-top: 0.8125rem;
}

.row-core-value .circle-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 429px;
	max-width: 26.8125rem;
	width: 100%;
	margin-top: 27px;
	margin-top: 1.6875rem;
}

.row-core-value .circle-controls button {
	background: none;
	border: none;
	text-transform: capitalize;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	gap: 0.5625rem;
	padding: 0;
	color: #000;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	max-width: 60px;
	max-width: 3.75rem;
	min-width: 60px;
	min-width: 3.75rem;
	width: 100%;
}

.row-core-value .circle-controls button:hover {
	color: #FFA38B;
}

.row-core-value .circle-controls button:hover svg path {
	stroke: #FFA38B;
}

.row-core-value .nav-item {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	--angle: 0deg;
	--radius: 375px;
	--radius: 23.4375rem;
	transform-origin: center center;
	transform: rotate(var(--angle)) translateY(calc(-1 * var(--radius)));
	cursor: pointer;
	z-index: 3;
	color: rgba(0, 0, 0, .5);
	text-align: right;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.5;
}

.row-core-value .nav-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 11px;
	width: 0.6875rem;
	height: 11px;
	height: 0.6875rem;
	border-radius: 50%;
	background: #000;
	transform: translate(-50%, -50%);
}

.row-core-value .nav-item span {
	position: absolute;
	left: -110px;
	left: -6.875rem;
	top: -34px;
	top: -2.125rem;
	transform: translateY(-34px) rotate(calc(-1 * var(--angle))) translateX(-50%);
	max-width: 220px;
	max-width: 13.75rem;
	white-space: nowrap;
}

.row-core-value .nav-item.active {
	color: #000;
}

.row-core-value .nav-item.active::before {
	width: 16px;
	width: 1rem;
	height: 16px;
	height: 1rem;
	background: #000000;
	border: 3px solid #fff;
	border: 0.1875rem solid #fff;
	box-shadow: 0 0 0 6px rgba(0, 0, 0, .10);
	box-shadow: 0 0 0 0.375rem rgba(0, 0, 0, .10);
}

.row-core-value .nav-item[data-index="0"] {
	--angle: -90deg;
}

.row-core-value .nav-item[data-index="1"] {
	--angle: -61deg;
}

.row-core-value .nav-item[data-index="2"] {
	--angle: -33.5deg;
}

.row-core-value .nav-item[data-index="3"] {
	--angle: 0deg;
}

.row-core-value .nav-item[data-index="4"] {
	--angle: 33deg;
}

.row-core-value .nav-item[data-index="5"] {
	--angle: 61deg;
}

.row-core-value .nav-item[data-index="6"] {
	--angle: 90deg;
}

.row-core-value .nav-item[data-index="0"] span {
	top: -36px;
	top: -2.25rem;
}

.row-core-value .nav-item[data-index="1"] span {
	top: -16px;
	top: -1rem;
	left: -128px;
	left: -8rem;
}

.row-core-value .nav-item[data-index="2"] span {
	top: -39px;
	top: -2.4375rem;
	left: -193px;
	left: -12.0625rem;
}

.row-core-value .nav-item[data-index="3"] span {
	top: -13px;
	top: -0.8125rem;
	left: 0px;
	left: 0rem;
}

.row-core-value .nav-item[data-index="4"] span {
	top: -118px;
	top: -7.375rem;
	left: 102px;
	left: 6.375rem;
}

.row-core-value .nav-item[data-index="5"] span {
	top: -189px;
	top: -11.8125rem;
	left: 8px;
	left: 0.5rem;
}

.row-core-value .nav-item[data-index="6"] span {
	top: -221px;
	top: -13.8125rem;
	left: -112px;
	left: -7rem;
}


.elementor div.row-mission .e-con-inner {
	display: flex;
	align-items: center;
	padding-top: 118px;
	padding-top: 7.375rem;
	padding-bottom: 121px;
	padding-bottom: 7.5625rem;
}

.row-mission h2 {
	color: #000000;
	text-align: center;
	font-size: 48px;
	font-size: 3rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	max-width: 800px;
	max-width: 50rem;
	width: 100%;
}

.row-mission .mission-subtext p {
	color: #000000;
	text-align: center;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	max-width: 800px;
	max-width: 50rem;
	width: 100%;
	margin-bottom: 0;
	margin-top: 31px;
	margin-top: 1.9375rem;
}

.elementor .row-mission .vission-purpose {
	max-width: 1050px;
	max-width: 65.625rem;
	width: 100%;
	display: flex;
	flex-direction: row;
	padding: 0;
	gap: 0;
	margin-top: 85px;
	margin-top: 5.3125rem;
}

.row-mission .vission-purpose .col2 {
	padding: 0;
}

.row-mission .vission-purpose .vission {
	border-right: 2px solid grey;
	border-right: 0.125rem solid grey;
	min-width: 525.5px;
	min-width: 32.8438rem;
}

.row-mission .vission-purpose .purpose {
	padding-left: 83px;
	padding-left: 5.1875rem;
}

.row-mission .vission-purpose h3 {
	max-width: 441px;
	max-width: 27.5625rem;
	width: 100%;
	color: #000000;
	font-size: 36px;
	font-size: 2.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
}

.row-mission .vission-purpose p {
	max-width: 441px;
	max-width: 27.5625rem;
	width: 100%;
	color: #000000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 0;
	margin-top: -1px;
	margin-top: -0.0625rem;
}

.row-timeline {
	background-color: #000000;
}

.elementor .row-timeline .e-con-inner {
	padding-top: 213px;
	padding-top: 13.3125rem;
	max-width: 100%;
	align-items: center;
}

.row-timeline .timeline-head {
	display: flex;
	align-items: center;
}

.row-timeline .timeline-head h2 {
	color: #FFF;
	text-align: center;
	font-size: 48px;
	font-size: 3rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	max-width: 678px;
	max-width: 42.375rem;
	width: 100%;
}

.row-timeline .timeline-head p {
	margin-bottom: 0;
	max-width: 678px;
	max-width: 42.375rem;
	width: 100%;
	color: #FFF;
	text-align: center;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
}

.row-timeline .timeline-main-cont {
	padding: 0;
	margin-top: 85px;
	margin-top: 5.3125rem;
	gap: 1px;
	background-color: #000;
	align-items: center;
}

.row-timeline .timeline-main-cont div {
	padding: 0;
}

.elementor div.row-timeline div.timeline-main-cont div.timeline-cont {
	display: flex;
	flex-direction: row;
	gap: 5px;
	gap: 0.3125rem;
	max-width: 1200px;
	max-width: 75rem;
}

.elementor .row-timeline .timeline-cont .image-cont {
	width: 43.5%;
	display: flex;
	flex-direction: column;
}

.elementor .row-timeline .timeline-cont .image-cont img {
	width: 517px;
	width: 32.3125rem;
	margin-top: 29px;
	margin-top: 1.8125rem;
}

.elementor div.row-timeline div.timeline-main-cont div.timeline-cont:nth-child(1) .image-cont img,
.elementor div.row-timeline div.timeline-main-cont div.timeline-cont:nth-child(1) .timeline-content h3 {
	margin-top: 0;
}

.elementor .row-timeline .timeline-cont .year-cont {
	width: 13%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

.elementor .row-timeline .timeline-cont .year-cont p {
	color: #000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 13px;
	margin-bottom: 0.8125rem;
	margin-top: 32px;
	margin-top: 2rem;
}

.elementor .row-timeline .timeline-cont .year-cont .horizontal-line {
	width: 1px;
	height: 495px;
	height: 30.9375rem;
	background-color: #9F9F9F;
}

.elementor .row-timeline .timeline-cont .timeline-content {
	width: 43.5%;
	display: flex;
	justify-content: flex-start;
	padding-left: 40px;
	padding-left: 2.5rem;
}

.row-timeline .timeline-content h3 {
	color: #FFF;
	font-size: 36px;
	font-size: 2.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	max-width: 478px;
	max-width: 29.875rem;
	width: 100%;
	margin-top: 29px;
	margin-top: 1.8125rem;
}

.row-timeline .timeline-content p {
	margin-bottom: 27px;
	margin-bottom: 1.6875rem;
	color: #FFF;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	max-width: 478px;
	max-width: 29.875rem;
	width: 100%;
}


.elementor .row-timeline .timeline-cont.img-right .timeline-content {
	width: 43.5%;
	display: flex;
	justify-content: flex-start;
	padding-left: 0;
}

.elementor .row-timeline .timeline-cont.img-right .image-cont {
	width: 43.5%;
	display: flex;
	justify-content: flex-start;
	padding-left: 32px;
	padding-left: 2rem;
}

.row-timeline div.timeline-cont.img-right .timeline-content h3 {
	margin-top: 31px;
	margin-top: 1.9375rem;
}

.elementor .row-timeline .timeline-cont.img-right .image-cont img {
	margin-top: 32px;
	margin-top: 2rem;
	max-width: 106%;
}

.elementor div.row-timeline div.timeline-main-cont div.timeline-cont:nth-child(3) .timeline-content h3 {
	max-width: 555px;
	max-width: 34.6875rem;
	width: 117%;
}

.elementor div.row-timeline div.timeline-main-cont div.timeline-cont:nth-child(4) .timeline-content h3 {
	max-width: 411px;
	max-width: 25.6875rem;
	margin-top: 27px;
	margin-top: 1.6875rem;
}

.elementor div.row-timeline div.timeline-main-cont div.timeline-cont:nth-child(6) .timeline-content h3 {
	max-width: 411px;
	max-width: 25.6875rem;
	margin-top: 27px;
	margin-top: 1.6875rem;
}

.elementor div.row-timeline div.timeline-main-cont div.timeline-cont:nth-child(6) .year-cont .horizontal-line {
	height: 641px;
	height: 40.0625rem;
}

.elementor div.row-timeline div.timeline-main-cont div.timeline-cont:nth-child(8) .timeline-content h3 {
	max-width: 411px;
	max-width: 25.6875rem;
}

.elementor div.row-timeline div.timeline-main-cont div.timeline-cont:nth-child(9) .year-cont p {
	margin-bottom: 33px;
	margin-bottom: 2.0625rem;
	margin-top: 35px;
	margin-top: 2.1875rem;
}

.elementor div.row-timeline div.timeline-main-cont div.timeline-cont:nth-child(9) {
	z-index: 99999 !important;
}

.elementor div.row-today-timeline {
	margin-top: -60px;
	margin-top: -3.75rem;
	background:
		linear-gradient(180deg,
			rgba(0, 0, 0, 0) 5.74%,
			rgba(0, 0, 0, 0.51) 38%,
			rgba(0, 0, 0, 0.70) 62.34%,
			rgba(0, 0, 0, 0.70) 85.67%),
		linear-gradient(0deg,
			rgba(0, 0, 0, 0.50) 0%,
			rgba(0, 0, 0, 0.50) 100%),
		url("/wp-content/uploads/2025/11/Timeline-Today-Improva.png") center / cover no-repeat;
}

.elementor div.row-today-timeline .e-con-inner {
	display: flex;
	align-items: center;
	padding-top: 209px;
	padding-top: 13.0625rem;
	padding-bottom: 70px;
	padding-bottom: 4.375rem;
}

.row-today-timeline h2 {
	max-width: 735px;
	max-width: 45.9375rem;
	width: 100%;
	color: #FFF;
	text-align: center;
	font-size: 36px;
	font-size: 2.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
}

.row-today-timeline p {
	max-width: 826px;
	max-width: 51.625rem;
	width: 100%;
	color: #FFF;
	text-align: center;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
}

.elementor .row-today-timeline .elementor-button {
	max-width: 297px;
	max-width: 18.5625rem;
	min-width: 297px;
	min-width: 18.5625rem;
	width: 100%;
	height: 66px;
	height: 4.125rem;
	display: flex;
	padding: 18px;
	padding: 1.125rem;
	justify-content: center;
	align-items: center;
	border-radius: 1000px;
	border-radius: 62.5rem;
	background: #FFA38B;
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	margin-top: -6px;
	margin-top: -0.375rem;
}

.row-meet {
	background-color: #000000;
}

.elementor .row-meet .e-con-inner {
	padding-top: 254px;
	padding-top: 15.875rem;
	max-width: 1396px;
	max-width: 87.25rem;
	padding-bottom: 115px;
	padding-bottom: 7.1875rem;
}

.elementor .row-meet .meet-head {
	display: flex;
	align-items: center;
}

.row-meet .meet-head h2 {
	max-width: 791px;
	max-width: 49.4375rem;
	width: 100%;
	color: #FFF;
	text-align: center;
	font-size: 48px;
	font-size: 3rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
}

.row-meet .meet-head p {
	max-width: 791px;
	max-width: 49.4375rem;
	width: 100%;
	color: #FFF;
	text-align: center;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
}

.row-meet .team-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 0;
	margin-top: 8px;
	margin-top: 0.5rem;
	column-gap: 12px;
	column-gap: 0.75rem;
	row-gap: 35px;
	row-gap: 2.1875rem;
}

.row-meet .team-list div {
	padding: 0;
}

.row-meet .team-list .team-cont {
	gap: 0;
}

.row-meet .team-list .team-cont:nth-child(2) h4 {
	width: 107%;
}

.row-meet .team-list img {
	width: 340px;
	width: 21.25rem;
}

.row-meet .team-list .content-cont {
	padding: 24px 20px;
	padding: 1.5rem 1.25rem;
	gap: 0;
}

.row-meet .team-list h3 {
	color: #FFF;
	text-transform: capitalize;
	font-size: 22px;
	font-size: 1.375rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1;
}

.row-meet .team-list h4 {
	color: #8C8C8C;
	font-size: 16px;
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4625;
	margin-top: 5px;
	margin-top: 0.3125rem;
}

.row-meet .team-list .meet-line div {
	width: 290px;
	width: 18.125rem;
	height: 1px;
	height: 1px;
	background-color: #262626;
	margin-top: 16px;
	margin-top: 1rem;
	margin-bottom: 14px;
	margin-bottom: 0.875rem;
}

.row-meet .team-list p {
	max-width: 300px;
	max-width: 18.75rem;
	width: 100%;
	color: #FFF;
	font-size: 16px;
	font-size: 1rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.4625;
	margin-bottom: 15px;
	margin-bottom: 0.9375rem;
}

.row-meet .team-list svg {
	fill: #FFA38B;
}

div.row-portfolio.about,
div.row-parallax-portrait {
	min-height: 1466px;
	min-height: 91.625rem;
}

div.row-parallax-portrait {
	position: relative;
	display: block;
	width: 100%;
	overflow: visible;
}

div.row-portfolio.about .content,
div.row-parallax-portrait .content {
	max-width: 849px;
	max-width: 53.0625rem;
}

div.row-parallax-portrait .content {
	position: absolute;
	top: 100px;
	left: 50%;
	width: 100%;
	z-index: 100;
	text-align: center;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

div.row-parallax-portrait {
	overflow-x: clip;
	overflow-y: visible;
}

@supports not (overflow: clip) {
	div.row-parallax-portrait {
		overflow-x: hidden;
		overflow-y: visible;
	}
}

div.row-parallax-portrait .portrait-img {
	will-change: transform;
	backface-visibility: hidden;
	transform: translate3d(0, 0, 0);
}

div.row-parallax-portrait img {
	width: 384px;
	height: 495px;
}

div.row-parallax-portrait .portrait-img {
	z-index: 1;
	transform: translate3d(0, 0, 0);
	will-change: transform;
	transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

div.row-parallax-portrait .content a,
div.row-parallax-portrait .content button {
	pointer-events: all;
}

div.row-portfolio.about .content .e-con-inner {
	margin-top: -4px;
	margin-top: -0.25rem;
	gap: 9px;
	gap: 0.5625rem;
}

div.row-parallax-portrait .content .e-con-inner {
	margin-top: -4px;
	margin-top: -0.25rem;
	gap: 9px;
	gap: 0.5625rem;
	display: flex;
	align-items: center;
}

.row-portfolio.about h2 {
	color: #000000;
}

div.row-parallax-portrait h2 {
	color: #000000;
	max-width: 520px;
	max-width: 32.5rem;
	width: 100%;
	text-align: center;
	font-size: 48px;
	font-size: 3rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	/*text-shadow:
		1px 1px 0px rgba(255, 255, 255, 0.8),
		-1px -1px 0px rgba(255, 255, 255, 0.8),
		1px -1px 0px rgba(255, 255, 255, 0.8),
		-1px 1px 0px rgba(255, 255, 255, 0.8),
		0px 0px 10px rgba(255, 255, 255, 0.5);*/
}

.row-portfolio.about p {
	max-width: 849px;
	max-width: 53.0625rem;
	width: 100%;
	color: #000;
	text-align: center;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
}

div.row-parallax-portrait p {
	max-width: 849px;
	max-width: 53.0625rem;
	width: 100%;
	color: #000;
	text-align: center;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	/*text-shadow:
		1px 1px 0px rgba(255, 255, 255, 0.8),
		-1px -1px 0px rgba(255, 255, 255, 0.8),
		1px -1px 0px rgba(255, 255, 255, 0.8),
		-1px 1px 0px rgba(255, 255, 255, 0.8),
		0px 0px 10px rgba(255, 255, 255, 0.5); */
}

.elementor div.row-portfolio.about .e-con-inner .elementor-button {
	max-width: 261px;
	max-width: 16.3125rem;
	min-width: 261px;
	min-width: 16.3125rem;
	margin-top: 8px;
	margin-top: 0.5rem;
}

.elementor div.row-parallax-portrait .e-con-inner .elementor-button {
	max-width: 261px;
	max-width: 16.3125rem;
	min-width: 261px;
	min-width: 16.3125rem;
	margin-top: 8px;
	margin-top: 0.5rem;
	width: 100%;
	height: 66px;
	height: 4.125rem;
	display: flex;
	padding: 18px;
	padding: 1.125rem;
	justify-content: center;
	align-items: center;
	border-radius: 1000px;
	border-radius: 62.5rem;
	background: #FFA38B;
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
}

.row-testimonials.about .testimonials-cont h2 {
	max-width: 865px;
	max-width: 54.0625rem;
}

div.row-testimonials.about .e-con-inner {
	padding-bottom: 116px;
	padding-bottom: 7.25rem;
}

div.elementor div.row-style {
	display: flex;
	flex-direction: row;
	padding: 0;
	gap: 0;
}

.elementor .row-style .e-con-inner {
	padding: 0;
}

.row-style .style-content-main {
	background-color: #A896FF;
	width: 58.5%;
	align-items: flex-end;
	padding-top: 157px;
	padding-top: 9.8125rem;
	padding-bottom: 160px;
	padding-bottom: 10rem;
}

.row-style .style-image {
	width: 41.5%;
}

.row-style .style-content {
	max-width: 791px;
	max-width: 49.4375rem;
	width: 100%;
	gap: 9px;
	gap: 0.5625rem;
}

.row-style .style-content h2 {
	color: #000;
	font-size: 48px;
	font-size: 3rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	max-width: 514px;
	max-width: 32.125rem;
	width: 100%;
}

.row-style .style-content p {
	color: #000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	max-width: 687px;
	max-width: 42.9375rem;
	width: 100%;
}

.row-style .style-content .elementor-button {
	max-width: 260px;
	max-width: 16.25rem;
	min-width: 260px;
	min-width: 16.25rem;
	width: 100%;
	height: 66px;
	height: 4.125rem;
	display: flex;
	padding: 18px;
	padding: 1.125rem;
	justify-content: center;
	align-items: center;
	border-radius: 1000px;
	border-radius: 62.5rem;
	background: #FFF;
	color: #000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	margin-top: 8px;
	margin-top: 0.5rem;
}

.row-style .style-image .style-image-inkolor {
	position: absolute;
	left: -107px;
	left: -6.6875rem;
	top: 262px;
	top: 16.375rem;
}

.row-style .style-image .style-image-inkolor img {
	width: 226px;
	height: 226px;
}


/*building industry */
.elementor .row-hero-improva {
	min-height: 665px;
	min-height: 41.5625rem;
}

.elementor div.row-hero-improva div.e-con-inner {
	padding-top: 157px;
	padding-top: 9.8125rem;
	padding-bottom: 75px;
	padding-bottom: 4.6875rem;
	max-width: 1200px;
	max-width: 75rem;
	display: flex;
	justify-content: center;
}

.row-hero-improva h1 {
	color: #ffffff;
	font-size: 50px;
	font-size: 3.125rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.15;
	max-width: 586px;
	max-width: 36.625rem;
	width: 100%;
}

.row-hero-improva p {
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	max-width: 552px;
	max-width: 34.5rem;
	width: 100%;
}

.elementor div.row-hero-improva .elementor-button {
	max-width: 378px;
	max-width: 23.625rem;
	width: 100%;
	height: 66px;
	height: 4.125rem;
	display: flex;
	padding: 18px;
	padding: 1.125rem;
	justify-content: center;
	align-items: center;
	border-radius: 1000px;
	border-radius: 62.5rem;
	background: #FFA38B;
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	margin-top: -3px;
	margin-top: -0.1875rem;
}

div.row-partners.building p {
	color: #000000;
}

div.row-partners.building.about-slide p {
	color: #ffffff;
}

.elementor div.row-key {
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.85) 30%, rgba(255, 255, 255, 0) 100%), url(/wp-content/uploads/2025/11/Key-Benefits-Improva.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom;
}

.elementor .row-key .e-con-inner {
	padding-top: 88px;
	padding-top: 5.5rem;
	padding-bottom: 75px;
	padding-bottom: 4.6875rem;
	max-width: 1347px;
	max-width: 84.1875rem;
	min-height: 2128px;
	min-height: 133rem;
}

.elementor .row-key .key-head {
	display: flex;
	align-items: center;
}

.row-key .key-head h2 {
	/*max-width: 638px; */
	max-width: 100%;
	width: 100%;
	color: #000000;
	text-align: center;
	font-size: 48px;
	font-size: 3rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
}

.row-key .key-head p {
	color: #000000;
	text-align: center;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	max-width: 606px;
	max-width: 37.875rem;
	width: 100%;
}

.row-key .benefits-main-cont {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-top: 38px;
	margin-top: 2.375rem;
	padding-left: 59px;
	padding-left: 3.6875rem;
}

.row-key .benefits-main-cont div {
	padding: 0;
}

.elementor .row-key .benefits-list {
	display: flex;
	flex-direction: row;
	gap: 31px;
	gap: 1.9375rem;
	align-items: start;
}

.row-key .benefits-list .benefits-content {
	max-width: 373px;
	max-width: 23.3125rem;
	width: 100%;
	gap: 12px;
	gap: 0.75rem;
}

.row-key .benefits-list .benefits-number {
	width: auto;
}

.row-key .benefits-list h3 {
	color: #000000;
	text-align: right;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.5;
}

.row-key .benefits-list p {
	color: #000000;
	text-align: right;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 0;
}

.row-key .benefits-list h4 {
	color: #D3D3D3;
	font-size: 173.913px;
	font-size: 10.8696rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.15;
	margin-top: -8px;
	margin-top: -0.5rem;
}

.row-key .benefits-list.even h3,
.row-key .benefits-list.even p {
	text-align: left;
}

.elementor .row-key .benefits-list.even {
	justify-content: flex-end;
	margin-top: -47px;
	margin-top: -2.9375rem;
	margin-bottom: -42px;
	margin-bottom: -2.625rem;
}

.row-key .benefits-list.even h4 {
	margin-top: -3px;
	margin-top: -0.1875rem;
}

.elementor div.row-joinery-services {
	background-color: #111111;
}

.elementor div.row-joinery-services div.e-con-inner {
	display: flex;
	align-items: center;
	padding-top: 118px;
	padding-top: 7.375rem;
	padding-bottom: 80px;
	padding-bottom: 5rem;
}

.row-joinery-services h2 {
	color: #ffffff;
	text-align: center;
	font-size: 48px;
	font-size: 3rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	max-width: 838px;
	max-width: 52.375rem;
	width: 100%;
}


div.row-tailored.luxury.building {
	background-color: #111111;
	padding-bottom: 30px;
	padding-bottom: 1.875rem;
	color: #ffffff;
}

.row-tailored.luxury.building h2 {
	color: #ffffff;
	font-size: 30px;
	font-size: 1.875rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 26px;
	margin-bottom: 1.625rem;
}

.row-tailored.luxury.building .text p {
	color: #ffffff;
	max-width: 632px;
	max-width: 39.5rem;
}

div.row-tailored.luxury.building .content-cont {
	padding-top: 0;
}

div.row-tailored.luxury.building .content-cont .content-cont-inner {
	padding-top: 0;
	padding-bottom: 239px;
	padding-bottom: 14.9375rem;
}

div.row-tailored.luxury.building .content-expanded {
	padding: 0;
	margin-top: 5px;
	margin-top: 0.3125rem;
}

div.row-tailored.luxury.building .content-expanded h3 {
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 6px;
	margin-bottom: 0.375rem;
}

div.row-tailored.luxury.building .content-expanded ul {
	padding-left: 24px;
	padding-left: 1.5rem;
	margin-top: 0;
}

div.row-tailored.luxury.building .content-expanded ul li {
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 0;
}

div.row-tailored.luxury.building .content-expanded ul li::marker {
	font-size: 29px;
	font-size: 1.8125rem;
	color: #FFA38B;
}

div.row-tailored.luxury.building .content-expanded .question {
	margin-top: 16px;
	margin-top: 1rem;
}

div.row-tailored.luxury.building .content-expanded .question .e-n-accordion-item-title {
	padding: 0;
	display: flex;
	justify-content: space-between;
	max-width: 631px;
	max-width: 39.4375rem;
	width: 100%;
}

div.row-tailored.luxury.building .content-expanded .question .e-n-accordion-item-title-text {
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.5;
}

div.row-tailored.luxury.building .content-expanded .question .e-con-full.e-flex.e-con.e-child {
	padding: 0;
	margin-top: 24px;
	margin-top: 1.5rem;
	max-width: 606px;
	max-width: 37.875rem;
	width: 100%;
}

div.row-tailored.luxury.building .content-expanded .question p {
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 0;
}

div.row-tailored.luxury.building .content-expanded .question .e-n-accordion-item {
	border-bottom: 1px solid rgba(255, 163, 139, 0.80);
	padding-bottom: 20px;
	padding-bottom: 1.25rem;
	max-width: 632px;
	max-width: 39.5rem;
}

div.row-tailored.luxury.building .content-expanded .question.sec {
	margin-top: 11px;
	margin-top: 0.6875rem;
}

div.row-tailored.luxury.building .content-expanded .question.sec p {
	margin-bottom: 30px;
	margin-bottom: 1.875rem;
}

div.row-tailored.luxury.building .content-expanded .arrow-up-close {
	margin-top: 4px;
	margin-top: 0.25rem;
	cursor: pointer;
}

div.row-tailored.building.not-fullwidth {
	background-color: #111111;
	color: #ffffff;
}

div.row-tailored.building.not-fullwidth .e-con-inner {
	max-width: 1200px;
	max-width: 75rem;
	padding-top: 74px;
	padding-top: 4.625rem;
}

div.row-tailored.building.not-fullwidth .img-cont {
	width: 50.5%;
}

div.row-tailored.building.not-fullwidth .content-cont {
	width: 49.5%;
	padding-top: 15px;
	padding-top: 0.9375rem;
	padding-left: 40px;
	padding-left: 2.5rem;
	padding-right: 0;
}

.row-tailored.building.not-fullwidth h2 {
	color: #ffffff;
	font-size: 30px;
	font-size: 1.875rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 26px;
	margin-bottom: 1.625rem;
}

.row-tailored.building.not-fullwidth .text p {
	color: #ffffff;
}

.row-tailored.building.not-fullwidth .img-cont img {
	display: block;
}

.row-tailored.building.not-fullwidth .content-expanded {
	padding: 0;
	margin-top: 13px;
	margin-top: 0.8125rem;
}

.row-tailored.building.not-fullwidth .content-expanded h3 {
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 12px;
	margin-bottom: 0.75rem;
}

.row-tailored.building.not-fullwidth .content-expanded ul {
	padding-left: 31px;
	padding-left: 1.9375rem;
	margin-top: -12px;
	margin-top: -0.75rem;
	margin-bottom: 34px;
	margin-bottom: 2.125rem;
}

.row-tailored.building.not-fullwidth .content-expanded ul li {
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 0;
}

.row-tailored.building.not-fullwidth .content-expanded ul li strong {
	font-weight: 700;
}

.row-tailored.building.not-fullwidth .content-expanded ul li::marker {
	font-size: 29px;
	font-size: 1.8125rem;
	color: #FFA38B;
}

.row-tailored.building.not-fullwidth .content-expanded .second-line {
	margin-top: -6px;
	margin-top: -0.375rem;
}

.row-tailored.building.not-fullwidth .content-expanded .button-arrow {
	display: flex;
	flex-direction: row;
	width: 100%;
	justify-content: space-between;
	padding: 0;
	align-items: center;
	margin-top: -17px;
	margin-top: -1.0625rem;
}

div.row-tailored.building.not-fullwidth .elementor-button {
	max-width: 332px;
	max-width: 20.75rem;
	min-width: 332px;
	min-width: 20.75rem;
	margin-top: 18px;
	margin-top: 1.125rem;
}

div.row-tailored.luxury.building.not-fullwidth .e-con-inner {
	padding-top: 76px;
	padding-top: 4.75rem;
	padding-bottom: 13px;
	padding-bottom: 0.8125rem;
}

div.row-tailored.luxury.building.not-fullwidth .content-cont {
	width: 55%;
	padding-left: 0;
	padding-top: 0;
}

div.row-tailored.luxury.building.not-fullwidth .img-cont {
	width: 45%;
}

div.row-tailored.luxury.building.not-fullwidth .img-cont img {
	margin-top: 15px;
	margin-top: 0.9375rem;
}

div.row-tailored.luxury.building.not-fullwidth .content-cont .content-cont-inner {
	padding: 0;
}

div.row-tailored.luxury.building.not-fullwidth .text p {
	margin-bottom: 30px;
	margin-bottom: 1.875rem;
}

div.row-tailored.building.cad {
	background-color: #111111;
	padding-top: 140px;
	padding-top: 8.75rem;
	color: #ffffff;
	padding-bottom: 76px;
	padding-bottom: 4.75rem;
}

div.row-tailored.building.cad .img-cont {
	width: 50.5%;
}

div.row-tailored.building.cad .content-cont {
	width: 49.5%;
	padding-top: 13px;
	padding-top: 0.8125rem;
	padding-left: 37px;
	padding-left: 2.3125rem;
	padding-bottom: 203px;
	padding-bottom: 12.6875rem;
}

div.row-tailored.building.cad h2 {
	color: #ffffff;
	font-size: 30px;
	font-size: 1.875rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 26px;
	margin-bottom: 1.625rem;
}

div.row-tailored.building.cad .text p {
	color: #ffffff;
	max-width: 554px;
	max-width: 34.625rem;
}

div.row-tailored.building.cad .content-expanded {
	padding: 0;
	margin-top: 4px;
	margin-top: 0.25rem;
}

div.row-tailored.building.cad .content-expanded .button-arrow {
	display: flex;
	flex-direction: row;
	max-width: 554px;
	max-width: 34.625rem;
	width: 100%;
	justify-content: space-between;
	padding: 0;
	align-items: center;
	margin-top: -4px;
	margin-top: -0.25rem;
}

div.row-tailored.building.cad .elementor-button {
	max-width: 379px;
	max-width: 23.6875rem;
	min-width: 379px;
	min-width: 23.6875rem;
	margin-top: 18px;
	margin-top: 1.125rem;
}

.read-more-btn-show {
	color: #FFA38B;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	text-decoration-line: underline;
	cursor: pointer;
	margin-top: -3px;
	margin-top: -0.1875rem;
	text-align: left;
	width: 100%;
	max-width: 130px;
	max-width: 8.125rem;
	min-width: 130px;
	min-width: 8.125rem;
	padding: 0;
	background-color: transparent;
	border: none;
}

div.row-tailored.luxury.building.open .content-cont .content-cont-inner {
	padding-bottom: 10px;
	padding-bottom: 0.625rem;
}

div.row-tailored.building.cad.open {
	padding-top: 131px;
	padding-top: 8.1875rem;
}

div.row-tailored.building.cad.open .content-cont {
	padding-top: 28px;
	padding-top: 1.75rem;
	padding-bottom: 10px;
	padding-bottom: 0.625rem;
}

div.row-tailored.building.not-fullwidth.open {
	padding-bottom: 63px;
	padding-bottom: 3.9375rem;

}


.elementor div.row-results {
	padding-top: 110px;
	padding-top: 6.875rem;
	padding-bottom: 24px;
	padding-bottom: 1.5rem;
	background-color: #000000;
	display: flex;
	align-items: center;
	padding-left: 0;
	padding-right: 0;
}

.row-results h2 {
	color: #ffffff;
	text-align: center;
	font-size: 48px;
	font-size: 3rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	max-width: 664px;
	max-width: 41.5rem;
	width: 100%;
}

.row-results p {
	color: #ffffff;
	text-align: center;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	max-width: 732px;
	max-width: 45.75rem;
	width: 100%;
}

.row-results .results-video-cont {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 21px;
	gap: 1.3125rem;
	padding: 0;
}

.row-results.project-walk .results-video-cont {
	grid-template-columns: repeat(2, 1fr);
}

.elementor div.row-results.project-walk {
	background-color: #ffffff;
}

.row-results.project-walk .results-video-cont .results-video {
	height: 557px;
	height: 34.8125rem;
}

.row-results.project-walk h2 {
	color: #000000;
	max-width: 100%;
}

.row-results .results-video-cont .results-video {
	height: 361px;
	height: 22.5625rem;
}

.row-results .results-video-cont .results-video .elementor-wrapper,
.row-results .results-video-cont .results-video .elementor-custom-embed-image-overlay,
.row-results .results-video-cont .results-video .elementor-custom-embed-image-overlay img {
	height: 100% !important;
	width: 100% !important;
	object-fit: cover;
	/* This prevents the 'cut' look by scaling the image correctly */
}

/* Required so hover works properly */
.row-results .results-video-cont .video-hover-scale .elementor-wrapper {
	overflow: hidden;
}

/* Initial state */
.row-results .results-video-cont .video-hover-scale .elementor-custom-embed-image-overlay {
	transition: transform 0.5s ease;
}

/* Hover zoom */
.row-results .results-video-cont .video-hover-scale:hover .elementor-custom-embed-image-overlay {
	transform: scale(1.1);
}


.elementor div.row-real-results {
	padding-top: 196px;
	padding-top: 12.25rem;
	padding-bottom: 0;
	background-color: #000000;
	display: flex;
	align-items: center;
	padding-left: 0;
	padding-right: 0;
	gap: 0;
	background-attachment: fixed;
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: 78% auto;
}

.row-real-results h2 {
	color: #ffffff;
	text-align: center;
	font-size: 48px;
	font-size: 3rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	max-width: 791px;
	max-width: 49.4375rem;
	width: 100%;
	margin-bottom: 20px;
	margin-bottom: 1.25rem;
}

.row-real-results p {
	color: #ffffff;
	text-align: center;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	max-width: 791px;
	max-width: 49.4375rem;
	width: 100%;
}

.elementor .row-real-results .case-study-main.first {
	margin-top: 108px;
	margin-top: 6.75rem;
}

.elementor .row-real-results .case-study-main {
	display: flex;
	flex-direction: row;
	padding: 0;
	gap: 0;
}

.elementor .row-real-results .case-study-main div {
	padding: 0;
	background-color: #000000;
}

.row-real-results .case-study-main .case-study-image {
	width: 50.3%;
	min-height: 557px;
	min-height: 34.8125rem;
}

.row-real-results .case-study-main .case-study-content-main {
	display: flex;
	flex-direction: column;
	width: 49.7%;
	justify-content: center;
}

.elementor .row-real-results .case-study-main .case-study-content {
	padding-left: 38px;
	padding-left: 2.375rem;
	max-width: 670px;
	max-width: 41.875rem;
	width: 100%;
	padding-top: 41px;
	padding-top: 2.5625rem;
	padding-bottom: 20px;
	padding-bottom: 1.25rem;
}

.row-real-results .case-study-content-main h3 {
	color: #FFF;
	font-size: 48px;
	font-size: 3rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
}

.row-real-results .case-study-content-main p {
	color: #FFF;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	max-width: 482px;
	max-width: 30.125rem;
	width: 100%;
	text-align: left;
}

.row-real-results .case-study-main.right-image .case-study-image {
	width: 49.7%;
}

.row-real-results .case-study-main.right-image .case-study-content-main {
	width: 50.3%;
	flex-direction: column;
	align-items: flex-end;
}

.elementor .row-real-results .case-study-main.right-image .case-study-content {
	padding-right: 38px;
	padding-right: 2.375rem;
	max-width: 691px;
	max-width: 43.1875rem;
	width: 100%;
	padding-top: 41px;
	padding-top: 2.5625rem;
	padding-bottom: 20px;
	padding-bottom: 1.25rem;
}

div.row-portfolio.building .content .e-con-inner {
	margin-top: -3px;
	margin-top: -0.1875rem;
}

.elementor div.row-portfolio.building .e-con-inner .elementor-button,
.elementor div.row-parallax-landscape.building-industry .e-con-inner .elementor-button {
	max-width: 379px;
	max-width: 23.6875rem;
	min-width: 379px;
	min-width: 23.6875rem;
}

.row-testimonials.building .testimonials-cont h2 {
	max-width: 865px;
	max-width: 54.0625rem;
}

div.row-testimonials.building .e-con-inner {
	padding-bottom: 130px;
	padding-bottom: 8.125rem;
}

.row-hero.about-section.row-about.building h2 {
	max-width: 654px;
	max-width: 40.875rem;
	font-size: 48px;
	font-size: 3rem;
	line-height: 1.2;
}

.row-hero.about-section.row-about.building p {
	max-width: 577px;
	max-width: 36.0625rem;
}


.elementor div.row-hero.about-section.row-about.building .e-con-inner .elementor-button {
	max-width: 215px;
	max-width: 13.4375rem;
}

div.row-hero.about-section.row-about.building .hero-cont-sub {
	max-width: 675px;
	max-width: 42.1875rem;
}

div.row-hero.about-section.row-about.building .hero-cont {
	width: 54%;
	padding-top: 176px;
	padding-top: 11rem;
	padding-bottom: 126px;
	padding-bottom: 7.875rem;
}

div.row-hero.about-section.row-about.building div.hero-img {
	width: 46%;
	background-position-x: 85%;
}

.elementor div.row-as-seen-in .e-con-inner,
.elementor .row-portfolio-list.portfolio-inner.row-as-seen-in-section .e-con-inner {
	padding-top: 98px;
	padding-top: 6.125rem;
	padding-bottom: 120px;
	padding-bottom: 7.5rem;
	display: flex;
	align-items: center;
	gap: 0;
	max-width: 1199px;
	max-width: 74.9375rem;
}

.elementor .row-portfolio-list.portfolio-inner.row-as-seen-in-section {
	background-color: #ffffff;
}

.row-as-seen-in h2,
.elementor .row-portfolio-list.row-as-seen-in-section h2 {
	color: #000000;
	text-align: center;
	font-size: 48px;
	font-size: 3rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	max-width: 920px;
	max-width: 57.5rem;
	width: 100%;
	margin-bottom: 20px;
	margin-bottom: 1.25rem;
}

.row-as-seen-in h3,
.elementor .row-portfolio-list.row-as-seen-in-section h3 {
	color: #000000;
	text-align: center;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.5;
	max-width: 606px;
	max-width: 37.875rem;
	width: 100%;
	margin-bottom: 6px;
	margin-bottom: 0.375rem;
}

.row-as-seen-in p,
.elementor .row-portfolio-list.row-as-seen-in-section p {
	color: #000000;
	text-align: center;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	max-width: 658px;
	max-width: 41.125rem;
	width: 100%;
}

.row-as-seen-in .seen-in-list {
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	gap: 1.5rem;
	margin-top: 18px;
	margin-top: 1.125rem;
}

.row-as-seen-in .seen-in-list div {
	padding: 0;
}

.row-as-seen-in .seen-in {
	display: flex;
	gap: 10px;
	gap: 0.625rem;
}

.row-as-seen-in .seen-in img {
	width: 384px;
	width: 24rem;
	height: 495px;
	height: 30.9375rem;
}

.row-as-seen-in .seen-in h4 {
	color: #000000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.5;
	text-align: left;
	margin-top: 13px;
	margin-top: 0.8125rem;
	margin-bottom: 4px;
	margin-bottom: 0.25rem;
}

.row-as-seen-in .seen-in p {
	margin-bottom: 0;
	color: #000000;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.2;
	text-align: left;
}


.elementor div.row-faq .e-con-inner {
	padding-bottom: 119px;
	padding-bottom: 7.4375rem;
	padding-top: 118px;
	padding-top: 7.375rem;
	display: flex;
	align-items: center;
}

.row-faq h2 {
	color: #171717;
	text-align: center;
	font-size: 48px;
	font-size: 3rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
}

.elementor div.row-faq .e-con-inner div.faq-section {
	max-width: 950px;
	max-width: 59.375rem;
	width: 100%;
	margin-top: 36px;
	margin-top: 2.25rem;
}

.row-faq .faq-section .e-n-accordion-item-title-text {
	color: #000000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.5;
}

.row-faq .faq-section p {
	color: #000000;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: 0;
	padding-left: 10px;
	padding-left: 0.625rem;
	margin-top: 27px;
	margin-top: 1.6875rem;
}

.row-faq .faq-section ul li {
	color: #000000;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: 0;
}

.row-faq .faq-section ul li a {
	color: #000000;
}

.row-faq .faq-section ul li a:hover {
	opacity: .8;
}

.row-faq .faq-section summary.e-n-accordion-item-title {
	display: flex;
	justify-content: space-between;
	padding: 23px 20px 4px 20px;
	padding: 1.4375rem 1.25rem 0.25rem 1.25rem;
}

.row-faq .faq-section summary.e-n-accordion-item-title[aria-expanded="true"] {
	padding: 10px 20px;
	padding: 0.625rem 1.25rem;
}

.row-faq .faq-section .e-n-accordion-item {
	border-bottom: 1px solid #000000;
	padding-bottom: 22px;
	padding-bottom: 1.375rem;
}



/*homeowners */
.row-hero-improva.homeowner h1 {
	max-width: 632px;
	max-width: 39.5rem;
	margin-top: 12px;
	margin-top: 0.75rem;
}

.row-hero-improva.homeowner p {
	max-width: 586px;
	max-width: 36.625rem;
}

div.row-partners.homeowner .e-con-inner {
	padding: 10px 52px;
	padding: 0.625rem 3.25rem;
}

div.row-with-testi.homeowner .e-con-inner {
	padding-bottom: 48px;
	padding-bottom: 3rem;
}

.row-key.homeowner .key-head p {
	max-width: 716px;
	max-width: 44.75rem;
}

.row-key.homeowner .benefits-list .benefits-content {
	max-width: 410px;
	max-width: 25.625rem;
}

.row-key.homeowner .benefits-main-cont {
	padding-left: 34px;
	padding-left: 2.125rem;
	margin-top: 34px;
	margin-top: 2.125rem;
}

.row-key.homeowner .benefits-list h4 {
	margin-top: -4px;
	margin-top: -0.25rem;
}

.elementor .row-key.homeowner .e-con-inner {
	max-width: 1435px;
	max-width: 89.6875rem;
}

.elementor .row-key.homeowner .benefits-list.even {
	margin-bottom: -46px;
	margin-bottom: -2.875rem;
}

.row-key.homeowner .benefits-list.even p {
	max-width: 373px;
	max-width: 23.3125rem;
	width: 100%;
}

.elementor div.row-key.homeowner {
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.85) 30%, rgba(255, 255, 255, 0) 100%), url(/wp-content/uploads/2026/03/Renovation-Effortless-Improva.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom;
}

.elementor div.row-joinery-services.homeowner div.e-con-inner {
	padding-top: 94px;
	padding-top: 5.875rem;
	padding-bottom: 69px;
	padding-bottom: 4.3125rem;
}

.row-tailored.luxury.building.homeowner h2 {
	margin-top: -8px;
	margin-top: -0.5rem;
}

div.row-tailored.luxury.building.homeowner .content-cont .content-cont-inner {
	padding-bottom: 124px;
	padding-bottom: 7.75rem;
}

div.row-tailored.building.cad.homeowner .content-cont {
	padding-top: 61px;
	padding-top: 3.8125rem;
	padding-bottom: 162px;
	padding-bottom: 10.125rem;
}

div.row-tailored.building.cad.homeowner {
	padding-bottom: 59px;
	padding-bottom: 3.6875rem;
}

div.row-tailored.luxury.building.not-fullwidth.homeowner .img-cont img {
	margin-top: 7px;
	margin-top: 0.4375rem;
}

div.row-tailored.building.not-fullwidth.homeowner .elementor-button {
	max-width: 379px;
	max-width: 23.6875rem;
	min-width: 379px;
	min-width: 23.6875rem;
	margin-top: 14px;
	margin-top: 0.875rem;
}

div.row-tailored.luxury.building.homeowner .content-cont .content-cont-inner.homeowner {
	padding-bottom: 40px;
	padding-bottom: 2.5rem;
}

div.row-tailored.luxury.building.homeowner .content-expanded {
	margin-top: 1px;
	margin-top: 1px;
}

div.row-tailored.luxury.building.homeowner .content-expanded .question {
	margin-top: 32px;
	margin-top: 2rem;
}

div.row-tailored.luxury.building.homeowner .content-expanded .question .e-n-accordion-item {
	padding-bottom: 29px;
	padding-bottom: 1.8125rem;
}

div.row-tailored.luxury.building.homeowner .content-expanded .question.sec {
	margin-top: 4px;
	margin-top: 0.25rem;
}

div.row-tailored.luxury.building.homeowner .content-expanded .question.sec p {
	margin-bottom: 22px;
	margin-bottom: 1.375rem;
}

div.row-tailored.luxury.building.homeowner .content-expanded .arrow-up-close {
	margin-top: 27px;
	margin-top: 1.6875rem;
}

.arrow-up-close {
	cursor: pointer;
}

div.row-tailored.luxury.building.homeowner.open .content-cont .content-cont-inner {
	padding-bottom: 20px;
	padding-bottom: 1.25rem;
}

div.row-tailored.building.cad.homeowner.open {
	padding-top: 39px;
	padding-top: 2.4375rem;
}

div.row-tailored.building.cad.homeowner.open .content-cont {
	padding-top: 73px;
	padding-top: 4.5625rem;
	padding-bottom: 1px;
	padding-bottom: 1px;
}

div.row-tailored.building.cad.homeowner .content-expanded {
	max-width: 555px;
	max-width: 34.6875rem;
}

div.row-tailored.building.cad.homeowner.open .content-expanded p {
	max-width: 555px;
	max-width: 34.6875rem;
}

div.row-tailored.building.cad.homeowner .content-expanded h3 {
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 6px;
	margin-bottom: 0.375rem;
	margin-top: 34px;
	margin-top: 2.125rem;
}

div.row-tailored.building.cad.homeowner .content-expanded ul {
	padding-left: 24px;
	padding-left: 1.5rem;
	margin-top: 23px;
	margin-top: 1.4375rem;
	margin-bottom: 46px;
	margin-bottom: 2.875rem;
}

div.row-tailored.building.cad.homeowner .content-expanded ul li {
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 0;
}

div.row-tailored.building.cad.homeowner .content-expanded ul li::marker {
	font-size: 29px;
	font-size: 1.8125rem;
	color: #FFA38B;
}

.elementor div.row-results.homeowner {
	padding-top: 107px;
	padding-top: 6.6875rem;
}

.row-real-results.homeowner p {
	max-width: 914px;
	max-width: 57.125rem;
}

.elementor .row-real-results.homeowner .case-study-main.right-image .case-study-content {
	max-width: 645px;
	max-width: 40.3125rem;
}

.row-real-results.homeowner .case-study-content-main p {
	max-width: 482px;
	max-width: 30.125rem;
}

div.row-testimonials.building.homeowner .e-con-inner {
	padding-top: 123px;
	padding-top: 7.6875rem;
	padding-bottom: 127px;
	padding-bottom: 7.9375rem;
}

.row-hero.about-section.row-about.building.homeowner h2 {
	max-width: 680px;
	max-width: 42.5rem;
	width: 101%;
}

/*portfolio */
.elementor .row-portfolio-list .e-con-inner {
	max-width: 1200px;
	max-width: 75rem;
	padding-top: 101px;
	padding-top: 6.3125rem;
	padding-bottom: 150px;
	padding-bottom: 9.375rem;
	gap: 0;
}

.row-portfolio-list h1 {
	color: #000000;
	font-size: 50px;
	font-size: 3.125rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 8px;
	margin-bottom: 0.5rem;
}

.row-portfolio-list p {
	color: #000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	max-width: 1035px;
	max-width: 64.6875rem;
	width: 100%;
}

.row-portfolio-list .porfolio-list {
	margin-top: 38px;
	margin-top: 2.375rem;
}

.row-portfolio-list .porfolio-list .elementor-posts-container.elementor-posts.elementor-posts--skin-classic.elementor-grid {
	column-gap: 30px;
	column-gap: 1.875rem;
	row-gap: 40px;
	row-gap: 2.5rem;
	grid-template-columns: repeat(3, 1fr);
}

.elementor .row-portfolio-list .porfolio-list .elementor-post__thumbnail img {
	width: 380px;
	width: 23.75rem;
	max-height: 474px;
	max-height: 29.625rem;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	image-rendering: pixelated;
	object-fit: cover;
}

.elementor .row-portfolio-list.blog-inner .porfolio-list .elementor-post__thumbnail img {
	height: 474px;
	height: 29.625rem;
	width: 380px;
	width: 23.75rem;
}

.row-portfolio-list .porfolio-list h3.elementor-post__title {
	margin-bottom: 11px;
	margin-bottom: 0.6875rem;
	text-align: left;
}

.row-portfolio-list .porfolio-list h3.elementor-post__title a {
	color: #000000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.5;
}

.row-portfolio-list .porfolio-list .elementor-post__excerpt p {
	color: #000000;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.2;
	text-align: left;
}

.row-portfolio-list .porfolio-list .elementor-post__read-more-wrapper {
	margin-top: 12px;
	margin-top: 0.75rem;
	order: 4;
}

.row-portfolio-list .porfolio-list .elementor-post__read-more-wrapper a.elementor-post__read-more {
	color: #FFA38B;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.66667;
	position: relative;
	padding-right: 30px;
	padding-right: 1.875rem;
	display: flex;
}

.row-portfolio-list .porfolio-list .elementor-post__read-more-wrapper .elementor-post__read-more::after {
	content: "";
	display: inline-block;
	width: 28px;
	width: 1.75rem;
	height: 18px;
	height: 1.125rem;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="18" viewBox="0 0 28 18" fill="none"><path d="M1.21094 7.70443C0.542338 7.70443 0.000331163 8.24644 0.000331163 8.91504C0.000331163 9.58364 0.542338 10.1256 1.21094 10.1256V8.91504V7.70443ZM27.4897 9.77107C27.9625 9.2983 27.9625 8.53178 27.4897 8.05901L19.7854 0.354759C19.3127 -0.118011 18.5462 -0.118011 18.0734 0.354759C17.6006 0.827531 17.6006 1.59404 18.0734 2.06682L24.9216 8.91504L18.0734 15.7633C17.6006 16.236 17.6006 17.0025 18.0734 17.4753C18.5462 17.9481 19.3127 17.9481 19.7854 17.4753L27.4897 9.77107ZM1.21094 8.91504V10.1256H26.6337V8.91504V7.70443H1.21094V8.91504Z" fill="%23FFA38B"/></svg>');
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: 18px;
	margin-left: 1.125rem;
	margin-top: 6px;
	margin-top: 0.375rem;
}

.elementor .row-portfolio-list .porfolio-list .elementor-button-wrapper {
	margin-top: 57px;
	margin-top: 3.5625rem;
	display: flex;
	justify-content: center;
}

.row-portfolio-list .porfolio-list .elementor-button-wrapper .elementor-button {
	max-width: 281px;
	max-width: 17.5625rem;
	width: 100%;
	height: 66px;
	height: 4.125rem;
	display: flex;
	padding: 18px;
	padding: 1.125rem;
	justify-content: center;
	align-items: center;
	border-radius: 1000px;
	border-radius: 62.5rem;
	background: #FFA38B;
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
}

.elementor div.row-as-seen-in.portfolio-page {
	background-color: #F4F4F4;
}

.elementor div.row-as-seen-in.portfolio-page .e-con-inner {
	max-width: 1200px;
	max-width: 75rem;
	align-items: flex-start;
	padding-top: 116px;
	padding-top: 7.25rem;
}

.row-as-seen-in.portfolio-page .seen-in {
	padding: 0;
}

.row-as-seen-in.portfolio-page h2 {
	font-size: 50px;
	font-size: 3.125rem;
	max-width: 100%;
}

.row-as-seen-in.portfolio-page .seen-in-list {
	column-gap: 30px;
	column-gap: 1.875rem;
	row-gap: 40px;
	row-gap: 2.5rem;
	margin-top: 40px;
	margin-top: 2.5rem;
}

.row-as-seen-in.portfolio-page .seen-in h4 {
	margin-top: 10px;
	margin-top: 0.625rem;
	margin-bottom: 1px;
	margin-bottom: 1px;
}

.row-as-seen-in.portfolio-page .case-study-btn {
	margin-top: 17px;
	margin-top: 1.0625rem;
	display: flex;
	flex-direction: row;
}

.row-as-seen-in.portfolio-page .case-study-btn p {
	color: #FFA38B;
}

.row-testimonials.portfolio-page .testimonials-cont h2 {
	max-width: 865px;
	max-width: 54.0625rem;
}

div.row-testimonials.portfolio-page .e-con-inner {
	padding-bottom: 117px
}

.row-hero.about-section.row-about.portfolio-page {
	min-height: 788px;
	min-height: 49.25rem;
}

.row-hero.about-section.row-about.portfolio-page h2 {
	font-size: 48px;
	font-size: 3rem;
	color: #000000;
	line-height: 1.2;
	margin-bottom: 26px;
	margin-bottom: 1.625rem;
}

.elementor div.row-hero.about-section.row-about.portfolio-page .elementor-button {
	max-width: 215px;
	max-width: 13.4375rem;
}

div.row-hero.about-section.row-about.portfolio-page .hero-cont {
	justify-content: center;
	padding-top: 191px;
	padding-top: 11.9375rem;
}

/*porfolion inner */
.elementor div.row-portfolio-inner .e-con-inner {
	max-width: 1200px;
	max-width: 75rem;
	padding-top: 104px;
	padding-top: 6.5rem;
	padding-bottom: 128px;
	padding-bottom: 8rem;
	gap: 24px;
	gap: 1.5rem;
}

.elementor div.row-portfolio-inner div.e-con-inner div.hero-cont-port {
	min-height: 660px;
	min-height: 41.25rem;
	display: flex;
	justify-content: flex-end;
	gap: 0;
	padding: 20px 20px 35px 39px;
	padding: 1.25rem 1.25rem 2.1875rem 2.4375rem;
	background-size: cover !important;
}

.elementor div.row-portfolio-inner div.e-con-inner div.hero-cont-port div {
	padding-left: 0;
	padding-right: 0;
	padding-top: 0;
}

.row-portfolio-inner h1 {
	color: #ffffff;
	font-size: 36px;
	font-size: 2.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	max-width: 441px;
	max-width: 27.5625rem;
	width: 100%;
	margin-bottom: 15px;
	margin-bottom: 0.9375rem;
}

.elementor .row-portfolio-inner .port-details {
	display: flex;
	flex-direction: row;
	gap: 8px;
	gap: 0.5rem;
	padding-bottom: 6px;
	padding-bottom: 0.375rem;
}

.row-portfolio-inner .hero-bold p {
	margin-bottom: 0px;
	margin-bottom: 0rem;
	color: #ffffff;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
}

.row-portfolio-inner .hero-desc {
	margin-bottom: 0px;
	margin-bottom: 0rem;
	color: #ffffff;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.2;
}

.row-portfolio-inner .port-details .hero-desc p {
	margin-bottom: 0;
}

.row-portfolio-inner .port-details .hero-desc p a {
	color: #ffffff;
	text-decoration: underline;
}

.row-portfolio-inner .port-details .hero-desc p a:hover {
	color: #FFA38B;
}

.elementor .row-portfolio-inner .port-details.magazine .hero-desc {
	max-width: 353px;
	max-width: 22.0625rem;
	width: 100%;
}

.elementor .row-portfolio-inner .portfolio-gallery-section {
	padding: 0;
	display: flex;
	flex-direction: row;
	gap: 24px;
	gap: 1.5rem;
}

.elementor .row-portfolio-inner .portfolio-gallery-section img {
	min-height: 600px;
	object-fit: cover;
	object-position: bottom;
	image-rendering: pixelated;
}

.row-portfolio-inner .acf-gallery img {
	width: 100%;
	height: auto;
	display: block;
}

/* Image styling */
.row-portfolio-inner .acf-gallery img {
	width: 100%;
	height: auto;
	display: block;
}

/* Base inner spacing */
.row-portfolio-inner .acf-gallery {
	display: grid;
	gap: 24px;
	gap: 1.5rem;
}

.row-portfolio-inner .porfolio-images-cont .elementor-shortcode {
	display: flex;
	flex-direction: column;
	gap: 24px;
	gap: 1.5rem;
}

/* Desktop layouts */
.row-portfolio-inner .acf-gallery.acf-2col {
	grid-template-columns: repeat(2, 1fr);
}

.row-portfolio-inner .acf-gallery.acf-3col {
	grid-template-columns: repeat(3, 1fr);
}

.row-portfolio-inner .acf-gallery.acf-big {
	grid-template-columns: 1fr;
}

.row-portfolio-inner .portfolio-inner-subhead {
	display: flex;
	align-items: center;
	margin-top: 98px;
	margin-top: 6.125rem;
}

.row-portfolio-inner .portfolio-inner-subhead h2 {
	color: #000;
	text-align: center;
	font-size: 36px;
	font-size: 2.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	max-width: 1022px;
	max-width: 63.875rem;
	margin-bottom: 19px;
	margin-bottom: 1.1875rem;
}

.row-portfolio-inner .portfolio-inner-subhead .elementor-button {
	display: flex;
	padding: 18px;
	padding: 1.125rem;
	justify-content: center;
	align-items: center;
	border-radius: 1000px;
	border-radius: 62.5rem;
	background: #FFA38B;
	max-width: 379px;
	max-width: 23.6875rem;
	min-width: 379px;
	min-width: 23.6875rem;
	width: 100%;
	height: 66px;
	height: 4.125rem;
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
}

.elementor .row-portfolio-list.portfolio-inner {
	background-color: #F4F4F4;
}

.elementor .row-portfolio-list.portfolio-inner .e-con-inner {
	padding-top: 97px;
	padding-top: 6.0625rem;
	padding-bottom: 100px;
	padding-bottom: 6.25rem;
}

.row-portfolio-list.portfolio-inner h2 {
	text-align: center;
	color: #000000;
	font-size: 50px;
	font-size: 3.125rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 8px;
	margin-bottom: 0.5rem;
}

.row-portfolio-list.portfolio-inner .porfolio-list {
	margin-top: 55px;
	margin-top: 3.4375rem;
}

.row-hero.about-section.row-about.portfolio-page.portfolio-inner h2 {
	color: #ffffff;
}


/*as seen in page */
.elementor .row-portfolio-list.as-seen .e-con-inner {
	padding-bottom: 142px;
	padding-bottom: 8.875rem;
}

.row-portfolio-list.as-seen .porfolio-list .elementor-posts-container.elementor-posts.elementor-posts--skin-classic.elementor-grid {
	column-gap: 24px;
	column-gap: 1.5rem;
	row-gap: 52px;
	row-gap: 3.25rem;
}

.row-portfolio-list.as-seen .porfolio-list .elementor-post__thumbnail img {
	width: 384px;
	width: 24rem;
	max-height: 496px;
	max-height: 31rem;
}

.row-portfolio-list.as-seen .porfolio-list h3.elementor-post__title {
	margin-bottom: 14px;
	margin-bottom: 0.875rem;
}

.elementor .row-portfolio-list.as-seen .porfolio-list .elementor-button-wrapper {
	margin-top: 50px;
	margin-top: 3.125rem;
}

.row-portfolio-list.as-seen .porfolio-list .elementor-button-wrapper .elementor-button {
	max-width: 271px;
	max-width: 16.9375rem;
}


/*as seen in inner */

.elementor .row-as-seen-inner-gallery .as-seen-images-gallery {
	display: flex;
	flex-direction: column;
	gap: 24px;
	gap: 1.5rem;
}

.elementor .row-as-seen-inner-gallery .as-seen-images-gallery .as-seen-images-gallery-box {
	display: flex;
	flex-direction: row;
	gap: 24px;
	gap: 1.5rem;
	padding: 0;
	justify-content: center;
}

.elementor .row-as-seen-inner-gallery .as-seen-images-gallery .as-seen-images-gallery-box img {
	width: 100%;
	height: auto;
	display: block;
	min-height: 796px;
	object-fit: cover;
}

.elementor .row-as-seen-inner-gallery .e-con-inner {
	max-width: 1220px;
	max-width: 76.25rem;
	padding-top: 94px;
	padding-top: 5.875rem;
	padding-bottom: 105px;
	padding-bottom: 6.5625rem;
	gap: 4px;
	gap: 0.25rem;
}

.elementor .row-as-seen-inner-gallery .seen-inner-cont {
	/*padding-top: 29px;
	padding-top: 1.8125rem; */
	padding-top: 10px;
	padding-top: 0.625rem;
	display: flex;
	justify-content: flex-start;
}

.elementor .row-as-seen-inner-gallery .as-seen-inner-hero {
	padding: 0;
	display: flex;
	flex-direction: row;
}

.row-as-seen-inner-gallery h1 {
	color: #000000;
	font-size: 36px;
	font-size: 2.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	max-width: 544px;
	max-width: 34rem;
	width: 100%;
}

.row-as-seen-inner-gallery p {
	color: #000000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	max-width: 544px;
	max-width: 34rem;
	width: 100%;
}

.row-as-seen-inner-gallery p a {
	color: #FFA38B;
	overflow-wrap: break-word;
}

.row-as-seen-inner-gallery p a:hover {
	color: rgb(255, 163, 139, .6)
}

.row-as-seen-inner-gallery .seen-inner-img {
	padding-left: 0;
}

.row-as-seen-inner-gallery .seen-inner-img img {
	width: 588px;
	width: 36.75rem;
	min-height: 787px;
	min-height: 49.1875rem;
	object-fit: cover;
}

.row-as-seen-inner-gallery .seen-inner-img .crisp img {
	image-rendering: pixelated;
}

.row-as-seen-inner-gallery .as-seen-in-wrapper {
	width: 100%;
	gap: 24px;
	gap: 1.5rem;
	display: flex;
	flex-direction: column;
}

.row-as-seen-inner-gallery .as-seen-in-gallery {
	display: grid;
	gap: 24px;
	gap: 1.5rem;
}

.row-as-seen-inner-gallery .as-seen-in-2col {
	grid-template-columns: repeat(2, 1fr);
}

.row-as-seen-inner-gallery .as-seen-in-big {
	grid-template-columns: 1fr;
}

.row-as-seen-inner-gallery .as-seen-in-gallery img {
	width: 100%;
	height: auto;
	display: block;
}

.row-portfolio-list.portfolio-inner.as-seen-inner .portfolio_page .elementor-post__text {
	display: flex;
	flex-direction: column;
}

.row-portfolio-list.as-seen-inner .porfolio-list .elementor-post__meta-data,
.row-portfolio-list.as-seen .porfolio-list .elementor-post__meta-data {
	order: 1;
	margin-top: 4px;
	margin-top: 0.25rem;
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
}

.row-portfolio-list.as-seen-inner .porfolio-list h3.elementor-post__title,
.row-portfolio-list.as-seen .porfolio-list h3.elementor-post__title {
	order: 2;
	margin-bottom: 13px;
	margin-bottom: 0.8125rem;
}

.row-portfolio-list.as-seen-inner .porfolio-list .elementor-post__excerpt,
.row-portfolio-list.as-seen .porfolio-list .elementor-post__excerpt {
	order: 3;
}

.row-portfolio-list.as-seen-inner .porfolio-list span.elementor-post-date,
.row-portfolio-list.as-seen .porfolio-list span.elementor-post-date {
	color: #7D7D7D;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
}

.elementor .row-portfolio-list.as-seen-inner .porfolio-list .elementor-button-wrapper {
	margin-top: 51px;
	margin-top: 3.1875rem;
}

.row-portfolio-list.as-seen-inner .porfolio-list .elementor-button-wrapper .elementor-button {
	max-width: 441px;
	max-width: 27.5625rem;
}

.row-portfolio-list.as-seen-inner .as-seen-in-main {
	display: flex;
	justify-content: center;
}

.row-portfolio-list.as-seen-inner .as-seen-in-main .elementor-button {
	margin-top: 51px;
	margin-top: 3.1875rem;
	max-width: 441px;
	max-width: 27.5625rem;
	width: 100%;
	height: 66px;
	height: 4.125rem;
	display: flex;
	padding: 18px;
	padding: 1.125rem;
	justify-content: center;
	align-items: center;
	border-radius: 1000px;
	border-radius: 62.5rem;
	background: #FFA38B;
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
}


/*case study inner */
.row-portfolio-inner.case-study-inner .magazine .hero-desc p,
.row-portfolio-inner.case-study-inner .port-details .hero-desc p {
	margin-bottom: 0;
}

.row-portfolio-inner.case-study-inner .magazine .hero-desc p a {
	color: #ffffff;
	text-decoration: underline;
}

.row-portfolio-inner.case-study-inner .magazine .hero-desc p a:hover {
	color: #FFA38B;
}

.row-portfolio-inner.case-study-inner h1 {
	max-width: 100%;
}

.elementor div.row-faq.case-study-inner .e-con-inner {
	padding-top: 0;
	padding-bottom: 0;
}

.elementor div.row-faq.case-study-inner .e-con-inner div.faq-section {
	max-width: 1200px;
	max-width: 75rem;
}

.row-faq.case-study-inner .faq-section summary.e-n-accordion-item-title[aria-expanded="true"],
.row-faq.case-study-inner .faq-section summary.e-n-accordion-item-title,
.row-faq.case-study-inner .faq-section p {
	padding-left: 0;
}

.row-faq.case-study-inner .faq-section p {
	margin-top: 0;
	margin-left: -10px;
	margin-left: -0.625rem;
}

.row-faq.case-study-inner .faq-section p {
	margin-bottom: 26px;
	margin-bottom: 1.625rem;
}

.elementor div.row-portfolio-inner.case-study-inner.case-hero .e-con-inner {
	padding-bottom: 0;
}

.row-portfolio-inner.case-study-inner .portfolio-inner-subhead.case-testi {
	margin-top: 0;
}

.row-portfolio-inner.case-study-inner .portfolio-inner-subhead.case-testi p {
	color: #000000;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: italic;
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: 0;
	text-align: center;
}

.elementor div.row-portfolio-inner.case-study-inner.image-testi .e-con-inner {
	padding-top: 25px;
	padding-top: 1.5625rem;
}

.elementor div.row-portfolio-inner.case-study-inner.image-testi .acf-gallery img {
	max-height: 660px;
	max-height: 41.25rem;
	height: 100%;
	object-fit: cover;
	object-position: bottom;
}


/*blog archive */
.elementor .row-portfolio-list.blog-list .e-con-inner {
	padding-bottom: 157px;
	padding-bottom: 9.8125rem;
}

.elementor .row-portfolio-list.blog-list .porfolio-list .elementor-post__thumbnail img {
	height: 474px;
	height: 29.625rem;
	object-fit: cover;
}

.row-portfolio-list.blog-list .porfolio-list article {
	/*border: 1px solid #D9D9D9; */
	background: #FFF;
}

.row-portfolio-list.blog-list .porfolio-list .elementor-post__text {
	padding: 18px 20px 29px 0px;
	padding: 1.125rem 1.25rem 1.8125rem 0rem;
}

.row-portfolio-list.blog-list .porfolio-list .elementor-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 99px;
	margin-top: 6.1875rem;
}

.row-portfolio-list.blog-list .porfolio-list .elementor-pagination .page-numbers.current {
	color: #000000;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	display: flex;
	width: 30px;
	width: 1.875rem;
	height: 30px;
	height: 1.875rem;
	padding: 10px;
	padding: 0.625rem;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border: 0.5px solid #DFDFDF;
	border: 0.0312rem solid #DFDFDF;
	background-color: #FFA38B;
}

.row-portfolio-list.blog-list .porfolio-list .elementor-pagination .page-numbers:not(.current):not(.prev):not(.next) {
	color: #000000;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	display: flex;
	width: 30px;
	width: 1.875rem;
	height: 30px;
	height: 1.875rem;
	padding: 10px;
	padding: 0.625rem;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border: 0.5px solid #DFDFDF;
	border: 0.0312rem solid #DFDFDF;
}

.elementor .row-portfolio-list.blog-list div.e-con-inner div.porfolio-list .elementor-pagination .prev {
	margin-right: 15px;
	margin-right: 0.9375rem;
}

.elementor .row-portfolio-list.blog-list div.e-con-inner div.porfolio-list .elementor-pagination .next {
	margin-left: 15px;
	margin-left: 0.9375rem;
}

.row-portfolio-list.blog-list .porfolio-list .elementor-pagination .prev::before,
.row-portfolio-list.blog-list .porfolio-list .elementor-pagination .next::after {
	content: '';
	width: 23px;
	width: 1.4375rem;
	height: 15px;
	height: 0.9375rem;
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	padding: 0;
}

.row-portfolio-list.blog-list .porfolio-list .elementor-pagination .prev::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='15' viewBox='0 0 23 15' fill='none'%3E%3Cpath d='M22 8.36377C22.5523 8.36377 23 7.91605 23 7.36377C23 6.81148 22.5523 6.36377 22 6.36377L22 7.36377L22 8.36377ZM0.292893 6.65666C-0.0976314 7.04719 -0.0976315 7.68035 0.292892 8.07087L6.65685 14.4348C7.04738 14.8254 7.68054 14.8254 8.07107 14.4348C8.46159 14.0443 8.46159 13.4111 8.07107 13.0206L2.41421 7.36377L8.07107 1.70691C8.46159 1.31639 8.46159 0.683225 8.07107 0.292701C7.68054 -0.0978239 7.04738 -0.097824 6.65686 0.2927L0.292893 6.65666ZM22 7.36377L22 6.36377L1 6.36377L1 7.36377L1 8.36377L22 8.36377L22 7.36377Z' fill='%23DFDFDF'/%3E%3C/svg%3E");
}

/* Hover State for PREVIOUS arrow */
.row-portfolio-list.blog-list .porfolio-list .elementor-pagination .prev:hover::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='15' viewBox='0 0 23 15' fill='none'%3E%3Cpath d='M22 8.36377C22.5523 8.36377 23 7.91605 23 7.36377C23 6.81148 22.5523 6.36377 22 6.36377L22 7.36377L22 8.36377ZM0.292893 6.65666C-0.0976314 7.04719 -0.0976315 7.68035 0.292892 8.07087L6.65685 14.4348C7.04738 14.8254 7.68054 14.8254 8.07107 14.4348C8.46159 14.0443 8.46159 13.4111 8.07107 13.0206L2.41421 7.36377L8.07107 1.70691C8.46159 1.31639 8.46159 0.683225 8.07107 0.292701C7.68054 -0.0978239 7.04738 -0.097824 6.65686 0.2927L0.292893 6.65666ZM22 7.36377L22 6.36377L1 6.36377L1 7.36377L1 8.36377L22 8.36377L22 7.36377Z' fill='%23FFA38B'/%3E%3C/svg%3E");
}

/* 3. Style the NEXT arrow (Flip the SVG) */
.row-portfolio-list.blog-list .porfolio-list .elementor-pagination .next::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='15' viewBox='0 0 23 15' fill='none'%3E%3Cpath d='M22 8.36377C22.5523 8.36377 23 7.91605 23 7.36377C23 6.81148 22.5523 6.36377 22 6.36377L22 7.36377L22 8.36377ZM0.292893 6.65666C-0.0976314 7.04719 -0.0976315 7.68035 0.292892 8.07087L6.65685 14.4348C7.04738 14.8254 7.68054 14.8254 8.07107 14.4348C8.46159 14.0443 8.46159 13.4111 8.07107 13.0206L2.41421 7.36377L8.07107 1.70691C8.46159 1.31639 8.46159 0.683225 8.07107 0.292701C7.68054 -0.0978239 7.04738 -0.097824 6.65686 0.2927L0.292893 6.65666ZM22 7.36377L22 6.36377L1 6.36377L1 7.36377L1 8.36377L22 8.36377L22 7.36377Z' fill='%23DFDFDF'/%3E%3C/svg%3E");
	transform: scaleX(-1);
}

/* Hover State for NEXT arrow */
.row-portfolio-list.blog-list .porfolio-list .elementor-pagination .next:hover::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='15' viewBox='0 0 23 15' fill='none'%3E%3Cpath d='M22 8.36377C22.5523 8.36377 23 7.91605 23 7.36377C23 6.81148 22.5523 6.36377 22 6.36377L22 7.36377L22 8.36377ZM0.292893 6.65666C-0.0976314 7.04719 -0.0976315 7.68035 0.292892 8.07087L6.65685 14.4348C7.04738 14.8254 7.68054 14.8254 8.07107 14.4348C8.46159 14.0443 8.46159 13.4111 8.07107 13.0206L2.41421 7.36377L8.07107 1.70691C8.46159 1.31639 8.46159 0.683225 8.07107 0.292701C7.68054 -0.0978239 7.04738 -0.097824 6.65686 0.2927L0.292893 6.65666ZM22 7.36377L22 6.36377L1 6.36377L1 7.36377L1 8.36377L22 8.36377L22 7.36377Z' fill='%23FFA38B'/%3E%3C/svg%3E");
	transform: scaleX(-1);
}

/*blog inner */
.elementor div.row-blog-inner .e-con-inner {
	padding-bottom: 95px;
	padding-bottom: 5.9375rem;
	padding-top: 46px;
	padding-top: 2.875rem;
	max-width: 1482px;
	max-width: 92.625rem;
	column-gap: 26px;
	column-gap: 1.625rem;
}

.elementor div.row-blog-inner.breadcrumbs-head .e-con-inner {
	padding-bottom: 0;
}

.row-blog-inner .blog-nav-cont {
	width: 20.4%;
	padding: 0;
}

.row-blog-inner .blog-content-cont {
	width: 57.8%;
	padding: 0;
}

.row-blog-inner .blog-guide-cont {
	width: 20.3%;
	padding: 0;
	display: flex;
	align-items: flex-end;
}

.row-blog-inner .nav-head p {
	color: #000000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 0;
}

.row-blog-inner .nav-nav ul.toc-list {
	padding-left: 0;
	margin: -12px 0px 0px 0px;
	margin: -0.75rem 0rem 0rem 0rem;
	list-style-type: none;
}

.row-blog-inner .nav-nav ul.toc-list li {
	max-width: 241px;
	max-width: 15.0625rem;
	width: 100%;
	margin-bottom: 16px;
	margin-bottom: 1rem;
}

.row-blog-inner .nav-nav ul.toc-list li::marker {
	list-style-type: none;
}

.row-blog-inner .nav-nav a {
	color: #000000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
}

.row-blog-inner ul.toc-list::-webkit-scrollbar-button {
	display: none;
	height: 0;
}

.elementor .row-blog-inner .post-breadcrumbs {
	padding: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	column-gap: 21px;
	column-gap: 1.3125rem;
	row-gap: 5px;
	row-gap: 0.3125rem;
	margin-bottom: 0;
}

.row-blog-inner .post-breadcrumbs p,
.row-blog-inner .post-breadcrumbs .bread-title {
	color: #000000;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 0;
}

.row-blog-inner .post-breadcrumbs svg {
	margin-top: 5px;
	margin-top: 0.3125rem;
}

.row-blog-inner .post-breadcrumbs p a {
	color: #000000;
}

.row-blog-inner .blog-content-cont h1 {
	color: #000000;
	font-size: 50px;
	font-size: 3.125rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.15;
}

.row-blog-inner .blog-content-cont figure {
	width: 100% !important;
	margin-bottom: 28px;
	margin-bottom: 1.75rem;
	margin-left: 0;
}

.row-blog-inner .blog-content-cont img {
	width: 100%;
	object-fit: cover;
	margin-bottom: 0;
}

.row-blog-inner .blog-content-cont .updated-date p {
	margin-bottom: 16px;
	margin-bottom: 1rem;
	color: #000000;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.2;
}

.row-blog-inner .blog-content-cont .post-featured-img figure {
	margin-bottom: 18px;
	margin-bottom: 1.125rem;
	text-align: left;
}

.row-blog-inner .blog-content-cont .post-featured-img img {
	height: auto;
	margin-bottom: 5px;
	margin-bottom: 0.3125rem;
}

.row-blog-inner .blog-content-cont h2 {
	color: #000000;
	font-size: 36px;
	font-size: 2.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 28px;
	margin-bottom: 1.75rem;
}

.row-blog-inner .blog-content-cont .blog-content p,
.row-blog-inner .blog-content-cont .blog-content li {
	color: #000000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
}

.row-blog-inner .blog-content-cont .blog-content p a,
.row-blog-inner .blog-content-cont .blog-content li a {
	color: #FFA38B;
}

.row-blog-inner .blog-guide-cont .download-free-guide-banner-main {
	max-width: 276px;
	max-width: 17.25rem;
	width: 100%;
	padding: 0;
}

.row-blog-inner .blog-guide-cont .download-free-guide-banner {
	max-width: 276px;
	max-width: 17.25rem;
	width: 100%;
	display: flex;
	align-items: center;
	padding: 117px 12px 39px 12px;
	padding: 7.3125rem 0.75rem 2.4375rem 0.75rem;
	margin-top: -119px;
	margin-top: -7.4375rem;
}

.row-blog-inner .blog-guide-cont .download-free-guide-banner h3 {
	color: #ffffff;
	text-align: center;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.5;
}

.row-blog-inner .blog-guide-cont .download-free-guide-banner .elementor-button {
	width: 252px;
	width: 15.75rem;
	height: 66px;
	height: 4.125rem;
	display: flex;
	padding: 11px;
	padding: 0.6875rem;
	justify-content: center;
	align-items: center;
	border-radius: 1000px;
	border-radius: 62.5rem;
	background: #FFA38B;
	color: #ffffff;
	font-size: 19px;
	font-size: 1.1875rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
}

.elementor .row-share .e-con-inner .elementor-share-btn_facebook,
.elementor .row-share .e-con-inner .elementor-share-btn_x-twitter,
.elementor .row-share .e-con-inner .elementor-share-btn_linkedin,
.elementor .row-share .e-con-inner .elementor-share-btn_pinterest,
.elementor .row-share .e-con-inner .elementor-share-btn_email {
	background-color: transparent;
	height: unset;
}

.elementor .row-share .elementor-share-btn_facebook svg,
.elementor .row-share .elementor-share-btn_x-twitter svg,
.elementor .row-share .elementor-share-btn_linkedin svg,
.elementor .row-share .elementor-share-btn_pinterest svg,
.elementor .row-share .elementor-share-btn_email svg {
	display: none !important;
}

.elementor .row-share .e-con-inner {
	padding-top: 0px;
	max-width: 1200px;
	padding-bottom: 95px;
	padding-bottom: 5.9375rem;
}

.elementor .row-share .divider-post {
	margin-top: 0l
}

.elementor .row-share .share-post-cont {
	padding: 0;
	display: flex;
	flex-direction: row;
	gap: 15px;
	gap: 0.9375rem;
	align-items: center;
	margin-top: 4px;
	margin-top: 0.25rem;
	padding-left: 184px;
	padding-left: 11.5rem;
}

.elementor .row-share .e-con-inner .elementor-grid-0 .elementor-grid {
	display: flex;
	align-items: center;
	gap: 14px;
	gap: 0.875rem;
}

.elementor .row-share .share-post-text p {
	color: #000000;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: 0;
}

.elementor .row-share .elementor-share-btn_facebook .elementor-share-btn__icon {
	width: 15px;
	width: 0.9375rem;
	height: 15px;
	height: 0.9375rem;
	background: url('/wp-content/uploads/2025/11/FacebookLogo.svg') no-repeat center / contain;
}

.elementor .row-share .elementor-share-btn_x-twitter .elementor-share-btn__icon {
	width: 16px;
	width: 1rem;
	height: 15px;
	height: 0.9375rem;
	background: url('/wp-content/uploads/2025/11/twitter-x.svg') no-repeat center / contain;
}

.elementor .row-share .elementor-share-btn_linkedin .elementor-share-btn__icon {
	width: 17px;
	width: 1.0625rem;
	height: 17px;
	height: 1.0625rem;
	background: url('/wp-content/uploads/2025/11/linkedin_svgrepo.com_.svg') no-repeat center / contain;
}

.elementor .row-share .elementor-share-btn_pinterest .elementor-share-btn__icon {
	width: 20px;
	width: 1.25rem;
	height: 20px;
	height: 1.25rem;
	background: url('/wp-content/uploads/2025/11/pinterest.svg') no-repeat center / contain;
}

.elementor .row-share .elementor-share-btn_email .elementor-share-btn__icon {
	width: 13px;
	width: 0.8125rem;
	height: 11px;
	height: 0.6875rem;
	background: url('/wp-content/uploads/2025/11/mail.svg') no-repeat center / contain;
}

.row-portfolio-list.blog-inner .porfolio-list .elementor-posts-container.elementor-posts.elementor-posts--skin-classic.elementor-grid {
	gap: 20px;
	gap: 1.25rem;
}

.elementor .row-portfolio-list.portfolio-inner.blog-inner .e-con-inner {
	padding-top: 118px;
	padding-top: 7.375rem;
	padding-bottom: 116px;
	padding-bottom: 7.25rem;
}

.row-portfolio-list.portfolio-inner.blog-inner h1 {
	font-size: 48px;
	font-size: 3rem;
}

.row-portfolio-list.portfolio-inner.blog-inner .porfolio-list {
	margin-top: 36px;
	margin-top: 2.25rem;
}

.row-testimonials.blog-inner .testimonials-cont h2 {
	max-width: 865px;
	max-width: 54.0625rem;
}

div.row-testimonials.blog-inner .e-con-inner {
	padding-bottom: 112px;
	padding-bottom: 7rem;
}

/*Thank yous */
header.row-header.ty .logo-cont {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.elementor div.row-head-ty .e-con-inner {
	padding-top: 179px;
	padding-top: 11.1875rem;
	padding-bottom: 75px;
	padding-bottom: 4.6875rem;
	display: flex;
	align-items: center;
	min-height: 769px;
	min-height: 48.0625rem;
}

div.row-head-ty h1 {
	color: #ffffff;
	font-size: 50px;
	font-size: 3.125rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.15;
}

div.row-head-ty p {
	color: #ffffff;
	text-align: center;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	max-width: 799px;
	max-width: 49.9375rem;
	width: 100%;
}

.elementor div.row-ty-vid .e-con-inner {
	max-width: 1200px;
	max-width: 75rem;
}

div.row-ty-vid .ty-vid {
	margin-top: -355px;
	margin-top: -22.1875rem;
	height: 692px;
	height: 43.25rem;
}

.row-testimonials.ty .testimonials-cont h2 {
	max-width: 865px;
	max-width: 54.0625rem;
	color: #000000;
}

div.row-testimonials.ty .e-con-inner {
	padding-top: 101px;
	padding-top: 6.3125rem;
	padding-bottom: 132px;
	padding-bottom: 8.25rem;
}

.row-testimonials.ty .impv4-text p,
.row-testimonials.ty .impv4-role p,
.row-testimonials.ty .impv4-name {
	color: #000000;
}

div.row-testimonials.ty {
	background-color: #ffffff;
}

.row-testimonials.ty .impv4-quote-svg path {
	stroke: #000000;
}

.row-faq.ty-call {
	background-color: #000000;
}

.row-faq.ty-call h2 {
	color: #ffffff;
	font-size: 50px;
	font-size: 3.125rem;
}

.elementor div.row-faq.ty-call .e-con-inner {
	padding-top: 96px;
	padding-top: 6rem;
	padding-bottom: 99px;
	padding-bottom: 6.1875rem;
}

.row-faq.ty-call .faq-section .e-n-accordion-item-title-text {
	color: #ffffff;
	font-weight: 500;
}

.row-faq.ty-call .faq-section summary.e-n-accordion-item-title[aria-expanded="true"] .e-n-accordion-item-title-text {
	color: #000000;
}

.elementor div.row-faq.ty-call .e-con-inner div.faq-section {
	margin-top: 21px;
	margin-top: 1.3125rem;
}

.row-faq.ty-call .faq-section details[open] {
	background-color: #ffffff;
}

.row-faq.ty-call .faq-section .e-n-accordion-item {
	border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.row-faq.ty-call .faq-section summary.e-n-accordion-item-title {
	padding: 31px 37px 10px 32px;
	padding: 1.9375rem 2.3125rem 0.625rem 2rem;
}

.row-faq.ty-call .faq-section summary.e-n-accordion-item-title[aria-expanded="true"] {
	padding: 31px 37px 10px 33px;
	padding: 1.9375rem 2.3125rem 0.625rem 2.0625rem;
}

.row-faq.ty-call .faq-section p {
	padding-left: 22px;
	padding-left: 1.375rem;
	margin-top: -2px;
	margin-top: -0.125rem;
	padding-right: 22px;
	padding-right: 1.375rem;
}

div.row-head-ty.ty-lead .elementor-button {
	max-width: 379px;
	max-width: 23.6875rem;
	min-width: 379px;
	min-width: 23.6875rem;
	width: 100%;
	height: 66px;
	height: 4.125rem;
	display: inline-flex;
	padding: 18px;
	padding: 1.125rem;
	justify-content: center;
	align-items: center;
	border-radius: 1000px;
	border-radius: 62.5rem;
	background: #FFA38B;
	color: #ffffff;
	font-family: Radikal;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	margin-top: -11px;
	margin-top: -0.6875rem;
}

.elementor div.row-head-ty.ty-lead .e-con-inner {
	min-height: 855px;
	min-height: 53.4375rem;
}

/**
.page-id-1759 footer.row-footer .logo-menu-cont {
	display: none;
}

.page-id-1759 footer.row-footer .footer-copyright {
	border-top: unset;
}

.page-id-1759 footer.row-footer .e-con-inner {
	padding-top: 64px;
	padding-top: 4rem;
}
**/
/*book a call */
.elementor div.row-head-ty.book-a-call-bi .e-con-inner {
	min-height: 649px;
	min-height: 40.5625rem;
}

div.row-head-ty.book-a-call-bi p {
	max-width: 832px;
	max-width: 52rem;
}

.elementor div.row-ty-vid.book-a-call-bi {
	padding: 0;
}

.elementor div.row-ty-vid.book-a-call-bi .e-con-inner {
	display: flex;
	align-items: center;
	padding-bottom: 69px;
	padding-bottom: 4.3125rem;
	max-width: 1480px;
	max-width: 92.5rem;
}

div.row-ty-vid.book-a-call-bi .book-form {
	max-width: 1016px;
	max-width: 63.5rem;
	width: 100%;
	padding: 61px 20px 64px 20px;
	padding: 3.8125rem 1.25rem 4rem 1.25rem;
	background-color: #ffffff;
	box-shadow: 0 11px 40.1px 0 rgba(0, 0, 0, 0.12);
	box-shadow: 0 0.6875rem 2.5062rem 0 rgba(0, 0, 0, 0.12);
	display: flex;
	align-items: center;
	margin-top: -299px;
	margin-top: -18.6875rem;
}

div.row-ty-vid.book-a-call-bi .book-form h2 {
	color: #000;
	text-align: center;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.5;
}

div.row-ty-vid.book-a-call-bi .book-form .book-form-html {
	max-width: 537px;
	max-width: 33.5625rem;
	width: 100%;
	margin-top: 24px;
	margin-top: 1.5rem;
}

div.row-ty-vid.book-a-call-bi .book-form .book-form-html .section-wrapper {
	max-width: 537px;
	max-width: 33.5625rem;
	width: 100%;
}

div.row-ty-vid.book-a-call-bi .book-form .book-form-html .info-title {
	color: #000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.5;
	margin-top: 37px;
	margin-top: 2.3125rem;
	margin-bottom: 8px;
	margin-bottom: 0.5rem;
}

div.row-ty-vid.book-a-call-bi .book-form .book-form-html .info-text {
	color: #000;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.2;
	max-width: 452px;
	max-width: 28.25rem;
	width: 100%;
}

div.row-ty-vid.book-a-call-bi .book-form .book-form-html select.custom-select {
	border-radius: 42px;
	border-radius: 2.625rem;
	border: 1px solid #BABABA;
	border: 1px solid #BABABA;
	background: #FFF;
	max-width: 537px;
	max-width: 33.5625rem;
	width: 100%;
	padding: 11px 13px 11px 17px;
	padding: 0.6875rem 0.8125rem 0.6875rem 1.0625rem;
	font-family: 'Radikal', 'Montserrat', sans-serif;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23111111' stroke-width='2' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	background-position: right 12px center;
	background-position: right 0.75rem center;
	cursor: pointer;
	font-weight: 300;
}

div.row-ty-vid.book-a-call-bi .book-form .book-form-html select.custom-select option {
	font-weight: 300;
}

div.row-ty-vid.book-a-call-bi .book-form .book-form-html a.cta-btn {
	display: inline-flex;
	padding: 18px;
	padding: 1.125rem;
	justify-content: center;
	align-items: center;
	border-radius: 1000px;
	border-radius: 62.5rem;
	background: #FFA38B;
	max-width: 379px;
	max-width: 23.6875rem;
	width: 100%;
	height: 66px;
	height: 4.125rem;
	color: #ffffff;
	font-family: Radikal;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	margin-top: 32px;
	margin-top: 2rem;
	cursor: pointer;
}

div.row-testimonials.ty.book-a-call-bi .e-con-inner {
	padding-top: 0;
	padding-bottom: 126px;
	padding-bottom: 7.875rem;
}

.elementor div.row-faq.book-a-call-bi {
	background-color: #F4F4F4;
	padding: 0;
}

.elementor div.row-faq.book-a-call-bi .faq-content strong {
	font-weight: 500;
	display: block;
}

div.row-ty-vid.book-a-call-bi.hw .book-form .book-form-html .info-text {
	max-width: 537px;
	max-width: 33.5625rem;
}

.elementor div.row-faq.hw .e-con-inner div.faq-section .faq-content {
	margin-top: -23px;
	margin-top: -1.4375rem;
}

.elementor div.row-faq.hw .e-con-inner div.faq-section {
	margin-top: 13px;
	margin-top: 0.8125rem;
}

.elementor div.row-faq.hw .elementor-button,
.elementor div.row-faq .elementor-button {
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	display: flex;
	padding: 18px;
	padding: 1.125rem;
	justify-content: center;
	align-items: center;
	border-radius: 1000px;
	border-radius: 62.5rem;
	background: #FFA38B;
	max-width: 408px;
	max-width: 25.5rem;
	min-width: 408px;
	min-width: 25.5rem;
	width: 100%;
	height: 66px;
	height: 4.125rem;
	margin-top: 19px;
	margin-top: 1.1875rem;
}

/*product calendar embed */
.elementor div.row-ty-vid.book-a-call-bi.product .e-con-inner {
	padding-bottom: 150px;
	padding-bottom: 9.375rem;
}

div.row-ty-vid.book-a-call-bi.product .book-form {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	padding: 0px 55px 55px 55px;
	padding: 0rem 3.4375rem 3.4375rem 3.4375rem;
	gap: 0;
}

div.row-ty-vid.book-a-call-bi.product .book-form .book-details-content {
	padding-right: 10px !important;
	padding-right: 0.625rem !important;
	border-right: 1px solid rgba(26, 26, 26, 0.10);
	border-right: 1px solid rgba(26, 26, 26, 0.10);
}

div.row-ty-vid.book-a-call-bi.product .book-form .book-details-content,
div.row-ty-vid.book-a-call-bi.product .book-form .booking-calendar-cont {
	padding: 0;
	padding-top: 55px;
	padding-top: 3.4375rem;
}

div.row-ty-vid.book-a-call-bi.product .book-form .book-details-content .improva-booking-logo {
	display: flex;
}

div.row-ty-vid.book-a-call-bi.product .book-form .book-details-content .improva-booking-logo img {
	width: 224px;
	width: 14rem;
}

div.row-ty-vid.book-a-call-bi.product .book-form .book-details-content h2 {
	color: #000000;
	font-size: 36px;
	font-size: 2.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	text-align: left;
}

div.row-ty-vid.book-a-call-bi.product .book-form .book-details-content span.elementor-icon-list-text {
	color: #111111;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	max-width: 393px;
	max-width: 24.5625rem;
	width: 100%;
}

div.row-ty-vid.book-a-call-bi.product .book-form .book-details-content ul.elementor-icon-list-items {
	gap: 10px;
	gap: 0.625rem;
	display: flex;
	flex-direction: column;
}

div.row-ty-vid.book-a-call-bi.product .book-form .book-details-content .details-p p {
	color: #111111;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	max-width: 428px;
	max-width: 26.75rem;
	width: 100%;
}

div.row-ty-vid.book-a-call-bi.product .book-form .book-details-content .cookie-settings {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 0;
	max-width: 428px;
	max-width: 26.75rem;
	width: 100%;
	margin-top: -12px;
	margin-top: -0.75rem;
}

div.row-ty-vid.book-a-call-bi.product .book-form .book-details-content .cookie-settings p {
	color: #000000;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: 0;
}

div.row-ty-vid.book-a-call-bi.product .book-form .book-details-content .cookie-settings p a {
	color: #000000;
}

/*contact page */
div.row-hero.about-section.row-about.contact-page {
	min-height: 769px;
	min-height: 48.0625rem;
}

.row-hero.about-section.contact-page h2 {
	color: #FFF;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.5;
}

div.row-hero.about-section.row-about.contact-page div.hero-img {
	background-position-y: -25%;
}

div.row-hero.about-section.row-about.contact-page .hero-cont {
	padding-top: 159px
}

.row-hero.about-section.row-about.contact-page p {
	max-width: 544px;
	max-width: 34rem;
}

.elementor div.row-contact .e-con-inner {
	display: flex;
	align-items: center;
}

.elementor div.row-contact .form-main-cont {
	background-color: #ffffff;
	max-width: 1200px;
	max-width: 75rem;
	width: 100%;
	padding: 0;
	display: flex;
	flex-direction: row;
	margin-top: -316px;
	margin-top: -19.75rem;
	padding: 0px 0px 0px 32px;
	padding: 0rem 0rem 0rem 2rem;
	min-height: 502px;
	min-height: 31.375rem;
}

.elementor div.row-contact .form-main-cont .form-cont {
	padding: 0;
	width: 56%;
	padding-right: 48px;
	padding-right: 3rem;
	padding-top: 10px;
	padding-top: 0.625rem;
	padding-bottom: 10px;
	padding-bottom: 0.625rem;

}


.elementor div.row-contact .form-main-cont .form-nap {
	background-color: #f4f4f4;
	width: 44%;
	padding: 14px 20px 20px 28px;
	padding: 0.875rem 1.25rem 1.25rem 1.75rem;
	gap: 14px;
	gap: 0.875rem;
	display: flex;
	justify-content: center;
}

.elementor div.row-contact .form-main-cont .form-nap h2 {
	color: #000;
	font-size: 24px;
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
}

.elementor div.row-contact .form-main-cont .form-nap .nap-list .elementor-icon-list-item:nth-child(1) {
	border-bottom: 1px solid #BCBCBC;
	max-width: 413px;
	max-width: 25.8125rem;
	width: 100%;
	padding-bottom: 15px;
	padding-bottom: 0.9375rem;
}

.elementor div.row-contact .form-main-cont .form-nap .nap-list .elementor-icon-list-item:nth-child(2) {
	max-width: 285px;
	max-width: 17.8125rem;
	width: 100%;
	padding-top: 15px;
	padding-top: 0.9375rem;
}

.elementor div.row-contact .form-main-cont .form-nap .nap-list .elementor-icon-list-item:nth-child(2) svg {
	margin-top: -44px;
	margin-top: -2.75rem;
}

.elementor div.row-contact .form-main-cont .form-nap .nap-list .elementor-icon-list-text {
	color: #000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
}

.row-contact .form-cont h2.gform_title {
	display: none;
}

.row-contact .form-cont .gform-theme--foundation .gform_fields {
	row-gap: 14px;
	row-gap: 0.875rem;
}

.row-contact .form-cont .gform-theme form .gfield input,
.row-contact .form-cont .gform-theme form .gfield textarea,
.row-contact .form-cont .gform-theme form .gfield select {
	border: 2px solid rgba(165, 144, 146, 0.20);
	border: 0.125rem solid rgba(165, 144, 146, 0.20);
	background: #FFF;
	padding: 15px 20px 15px 28px;
	padding: 0.9375rem 1.25rem 0.9375rem 1.75rem;
	height: 54px;
	height: 3.375rem;
	color: #000000;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.2;
}

.row-contact .form-cont .gform-theme form .gfield select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23111111' stroke-width='2' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	background-position: right 18px center;
}

.row-contact .form-cont .gform-theme form .gfield.gfield--type-textarea textarea {
	min-height: 138px;
	min-height: 8.625rem;
}

.row-contact .form-cont .gform-theme form .gform-footer {
	margin-top: 30px;
	margin-top: 1.875rem;
}

.row-contact .form-cont div.gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button {
	display: flex;
	padding: 18px;
	padding: 1.125rem;
	justify-content: center;
	align-items: center;
	border-radius: 1000px;
	border-radius: 62.5rem;
	background: #FFA38B;
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	max-width: 336px;
	max-width: 21rem;
	height: 66px;
	height: 4.125rem;
	width: 100%;
}

.row-testimonials.contact-page .testimonials-cont h2 {
	max-width: 865px;
	max-width: 54.0625rem;
}

div.row-testimonials.contact-page .e-con-inner {
	padding-top: 102px;
	padding-top: 6.375rem;
	padding-bottom: 113px;
	padding-bottom: 7.0625rem;
}

.elementor div.row-prefer .e-con-inner {
	display: flex;
	align-items: center;
	padding-top: 100px;
	padding-top: 6.25rem;
}

.elementor div.row-prefer .prefer-cont {
	border: 1px solid #303030;
	background: #121212;
	max-width: 1200px;
	max-width: 75rem;
	width: 100%;
	display: flex;
	padding: 50px 150px;
	padding: 3.125rem 9.375rem;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
	gap: 1.25rem;
}

.elementor div.row-prefer .prefer-cont h2 {
	color: #ffffff;
	text-align: center;
	font-size: 50px;
	font-size: 3.125rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.15;
}

.elementor div.row-prefer .prefer-cont p {
	color: #ffffff;
	text-align: center;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 0;
}

.elementor div.row-prefer .prefer-cont .elementor-button {
	max-width: 336px;
	max-width: 21rem;
	min-width: 336px;
	min-width: 21rem;
	width: 100%;
	height: 66px;
	height: 4.125rem;
	display: flex;
	padding: 18px;
	padding: 1.125rem;
	justify-content: center;
	align-items: center;
	border-radius: 1000px;
	border-radius: 62.5rem;
	background: #FFA38B;
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
}


/*joinery estimating value page */
.elementor div.row-hero-improva.estimating div.e-con-inner {
	max-width: 1304px;
	max-width: 81.5rem;
	padding-top: 163px;
	padding-top: 10.1875rem;
	padding-bottom: 51px;
	padding-bottom: 3.1875rem;
}

.row-hero-improva.estimating h1 {
	font-size: 40px;
	font-size: 2.5rem;
	max-width: 659px;
	max-width: 41.1875rem;
}

.row-hero-improva.estimating p {
	max-width: 659px;
	max-width: 41.1875rem;
}

.elementor div.row-hero-improva.estimating .elementor-button {
	max-width: 295px;
	max-width: 18.4375rem;
}

.elementor div.row-premium .e-con-inner {
	padding-top: 107px;
	padding-top: 6.6875rem;
	padding-bottom: 35px;
	padding-bottom: 2.1875rem;
	display: flex;
	align-items: center;
	max-width: 1274px;
	max-width: 79.625rem;
}

.elementor .row-premium.new2col .premium-main-cont,
.elementor .row-premium.new2col {
	padding: 0;
}

.row-premium h2 {
	color: #000000;
	text-align: center;
	font-size: 48px;
	font-size: 3rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	max-width: 1051px;
	max-width: 65.6875rem;
}

.elementor .row-premium .premium-main-cont {
	display: flex;
	flex-direction: row;
	margin-top: 22px;
	margin-top: 1.375rem;
}

.elementor .row-premium.new2col .premium-main-cont {
	gap: 0;
}

.row-premium .premium-img {
	width: 48%;
	padding: 0;
}

.row-premium .premium-content {
	width: 52%;
	padding: 5px 0px 0px 18px;
	padding: 0.3125rem 0rem 0rem 1.125rem;
}

.row-premium .premium-img img {
	max-width: 560px;
	max-width: 35rem;
	width: 100%;
}

.row-premium.new2col .premium-img img {
	max-width: 100%;
}

.row-premium .premium-content p {
	color: #000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 30px;
	margin-bottom: 1.875rem;
}

.row-premium.new2col .premium-content p {
	max-width: 623.83px;
	max-width: 38.9894rem;
	width: 100%;
}

.row-premium .premium-content p strong {
	font-weight: 700;
}

.row-premium .premium-content .lists-prem {
	margin-top: -21px;
	margin-top: -1.3125rem;
}

.row-premium .premium-content .lists-prem ul.elementor-icon-list-items {
	display: flex;
	flex-direction: column;
	gap: 23px;
	gap: 1.4375rem;
}

.row-premium .premium-content .lists-prem li.elementor-icon-list-item {
	padding-bottom: 24px;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.20);
	max-width: 551px;
	max-width: 34.4375rem;
	width: 100%;

}

.row-premium .premium-content span.elementor-icon-list-text {
	color: #000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
}

.row-premium .premium-content .elementor-button {
	max-width: 288px;
	max-width: 18rem;
	width: 100%;
	height: 66px;
	height: 4.125rem;
	display: inline-flex;
	padding: 18px;
	padding: 1.125rem;
	justify-content: center;
	align-items: center;
	border-radius: 1000px;
	border-radius: 62.5rem;
	background: #FFA38B;
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	margin-top: -4px;
	margin-top: -0.25rem;
}

div.row-tailored.luxury.estimating .content-cont {
	width: 50%;
	padding-top: 96px;
	padding-top: 6rem;
	padding-bottom: 49px;
	padding-bottom: 3.0625rem;
}

div.row-tailored.luxury.estimating .img-cont {
	width: 50%;
	min-height: 992px;
	min-height: 62rem;
}

div.row-tailored.luxury.estimating .content-cont .content-cont-inner {
	max-width: 600px;
	max-width: 37.5rem;
	width: 100%;
}

.row-tailored.estimating h2 {
	max-width: 543px;
	max-width: 33.9375rem;
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
}

.row-tailored.luxury.estimating .text p {
	max-width: 544px;
	max-width: 34rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.20);
	margin-bottom: 18px;
	margin-bottom: 1.125rem;
	padding-bottom: 56px;
	padding-bottom: 3.5rem;
}

.row-tailored.luxury.estimating .issues p {
	color: #000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	padding-bottom: 20px;
	padding-bottom: 1.25rem;
	margin-bottom: 18px;
	margin-bottom: 1.125rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.20);
	max-width: 544px;
	max-width: 34rem;
}

.row-tailored.luxury.estimating .issues p strong {
	font-weight: 500;
}

div.row-tailored.luxury.estimating {
	padding-bottom: 0px;
	padding-bottom: 0rem;
}

div.row-tailored.estimating-works .img-cont,
.row-premium.new2col .premium-img {
	min-height: 822px;
	min-height: 51.375rem;
	width: 50%;
}

div.row-tailored.estimating-works .content-cont {
	width: 50%;
	padding-top: 128px;
	padding-top: 8rem;
}

.row-premium.new2col .premium-content {
	width: 50%;
	display: flex;
	flex-direction: column;
	padding-left: 70px;
	padding-left: 4.375rem;
	padding-right: 10px;
	padding-right: 0.625rem;
	padding-bottom: 10px;
	padding-bottom: 0.625rem;
}

div.row-tailored.estimating-works .content-cont .sub-head-text p {
	color: #000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 11px;
	margin-bottom: 0.6875rem;
}

.row-tailored.estimating-works h2 {
	max-width: 530px;
	max-width: 33.125rem;
	margin-bottom: 30px;
	margin-bottom: 1.875rem;
}

.row-tailored.estimating-works p.elementor-icon-box-description {
	font-size: 20px;
	font-size: 1.25rem;
	line-height: 1.5;
	color: #000000;
}

.row-tailored.estimating-works h3.elementor-icon-box-title {
	font-weight: 700;
	margin-bottom: 6px;
	margin-bottom: 0.375rem;
}

.elementor div.row-tailored.estimating-works div.content-cont div.list {
	border-bottom: unset;
	margin-top: 10px;
	margin-top: 0.625rem;
	padding-bottom: 24px;
	padding-bottom: 1.5rem;
}

div.row-tailored.estimating-works {
	padding-bottom: 0;
}

.elementor div.row-get .e-con-inner {
	padding-top: 106px;
	padding-top: 6.625rem;
	padding-bottom: 110px;
	padding-bottom: 6.875rem;
	max-width: 1200px;
	max-width: 75rem;
}

.row-get .get-cont {
	max-width: 761px;
	max-width: 47.5625rem;
	padding: 0;
}

.row-get h2 {
	color: #ffffff;
	font-size: 50px;
	font-size: 3.125rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 18px;
	margin-bottom: 1.125rem;
}

.elementor div.row-get .e-con-inner .get-list {
	max-width: 550px;
	max-width: 34.375rem;
	margin-bottom: 8px;
	margin-bottom: 0.5rem;
}

.row-get h3.elementor-icon-box-title {
	color: #FFF;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 7px;
	margin-bottom: 0.4375rem;
}

.row-get p.elementor-icon-box-description {
	color: #FFF;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.2;
}

.elementor div.row-get .e-con-inner .get-cont .elementor-icon-box-wrapper {
	gap: 11px;
	gap: 0.6875rem;
}

.elementor div.row-get .e-con-inner .get-cont svg {
	margin-top: 4px;
	margin-top: 0.25rem;
}

.elementor div.row-get .e-con-inner .get-cont .elementor-button {
	max-width: 295px;
	max-width: 18.4375rem;
	width: 100%;
	height: 66px;
	height: 4.125rem;
	display: flex;
	padding: 18px;
	padding: 1.125rem;
	justify-content: center;
	align-items: center;
	border-radius: 1000px;
	border-radius: 62.5rem;
	background: #FFA38B;
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	margin-top: 18px;
	margin-top: 1.125rem;
}

.elementor div.row-real-results.estimating {
	padding-top: 225px;
	padding-top: 14.0625rem;
}

.elementor .row-real-results.estimating .case-study-main.first {
	margin-top: 79px;
	margin-top: 4.9375rem;
}

.row-real-results.estimating .case-study-main .case-study-content-main {
	width: 50%;
}

.row-real-results.estimating .case-study-main .case-study-image {
	width: 50%;
}

.elementor .row-real-results.estimating .case-study-main .case-study-content {
	padding-top: 38px;
	padding-top: 2.375rem;
	max-width: 580px;
	max-width: 36.25rem;
}

.row-real-results.estimating .case-study-content-main p {
	max-width: 580px;
	max-width: 36.25rem;
}

.row-real-results.estimating .case-study-content-main ul {
	color: #FFF;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	width: 100%;
	text-align: left;
}

.elementor .row-real-results.estimating .case-study-main.right-image .case-study-content {
	max-width: 644px;
	max-width: 40.25rem;
}

.elementor div.row-plan {
	background-color: #F4F4F4;
}

.elementor div.row-plan .e-con-inner {
	padding-top: 111px;
	padding-top: 6.9375rem;
	padding-bottom: 89px;
	padding-bottom: 5.5625rem;
	max-width: 1297px;
	max-width: 81.0625rem;
	display: flex;
	align-items: center;
	gap: 0;
}

div.row-plan h2 {
	color: #000;
	text-align: center;
	font-size: 48px;
	font-size: 3rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: -4px;
	margin-bottom: -0.25rem;
}

.row-plan .main-text p {
	color: #000;
	text-align: center;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
}

.elementor .row-plan .plan-cont {
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	margin-top: 82px;
	margin-top: 5.125rem;
	align-items: start;
}

.elementor .row-plan .plan-cont .plan-list {
	padding: 0;
	border-radius: 24px;
	border-radius: 1.5rem;
	border: 1px solid #D9D9D9;
	background: #FFF;
	padding: 31px 40px 34px 43px;
	padding: 1.9375rem 2.5rem 2.125rem 2.6875rem;
	gap: 5px;
	gap: 0.3125rem;
}

.row-plan .plan-list .plan-type p {
	color: #000000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 3px;
	margin-bottom: 0.1875rem;
}

.row-plan .plan-list .plan-desc p {
	color: #000000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 0;
}

.row-plan .plan-list .plan-discount p {
	color: #000000;
	font-size: 16px;
	font-size: 1rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 0;
	margin-top: -30px;
	margin-top: -1.875rem;
	margin-bottom: 30px;
	margin-bottom: 1.875rem;
}

.row-plan .plan-list:nth-child(3) .plan-discount p {
	margin-bottom: 3px;
	margin-bottom: 0.1875rem;
}

.row-plan .all-visit-note p {
	color: #000000;
	font-size: 16px;
	font-size: 1rem;
	font-style: italic;
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 0;
	margin-top: 30px;
	margin-top: 1.875rem;
}

.row-plan .plan-list h3 strong {
	font-weight: 700;
}

.row-plan .plan-list h3 {
	color: #000000;
	font-size: 36px;
	font-size: 2.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.2;
	margin-top: 81px;
	margin-top: 5.0625rem;
	margin-bottom: 26px;
	margin-bottom: 1.625rem;
}

.elementor .row-plan .plan-cont .plan-list .elementor-button {
	max-width: 323px;
	max-width: 20.1875rem;
	width: 100%;
	height: 66px;
	height: 4.125rem;
	display: flex;
	padding: 18px;
	padding: 1.125rem;
	justify-content: center;
	align-items: center;
	border-radius: 1000px;
	border-radius: 62.5rem;
	border: 1px solid #FFA38B;
	background: #FFF;
	color: #000;
	font-family: Radikal;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 16px;
	margin-bottom: 1rem;
}

.row-plan .plan-list .plan-includes p strong {
	color: #000000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 0;
}

.row-plan .plan-list .plan-includes ul {
	list-style: none;
	padding: 0;
	margin-top: -9px;
	margin-top: -0.5625rem;
}

.row-plan .plan-list .plan-includes ul li {
	padding-left: 22px;
	padding-left: 1.375rem;
	margin-bottom: 18px;
	margin-bottom: 1.125rem;
	background-repeat: no-repeat;
	background-size: 14px;
	background-size: 0.875rem;
	background-position: 0 3px;
	background-position: 0 0.1875rem;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8'><path fill='%23FFA38B' d='M12.0577 1.24022L4.25774 8L0 4.31005L1.43105 3.06984L4.25774 5.51957L10.6266 0L12.0577 1.24022Z'/></svg>");
	color: #000000;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.2;
}

.row-plan .plan-list .plan-includes.inactive ul li {
	padding-left: 22px;
	padding-left: 1.375rem;
	margin-bottom: 18px;
	margin-bottom: 1.125rem;
	background-repeat: no-repeat;
	background-size: 14px;
	background-size: 0.875rem;
	background-position: 0 10px;
	background-position: 0 0.625rem;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='2' viewBox='0 0 10 2'><rect width='10' height='2' fill='%23CCCCCC' rx='1'/></svg>");
	color: #D8D8D8;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.2;
}

.elementor .row-plan .plan-cont .plan-list.recommended {
	position: relative;
	overflow: visible !important;
	box-shadow: 0 4px 28.4px 0 rgba(0, 0, 0, 0.11);
	box-shadow: 0 0.25rem 1.775rem 0 rgba(0, 0, 0, 0.11);
	border: 1px solid #FFA38B;
	padding-top: 61px;
	padding-top: 3.8125rem;
	z-index: 3;
}

.recommended-badge {
	position: absolute;
	top: -62px;
	top: -3.875rem;
	left: 50%;
	transform: translateX(-50%);
	background: #FFD1C5;
	padding: 4px 14px 13px 14px;
	padding: 0.25rem 0.875rem 0.8125rem 0.875rem;
	white-space: nowrap;
	z-index: 1;
	pointer-events: none;
	border-top-left-radius: 24px;
	border-top-left-radius: 1.5rem;
	border-top-right-radius: 24px;
	border-top-right-radius: 1.5rem;
	max-width: 432px;
	max-width: 27rem;
	width: 100%;
	display: flex;
	justify-content: center;
	color: #000;
	text-align: center;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.5;
	height: 79px;
	height: 4.9375rem;
	align-items: center;
}

.elementor .row-plan .plan-cont .plan-list:nth-child(1),
.elementor .row-plan .plan-cont .plan-list:nth-child(3) {
	margin-top: 30px;
	margin-top: 1.875rem;
}

.row-plan .plan-list.recommended h3 {
	margin-top: 51px;
	margin-top: 3.1875rem;
}

.elementor .row-plan .plan-cont .plan-list.recommended .elementor-button {
	border: unset;
	background-color: #FFA38B;
}

.elementor .row-plan .plan-cont .plan-list.ultra {
	gap: 0;
}

.row-plan .plan-list.ultra h3 {
	margin-top: 61px;
	margin-top: 3.8125rem;
	margin-bottom: 31px;
	margin-bottom: 1.9375rem;
}

.row-plan .plan-list.ultra h4 {
	color: #000000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 21px;
	margin-bottom: 1.3125rem;
}

.elementor .row-plan .plan-cont .plan-list.ultra .elementor-button {
	margin-bottom: 20px;
	margin-bottom: 1.25rem;
}

.row-plan .plan-list.ultra .plan-includes p strong {
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 300;
}

.row-plan .plan-list .plan-includes.collapse p strong {
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 300;
}

/* Add plus sign after the <strong> */
.row-plan .plan-list .plan-includes.collapse p strong::before {
	content: "";
	display: inline-block;
	width: 14px;
	width: 0.875rem;
	height: 8px;
	height: 0.5rem;
	margin-right: 8px;
	margin-right: 0.5rem;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8'><path fill='%23FFA38B' d='M12.0577 1.24022L4.25774 8L0 4.31005L1.43105 3.06984L4.25774 5.51957L10.6266 0L12.0577 1.24022Z'/></svg>");
	background-repeat: no-repeat;
	background-size: 14px 8px;
	background-size: 0.875rem 0.5rem;
	vertical-align: middle;
}

/* Add plus sign after the <strong> */
.row-plan .plan-list .plan-includes.collapse.inactive p strong::before {
	content: "";
	display: inline-block;
	width: 14px;
	width: 0.875rem;
	height: 8px;
	height: 0.5rem;
	margin-right: 8px;
	margin-right: 0.5rem;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='2' viewBox='0 0 10 2'><rect width='10' height='2' fill='%23CCCCCC' rx='1'/></svg>");
	background-repeat: no-repeat;
	background-size: 14px 8px;
	background-size: 0.875rem 0.5rem;
	vertical-align: middle;
}

.row-plan .plan-list .plan-includes.collapse.inactive p strong {
	color: #D8D8D8;
}

.row-plan .plan-list .plan-includes.collapse p {
	margin-bottom: 18px;
	margin-bottom: 1.125rem;
}

.row-plan .plan-list.ultra .plan-includes.collapse p {
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
}

.row-plan .plan-list.ultra .plan-includes.collapse.exclusive p {
	margin-bottom: 18px;
	margin-bottom: 1.125rem;
}

.row-plan .plan-list .plan-includes.collapse p strong::after {
	content: "+";
	font-weight: normal;
	margin-left: 10px;
	margin-left: 0.625rem;
	transition: transform 0.3s;
}

.row-plan .plan-list .plan-includes.collapse.open p strong::after {
	content: "−";
}

.row-plan .plan-list .plan-includes.collapse ul {
	display: none;
	margin-top: 10px;
	margin-top: 0.625rem;
	padding-left: 20px;
	padding-left: 1.25rem;
}

.row-plan .plan-list .plan-includes.collapse.open ul {
	display: block;
	padding-left: 20px;
	padding-left: 1.25rem;
}


.elementor .row-plan .plan-cont .plan-list:nth-child(1) {
	min-height: 676px;
	min-height: 42.25rem;
}

.elementor .row-plan .plan-cont .plan-list:nth-child(2) {
	min-height: 706px;
	min-height: 44.125rem;
	padding-bottom: 40px;
	padding-bottom: 2.5rem;

}

div.row-tailored.estimating-mentor .content-cont {
	padding-top: 96px;
	padding-top: 6rem;
	padding-left: 58px;
	padding-left: 3.625rem;
}

.row-tailored.estimating-mentor .text p {
	margin-bottom: 29px;
	margin-bottom: 1.8125rem;
}

.row-tailored.estimating-mentor h3.elementor-icon-box-title {
	font-weight: 300;
}

.elementor div.row-tailored.estimating-mentor div.content-cont div.list {
	padding-bottom: 17px;
	padding-bottom: 1.0625rem;
}

.elementor div.row-tailored.estimating-mentor div.content-cont div.list.list-3 {
	margin-bottom: 23px;
	margin-bottom: 1.4375rem;
}

div.row-tailored.estimating-mentor {
	padding-bottom: 60px;
	padding-bottom: 3.75rem;
}

.elementor div.row-project-plan {
	background-color: #F4F4F4;
}

.elementor div.row-project-plan .e-con-inner {
	padding-top: 117px;
	padding-top: 7.3125rem;
	padding-bottom: 92px;
	padding-bottom: 5.75rem;
	display: flex;
	align-items: center;
	max-width: 1007px;
	max-width: 62.9375rem;
}

.row-project-plan h2 {
	color: #000;
	text-align: center;
	font-size: 48px;
	font-size: 3rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	max-width: 788px;
	max-width: 49.25rem;
	width: 100%;
	margin-bottom: 27px;
	margin-bottom: 1.6875rem;
}

.row-project-plan h3 {
	color: #000;
	text-align: center;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 9px;
	margin-bottom: 0.5625rem;
}

.row-project-plan p {
	color: #000;
	text-align: center;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	max-width: 606px;
	max-width: 37.875rem;
	width: 100%;
}

.row-project-plan p strong {
	font-weight: 700;
}

.elementor div.row-project-plan .project-plan-btns {
	display: flex;
	flex-direction: row;
	padding: 0;
	gap: 19px;
	gap: 1.1875rem;
	margin-top: -8px;
	margin-top: -0.5rem;
	margin-bottom: 13px;
	margin-bottom: 0.8125rem;
}

.elementor .row-project-plan .project-plan-btns .elementor-button {
	max-width: 323px;
	max-width: 20.1875rem;
	width: 100%;
	height: 66px;
	height: 4.125rem;
	display: flex;
	width: 323px;
	width: 20.1875rem;
	padding: 18px;
	padding: 1.125rem;
	justify-content: center;
	align-items: center;
	border-radius: 1000px;
	border-radius: 62.5rem;
	border: 1px solid #FFA38B;
	background: #ffffff;
	color: #000000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
}

.elementor .row-project-plan .project-plan-btns .recommended .elementor-button {
	background-color: #FFA38B;
	border: unset;
}

.row-project-plan .used-by p {
	color: #000;
	text-align: center;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.2;
	width: 100%;
	max-width: 100%;
}

div.row-testimonials.estimating .e-con-inner {
	padding-top: 132px;
	padding-top: 8.25rem;
	padding-bottom: 0;
}

.row-testimonials.building.estimating .testimonials-cont h2 {
	font-size: 48px;
	font-size: 3rem;
}

div.row-hero.about-section.row-about.building.estimating .hero-cont {
	padding-top: 162px;
	padding-top: 10.125rem;
	padding-bottom: 162px;
	padding-bottom: 10.125rem;
}

.row-hero.about-section.row-about.building.estimating .elementor-button {
	max-width: 301px;
	max-width: 18.8125rem;
}

.row-hero.about-section.row-about.building.estimating .subtext-used-by p {
	max-width: 286px;
	max-width: 17.875rem;
	text-align: center;
	font-size: 18px;
	font-size: 1.125rem;
	margin-top: -5px;
	margin-top: -0.3125rem;
	line-height: 1.2;
}

.elementor div.row-faq.estimating .e-con-inner div.faq-section {
	margin-top: 40px;
	margin-top: 2.5rem;
}

.row-faq.estimating .faq-section p {
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.5;
	margin-top: -5px;
	margin-top: -0.3125rem;
}

.row-faq.estimating .faq-section .e-n-accordion-item {
	padding-bottom: 6px;
	padding-bottom: 0.375rem;
}

.row-faq.estimating .faq-section summary.e-n-accordion-item-title {
	padding-bottom: 20px;
	padding-bottom: 1.25rem;
}

.row-faq .faq-section summary.e-n-accordion-item-title[aria-expanded="true"] {
	padding-bottom: 10px;
	padding-bottom: 0.625rem;
}

.row-faq.estimating h3 {
	color: #000000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.5;
	margin-top: 44px;
	margin-top: 2.75rem;
	margin-left: -113px;
	margin-left: -7.0625rem;
}

.elementor div.row-faq.estimating .e-con-inner {
	padding-bottom: 146px;
	padding-bottom: 9.125rem;
}


/*joinery care */
.elementor div.row-hero-improva.joinery-care div.e-con-inner {
	padding-top: 141px;
	padding-top: 8.8125rem;
}

.elementor div.row-hero-improva.joinery-care .elementor-button {
	max-width: 300px;
	max-width: 18.75rem;
}

div.row-tailored.estimating-mentor.joinery-care .content-cont {
	padding-top: 99px;
	padding-top: 6.1875rem;
	padding-left: 70px;
	padding-left: 4.375rem;
}

.elementor div.row-tailored.estimating-mentor.joinery-care div.content-cont div.list.list-3 {
	margin-bottom: 21px;
	margin-bottom: 1.3125rem;
}

div.row-tailored.joinery-care .elementor-button {
	max-width: 300px;
	max-width: 18.75rem;
	margin-top: 9px;
	margin-top: 0.5625rem;
}

div.row-tailored.estimating-mentor.joinery-care {
	padding-bottom: 80px;
	padding-bottom: 5rem;
}

.row-premium.joinery-care h2 {
	text-align: left;
	max-width: 470px;
	max-width: 29.375rem;
	margin-bottom: 13px;
	margin-bottom: 0.8125rem;
}

.elementor .row-premium.joinery-care .premium-main-cont {
	padding: 0;
}

.row-premium.joinery-care .premium-content {
	padding-left: 0px;
}

.elementor div.row-premium.joinery-care .e-con-inner {
	max-width: 1200px;
	max-width: 75rem;
	padding-top: 89px;
	padding-top: 5.5625rem;
	padding-bottom: 125px;
	padding-bottom: 7.8125rem;
}

.elementor div.row-premium.joinery-care .premium-img {
	display: flex;
	align-items: flex-end;
	margin-right: -10px;
	margin-right: -0.625rem;
}

.row-premium.joinery-care .premium-img img {
	margin-top: 49px;
	margin-top: 3.0625rem;
}

.row-premium.joinery-care .premium-content p {
	max-width: 584px;
	max-width: 36.5rem;
	color: #ffffff;
}

.row-premium.joinery-care .premium-content .elementor-button {
	max-width: 330px;
	max-width: 20.625rem;
	margin-top: -8px;
	margin-top: -0.5rem;
}

.row-get.joinery-care .get-cont {
	max-width: 752px;
	max-width: 47rem;
	width: 100%;
}

.elementor div.row-get.joinery-care .e-con-inner {
	display: flex;
	align-items: flex-end;
	padding-top: 98px;
	padding-top: 6.125rem;
	padding-bottom: 101px;
	padding-bottom: 6.3125rem;
}

.elementor div.row-get.joinery-care .reasons-to {
	display: flex;
	flex-direction: row;
	padding: 0;
	gap: 9px;
	gap: 0.5625rem;
	margin-bottom: 3px;
	margin-bottom: 0.1875rem;
}

.elementor div.row-get.joinery-care .reasons-to p {
	color: #FFF;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 0;
	max-width: 720px;
	max-width: 45rem;
	width: 100%;
}

.elementor div.row-get.joinery-care .reasons-to p strong {
	font-weight: 700;
}

.elementor div.row-get.joinery-care .relax {
	margin-top: 15px;
	margin-top: 0.9375rem;
}

.elementor div.row-get.joinery-care .relax p {
	color: #FFF;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 0;
}

.elementor div.row-get.joinery-care .e-con-inner .get-cont .elementor-button {
	margin-top: 9px;
	margin-top: 0.5625rem;
	max-width: 300px;
	max-width: 18.75rem;
}

.elementor div.row-plan.joinery-care .e-con-inner {
	padding-top: 114px;
	padding-top: 7.125rem;
	padding-bottom: 131px;
	padding-bottom: 8.1875rem;
}

div.row-plan.joinery-care h2 {
	max-width: 788px;
	max-width: 49.25rem;
}

.elementor .row-plan.joinery-care .plan-cont {
	margin-top: 112px;
	margin-top: 7rem;
}

.row-plan.joinery-care .plan-list h3 {
	margin-top: 29px;
	margin-top: 1.8125rem;
	margin-bottom: 30px;
	margin-bottom: 1.875rem;
}

.elementor .row-plan.joinery-care .plan-cont .plan-list:nth-child(1) h3 {
	margin-bottom: 60px;
	margin-bottom: 3.75rem;
	margin-top: 59px;
	margin-top: 3.6875rem;
}

.elementor .row-plan.joinery-care .plan-cont .plan-list .elementor-button {
	margin-bottom: 31px;
	margin-bottom: 1.9375rem;
}

.row-plan.joinery-care .plan-list .plan-includes.inactive ul li {
	padding-left: 22px;
	padding-left: 1.375rem;
	margin-bottom: 18px;
	margin-bottom: 1.125rem;
	background-repeat: no-repeat;
	background-size: 14px;
	background-size: 0.875rem;
	background-position: 0 10px;
	background-position: 0 0.625rem;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='2' viewBox='0 0 10 2'><rect width='10' height='2' fill='%23CCCCCC' rx='1'/></svg>");
	color: #D8D8D8;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.2;
}

.row-plan.joinery-care .plan-list.premium-plan .plan-desc p {
	width: 103%;
}

.elementor .row-plan.joinery-care .plan-cont .plan-list {
	padding-bottom: 15px;
	padding-bottom: 0.9375rem;
}

.elementor .row-plan .plan-cont .recom-main-cont {
	padding: 0;

}

.elementor .row-plan.joinery-care .plan-cont .recom-main-cont {
	padding: 0;
}

.elementor .row-plan.joinery-care .plan-cont .plan-list.recommended {
	padding-bottom: 26px;
	padding-bottom: 1.625rem;
}

div.row-testimonials.estimating.joinery-care .e-con-inner {
	padding-top: 113px;
	padding-top: 7.0625rem;
	padding-bottom: 150px;
	padding-bottom: 9.375rem;
}

.elementor div.row-faq.estimating.joinery-care .e-con-inner div.faq-section {
	margin-top: 36px;
	margin-top: 2.25rem;
}

.row-faq.estimating.joinery-care .faq-section p {
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.2;
	margin-top: 28px;
	margin-top: 1.75rem;
}

.row-faq.estimating.joinery-care .faq-section p a {
	color: #FFA38B;
}

.row-faq.estimating.joinery-care .faq-section .e-n-accordion-item {
	padding-bottom: 6px;
	padding-bottom: 0.375rem;
}

.row-faq.estimating.joinery-care .faq-section details[open] {
	padding-bottom: 21px;
	padding-bottom: 1.3125rem;
}

.row-faq.estimating.joinery-care {
	/*background-color: #f4f4f4;*/
	background-color: #000000;
	/*temporary and will be remove */
}

/*temporary css remove after */
.row-faq.joinery-care h2,
.row-faq.joinery-care .faq-section .e-n-accordion-item-title-text,
.row-faq.estimating.joinery-care .faq-section p {
	color: #ffffff;
}

.row-faq.joinery-care .faq-section .e-n-accordion-item {
	border-bottom: 1px solid #ffffff;
}


/*end temporary */

.elementor div.row-faq.estimating.joinery-care .e-con-inner {
	padding-bottom: 119px;
	padding-bottom: 7.4375rem;
}

.row-tailored.free-guide.joinery-care-page h2 {
	max-width: 475px;
	max-width: 29.6875rem;
}

.row-tailored.free-guide.joinery-care-page .text p {
	max-width: 660px;
	max-width: 41.25rem;
}

div.row-tailored.joinery-care-page .elementor-button {
	max-width: 330px;
	max-width: 20.625rem;
}

div.row-tailored.joinery-care-page {
	padding-top: 44px;
	padding-top: 2.75rem;
}

div.row-tailored.free-guide.joinery-care-page .content-cont {
	padding-bottom: 128px;
	padding-bottom: 8rem;
}

.elementor div.row-tailored.joinery-care-page div.img-cont {
	background-position-y: -100px;
	background-position-y: -6.25rem;
	background-size: 117%;
	background-position-x: 50%;
}


/*404 */
.elementor div.row-404 .e-con-inner {
	padding-top: 134px;
	padding-top: 8.375rem;
	padding-bottom: 87px;
	padding-bottom: 5.4375rem;
	max-width: 1180px;
	max-width: 73.75rem;
	gap: 9px;
	gap: 0.5625rem;
}

.elementor .row-404 img {
	width: 642px;
	width: 40.125rem;
	margin-left: 43px;
	margin-left: 2.6875rem;
}

.elementor .row-404 h1 {
	color: #FFF;
	text-align: center;
	font-size: 50px;
	font-size: 3.125rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 12px;
	margin-bottom: 0.75rem;
}

.elementor .row-404 h2 {
	color: #FFF;
	text-align: center;
	font-size: 36px;
	font-size: 2.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 27px;
	margin-bottom: 1.6875rem;
}

.row-testimonials.not-found .testimonials-cont h2 {
	max-width: 865px;
	max-width: 54.0625rem;
}

div.row-testimonials.not-found .e-con-inner {
	padding-bottom: 116px;
	padding-bottom: 7.25rem;
}

/*search bar */
.search-icon {
	cursor: pointer;
}

/* ===== SEARCH OVERLAY WRAPPER ===== */
.improva-search-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 172px;
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	-webkit-backdrop-filter: 0.375rem;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 99999;
}

/* When activated */
.improva-search-overlay.active {
	display: flex;
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.12) 100%), rgba(0, 0, 0, 0.80);
	backdrop-filter: blur(12px);
	backdrop-filter: 0.75rem;
	min-height: 318px;
	min-height: 19.875rem;
}

/* ===== INNER CONTENT ===== */
.improva-search-overlay .search-overlay-inner {
	width: 100%;
	max-width: 1180px;
	position: relative;
	padding: 0 20px;
	padding: 0 1.25rem;
}

/* ===== CLOSE BUTTON (X) ===== */
.improva-search-overlay .search-close-btn {
	position: absolute;
	right: 13px;
	right: 0.8125rem;
	top: -51px;
	top: -3.1875rem;
	background: none;
	border: none;
	font-size: 28px;
	font-size: 1.75rem;
	cursor: pointer;
	color: white;
	padding: 5px;
	padding: 0.3125rem;
	line-height: 1;
	min-width: 42px;
	min-width: 2.625rem;
}

.improva-search-overlay .improva-search-bar {
	height: 126px;
	height: 7.875rem;
}

.improva-search-overlay .improva-search-bar input {
	max-width: 1180px;
	max-width: 73.75rem;
	width: 100%;
	height: 126px;
	height: 7.875rem;
	border: none;
}

/*search bar 404 */
.improva-search-bar {
	width: 100%;
	max-width: 1300px;
	max-width: 81.25rem;
	background: white;
	padding: 0;
	border-radius: 1000px;
	border-radius: 62.5rem;
	position: relative;
	display: flex;
	align-items: center;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
	box-shadow: 0 0.5rem 1.125rem rgba(0, 0, 0, 0.35);
}

.improva-search-bar input {
	width: 100%;
	padding: 10px;
	padding: 0.625rem;
	padding-right: 180px;
	padding-right: 11.25rem;
	padding-left: 58px;
	padding-left: 3.625rem;
	outline: none;
	background: transparent;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.2;
	color: #000000;
	border-radius: 1000px;
	border-radius: 62.5rem;
	height: 126px;
	height: 7.875rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #38783A;
}

.improva-search-bar .search-btn {
	position: absolute;
	right: 31px;
	right: 1.9375rem;
	top: 50%;
	transform: translateY(-50%);
	background: #FFA38B;
	border: none;
	padding: 10px;
	padding: 0.625rem;
	max-width: 195px;
	max-width: 12.1875rem;
	min-width: 195px;
	min-width: 12.1875rem;
	width: 100%;
	height: 66px;
	height: 4.125rem;
	border-radius: 1000px;
	border-radius: 62.5rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	transition: .2s;
	gap: 16px;
	gap: 1rem;
}

.improva-search-bar .search-btn:hover {
	color: #ffffff;
}

.improva-search-bar .search-btn svg {
	width: 17px;
	width: 1.0625rem;
	height: 17px;
	height: 1.0625rem;
}


/*pop up */
.elementor-popup-modal div.dialog-widget-content {
	background-color: transparent;
}

.dialog-type-lightbox {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.elementor-element.elementor-element-25231c2.row-pop.e-flex.e-con-boxed.e-con.e-parent {
	padding: 0;
}

.elementor .row-pop .e-con-inner {
	padding-left: 50px;
	background: transparent;
	padding-right: 50px;
}

.elementor div.row-pop .popup-main-cont {
	display: flex;
	flex-direction: row;
	width: 1014px;
	width: 63.375rem;
	background-color: #ffffff;
	padding: 0;
	margin-top: 13px;
	margin-top: 0.8125rem;
	min-height: 614px;
	min-height: 38.375rem;
}

div.row-pop .popup-main-cont .img-cont {
	width: 47.3%;
	padding: 0;
}

div.row-pop .popup-main-cont .img-cont img {
	max-width: max-content;
	z-index: 5;
	position: absolute;
	left: -42%;
	margin-top: 42px;
	margin-top: 2.625rem;

}

div.row-pop .popup-main-cont .popup-form-cont {
	width: 52.7%;
	padding-top: 47px;
	padding-top: 2.9375rem;
	padding-left: 10px;
	padding-left: 0.625rem;
	z-index: 999;
	padding-bottom: 47px;
	padding-bottom: 2.9375rem;
}

div.row-pop .popup-main-cont h2 {
	max-width: 464px;
	max-width: 29rem;
	width: 100%;
	color: #000000;
	font-size: 36px;
	font-size: 2.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 0;
}

div.row-pop .popup-main-cont p {
	max-width: 418px;
	max-width: 26.125rem;
	width: 100%;
	color: #000000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 0;
}

svg.e-font-icon-svg.e-eicon-close.eicon-close {
	fill: #ffffff;
	width: 32px;
	width: 2rem;
	height: 32px;
	height: 2rem;
}

.elementor-popup-modal .dialog-close-button.dialog-lightbox-close-button {
	margin-top: -55px;
	margin-top: -3.4375rem;
	margin-right: 29px;
	margin-right: 1.8125rem;
	z-index: 9999999;
}

div.row-pop .popup-main-cont .download-form {
	margin-top: 14px;
	margin-top: 0.875rem;
}

div.row-pop .popup-main-cont .download-form h2.gform_title,
div.row-pop .popup-main-cont .download-form label.gfield_label.gform-field-label {
	display: none;
}

div.row-pop .popup-main-cont .download-form .gform-theme--foundation .gform_fields {
	row-gap: 11px;
	row-gap: 0.6875rem;
	display: flex;
	flex-direction: column;
}

div.row-pop .popup-main-cont .download-form .gform-theme form .gfield input {
	border-radius: 100px;
	border-radius: 6.25rem;
	border: 1px solid #CCC;
	background: #FFF;
	padding: 15px 20px 15px 21px;
	padding: 0.9375rem 1.25rem 0.9375rem 1.3125rem;
	max-width: 376px;
	max-width: 23.5rem;
	width: 100%;
	height: 62px;
	height: 3.875rem;
	color: #000000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
}

div.row-pop .popup-main-cont .download-form .gform-theme form .gfield select {
	border-radius: 100px;
	border-radius: 6.25rem;
	border: 1px solid #CCC;
	padding: 15px 20px 15px 21px;
	padding: 0.9375rem 1.25rem 0.9375rem 1.3125rem;
	max-width: 376px;
	max-width: 23.5rem;
	width: 100%;
	height: 62px;
	height: 3.875rem;
	color: #000000;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
}

div.row-pop .popup-main-cont .download-form .gform-theme form .gform-footer {
	margin-top: 13px;
	margin-top: 0.8125rem;
}

div.row-pop .popup-main-cont .download-form div.gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button {
	display: flex;
	padding: 18px;
	padding: 1.125rem;
	justify-content: center;
	align-items: center;
	border-radius: 1000px;
	border-radius: 62.5rem;
	background: #FFA38B;
	color: #ffffff;
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	max-width: 376px;
	max-width: 23.5rem;
	height: 66px;
	height: 4.125rem;
	width: 100%;
	border: none;
	cursor: pointer;
}

div.row-pop .popup-main-cont .privacy-link p {
	max-width: 376px;
	max-width: 23.5rem;
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-bottom: 0;
	margin-top: -7px;
	margin-top: -0.4375rem;
}

div.row-pop .popup-main-cont .privacy-link p a {
	color: #000000;
	font-size: 16px;
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.875;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: none;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}


/*links improva */
div.row-hero.about-section.row-about.building.links-improva .hero-cont {
	padding-top: 116px;
	padding-top: 7.25rem;
	width: 58%;
	padding-bottom: 96px;
	padding-bottom: 6rem;
}

div.row-hero.about-section.row-about.building.links-improva div.hero-img {
	width: 42%;
	background-position-x: center;
}

div.row-hero.about-section.row-about.building.links-improva .hero-cont-sub {
	max-width: 750px;
	max-width: 46.875rem;
	padding-right: 14px;
	padding-right: 0.875rem;
}

.links-improva .improva-link-logo {
	display: flex;
}

.links-improva .improva-link-logo img {
	width: 290px;
	width: 18.125rem;
}

.row-hero.about-section.row-about.building.links-improva h2 {
	color: #ffffff;
	font-size: 36px;
	font-size: 2.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	max-width: 745px;
	max-width: 46.5625rem;
	width: 100%;
	margin-top: 19px;
	margin-top: 1.1875rem;
	margin-bottom: 25px;
	margin-bottom: 1.5625rem;
}

.links-improva h3 {
	color: #ffffff;
	font-size: 36px;
	font-size: 2.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	margin-top: 19px;
	margin-top: 1.1875rem;
}

.row-hero.about-section.row-about.building.links-improva .elementor-button {
	max-width: 358px;
	max-width: 22.375rem;
}

.links-improva .link-improva-cont {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	padding: 0;
	column-gap: 12px;
	column-gap: 0.75rem;
	row-gap: 16px;
	row-gap: 1rem;
	max-width: 728px;
	max-width: 45.5rem;
	width: 100%;
}

.elementor .links-improva .icon-cont {
	display: flex;
	flex-direction: row;
	gap: 17.66px;
	gap: 1.1038rem;
	padding: 0;
	margin-top: 5px;
	margin-top: 0.3125rem;
}

.row-links-footer {
	background-color: #000000;
}

.elementor div.row-links-footer .e-con-inner {
	display: flex;
	flex-direction: row;
	color: #fff;
	padding-top: 29px;
	padding-top: 1.8125rem;
	padding-bottom: 31px;
	padding-bottom: 1.9375rem;
	justify-content: space-between;
	align-items: center;
}

.elementor div.row-links-footer .e-con-inner img {
	width: 193px;
	width: 12.0625rem;
}

.elementor div.row-links-footer .copyright-date-text p {
	color: #FFF;
	font-size: 16px;
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.625;
	margin-bottom: 0;
}

.elementor div.row-links-footer .copyright-date-text p a {
	color: #ffffff;
}

.elementor div.row-links-footer .copyright-date-text p a:hover {
	color: #FFA38B;
}

.page-id-2141 footer.row-footer {
	display: none;
}

/*extra btn */
.elementor div.row-header-mobile-btn {
	display: none;
}

header.row-header .menu-cont .menu .menu-item.current-menu-item a {
	color: #FFA38B;
}

.elementor .row-pp-tc .e-con-inner {
	padding-top: 75px;
	padding-top: 4.6875rem;
	padding-bottom: 75px;
	padding-bottom: 4.6875rem;
}

.row-pp-tc h2 {
	margin-bottom: 26px;
}

.row-pp-tc p,
.row-pp-tc ul li {
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 300;

}

.row-pp-tc ul {
	margin-bottom: 28px;
	margin-bottom: 1.75rem;
	margin-top: 0;
}

.row-pp-tc p a,
.row-pp-tc ul li a {
	color: #FFA38B;
}


.elementor .gform-theme--framework .gform_validation_errors .gform_submission_error {
	font-size: 16px;
	font-size: 1rem;
	text-transform: normal;
	font-weight: 400;
	margin-bottom: 0;
	margin-top: 0;
}

.elementor .gform-theme--framework .gform_validation_errors .gform-icon {
	display: none;
}

.gform-theme--framework .field_description_below .gfield_description:where(:not(.gfield_creditcard_warning_message):not(.field_validation_above .gfield_validation_message):not(.ginput_counter_tinymce):not(.gfield_choice_limit_message)) {
	display: none;
}

.gform-theme form .gfield input[aria-invalid="true"],
.gform-theme form .gfield textarea[aria-invalid="true"],
.gform-theme form .gfield select[aria-invalid="true"] {
	border-color: red !important;
}

/*sitemap */
.elementor div.row-sitemap .e-con-inner {
	padding-left: 20px;
	padding-left: 1.25rem;
	padding-right: 20px;
	padding-right: 1.25rem;
}

.row-sitemap ul {
	padding: 0;
	list-style-type: none;
}

.row-sitemap ul li a,
.row-sitemap a {
	color: #FFA38B;
}

.row-sitemap ul li a:hover,
.row-sitemap a:hover {
	color: rgb(255, 163, 139, .6);
}

.woocommerce form .show-password-input,
.woocommerce-page form .show-password-input {
	min-width: auto;
}


/*calendar embeed */
div.row-ty-vid.book-a-call-bi .book-form .calendar-embed {
	width: 100%;
}

div.row-ty-vid.book-a-call-bi .book-form .calendar-embed iframe {
	min-height: 660px;
}

/*single product */
.woocommerce div.product .row-single-product .product_title {
	color: #000;
	font-size: 48px;
	font-size: 3rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
}

.woocommerce div.product .row-single-product p.price,
.woocommerce div.product .row-single-product span.price {
	color: #000000;
	font-size: 36px;
	font-size: 2.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.2;
}

/* Container settings */
.row-single-product #bkap-booking-form {
	display: flex;
	flex-wrap: wrap;
	/* Allows wrapping on small screens */
	gap: 20px;
	/* Space between columns */
	align-items: flex-start;
}

/* Make the heading/message take full width */
.row-single-product #bkap_multidates_msg {
	flex: 0 0 100%;
}

/* Left Column: Calendar */
.row-single-product .bkap_start_date {
	flex: 1;
	/* Takes up available space */
	min-width: 300px;
	/* Prevents it from getting too squashed */
}

/* Right Column: Time Slots */
.row-single-product .show_time_slot {
	flex: 1;
	min-width: 250px;
}

/* Optional: Make the time slots list look cleaner in a column */
.row-single-product .timeslot-lists {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* Ensure the "Add Day" button area stays at the bottom or takes full width */
.row-single-product #bkap-multidates-button-msg-div {
	flex: 0 0 100%;
	margin-top: 20px;
}

.row-single-product #bkap-add-days {
	font-size: 0 !important;
	/* Hides the original text */
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	background-color: #FFA38B;
	color: #000000;
	border-color: #FFA38B;
	cursor: pointer;
}

.row-single-product #bkap-add-days i {
	font-size: 16px !important;
	/* Brings the icon back */
	margin-right: 8px;
}

.row-single-product #bkap-add-days::after {
	content: 'Confirm Booking';
	/* Put your new text here */
	font-size: 16px !important;
	/* Sets the size for the new text */
	vertical-align: middle;
}

.row-single-product .ui-datepicker-inline.ui-datepicker.ui-widget.ui-widget-content.ui-helper-clearfix.ui-corner-all {
	width: 100%;
}

.row-single-product .ts-grid-item:nth-child(2n) a,
.row-single-product .ts-grid-item:nth-child(odd) a {
	background-color: #FFA38B;
	color: #000000;
}

/* Hide the original text in the message div */
.row-single-product #bkap_multidates_msg {
	font-size: 0 !important;
	margin-bottom: 15px;
	/* Adds space back since text is "gone" */
}

.row-single-product label#bkap_book_time,
.row-single-product .bkap-form-error {
	display: none;
}

.row-single-product button.bkap_multidates_delete {
	padding: 20px;
	min-height: 54px;
	min-width: 150px;
	background-color: #FFA38B;
	color: #000000;
	border-color: #FFA38B;
	margin-left: 20px;
	cursor: pointer;
}

.row-single-product button.single_add_to_cart_button.button.alt {
	background-color: #FFA38B;
	color: #000000;
	border-color: #FFA38B;
}

/* Inject the new text */
.row-single-product #bkap_multidates_msg::after {
	content: 'Choose your appointment date below:';
	/* Edit this text as needed */
	font-size: 16px;
	/* Reset font size to make it visible */
	font-weight: bold;
	color: #333;
	/* Optional: change the color */
	visibility: visible;
}

.row-checkout .elementor-widget-woocommerce-checkout-page a {
	color: #FFA38B;
}

.row-checkout .elementor-widget-woocommerce-checkout-page .woocommerce-checkout #payment #place_order {
	background-color: #FFA38B;
	color: #000000;
	border-color: #FFA38B;
}

.row-checkout .elementor-widget-woocommerce-checkout-page .woocommerce #customer_details .form-row label,
.row-checkout .elementor-widget-woocommerce-checkout-page .woocommerce .e-coupon-box .form-row label,
.row-checkout .elementor-widget-woocommerce-checkout-page .woocommerce .e-woocommerce-login-anchor .form-row label {
	color: #000000;
	font-family: 'Radikal', 'Montserrat', sans-serif;
}

.row-checkout .elementor-widget-woocommerce-checkout-page .woocommerce #customer_details .form-row .input-text,
.row-checkout .elementor-widget-woocommerce-checkout-page .woocommerce #customer_details .form-row select,
.row-checkout .elementor-widget-woocommerce-checkout-page .woocommerce #customer_details .form-row textarea,
.row-checkout .elementor-widget-woocommerce-checkout-page .woocommerce .e-coupon-box .form-row .input-text,
.row-checkout .elementor-widget-woocommerce-checkout-page .woocommerce .e-coupon-box .form-row select,
.row-checkout .elementor-widget-woocommerce-checkout-page .woocommerce .e-coupon-box .form-row textarea,
.row-checkout .elementor-widget-woocommerce-checkout-page .woocommerce .e-woocommerce-login-anchor .form-row .input-text,
.row-checkout .elementor-widget-woocommerce-checkout-page .woocommerce .e-woocommerce-login-anchor .form-row select,
.row-checkout .elementor-widget-woocommerce-checkout-page .woocommerce .e-woocommerce-login-anchor .form-row textarea {
	color: #000000;
	font-family: 'Radikal', 'Montserrat', sans-serif;
}

.row-checkout .elementor-widget-woocommerce-checkout-page .woocommerce .woocommerce-checkout-review-order-table tfoot td,
.row-checkout .elementor-widget-woocommerce-checkout-page .woocommerce .woocommerce-checkout-review-order-table tfoot th,
.row-checkout .elementor-widget-woocommerce-checkout-page .woocommerce .woocommerce-checkout-review-order-table thead th {
	color: #000000;
	font-family: 'Radikal', 'Montserrat', sans-serif;
}

.row-checkout p.e-woocommerce-coupon-nudge.e-checkout-secondary-title {
	color: #000000;
	font-family: 'Radikal', 'Montserrat', sans-serif;
}

.row-checkout .elementor-widget-woocommerce-checkout-page .woocommerce .wc_payment_method label {
	color: #000000;
	font-family: 'Radikal', 'Montserrat', sans-serif;
}

.row-checkout div#wc-stripe-payment-method-instructions-card {
	color: #000000;
	font-family: 'Radikal', 'Montserrat', sans-serif;
}

.row-checkout .elementor-widget-woocommerce-checkout-page .woocommerce .woocommerce-privacy-policy-text p {
	color: #000000;
	font-family: 'Radikal', 'Montserrat', sans-serif;
}

/* Responsive: Stack them on very small mobile screens */
@media (max-width: 600px) {
	.row-single-product #bkap-booking-form {
		flex-direction: column;
	}

	.row-single-product .bkap_start_date,
	.show_time_slot {
		width: 100%;
	}
}

@media (max-width: 530px) {
	.row-single-product tr#bkap_multiple_date_info_1 {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	.row-single-product button.bkap_multidates_delete {
		margin-left: 0;
	}
}

@media (max-width: 360px) {
	.row-single-product .ui-datepicker-inline.ui-datepicker.ui-widget.ui-widget-content.ui-helper-clearfix.ui-corner-all {
		width: fit-content;
	}
}


.row-single-product .ts-grid-item:nth-child(2n) a:hover,
.row-single-product .ts-grid-item:nth-child(odd) a:hover,
.row-single-product #bkap-add-days:hover,
.row-single-product button.bkap_multidates_delete:hover,
.row-single-product button.single_add_to_cart_button.button.alt:hover,
.row-checkout .elementor-widget-woocommerce-checkout-page .woocommerce-checkout #payment #place_order:hover {
	background-color: #FF6B45;
	color: #000000;
	border-color: #FF6B45;
}

.row-checkout .elementor-widget-woocommerce-checkout-page a:hover {
	color: #FF6B45;
}


.row-real-results .case-study-image .view-case-study .elementor-button {
	max-width: 120px;
	max-width: 7.5rem;
	width: 100%;
	height: 42px;
	height: 2.625rem;
	background-color: #FFA38B;
	display: flex;
	width: 216px;
	width: 13.5rem;
	padding: 6px;
	padding: 0.375rem;
	justify-content: center;
	align-items: center;
	border-radius: 10000px;
	border-radius: 625rem;
	color: #000000;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.66667;
}

.row-real-results .case-study-image .view-case-study .elementor-button {
	opacity: 0;
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.elementor .row-real-results .case-study-main .case-study-image:hover .view-case-study .elementor-button {
	max-width: 120px;
	max-width: 7.5rem;
	width: 100%;
	height: 42px;
	height: 2.625rem;
	background-color: #FFA38B;
	opacity: 1;
	width: 216px;
	width: 13.5rem;
	padding: 6px;
	padding: 0.375rem;
	justify-content: center;
	align-items: center;
	border-radius: 10000px;
	border-radius: 625rem;
	color: #000000;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.66667;
}

/*for homepage video */
.video-logo-wrapper {
	width: 1000px;
	max-width: 100%;
	height: 597px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	background: transparent;
	/* Ensures no flicker between loops */
	-webkit-mask-image: url("/wp-content/uploads/2026/03/Improva-Icon-Black-on-Transparent.png");
	mask-image: url("/wp-content/uploads/2026/03/Improva-Icon-Black-on-Transparent.png");
	-webkit-mask-size: 95% auto;
	mask-size: 95% auto;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}

.masked-video-iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%) scale(1.5);
	pointer-events: none;
	border: none;
}

.elementor-widget-n-accordion .e-n-accordion-item:not([open]):hover>.e-n-accordion-item-title .e-n-accordion-item-title-icon span>svg {
	fill: #FFA38B !important;
}



/*hoverss and active */
.row-pp-tc p a:hover,
.row-blog-inner .blog-content-cont .blog-content p a:hover,
.row-blog-inner .blog-content-cont .blog-content li a:hover {
	color: rgb(255, 163, 139, .6);
}

.elementor .read-more-btn-show:hover {
	background-color: transparent;
	border: none;
	color: rgb(255, 163, 139, .6);
}


.elementor footer.row-footer .footer-copyright .footer-socials a svg:hover {
	fill: #FFA38B;
}

.row-portfolio-list .porfolio-list .elementor-post__read-more-wrapper a.elementor-post__read-more:hover,
.row-as-seen-in.portfolio-page .case-study-btn p:hover {
	color: rgba(255, 163, 139, .6);
}

header.row-header .menu-cont .menu .menu-item:hover a,
footer.row-footer .logo-menu-cont .footer-menu p a:hover,
div.row-pop .popup-main-cont .privacy-link p a:hover,
.elementor div.row-contact .form-main-cont .form-nap .nap-list .elementor-icon-list-text:hover,
footer.row-footer .footer-copyright .copyright-txt .copyright-date-text p a:hover {
	color: #FFA38B;
}

.row-style .style-content .elementor-button:hover {
	color: #A896FF;
}

header.row-header .menu-cont .elementor-button:hover,
.elementor div.row-prefer .prefer-cont .elementor-button:hover,
div.row-tailored .elementor-button:hover,
.row-testimonials .testi-all-btn .elementor-button:hover,
.elementor .row-today-timeline .elementor-button:hover,
div.row-pop .popup-main-cont .download-form div.gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:hover,
.row-contact .form-cont div.gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:hover,
div.row-head-ty.ty-lead .elementor-button:hover,
.row-portfolio-list .porfolio-list .elementor-button-wrapper .elementor-button:hover,
.row-premium.joinery-care .premium-content .elementor-button:hover,
.elementor div.row-get.joinery-care .e-con-inner .get-cont .elementor-button:hover,
.row-premium .premium-content .elementor-button:hover,
.elementor div.row-get .e-con-inner .get-cont .elementor-button:hover,
div.row-ty-vid.book-a-call-bi .book-form .book-form-html a.cta-btn:hover,
.elementor div.row-faq.hw .elementor-button:hover,
.elementor div.row-faq .elementor-button:hover,
.elementor div.row-hero.about-section .elementor-button:hover,
.row-blog-inner .blog-guide-cont .download-free-guide-banner .elementor-button:hover,
.row-portfolio-inner .portfolio-inner-subhead .elementor-button:hover,
.elementor .row-plan .plan-cont .plan-list.recommended .elementor-button:hover,
.elementor .row-project-plan .project-plan-btns .recommended .elementor-button:hover,
.elementor div.row-hero-improva .elementor-button:hover,
.elementor div.row-hero .e-con-inner .elementor-button:hover,
.elementor div.row-portfolio .e-con-inner .elementor-button:hover,
.elementor div.row-parallax-landscape .e-con-inner .elementor-button:hover,
.elementor .row-plan.joinery-care .plan-cont .plan-list.recommended .elementor-button:hover,
.elementor .row-my-account table tr.payment-method.default-payment-method a:hover,
.elementor .row-my-account .woocommerce-MyAccount-content a.button:hover,
.elementor .row-real-results .case-study-main .case-study-image:hover .view-case-study .elementor-button:hover,
.row-portfolio-list.as-seen-inner .as-seen-in-main .elementor-button:hover {
	background-color: #ffffff;
	color: #FFA38B;
	border: 1px solid #FFA38B;
}

header.row-header .menu-cont .elementor-button:hover span {
	color: #FFA38B;
}

.elementor .row-plan.joinery-care .plan-cont .plan-list .elementor-button:hover,
.elementor .row-plan .plan-cont .plan-list .elementor-button:hover,
.elementor .row-project-plan .project-plan-btns .elementor-button:hover {
	background-color: #FFA38B;
}



header.row-header.elementor-sticky--effects {
	background-color: #000000;
}

header.row-header.white-header.elementor-sticky--effects {
	background-color: #ffffff;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}



@media (min-width: 1921px) {
	div.row-hero.about-section.row-about div.hero-img {
		background-position: bottom left;
		background-position-x: -130px;
	}
}

@media (max-width: 1910px) {
	div.row-hero.about-section div.hero-img {
		background-position: bottom center;
	}
}

@media (max-width: 1830px) {
	div.row-hero.about-section.row-about div.hero-img {
		background-position: bottom center;
	}

	div.row-hero.about-section.row-about.building div.hero-img {
		background-position-x: 50%;
	}
}

@media (max-width: 1758px) {
	div.row-tailored.free-guide .img-cont {
		background-position: center;
	}
}

@media (max-width: 1480px) {

	.row-tailored .list-2 h3.elementor-icon-box-title,
	.row-tailored .list-2 p.elementor-icon-box-description,
	.elementor div.row-tailored.why div.content-cont div.list:nth-child(8) p.elementor-icon-box-description {
		width: 100%;
		max-width: 100%;
	}
}

@media (max-width: 1440px) {
	div.elementor div.row-portfolio.parallax div.image-1st {
		left: 3.847%;
	}

	div.elementor div.row-portfolio.parallax div.image-3rd {
		left: 5.105%;
	}

	div.elementor div.row-portfolio.parallax div.image-5th {
		left: 6.355%;
	}
}

@media (max-width: 1430px) {
	.row-tailored.why .icon-cont {
		column-gap: 55px;
		column-gap: 3.4375rem;

	}
}

@media (max-width: 1414px) {
	.row-tailored.why .icon-cont {
		column-gap: 45px;
		column-gap: 2.8125rem;
	}
}

@media (max-width: 1398px) {
	.row-tailored.why .icon-cont {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	.row-tailored.why .subtext p,
	.row-tailored.why h2,
	.elementor div.row-timeline div.timeline-main-cont div.timeline-cont:nth-child(3) .timeline-content h3 {
		max-width: 100%;
	}

	.elementor div.row-timeline div.timeline-main-cont div.timeline-cont:nth-child(3) .year-cont .horizontal-line {
		height: 523px;
		height: 32.6875rem;
	}

	div.row-tailored.why .content-cont {
		padding-left: 38px;
		padding-left: 2.375rem;

	}

	div.row-tailored.why .img-cont {
		background-size: cover;
	}
}

@media (max-width: 1358px) {
	.row-style .style-content p {
		max-width: 600px;
		max-width: 37.5rem;

	}
}


@media (max-width: 1330px) {
	.row-showcase .row-walkthrough .walkthrough-cont .inner {
		padding-right: 20px;
		padding-right: 1.25rem;
	}

	.row-showcase .row-walkthrough.right .walkthrough-cont .inner {
		padding-left: 20px;
		padding-left: 1.25rem;
	}

	.elementor .row-timeline .timeline-cont.img-right .image-cont img {
		max-width: 100%;
	}
}

@media (max-width: 1318px) {
	.row-core-value .nav-item[data-index="6"] {
		--angle: 90deg;
		left: 31.8%;
	}

	.row-core-value .nav-item[data-index="5"] span {
		top: -197px;
		top: -12.3125rem;
		left: -30px;
		left: -1.875rem;
	}

	.row-core-value .nav-item[data-index="5"] {
		--angle: 71deg;
		left: 30.4%;
	}

	.row-core-value .nav-item[data-index="4"] span {
		top: -174px;
		top: -10.875rem;
		left: 49px;
		left: 3.0625rem;
	}

	.row-core-value .nav-item[data-index="4"] {
		--angle: 51deg;
		left: 23%;
	}

	.row-core-value .nav-item[data-index="3"] {
		top: 68.4%;
	}

	.row-core-value .nav-item[data-index="2"] span {
		top: -71px;
		top: -4.4375rem;
		left: -184px;
		left: -11.5rem;
	}

	.row-core-value .nav-item[data-index="2"] {
		--angle: -51.5deg;
		left: 77%;
	}

	.row-core-value .nav-item[data-index="1"] span {
		top: -18px;
		top: -1.125rem;
		left: -122px;
		left: -7.625rem;
	}

	.row-core-value .nav-item[data-index="1"] {
		--angle: -71deg;
		left: 69.5%;
	}

	.row-core-value .nav-item[data-index="0"] {
		left: 68.3%;
	}

	.row-core-value .circle-content {
		width: 500px;
		width: 31.25rem;
		height: 500px;
		height: 31.25rem;
	}

	.row-core-value .circle-controls {
		max-width: 265px;
		max-width: 16.5625rem;
	}

	.row-core-value .circle-shell {
		width: 550px;
		width: 34.375rem;
		height: 550px;
		height: 34.375rem;
	}

}

@media (max-width: 1307px) {

	header.row-header .menu-cont .menu .menu-item a,
	header.row-header.white-header .menu-cont .menu .menu-item a {
		font-size: 15px;
		font-size: 0.9375rem;
	}
}

@media (max-width: 1280px) {
	.row-meet .team-list .meet-line div {
		max-width: 100%;
	}

	footer.row-footer .logo-menu-cont .footer-menu {
		gap: 24px;
		gap: 1.5rem;
	}

	div.row-tailored.luxury.joinery .content-cont {
		padding-left: 20px;
		padding-left: 1.25rem;
	}

	div.row-tailored.luxury .img-cont {
		background-position: left center;
	}

	div.row-tailored .img-cont {
		background-position: top right;
	}

	div.row-logos .e-con-inner {
		padding-left: 0;
		padding-right: 0;

	}

	div.row-hero .e-con-inner {
		padding-left: 0;
	}
}

@media (max-width: 1200px) {
	div.row-hero.about-section.row-about.building div.hero-img {
		background-position: center;
	}

	.elementor div.row-tailored.joinery-care-page div.img-cont {
		background-position-y: 0;
	}

	.elementor div.row-pop .e-con-inner {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.elementor-popup-modal .dialog-close-button.dialog-lightbox-close-button {
		margin-right: 98px;
	}

	div.row-pop .popup-main-cont .img-cont img {
		left: -46%;
		margin-top: 12px;
		width: 852px;
	}

	div.row-hero.about-section.row-about.contact-page div.hero-img {
		background-position-x: 32%;
		background-position-y: -171%;
	}

	.elementor .row-timeline .timeline-cont .year-cont p {
		margin-top: 36px;
	}

	.elementor div.row-timeline div.timeline-main-cont div.timeline-cont:nth-child(9) .year-cont p {
		margin-top: 41px;
	}

}

@media (max-width: 1080px) {
	div.row-hero.about-section.row-about.contact-page div.hero-img {
		background-position-y: -50%;
	}

	.elementor div.row-timeline div.timeline-main-cont div.timeline-cont:nth-child(9) .year-cont p {
		margin-bottom: 30px;
	}
}

@media (max-width: 1024px) {

	.elementor-menu-toggle.elementor-active .elementor-menu-toggle__icon--open,
	.elementor-menu-toggle:not(.elementor-active) .elementor-menu-toggle__icon--close {
		display: none;
	}

	header.row-header nav {
		box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	}

	header.row-header .menu-cont .menu .sub-arrow .e-font-icon-svg.fa-svg-chevron-down {
		fill: #000000;
	}

	header.row-header .menu-cont .menu .menu-item.current-menu-item a {
		background-color: #EFEFEF;
	}

	header.row-header .menu-cont .menu .menu-item a {
		padding-top: 14px;
		padding-top: 0.875rem;
		padding-bottom: 14px;
		padding-bottom: 0.875rem;
	}

	header.row-header .menu-cont .menu .menu-item a,
	header.row-header.white-header .menu-cont .menu .menu-item a {
		color: #000000;
		font-size: 20px;
		font-size: 1.25rem;
	}

	.elementor .row-plan.joinery-care .plan-cont .plan-list .elementor-button {
		max-width: 100%;
	}

	footer.row-footer {
		background-size: contain !important;
	}

	footer.row-footer .footer-copyright .footer-socials {
		justify-content: center;
	}

	footer.row-footer .footer-copyright {
		flex-direction: column;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 20px;
		gap: 1.25rem;
	}

	footer.row-footer .e-con-inner {
		max-width: 833px;
		max-width: 52.0625rem;
	}

	footer.row-footer .logo-menu-cont {
		align-items: flex-start;
	}

	footer.row-footer .logo-menu-cont .menu-cont-footer {
		width: auto;
	}

	.elementor footer.row-footer .logo-menu-cont .footer-menu {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		column-gap: 100px;
		column-gap: 6.25rem;
		row-gap: 30px;
		row-gap: 1.875rem;
		max-width: 414px;
		max-width: 25.875rem;
		width: 100%;
	}

	.row-testimonials .elementor-shortcode {
		display: flex;
		justify-content: center;
	}

	.row-testimonials .impv4-section {
		max-width: 800px;
		width: 100%;
	}

	.row-testimonials .impv4-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.row-testimonials .impv4-item {
		border-right: 1px solid #4e4e4e;
		border-bottom: 1px solid #4e4e4e;
	}

	.row-testimonials .impv4-item:nth-child(3n) {
		border-right: 1px solid #4e4e4e;
	}

	/* Remove RIGHT border on last column (2-column layout) */
	.row-testimonials .impv4-item:nth-child(2n) {
		border-right: none;
		border-bottom: 1px solid #4e4e4e;
	}

	/* Remove BOTTOM border on last row (2-column layout) */
	.row-testimonials .impv4-item:nth-last-child(-n+2) {
		border-bottom: none;
	}

	.elementor div.row-tailored.why div.content-cont div.list {
		max-width: 100%;
	}

	.elementor div.row-tailored.why div.content-cont div.list:nth-child(8) p.elementor-icon-box-description,
	.elementor div.row-tailored.why div.content-cont div.list:nth-child(6) p.elementor-icon-box-description {
		width: 100%;
	}

	.row-tailored.why .icon-cont {
		display: flex;
		flex-direction: column;
	}

	header.row-header .menu-cont,
	header.row-header .logo-cont {
		width: 50%;
		flex-wrap: nowrap;
	}

	.row-testimonials .impv4-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.row-portfolio-inner .acf-gallery.acf-3col {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 1010px) {
	div.row-tailored.luxury.building .content-cont {
		padding-left: 0;
	}

	div.row-tailored.building.not-fullwidth .content-cont {
		padding-right: 10px;
		padding-right: 0.625rem;
	}

	div.row-tailored.luxury.building.not-fullwidth .content-cont {
		padding-left: 10px;
		padding-left: 0.625rem;
	}

}

@media (max-width: 998px) {
	.elementor-popup-modal .dialog-close-button.dialog-lightbox-close-button {
		margin-right: 70px;
	}

	div.row-hero.about-section.row-about.contact-page .hero-cont {
		padding-top: 105px;
		padding-top: 6.5625rem;
	}

	.elementor div.row-prefer .prefer-cont {
		padding-left: 20px;
		padding-left: 1.25rem;
		padding-right: 20px;
		padding-right: 1.25rem;

	}
}

@media(max-width: 992px) {
	div.row-parallax-portrait img {
		width: 100%;
		height: 400px;
	}
}

@media (max-width: 900px) {
	div.row-hero.about-section.row-about.contact-page div.hero-img {
		background-position-y: -15%;
	}

	.elementor div.row-timeline div.timeline-main-cont div.timeline-cont:nth-child(9) .year-cont p {
		margin-bottom: 35px;
	}

	@media (max-width: 1440px) {
		div.elementor div.row-portfolio.parallax div.image-1st {
			left: 0%;
		}

		div.elementor div.row-portfolio.parallax div.image-3rd {
			left: 0%;
		}

		div.elementor div.row-portfolio.parallax div.image-5th {
			left: 0%;
		}
	}
}

@media (max-width: 870px) {
	.row-core-value .nav-item {
		font-size: 18px;
		font-size: 1.125rem;
	}

	.row-core-value .nav-item[data-index="0"] span {
		top: 4px;
	}

	.row-core-value .nav-item[data-index="1"] span {
		top: 1px;
		left: -87px;
	}

	.row-core-value .nav-item[data-index="2"] span {
		top: -29px;
		left: -126px;
	}

	.row-core-value .nav-item[data-index="4"] span {
		top: -112px;
		left: 35px;
	}

	.row-core-value .nav-item[data-index="5"] span {
		top: -129px;
		left: -18px;
	}

	.row-core-value .nav-item[data-index="6"] span {
		top: -147px;
		left: -79px;
	}

	.row-core-value .circle-content .content-title {
		font-size: 36px;
		font-size: 2.25rem;

	}

}

@media (max-width: 805px) {
	.elementor .row-real-results .case-study-main .case-study-content {
		padding-right: 10px;
		padding-right: 0.625rem;
	}
}


@media (max-width: 768px) {

	.elementor .row-real-results .case-study-main.first {
		background-color: #000;
	}

	.elementor div.row-timeline div.timeline-main-cont div.timeline-cont:nth-child(1) .timeline-content h3 {
		margin-top: 29px;
		margin-top: 1.8125rem;
	}

	
	.row-timeline .timeline-main-cont,
	.row-meet .team-list {
		background-color: #000;
	}

	div.row-showcase,
	.elementor div.divider-logo,
	div.row-timeline,
	.elementor .row-meet,
	.elementor div.row-real-results {
		background-size: 100% auto !important;
		background-attachment: fixed;
	}

	.row-as-seen-inner-gallery .seen-inner-img img {
		width: 100%;
		min-height: 100%;
	}

	.elementor div.row-key,
	.elementor div.row-key.homeowner {
		background: none;
	}

	footer.row-footer .e-con-inner {
		padding-bottom: 135px;
		padding-bottom: 8.4375rem;

	}

	.elementor div.row-story div.e-con-inner {
		padding-bottom: 0;
	}

	div.row-story {
		background: unset;
	}

	.elementor div.row-story div.e-con-inner .about-video {
		min-height: auto;
	}

	div.row-tailored.free-guide .elementor-widget-button {
		display: flex;
		width: 100%;
		justify-content: center;
	}

	.row-tailored.free-guide h2,
	.row-tailored.free-guide .text p {
		text-align: center;
	}

	div.row-ty-vid.book-a-call-bi .book-form .calendar-embed iframe {
		min-height: 700px;
	}

	.row-results.project-walk .results-video-cont {
		grid-template-columns: repeat(1, 1fr);
	}

	header.row-header.elementor-sticky--effects .logo-cont,
	header.row-header.white-header.elementor-sticky--effects .logo-cont {
		display: none;
	}

	header.row-header.elementor-sticky--effects .menu-cont,
	header.row-header.white-header.elementor-sticky--effects .menu-cont {
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		width: 100%;
	}

	div.row-pop .popup-main-cont .download-form .gform-theme form .gfield input,
	div.row-pop .popup-main-cont .download-form .gform-theme form .gfield select,
	div.row-pop .popup-main-cont .download-form div.gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button,
	div.row-pop .popup-main-cont .privacy-link p {
		max-width: 100%;
	}

	div.row-pop .popup-main-cont h2,
	div.row-pop .popup-main-cont p {
		text-align: center;
	}

	.elementor-popup-modal .dialog-close-button.dialog-lightbox-close-button {
		margin-right: auto;
	}

	div.row-pop .popup-main-cont .img-cont {
		width: 100%;
		display: none;
	}

	div.row-pop .popup-main-cont .popup-form-cont {
		width: 100%;
		display: flex;
		align-content: center;
	}

	.elementor div.row-pop .popup-main-cont {
		max-width: 100%;
		min-height: 100%;
	}

	.elementor div.row-links-footer .copyright-date-text p,
	.links-improva h3 {
		text-align: center;
	}

	.elementor .links-improva .icon-cont {
		align-items: center;
		justify-content: center;
	}

	.elementor div.row-links-footer .e-con-inner {
		justify-content: center;
	}

	div.row-hero.about-section.row-about.building.links-improva .hero-cont {
		width: 100%;
		padding-top: 75px;
		padding-top: 4.6875rem;
		padding-bottom: 75px;
		padding-bottom: 4.6875rem;
	}

	.elementor .row-404 img {
		margin-left: 0;
	}

	.elementor div.row-contact .form-main-cont .form-nap {
		width: 100%;
	}

	.elementor div.row-contact .form-main-cont .form-cont {
		width: 100%;
		padding-right: 0;
	}

	.elementor div.row-contact .form-main-cont {
		padding-left: 20px;
		padding-left: 1.25rem;
		padding-right: 20px;
		padding-right: 1.25rem;
		padding-bottom: 20px;
		padding-bottom: 1.25rem;
	}

	div.row-hero.about-section.row-about.contact-page .hero-cont {
		padding-bottom: 0;
	}

	div.row-hero.about-section.row-about.contact-page {
		min-height: 100%;
	}

	div.row-hero.about-section.row-about.contact-page div.hero-img,
	div.row-hero.about-section.row-about.building.links-improva div.hero-img {
		display: none;
	}

	.elementor div.row-contact .form-main-cont {
		margin-top: 0;
	}

	.elementor div.row-head-ty.book-a-call-bi .e-con-inner,
	.elementor div.row-head-ty .e-con-inner {
		padding-top: 100px;
		padding-top: 6.25rem;
	}

	div.row-head-ty h1 {
		text-align: center;
	}

	.row-blog-inner .blog-content-cont {
		width: 100%;
	}

	.row-blog-inner .blog-guide-cont {
		width: 100%;
		align-items: flex-start;
	}

	.elementor div.row-blog-inner .e-con-inner {
		display: flex;
		flex-direction: column;
	}

	.row-blog-inner .blog-nav-cont {
		display: none;
	}

	.row-get h3.elementor-icon-box-title,
	.row-get p.elementor-icon-box-description {
		text-align: left;
	}

	.elementor div.row-get .e-con-inner .get-cont .elementor-icon-box-wrapper {
		display: flex;
		flex-direction: row;
	}

	.elementor div.row-get .e-con-inner .get-list {
		max-width: 100%;
	}

	.row-get .get-cont,
	.row-premium.new2col .premium-content p {
		max-width: 100%;
	}

	div.row-tailored.luxury.estimating .content-cont {
		width: 100%;
		padding-top: 20px;
		padding-top: 1.25rem;
		padding-left: 0;
	}

	.row-premium.new2col .premium-content {
		padding-left: 10px;
		padding-left: 0.625rem;
		padding-bottom: 30px;
		padding-bottom: 1.875rem;
	}

	div.row-tailored.estimating-works .content-cont,
	.row-premium.new2col .premium-content {
		width: 100%;
		padding-top: 20px;
		padding-top: 1.25rem;
	}

	div.row-tailored.luxury.estimating .img-cont,
	div.row-tailored.estimating-works .img-cont,
	.row-premium.new2col .premium-img {
		width: 100%;
		min-height: 100%;
	}

	.row-tailored.free-guide.joinery-care-page h2,
	.row-tailored.free-guide.joinery-care-page .text p,
	div.row-tailored.luxury.estimating .content-cont .content-cont-inner,
	.row-tailored.estimating h2,
	.row-tailored.luxury.estimating .text p,
	.row-tailored.luxury.estimating .issues p,
	div.row-tailored.estimating-works .content-cont,
	.row-premium.new2col .premium-content,
	.row-tailored.estimating-works h2 {
		max-width: 100%;
	}

	.elementor .row-plan.joinery-care .plan-cont .recom-main-cont,
	.elementor .row-plan .plan-cont .recom-main-cont {
		margin-top: 80px;
	}

	.elementor .row-plan .plan-cont {
		margin-top: 0;
	}

	.elementor .row-plan .plan-cont {
		grid-template-columns: repeat(1, 1fr);
	}

	.elementor div.row-get .e-con-inner .get-cont svg {
		margin-right: 5px;
		margin-right: 0.3125rem;

	}

	.elementor div.row-get.joinery-care .reasons-to {
		flex-wrap: nowrap;
	}

	.elementor div.row-premium.joinery-care .premium-img,
	.elementor div.row-get.joinery-care .e-con-inner {
		align-items: flex-start;
	}

	.row-premium.joinery-care .premium-img img {
		margin-top: 0;
	}

	.elementor .row-premium.joinery-care .premium-main-cont {
		display: flex;
		flex-direction: column-reverse;
		margin-top: 0;
	}

	div.row-hero.about-section.row-about.building.estimating .hero-cont {
		padding-top: 0;
		padding-bottom: 60px;
		padding-bottom: 3.75rem;
	}

	.elementor div.row-project-plan .project-plan-btns {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	div.row-tailored.estimating-mentor.joinery-care .content-cont {
		padding-top: 0;
		padding-left: 10px;
		padding-left: 0.625rem;
	}

	div.row-tailored.estimating-mentor .content-cont {
		padding-top: 61px;
		padding-top: 3.8125rem;
		padding-left: 10px;
		padding-left: 0.625rem;
	}

	.elementor div.row-hero.about-section.row-about.portfolio-page.portfolio-inner {
		background-color: #000000;
	}

	.elementor div.row-hero.about-section.row-about.portfolio-page {
		background-color: #ffffff;
	}

	.elementor .row-key.homeowner .benefits-list.even {
		margin-bottom: 0;
	}

	.row-key.homeowner .benefits-main-cont,
	.row-premium .premium-content {
		padding-left: 0;
		padding-top: 0;
	}

	div.row-hero.about-section.row-about.building .hero-cont,
	div.row-hero.about-section.row-about.portfolio-page .hero-cont {
		padding-top: 0;
	}

	div.row-hero.about-section.row-about.building .hero-cont,
	div.row-hero.about-section.row-about.portfolio-page .hero-cont {
		padding-bottom: 40px;
		padding-bottom: 2.5rem;
	}

	.row-results.project-walk .results-video-cont .results-video {
		height: auto;
	}

	.elementor div.row-hero.about-section.row-about .elementor-widget-button {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.row-as-seen-in .seen-in-list,
	.row-portfolio-list .porfolio-list .elementor-posts-container.elementor-posts.elementor-posts--skin-classic.elementor-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.elementor .row-real-results.estimating .case-study-main .case-study-content {
		padding-left: 10px;
		padding-left: 0.625rem;
		padding-right: 10px;
		padding-right: 0.625rem;

	}

	.elementor .row-real-results .case-study-main.right-image .case-study-content,
	div.row-hero.about-section.row-about.building .hero-cont-sub,
	.elementor .row-real-results.homeowner .case-study-main.right-image .case-study-content,
	.row-premium.joinery-care h2,
	.row-premium.joinery-care .premium-content p,
	.elementor .row-real-results.estimating .case-study-main .case-study-content,
	.elementor .row-real-results.estimating .case-study-main.right-image .case-study-content {
		max-width: 100%;
	}

	.elementor .row-real-results .case-study-main.right-image {
		flex-direction: column-reverse;
	}

	.row-real-results .case-study-content-main p {
		max-width: 100%;
		padding-left: 0;
	}

	.elementor .row-real-results .case-study-main .case-study-content {
		padding-right: 38px;
		padding-right: 2.375rem;
		max-width: 100%;
	}

	.row-real-results .case-study-main .case-study-image {
		min-height: 300px;
		min-height: 18.75rem;
	}

	.row-real-results .case-study-main .case-study-image,
	.elementor .row-real-results .case-study-main div,
	.row-real-results .case-study-main.right-image .case-study-image,
	.row-real-results .case-study-main.right-image .case-study-content-main,
	.elementor div.row-premium.joinery-care .premium-img,
	.row-premium.joinery-care .premium-content,
	.row-premium .premium-img,
	.row-premium .premium-content,
	.row-real-results.estimating .case-study-main .case-study-image,
	.row-real-results.estimating .case-study-main .case-study-content-main {
		width: 100%;
	}

	.elementor .row-real-results .case-study-main {
		flex-direction: column;
	}

	.row-results .results-video-cont {
		grid-template-columns: repeat(1, 1fr);
	}

	.row-results h2,
	.row-results p,
	.row-real-results h2,
	.row-real-results p {
		max-width: 100%;
		padding-left: 10px;
		padding-left: 0.625rem;
		padding-right: 10px;
		padding-right: 0.625rem;
	}

	div.row-tailored.building.cad .content-cont,
	div.row-tailored.luxury.building.homeowner .content-cont .content-cont-inner,
	div.row-tailored.building.cad.homeowner .content-cont {
		padding-bottom: 0;
	}

	div.row-tailored.luxury.building.homeowner .content-cont .content-cont-inner,
	div.row-tailored.luxury.building.not-fullwidth .content-cont .content-cont-inner,
	div.row-tailored.luxury.building .content-cont .content-cont-inner,
	div.row-tailored.building.not-fullwidth .content-cont,
	div.row-tailored.building.cad .content-cont,
	div.row-tailored.estimating-mentor.joinery-care .content-cont {
		padding-top: 61px;
		padding-top: 3.8125rem;
	}

	div.row-tailored.building.cad .img-cont {
		width: 100%;
	}

	div.row-tailored.building.cad {
		padding-top: 0;
		flex-direction: column;
		padding-left: 10px;
		padding-left: 0.625rem;
		padding-right: 10px;
		padding-right: 0.625rem;
	}

	div.row-tailored.building.not-fullwidth {
		padding-bottom: 20px;
		padding-bottom: 1.25rem;
	}

	div.row-tailored.luxury.building.not-fullwidth .e-con-inner {
		padding-top: 0;
		flex-direction: column-reverse;
	}

	div.row-tailored.building.not-fullwidth .img-cont,
	div.row-tailored.luxury.building.not-fullwidth .img-cont {
		width: 100%;
		align-items: flex-start;
	}

	div.row-tailored.building.not-fullwidth .content-cont,
	div.row-tailored.luxury.building.not-fullwidth .content-cont,
	div.row-tailored.building.cad .content-cont {
		width: 100%;
		padding-left: 0;
	}

	div.row-tailored.building.not-fullwidth .e-con-inner {
		display: flex;
		flex-direction: column;
		padding-left: 10px;
		padding-left: 0.625rem;
		padding-right: 10px;
		padding-right: 0.625rem;
		padding-top: 0;
	}

	div.row-tailored.luxury.building .content-cont .content-cont-inner {
		padding-bottom: 0;
	}

	.row-key .benefits-list h3,
	.row-key .benefits-list p {
		text-align: left;
	}

	.elementor .row-key .benefits-list.even {
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		margin-top: 0;
		margin-bottom: 0;
	}

	.row-key .benefits-main-cont {
		padding-left: 0;
		padding-right: 0;
		gap: 30px;
		gap: 1.875rem;

	}

	.elementor .row-key .benefits-list {
		flex-direction: row-reverse;
		justify-content: flex-end;
	}

	.row-style .style-content {
		max-width: 100%;
		display: flex;
		align-items: center;
	}

	.row-style .style-content p,
	.row-style .style-content h2 {
		max-width: 100%;
		text-align: center;
	}

	.row-style .style-image .style-image-inkolor {
		display: flex;
		flex-direction: column;
		align-items: center;
		position: absolute;
		top: -112px;
		left: 0%;
		justify-self: anchor-center;
		justify-content: center;
		width: 100%;
	}


	.row-style .style-image {
		min-height: 500px;
		width: 100%;
		background-position: 50% 0% !important;
	}

	.row-style .style-content-main {
		width: 100%;
		padding-bottom: 157px;
		padding-bottom: 9.8125rem;
		padding-top: 75px;
		padding-top: 4.6875rem;


	}

	div.elementor div.row-style {
		flex-direction: column;
	}

	.row-meet .team-list {
		grid-template-columns: repeat(3, 1fr);
	}

	.elementor div.row-timeline div.timeline-main-cont div.timeline-cont:nth-child(9) .year-cont p {
		font-size: 18px;
		font-size: 1.125rem;

	}

	.elementor div.row-timeline div.timeline-main-cont div.timeline-cont:nth-child(9) {
		background: url(/wp-content/uploads/2025/11/timeline-today.png) no-repeat;
		background-position-x: 50%;
	}

	.row-timeline .timeline-main-cont {
		gap: 20px;
		gap: 1.25rem;
	}

	.elementor .row-timeline .timeline-cont .image-cont img,
	.elementor .row-timeline .timeline-cont.img-right .image-cont,
	.elementor .row-timeline .timeline-cont.img-right .image-cont img {
		margin-top: 0;
		padding-left: 0;
	}

	.row-timeline .timeline-content h3,
	.row-timeline .timeline-content p,
	.row-timeline div.timeline-cont.img-right .timeline-content h3,
	.elementor div.row-timeline div.timeline-main-cont div.timeline-cont:nth-child(4) .timeline-content h3,
	.elementor div.row-timeline div.timeline-main-cont div.timeline-cont:nth-child(6) .timeline-content h3,
	.elementor div.row-timeline div.timeline-main-cont div.timeline-cont:nth-child(8) .timeline-content h3 {
		text-align: center;
		max-width: 100%;
	}

	.elementor .row-timeline .timeline-cont .timeline-content,
	.elementor .row-timeline .timeline-cont.img-right .timeline-content {
		order: 2;
		padding-left: 0;
		width: 100%;
		display: flex;
		align-items: center;
	}

	.elementor .row-timeline .timeline-cont .year-cont {
		order: 1;
	}

	.elementor .row-timeline .timeline-cont .image-cont,
	.elementor .row-timeline .timeline-cont.img-right .image-cont {
		order: 3;
		width: 100%;
	}

	.elementor div.row-timeline div.timeline-main-cont div.timeline-cont {
		flex-direction: column;
		background: url(/wp-content/uploads/2025/11/year-3.jpg) no-repeat;
		background-position-x: 50%;
		display: flex;
		align-items: center;
	}

	.elementor .row-timeline .timeline-cont .year-cont .horizontal-line {
		display: none;
	}

	.elementor .row-mission .vission-purpose {
		flex-direction: column;
	}

	.row-mission .vission-purpose .purpose {
		padding-left: 0;
		padding-top: 30px;
		padding-top: 1.875rem;
	}

	.row-mission .vission-purpose .vission {
		border-bottom: 2px solid grey;
		border-bottom: 0.125rem solid grey;
		border-right: none;
		padding-bottom: 30px;
		padding-bottom: 1.875rem;
	}

	div.row-hero.about-section.row-about div.hero-img {
		width: 100%;
	}

	.elementor div.row-hero.about-section.row-about {
		display: flex;
		flex-direction: column;
		background-image: none;
		background-color: #000;
		padding-top: 60px;
		padding-top: 3.75rem;
	}

	div.row-hero.about-section.row-about .hero-cont {
		padding-top: 20px;
		padding-top: 1.25rem;
		padding-bottom: 75px;
		padding-bottom: 4.6875rem;

	}

	.row-mission .vission-purpose .vission {
		min-width: 100%;
	}

	.row-testimonials .impv4-text p,
	.row-mission .vission-purpose p,
	.row-tailored.luxury.building .text p,
	div.row-tailored.luxury.building.not-fullwidth .text p,
	div.row-tailored.building.cad .text p {
		max-width: 100%;
	}

	.row-testimonials .impv4-item:nth-child(3n) {
		border-right: none;
		border-bottom: none;
	}

	.row-testimonials .impv4-item:nth-last-child(-n+2) {
		border-bottom: 1px solid #4e4e4e;
	}

	.row-testimonials .impv4-grid {
		grid-template-columns: 1fr;
	}

	.row-testimonials .impv4-item {
		border-right: none;
		/* single column = no right border */
	}

	.row-testimonials .impv4-item:nth-last-child(-n+1) {
		border-bottom: none;
		/* remove last item bottom */
	}

	div.row-tailored.luxury .content-cont .content-cont-inner,
	.row-hero-improva h1,
	.row-hero-improva p {
		max-width: 100%;
	}

	.elementor div.row-tailored div.content-cont div.list .elementor-icon-box-wrapper {
		display: flex;
		flex-direction: row;
	}

	.row-tailored h2,
	.row-tailored .text p,
	.elementor div.row-tailored div.content-cont div.list,
	.row-tailored .list-2 h3.elementor-icon-box-title,
	.row-tailored .list-2 p.elementor-icon-box-description,
	.row-tailored.luxury .text p,
	div.row-hero.about-section .hero-cont-sub,
	.row-hero.about-section h2,
	.row-hero.about-section p,
	div.row-tailored.luxury.joinery .content-cont .content-cont-inner,
	div.row-hero.about-section.row-about .hero-cont-sub,
	.row-tailored.free-guide h2,
	.row-tailored.free-guide .text p,
	div.row-hero.about-section.row-about.building .hero-cont {
		max-width: 100%;
		width: 100%;
	}

	.row-hero.about-section h2 {
		text-align: center;
	}

	div.row-hero.about-section .hero-cont-sub {
		display: flex;
		align-items: center;
	}

	div.row-tailored .img-cont img,
	.row-premium.new2col .premium-img img,
	div.row-tailored.luxury .img-cont img,
	div.row-tailored.why .img-cont img,
	div.row-hero.about-section div.hero-img img,
	div.row-tailored.free-guide .img-cont img {
		display: block;
	}

	div.row-tailored.why .img-cont img,
	div.row-tailored.luxury.joinery .img-cont img {
		/*max-height: 227px; */
		object-fit: cover;
	}

	div.row-hero.about-section div.hero-img img {
		width: 100%;
	}

	.row-hero.about-section.row-about.portfolio-page {
		min-height: 100%;
	}

	.row-faq.estimating h3 {
		margin-left: 0;
		width: 100%;
		text-align: center;
	}

	div.row-tailored .img-cont,
	div.row-tailored.luxury .img-cont,
	div.row-tailored.why .img-cont,
	div.row-tailored.luxury.joinery .img-cont,
	div.row-tailored.free-guide .img-cont,
	div.row-hero.about-section.row-about.building div.hero-img,
	div.row-hero.about-section div.hero-img {
		width: 100%;
		background-image: none !important;
	}

	div.row-hero.about-section .hero-cont,
	div.row-tailored.free-guide .content-cont {
		padding-top: 30px;
		padding-top: 1.875rem;
	}

	div.row-tailored.luxury .content-cont,
	div.row-hero.about-section .hero-cont,
	div.row-tailored.luxury.joinery .content-cont,
	div.row-hero.about-section.row-about .hero-cont {
		width: 100%;
	}

	div.row-tailored .content-cont,
	div.row-tailored.why .content-cont,
	div.row-tailored.free-guide .content-cont {
		width: 100%;
		padding-left: 10px;
		padding-left: 0.625rem;
	}

	div.elementor div.row-tailored.free-guide {
		flex-direction: column;
	}

	.home div.elementor div.row-hero.about-section {
		flex-direction: column-reverse;
	}

	div.elementor div.row-tailored.luxury {
		flex-direction: column-reverse;
	}

	div.elementor div.row-tailored {
		display: flex;
		flex-direction: column;
	}

	.elementor div.row-hero .e-con-inner .elementor-button {
		min-width: 229px;
		min-width: 14.3125rem;
	}

	.row-hero h1,
	.row-hero p {
		max-width: 100%;
		text-align: center;
	}

	div.row-hero div.hero-img,
	.row-hero .hero-cont {
		width: 100%;
		justify-content: center;
		align-items: center;
	}

	.elementor div.row-hero .e-con-inner {
		display: flex;
		flex-direction: column-reverse;
	}

	header.row-header .search-icon {
		display: none;
	}

	.row-core-value .circle-shell {
		width: 100%;
		height: auto;
	}

	.row-core-value .circle-path {
		display: none;
	}

	.row-core-value .circle-content {
		background-size: contain;
		position: relative;
		left: auto;
		top: auto;
		transform: none;
		width: 100%;
		height: auto;
		border-radius: 24px;
		padding: 2rem 1.75rem 1.75rem;
		box-shadow: none;
		margin-top: 30px;
		margin-top: 1.875rem;
	}

	.row-core-value .content-step-number {
		margin-top: 0;
	}

	.row-core-value .circle-content .content-title {
		font-size: 1.6rem;
	}

	.row-core-value .nav-item {
		position: static;
		width: auto;
		height: auto;
		transform: none !important;
		margin: 10px 0;
		margin: 0.625rem 0;
		text-align: left;
	}

	.row-core-value .nav-item::before {
		position: static;
		transform: none;
		margin-right: 0.4rem;
		display: inline-block;
	}

	.row-core-value .nav-item span {
		position: static;
		transform: none;
		max-width: none;
		white-space: normal;
		display: inline;
	}

	.row-core-value .circular-slider-container {
		padding-top: 0;
	}

	.row-core-value .circle-controls {
		gap: 2rem;
	}
}

/* Mobile: collapse everything to 1-col */

@media (max-width: 767px) {
	.elementor .row-portfolio-inner .portfolio-gallery-section img {
		min-height: auto;
	}

	.elementor .row-portfolio-list .porfolio-list .elementor-posts-container .elementor-post__thumbnail__link .elementor-post__thumbnail {
		padding-bottom: unset;
	}

	.elementor .row-portfolio-list .porfolio-list .elementor-post__thumbnail img {
		height: unset;
		left: unset;
		position: unset;
		top: unset;
		transform: unset;
		width: 100% !important;
		max-height: 100%;
	}

	div.row-partners .e-con-inner,
	div.row-partners.homeowner .e-con-inner {
		padding-left: 10px;
		padding-left: 0.625rem;
		padding-right: 10px;
		padding-right: 0.625rem;
	}

	div.row-logos .logos-cont,
	div.row-partners .partners-cont {
		justify-content: center;
	}

	div.row-partners p,
	div.row-logos .logos-cont p {
		text-align: center;
		width: 100%;
		max-width: 100%;
	}

	div.row-ty-vid.book-a-call-bi.product .book-form {
		padding-left: 20px;
		padding-left: 1.25rem;
		padding-right: 20px;
		padding-right: 1.25rem;
	}

	div.row-ty-vid.book-a-call-bi.product .book-form .book-details-content {
		padding-right: 0 !important;
		border-right: none;
	}

	div.row-ty-vid.book-a-call-bi.product .book-form .book-details-content span.elementor-icon-list-text,
	div.row-ty-vid.book-a-call-bi.product .book-form .book-details-content .details-p p,
	div.row-ty-vid.book-a-call-bi.product .book-form .book-details-content .cookie-settings {
		max-width: 100%;
	}

	div.row-showcase .row-walkthrough.right {
		flex-direction: column-reverse;
	}

	.row-showcase .row-walkthrough .walkthrough-cont .inner h3,
	.row-showcase .row-walkthrough .walkthrough-cont .inner p,
	.row-showcase .row-walkthrough.right .walkthrough-cont .inner,
	.row-showcase .showcase-head h2,
	.row-showcase .showcase-head p {
		max-width: 100%;
		width: 100%;
	}

	.row-showcase .row-walkthrough.right .walkthrough-cont .inner {
		padding-left: 0;
	}

	.row-showcase .row-walkthrough .walkthrough-cont .inner {
		padding-right: 0;
		padding-left: 0;
	}

	.elementor .row-showcase {
		padding-left: 10px;
		padding-left: 0.625rem;
		padding-right: 10px;
		padding-right: 0.625rem;
	}

	.as-seen-in-2col {
		grid-template-columns: 1fr;
	}

	.row-portfolio-inner .acf-gallery.acf-2col,
	.row-portfolio-inner .acf-gallery.acf-3col {
		display: flex;
		flex-direction: column;
	}
}

@media (max-width: 670px) {
	div.row-ty-vid.with-button .ty-vid {
		margin-top: -50%;
	}
}

@media (max-width: 659px) {
	div.row-ty-vid.book-a-call-bi .book-form .calendar-embed iframe {
		min-height: 1100px;
	}
}

@media (max-width: 640px) {
	.row-testimonials .impv4-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 633px) {
	footer.row-footer .logo-menu-cont {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		align-content: center;
	}

	.elementor footer.row-footer .logo-menu-cont .footer-menu {
		display: flex;
		flex-direction: column;
	}

	footer.row-footer .logo-menu-cont .footer-menu p {
		text-align: center;
	}
}

@media (max-width: 600px) {

	div.elementor div.row-portfolio.parallax div.image-1st {
		left: -25%;
	}

	div.elementor div.row-portfolio.parallax div.image-3rd {
		left: -30%;
	}

	div.elementor div.row-portfolio.parallax div.image-5th {
		left: -40%;
	}

	.row-key .benefits-list h3,
	.row-key .benefits-list p,
	.row-key .benefits-list.even h3,
	.row-key .benefits-list.even p {
		text-align: center;
	}

	.row-key .benefits-list .benefits-content {
		max-width: 100%;
		margin-top: -30px;
	}

	.row-key.homeowner .benefits-list.even p {
		max-width: 100%;
	}

	.elementor .row-key .benefits-list {
		flex-direction: column-reverse;
		align-items: center;
		gap: 0;
	}

	.elementor .row-key .benefits-list.even {
		justify-content: center;
	}
}

@media (max-width: 580px) {

	.elementor div.row-parallax-portrait div.portrait-img {
		position: inherit;
		left: unset;
		top: unset;
	}

	.elementor div.row-parallax-portrait div.portrait-img img {
		width: 384px;
		width: 24rem;
		height: 495px;
		height: 30.9375rem;

	}

	.row-parallax-portrait .portrait-img:nth-of-type(even) {
		padding-top: 500px;
	}

	.video-logo-wrapper {
		height: 465px;
		height: 29.0625rem;
	}

	.row-meet .team-list p {
		max-width: 100%;
	}

	.elementor div.row-hero.about-section.row-about {
		padding-top: 130px;
		padding-top: 8.125rem;
	}


	.row-testimonial .improva-footer {
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
	}

	.elementor-menu-toggle .e-font-icon-svg {
		width: 1.5em !important;
		height: 1.5em !important;
	}

	header.row-header.elementor-sticky--effects,
	header.row-header.white-header.elementor-sticky--effects {
		top: 35px !important;
	}

	header.row-header.elementor-sticky--effects .menu-cont,
	header.row-header.white-header.elementor-sticky--effects .menu-cont {
		width: 50%;
	}

	header.row-header.elementor-sticky--effects .logo-cont,
	header.row-header.white-header.elementor-sticky--effects .logo-cont {
		display: flex;
	}


	.elementor .row-as-seen-inner-gallery .as-seen-images-gallery .as-seen-images-gallery-box img {
		min-height: auto;
	}

	.elementor div.row-prefer .prefer-cont .elementor-button {
		max-width: 100%;
		min-width: 100%;
	}


	header.row-header.elementor-sticky--effects .menu-cont .elementor-widget-button,
	header.row-header.white-header.elementor-sticky--effects .menu-cont .elementor-widget-button {
		display: none;
	}

	footer.row-footer .footer-copyright .copyright-txt .copyright-date-text p .separator {
		display: none;
	}

	footer.row-footer .footer-copyright .copyright-txt .copyright-date-text p {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.row-as-seen-in .seen-in-list,
	.row-portfolio-list .porfolio-list .elementor-posts-container.elementor-posts.elementor-posts--skin-classic.elementor-grid {
		grid-template-columns: repeat(1, 1fr);
	}

	.row-meet .team-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.elementor div.row-header-mobile-btn .e-con-inner {
		padding: 0;
	}

	header.row-header .menu-cont .elementor-widget-button {
		display: none;
	}

	.elementor div.row-header-mobile-btn .elementor-button {
		max-width: 100%;
		width: 100%;
		height: 42px;
		height: 2.625rem;
		background-color: #FFA38B;
		display: flex;
		padding: 6px;
		padding: 0.375rem;
		justify-content: center;
		align-items: center;
		color: #000000;
		font-size: 18px;
		font-size: 1.125rem;
		font-style: normal;
		font-weight: 400;
		line-height: 1.66667;
	}

	.elementor div.row-header-mobile-btn {
		display: block;
		padding: 0;
	}

	.row-testimonials .impv4-item {
		padding-left: 20px;
		padding-left: 1.25rem;
		padding-right: 20px;
		padding-right: 1.25rem;

	}

	div.row-partners .elementor-widget-text-editor,
	div.row-logos .elementor-widget-text-editor {
		width: 100%;
	}

	div.row-partners p,
	div.row-logos .logos-cont p {
		text-align: center;
		width: 100%;
		max-width: 100%;
	}

	.row-hero h1,
	.row-hero.about-section h2,
	.row-tailored h2,
	.row-showcase .showcase-head h2,
	.row-portfolio h2,
	.row-testimonials .testimonials-cont h2,
	.row-hero.about-section.row-about h1,
	.row-story h2,
	.row-core-value h2,
	.row-mission h2,
	.row-timeline .timeline-head h2,
	.row-today-timeline h2,
	.row-meet .meet-head h2,
	.row-style .style-content h2,
	.row-faq.ty-call h2,
	.elementor .row-404 h1,
	.row-portfolio-list h1,
	.row-blog-inner .blog-content-cont h1,
	.row-blog-inner .blog-content-cont h2,
	.row-portfolio-list.portfolio-inner.blog-inner h1,
	.row-portfolio-list.portfolio-inner h2,
	.row-as-seen-in.portfolio-page h2,
	.row-hero.about-section.row-about.portfolio-page h2,
	.row-portfolio-inner h1,
	.row-portfolio-inner .portfolio-inner-subhead h2,
	.row-as-seen-inner-gallery h1,
	.row-hero-improva h1,
	.row-key .key-head h2,
	.row-joinery-services h2,
	.row-results h2,
	.row-real-results h2,
	.row-as-seen-in h2,
	.elementor .row-portfolio-list.row-as-seen-in-section h2,
	.row-faq h2,
	.row-hero.about-section.row-about.building h2,
	.row-premium.joinery-care h2,
	.row-get h2,
	div.row-plan h2,
	.row-testimonials.building.estimating .testimonials-cont h2,
	.row-hero-improva.estimating h1,
	.row-premium h2,
	.row-project-plan h2,
	.elementor div.row-prefer .prefer-cont h2 {
		font-size: 30px;
		font-size: 1.875rem;
	}

	div.row-tailored .content-cont,
	.elementor div.row-faq .e-con-inner,
	.elementor div.row-results.homeowner,
	.elementor div.row-joinery-services.homeowner div.e-con-inner,
	.elementor div.row-as-seen-in .e-con-inner,
	.elementor .row-portfolio-list.portfolio-inner.row-as-seen-in-section .e-con-inner,
	.elementor div.row-results,
	.elementor .row-key .e-con-inner,
	div.row-tailored.luxury .content-cont,
	div.row-tailored.why .content-cont,
	.elementor div.row-testimonials .e-con-inner,
	div.row-tailored.luxury.joinery .content-cont,
	.elementor div.row-story div.e-con-inner,
	.elementor div.row-core-value .e-con-inner,
	.elementor div.row-mission .e-con-inner,
	div.row-timeline .e-con-inner,
	.elementor div.row-today-timeline .e-con-inner,
	div.row-hero.about-section.row-about.contact-page .hero-cont,
	.elementor .row-portfolio-list.blog-list .e-con-inner,
	.elementor .row-portfolio-list.portfolio-inner.blog-inner .e-con-inner,
	.elementor .row-portfolio-list .e-con-inner,
	.elementor div.row-as-seen-in.portfolio-page .e-con-inner,
	.elementor .row-portfolio-list.portfolio-inner .e-con-inner,
	.elementor div.row-joinery-services div.e-con-inner {
		padding-top: 45px;
		padding-top: 2.8125rem;

	}

	.row-showcase .row-walkthrough .walkthrough-cont .inner h3,
	.row-mission .vission-purpose h3,
	.row-timeline .timeline-content h3,
	.elementor .row-404 h2,
	.row-real-results .case-study-content-main h3 {
		font-size: 24px;
		font-size: 1.5rem;

	}

	.elementor .row-mission .vission-purpose,
	.row-timeline .timeline-main-cont,
	.elementor .row-plan.joinery-care .plan-cont {
		margin-top: 20px;
		margin-top: 1.25rem;

	}

	.elementor div.row-portfolio-inner .e-con-inner,
	.elementor .row-as-seen-inner-gallery .e-con-inner {
		padding-top: 10px;
		padding-top: 0.625rem;
	}

	.row-portfolio-inner .portfolio-inner-subhead {
		margin-top: 10px;
		margin-top: 0.625rem;
	}

	.elementor div.row-hero-improva div.e-con-inner {
		padding-top: 130px;
		padding-top: 8.125rem;

	}

	.elementor .row-hero-improva {
		min-height: 100%;
	}

	.row-tailored.why .icon-cont {
		margin-top: 0;
	}

	.elementor-button {
		max-width: 100% !important;
	}
}

@media (max-width: 500px) {
	.links-improva .link-improva-cont {
		grid-template-columns: repeat(1, 1fr);
		justify-items: center;
	}
}

@media (max-width: 480px) {
	div.row-ty-vid.book-a-call-bi .book-form .book-form-html a.cta-btn {
		max-width: 100%;
		text-align: center;
		line-height: 1.2;
		padding: 10px;
	}

	.improva-search-bar {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		background-color: transparent;
		gap: 10px;
		gap: 0.625rem;
	}

	.improva-search-bar input {
		padding-right: 58px;
		padding-right: 3.625rem;
		border: none;
		background-color: #ffffff;
		height: 90px;
		height: 5.625rem;
	}

	.improva-search-bar .search-btn {
		position: unset;
		transform: translateY(0%);
		width: 100%;
		max-width: 100%;
	}

	.improva-search-overlay .improva-search-bar input {
		max-width: 100%;
		padding: 10px;
		padding: 0.625rem;
	}
}

@media (max-width: 460px) {
	div.row-ty-vid .ty-vid {
		margin-top: -250px;
		margin-top: -15.625rem;

	}

	div.row-ty-vid.book-a-call-bi .book-form {
		margin-top: -175px;
		margin-top: -10.9375rem;
	}

	.elementor div.row-faq.hw .elementor-button,
	.elementor div.row-faq .elementor-button,
	div.row-head-ty.ty-lead .elementor-button {
		min-width: 100%;
		max-width: 100%;
	}
}


@media (max-width: 440px) {
	.row-meet .team-list .content-cont {
		padding: 24px 50px;
		padding: 1.5rem 3.125rem;
	}

	.row-meet .team-list {
		grid-template-columns: repeat(1, 1fr);
	}

	.elementor div.row-timeline div.timeline-main-cont div.timeline-cont:nth-child(9) .year-cont p {
		font-size: 15px;
		font-size: 0.9375rem;
		margin-top: 38px;
	}
}

@media (max-width: 430px) {
	.video-logo-wrapper {
		height: 355px;
		height: 22.1875rem;
	}

}

@media (max-width: 416px) {
	div.row-ty-vid.book-a-call-bi .book-form .calendar-embed iframe {
		min-height: 1170px;
	}
}

@media (max-width: 414px) {
	.row-portfolio-inner .portfolio-inner-subhead .elementor-button {
		max-width: 100%;
		min-width: 100%;
		padding: 10px;
		padding: 0.625rem;
	}
}

@media (max-width: 400px) {
	.row-meet .team-list .content-cont {
		padding: 24px 30px;
		padding: 1.5rem 1.875rem;
	}

}

@media (max-width: 380px) {
	.elementor div.row-get .e-con-inner .get-cont div.elementor-icon {
		margin-right: 20px;
		margin-right: 1.25rem;
	}
}