:root {
	--blue: #002165;
	--blue-hover: #0036a6;
	--black: #000000;
	--white: #fff;
	--white2: #E5E6E9;
	--grey: #737373;
	--radius: 10px;
	--radius-small: 5px;
	--bg: #E6EAF0;
}

@font-face {
	font-family: 'TikTok Sans';
	src: url('/assets/fonts/TikTok_Sans/static/TikTokSans-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'TikTok Sans';
	src: url('/assets/fonts/TikTok_Sans/static/TikTokSans-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'TikTok Sans';
	src: url('/assets/fonts/TikTok_Sans/static/TikTokSans-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'TikTok Sans';
	src: url('/assets/fonts/TikTok_Sans/static/TikTokSans-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'TikTok Sans';
	src: url('/assets/fonts/TikTok_Sans/static/TikTokSans-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

html:focus-within {
	scroll-behavior: smooth;
}

body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: var(--black);
	font-family: 'TikTok Sans', sans-serif;
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
	font-variation-settings:
		"slnt" 0,
		"wdth" 100;
}

.app {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100vh;
}

a:not([class]) {
	text-decoration-skip-ink: auto;
}

img,
picture,
video,
canvas,
svg {
	max-width: 100%;
	height: auto;
	display: block;
}

input,
button,
textarea,
select {
	font: inherit;
}

@media (prefers-reduced-motion: reduce) {
	html:focus-within {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}


.container {
	width: 100%;
	max-width: 1616px;
	padding: 0 30px;
	margin: 0 auto;
	position: relative;
}

.block-large {
	padding: 70px 0;
}

.block-medium {
	padding: 50px 0;
}

.block-small {
	padding: 25px 0;
}

.block-bg {
	background: var(--bg);
}

h1 {
	font-weight: normal;
	font-size: clamp(24px, calc(24px + (50 - 24) * ((100vw - 320px) / (1920 - 320))), 50px);
	line-height: 1.2;
}

h2 {
	font-weight: normal;
	font-size: clamp(24px, calc(24px + (50 - 24) * ((100vw - 320px) / (1920 - 320))), 50px);
	line-height: 1.2;
}

header {
	position: sticky;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 98;
	transform: translateY(0);
	transition: all .3s ease;
}

header.main {
	position: fixed;
}


header.scrolled {
	transform: translateY(-45px);
}

.topBar__inner {
	display: flex;
	justify-content: space-between;
	gap: 15px;
	align-items: center;
	color: var(--white);
	padding: 15px;
}

.topBar__info {
	display: flex;
	justify-content: space-between;
	gap: 56px;
	color: var(--black);
	transition: all .2s linear;
}

header.main .topBar__info {
	color: var(--white);
}

.topBar__info>div>div,
.topBar__info a {
	color: var(--black);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
}

header.main .topBar__info>div>div,
header.main .topBar__info a {
	color: var(--white);
}

.topBar__info a:hover {
	text-decoration: underline;
}

.topBar__menu nav ul {
	list-style: none;
	display: flex;
	gap: 60px;
	transition: all .2s linear;
}

.header__block nav ul li.menu-mobile-icon {
	display: none;
	width: 24px;
	cursor: pointer;
}

.topBar__menu nav ul li a {
	color: var(--black);
	text-decoration: none;
}

header.main .topBar__menu nav ul li a {
	color: var(--white);
	text-transform: uppercase;
}

.topBar__menu nav ul li a:hover {
	text-decoration: underline;
}

.header__block {
	background: var(--white2);
	border-radius: var(--radius-small);
	border: 1px solid var(--white);
	padding: 10px 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 25px;
	box-shadow: 0 4px 10px #00000038;
}

.header__block nav ul {
	display: flex;
	justify-content: center;
	gap: 50px;
	transition: all .2s linear;
}

.header__block nav ul li {
	position: relative;
}

.header__block nav ul>li>a {
	text-transform: uppercase;
	color: var(--black);
	text-decoration: none;
	transition: all .2s ease-out;
	display: block;
	white-space: nowrap;
}

.header__block nav ul>li.parent>a {
	padding-right: 15px;
}

.header__block nav ul>li>a:hover {
	text-decoration: underline;
}

.header__block nav ul li.parent:hover>ul {
	display: block;
}

.header__block nav ul ul {
	display: none;
	position: absolute;
	left: 0;
	top: calc(100% + 20px);
	background: var(--white);
	border-radius: var(--radius-small);
	min-width: 200px;
	z-index: 1000;
}

.header__block nav ul ul li {
	position: relative;
}

.header__block nav ul ul li>a {
	padding: 10px 15px;
	display: table;
	color: var(--black);
	text-decoration: none;
	text-transform: none;
	white-space: nowrap;
	position: relative;
}

.header__block nav ul ul li:hover>ul {
	display: block;
	left: 100%;
	top: 0;
}

.header__block nav ul ul ul {
	left: 100%;
	top: 0;
	margin-top: 0;
	background: var(--blue);
}

.header__block nav ul ul ul li a {
	color: var(--white);
}

.header__block nav ul li:hover>ul {
	display: block;
}

.header__block nav ul li.parent::after {
	content: '';
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	height: 20px;
	background: transparent;
	z-index: 999;
}

.header__block nav ul li.parent:hover>ul,
.header__block nav ul li.parent:hover:after~ul {
	display: block;
}

.header__block nav li.parent.active>a {
	text-decoration: underline;
}

.header__block ul li.parent {
	position: relative;
}

.header__block li.parent>a:after {
	content: '';
	background-image: url("../images/arrow.svg");
	width: 5px;
	height: 12px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}


.header__block-info {
	display: flex;
	flex-direction: column;
	align-items: end;
}

.callback {
	font-size: 13px;
	color: var(--black);
	text-decoration: none;
	position: relative;
	padding-left: 20px;
}

.callback:hover {
	text-decoration: underline;
}

.callback:after {
	content: '';
	position: absolute;
	background-image: url("../images/arrow2.svg");
	width: 14px;
	height: 7px;
	left: 0;
	top: 50%;
	transform: translateY(-30%);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: left .2s ease-out;
}

.callback:hover:after {
	content: '';
	left: 4px;
}

.header__block-info .phone {
	font-size: 20px;
	font-weight: bold;
	color: var(--black);
	text-decoration: none;
	transition: color .2s ease-out;
	white-space: nowrap;
}

.header__block-info .phone:hover {
	color: var(--blue);
}

.hero {
	max-height: 720px;
	height: 100vh;
	position: relative;
	overflow: hidden;
	background: var(--blue);
	width: 100%;
}

.hero .swiper-slide {
	width: 100%;
	height: 100vh;
	max-height: 720px;
}

.hero .swiper-slide-bg {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero .swiper-slide .container {
	height: 100%;
}

.slider-wrapper {
	position: absolute;
	left: 30px;
	bottom: 10%;
	display: flex;
	flex-direction: column;
	height: 55%;
	align-content: start;
}

.slider-title {
	color: var(--white);
	font-size: clamp(28px, calc(28px + (57 - 28) * ((100vw - 320px) / (1920 - 320))), 57px);
	line-height: 1.1;
	font-weight: normal;
}

.sub-title {
	color: var(--white);
	font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
	line-height: 1.1;
	margin-top: calc(15px + (30 - 15) * ((100vw - 320px) / (1920 - 320)));
}

.hero .swiper-pagination-bullet {
	background: var(--white);
	border-radius: 0;
	display: inline-block;
	height: 5px;
	opacity: 1;
	width: 5px;
}

.hero .swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 15px;
}

.sidebar-menu {
	position: fixed;
	top: 0;
	max-width: 415px;
	right: calc(-100vw + 15px);
	width: calc(100vw - 15px);
	height: 100vh;
	background: #000;
	box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
	transition: right 0.3s ease;
	z-index: 1001;
	overflow-y: auto;
}

.sidebar-menu.active {
	right: 0;
}

.sidebar-menu__close {
	position: absolute;
	top: 10px;
	right: 25px;
	font-size: 30px;
	cursor: pointer;
	color: #fff;
	z-index: 2;
}

.sidebar-menu__content {
	border-bottom: 1px solid #fff;
	padding: 30px;
}

.sidebar-menu__content ul {
	display: flex;
	flex-direction: column;
	gap: 15px
}

.sidebar-menu__content ul li {
	position: relative;
}

.sidebar-menu__content a {
	color: var(--white);
}

.sidebar-menu__content ul>li>a {
	text-transform: uppercase;
	color: var(--white);
	text-decoration: none;
	transition: all .2s ease-out;
	display: table;
	white-space: nowrap;
	position: relative;
}

.sidebar-menu__content ul>li.parent>a {
	padding-right: 15px;
}

.sidebar-menu__content ul>li>a:hover {
	text-decoration: underline;
}

.sidebar-menu__content ul li.parent.open>ul {
	display: block;
}

.sidebar-menu__content ul ul {
	display: none;
	background: var(--blue);
	border-radius: var(--radius-small);
	min-width: 200px;
	z-index: 1000;
	padding: 10px 15px;
	margin-top: 10px;
}

.sidebar-menu__content ul ul li {
	position: relative;
}

.sidebar-menu__content ul ul li>a {
	padding: 10px 15px;
	display: table;
	text-decoration: none;
	text-transform: none;
	white-space: nowrap;
	position: relative;
}

.sidebar-menu__content ul ul li.open>ul {
	display: block;
	left: 100%;
	top: 0;
}

.sidebar-menu__content li.parent>a>span {
	position: absolute;
	background-image: url("../images/arrow-white.svg");
	width: 5px;
	height: 12px;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.sidebar-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 1000;
}

.sidebar-overlay.active {
	opacity: 1;
	visibility: visible;
}

.sidebar-menu__footer {
	padding: 30px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.sidebar-menu__footer>div>div,
.sidebar-menu__footer a {
	color: var(--white);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
}

.sidebar-menu__footer a.phone {
	font-size: 24px;
	font-weight: 500;
	color: var(--white);
}

.sidebar-menu__footer a.callback {
	font-size: 16px;
	padding: 15px;
	border: 1px solid var(--white);
	border-radius: 5px;
	width: fit-content;
	text-transform: uppercase;
	transition: all .2s ease-out;
}

.sidebar-menu__footer a.callback:hover {
	background: var(--blue);
	text-decoration: none;
	border: 1px solid var(--blue);
}

.social {
	display: flex;
	gap: 1rem;
}

.social a,
#social a {
	transition: all .2s ease-out;
}

.social a:hover,
#social a:hover {
	transform: scale(1.1);
}

#social {
	display: flex;
	flex-direction: column;
	gap: 15px;
	position: fixed;
	top: 20%;
	right: 3%;
	z-index: 98;
	transition: all 0.3s ease;
}



.hero form {
	background: var(--white);
	width: fit-content;
	border-radius: 5px;
	border: 1px solid var(--white);
	margin-top: 25px;
	display: flex;
}

.hero form input {
	border: none;
	outline: none;
	padding: 14px 15px;
	background: transparent;
}

.hero form button {
	padding: 0 40px 0 24px;
	background: var(--blue);
	color: var(--white);
	height: 53px;
	border-radius: 5px;
	border: none;
	position: relative;
	text-transform: uppercase;
	transition: all .2s ease-out;
}

.hero form button:hover {
	background: var(--blue-hover);
	cursor: pointer;
}

.hero form button:after {
	content: '';
	background-image: url("../images/arrow2-white.svg");
	width: 14px;
	height: 7px;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.block-title {
	display: flex;
	justify-content: center;
	text-align: center;
}

.catalog {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 50px;
	gap: 20px;
}

.catalog-item {
	height: 266px;
	overflow: hidden;
	border-radius: 10px;
	border: 1px solid var(--white);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: relative;
	transition: all .1s ease-out;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 30px 20px;
	text-decoration: none;
	color: var(--white);
}

.catalog-item:hover {
	background-size: 105%;
	box-shadow: 0 4px 30px rgba(0, 0, 0, .25);
}

.catalog-item>* {
	position: relative;
}

.catalog-item h3 {
	font-weight: 500;
	font-size: clamp(21px, calc(21px + (33 - 21) * ((100vw - 320px) / (1920 - 320))), 33px);
	line-height: 1;
	position: relative;
	width: fit-content;
	z-index: 1;
	margin-bottom: 6px;
}
.catalog-item h3:after {
	content: '';
	height: 8px;
	width: 100%;
	background: var(--blue);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
	transition: height .1s ease-out;
}

.catalog-item:hover h3:after {
	height: calc(0.6667 * clamp(21px, calc(21px + 12 * ((100vw - 320px) / 1600)), 33px));
}

.catalog-item:before {
	content: '';
	height: calc(100% - 2px);
	width: calc(100% - 2px);
	border-radius: 10px;
	background-image: linear-gradient(90deg, rgba(0, 33, 59, 0.8) 0%, rgba(0, 33, 59, 0.4) 100%);
	top: 1px;
	left: 1px;
	position: absolute;
	z-index: 0;
}

.catalog-item .readmore {
	border: 1px solid var(--white);
	width: fit-content;
	margin: 0 auto;
	padding: 15px 24px;
	border-radius: 5px;
	text-transform: uppercase;
	transition: all .1s ease-out;
}

.catalog-item:hover .readmore {
	background: var(--white);
	color: var(--blue);
}

.advantages {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	margin-top: 50px;
	gap: 20px;
}

.advantage-item {
	height: 210px;
	border-radius: 10px;
	/* background-image: url('../images/advantage.png'); */
	color: var(--white);
	padding: 20px 16px;
	position: relative;
	background-repeat: no-repeat;
	background-position: top right;
	background-color: white;
	overflow: hidden;
	border: 1px solid var(--white);
	transition: all .1s ease-out;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}

.advantage-item:after {
	content: '';
	background-image: linear-gradient(90deg, rgba(0, 33, 59, 0.8) 0%, rgba(0, 33, 59, 0.4) 100%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.advantage-item::before {
	content: '';
	position: absolute;
	width: 20px;
	height: 15px;
	position: absolute;
	top: 0;
	left: 20px;
	z-index: 3;
	background: url('../images/resurs/rsn/rsn-el-gfnb50.svg') no-repeat center;
	background-size: 100%;
}
.advantage-item>span {
	position: absolute;
	bottom: 20px;
	left: 16px;
	font-size: clamp(18px, calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320))), 20px);
	line-height: 1.1;
	width: calc(100% - 32px);
	font-weight: 500;
	z-index: 1;
}

.advantage-item>div {
	font-size: clamp(21px, calc(21px + (33 - 21) * ((100vw - 320px) / (1920 - 320))), 33px);
	position: relative;
	z-index: 1;
}

.advantage-item__icon {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 3;
}

.gallery-block {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding: 20px;
}

.gallery-block>a {
	height: 287px;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
	border: 1px solid var(--white);
	transition: all .1s ease-out;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}

.gallery-block>a>img {
	object-fit: cover;
	object-position: center;
	display: block;
	width: 100%;
	height: 100%;
	transition: all .2s ease-out;
}

.gallery-block>a:hover img {
	transform: scale(1.05);
}

#pdopage .btn-more,
.btn-more-cast {
	border: 1px solid var(--blue);
	width: fit-content !important;
	margin: 30px auto 0 !important;
	display: flex;
	padding: 15px 24px;
	border-radius: 5px;
	text-transform: uppercase;
	transition: all .1s ease-out;
	background: transparent;
	color: var(--blue);
	gap: 5px;
}

#pdopage .btn-more-cast svg path,
.btn-more-cast svg path {
	stroke: var(--blue);
}

#pdopage .btn-more-cast:hover,
.btn-more-cast:hover {
	border: 1px solid var(--blue);
	color: var(--white);
	background: var(--blue);
	cursor: pointer;
}

#pdopage .btn-more-cast:hover svg path,
.btn-more-cast:hover svg path {
	stroke: var(--white);
}

.catalog-block .btn-more-cast {
	display: none;
}

.services {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 50px;
	gap: 20px;
}

.service-item {
	min-height: 430px;
	height: 100%;
	border-radius: 10px;
	color: var(--white);
	padding: 20px 16px;
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	overflow: hidden;
	border: 1px solid var(--white);
	transition: all .1s ease-out;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
	background-size: cover;
	text-decoration: none;
}
.service-item:first-child {
	grid-column: span 2 / span 2;
}
@media only screen and (max-width : 1200px) {
	.service-item:first-child {
		grid-column: unset;
	}
}

.service-item:after {
	content: '';
	background: #00213B;
	opacity: 0.5;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.service-item h4 {
	font-size: clamp(21px, calc(21px + (33 - 21) * ((100vw - 320px) / (1920 - 320))), 33px);
	position: relative;
	z-index: 1;
	line-height: 1.2;
	font-weight: 600;
}
.service-item h4 span {
	position: relative;
	background-repeat: no-repeat;
	background-position: center bottom 6px;
	background-size: 100% 8px;
	background-image: linear-gradient(to right, var(--blue), var(--blue));
	transition: background-size .3s ease;
}

.service-item:hover h4 span {
	background-size: 100% 16px;
}

.service-item>div {
	z-index: 1;
	position: absolute;
	bottom: 30px;
	left: 20px;
	width: calc(100% - 40px);
	display: flex;
	flex-direction: column;
	gap: 30px
}

.service-item .readmore {
	border: 1px solid var(--white);
	width: fit-content;
	margin: 0 auto;
	padding: 15px 24px;
	border-radius: 5px;
	text-transform: uppercase;
	transition: all .1s ease-out;
	display: table;
	background: transparent;
	color: #fff;
	cursor: pointer;
}

.service-item:hover .readmore {
	background: var(--white);
	color: var(--blue);
}

.service-info {
	display: flex;
	gap: 0;
	flex-direction: column;
}

.service-info .price {
	font-size: clamp(18px, calc(18px + (20 - 18) * ((100vw - 320px) / (1920 - 320))), 20px);
	font-weight: 500;
}

.service-switcher-page {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 20px;
}

.service-switcher-container {
	width: 100%;
}

.service-switcher-wrapper {
	display: flex;
	align-items: center;
	gap: 30px;
}

.service-logo-container {
	display: flex;
}

.service-logo-svg {
	transition: all 0.3s ease;
	max-width: 100%;
	height: auto;
	width: 100%;
	max-height: 48px;
	filter: grayscale(100);
	opacity: 0.3;
}

.service-toggle-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.service-toggle-label {
	color: #666;
	font-size: 14px;
	margin-bottom: 8px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.service-switch {
	position: relative;
	display: inline-block;
	width: 80px;
	height: 40px;
}

.service-switch-input {
	opacity: 0;
	width: 0;
	height: 0;
}

.service-switch-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: linear-gradient(90deg, rgba(191, 191, 191, 1) 0%, rgba(112, 138, 177, 1) 100%);
	transition: .4s;
	border-radius: 40px;
}

.service-switch-slider:before {
	position: absolute;
	content: "";
	height: 32px;
	width: 32px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: .4s;
	border-radius: 50%;
}

.service-switch-input:checked+.service-switch-slider {
	background-image: linear-gradient(290deg, rgba(191, 191, 191, 1) 0%, rgba(112, 138, 177, 1) 100%);
}

.service-switch-input:checked+.service-switch-slider:before {
	transform: translateX(40px);
}

.service-switcher-container {
	width: 100%;
}

.service-content-title {
	font-size: 1.5rem;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.yandex-service-content .service-content-title {
	color: #ff6600;
}

.avito-service-content .service-content-title {
	color: #368ce7;
}


.service-features-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 15px;
	margin-top: 20px;
}

.service-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 10px;
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.service-feature-icon {
	font-size: 18px;
	margin-top: 2px;
}

.yandex-service-content .service-feature-icon {
	color: #ff6600;
}

.avito-service-content .service-feature-icon {
	color: #368ce7;
}

.service-feature-text {
	font-size: 0.95rem;
}

.service-hidden {
	display: none;
}

.service-fade-in {
	animation: serviceFadeIn 0.5s ease-in-out;
}

@keyframes serviceFadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}




.yandex-service-logo.service-logo-active {
	filter: grayscale(0);
	opacity: 1;
}

.avito-service-logo.service-logo-active {
	filter: grayscale(0);
	opacity: 1;
}


.review-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.review-card {
	background: #FFFFFF;
	border: 1px solid #D9D9D9;
	box-shadow: 0px 4px 10px 0px #00000040;
	padding: 10px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	border-radius: 10px;
	transition: all .2s ease-out;
}
.review-card--new {
	overflow: hidden;
}
.review-card--new img{
    max-width:349px;
}
.review-card:hover {
	box-shadow: 0px 4px 30px 0px #00000040;
}
.review-header {
	display: flex;
	flex-direction: column;
}

.review-header-avatar {
	display: flex;
	gap: 15px;
	align-items: center;
}

.rating-date {
	display: flex;
	align-items: center;
	gap: 10px;
}

.rating {
	font-size: 21px;
	color: #CECECE;
}
.rating .star-fill {
	color: #FDD300;
}

.author {
	font-weight: bold;
}

.review-desc,
.rating-date .date {
	font-size: 13px;
	color: #8C8C8C;
}
.review-text {
	color: #333333;
	line-height: 1.3;
}

.review-read-more {
	font-size: 18px;
	color: #8C8C8C;
	text-decoration: none;
}

.review-avatar {
	width: 40px;
	height: 40px;
	border-radius: 100px;
	overflow: hidden;
}


.rating-widget {
	display: inline-flex;
	align-items: center;
	text-align: center;
	padding: 10px 9px;
	background: #fff;
	gap: 5px;
}
.rating-main-value {
	font-size: 50px;
	line-height: 1;
	letter-spacing: -1px;
}

.rating-stars-container {
	font-size: 19px;
	letter-spacing: 3px;
	color: #FFC107;
}

.rating-total {
	font-size: 13px;
	color: #333;
	letter-spacing: 0.3px;
}


.review-wrapper {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 50px;
}

.about-block {
	margin-top: 50px;
	display: flex;
	gap: 72px;
	line-height: 1.3;
}
.about-block__intro {
	width: 25%;
}
.about-block__text {
	flex-grow: 1;
}
@media only screen and (max-width : 992px) {
	.about-block {
		flex-direction: column;
	}
	.about-block__intro {
		width: 100%;
	}
	.about-block__text {
		flex-grow: 1;
	}
}

.faq {
	margin: 0 auto;
	padding: 40px 20px;
}

.faq__main {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 40px;
	color: #000;
	line-height: 1.3;
}

.faq__question {
	padding: 15px 40px 15px 0;
	cursor: pointer;
	position: relative;
	font-size: clamp(21px, calc(21px + (33 - 21) * ((100vw - 320px) / (1920 - 320))), 33px);
	user-select: none;
	width: fit-content;
}

.faq__question:hover {
	color: var(--blue);
}

.faq__icon {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	transition: transform 0.3s ease;
	border: 1px solid #737373;
	border-radius: 2px;
}

.faq__icon::before,
.faq__icon::after {
	content: '';
	position: absolute;
	background-color: #737373;
	transition: all 0.3s ease;
}

.faq__icon::before {
	top: 50%;
	left: 20%;
	width: 60%;
	height: 2px;
	transform: translateY(-50%);
}

.faq__icon::after {
	top: 20%;
	left: 50%;
	width: 2px;
	height: 60%;
	transform: translateX(-50%);
}

.faq__item.active .faq__icon::after {
	transform: translateX(-50%) rotate(90deg);
	opacity: 0;
}

.faq__item.active .faq__icon {
	transform: translateY(-50%) rotate(0deg);
}

.faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.6s ease;
	line-height: 1.3;
	font-size: 18px;
	padding: 0 30px;
}

.faq__item.active .faq__answer {
	max-height: 1000px;
	padding-bottom: 20px;
}

.faq__sub-question {
	margin-left: 20px;
	font-size: 17px;
	font-weight: 600;
	color: #444;
}

.faq__highlight {
	background-color: #f0f8ff;
	padding: 20px;
	margin: 20px 0;
	border-left: 4px solid #0056b3;
	font-weight: 500;
}

.faq__separator {
	height: 2px;
	background: linear-gradient(90deg, transparent, #ddd, transparent);
	margin: 40px 0;
	border: none;
}

.articles {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 50px;
}

.articles-item {
	background: #FFFFFF;
	box-shadow: 0px 4px 10px 0px #00000040;
	display: flex;
	flex-direction: column;
	gap: 5px;
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none;
	color: #000;
	border: 1px solid #E2E2E2;
	transition: all .2s ease-out;
}
.articles-item:hover {
	box-shadow: 0px 4px 30px 0px #00000040;
}

.articles-item:hover h4 {
	text-decoration: underline;
	color: var(--blue);
}

.articles-item img {
	height: 265px;
	object-fit: cover;
	object-position: center;
	display: block;
}

.articles-item--desc {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.articles-item--desc h4 {
	font-size: clamp(18px, calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320))), 20px);
	line-height: 1.1;
	font-weight: normal;
}

.articles-item--desc span {
	font-size: 13px;
	color: #8C8C8C;
}

#map {
	height: 100%;
	top: 0;
	position: absolute;
	width: 100%;
	left: 0;
}

.map-block {
	position: relative;
	height: 545px;
}

.map-block .container {
	padding-top: 50px;
	pointer-events: none;
	z-index: 1;
}

.map-container {
	background: #FFFFFF;
	box-shadow: 0px 4px 10px 0px #00000040;
	display: flex;
	flex-direction: column;
	gap: 15px;
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none;
	color: #000;
	border: 1px solid #E2E2E2;
	transition: all .2s ease-out;
	padding: 40px 50px;
	width: fit-content;
	pointer-events: all;
	max-width: 350px;
}

.map-container-wrapper {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.map-container-wrapper a,
.map-container-wrapper div {
	color: #000;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
}

.map-container-wrapper a.callback:hover {
	background: var(--blue);
	text-decoration: none;
	border: 1px solid #000;
	color: #fff;
}
.map-container-wrapper a.callback {
	font-size: 16px;
	padding: 15px;
	border: 1px solid #000;
	border-radius: 5px;
	width: fit-content;
	text-transform: uppercase;
	transition: all .2s ease-out;
	pointer-events: visible;
}

.map-container-wrapper a.callback:after {
	display: none;
}

footer {
	background: #000;
	padding: 50px 0;
	color: var(--white);
}

.grid-footer {
	display: flex;
	gap: 90px;
	justify-content: space-between;
}

.footer-menu--wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	width: 100%;
}

.logo-desc {
	white-space: nowrap;
	margin-top: 20px;
	font-size: 13px;
}

.footer-menu--wrapper span {
	color: #E51D25;
	font-size: 13px;
	text-transform: uppercase;
}

.footer-menu ul li {
	display: flex;
	flex-direction: column;
	position: relative;
}

.footer-menu ul li a {
	color: var(--white);
	text-decoration: none;
	display: inline-block;
	padding: 10px 0;
	transition: all .2s ease-out;
	position: relative;
	width: fit-content;
}

.footer-menu ul li a:hover {
	text-decoration: underline;
}

.footer-menu li.parent>a:after {
	content: '';
	background-image: url("../images/arrow-white.svg");
	width: 5px;
	height: 12px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.footer-menu ul>li.parent>a {
	padding-right: 15px;
}

.footer-menu ul ul {
	display: none;
	position: absolute;
	left: 0;
	bottom: calc(100% + 20px);
	background: var(--white2);
	border-radius: var(--radius-small);
	min-width: 200px;
	z-index: 1000;
	padding: 0 20px;
}

.footer-menu ul li.parent:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 100%;
	width: 100%;
	height: 20px;
	background: transparent;
	z-index: 999;
}

.footer-menu ul li.parent:hover>ul {
	display: block;
}

.footer-menu ul ul li a {
	color: var(--black);
}

.footer-contacts {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 220px;
}

.footer-contacts a,
.footer-contacts div {
	color: var(--white);
	text-decoration: none;
	display: flex;
	gap: 10px;
	align-items: center;
}

.footer-contacts a:hover {
	text-decoration: underline;
}

.footer-contacts .phone {
	font-size: 24px;
	letter-spacing: -0.5px;
}

.footer-contacts a.callback {
	font-size: 16px;
	padding: 15px;
	border: 1px solid var(--white);
	border-radius: 5px;
	width: 100%;
	text-transform: uppercase;
	transition: all .2s ease-out;
	pointer-events: visible;
	text-align: center;
	display: block;
	margin: 10px 0;
}

.footer-contacts a.callback:after {
	display: none;
}

.footer-contacts a.callback:hover {
	border: 1px solid var(--blue);
	background: var(--blue);
	text-decoration: none;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	color: var(--white);
	font-size: 13px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	color: var(--white);
	font-size: 13px;
	margin-top: 50px;
}

.dev {
	display: flex;
	align-items: center;
	gap: 5px;
	color: var(--white);
	text-decoration: none;
}

.breadcrumb {
	display: flex;
	gap: 15px;
	font-size: 13px;
	color: var(--grey);
	margin-bottom: 15px;
}

.breadcrumb a {
	text-decoration: none;
	color: var(--grey);
}


.swiper-gallery {
	max-width: 100%;
}

.card-swiper {
	width: 100%;
	max-height: 380px;
	margin-bottom: 20px;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0px 4px 10px 0px #00000040;
	border: 1px solid #E2E2E2;
}

.card-swiper .swiper-slide {
	width: 100% !important;
	height: auto;
	box-sizing: border-box;
}

.gallery-image {
	height: 100%;
}

.card-swiper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.card-swiper .swiper-button-next,
.card-swiper .swiper-button-prev {
	width: 48px;
	height: 24px;
	color: var(--black);
}

.card-swiper .swiper-button-next:hover,
.card-swiper .swiper-button-prev:hover {
	color: var(--white);
}

.card-swiper .swiper-button-next {
	transform: rotate(-180deg);
}

.card-swiper .swiper-button-prev {
	top: 95%;
	left: 20px;
}

.card-swiper .swiper-button-next {
	top: 95%;
	right: 20px;
}

.card-thumbnail-swiper {
	width: 100%;
	height: auto !important;
	padding: 0;
	margin: 0 -5px;
}

.card-thumbnail-swiper .swiper-wrapper {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 10px;
	transform: none !important;
	height: auto !important;
	width: 100% !important;
}

.card-thumbnail-swiper .swiper-slide {
	width: 100% !important;
	height: auto;
	cursor: pointer;

}

.card-thumbnail-swiper .swiper-slide:hover {
	opacity: 0.9;
}

.card-thumbnail-swiper .thumbnail-item {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0f0f0;
	border-radius: 5px;
	transition: all 0.3s ease;
	overflow: hidden;
	margin: 0 !important;
	border: 1px solid #E2E2E2;
	box-shadow: 0px 4px 10px 0px #00000040;
}


.card-thumbnail-swiper .swiper-slide-thumb-active .thumbnail-item {
	border-color: var(--black);
	box-shadow: none;
}

.card-thumbnail-swiper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.wrapper {
	display: flex;
	gap: 54px;
}

sidebar {
	background: #E6EAF0;
	border-radius: 10px;
	padding: 15px 0;
	height: fit-content;
	border: 1px solid #FFFFFF;
	max-width: 315px;
	box-shadow: 0px 4px 10px 0px #00000040;
	width: 30vw;
	min-width: 300px;
}

sidebar ul {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

sidebar a {
	color: var(--black);
	text-decoration: none;
	position: relative;
	padding: 10px 20px;
	display: block;
}

sidebar li.active a {
	color: var(--white);
	background: var(--blue);
}

.card-content {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	margin-top: 10px;
}

.card-content>div {
	width: 100%;
}

.card-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.card-header-title {
	font-size: clamp(18px, calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320))), 20px);
	font-weight: 500;
}
.card-header>span>span {
	font-weight: 500;
	color: var(--blue)
}


.card-header .status {
	background: var(--blue);
	color: var(--white);
	font-size: 13px;
	border-radius: 100px;
	padding: 5px 15px;
}

.card-content-block {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 10px 0;
}

.card-content-block>div {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.card-content-block>div>div {
	margin-left: 10px;
}

.card-content-block-title {
	font-size: 13px;
	color: var(--grey);
}

.card-footer {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin: 0 0 10px;
	position: relative;
	align-items: center;
}

.card-footer .card-footer-button {
	padding: 8px 15px;
	border: 1px solid var(--grey);
	border-radius: 5px;
	font-size: 13px;
	color: var(--grey);
	position: relative;
	text-wrap: nowrap;
	display: flex;
	align-items: center;
	gap: 5px;
	text-decoration: none;
	transition: all .2s ease;
}

.card-footer .card-footer-button:hover {
	color: var(--black);
	border: 1px solid var(--white2);
	background: var(--white2);
}

.card-footer .card-footer-button svg {
	min-width: 12px;
}

.card-footer .card-footer-line {
	width: 100%;
	height: 1px;
	background: var(--grey);
}

.button {
	padding: 15px 22px;
	background: var(--grey);
	color: var(--black);
	border-radius: 5px;
	border: none;
	position: relative;
	transition: all .2s ease-out;
	text-decoration: none;
	display: block;
	width: fit-content;
}

.button-blue {
	background: var(--blue);
	color: var(--white);
}

.button.button-icon {
	padding-right: 54px;
}

.button-icon::after {
	content: '';
	background-image: url("../images/arrow2-white.svg");
	width: 14px;
	height: 7px;
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.button-blue:hover {
	background: var(--blue-hover);
	cursor: pointer;
}

.button-margin-top {
	margin-top: 30px;
}

.content h4 {
	font-size: clamp(21px, calc(21px + (33 - 21) * ((100vw - 320px) / (1920 - 320))), 33px);
	font-weight: 500;
}

.card-content-desc {
	width: 100%;
	column-count: 2;
	column-gap: 20px;
	margin-top: 10px;
}

.card-content-desc>div {
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid-column;
	display: inline-block;
	width: 100%;
	margin-bottom: 20px;
}

.card-content-desc>div>div {
	margin-left: 10px;
	margin-top: 5px;
}


.card-block-info {
	padding: 30px 0;
	border-bottom: 1px solid var(--grey);
}

.table-price {
	width: 100%;
	border-collapse: separate;
	margin-top: 30px;
	border-spacing: 0;
	white-space: nowrap;
}

.table-price thead {
	color: var(--grey);
	font-size: 15px;
}

.table-price th {
	padding: 12px 15px;
	text-align: left;
	font-weight: normal;
}

.table-price tbody tr {
	border-radius: 5px;
}

.table-price td:first-child {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.table-price td:last-child {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.table-price td {
	padding: 12px 15px;
	border: 1px solid #E2E2E2;
}

.table-price tbody tr:nth-child(even) {
	background-color: #E6EAF0;
}

.wrapper_price {
	overflow-x: auto;
	border-radius: 5px;
}

.review-full {
	max-width: 900px;
	border-radius: 12px;
	max-height: 90%;
	height: fit-content;
	overflow-y: auto;
}

.article-image {
	width: 100%;
	height: 50vh;
	min-height: 250px;
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	margin: 25px 0 0;
	border: 1px solid var(--white);
	transition: all .1s ease-out;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.article-content {
	margin: 25px 0 0;
}

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

.stock-item {
	height: 360px;
	overflow: hidden;
	border-radius: 10px;
	border: 1px solid var(--white);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: relative;
	transition: all .1s ease-out;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 30px 20px;
	text-decoration: none;
	color: var(--white);
}

.stock-item:hover {
	background-size: 105%;
	box-shadow: 0 4px 30px rgba(0, 0, 0, .25);
}

.stock-item>* {
	position: relative;
}

.stock-item h3 {
	font-weight: 500;
	font-size: clamp(21px, calc(21px + (33 - 21) * ((100vw - 320px) / (1920 - 320))), 33px);
	line-height: 1;
	position: relative;
	width: fit-content;
	z-index: 1;
}

.stock-item h3:after {
	content: '';
	height: 8px;
	width: 100%;
	background: var(--blue);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
	transition: height .1s ease-out;
}

.stock-item:hover h3:after {
	height: calc(0.6667 * clamp(21px, calc(21px + 12 * ((100vw - 320px) / 1600)), 33px));
}

.stock-item:before {
	content: '';
	height: calc(100% - 2px);
	width: calc(100% - 2px);
	border-radius: 10px;
	background-image: linear-gradient(90deg, rgba(0, 33, 59, 0.8) 0%, rgba(0, 33, 59, 0.4) 100%);
	top: 1px;
	left: 1px;
	position: absolute;
	z-index: 0;
}

.stock-item .readmore {
	border: 1px solid var(--white);
	width: fit-content;
	margin: 0 auto;
	padding: 15px 24px;
	border-radius: 5px;
	text-transform: uppercase;
	transition: all .1s ease-out;
}

.stock-item:hover .readmore {
	background: var(--white);
	color: var(--blue);
}
.stock-wrap {
	position: absolute;
	display: flex;
	flex-direction: column;
	width: calc(100% - 40px);
	bottom: 25px;
	gap: 15px;
}

.stock-icon {
	position: absolute;
	top: 0;
	left: 0;
	max-height: 150px;
}
.stock-label {
	top: 20px;
	right: 20px;
	border-radius: 20px;
	padding: 5px 15px;
	color: var(--white);
	background: var(--blue);
	width: fit-content;
	position: absolute;
	font-size: 13px;
}

.card-swiper-noimage {
	opacity: 0.4;
}

.input-error {
	display: block;
	color: #e74c3c;
	font-size: 13px;
	margin-top: 5px;
}

.form-input.input-error {
	border-color: #e74c3c !important;
	background-color: #fff5f5;
}

.checkbox-group.checkbox-error label {
	color: #e74c3c;
}

.checkbox-group.checkbox-error input[type="checkbox"] {
	accent-color: #e74c3c;
	border-color: #e74c3c;
}


.alert-danger {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}


.modal {
	display: none;
	padding: 0;
	border-radius: 10px;
	background: var(--blue);
	cursor: default !important;
	overflow: visible;
	max-width: calc(100% - 40px);
}

.modal .fancybox-close-small {
	right: -35px;
	top: -45px;
	color: #fff;
}



.callback-form-container {
	width: 100%;
	max-width: 1160px;
	background: var(--blue);
	overflow: hidden;
	transition: transform 0.3s ease;
	display: flex;
	color: white;
	padding: 60px;
	gap: 156px;
	border-radius: 10px;
}

.form-header h1 {
	color: var(--white);
	font-size: clamp(28px, calc(28px + (57 - 28) * ((100vw - 320px) / (1920 - 320))), 57px);
	line-height: 1.1;
	font-weight: normal;
}
.form-header p {
	font-size: 18px;
	line-height: 1.3;
	margin-top: 28px;
	font-weight: normal;
}

.form-group {
	margin-bottom: 10px;
}

.form-label {
	display: block;
	font-size: 13px;
	margin-bottom: 10px;
}

.form-input {
	width: 100%;
	padding: 12px 30px;
	font-size: 22px;
	border: 1px solid #C8C8C8;
	border-radius: 5px;
	background: var(--white);
	transition: all 0.3s ease;
	color: var(--black);
	min-width: 475px;
}

.form-input:focus {
	outline: none;
	border-color: #3498db;
	background: white;
	box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-input::placeholder {
	color: #a0aec0;
}

.checkbox-group {
	display: flex;
	align-items: center;
	gap: 12px;
}

.checkbox-group input[type="checkbox"] {
	width: 20px;
	height: 20px;
	min-width: 20px;
	margin-top: 2px;
	accent-color: #3498db;
	cursor: pointer;
}

.checkbox-group label {
	font-size: 13px;
	line-height: 1.3;
	cursor: pointer;
}

.checkbox-group a {
	color: #3498db;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s ease;
}

.checkbox-group a:hover {
	border-bottom-color: #3498db;
}

.submit-btn {
	border: 1px solid var(--white);
	width: fit-content;
	margin: 0 auto;
	padding: 15px 24px;
	border-radius: 5px;
	text-transform: uppercase;
	transition: all .1s ease-out;
	background: transparent;
	color: var(--white);
	white-space: nowrap;
}

.submit-btn:hover {
	background: var(--white);
	color: var(--blue);
	cursor: pointer;
}

.submit-btn:active {
	transform: translateY(0);
}

.submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none !important;
}

@keyframes placeholderPulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

.form-input::placeholder {
	animation: placeholderPulse 3s infinite;
}

.form-group:focus-within .form-label {
	color: #3498db;
}



.privacy-switch {
	position: relative;
	display: inline-block;
	width: 80px;
	height: 40px;
	flex-shrink: 0;
}

.privacy-switch-input {
	opacity: 0;
	width: 0;
	height: 0;
	position: absolute;
}

.privacy-switch-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: .4s;
	border-radius: 40px;
	border: 1px solid var(--white);
}

.privacy-switch-slider::before {
	position: absolute;
	content: "";
	height: 32px;
	width: 32px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: .4s;
	border-radius: 50%;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


.privacy-switch-input:checked+.privacy-switch-slider::before {
	transform: translateX(40px);
}
.privacy-switch-input:disabled+.privacy-switch-slider {
	opacity: 0.6;
	cursor: not-allowed;
}


.checkbox-group.checkbox-error .privacy-label {
	color: #e74c3c;
}

.footer-form {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 45px;
}

.form-header {
	min-width: 360px;
}

.alert-success {
	display: none;
}

.slider-form-success {
	text-align: center;
	padding: 15px;
	background: #2ecc71;
	color: white;
	border-radius: 8px;
	animation: fadeIn 0.5s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
}

.slider-form-success .success-icon {
	font-size: 20px;
	font-weight: bold;
}

.slider-form-success .success-text {
	font-size: 14px;
}




/* ========= NEW */
.hero .slider-wrapper {
	max-width: 70%;
}
@media only screen and (max-width : 992px) {
	.hero .slider-wrapper {
		max-width: 100%;
		padding-right: 15px;
	}
}

.service-item form {
	position: relative;
	z-index: 3;
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-bottom: 10px;
}
.service-item form .form-input {
	min-width: 100%;
	padding: 12px 14px;
	font-size: 16px;
	margin-bottom: 6px;
}
.servicesFormPrivacy {
	text-align: center;
	font-size: 13px;
}
.gallery-section {
	padding-bottom: 30px;
}
.masonry-grid {
	float: left;
	width: 100%;
	position: relative;
}
.masonry-grid .grid-sizer,
.masonry-grid .masonry-grid-item {
	width: 25%;
}
.masonry-grid .masonry-grid-item {
	margin-bottom: 20px;
}


.form-wrapper .success-message {
	width: 100%;
	height: 100%;
	position: relative;
	bottom: auto;
	left: auto;
}
.form-wrapper .success-message .success-message__inner {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}
.form-wrapper .success-message h3 {
	font-size: 2em;
}

.block-bg--img {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.block-color--white {
	color: #fff;
}

/* inline-form */
.inline-form-wrapper {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.inline-form__desc {
	max-width: 360px;
}
.inline-form__desc .block-title h2 {
	text-align: left;
	line-height: 1;
	margin-bottom: 45px;
}

.inline-form__body {
	background: #fff;
	padding: 48px;
	max-width: 400px;
	width: 100%;
}

.inline-form__body .form-input {
	min-width: 100%;
	padding: 12px 14px;
	font-size: 18px;
}

.inline-form .readmore {
	border: 1px solid var(--blue);
	width: fit-content;
	margin: 0 auto;
	padding: 15px 24px;
	border-radius: 5px;
	text-transform: uppercase;
	transition: all .1s ease-out;
	display: table;
	background: transparent;
	color: var(--blue);
	cursor: pointer;
	width: 100%;
	margin: 0;
}
.inline-form .readmore:hover {
	color: #fff;

	background: var(--blue);
	border: 1px solid var(--blue);
}
.inline-form {
	height: 100%;
}
.inline-form .success-message,
.inline-form .servicesFormPrivacy {
	color: var(--blue);
}
.inline-form .servicesFormPrivacy {
	margin-top: 16px;
}
.inline-form form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

@media only screen and (max-width : 992px) {
	.inline-form-wrapper {
		flex-direction: column;
	}

	.inline-form__desc {
		max-width: 100%;
		width: 100%;
		margin-bottom: 60px;
	}
	.inline-form__body {
		max-width: 100%;
		width: 100%;
	}

	.inline-form__desc .block-title h2 {
		text-align: left;
		line-height: 1;
		margin-bottom: 15px;
	}

	.inline-form__body {
		padding: 20px;
	}

}

.reviews-block-head {
	display: flex;
	align-items: center;
	padding: 10px;
	background: #fff;
	border-radius: 6px;
	gap: 30px;
	padding-left: 20px;
}

.reviews-block-head .rating-widget {
	background: #F4F4F4;
	border-radius: 4px;
}

@media only screen and (max-width : 600px) {
	.reviews-block-head {
		width: 100%;
		flex-direction: column;
		padding-left: 10px;
		gap: 10px;
	}
	.reviews-block-head .rating-widget {
		width: 100%;
		justify-content: center;
	}
}


/* advantages */

.steps-list {
	display: flex;
	gap: 50px;
	margin-top: 50px;
	flex-wrap:wrap;
}
.advantages__item {
	flex: 1;
}

.advantage {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
}
.advantage__count {
	font-size: 50px;
	line-height: 38px;
	font-weight: 700;
	color: #ebe9e6;
	margin-bottom: -40px;
	margin-left: 140px;
}
.advantage__icon {
	z-index: 3;
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 137px;
	height: 137px;
	border: 1px solid #f2f0ed;
	background-color: var(--color-2);
	border-radius: 50%;
	margin-bottom: 25px;
	background: #fff;
}
.advantage__icon u {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 58px;
	height: 58px;
}
.advantage__icon:before {
	z-index: -1;
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 117px;
	height: 117px;
	border: 1px solid #e6e3e1;
	border-radius: 50%;
}
.advantage__title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 11px;
	color: var(--blue);
}
.advantage__text {
	font-size: 17px;
	line-height: 24px;
}

@media only screen and (max-width : 992px) {
	.steps-list {
		flex-wrap: wrap;
	}
}

/* work-item */
.works-list-wrapper {
	position: relative;
}

.works-list {
	position: relative;
	z-index: 3;
	margin-top: 50px;
}
.work-item {
	position: relative;
	padding: 16px 16px 50px 16px;
}
.work-item-inner {
	background: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	padding: 20px;
}
.work-item-inner {
	display: flex;
	gap: 30px;
	position: relative;
	z-index: 3;
}

.work-item::after,
.work-item::before {
	content: '';
	position: absolute;
	background: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	z-index: 1;
	height: 80px;
}
.work-item::after {
	left: 36px;
	right: 36px;
	bottom: 32px;
	z-index: 2;
}
.work-item::before {
	z-index: 1;
	left: 56px;
	right: 56px;
	bottom: 16px;
	opacity: 0.6;
}

.work-item-gallery {
	width: 40%;
}
.work-item-content {
	padding: 20px 0;
	flex-grow: 1;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
.work-item-content__title {
	font-size: 33px;
	font-weight: 500;
	margin-bottom: 20px;
}
.work-item-content__specs-label {
	font-size: 20px;
	padding-left: 16px;
	margin-bottom: 16px;
	font-weight: 500;
}
.work-item-content__specs table {
	width: 100%;
	border-collapse: collapse;
}
.work-item-content__specs table tr td {
	padding: 8px 16px;
}
.work-item-content__specs table tr:nth-child(odd) {
	background: #EFF2F6;
}
.work-item-content__specs table tr td.specs-key {
	font-size: 14px;
}
.work-item-content__specs table tr td.specs-value {
	font-size: 16px;
	font-weight: 500;
}
.work-item-content__footer {
	margin-top: 40px;
}
.work-item-content__price-value {
	color: var(--blue);
	font-size: 32px;
	font-weight: 600;
}
.work-item-content__price {
	margin-bottom: 16px;
}

.work-item-content__button {
	border: 1px solid var(--blue);
	width: fit-content;
	margin: 0 auto;
	padding: 15px 24px;
	border-radius: 5px;
	text-transform: uppercase;
	transition: all .1s ease-out;
	display: inline-block;
	background: transparent;
	color: var(--blue);
	cursor: pointer;
	margin: 0;
}
.work-item-content__button:hover {
	color: #fff;

	background: var(--blue);
	border: 1px solid var(--blue);
}

.work-item-gallery {}
.work-item-gallery-main {
	margin-bottom: 20px;
}

.work-item-gallery-thumbs {
	display: flex;
	width: 100%;
}
.work-item-gallery-thumbs .gallery-arrow {
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 6;
	opacity: .6;
	transition: all .2s ease;
}
.work-item-gallery-thumbs .gallery-arrow:hover {
	opacity: 1;
}
.work-item-gallery-thumbs .gallery-arrow.swiper-button-disabled {
	opacity: .2;
}
.work-item-gallery-thumbs .gallery-arrow.gallery-arrow__prev {
	background: url('../images/resurs/arrow-left.svg') no-repeat center;
	background-size: 12px;
}
.work-item-gallery-thumbs .gallery-arrow.gallery-arrow__next {
	background: url('../images/resurs/arrow-right.svg') no-repeat center;
	background-size: 12px;
}
.work-item-gallery-thumbs-slider {
	flex-grow: 1;
	width: 100%;
}

.work-item-gallery-thumbs .sw-slide {
	cursor: pointer;
}

.sw-slide {
	display: block;
	flex-shrink: 0;
	height: 100%;
	position: relative;
	transition-property: transform;
	width: 100%;
}


.works-list-slider {
	position: relative;
	z-index: 6;
}
.works-list-slider .swiper-pagination-bullet {
	background: var(--black);
	border-radius: 0;
	display: inline-block;
	height: 5px;
	opacity: 1;
	width: 5px;
}

.works-list-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 15px;
}
.works-list-slider .swiper-pagination {
	bottom: 0;
}
.works-list-slider {
	padding-bottom: 36px;
}

.works-list-wrapper .swiper-button-next {
	right: -40px;
}
.works-list-wrapper .swiper-button-prev {
	left: -40px;
}
.works-list-wrapper .swiper-button-next,
.works-list-wrapper .swiper-button-prev {
	color: #333;
}

.sw-slide img {
	width: 100%;
	height: auto;
}
@media only screen and (max-width : 1200px) {
	.works-list-wrapper .swiper-button-next,
	.works-list-wrapper .swiper-button-prev {
		display: none;
	}
}

@media only screen and (max-width : 992px) {
	.work-item-inner {
		flex-direction: column;
	}
	.work-item-gallery {
		width: 100%;
	}
}