:root {
	--primary-font: 'Ubuntu', sans-serif;
	--color-black: #000000;
	--color-dark: #323232;
	--color-light-gray: #f2f2f2;
	--color-border: #b3b3b3;
	--color-orange: #fe5c20;
	--color-blue: #0097e1;
	--color-white: #ffffff;
	--transition-speed: 0.25s;
	--max-width: 1200px;
}

.services-section {
	padding: 80px 0;
	font-family: var(--primary-font);
	background-color: var(--color-white);
	color: var(--color-dark);
	line-height: 1.5;
}

.services-container {
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 20px;
}

.services-header {
	text-align: center;
	margin-bottom: 40px;
}

.services-main-title {
	font-size: 38px;
	font-weight: 700;
	color: var(--color-black);
	margin-bottom: 12px;
	line-height: 1.3;
}

.services-subtitle {
	font-size: 20px;
	font-weight: 300;
}

.tabs-nav-wrapper {
	margin-bottom: 40px;
}

.tabs-nav {
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.tab-btn {
	flex: 1;
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	border-left: none;
	padding: 16px 12px;
	font-size: 16px;
	font-weight: 400;
	color: var(--color-black);
	cursor: pointer;
	transition: all var(--transition-speed) ease;
	white-space: nowrap;
}

.tab-btn:first-child {
	border-radius: 5px 0 0 5px;
	border-left: 1px solid var(--color-border);
}

.tab-btn:last-child {
	border-radius: 0 5px 5px 0;
}

.tab-btn.active {
	background-color: var(--color-blue);
	border-color: var(--color-blue);
	color: var(--color-white);
	font-weight: 600;
}

.tab-pane {
	display: none;
}

.tab-pane.active {
	display: block;
	animation: fadeIn 0.4s ease-in-out;
}

.tabs__select-wrapper {
	display: none;
	position: relative;
	margin-bottom: 30px;
	border: 1px solid #b3b3b3;
	border-radius: 5px;
	overflow: hidden;
}

.tabs__select-wrapper::after {
	content: '▼';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: #ffffff;
	pointer-events: none;
	font-size: 12px;
}

.tabs__select {
	width: 100%;
	padding: 16px 20px;
	font-family: 'Ubuntu', Arial, sans-serif;
	font-size: 16px;
	color: #ffffff;
	background-color: #0097e1;
	border: none;
	appearance: none;
	cursor: pointer;
	height: auto;
}

.split-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-bottom: 40px;
}

.split-card--reverse {
	direction: rtl;
}

.split-card--reverse .split-card__text {
	direction: ltr;
}

.split-card__text {
	background-color: var(--color-light-gray);
	border-radius: 10px;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.split-card__text h3 {
	font-size: 26px;
	font-weight: 700;
	color: var(--color-black);
	margin-bottom: 20px;
}

.split-card__text p {
	font-size: 16px;
	margin-bottom: 16px;
	color: var(--color-dark);
}

.split-card__text p strong {
	font-weight: 700;
	color: var(--color-black);
}

.split-card__image {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	min-height: 400px;
	cursor: pointer;
}

.split-card__image div {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: opacity var(--transition-speed) ease-in-out;
	border-radius: 10px;
}

.split-card__img-front {
	z-index: 2;
}

.split-card__img-back {
	z-index: 1;
}

.split-card__image:hover .split-card__img-front {
	opacity: 0;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	border: none;
	border-radius: 5px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all var(--transition-speed) ease;
	text-decoration: none;
	width: fit-content;
}

.btn--primary {
	background-color: var(--color-orange);
	color: var(--color-white);
}

.btn--primary:hover {
	background-color: var(--color-blue);
}

.btn--accent {
	background-color: var(--color-orange);
	color: var(--color-white);
}

.btn--accent:hover {
	background-color: var(--color-blue);
}

.w-100 {
	width: 100%;
}

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

.cols-3 {
	grid-template-columns: repeat(3, 1fr);
}

.cols-2 {
	grid-template-columns: repeat(2, 1fr);
}

.product-card {
	background-color: var(--color-white);
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--color-light-gray);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.product-card__img-box {
	position: relative;
	padding-bottom: 72.2%;
	overflow: hidden;
	cursor: pointer;
}

.product-card__img-box div {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: opacity var(--transition-speed) ease-in-out;
}

.product-card__img-front {
	z-index: 2;
}

.product-card__img-back {
	z-index: 1;
}

.product-card__img-box:hover .product-card__img-front {
	opacity: 0;
}

.product-card__content {
	padding: 24px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: var(--color-light-gray);
}

.product-card__title {
	font-size: 22px;
	font-weight: 700;
	color: var(--color-black);
	margin-bottom: 12px;
}

.product-card__descr {
	font-size: 15px;
	color: var(--color-dark);
	line-height: 1.5;
	margin-bottom: 24px;
}

.product-card__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	padding-top: 16px;
}

.product-card__price {
	font-size: 17px;
	font-weight: 700;
	color: var(--color-orange);
	white-space: nowrap;
}

.horizontal-card {
	display: flex;
	background-color: var(--color-light-gray);
	border-radius: 10px;
	overflow: hidden;
	min-height: 220px;
}

.horizontal-card__image {
	width: 150px;
	flex-shrink: 0;
	background-size: cover;
	background-position: center;
}

.horizontal-card__content {
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.horizontal-card__content h4 {
	font-size: 22px;
	font-weight: 700;
	color: var(--color-black);
	margin-bottom: 10px;
}

.horizontal-card__content p {
	font-size: 16px;
	margin-bottom: 20px;
	color: var(--color-dark);
}



@media (max-width: 1024px) {
	.services-main-title { font-size: 32px; }
	.cols-3 { grid-template-columns: repeat(2, 1fr); }
	.split-card { gap: 20px; }
	.split-card__text { padding: 30px; }
	.tabs-nav-wrapper { display: none;}
	.tabs__select-wrapper { display: block; }
}

@media (max-width: 768px) {
	.services-section { padding: 50px 0; }
	.services-main-title { font-size: 26px; }
	.services-subtitle { font-size: 16px; }

	.tabs-nav-wrapper {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		margin-left: -20px;
		margin-right: -20px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.tabs-nav {
		width: max-content;
	}

	.tab-btn {
		padding: 14px 20px;
		font-size: 15px;
	}

	.split-card {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.split-card--reverse {
		display: flex;
		flex-direction: column;
	}
	.split-card__image {
		order: -1;
		min-height: 250px;
	}

	.cols-2, .cols-3 {
		grid-template-columns: 1fr;
	}

	.horizontal-card {
		flex-direction: column;
	}
	.horizontal-card__image {
		width: 100%;
		height: 180px;
	}

	.tabs__select {
		font-size: 14px;
		padding: 14px 16px;
	}
}





























.wells-types-section {
	background: #F1F1F1;
	padding: 119px 0;
	box-sizing: border-box;
	font-family: Montserrat, sans-serif;
}

.wells-types-section * {
	box-sizing: border-box;
}

.wells-types-container {
	width: 100%;
	max-width: 1408px;
	margin: 0 auto;
	padding: 0 40px;
}

.wells-types-title-main {
	color: #333;
	text-align: center;
	font-size: 45px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 54px;
}

.wells-types-tabs-nav-container {
	margin-bottom: 39px;
}

.wells-types-tabs-nav {
	display: flex;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin: 0;
}

.wells-types-tab-item {
	margin: 3px;
	background: none !important;
	position: relative;
}

.wells-types-tab-link {
	display: block;
	padding: 16px 24px 15px;
	color: #666 !important;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%;
	text-decoration: none!important;
	cursor: pointer;
	background: none !important;
}

.wells-types-tab-link:hover {
	border-color: #fff0;
	color: #333!important;
}

.wells-types-tab-item.active .wells-types-tab-link {
	color: #0993E1 !important;
	background: none !important;
}

.wells-types-tab-item.active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 2px;
	background: #0993E1 !important;
}

.wells-types-tab-content {
	position: relative;
}

.wells-types-tab-pane {
	display: none;
}

.wells-types-tab-pane.active {
	display: block;
}

.wells-types-grid {
	display: flex;
	flex-wrap: wrap;
	margin-left: -16px;
	margin-right: -16px;
}

.wells-types-info-col {
	width: 100%;
	padding-left: 16px;
	padding-right: 16px;
}

.wells-types-pane-title {
	color: #000;
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: 25px;
	margin-top: 0;
	margin-bottom: 27px;
}

.wells-types-pane-desc {
	color: #000;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	margin-top: 0;
	margin-bottom: 27px;
}

.wells-types-list {
	margin: 26px 0 36px 0 !important;
	padding: 0;
	list-style: none;
}

.wells-types-list li {
	color: #000;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 22.5px;
	margin: 8px 0 0 21px;
	list-style-type: none;
	position: relative;
}

.wells-types-list li:first-child {
	margin-top: 0;
}

.wells-types-list li::before {
	content: "" !important;
	background: #0993E1;
	border-radius: 1ch;
	padding-inline: 1ch;
	margin: 0 7px 0 -21px;
}

.wells-types-images-desktop {
	width: 100%;
	padding-left: 16px;
	padding-right: 16px;
}

.wells-types-images-grid {
	display: flex;
	margin-left: -16px;
	margin-right: -16px;
}

.wells-types-img-wrapper {
	width: 50%;
	padding-left: 16px;
	padding-right: 16px;
}

.wells-types-img {
	width: 100%;
	margin: auto;
	background: silver;
	overflow: hidden;
	border-radius: 9px;
	background-position: center;
	background-size: cover;
	position: relative;
}

.wells-types-img::before {
	content: "";
	display: block;
	padding-top: 150%;
}

.wells-types-images-mobile {
	width: 100%;
	padding-left: 16px;
	padding-right: 16px;
	display: none;
}

.wells-types-section .svg {
	display: inline-block;
	vertical-align: middle;
	position: relative;
}

.wells-types-section .svg svg {
	display: block;
}

.wells-types-section .wells-types-svg-path {
	fill: #333;
	fill-rule: evenodd;
	transition: fill 0.3s ease;
}

.wells-advantages {
	margin-top: 54px;
	border-radius: 9px;
}

.wells-advantages-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-left: -16px;
	margin-right: -16px;
}

.wells-advantages-item {
	position: relative;
	min-height: 1px;
	padding-left: 16px;
	padding-right: 16px;
	width: 50%;
}

.wells-advantages-body {
	padding: 44px 29px;
	height: 100%;
	border-radius: 9px;
	background: #FFF;
	box-shadow: 0px 16px 99px 0px rgba(191, 191, 191, 0.06);
	text-align: center;
	position: relative;
}

.wells-advantages-title {
	color: #000;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
}

.wells-advantages-num {
	color: #FFF;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 29px;
	background: #0993E1;
	width: 43px;
	height: 29px;
	border-radius: 100px 100px 0 0;
	position: absolute;
	bottom: 0px;
	left: 50%;
	margin-left: -21.6px;
}

@media (min-width: 992px) {
	.wells-types-info-col {
		width: 50%;
	}
	.wells-types-images-desktop {
		width: 50%;
	}

	.wells-advantages-item {
		width: 16.6666666667%;
	}
}

@media (max-width: 967px) {
	.wells-types-section {
		padding: 72px 0;
	}

	.wells-types-title-main {
		font-size: 27px !important;
		text-align: left !important;
	}

	.wells-types-pane-title {
		font-size: 18px;
		line-height: 25px;
	}

	.wells-types-pane-desc {
		font-size: 14px;
	}

	.wells-types-list li {
		font-size: 13px;
		line-height: 22.5px;
	}

	.wells-types-list {
		margin-bottom: 36px !important;
	}

	.wells-types-img::before {
		padding-top: 100%;
	}

	.wells-advantages-title {
		font-size: 13px;
	}

	.wells-advantages-item {
		margin-bottom: 20px;
	}

	.wells-advantages-grid {
		justify-content: flex-start;
	}

	.wells-advantages-body {
		min-height: 130px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

@media (max-width: 767px) {
	.wells-types-container {
		padding-left: 15px;
		padding-right: 15px;
	}

	.wells-types-images-desktop {
		display: none !important;
	}

	.wells-types-images-mobile {
		display: block !important;
	}
}

.wells-types-section .owl-carousel {
	display: none;
	width: 100%;
	position: relative;
	z-index: 1;
	-webkit-tap-highlight-color: transparent;
}

.wells-types-section .owl-carousel.owl-loaded {
	display: block;
}

.wells-types-section .owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	z-index: 2;
}

.wells-types-section .owl-carousel .owl-stage {
	position: relative;
	display: flex;
}

.wells-types-section .owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	flex-shrink: 0;
	width: 100%;
}






















.promo-section {
	background-color: transparent;
	/* padding: 50px 0; */
	box-sizing: border-box;
	font-family: Montserrat, sans-serif;
}

.promo-section * {
	box-sizing: border-box;
}

.promo-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

.promo-card {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	background-color: rgba(253, 253, 253, 0.75);
	border: 1px solid #eef2f5;
	border-radius: 4px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
	padding: 14px 29px;
}

.promo-img-col {
	grid-column: span 1;
}

.promo-img-wrap {
	margin-bottom: 14px;
}

.promo-img {
	display: block;
	width: 80%;
	margin: auto;
	max-width: 100%;
	height: auto;
}

.promo-content-col {
	grid-column: span 1;
	text-align: center;
}

.promo-title {
	font-family: 'Cuprum', sans-serif;
	color: #0e7ed0;
	font-size: 30px;
	line-height: 36px;
	text-align: center;
	margin-top: 4px;
	margin-bottom: 11px;
}

.promo-desc {
	color: #5a5a5a;
	font-size: 16px;
	line-height: 140%;
	text-align: center;
	margin-bottom: 16px;
	margin-top: 0;
}

.promo-btn {
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	background-color: #0e7ed0;
	border-radius: 9999px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
	color: #ffffff;
	text-transform: uppercase;
	text-decoration: none !important;
	cursor: pointer;
	max-width: max-content;
	margin-left: auto;
	margin-right: auto;
	padding: 16px 32px;
	transition: background-color 0.2s ease;
	text-align: left;
	line-height: 24px;
}

.promo-btn:hover {
	background-color: rgba(14, 126, 208, 0.95);
}

.promo-btn-icon {
	margin-right: 8px;
	font-size: 24px;
}

@media (min-width: 1024px) {
	.promo-card {
		grid-template-columns: repeat(6, 1fr);
	}
	.promo-img-col {
		grid-column: span 2;
	}
	.promo-content-col {
		grid-column: span 4;
		text-align: left;
	}
	.promo-title {
		text-align: left;
	}
	.promo-desc {
		text-align: left;
	}
	.promo-btn {
		margin-left: 0;
		margin-right: 0;
	}
}

@media (max-width: 767px) {
	.promo-container {
		padding-left: 15px;
		padding-right: 15px;
	}
}



















.well-arrangement {
	padding: 80px 0;
	box-sizing: border-box;
	font-family: "Manrope";
}

.well-arrangement-container {
	width: 100%;
	max-width: 1210px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

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

.well-arrangement-card {
	display: grid;
	gap: 20px;
	padding: 30px;
	border-radius: 10px;
	background: #eff3f5;
	box-sizing: border-box;
}

.well-arrangement-card-title {
	margin: 0;
	font-weight: 700;
	font-size: 24px;
	line-height: normal;
}

.well-arrangement-card-subtitle {
	margin: 0;
	min-height: 56px;
}

.well-arrangement-card-img {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

.well-arrangement-card-list {
	margin: 0 0 -4px 0;
	padding: 0 0 0 21px;
	min-height: 120px;
	list-style-type: disc;
}

.well-arrangement-card-list-item {
	font-weight: 500;
	font-size: 14px;
	line-height: 24px;
	color: #596268;
}

.well-arrangement-card-price {
	margin: 0;
	font-weight: 500;
	font-size: 14px;
	line-height: 24px;
	color: #596268;
}

.well-arrangement-card-price-val {
	display: block;
	font-weight: 700;
	font-size: 24px;
	line-height: normal;
	color: #192228;
}

.well-arrangement-card-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 16px;
	border-radius: 10px;
	border: none;
	font-weight: 700;
	font-size: 16px;
	line-height: normal;
	cursor: pointer;
	text-decoration: none;
	max-width: 174px;
	color: #ffffff;
	background-color: #ff6b00;
	transition: all 0.2s ease-in-out;
}

@media (min-width: 1280px) {
	@media (hover: hover) {
		.well-arrangement-card-btn:hover {
			color: #ffffff;
			background-color: #0b5192;
		}
	}
}

@media (max-width: 1279px) {
	.well-arrangement {
		padding: 40px 0;
	}

	.well-arrangement-container {
		padding: 0;
	}

	.well-arrangement-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch; /* ÃÅ¸ÃÂ»ÃÂ°ÃÂ²ÃÂ½Ã‘â€¹ÃÂ¹ Ã‘ÂÃÂºÃ‘â‚¬ÃÂ¾ÃÂ»ÃÂ» ÃÂ½ÃÂ° iOS */
	}

	.well-arrangement-card {
		padding: 20px;
		min-width: 250px;
	}

	.well-arrangement-card:first-child {
		margin-left: 20px;
	}

	.well-arrangement-card:last-child {
		margin-right: 20px;
	}

	.well-arrangement-card-title {
		font-size: 20px;
		line-height: 24px;
	}

	.well-arrangement-card-subtitle {
		margin: 0;
		min-height: auto; 
	}

	.well-arrangement-card-img {
		width: auto;
		min-height: 154px;
		object-fit: cover;
	}

	.well-arrangement-card-list {
		margin: 0 0 -2px 0;
		padding: 0 0 0 18px;
		min-height: auto; 
	}

	.well-arrangement-card-list-item,
	.well-arrangement-card-price {
		font-size: 12px;
		line-height: 20px;
	}

	.well-arrangement-card-price-val {
		margin: -2px 0 0 0;
		font-size: 20px;
	}

	.well-arrangement-card-btn {
		margin: -10px 0 0 0;
		max-width: 100%;
		font-size: 16px;
	}
}


















.repair-promo {
	padding: 90px 0;
	background-color: #f2f2f2;
	font-family: 'Ubuntu', Arial, sans-serif;
	box-sizing: border-box;
}

.repair-promo__container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.repair-promo__card {
	position: relative;
	width: 100%;
	max-width: 1160px;
	min-height: 403px;
	background-color: #ffffff;
	border-radius: 20px;
	box-shadow: 0px 15px 30px 5px rgba(0, 151, 225, 0.2);
	box-sizing: border-box;
	padding: 31px 20px 40px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
}

.repair-promo__img-left {
	position: absolute;
	left: 0;
	bottom: 25px;
	width: 315px;
	height: 201px;
	z-index: 1;
}

.repair-promo__img-left img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.repair-promo__img-right {
	position: absolute;
	right: 13px;
	top: 91px;
	width: 217px;
	height: 273px;
	z-index: 1;
}

.repair-promo__img-right img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.repair-promo__content {
	position: relative;
	z-index: 5;
	width: 100%;
	max-width: 669px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.repair-promo__title {
	font-size: 46px;
	font-weight: 700;
	color: #000000;
	line-height: 1.55;
	margin-top: 0;
	margin-bottom: 15px;
	text-align: center;
}

.repair-promo__desc {
	font-size: 22px;
	font-weight: 400;
	color: #000000;
	line-height: 1.55;
	margin-top: 0;
	margin-bottom: 40px;
	text-align: center;
}

.repair-promo__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 245px;
	height: 55px;
	background-color: #fe5c20;
	color: #ffffff;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	border-radius: 5px;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	box-sizing: border-box;
}

.repair-promo__btn:hover {
	background-color: #0097e1;
	color: #ffffff;
}

@media screen and (max-width: 1199px) {
	.repair-promo__card {
		max-width: 940px;
		min-height: 411px;
		margin: 0 auto;
	}

	.repair-promo__img-left {
		width: 269px;
		height: 168px;
		bottom: 16px;
	}

	.repair-promo__img-right {
		width: 154px;
		height: 193px;
		right: -4px;
		top: 196px;
	}

	.repair-promo__content {
		max-width: 580px;
	}
}

@media screen and (max-width: 959px) {
	.repair-promo__card {
		max-width: 620px;
		min-height: 382px;
	}

	.repair-promo__img-left {
		width: 180px;
		height: 111px;
		bottom: 13px;
	}

	.repair-promo__img-right {
		width: 123px;
		height: 151px;
		right: -1px;
		bottom: 13px;
		top: auto;
	}

	.repair-promo__content {
		max-width: 380px;
	}

	.repair-promo__title {
		font-size: 30px;
		margin-bottom: 10px;
	}

	.repair-promo__desc {
		font-size: 18px;
		margin-bottom: 30px;
	}
}

@media screen and (max-width: 639px) {
	.repair-promo__card {
		max-width: 460px;
		min-height: 375px;
	}

	.repair-promo__img-left {
		width: 157px;
		height: 94px;
		bottom: 8px;
	}

	.repair-promo__img-right {
		width: 122px;
		height: 141px;
		right: -2px;
		bottom: 16px;
	}

	.repair-promo__content {
		max-width: 280px;
	}

	.repair-promo__title {
		font-size: 20px;
		margin-bottom: 8px;
	}

	.repair-promo__desc {
		font-size: 14px;
		margin-bottom: 25px;
	}
}

@media screen and (max-width: 479px) {
	.repair-promo__card {
		max-width: 300px;
		min-height: 336px;
		padding: 23px 10px 20px 10px;
	}

	.repair-promo__img-left {
		width: 162px;
		height: 104px;
		bottom: 12px;
	}

	.repair-promo__img-right {
		display: none;
	}

	.repair-promo__content {
		max-width: 260px;
	}

	.repair-promo__title {
		font-size: 20px;
		margin-bottom: 8px;
	}

	.repair-promo__desc {
		font-size: 14px;
		margin-bottom: 20px;
	}

	.repair-promo__btn {
		width: 260px;
		font-size: 14px;
	}
}
































.lead-form {
	padding-top: 3rem;
	padding-bottom: 3rem;
	background-color: #ffffff;
	max-width: 100%;
	box-sizing: border-box;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
}

.lead-form__container {
	width: 100%;
	padding-right: 12px;
	padding-left: 12px;
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
}

@media (min-width: 576px)  { .lead-form__container { max-width: 540px; } }
@media (min-width: 768px)  { .lead-form__container { max-width: 720px; } }
@media (min-width: 992px)  { .lead-form__container { max-width: 960px; } }
@media (min-width: 1200px) { .lead-form__container { max-width: 1140px; } }
@media (min-width: 1400px) { .lead-form__container { max-width: 1320px; } }

.lead-form__card {
	background-color: #eef5fc;
	border-radius: 48px;
	box-shadow: 0 20px 25px -12px rgba(0, 0, 0, .08);
	padding: 2.5rem;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.lead-form__card {
		padding: 1.5rem;
	}
}

.lead-form__row {
	display: flex;
	flex-wrap: wrap;
	margin-top: -48px;
	margin-right: -24px;
	margin-left: -24px;
	align-items: center;
}

.lead-form__col {
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: 24px;
	padding-left: 24px;
	margin-top: 48px;
	box-sizing: border-box;
}

@media (min-width: 992px) {
	.lead-form__col {
		flex: 0 0 auto;
		width: 50%;
	}
}

.lead-form__title {
	color: #0f172a;
	font-size: clamp(1.5rem, 1.15rem + 1.35vw, 2.5rem);
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: 1.2;
	margin-top: 0;
	margin-bottom: 1rem;
	text-align: left;
}

.lead-form__desc {
	margin-top: 1rem;
	margin-bottom: 1rem;
	font-size: 1.25rem;
	line-height: 1.5;
	color: #212529;
}

.lead-form__desc strong {
	font-weight: 700;
}

.lead-form__list {
	margin-top: 1.5rem;
	margin-bottom: 1rem;
	padding-left: 0;
	list-style: none;
}

.lead-form__list-item {
	margin-bottom: .5rem;
	display: flex;
	align-items: center;
	font-size: 1rem;
	line-height: 1.5;
	color: #212529;
}

.lead-form__list-item:last-child {
	margin-bottom: 0;
}

.lead-form__list-icon {
	font-weight: 700 !important;
	margin-right: .5rem !important;
	color: #0f67b3 !important;
}

.lead-form__actions {
	margin-top: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.lead-form__phone-btn {
	display: inline-block;
	background: transparent;
	border: 2px solid #0f67b3;
	border-radius: 60px;
	color: #0f67b3;
	font-weight: 600;
	padding: 10px 28px;
	text-align: center;
	text-decoration: none;
	font-size: 1rem;
	line-height: 1.5;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	box-sizing: border-box;
}

.lead-form__phone-btn:hover {
	background-color: #0f67b3;
	color: #ffffff;
	transform: translateY(-2px);
}

.lead-form__phone-icon {
	margin-right: .5rem;
}

.lead-form__field {
	margin-bottom: 1rem;
}

.lead-form__input {
	display: block;
	width: 100%;
	min-height: 2.75rem;
	padding: .8rem 1.2rem!important;
	font-size: 1rem!important;
	line-height: 1.5!important;
	color: #212529!important;
	background-color: #ffffff!important;
	border: 1px solid #dee2e6!important;
	border-radius: 40px;
	box-sizing: border-box;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (min-width: 576px) {
	.lead-form__input {
		font-size: 1.02rem;
	}
}

.lead-form__input:focus {
	border-color: #0f67b3;
	box-shadow: 0 0 0 .2rem rgba(15, 103, 179, .2);
	outline: 0;
}

.lead-form__input::placeholder {
	color: #6c757d;
	opacity: 1;
}

.lead-form__consent {
	display: flex;
	align-items: center;
	min-height: 24px;
	padding-left: 24px;
	margin: 16px 0;
	padding-top: 2.4px;
	padding-bottom: 2.4px;
	box-sizing: border-box;
	position: relative;
}

.lead-form__checkbox {
	position: absolute;
	margin-left: -24px;
	-webkit-appearance: none!important;
	-moz-appearance: none;
	appearance: none;
	background-color: #ffffff;
	border: 1px solid #dee2e6;
	border-radius: 4px;
	width: 18.4px;
	height: 18.4px;
	vertical-align: top;
	cursor: pointer;
	box-sizing: border-box!important;
	transition: background-color .15s ease-in-out, border-color .15s ease-in-out;
	display: block!important;
}

.lead-form__checkbox:checked {
	background-color: #0f67b3;
	border-color: #0f67b3;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3E%3C/svg%3E");
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: contain;
}

.lead-form__checkbox:focus {
	border-color: #86b7fe;
	box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
	outline: 0;
}

.lead-form__consent-label {
	display: inline-block;
	line-height: 1.4;
	padding-top: .05rem;
	font-size: 14px;
	color: #212529;
	cursor: pointer;
	user-select: none;
	margin: 0;
}

.lead-form__required-star {
	color: #dc3545;
	font-size: 14px;
}

.lead-form__submit-btn {
	display: inline-block;
	width: 100% !important;
	min-height: 2.85rem;
	padding-top: 1rem !important;
	padding-bottom: 1rem !important;
	font-size: 1.25rem !important;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	cursor: pointer;
	border: none;
	border-radius: 60px;
	background-color: #0f67b3;
	color: #ffffff;
	box-shadow: 0 4px 8px rgba(15, 103, 179, .25);
	transition: all .25s ease;
	box-sizing: border-box;
}

@media (min-width: 576px) {
	.lead-form__submit-btn {
		min-height: 3rem;
		font-size: 1.05rem;
	}
}

.lead-form__submit-btn:hover {
	background-color: #0a4d8a;
	box-shadow: 0 15px 25px -10px rgba(15, 103, 179, .4);
	color: #ffffff;
	transform: translateY(-3px);
}

.lead-form__submit-btn:disabled {
	cursor: not-allowed;
	opacity: 0.85;
}

.callback-form .callback-errors {
	margin-bottom: 0.75rem;
	outline: none;
}

.callback-form .callback-form-errors {
	position: relative;
	overflow: hidden;
	border-radius: 0.6rem;
	border: 1px solid rgba(220, 53, 69, 0.55);
	background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 45%, #fff0f0 100%);
	box-shadow: 0 0 0 1px rgba(220, 53, 69, 0.12), 0 10px 28px rgba(220, 53, 69, 0.18);
}

.callback-form .callback-form-errors__accent {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	background: linear-gradient(180deg, #dc3545 0%, #b02a37 100%);
	border-radius: 0.6rem 0 0 0.6rem;
}

.callback-form .callback-form-errors__body {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	padding: 0.85rem 1rem 0.85rem 1.1rem;
}

.callback-form .callback-form-errors__icon {
	flex-shrink: 0;
	margin-top: 0.1rem;
	font-size: 1.15rem;
	color: #dc3545;
	line-height: 1;
}

.callback-form .callback-form-errors__list {
	flex: 1;
	min-width: 0;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.45;
	color: #842029;
}

.callback-form-wrapper .visually-hidden {
	margin: 0;
	font-size: 16px;
	line-height: 24px;
}















.read-more-block {
	position: relative;
	box-sizing: border-box;
	transition: max-height 0.3s ease-in-out;
}

.read-more-block--truncated {
	max-height: 220px;
	overflow: hidden;
}

.read-more-block__fade {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 80%, #ffffff 100%);
	pointer-events: none;
	z-index: 2;
}

.read-more-block__btn {
	display: block;
	margin: 24px auto 0 0;
	background: transparent;
	border: 2px solid #0f67b3;
	border-radius: 60px;
	color: #0f67b3;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	padding: 8px 38px;
	cursor: pointer;
	transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, transform 0.2s ease-in-out;
	box-sizing: border-box;
}

.read-more-block__btn:hover {
	background-color: #0f67b3;
	color: #ffffff;
	transform: translateY(-2px);
}