:root {
    --red: #F53C15;
    --red-dark: #F23A16;
    --ink: #24262b;
    --muted: #9A9A9A;
    --line: #e8e8e8;
    --surface: #f6f6f5;
    --white: #fff;
	--main-color: #3E3D59;
    --container: 1440px;
    --h1-size: clamp(2rem, 2.8vw, 2.3rem);
    --h2-size: clamp(1.65rem, 2.2vw, 2.1rem);
    --h3-size: clamp(1rem, 1.25vw, 1.18rem);
	--font-main: 'Open Sans', sans-serif;
	
	--font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
	--font-weight-extrabold: 800;
	display: block;
	
	margin: 0;
	padding: 0;
}
p {
    margin: 0px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: #fff;
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
}
.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}
.section-heading {
	margin: 20px 0 40px 0;
}
.section-heading h2 {
    margin: 0;
    font-size: var(--h2-size);
    line-height: 1.1;
    letter-spacing: -.02em;
}
.section-heading>p {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
}

@media (max-width: 800px) {
    .container {
            width: min(100% - 30px, var(--container));
        
    }
    .section-heading {
            align-items: flex-start;
            flex-direction: column;
        
    }
}

@media (max-width: 640px) {
    .page {
        padding: 24px 16px;
      
    }
}

.bx-breadcrumb {
    margin-bottom: 20px;
}
:root {
    --inner-page-content-gap: 20px;
    --inner-page-content-gap-mobile: 20px;
}
.site-page--internal .bx-breadcrumb {
    margin-bottom: 0;
}
.site-page--internal > .container:has(> .bx-breadcrumb) + section,
.site-page--internal > .container:has(> .bx-breadcrumb) + main > :first-child {
    padding-top: 0;
}

/* site-header */

.site-header {
    background: #fff;
    position: relative;
    z-index: 20;
}
.site-header__top {
    display: grid;
   /* grid-template-columns: 240px 1fr auto auto;*/
 /*  grid-template-columns: 1fr 1fr 1fr 1fr;*/
    /*gap: 22px;*/
    align-items: center;
	padding: 20px 0;
	    grid-auto-flow: column;
}
.brand {
    display: inline-flex;
    align-items: center;
}
.brand__logo {
    display: block;
    width: 240px;
    height: auto;
}
.site-header__meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 11px;
}
.site-header__contacts {
    display: grid;
	grid-auto-flow: row;
	gap: 4px;
	
}
.site-header__contacts--bold {
	font-weight: 500;
	font-weight: bold;
    color: #3E3D59;
}
.site-header__contacts a {
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;
	display: flex;
}
.site-header__contacts small {
    color: var(--muted);
    font-size: 11px;
}
.site-header__actions {
    display: flex;
    gap: 12px;
	justify-content: flex-end;
}
.main-nav {
   /* border-block: 1px solid var(--line);*/
   background: #F1F1F1;
   padding: 12px 28px;
   border-radius: 8px;
}
.main-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main-nav a {
    display: block;
}
.main-nav a {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #3E3D59;
}
.main-nav a:hover {
    color: var(--red);
}
.main-nav__services {
    position: static;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #3E3D59;
}
.main-nav__services-toggle {
    border: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    cursor: pointer;
}
.main-nav__services-toggle span {
    color: #3E3D59;
}
.main-nav__services-toggle span:hover {
    color: var(--red);
}
.mega-menu {
    position: absolute;
    z-index: 30;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0px 40px 80px 0px #0212301F;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: .2s ease;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding: 12px;
    /*outline: 1px solid #F53C15;
    outline-offset: -12px;*/
}
.main-nav__services:hover .mega-menu,
.main-nav__services:focus-within .mega-menu,
.main-nav__services--open .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mega-menu::before {
    content: '';
    position: absolute;
    inset: 12px; 
    border: 1px solid #F53C15;
    border-radius: 8px;
    pointer-events: none;
}
.main-nav__services:hover .mega-menu,
.main-nav__services:focus-within .mega-menu,
.main-nav__services--open .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
	display: flex;
    justify-content: space-between;
}
.mega-menu__inner {
    width: min(var(--container), calc(100% - 48px));
    /*margin: 12px;*/
    display: grid;
    gap: 40px;
    /*padding: 20px;*/
	border-radius: 12px;
	grid-auto-flow: column;
}
.mega-menu__column h3 {
	font-weight: 800;
	font-size: 16px;
	line-height: 20px;
	color: #3E3D59;
	margin: 0 0 12px 0;
}
.mega-menu__column h3 .mega-menu__column-title-link {
    display: inline;
    padding: 0;
    color: inherit;
    font: inherit;
    line-height: inherit;
}
.mega-menu__column h3 .mega-menu__column-title-link:hover,
.mega-menu__column h3 .mega-menu__column-title-link:focus-visible {
    color: var(--red);
}
.mega-menu__column a {
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
    padding: 4px 0;
	color: #3E3D59;
	
}
.mega-menu__column {
	width: 314px;
}
.main-nav__dropdown {
    position: relative;
}
.main-nav__dropdown-trigger {
    display: flex;
    align-items: center;
}
.main-nav__dropdown-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.main-nav__dropdown-toggle span {
    width: 7px;
    height: 7px;
    margin-top: -4px;
    border-right: 2px solid #3E3D59;
    border-bottom: 2px solid #3E3D59;
    transform: rotate(45deg);
}
.main-nav__dropdown-menu {
    position: absolute;
    z-index: 40;
    top: calc(100% + 12px);
    right: auto;
    left: 50%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    width: max-content;
    min-width: 280px;
    max-width: min(420px, calc(100vw - 48px));
    margin-inline: 0;
    padding: 30px 36px;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 40px 80px rgba(2, 18, 48, .12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.main-nav__dropdown-menu::before {
    position: absolute;
    inset: 12px;
    border: 1px solid #F53C15;
    border-radius: 8px;
    content: '';
    pointer-events: none;
}
.main-nav__dropdown-menu::after {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 13px;
    content: '';
}
.main-nav__dropdown-menu a {
    position: relative;
    z-index: 1;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}
.main-nav__dropdown-menu a:hover,
.main-nav__dropdown-menu a:focus-visible {
    background: #f7f7f7;
    color: var(--red);
}
.main-nav__dropdown:hover .main-nav__dropdown-menu,
.main-nav__dropdown:focus-within .main-nav__dropdown-menu,
.main-nav__dropdown--open .main-nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}
.main-nav__dropdown--wide .main-nav__dropdown-menu {
    min-width: 380px;
}
.main-nav__dropdown--align-right .main-nav__dropdown-menu {
    right: 0;
    left: auto;
    transform: translateY(-7px);
}
.main-nav__dropdown--align-right:hover .main-nav__dropdown-menu,
.main-nav__dropdown--align-right:focus-within .main-nav__dropdown-menu,
.main-nav__dropdown--align-right.main-nav__dropdown--open .main-nav__dropdown-menu {
    transform: translateY(0);
}
.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 8px;
}
.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--ink);
    display: block;
    margin: 5px;
}

@media (max-width: 1120px) {
    .site-header__top {
            grid-template-columns: 180px 1fr auto;
        
    }
    .site-header__meta {
            display: none;
        
    }
    .site-header__actions {
            grid-column: 2 / 4;
            justify-self: end;
            margin-top: -25px;
        
    }
    .main-nav a {
            font-size: 12px;
        
    }
}

@media (max-width: 800px) {
    .site-header__top {
            min-height: 90px;
            grid-template-columns: 1fr auto auto;
            gap: 14px;
        
    }
    .site-header__contacts {
            display: none;
        
    }
    .site-header__actions {
            display: none;
        
    }
    .menu-toggle {
            display: block;
        
    }
    .main-nav {
            display: none;
            position: absolute;
            z-index: 50;
            left: 0;
            right: 0;
            max-height: calc(100vh - 90px);
            overflow-y: auto;
            background: #fff;
            box-shadow: 0 15px 30px rgba(0, 0, 0, .12);
        
    }
    .main-nav--open {
            display: block;
        
    }
    .main-nav ul {
            display: block;
            padding: 10px 15px;
        
    }
    .main-nav a {
            padding: 12px;
            font-size: 14px;
        
    }
    .main-nav__services-toggle {
            width: 100%;
            padding: 12px;
            text-align: left;
        
    }
    .mega-menu {
            position: static;
            display: none;
            padding: 12px;
            box-shadow: none;
            opacity: 1;
            visibility: visible;
            transform: none;
            border: 0;
            background: var(--surface);
        
    }
    .main-nav__services:hover .mega-menu,
        .main-nav__services:focus-within .mega-menu {
            display: none;
        
    }
    .main-nav__services--open .mega-menu {
            display: block;
        
    }
    .mega-menu__inner {
            width: 100%;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        
    }
    .mega-menu__column a {
            padding: 6px 0;
            font-size: 12px;
        
    }
    .main-nav__dropdown-trigger > a {
            flex: 1;
        
    }
    .main-nav__dropdown-toggle {
            flex: 0 0 44px;
            width: 44px;
            height: 44px;
        
    }
    .main-nav__dropdown-menu {
            position: static;
            display: none;
            grid-template-columns: 1fr;
            gap: 0;
            width: auto;
            min-width: 0;
            max-width: none;
            margin: 0 12px 8px;
            padding: 7px;
            border: 0;
            background: var(--surface);
            box-shadow: none;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: none;
            transition: none;
        
    }
    .main-nav__dropdown-menu::before {
            display: none;
        
    }
    .main-nav__dropdown-menu::after {
            display: none;
        
    }
    .main-nav__dropdown:hover .main-nav__dropdown-menu,
        .main-nav__dropdown:focus-within .main-nav__dropdown-menu {
            display: none;
            transform: none;
        
    }
    .main-nav__dropdown--open .main-nav__dropdown-menu,
        .main-nav__dropdown--open:hover .main-nav__dropdown-menu,
        .main-nav__dropdown--open:focus-within .main-nav__dropdown-menu {
            display: grid;
            transform: none;
        
    }
    .main-nav__dropdown--wide .main-nav__dropdown-menu {
            min-width: 0;
        
    }
    .main-nav__dropdown-menu a {
            padding: 9px 10px;
            font-size: 13px;
        
    }
    .brand__logo {
            width: 162px;
        
    }
}

@media (max-width: 520px) {
    .brand__logo {
            width: 145px;
        
    }
    .mega-menu__inner {
            grid-template-columns: 1fr;
        
    }
}

.site-header__contacts a {
	display: block;
}
.site-header__address {
    display: grid;
    grid-auto-flow: row;
	gap: 4px;
}
.mega-menu__inner {
    width: max-content;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-radius: 12px;
    overflow: hidden;
	padding: 20px;
}
.mega-menu__column:last-child {
    border-right: none;
}
.main-nav.container {
   margin-bottom: 20px;
}
.site-header__contacts {
    display: grid;
    grid-auto-flow: row;
    gap: 4px;
    min-width: 0;
    width: max-content;
}
.site-header__logo {
	display: flex; 
    justify-content: space-around;
}

.main-nav__mobile-footer {
    display: none;
}
.mobile-menu {
    display: none;
}

@media (max-width: 800px) {
    .site-header .main-nav.container {
            display: none !important;
        
    }
    .mobile-menu {
            --mobile-menu-scrollbar: #d9d9d9;
            position: fixed;
            z-index: 90;
            top: var(--mobile-menu-top, 72px);
            right: 0;
            bottom: 0;
            left: 0;
            width: 100%;
            height: calc(100vh - var(--mobile-menu-top, 72px));
            height: calc(100dvh - var(--mobile-menu-top, 72px));
            overflow: hidden;
            border-top: 1px solid var(--line);
            background: var(--white);
            color: var(--main-color);
            font-family: var(--font-main);
        
    }
    .mobile-menu--open {
            display: flex;
            flex-direction: column;
        
    }
    .mobile-menu__scroll {
            width: 100%;
            min-height: 0;
            flex: 1 1 auto;
            overflow-x: hidden;
            overflow-y: auto;
            overscroll-behavior: contain;
            scrollbar-color: var(--mobile-menu-scrollbar) transparent;
            scrollbar-width: thin;
            -webkit-overflow-scrolling: touch;
        
    }
    .mobile-menu__scroll::-webkit-scrollbar {
            width: 4px;
        
    }
    .mobile-menu__scroll::-webkit-scrollbar-track {
            background: transparent;
        
    }
    .mobile-menu__scroll::-webkit-scrollbar-thumb {
            border-radius: 2px;
            background: var(--mobile-menu-scrollbar);
        
    }
    .mobile-menu__list {
            display: flex;
            flex-direction: column;
            gap: 4px;
            width: 100%;
            margin: 0;
            padding: 20px 16px;
            list-style: none;
        
    }
    .mobile-menu__item,
        .mobile-menu__services {
            width: 100%;
            margin: 0;
        
    }
    .mobile-menu__link,
        .mobile-menu__services-trigger {
            display: flex;
            align-items: center;
            width: 100%;
            min-height: 36px;
            padding: 8px 0;
            border: 0;
            background: transparent;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: var(--font-weight-semibold);
            line-height: 20px;
            text-align: left;
        
    }
    .mobile-menu__services-trigger {
            position: relative;
            padding-right: 34px;
            font-weight: var(--font-weight-extrabold);
            cursor: pointer;
        
    }
    .mobile-menu__services-trigger::after,
        .mobile-menu__dropdown-toggle::after {
            position: absolute;
            top: 50%;
            right: 8px;
            width: 8px;
            height: 8px;
            border-right: 1.5px solid var(--main-color);
            border-bottom: 1.5px solid var(--main-color);
            content: "";
            transform: translateY(-50%) rotate(-45deg);
            transition: transform .2s ease;
        
    }
    .mobile-menu__services--open .mobile-menu__services-trigger::after,
        .mobile-menu__dropdown--open .mobile-menu__dropdown-toggle::after {
            transform: translateY(-70%) rotate(45deg);
        
    }
    .mobile-menu__mega,
        .mobile-menu__group-links,
        .mobile-menu__dropdown-panel {
            display: none;
        
    }
    .mobile-menu--services-view .mobile-menu__list > li:not(.mobile-menu__services),
        .mobile-menu--category-view .mobile-menu__group:not(.mobile-menu__group--open),
        .mobile-menu--category-view .mobile-menu__group--open .mobile-menu__group-header {
            display: none;
        
    }
    .mobile-menu--services-view .mobile-menu__services-trigger {
            display: none;
        
    }
    .mobile-menu--services-view .mobile-menu__mega {
            display: block;
            width: 100%;
        
    }
    .mobile-menu__back {
            display: flex;
            align-items: center;
            gap: 10px;
            width: 100%;
            min-height: 36px;
            margin: 0 0 4px;
            padding: 8px 0;
            border: 0;
            background: transparent;
            color: var(--main-color);
            font: 500 14px/20px var(--font-main);
            text-align: left;
            cursor: pointer;
        
    }
    .mobile-menu__back-icon {
            position: relative;
            display: block;
            width: 24px;
            height: 24px;
            flex: 0 0 24px;
        
    }
    .mobile-menu__back-icon::before {
            position: absolute;
            top: 8px;
            left: 9px;
            width: 7px;
            height: 7px;
            border-bottom: 1.5px solid var(--muted);
            border-left: 1.5px solid var(--muted);
            content: "";
            transform: rotate(45deg);
        
    }
    .mobile-menu__groups {
            display: flex;
            flex-direction: column;
            gap: 4px;
            width: 100%;
        
    }
    .mobile-menu__group,
        .mobile-menu__group-header {
            width: 100%;
        
    }
    .mobile-menu__group-header {
            display: flex;
            align-items: center;
            gap: 10px;
            min-height: 36px;
        
    }
    .mobile-menu__group-header h3 {
            min-width: 0;
            margin: 0;
            flex: 1;
            color: var(--main-color);
            font: var(--font-weight-extrabold) 14px/20px var(--font-main);
        
    }
    .mobile-menu__group-title-link {
            display: flex;
            align-items: center;
            min-height: 36px;
            padding: 8px 0;
            color: var(--main-color);
            font: inherit;
        
    }
    .mobile-menu__group-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            flex: 0 0 24px;
            padding: 0;
            border: 0;
            background: transparent;
            cursor: pointer;
        
    }
    .mobile-menu__group-toggle span {
            width: 8px;
            height: 8px;
            border-right: 1.5px solid var(--muted);
            border-bottom: 1.5px solid var(--muted);
            transform: rotate(-45deg);
        
    }
    .mobile-menu--category-view .mobile-menu__group--open .mobile-menu__group-links {
            display: flex;
            flex-direction: column;
            gap: 4px;
            width: 100%;
        
    }
    .mobile-menu--category-view .mobile-menu__group-links a {
            display: flex;
            align-items: center;
            min-height: 26px;
            padding: 4px 0;
            color: var(--main-color);
            font: var(--font-weight-regular) 14px/18px var(--font-main);
        
    }
    .mobile-menu--category-view .mobile-menu__group-links a:hover,
        .mobile-menu--category-view .mobile-menu__group-links a:focus-visible {
            color: var(--red);
        
    }
    .mobile-menu__dropdown-row {
            display: flex;
            align-items: center;
            width: 100%;
        
    }
    .mobile-menu__dropdown-row .mobile-menu__link {
            min-width: 0;
            flex: 1;
        
    }
    .mobile-menu__dropdown-toggle {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 36px;
            flex: 0 0 34px;
            padding: 0;
            border: 0;
            background: transparent;
            cursor: pointer;
        
    }
    .mobile-menu__dropdown--open .mobile-menu__dropdown-panel {
            display: flex;
        
    }
    .mobile-menu__dropdown-panel {
            flex-direction: column;
            gap: 4px;
            margin: 0 0 8px;
            padding: 8px 12px;
            border-radius: 8px;
        
    }
    .mobile-menu__dropdown-panel a {
            display: flex;
            align-items: center;
            min-height: 28px;
            color: var(--main-color);
            font-size: 14px;
            line-height: 20px;
        
    }
    .mobile-menu__footer {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            gap: 20px;
            width: 100%;
            height: 308px;
            min-height: 308px;
            flex: 0 0 308px;
            padding: 20px 16px;
        
    }
    .mobile-menu__address {
            display: flex;
            flex-direction: column;
            gap: 4px;
            width: 100%;
            color: var(--main-color);
            font-size: 14px;
            font-weight: var(--font-weight-medium);
            line-height: 20px;
        
    }
    .mobile-menu__address span:last-child {
            order: -1;
        
    }
    .mobile-menu__media {
            display: grid;
            grid-template-columns: 150px minmax(0, 1fr);
            align-items: center;
            gap: 12px;
            width: 100%;
            min-height: 50px;
        
    }
    .mobile-menu__rating {
            width: 150px;
            height: 50px;
            overflow: hidden;
        
    }
    .mobile-menu__rating img {
            display: block;
            width: 150px;
            height: 50px;
            object-fit: cover;
        
    }
    .mobile-menu__socials {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            height: 50px;
            padding: 0 16px;
            border-radius: 4px;
            background: var(--surface);
        
    }
    .mobile-menu__socials a,
        .mobile-menu__socials img {
            display: block;
            width: 28px;
            height: 28px;
        
    }
    .mobile-menu__actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
            width: 100%;
        
    }
    .mobile-menu__actions .button {
            width: 100%;
            min-height: 36px;
            padding: 10px 16px;
            border-radius: 8px;
            color: var(--white);
            font: var(--font-weight-semibold) 12px/16px var(--font-main);
            text-transform: uppercase;
        
    }
    .mobile-menu__actions .button--primary {
            background: var(--red);
        
    }
    .mobile-menu__actions .button--muted {
            background: var(--muted);
        
    }
}

@media (max-width: 360px) {
    .mobile-menu__list,
        .mobile-menu__footer {
            padding-inline: 12px;
        
    }
    .mobile-menu__media {
            grid-template-columns: 140px minmax(0, 1fr);
            gap: 8px;
        
    }
    .mobile-menu__rating,
        .mobile-menu__rating img {
            width: 140px;
        
    }
    .mobile-menu__socials {
            gap: 14px;
            padding-inline: 10px;
        
    }
}

.mega-menu__mobile-back,
.mega-menu__mobile-column-toggle {
    display: none;
}

@media (max-width: 800px) {
    body.mobile-menu-open {
            overflow: hidden;
        
    }
    .site-header {
            z-index: 100;
            background: var(--white);
        
    }
    .site-header .site-header__top.container {
            display: grid;
            grid-template-columns: 24px 140px minmax(0, 1fr);
            grid-auto-flow: initial;
            align-items: center;
            gap: 16px;
            width: 100%;
            min-height: 72px;
            margin: 0;
            padding: 12px 16px;
        
    }
    .site-header__meta,
        .site-header__address,
        .site-header__logo,
        .site-header__actions {
            display: none;
        
    }
    .site-header .menu-toggle {
            position: relative;
            order: 1;
            display: block;
            width: 24px;
            height: 24px;
            margin: 0;
            padding: 0;
            border: 0;
            border-radius: 4px;
            background: transparent;
            cursor: pointer;
            transition: background-color .2s ease;
        
    }
    .site-header .menu-toggle::before {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 18px;
            height: 12.5px;
            background: var(--main-color);
            content: "";
            opacity: 1;
            transform: translate(-50%, -50%);
            transition: opacity .15s ease;
            -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 12.5'%3E%3Crect width='18' height='1.5' y='0' rx='.75'/%3E%3Crect width='18' height='1.5' y='5.5' rx='.75'/%3E%3Crect width='12' height='1.5' y='11' rx='.75'/%3E%3C/svg%3E") center / contain no-repeat;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 12.5'%3E%3Crect width='18' height='1.5' y='0' rx='.75'/%3E%3Crect width='18' height='1.5' y='5.5' rx='.75'/%3E%3Crect width='12' height='1.5' y='11' rx='.75'/%3E%3C/svg%3E") center / contain no-repeat;
        
    }
    .site-header .menu-toggle span {
            position: absolute;
            left: 3px;
            display: block;
            width: 18px;
            height: 1.5px;
            top: 11.25px;
            margin: 0;
            border-radius: 1px;
            background: var(--main-color);
            opacity: 0;
            transform-origin: center;
            transition: top .2s ease, width .2s ease, transform .2s ease, opacity .2s ease;
        
    }
    .site-header .menu-toggle span:nth-child(1) {
            transform: rotate(0deg);
        
    }
    .site-header .menu-toggle span:nth-child(2) {
            opacity: 0;
        
    }
    .site-header .menu-toggle span:nth-child(3) {
            transform: rotate(0deg);
        
    }
    .site-header .menu-toggle[aria-expanded="true"] {
            background: var(--surface);
        
    }
    .site-header .menu-toggle[aria-expanded="true"]::before {
            opacity: 0;
        
    }
    .site-header .menu-toggle[aria-expanded="true"] span {
            left: 3px;
            width: 18px;
        
    }
    .site-header .menu-toggle[aria-expanded="true"] span:nth-child(1) {
            top: 11.25px;
            opacity: 1;
            transform: rotate(45deg);
        
    }
    .site-header .menu-toggle[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
        
    }
    .site-header .menu-toggle[aria-expanded="true"] span:nth-child(3) {
            top: 11.25px;
            opacity: 1;
            transform: rotate(-45deg);
        
    }
    .site-header .brand {
            order: 2;
            width: 140px;
            height: 48px;
        
    }
    .site-header .brand__logo {
            display: block;
            width: 140px;
            height: 48px;
            object-fit: contain;
        
    }
    .site-header .site-header__contacts {
            order: 3;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-self: end;
            gap: 4px;
            width: auto;
            color: var(--main-color);
            font-family: var(--font-main);
            white-space: nowrap;
        
    }
    .site-header .site-header__contacts a {
            display: block;
            padding: 0;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: var(--font-weight-medium);
            line-height: 20px;
        
    }
    .site-header .site-header__contacts a:first-child {
            font-weight: var(--font-weight-regular);
        
    }
    .site-header .site-header__contacts--bold {
            font-weight: var(--font-weight-semibold);
        
    }
    .site-header .main-nav.container {
            --mobile-menu-scrollbar: #d9d9d9;
            position: fixed;
            z-index: 90;
            top: var(--mobile-menu-top, 72px);
            right: 0;
            bottom: 0;
            left: 0;
            display: none;
            flex-direction: column;
            width: 100%;
            height: calc(100vh - var(--mobile-menu-top, 72px));
            height: calc(100dvh - var(--mobile-menu-top, 72px));
            max-height: none;
            margin: 0;
            overflow-x: hidden;
            overflow-y: hidden;
            border-top: 1px solid var(--line);
            background: var(--white);
            box-shadow: none;
        
    }
    .site-header .main-nav.main-nav--open {
            display: flex;
        
    }
    .site-header .main-nav > .container1 {
            width: 100%;
            min-height: 0;
            flex: 1 1 auto;
            overflow-x: hidden;
            overflow-y: auto;
            overscroll-behavior: contain;
            scrollbar-color: var(--mobile-menu-scrollbar) transparent;
            scrollbar-width: thin;
            -webkit-overflow-scrolling: touch;
        
    }
    .site-header .main-nav > .container1::-webkit-scrollbar {
            width: 4px;
        
    }
    .site-header .main-nav > .container1::-webkit-scrollbar-track {
            background: transparent;
        
    }
    .site-header .main-nav > .container1::-webkit-scrollbar-thumb {
            border-radius: 2px;
            background: var(--mobile-menu-scrollbar);
        
    }
    .site-header .main-nav > .container1::-webkit-scrollbar-button {
            display: none;
            width: 0;
            height: 0;
        
    }
    .site-header .main-nav > .container1 > ul {
            display: flex;
            flex-direction: column;
            gap: 4px;
            width: 100%;
            margin: 0;
            padding: 20px 16px;
            list-style: none;
        
    }
    .site-header .main-nav > .container1 > ul > li {
            width: 100%;
            margin: 0;
        
    }
    .site-header .main-nav > .container1 > ul > li > a,
        .site-header .main-nav__dropdown-trigger > a {
            display: flex;
            align-items: center;
            min-height: 36px;
            padding: 8px 0;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: var(--font-weight-semibold);
            line-height: 20px;
        
    }
    .site-header .main-nav__services {
            width: 100%;
        
    }
    .site-header .main-nav__services-toggle {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            min-height: 36px;
            padding: 8px 34px 8px 0;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: var(--font-weight-extrabold);
            line-height: 20px;
            text-align: left;
        
    }
    .site-header .main-nav__services-toggle > a,
        .site-header .main-nav__services-toggle span {
            display: block;
            padding: 0;
            color: var(--main-color);
            font: inherit;
            line-height: inherit;
        
    }
    .site-header .main-nav__services-toggle::after {
            position: absolute;
            top: 50%;
            right: 8px;
            width: 8px;
            height: 8px;
            border-right: 1.5px solid var(--main-color);
            border-bottom: 1.5px solid var(--main-color);
            content: "";
            transform: translateY(-50%) rotate(-45deg);
            transition: transform .2s ease;
        
    }
    .site-header .main-nav__services--open .main-nav__services-toggle::after {
            transform: translateY(-70%) rotate(45deg);
        
    }
    .site-header .main-nav__dropdown-trigger {
            min-height: 36px;
        
    }
    .site-header .main-nav__dropdown-toggle {
            display: none;
        
    }
    .site-header .mega-menu {
            width: 100%;
            margin: 0;
            padding: 12px 16px;
            border-radius: 8px;
            background: var(--surface);
        
    }
    .site-header .mega-menu::before {
            display: none;
        
    }
    .site-header .mega-menu__inner {
            grid-template-columns: 1fr;
            grid-auto-flow: row;
            gap: 20px;
            width: 100%;
            padding: 0;
        
    }
    .site-header .mega-menu__column {
            width: 100%;
        
    }
    .site-header .main-nav--services-view > .container1 > ul > li:not(.main-nav__services) {
            display: none;
        
    }
    .site-header .main-nav--services-view .main-nav__services > .main-nav__services-toggle {
            display: none;
        
    }
    .site-header .main-nav--services-view .main-nav__services > .mega-menu,
        .site-header .main-nav--services-view .main-nav__services:hover > .mega-menu,
        .site-header .main-nav--services-view .main-nav__services:focus-within > .mega-menu {
            position: static;
            display: block !important;
            width: 100%;
            margin: 0;
            padding: 0;
            border: 0;
            border-radius: 0;
            background: var(--white);
            box-shadow: none;
            opacity: 1;
            visibility: visible;
            transform: none;
        
    }
    .site-header .mega-menu__mobile-back {
            display: flex;
            align-items: center;
            gap: 10px;
            width: 100%;
            min-height: 36px;
            margin: 0 0 4px;
            padding: 8px 0;
            border: 0;
            background: transparent;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: var(--font-weight-medium);
            line-height: 20px;
            text-align: left;
            cursor: pointer;
        
    }
    .site-header .mega-menu__mobile-back-icon {
            position: relative;
            display: block;
            width: 24px;
            height: 24px;
            flex: 0 0 24px;
        
    }
    .site-header .mega-menu__mobile-back-icon::before {
            position: absolute;
            top: 8px;
            left: 9px;
            width: 7px;
            height: 7px;
            border-bottom: 1.5px solid var(--muted);
            border-left: 1.5px solid var(--muted);
            content: "";
            transform: rotate(45deg);
        
    }
    .site-header .main-nav--services-view .mega-menu__inner {
            display: flex;
            flex-direction: column;
            gap: 4px;
            width: 100%;
        
    }
    .site-header .mega-menu__column-header {
            display: flex;
            align-items: center;
            gap: 10px;
            width: 100%;
            min-height: 36px;
        
    }
    .site-header .mega-menu__column-header h3 {
            min-width: 0;
            margin: 0;
            flex: 1;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: var(--font-weight-extrabold);
            line-height: 20px;
        
    }
    .site-header .mega-menu__column-header h3 .mega-menu__column-title-link {
            display: flex;
            align-items: center;
            min-height: 36px;
            padding: 8px 0;
            color: var(--main-color);
            font: inherit;
            line-height: inherit;
        
    }
    .site-header .mega-menu__mobile-column-toggle {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            flex: 0 0 24px;
            padding: 0;
            border: 0;
            background: transparent;
            cursor: pointer;
        
    }
    .site-header .mega-menu__mobile-column-toggle span {
            width: 8px;
            height: 8px;
            border-right: 1.5px solid var(--muted);
            border-bottom: 1.5px solid var(--muted);
            transform: rotate(-45deg);
        
    }
    .site-header .mega-menu__column-links {
            display: none;
        
    }
    .site-header .main-nav--category-view .mega-menu__column:not(.mega-menu__column--open) {
            display: none;
        
    }
    .site-header .main-nav--category-view .mega-menu__column--open .mega-menu__column-header {
            display: none;
        
    }
    .site-header .main-nav--category-view .mega-menu__column--open .mega-menu__column-links {
            display: flex;
            flex-direction: column;
            gap: 4px;
            width: 100%;
        
    }
    .site-header .main-nav--category-view .mega-menu__column-links a {
            display: flex;
            align-items: center;
            min-height: 26px;
            padding: 4px 0;
            border-radius: 0;
            background: transparent;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: var(--font-weight-regular);
            line-height: 18px;
        
    }
    .site-header .main-nav--category-view .mega-menu__column-links a:hover,
        .site-header .main-nav--category-view .mega-menu__column-links a:focus-visible {
            background: transparent;
            color: var(--red);
        
    }
    .site-header .main-nav__dropdown-menu {
            margin: 0 0 8px;
            padding: 8px 12px;
            border-radius: 8px;
        
    }
    .site-header .main-nav__mobile-footer {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            gap: 20px;
            width: 100%;
            height: 308px;
            min-height: 308px;
            flex: 0 0 308px;
            margin-top: 0;
            padding: 20px 16px;
            color: var(--main-color);
            font-family: var(--font-main);
        
    }
    .site-header .main-nav__mobile-address {
            display: flex;
            flex-direction: column;
            gap: 4px;
            width: 100%;
            color: var(--main-color);
            font-size: 14px;
            font-weight: var(--font-weight-medium);
            line-height: 20px;
        
    }
    .site-header .main-nav__mobile-address span:last-child {
            order: -1;
        
    }
    .site-header .main-nav__mobile-media {
            display: grid;
            grid-template-columns: 150px minmax(0, 1fr);
            align-items: center;
            gap: 12px;
            width: 100%;
            min-height: 50px;
        
    }
    .site-header .main-nav__mobile-rating {
            width: 150px;
            height: 50px;
            overflow: hidden;
        
    }
    .site-header .main-nav__mobile-rating img {
            display: block;
            width: 150px;
            height: 50px;
            object-fit: cover;
        
    }
    .site-header .main-nav__mobile-socials {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            height: 50px;
            padding: 0 16px;
            border-radius: 4px;
            background: var(--surface);
        
    }
    .site-header .main-nav__mobile-socials a,
        .site-header .main-nav__mobile-socials img {
            display: block;
            width: 28px;
            height: 28px;
        
    }
    .site-header .main-nav__mobile-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
            width: 100%;
        
    }
    .site-header .main-nav__mobile-actions .button {
            width: 100%;
            min-height: 36px;
            padding: 10px 16px;
            border-radius: 8px;
            color: var(--white);
            font-family: var(--font-main);
            font-size: 12px;
            font-weight: var(--font-weight-semibold);
            line-height: 16px;
            text-transform: uppercase;
        
    }
    .site-header .main-nav__mobile-actions .button--primary {
            background: var(--red);
        
    }
    .site-header .main-nav__mobile-actions .button--muted {
            background: var(--muted);
        
    }
}

@media (max-width: 360px) {
    .site-header .site-header__top.container {
            grid-template-columns: 24px minmax(108px, 140px) minmax(0, 1fr);
            gap: 10px;
            padding-inline: 12px;
        
    }
    .site-header .brand,
        .site-header .brand__logo {
            width: 100%;
            max-width: 140px;
        
    }
    .site-header .site-header__contacts a {
            font-size: 12px;
            line-height: 18px;
        
    }
    .site-header .main-nav > .container1 > ul,
        .site-header .main-nav__mobile-footer {
            padding-inline: 12px;
        
    }
    .site-header .main-nav__mobile-media {
            grid-template-columns: 140px minmax(0, 1fr);
            gap: 8px;
        
    }
    .site-header .main-nav__mobile-rating,
        .site-header .main-nav__mobile-rating img {
            width: 140px;
        
    }
    .site-header .main-nav__mobile-socials {
            gap: 14px;
            padding-inline: 10px;
        
    }
}

@media (min-width: 801px) and (max-width: 1350px) {
    .site-header .site-header__top.container {
            display: grid;
            grid-template-columns:
                clamp(132px, 12.5vw, 190px)
                clamp(76px, 8vw, 115px)
                minmax(112px, 1fr)
                auto
                auto
                auto;
            grid-auto-flow: initial;
            align-items: center;
            gap: clamp(8px, 1.15vw, 16px);
            padding: clamp(10px, 1.2vw, 16px) 0;
        
    }
    .site-header .site-header__address {
            display: grid;
            gap: 2px;
            min-width: 0;
            font-size: clamp(10px, 0.9vw, 13px);
            line-height: clamp(15px, 1.3vw, 19px);
            white-space: nowrap;
        
    }
    .site-header .brand,
        .site-header .brand__logo {
            width: 100%;
            max-width: 210px;
        
    }
    .site-header .site-header__meta {
            display: flex;
            align-items: center;
            min-width: 0;
        
    }
    .site-header .site-header__meta a,
        .site-header .site-header__meta img {
            display: block;
            max-width: 100%;
        
    }
    .site-header .site-header__meta img {
            width: clamp(82px, 9vw, 126px);
            height: auto;
        
    }
    .site-header .site-header__contacts {
            display: grid;
            grid-column: auto;
            justify-self: end;
            gap: 2px;
            width: auto;
            white-space: nowrap;
        
    }
    .site-header .site-header__contacts a {
            font-size: clamp(12px, 1.15vw, 17px);
            line-height: clamp(18px, 1.6vw, 22px);
        
    }
    .site-header .site-header__logo {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: clamp(4px, 0.65vw, 9px);
            min-width: 0;
        
    }
    .site-header .site-header__logo a,
        .site-header .site-header__logo img {
            display: block;
        
    }
    .site-header .site-header__logo img {
            width: clamp(20px, 2vw, 28px);
            height: clamp(20px, 2vw, 28px);
        
    }
    .site-header .site-header__actions {
            grid-column: auto;
            display: flex;
            justify-self: end;
            gap: clamp(5px, 0.65vw, 8px);
            margin: 0;
        
    }
    .site-header .site-header__actions .button {
            min-height: clamp(30px, 3vw, 36px);
            padding: clamp(7px, 0.75vw, 10px) clamp(8px, 0.95vw, 13px);
            font-size: clamp(9px, 0.86vw, 13px);
            line-height: 1.15;
            border-radius: clamp(8px, 0.9vw, 12px);
            white-space: nowrap;
        
    }
    .site-header .menu-toggle {
            display: none;
        
    }
    .site-header .main-nav.container {
            width: min(var(--container), calc(100% - 48px));
            padding: 10px 16px;
        
    }
    .site-header .main-nav > .container1,
        .site-header .main-nav > .container1 > ul {
            width: 100%;
            min-width: 0;
        
    }
    .site-header .main-nav > .container1 > ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-evenly;
            column-gap: clamp(12px, 2vw, 28px);
            row-gap: 8px;
        
    }
    .site-header .main-nav a,
        .site-header .main-nav__services-toggle {
            font-size: clamp(12px, 1.1vw, 15px);
            line-height: 22px;
            white-space: nowrap;
        
    }
    .site-header .main-nav__dropdown-menu a {
            white-space: normal;
            overflow-wrap: break-word;
        
    }
    .mega-menu__inner {
            grid-auto-flow: row;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: clamp(16px, 2.5vw, 40px);
            width: min(var(--container), calc(100vw - 48px));
            max-width: calc(100vw - 48px);
        
    }
    .mega-menu__column {
            width: auto;
            min-width: 0;
        
    }
}

@media (min-width: 801px) and (max-width: 900px) {
    .site-header .site-header__top.container {
            grid-template-columns: clamp(132px, 17vw, 155px) auto minmax(100px, 1fr) auto auto;
            grid-template-rows: auto auto;
            gap: 8px 10px;
        
    }
    .site-header .brand {
            grid-column: 1;
            grid-row: 1 / 3;
        
    }
    .site-header .site-header__meta {
            grid-column: 2;
            grid-row: 1;
        
    }
    .site-header .site-header__contacts {
            grid-column: 4;
            grid-row: 1;
        
    }
    .site-header .site-header__address {
            grid-column: 3;
            grid-row: 1;
        
    }
    .site-header .site-header__logo {
            grid-column: 5;
            grid-row: 1;
        
    }
    .site-header .site-header__actions {
            grid-column: 2 / 6;
            grid-row: 2;
            justify-self: end;
        
    }
    .site-header .site-header__actions .button {
            min-height: 30px;
            padding: 7px 9px;
            font-size: clamp(9px, 1.1vw, 11px);
        
    }
}

@media (min-width: 801px) and (max-width: 1000px) {
    .mega-menu__inner {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        
    }
}

/* button */

.button {
    min-height: 42px;
    max-width: 100%;
    padding: 8px 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    transition: .2s ease;
    text-align: center;
    overflow-wrap: anywhere;
}
.button:hover {
    transform: translateY(-1px);
}
.button--small {
    min-height: 36px;
    padding-inline: 15px;
    font-size: 11px;
}
.button--primary {
    background: #F53C15;
    color: #FFFFFF;
	font-weight: 600;
	font-size: 14px;
	line-height: 100%;
	text-transform: uppercase;
	padding: 12px 20px;
	border-radius: 12px;
}
.button--primary:hover {
    background: var(--red-dark);
}
.button--muted {
	background: #9A9A9A;
	color: #FFFFFF;
	font-weight: 600;
	font-size: 14px;
	line-height: 100%;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	line-height: 100%;
	text-transform: uppercase;
	border-radius: 12px;
	padding: 12px 20px;
}
.button--outline {
    border-color: var(--red);
    color: var(--red);
    background: #fff;
}

/* hero */

.hero {
    padding: 14px 0 0;
}
.hero__inner {
    min-height: 488px;
    position: relative;
    overflow: hidden;
    background: #dedfdc00 var(--hero-image) center / cover no-repeat;
    display: flex;
    align-items: center;
}
.hero__inner::after {
    content: '';
    position: absolute;
    inset: 0;
   /* background: linear-gradient(90deg, rgba(247, 247, 247, .98) 0%, rgba(247, 247, 247, .86) 35%, rgba(247, 247, 247, 0) 64%);*/
}
.hero__content {
    position: relative;
    z-index: 1;
    width: min(520px, 54%);
    margin: 0 0 0 64px;
}
.eyebrow {
    margin: 0 0 14px;
    color: var(--red);
    font-size: 13px;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.hero .eyebrow {
    display: none;
}
.hero h1 {
	display: block;
	font-size: 40px;
	line-height: 44px;
	color: #3E3D59;
	font-weight: var(--font-weight-semibold);
}
.hero h1 span {
	font-size: 48px;
	line-height: 56px;
	letter-spacing: 0%;
	color: #F53C15;
	display: block;
}
.hero__lead {
    display: inline-flex;
    max-width: 100%;
	font-size: 24px;
	line-height: 36px;
	opacity: 1;
	padding: 8px 24px;
	border-radius: 80px;
	background: #fff;
	color: #3E3D59;
	margin-left: -24px;
	font-weight: var(--font-weight-medium);
	    
}
.hero__actions {
    display: flex;
    align-items: center;
    gap: 24px;
}
.hero .hero__actions {
    display: none;
}
.hero__phone {
    display: grid;
}
.hero__phone small {
    color: var(--muted);
    font-size: 11px;
}
.hero__phone strong {
    margin-top: 3px;
    font-size: 16px;
}
.advantages-strip {
    margin: 40px 0 64px 0;
}
.advantages-strip__grid {
    min-height: 54px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    gap: 14px;
}
.advantage {
	opacity: 1;
	padding: 12px 20px;
	gap: 20px;
	border-radius: 8px;
	background: #F1F1F1;
	display: flex;
	    align-items: center;
}
.advantage span {
    min-width: 34px;
    min-height: 34px;
    padding: 5px;
    border: 1px solid rgba(244, 81, 44, .45);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
}
.advantage img {
	max-width: 48px;
	height: auto;
}
.advantage p {
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: #3E3D59;
}

@media (max-width: 1120px) {
    .advantage {
            padding-inline: 16px;
        
    }
}

@media (max-width: 800px) {
    .hero {
            padding-top: 0;
        
    }
    .hero__inner {
            min-height: 430px;
            background-position: 62% center;
        
    }
    .hero__inner::after {
            background: linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .58));
        
    }
    .hero__content {
            width: 100%;
            padding: 42px 24px;
        
    }
    .hero h1 {
            font-size: clamp(2rem, 8vw, 2.65rem);
        
    }
    .hero__actions {
            align-items: flex-start;
            flex-direction: column;
        
    }
    .advantages-strip__grid {
            grid-template-columns: 1fr 1fr;
        
    }
    .advantage:nth-child(2) {
            border-right: 0;
        
    }
}

@media (max-width: 520px) {
    .hero h1 {
            font-size: 2rem;
        
    }
    .hero__lead {
            font-size: 16px;
        
    }
    .advantages-strip__grid {
            grid-template-columns: 1fr;
        
    }
    .advantage {
            border-right: 0;
            border-bottom: 1px solid var(--line);
        
    }
}

@media (max-width: 600px) {
    .hero {
            padding: 0;
        
    }
    .hero > .container {
            width: calc(100% - 32px);
            max-width: none;
            margin-inline: auto;
        
    }
    .hero .hero__inner {
            display: block;
            width: 100%;
            height: 460px;
            min-height: 460px;
            border-radius: 12px;
            background: url('../images/hero-mobile-installation.png') center / cover no-repeat;
        
    }
    .hero .hero__inner::after {
            display: none;
        
    }
    .hero .hero__content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 24px;
            width: 100%;
            margin: 0;
            padding: 28px 16px;
        
    }
    .hero h1 {
            width: 100%;
            margin: 0;
            padding-left: 12px;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 24px;
            font-weight: var(--font-weight-extrabold);
            line-height: 20px;
        
    }
    .hero h1 span {
            display: block;
            margin-bottom: 4px;
            color: var(--red);
            font-family: var(--font-main);
            font-size: 32px;
            font-weight: var(--font-weight-extrabold);
            line-height: 40px;
        
    }
    .hero .hero__lead {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: auto;
            max-width: 100%;
            margin: 0;
            padding: 6px 12px;
            border-radius: 80px;
            background: var(--white);
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 16px;
            font-weight: var(--font-weight-medium);
            line-height: 20px;
            white-space: nowrap;
        
    }
    .advantages-strip {
            margin: 20px 0;
            overflow: hidden;
        
    }
    .advantages-strip .advantages-strip__grid {
            display: flex;
            align-items: center;
            gap: 12px;
            width: 100%;
            min-height: 64px;
            margin: 0;
            padding: 0 16px 0px;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-padding-inline: 16px;
            scroll-snap-type: x proximity;
            scrollbar-width: none;
            overscroll-behavior-inline: contain;
            -webkit-overflow-scrolling: touch;
            cursor: grab;
        
    }
    .advantages-strip .advantages-strip__grid::-webkit-scrollbar {
            display: none;
        
    }
    .advantages-strip .advantages-strip__grid.is-dragging {
            cursor: grabbing;
            scroll-snap-type: none;
            user-select: none;
        
    }
    .advantages-strip .advantage {
            display: flex;
            flex: 0 0 240px;
            align-items: center;
            gap: 12px;
            width: 240px;
            height: 64px;
            min-height: 64px;
            padding: 8px 12px;
            border: 0;
            border-radius: 8px;
            background: var(--surface);
            scroll-snap-align: start;
            cursor: pointer;
        
    }
    .advantages-strip .advantage img {
            flex: 0 0 48px;
            width: 48px;
            max-width: 48px;
            height: 48px;
            object-fit: contain;
        
    }
    .advantages-strip .advantage p {
            flex: 1 1 auto;
            margin: 0;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: var(--font-weight-semibold);
            line-height: 20px;
        
    }
}

/* calculator */

.calculator {
    background: url('../images/calculator-background.jpg') center/cover no-repeat;
    overflow: hidden;
}
.calculator__grid {
    min-height: 390px;
    display: grid;
    grid-template-columns: 52% 48%;
    align-items: stretch;
}
.calculator__content {
    min-width: 0;
    padding: 64px 0px 64px 0;
    align-self: center;
}
.calculator .eyebrow {
    display: none;
}
.calculator h2 {
	font-weight: 600;
	font-size: 32px;
	line-height: 40px;
	color: #3E3D59;
	margin: 0px 0 32px 0;
}
.calculator__form {
    max-width: 700px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
}
.calculator label {
    display: grid;
    gap: 8px;
	grid-auto-flow: column;
	align-items: center;
}
.calculator label>span {
    color: #555;
    font-size: 13px;
}
.calculator input {
    width: 100%;
    min-width: 0;
    height: 5px;
    border: 1px solid #d4d5d5;
    border-radius: 20px;
    background: #fff;
    color: var(--ink);
}
.calculator__collection,
.calculator__summary,
.calculator__actions,
.calculator__note {
    grid-column: 1 / -1;
}
.calculator__summary {
    display: flex;
    border-block: 1px solid #ddd;
	padding: 42px 0 34px 0;
}
.calculator__summary strong {
    color: var(--red);
    font-size: 21px;
}
.calculator__actions {
    display: flex;
    gap: 12px;
}
.calculator__note {
	font-weight: 400;
	font-style: Italic;
	font-size: 14px;
	line-height: 20px;
	color: #3E3D59;
}
.calculator__visual {
    min-height: 390px;
}
.calculator__field--full {
    grid-column: 1 / -1;
}
.calculator__summary-price {
	border: 1px solid #B6BBC1;
	border-radius: 8px;
	border-width: 1px;
	padding: 16px 32px;
}
.calculator__summary {
    display: flex;
    align-items: center;
    gap: 20px;
}
.calculator__summary-price {
    display: flex;
    flex: 0 0 auto;
    align-items: baseline;
    gap: 4px;
    box-sizing: border-box;
    min-width: 222px;
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
}
.calculator__about-price {
    flex: 1 1 auto;
    min-width: 0;
}
.calculator__note b {
    font-weight: 700;
}

@media (max-width: 800px) {
    .calculator {
            background: linear-gradient(rgba(255, 255, 255, .94), rgba(255, 255, 255, .94)), url('../images/calculator-background.jpg') 72% center/cover no-repeat;
        
    }
    .calculator__grid {
            display: block;
        
    }
    .calculator__content {
            padding: 44px 0;
        
    }
    .calculator__visual {
            display: none;
        
    }
}

@media (max-width: 520px) {
    .calculator__form,
    .calculator__summary {
            grid-template-columns: 1fr;
        
    }
    .calculator__actions {
            flex-direction: column;
        
    }
    .calculator__summary {
            align-items: stretch;
            flex-direction: column;
        
    }
    .calculator__summary-price {
            width: 100%;
            min-width: 0;
        
    }
}

.calculator__input-group {
    display: flex;
    align-items: center;
    gap: 20px;
}
.calculator__range {
    flex: 1;
}
.calculator__number {
    width: 100px;
}
.calculator__field {
width: 100%;
   /* display: block !important;*/
}
.calculator__range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 20px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    outline: none;
    --range-progress: 0%;
}
.calculator__range::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(
        to right,
        #F23A16 0%,
        #F23A16 var(--range-progress),
        #b6bbc1 var(--range-progress),
        #b6bbc1 100%
    );
}
.calculator__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 20px;
    margin-top: -7px;
    border: 0;
    border-radius: 999px;
    background: #F23A16;
    box-shadow: none;
}
.calculator__range::-moz-range-track {
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: #b6bbc1;
}
.calculator__range::-moz-range-progress {
    height: 6px;
    border-radius: 999px;
    background: #F23A16;
}
.calculator__range::-moz-range-thumb {
    width: 12px;
    height: 20px;
    border: 0;
    border-radius: 999px;
    background: #F23A16;
    box-shadow: none;
}
.calculator__range::-ms-track {
    width: 100%;
    height: 6px;
    border-color: transparent;
    color: transparent;
    background: transparent;
}
.calculator__range::-ms-fill-lower {
    border-radius: 999px;
    background: #F23A16;
}
.calculator__range::-ms-fill-upper {
    border-radius: 999px;
    background: #b6bbc1;
}
.calculator__number {
	height: 38px !important;
}
.calculator__field-name {
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0%;
	color: #3E3D59;
	max-width: 160px;
}
.calculator__field,
.calculator__collection {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
}
.calculator__input-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 140px;
    align-items: center;
    gap: 40px;
}
.calculator__field-name {
    width: 260px;
}
.calculator__number,
.calculator__collection select {
    min-width: 140px;
    box-sizing: border-box;
	border-radius: 20px;
	border-width: 1px;
	padding: 8px 20px;
	border: 1px solid #B6BBC1;
}
.calculator__input-group:has([data-area-input]) {
    grid-template-columns: 1fr;
}
.calculator__input-group:has([data-area-input]) .calculator__number {
    width: 100%;
    min-width: 0;
    min-width: 140px;
    box-sizing: border-box;
	border-radius: 20px;
	border-width: 1px;
	padding: 8px 20px;
	text-align: justify;
}
.calculator__collection select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8L12 16L20 8' stroke='%239E9EAC' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 24px 24px;
}

/* --- Integrated custom.css --- */
@media (max-width: 600px) {
    .calculator {
            --calculator-mobile-background: #f1f1f1;
            --calculator-control-border: #b6bbc1;
            overflow: hidden;
            background:
                linear-gradient(
                    180deg,
                    #f1f1f1 74.71%,
                    rgba(241, 241, 241, 0) 86.19%
                ),
                url('../images/calculator-mobile.png') center bottom / 100% auto no-repeat,
                linear-gradient(0deg, #f9f9f9, #f9f9f9);
        
    }
    .calculator .calculator__grid.container {
            display: flex;
            flex-direction: column;
            width: 100%;
            min-height: 0;
            margin: 0;
        
    }
    .calculator .calculator__content {
            width: 100%;
            padding: 28px 16px;
        
    }
    .calculator h2 {
            margin: 0 0 20px;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 24px;
            font-weight: var(--font-weight-semibold);
            line-height: 32px;
        
    }
    .calculator .calculator__form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 100%;
            max-width: none;
        
    }
    .calculator .calculator__field,
        .calculator .calculator__collection {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 8px;
            width: 100%;
        
    }
    .calculator .calculator__field-name {
            width: auto;
            max-width: none;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: var(--font-weight-bold);
            line-height: 20px;
        
    }
    .calculator .calculator__input-group {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 12px;
            width: 100%;
        
    }
    .calculator .calculator__range {
            width: 100%;
            height: 20px;
            flex: none;
            padding: 0;
            border: 0;
            border-radius: 0;
            outline: 0;
            background: transparent;
            box-shadow: none;
            -webkit-appearance: none;
            appearance: none;
        
    }
    .calculator .calculator__range:focus,
        .calculator .calculator__range:focus-visible,
        .calculator .calculator__range:active {
            border: 0;
            outline: 0;
            box-shadow: none;
        
    }
    .calculator .calculator__range::-webkit-slider-runnable-track {
            height: 4px;
            background: linear-gradient(
                to right,
                var(--red-dark) 0%,
                var(--red-dark) var(--range-progress),
                var(--calculator-control-border) var(--range-progress),
                var(--calculator-control-border) 100%
            );
        
    }
    .calculator .calculator__range::-webkit-slider-thumb {
            width: 20px;
            height: 20px;
            margin-top: -8px;
            border-radius: 50%;
            background: var(--red-dark);
        
    }
    .calculator .calculator__range::-moz-range-track {
            height: 4px;
            background: var(--calculator-control-border);
        
    }
    .calculator .calculator__range::-moz-range-progress {
            height: 4px;
            background: var(--red-dark);
        
    }
    .calculator .calculator__range::-moz-range-thumb {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--red-dark);
        
    }
    .calculator .calculator__number,
        .calculator .calculator__collection select,
        .calculator .calculator__input-group:has([data-area-input]) .calculator__number {
            width: 100%;
            min-width: 0;
            height: 38px !important;
            padding: 8px 20px;
            border: 1px solid var(--calculator-control-border);
            border-radius: 20px;
            background-color: var(--white);
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: var(--font-weight-regular);
            line-height: 20px;
            text-align: left;
        
    }
    .calculator .calculator__collection select {
            height: 40px !important;
            background-position: right 20px center;
        
    }
    .calculator .calculator__summary {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 12px;
            margin-top: 12px;
            padding: 0;
            border: 0;
        
    }
    .calculator .calculator__summary-price {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 8px;
            width: 100%;
            min-width: 0;
            min-height: 48px;
            padding: 12px 20px;
            border: 1px solid var(--calculator-control-border);
            border-radius: 8px;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 16px;
            font-weight: var(--font-weight-bold);
            line-height: 24px;
            white-space: nowrap;
        
    }
    .calculator .calculator__summary strong {
            color: var(--red);
            font-size: 21px;
            font-weight: var(--font-weight-bold);
            line-height: 24px;
        
    }
    .calculator .calculator__about-price {
            width: 100%;
        
    }
    .calculator .calculator__note {
            margin: 0;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 12px;
            font-weight: var(--font-weight-regular);
            font-style: italic;
            line-height: 16px;
        
    }
    .calculator .calculator__note b {
            font-weight: var(--font-weight-bold);
        
    }
    .calculator .calculator__actions {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
            gap: 12px;
            width: 100%;
            margin-top: 12px;
        
    }
    .calculator .calculator__actions .button {
            width: 100%;
            min-width: 0;
            min-height: 36px;
            padding: 10px 12px;
            border-radius: 8px;
            color: var(--white);
            font-family: var(--font-main);
            font-size: 12px;
            font-weight: var(--font-weight-semibold);
            line-height: 16px;
            text-transform: uppercase;
            white-space: nowrap;
        
    }
    .calculator .calculator__actions .button:first-child {
            grid-column: 1 / -1;
        
    }
    .calculator .calculator__visual {
            position: relative;
            z-index: 1;
            display: block;
            width: 100%;
            min-height: 0;
            aspect-ratio: 748 / 478;
            margin-top: -56px;
            background: linear-gradient(180deg, #f1f1f1 0%, rgba(241, 241, 241, 0.92) 0%, rgba(241, 241, 241, 0) 14%), url(../images/calculator-mobile.png) center / cover no-repeat;
            pointer-events: none;
        
    }
}

.calculator input:focus,
.calculator select:focus {
    border-color: var(--calculator-focus-color);
    outline: none;
}
.calculator {
    --calculator-focus-color: #E31D01;
    --calculator-thumb-color: #F23A16;
}
.calculator .calculator__range:focus,
.calculator .calculator__range:focus-visible,
.calculator .calculator__range:active {
    outline: none;
    box-shadow: none;
}
.calculator .calculator__range::-webkit-slider-thumb {
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border: 8px solid var(--calculator-thumb-color);
    border-radius: 50%;
    background: var(--white);
    -webkit-appearance: none;
    appearance: none;
}
.calculator .calculator__range::-moz-range-thumb {
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border: 8px solid var(--calculator-thumb-color);
    border-radius: 50%;
    background: var(--white);
}
.calculator-popup[hidden] {
    display: none;
}
.calculator-popup {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.calculator-popup.is-open {
    opacity: 1;
}
.calculator-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(62, 61, 89, 0.42);
}
.calculator-popup__dialog {
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
    max-height: calc(100dvh - 48px);
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 20px 60px rgba(31, 31, 47, 0.22);
}
.calculator-popup__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    color: var(--main-color);
    font-family: var(--font-main);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}
.calculator-popup .calculator {
    overflow: visible;
    background: #f1f1f1;
}
.calculator-popup .calculator__grid.container {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 0 64px;
}
.calculator-popup .calculator__content {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 0;
}
.calculator-popup .calculator__form {
    max-width: none;
}
.calculator-popup .calculator__visual {
    display: none;
}
.calculator-popup .calculator h2 {
    padding-right: 44px;
    font-size: 28px;
    line-height: 36px;
}

@media (max-width: 600px) {
    .calculator-popup {
            padding: 8px;
        
    }
    .calculator-popup__dialog {
            max-height: calc(100dvh - 16px);
            border-radius: 12px;
        
    }
    .calculator-popup__close {
            top: 8px;
            right: 8px;
            width: 32px;
            height: 32px;
            font-size: 26px;
        
    }
    .calculator-popup .calculator {
            background: #f1f1f1;
        
    }
    .calculator-popup .calculator__grid.container {
            padding: 0;
        
    }
    .calculator-popup .calculator__content {
            padding: 24px 16px;
        
    }
    .calculator-popup .calculator h2 {
            padding-right: 32px;
            font-size: 22px;
            line-height: 28px;
        
    }
    .calculator-popup .calculator__visual {
            display: none;
        
    }
}

.calculator-page > .container h1 {
    margin: 20px 0 40px;
    color: #3E3D59;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
}
.calculator-page > .container p {
    margin: 0;
    color: #3E3D59;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}
.calculator-page > .container p + p {
    margin-top: 20px;
}
.calculator-page > .container:last-of-type {
    padding-top: 20px;
    padding-bottom: 80px;
}

/* services-home */

.services-home {
    padding: 80px 0;
    background: #fff;
}
.services-home__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
}
.service-card {
    min-width: 0;
    min-height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 7px;
    color: #fff;
    background: #4b4d50;
    grid-column: span 2;
}
.service-card--row-2 {
    grid-column: span 3;
    min-height: 400px;
	cursor: pointer;
}
.service-card--row-3 {
    grid-column: span 2;
    min-height: 400px;
	cursor: pointer;
}
.service-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.service-card:hover img {
    transform: scale(1.035);
}
.service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .08) 15%, rgba(0, 0, 0, .8) 100%);
}
.service-card__content {
    position: absolute;
    inset: 0;
    padding: 32px;
    display: flex;
    min-height: 62%;
    flex-direction: column;
	justify-content: space-between;
}
.service-card h3 {
	font-weight: 800;
	font-size: 28px;
	line-height: 32px;
	color: rgba(255, 255, 255, 1);
	margin: 0;
}
.service-card--advantages {
    display: flex;
	padding: 4px 20px;
	border-radius: 60px;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: #FFFFFF;
	background: #FFFFFF33;
	backdrop-filter: blur(8px);
	width: fit-content;
}
.service-card__hover-text {
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: rgba(255, 255, 255, 1);
}
.service-card__overlay {
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}
.service-card:hover .service-card__overlay {
    opacity: 1;
    visibility: visible;
	cursor: pointer;
}
.service-card__hover-text,
.service-card__footer a {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}
.service-card:hover .service-card__hover-text,
.service-card:hover .service-card__footer a {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.service-card__price {
	font-weight: 600;
	font-size: 24px;
	line-height: 31px;
	color: rgba(255, 255, 255, 1);
}
.service-card__price--second {
	font-weight: 700;
	font-size: 36px;
	line-height: 40px;
}
.service-card__price--rouble {
	font-weight: 700;
	font-size: 36px;
	line-height: 40px;
}
.service-card__footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.service-card__footer strong {
    font-size: 16px;
}
.service-card__footer a {
	padding: 12px 20px;
	gap: 10px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 14px;
	line-height: 100%;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 1);
	background: rgba(245, 60, 21, 1);
}
.service-page__hero {
color: #3E3D59;
}
.service-page__hero-grid {
 /*   min-height: 430px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 55px;*/
}
.service-page__hero-grid p {
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	
}
.service-page__hero h1 {
	font-weight: 600;
	font-size: 32px;
	line-height: 40px;
	color: #3E3D59;
	margin-bottom: 40px;
}
.service-page__hero img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 8px;
}
.service-page__price {
    margin: 0 0 28px;
    color: var(--red);
    font-size: 30px;
    font-weight: 800;
}
.service-page__body {
  /*margin-bottom: 64px;*/
}
.service-page__content h2 {
	font-weight: 600;
	font-size: 24px;
	line-height: 28px;
	margin-bottom: 24px;
	margin-top: 40px;
	color: #3E3D59;
}
.service-page__text p {
    margin: 0;
}
.service-page__text p + p {
    margin-top: 20px;
}
.service-page__content h3 {
    margin: 38px 0 15px;
    font-size: 25px;
}
.service-page__content p,
.service-page__content li {
	color: #3E3D59;
	font-size: 14px;
}
.service-page__content .service-page__text ul {
    margin: 15px 0 15px;
    padding: 0;
    list-style: none;
}
.service-page__content .service-page__text ul li {
    position: relative;
    margin: 0 0 12px;
    padding-left: 18px;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}
.service-page__content .service-page__text ul li:last-child {
    margin-bottom: 0;
}
.service-page__content .service-page__text ul li::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #F53C15;
}
.service-page__text p {
	gap: 20px;
	position: relative;
}
.service-page__content a {
    color: var(--red);
}
.service-page__content table {
    width: 100%;
    border-collapse: collapse;
}
.service-page__content td,
.service-page__content th {
    padding: 12px;
    border: 1px solid var(--line);
}
.services-catalog {
    /*padding: 70px 0 90px;*/
}
.services-catalog h1 {
    margin: 0;
    font-weight: var(--font-weight-semibold);
	font-size: 32px;
	line-height: 40px;
	color: var(--main-color);
}
.services-catalog__group {
   
}
.services-catalog__group h2 {
    font-weight: var(--font-weight-semibold);
	font-size: 24px;
	line-height: 28px;
	color: var(--main-color);
}
.services-catalog__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.services-catalog__links a {
    min-height: 70px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: #fff;
}
.services-catalog__links a:hover {
    border-color: var(--red);
    color: var(--red);
}
.services-catalog__links small {
    color: var(--red);
    white-space: nowrap;
}

@media (max-width: 800px) {
    .services-home__grid {
            grid-template-columns: 1fr 1fr;
        
    }
    .service-card,
        .service-card--row-2,
        .service-card--row-3 {
            grid-column: span 1;
            min-height: 330px;
        
    }
    .service-page__hero-grid {
            grid-template-columns: 1fr;
        
    }
    .service-page__hero img {
            height: 380px;
        
    }
    .services-catalog__links {
            grid-template-columns: 1fr 1fr;
        
    }
}

@media (max-width: 520px) {
    .services-home__grid {
            grid-template-columns: 1fr;
        
    }
    .service-card,
        .service-card--row-2,
        .service-card--row-3 {
            min-height: 340px;
        
    }
    .service-card__content {
            padding: 24px;
        
    }
    .services-catalog__links {
            grid-template-columns: 1fr;
        
    }
}

.one-color-uslugi {
	border: 1px solid #B6BBC1;
	padding: 12px 20px;
	border-radius: 12px;
	width: 126px;
	height: 64px;
}
.one-color-uslugi-name {
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
}
.colors-uslugi {
	display: flex;
	gap: 20px;
	margin-bottom: 64px;
}
.custom-steps {
    counter-reset: step;
    margin: 0;
    padding: 0;
    list-style: none;
	margin-top: 20px;
}
.custom-steps li {
    counter-increment: step;
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    line-height: 1.8;
	font-size: 14px;
    gap: 12px;
    
}
.custom-steps li::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 4px;
    border-radius: 20px;
    background: #f5f5f5;
    color: #f53c15;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    flex-shrink: 0;
}
.custom-steps li > * {
    margin: 0;
}
.natyazhnye-potolki {
    background: #fff;
}
.natyazhnye-potolki__heading {
    margin: 20px 0 40px;
}
.natyazhnye-potolki__title {
    margin: 0;
    font-weight: var(--font-weight-semibold);
    font-size: 32px;
    line-height: 40px;
    color: var(--main-color);
}
.natyazhnye-potolki__group {
    margin-bottom: 80px;
}
.natyazhnye-potolki__group:last-child {
    margin-bottom: 0;
}
.natyazhnye-potolki__group-title {
    margin: 0 0 32px;
    font-weight: var(--font-weight-semibold);
    font-size: 24px;
    line-height: 28px;
    color: var(--main-color);
}
.natyazhnye-potolki__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
	margin-bottom: 80px;
}
.natyazhnye-potolki__card {
    position: relative;
    min-width: 0;
    min-height: 400px;
    overflow: hidden;
    border-radius: 7px;
    background: #4b4d50;
    color: #fff;
    grid-column: span 2;
    cursor: pointer;
}
.natyazhnye-potolki__card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.natyazhnye-potolki__card:hover .natyazhnye-potolki__card-image {
    transform: scale(1.035);
}
.natyazhnye-potolki__card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    opacity: 1;
    visibility: visible;
    transition: background-color .3s ease;
}
.natyazhnye-potolki__card:hover .natyazhnye-potolki__card-overlay {
    background: rgba(0, 0, 0, .75);
}
.natyazhnye-potolki__card-content {
    position: absolute;
    inset: 0;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 62%;
}
.natyazhnye-potolki__card-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.natyazhnye-potolki__card-title {
    margin: 0;
    font-weight: 800;
    font-size: 28px;
    line-height: 32px;
    color: #fff;
}
.natyazhnye-potolki__card-advantages {
    display: flex;
    width: fit-content;
    padding: 4px 20px;
    border-radius: 60px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    background: #ffffff33;
    backdrop-filter: blur(8px);
}
.natyazhnye-potolki__card-footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.natyazhnye-potolki__card-price {
    font-weight: 600;
    font-size: 24px;
    line-height: 31px;
    color: #fff;
}
.natyazhnye-potolki__card-price-value,
.natyazhnye-potolki__card-price-unit {
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
}
.natyazhnye-potolki__card-link {
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
    background: rgba(245, 60, 21, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}
.natyazhnye-potolki__card:hover .natyazhnye-potolki__card-link {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .natyazhnye-potolki__grid {
            grid-template-columns: repeat(4, 1fr);
        
    }
    .natyazhnye-potolki__card {
            grid-column: span 2;
        
    }
}

@media (max-width: 768px) {
    .natyazhnye-potolki__heading {
            margin: 20px 0 32px;
        
    }
    .natyazhnye-potolki__title {
            font-size: 28px;
            line-height: 34px;
        
    }
    .natyazhnye-potolki__group {
            margin-bottom: 56px;
        
    }
    .natyazhnye-potolki__group-title {
            margin-bottom: 24px;
            font-size: 22px;
            line-height: 26px;
        
    }
    .natyazhnye-potolki__grid {
            grid-template-columns: 1fr;
            gap: 20px;
        
    }
    .natyazhnye-potolki__card {
            grid-column: span 1;
            min-height: 320px;
        
    }
    .natyazhnye-potolki__card-content {
            padding: 24px;
        
    }
    .natyazhnye-potolki__card-title {
            font-size: 22px;
            line-height: 26px;
        
    }
    .natyazhnye-potolki__card-advantages {
            font-size: 14px;
            line-height: 18px;
        
    }
    .natyazhnye-potolki__card-footer {
            flex-direction: column;
            align-items: flex-start;
        
    }
    .natyazhnye-potolki__card-link {
            opacity: 1;
            visibility: visible;
            transform: none;
        
    }
}

.services-home .service-card__overlay {
    background: rgba(0, 0, 0, 0.6);
    opacity: 1;
    visibility: visible;
    transition: background-color 0.3s ease;
}
.services-home .service-card:hover .service-card__overlay {
    background: rgba(0, 0, 0, 0.75);
}

.service-order-modal__honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
.service-order-modal__status {
    min-height: 20px;
    color: var(--main-color);
    font-family: var(--font-main);
    font-size: 14px;
    line-height: 20px;
}
.service-order-modal__status:empty {
    min-height: 0;
}
.service-order-modal__status.is-success {
    color: #26834a;
}
.service-order-modal__status.is-error {
    color: var(--red);
}

@media (max-width: 600px) {
    .services-home {
            padding: 40px 0;
            background: var(--white);
        
    }
    .services-home > .container {
            width: calc(100% - 32px);
            max-width: none;
            margin: 0 auto;
        
    }
    .services-home__grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 16px;
            width: 100%;
        
    }
    .services-home .service-card,
        .services-home .service-card--row-2,
        .services-home .service-card--row-3 {
            grid-column: 1;
            width: 100%;
            height: 240px;
            min-height: 240px;
            border-radius: 12px;
        
    }
    .services-home .service-card img,
        .services-home .service-card:hover img {
            transform: none;
        
    }
    .services-home .service-card__overlay,
        .services-home .service-card:hover .service-card__overlay {
            opacity: 1;
            visibility: visible;
            background:
                linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                linear-gradient(340.19deg, rgba(40, 40, 40, 0) 33.43%, rgba(40, 40, 40, 0.6) 93.26%);
        
    }
    .services-home .service-card__content {
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 100%;
            min-height: 0;
            padding: 28px 16px 16px;
        
    }
    .services-home .first-section-card {
            gap: 16px;
            width: 100%;
        
    }
    .services-home .service-card h3 {
            width: 100%;
            margin: 0;
            color: var(--white);
            font-family: var(--font-main);
            font-size: 20px;
            font-weight: var(--font-weight-extrabold);
            line-height: 24px;
        
    }
    .services-home .service-card--advantages {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: fit-content;
            min-height: 24px;
            padding: 2px 12px;
            border-radius: 60px;
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: var(--font-weight-regular);
            line-height: 20px;
            backdrop-filter: blur(4px);
        
    }
    .services-home .service-card__hover-text {
            display: none !important;
        
    }
    .services-home .service-card__footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 6px;
            width: 100%;
            height: 35px;
            margin: 0;
        
    }
    .services-home .service-card__price {
            display: inline-flex;
            align-items: flex-end;
            gap: 7px;
            color: var(--white);
            font-family: var(--font-main);
            font-size: 16px;
            font-weight: var(--font-weight-semibold);
            line-height: 22px;
            white-space: nowrap;
        
    }
    .services-home .service-card__price--second,
        .services-home .service-card__price--rouble {
            font-size: 28px;
            font-weight: var(--font-weight-bold);
            line-height: 32px;
        
    }
    .services-home .service-card__footer a,
        .services-home .service-card:hover .service-card__footer a,
        .services-home .service-card__order,
        .services-home .service-card:hover .service-card__order {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 111px;
            width: 111px;
            height: 35px;
            padding: 8px 20px;
            border-radius: 8px;
            background: var(--red);
            color: var(--white);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: var(--font-weight-semibold);
            line-height: 19px;
            text-transform: uppercase;
            opacity: 1;
            visibility: visible;
            transform: none;
        
    }
}

.natyazhnye-potolki__heading {
    margin: 20px 0;
}
.service-page > .service-page__body + .service-page__calculator,
.service-page > .service-page__calculator + .service-page__body,
.service-page > .service-page__calculator + .service-page__colors,
.service-page > .service-page__body + .service-page__colors {
    margin-top: var(--inner-page-content-gap);
}
.service-page__colors .colors-uslugi:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .service-page > .service-page__body + .service-page__calculator,
        .service-page > .service-page__calculator + .service-page__body,
        .service-page > .service-page__calculator + .service-page__colors,
        .service-page > .service-page__body + .service-page__colors {
            margin-top: var(--inner-page-content-gap-mobile);
        
    }
}

.services-home .service-card {
    position: relative;
}
.services-home .service-card__link {
    position: absolute;
    inset: 0;
    z-index: 4;
    border-radius: inherit;
}
.services-home .service-card__content {
    z-index: 5;
    pointer-events: none;
}
.services-home .service-card__order {
    position: relative;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    padding: 12px 20px;
    border: 0;
    border-radius: 12px;
    background: var(--red);
    color: var(--white);
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    line-height: 1;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.services-home .service-card:hover .service-card__order,
.services-home .service-card:focus-within .service-card__order {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.service-order-modal[hidden] {
    display: none;
}
.service-order-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 24px;
    pointer-events: none;
}
.service-order-modal__backdrop {
    display: none;
}
.service-order-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 500px);
    max-height: calc(100dvh - 48px);
    overflow-y: auto;
    border-radius: 20px;
    background: var(--white);
    pointer-events: auto;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.service-order-modal.is-open .service-order-modal__dialog {
    opacity: 1;
}
.service-order-modal.is-open .service-order-modal__dialog {
    transform: translateY(0);
}
.service-order-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    color: var(--main-color);
    font-family: var(--font-main);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 600px) {
    .services-home .service-card__order,
        .services-home .service-card:hover .service-card__order,
        .services-home .service-card:focus-within .service-card__order {
            opacity: 1;
            visibility: visible;
            transform: none;
        
    }
    .service-order-modal {
            padding: 16px;
        
    }
    .service-order-modal__dialog {
            max-height: calc(100dvh - 32px);
            border-radius: 12px;
        
    }
    .service-order-modal__close {
            top: 8px;
            right: 8px;
            width: 32px;
            height: 32px;
            font-size: 26px;
        
    }
}

@media (min-width: 601px) and (max-width: 800px) {
    .services-home__grid {
            grid-template-columns: minmax(0, 1fr);
        
    }
    .services-home .service-card,
        .services-home .service-card--row-2,
        .services-home .service-card--row-3 {
            grid-column: 1 / -1;
            width: 100%;
            min-width: 0;
            min-height: 360px;
        
    }
}

@media (min-width: 801px) and (max-width: 1350px) {
    .services-home .service-card__content {
            padding: clamp(20px, 2.37vw, 32px);
        
    }
    .services-home .first-section-card {
            gap: clamp(10px, 1.18vw, 16px);
        
    }
    .services-home .service-card h3 {
            font-size: clamp(20px, 2.07vw, 28px);
            line-height: clamp(24px, 2.37vw, 32px);
        
    }
    .services-home .service-card--advantages {
            padding: clamp(2px, 0.3vw, 4px) clamp(10px, 1.48vw, 20px);
            font-size: clamp(12px, 1.18vw, 16px);
            line-height: clamp(15px, 1.48vw, 20px);
        
    }
    .services-home .service-card__hover-text {
            font-size: clamp(10px, 1.18vw, 16px);
            line-height: clamp(15px, 1.48vw, 20px);
        
    }
    .services-home .service-card__footer {
            gap: clamp(6px, 1vw, 15px);
            margin-top: clamp(12px, 1.48vw, 20px);
        
    }
    .services-home .service-card__price {
            gap: clamp(4px, 0.52vw, 7px);
            font-size: clamp(16px, 1.78vw, 24px);
            line-height: clamp(22px, 2.3vw, 31px);
            white-space: nowrap;
        
    }
    .services-home .service-card__price--second,
        .services-home .service-card__price--rouble {
            font-size: clamp(26px, 2.67vw, 36px);
            line-height: clamp(30px, 2.96vw, 40px);
        
    }
    .services-home .service-card__footer strong {
            font-size: clamp(12px, 1.18vw, 16px);
        
    }
    .services-home .service-card__footer a,
        .services-home .service-card__order {
            flex-shrink: 0;
            padding: clamp(8px, 0.89vw, 12px) clamp(10px, 1.48vw, 20px);
            font-size: clamp(10px, 1.04vw, 14px);
            border-radius: clamp(8px, 0.89vw, 12px);
        
    }
}

/* ceiling-benefits */

.ceiling-benefits {
    position: relative;
    display: flex;
    align-items: stretch;
    margin: 0 auto;
    overflow: hidden;
    background-color: #F1F1F1;
    background-image: url('https://valenti.u1546027.isp.regruhosting.ru/local/templates/valenti/assets/images/advantages-main.jpg');
    background-size: auto 100%;
    background-position: right center;
    background-repeat: no-repeat;
}
.ceiling-benefits::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        #F1F1F1 0%,
        #F1F1F1 48%,
        rgba(241, 241, 241, 0.98) 49%,
        rgba(241, 241, 241, 0.92) 52%,
        rgba(241, 241, 241, 0.82) 58%,
        rgba(241, 241, 241, 0.65) 60%,
        
        rgba(241, 241, 241, 0) 68%
    )
    z-index: 0;
}
.ceiling-benefits__content {
    position: relative;
    z-index: 1;
}
.ceiling-benefits__content {
    width: 70%;
    padding: 64px 0px 64px 240px;
    box-sizing: border-box;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.ceiling-benefits__info-title {
	font-weight: 800;
	font-size: 16px;
	line-height: 20px;
	color: #3E3D59;
}
.ceiling-benefits__info-about {
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	color: #3E3D59;
}
.ceiling-benefits__content h2 {
	font-weight: 600;
	font-size: 32px;
	line-height: 40px;
	color: #3E3D59;
	margin: 0 0 32px 0;
}
.ceiling-benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 80px;
    row-gap: 20px;
	margin-bottom: 41px;
}
.ceiling-benefits__item {
    display: flex;
    align-items: center;
    gap: 20px;
	max-width: 19.8vw;
}
.ceiling-benefits__info {
	gap: 4px;
    display: flex;
    flex-direction: column;
}
.ceiling-benefits__icon {
    flex: 0 0 59px;
    width: 59px;
    height: 59px;
   /* border: 2px solid #ff321f;*/
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    line-height: 1;
    box-sizing: border-box;
}
.ceiling-benefits__btn {
    display: inline-flex;
	padding: 12px 40px;
	border-radius: 12px;
	background: #F53C15;
	color: #FFFFFF;
	font-weight: 600;
	font-size: 14px;
	line-height: 100%;
	text-transform: uppercase;
}
.ceiling-benefits__image {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.ceiling-benefits__image::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        #F1F1F1 0%,
        rgba(241, 241, 241, 0.6) 30%,
        rgba(241, 241, 241, 0) 60%
    );
}
.ceiling-benefits__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .ceiling-benefits__content {
            padding: 50px 35px;
        
    }
    .ceiling-benefits__grid {
            column-gap: 35px;
        
    }
}

@media (max-width: 768px) {
    .ceiling-benefits {
            flex-direction: column;
        
    }
    .ceiling-benefits__content,
        .ceiling-benefits__image {
            width: 100%;
        
    }
    .ceiling-benefits__content {
            padding: 35px 20px;
        
    }
    .ceiling-benefits__content h2 {
            font-size: 22px;
        
    }
    .ceiling-benefits__grid {
            grid-template-columns: 1fr;
            row-gap: 18px;
        
    }
    .ceiling-benefits__image {
            height: 260px;
        
    }
}

.welcome-card__wrap {
  position: relative;
  width: 1440px;
  max-width: calc(100% - 80px);
  margin: 0 auto;
  padding-top: 144px;
}
.welcome-card__inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 398px;
  padding: 40px 40px 40px 540px;
  border-radius: 20px;
  background: #f1f1f1;
}
.welcome-card__content {
  position: relative;
  z-index: 4;
  width: 860px;
  margin-left: auto;
}
.welcome-card__media {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 540px;
  height: 398px;
  z-index: 2;
}
.welcome-card__media-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}
.welcome-card__media-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(270deg, #f1f1f1 0%, rgba(241, 241, 241, 0) 34.44%),
    url("/local/templates/valenti/assets/images/about-company-bg.png") left bottom / cover no-repeat;
}
.welcome-card__photo {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 478px;
  width: auto;
  max-width: none;
  z-index: 3;
}
.welcome-card__title {
  margin: 0 0 20px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: #3e3d59;
}
.welcome-card__text p {
  margin: 0 0 16px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #3e3d59;
}
.welcome-card__text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
    .welcome-card__inner {
        padding-left: 420px;
      
    }
    .welcome-card__media {
        width: 380px;
        height: 380px;
      
    }
    .welcome-card__content {
        width: calc(100% - 20px);
      
    }
}

@media (max-width: 900px) {
    .welcome-card__inner {
        display: block;
        padding: 32px 24px;
      
    }
    .welcome-card__media {
        position: relative;
        width: 100%;
        height: 320px;
        margin-bottom: 24px;
      
    }
    .welcome-card__media-bg {
        border-radius: 16px;
      
    }
    .welcome-card__photo {
        left: 50%;
        transform: translateX(-50%);
        height: 360px;
      
    }
    .welcome-card__content {
        width: 100%;
      
    }
    .welcome-card__title {
        font-size: 26px;
        line-height: 34px;
      
    }
}

@media (max-width: 640px) {
    .welcome-card {
        padding-top: 48px;
      
    }
    .welcome-card__wrap {
        max-width: calc(100% - 32px);
      
    }
    .welcome-card__inner {
        padding: 20px;
        border-radius: 16px;
      
    }
    .welcome-card__media {
        height: 240px;
        margin-bottom: 20px;
      
    }
    .welcome-card__media-bg {
        border-radius: 12px;
      
    }
    .welcome-card__photo {
        height: 280px;
      
    }
    .welcome-card__title {
        margin-bottom: 16px;
        font-size: 22px;
        line-height: 30px;
      
    }
}

.about-company {
  margin-top: 80px;
  background: #fff;
}
.about-company__container {
  width: 1440px;
  max-width: calc(100% - 80px);
  margin: 0 auto;
}
.about-company__title {
  margin: 0 0 32px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: #3e3d59;
}
.about-company__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1440px;
}
.about-company__text p {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #3e3d59;
}

@media (max-width: 1024px) {
    .about-company {
        padding-top: 64px;
      
    }
    .about-company__container {
        max-width: calc(100% - 48px);
      
    }
    .about-company__title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 28px;
      
    }
}

@media (max-width: 768px) {
    .about-company {
        padding-top: 48px;
      
    }
    .about-company__container {
        max-width: calc(100% - 32px);
      
    }
    .about-company__title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 24px;
      
    }
    .about-company__text {
        gap: 16px;
      
    }
    .about-company__text p {
        font-size: 14px;
        line-height: 20px;
      
    }
}

.question-call {
  padding: 80px 0;
  background: #fff;
}
.question-call__inner {
  position: relative;
  width: 1440px;
  max-width: calc(100% - 80px);
  min-height: 294px;
  margin: 0 auto;
  padding: 38px 64px 38px 590px;
  border-radius: 24px;
  background: #F1F1F1;
  overflow: visible;
}
.question-call__media {
  position: absolute;
  left: 0;
  top: 0;
  width: 560px;
  height: 100%;
  z-index: 1;
}
.question-call__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 520px;
  height: 100%;
  border-radius: 24px 0 0 24px;
  background: url("/local/templates/valenti/assets/images/question-bg.png") left center / cover no-repeat;
}
.question-call__bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 180px;
  height: 100%;
  background: linear-gradient(90deg, rgba(241,241,241,0) 0%, rgba(241,241,241,0.75) 45%, #F1F1F1 100%);
}
.question-call__person {
  position: absolute;
  bottom: 0;
  width: 720px;
  height: 443px;
  z-index: 2;
}
.question-call__person img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: auto;
  height: 100%;
  max-width: none;
  display: block;
}
.question-call__content {
  position: relative;
  z-index: 3;
  max-width: 620px;
}
.question-call__title {
  margin: 0 0 12px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: #3E3D59;
}
.question-call__text {
  margin: 0 0 20px;
  max-width: 560px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #3E3D59;
}
.question-call__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.question-call__row {
  display: flex;
  gap: 16px;
}
.question-call__input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #B6BBC1;
  border-radius: 24px;
  background: #fff;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #3E3D59;
}
.question-call__agree {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 620px;
}
.question-call__agree input {
  width: 20px;
  height: 20px;
  margin: 0;
  flex: 0 0 20px;
}
.question-call__agree span {
  font-family: "Open Sans", sans-serif;
  font-style: italic;
  font-size: 13px;
  line-height: 18px;
  color: #3E3D59;
}
.question-call__button {
  width: fit-content;
  min-width: 176px;
  height: 48px;
  padding: 0 32px;
  border: 0;
  border-radius: 12px;
  background: #F53C15;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 1200px) {
    .question-call__inner {
        max-width: calc(100% - 48px);
        padding: 36px 32px 36px 440px;
      
    }
    .question-call__media {
        width: 400px;
      
    }
    .question-call__bg {
        width: 380px;
      
    }
    .question-call__person {
        left: 70px;
        width: 240px;
        height: 320px;
      
    }
}

@media (max-width: 900px) {
    .question-call__inner {
        padding: 32px 24px;
      
    }
    .question-call__media {
        display: none;
      
    }
}

@media (max-width: 768px) {
    .question-call {
        padding: 48px 0;
      
    }
    .question-call__inner {
        max-width: calc(100% - 32px);
        border-radius: 20px;
      
    }
    .question-call__title {
        font-size: 24px;
        line-height: 32px;
      
    }
    .question-call__row {
        flex-direction: column;
      
    }
    .question-call__button {
        width: 100%;
      
    }
}

.company-block {
  display: grid;
  grid-template-columns: 480px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin: 0 auto;
}
.company-block__media {
  width: 100%;
  aspect-ratio: 480 / 319;
  overflow: hidden;
  border-radius: 12px;
}
.company-block__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company-block__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 12px 0 40px;
  min-width: 0;
}
.company-block__intro,
.company-block__advantages {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.company-block p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #3E3D59;
}
.about-us__title {
	font-weight: 600;
	font-size: 32px;
	line-height: 40px;
	color: #3E3D59;
	margin: 20px 0 40px 0;
}
.company-advantages-title {
	font-weight: 600;
	font-size: 24px;
	line-height: 28px;
	color: #3E3D59;
	margin: 0;
}

@media (max-width: 960px) {
    .company-block {
        grid-template-columns: 1fr;
      
    }
    .company-block__media {
        max-width: 480px;
      
    }
    .company-block__content {
        padding-bottom: 0;
      
    }
}

.valenti-service-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 40px;
  align-items: start;
  width: 100%;
  max-width: 1440px;
  color: #3e3d59;
  margin-bottom: 64px;
}
.valenti-service-block__content {
  min-width: 0;
  padding-top: 8px;
}
.valenti-service-block__list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.valenti-service-block__list li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 18px;
  font-weight: 400;
	font-size: 14px;
	line-height: 18px;
}
.valenti-service-block__list li:last-child {
  margin-bottom: 0;
}
.valenti-service-block__list li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F53C15;
}
.valenti-service-block__cta h3 {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  color: #3e3d59;
}
.valenti-service-block__cta p {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 400;
  color: #3e3d59;
}
.valenti-service-block__cta span {
  color: #ff5a36;
}
.valenti-service-block__media {
  width: 300px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.valenti-service-block__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 900px) {
    .company-advantages-title {
        font-size: 20px;
    }
    .valenti-service-block {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
      
    }
    .valenti-service-block__content {
        order: 2;
    }
    .valenti-service-block__media {
        width: 100%;
        max-width: 320px;
        margin-right: auto;
        margin-left: auto;
        order: 1;
      
    }
}

@media (max-width: 600px) {
    .ceiling-benefits {
            --ceiling-benefits-mobile-bg: #f9f9f9;
            display: block;
            width: 100%;
            min-height: 624px;
            margin: 0;
            overflow: hidden;
            background-color: var(--ceiling-benefits-mobile-bg);
            background-image: none;
        
    }
    .ceiling-benefits::after {
            display: none;
        
    }
    .ceiling-benefits__content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 20px;
            width: 100%;
            min-height: 624px;
            padding: 28px 16px;
            background: transparent;
        
    }
    .ceiling-benefits__content h2 {
            width: 100%;
            margin: 0;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 24px;
            font-weight: var(--font-weight-semibold);
            line-height: 32px;
        
    }
    .ceiling-benefits__grid {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
            width: 100%;
            margin: 0;
        
    }
    .ceiling-benefits__item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            width: 100%;
            max-width: none;
            min-height: 44px;
        
    }
    .ceiling-benefits__item:nth-child(1) {
            order: 1;
        
    }
    .ceiling-benefits__item:nth-child(3) {
            order: 2;
        
    }
    .ceiling-benefits__item:nth-child(5) {
            order: 3;
        
    }
    .ceiling-benefits__item:nth-child(2) {
            order: 4;
        
    }
    .ceiling-benefits__item:nth-child(4) {
            order: 5;
        
    }
    .ceiling-benefits__item:nth-child(6) {
            order: 6;
        
    }
    .ceiling-benefits__icon {
            display: flex;
            flex: 0 0 44px;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
        
    }
    .ceiling-benefits__icon img {
            display: block;
            width: 44px;
            max-width: 44px;
            height: 44px;
            object-fit: contain;
        
    }
    .ceiling-benefits__info {
            display: flex;
            flex: 1 1 auto;
            flex-direction: column;
            justify-content: center;
            gap: 4px;
            width: calc(100% - 56px);
            min-height: 44px;
        
    }
    .ceiling-benefits__info-title {
            width: 100%;
            margin: 0;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 16px;
            font-weight: var(--font-weight-extrabold);
            line-height: 20px;
        
    }
    .ceiling-benefits__info-about {
            width: 100%;
            margin: 0;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: var(--font-weight-regular);
            line-height: 18px;
        
    }
    .ceiling-benefits__btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 36px;
            padding: 10px 16px;
            border-radius: 8px;
            background: var(--red);
            color: var(--white);
            font-family: var(--font-main);
            font-size: 12px;
            font-weight: var(--font-weight-semibold);
            line-height: 16px;
            text-transform: uppercase;
        
    }
    .question-call {
            --question-call-mobile-bg: #f1f1f1;
            box-sizing: border-box;
            width: 100%;
            margin: 0;
            padding: 100px 16px 0;
            overflow: hidden;
            background: var(--white);
        
    }
    .question-call__inner {
            position: relative;
            box-sizing: border-box;
            width: 100%;
            max-width: none;
            min-height: 732px;
            margin: 0;
            padding: calc(79.3003% + 28px) 16px 28px;
            overflow: visible;
            border-radius: 12px;
            background: var(--question-call-mobile-bg);
        
    }
    .question-call__media {
            position: absolute;
            z-index: 1;
            top: 0;
            left: 0;
            display: block;
            width: 100%;
            height: auto;
            aspect-ratio: 343 / 272;
            overflow: visible;
            pointer-events: none;
        
    }
    .question-call__bg {
            display: none;
        
    }
    .question-call__person {
            position: absolute;
            z-index: 2;
            top: -26.1029%;
            bottom: auto;
            left: 0;
            width: 100%;
            height: auto;
            aspect-ratio: 1;
        
    }
    .question-call__person img {
            content: url('../images/question-call-mobile.png');
            position: static;
            display: block;
            width: 100%;
            max-width: 100%;
            height: 100%;
            object-fit: contain;
        
    }
    .question-call__content {
            position: relative;
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
            width: 100%;
            max-width: none;
        
    }
    .question-call__title {
            width: 100%;
            margin: 0;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 24px;
            font-weight: var(--font-weight-semibold);
            line-height: 32px;
        
    }
    .question-call__text {
            width: 100%;
            max-width: none;
            margin: 0;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: var(--font-weight-regular);
            line-height: 20px;
        
    }
    .question-call__form {
            display: flex;
            flex-direction: column;
            gap: 0;
            width: 100%;
        
    }
    .question-call__row {
            display: flex;
            flex-direction: column;
            gap: 12px;
            width: 100%;
            height: 84px;
            margin-top: 20px;
        
    }
    .question-call__input {
            box-sizing: border-box;
            width: 100%;
            height: 36px;
            padding: 8px 20px;
            border: 1px solid var(--calculator-control-border, #b6bbc1);
            border-radius: 20px;
            background: var(--white);
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: var(--font-weight-regular);
            line-height: 20px;
        
    }
    .question-call__agree {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            width: 100%;
            min-height: 64px;
            margin-top: 20px;
        
    }
    .question-call__agree input {
            flex: 0 0 20px;
            width: 20px;
            height: 20px;
            margin: 0;
            border-radius: 2px;
        
    }
    .question-call__agree span {
            flex: 1 1 auto;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 12px;
            font-weight: var(--font-weight-regular);
            font-style: italic;
            line-height: 16px;
        
    }
    .question-call__button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            min-width: 0;
            height: 36px;
            margin-top: 32px;
            padding: 10px 16px;
            border-radius: 8px;
            background: var(--red);
            color: var(--white);
            font-family: var(--font-main);
            font-size: 12px;
            font-weight: var(--font-weight-semibold);
            line-height: 16px;
            text-transform: uppercase;
        
    }
    .welcome-card {
            --welcome-card-mobile-bg: #f1f1f1;
            width: 100%;
            margin: 0;
            padding: 0;
        
    }
    .welcome-card__wrap {
            box-sizing: border-box;
            width: calc(100% - 32px);
            max-width: none;
            min-height: 748px;
            margin: 0 auto;
            padding-top: 120px;
        
    }
    .welcome-card__inner {
            position: relative;
            box-sizing: border-box;
            display: block;
            width: 100%;
            min-height: 628px;
            padding: calc(79.3003% + 28px) 16px 28px;
            overflow: visible;
            border-radius: 12px;
            background: var(--welcome-card-mobile-bg);
        
    }
    .welcome-card__media {
            position: absolute;
            z-index: 2;
            top: 0;
            bottom: auto;
            left: 0;
            width: 100%;
            height: auto;
            aspect-ratio: 343 / 272;
            margin: 0;
            overflow: visible;
            pointer-events: none;
        
    }
    .welcome-card__media-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            border-radius: 12px 12px 0 0;
        
    }
    .welcome-card__media-bg::before {
            background: url('../images/about-company-bg.png') center / cover no-repeat;
        
    }
    .welcome-card__photo {
            position: absolute;
            z-index: 3;
            top: -26.1029%;
            bottom: auto;
            left: 0;
            display: block;
            width: 100%;
            max-width: 100%;
            height: auto;
            aspect-ratio: 1;
            object-fit: cover;
            object-position: center top;
            transform: none;
        
    }
    .welcome-card__content {
            position: relative;
            z-index: 4;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
            width: 100%;
            margin: 0;
        
    }
    .welcome-card__title {
            width: 100%;
            margin: 0;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 20px;
            font-weight: var(--font-weight-semibold);
            line-height: 24px;
        
    }
    .welcome-card__text {
            display: contents;
        
    }
    .welcome-card__text p {
            width: 100%;
            margin: 0;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: var(--font-weight-regular);
            line-height: 20px;
        
    }
    .welcome-card__text p:last-child {
            margin: 0;
            font-style: italic;
        
    }
    .about-company {
            margin: 0;
            padding: 40px 0 0;
            background: var(--white);
            color: var(--main-color);
        
    }
    .about-company__container {
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 100%;
            max-width: none;
            margin: 0;
            padding: 0 16px;
        
    }
    .about-company__title {
            width: 100%;
            margin: 0;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 24px;
            font-weight: var(--font-weight-semibold);
            line-height: 32px;
        
    }
    .about-company__text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
            width: 100%;
            max-width: none;
        
    }
    .about-company__text p {
            width: 100%;
            margin: 0;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: var(--font-weight-regular);
            line-height: 18px;
        
    }
}

.valenti-service-block:has(+ .question-call) {
    margin-bottom: 0;
}

@media (min-width: 601px) and (max-width: 1600px) {
    .ceiling-benefits {
            justify-content: center;
            background-image: none;
        
    }
    .ceiling-benefits::after,
        .ceiling-benefits__image {
            display: none;
        
    }
    .ceiling-benefits__content {
            align-items: center;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 64px clamp(32px, 5vw, 80px);
        
    }
    .ceiling-benefits__content h2 {
            width: 100%;
            text-align: center;
        
    }
    .ceiling-benefits__grid {
            width: 100%;
            max-width: 1040px;
            margin-right: auto;
            margin-left: auto;
            column-gap: clamp(32px, 5vw, 80px);
        
    }
    .ceiling-benefits__item {
            width: 100%;
            max-width: none;
        
    }
}

/* reviews */

.reviews {
  padding: 80px 0;
  background: #fff;
}
.reviews__container {
  width: 1440px;
  max-width: calc(100% - 80px);
  margin: 0 auto;
}
.reviews__title {
  margin: 0 0 32px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: #3E3D59;
}
.reviews__slider .owl-stage-outer {
  overflow: visible;
}
.reviews__slider .owl-stage {
  display: flex;
  align-items: stretch;
}
.reviews__slider .owl-item {
  display: flex;
}
.reviews__card:hover {
  background: #FFFFFF !important;
  box-shadow: 0 20px 20px rgba(2, 18, 48, 0.08);
  cursor: pointer;
  
}
.reviews__card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviews__avatar {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border: 1px solid #F53C15;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviews__name {
  margin: 0;
  font-weight: 800;
  font-size: 16px;
  line-height: 20px;
  color: #3E3D59;
}
.reviews__text,
.reviews__text p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #3E3D59;
}
.reviews__slider .owl-dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  z-index: 1000;
  position: relative;
}
.reviews__slider .owl-dot {
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviews__slider .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 0;
  border-radius: 50%;
  background: #D9D9D9;
  transition: background .2s ease, transform .2s ease;
}
.reviews__slider .owl-dot.active span {
  background: #F53C15;
}

@media (max-width: 1200px) {
    .reviews__container {
        max-width: calc(100% - 48px);
      
    }
}

@media (max-width: 768px) {
    .reviews {
        padding: 48px 0;
      
    }
    .reviews__container {
        max-width: calc(100% - 32px);
      
    }
    .reviews__title {
        margin-bottom: 24px;
        font-size: 24px;
        line-height: 32px;
      
    }
    .reviews__card {
        padding: 20px;
        min-height: auto;
      
    }
}

.reviews__slider.owl-carousel .owl-stage {
  display: flex;
}
.reviews__slider.owl-carousel .owl-item {
  display: flex;
  height: auto;
}
.reviews__slider.owl-carousel .reviews__card {
  width: 100%;
  min-height: 192px;
  padding: 20px 32px;
  border-radius: 20px;
  background: #F6F6F6;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .3s ease, box-shadow .3s ease;
}
.reviews__slider.owl-carousel .owl-item.active.center .reviews__card {
  background: #FFFFFF;
  box-shadow: 0 20px 20px rgba(2, 18, 48, 0.08);
}
.reviews__slider .owl-stage-outer {
  overflow: hidden;
  padding: 20px 24px 40px;
  margin: -20px -24px -40px;
}

@media (max-width: 600px) {
    .reviews {
            --reviews-card-bg: #F6F6F6;
            --reviews-avatar-bg: #F1F1F1;
            padding: 40px 0;
            background: var(--white);
        
    }
    .reviews__container {
            width: calc(100% - 32px);
            max-width: none;
            margin: 0 auto;
        
    }
    .reviews__title {
            margin: 0 0 20px;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 24px;
            font-weight: var(--font-weight-semibold);
            line-height: 32px;
        
    }
    .reviews__slider {
            width: 100%;
        
    }
    .reviews__slider .owl-stage-outer {
            overflow: hidden;
            padding: 0;
            margin: 0;
        
    }
    .reviews__slider.owl-carousel .reviews__card,
        .reviews__slider.owl-carousel .owl-item.active.center .reviews__card,
        .reviews__card:hover {
            box-sizing: border-box;
            width: 100%;
            height: 194px;
            min-height: 194px;
            padding: 12px;
            gap: 12px;
            overflow: hidden;
            border-radius: 12px;
            background: var(--reviews-card-bg);
            box-shadow: none;
        
    }
    .reviews__card-head {
            flex: 0 0 32px;
            width: 100%;
            height: 32px;
            gap: 12px;
        
    }
    .reviews__avatar {
            box-sizing: border-box;
            width: 32px;
            height: 32px;
            min-width: 32px;
            overflow: hidden;
            border: 1px solid var(--red);
            border-radius: 50%;
            background: var(--reviews-avatar-bg);
            box-shadow: inset 0 0 0 3px var(--white);
        
    }
    .reviews__avatar img {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            object-fit: cover;
        
    }
    .reviews__avatar svg {
            width: 17px;
            height: 20px;
            opacity: 0.4;
        
    }
    .reviews__name {
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 16px;
            font-weight: var(--font-weight-extrabold);
            line-height: 20px;
        
    }
    .reviews__text {
            display: -webkit-box;
            width: 100%;
            max-height: 126px;
            overflow: hidden;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: var(--font-weight-regular);
            line-height: 18px;
            overflow-wrap: anywhere;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 7;
        
    }
    .reviews__text p {
            color: inherit;
            font: inherit;
            line-height: inherit;
        
    }
    .reviews__slider .owl-dots {
            width: 100%;
            height: 24px;
            margin-top: 12px;
        
    }
    .reviews__slider .owl-dot {
            width: 24px;
            height: 24px;
        
    }
    .reviews__slider .owl-dot span {
            width: 12px;
            height: 12px;
            background: var(--works-slider-dot, #D9D9D9);
        
    }
    .reviews__slider .owl-dot.active span {
            background: var(--red);
        
    }
}

.reviews__avatar {
    box-sizing: border-box;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    min-width: 32px;
    overflow: hidden;
    border: 1px solid var(--red);
    border-radius: 50%;
    background: #f1f1f1;
    box-shadow: inset 0 0 0 3px var(--white);
}
.reviews__avatar img {
    display: block;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
    border-radius: 50%;
    object-fit: cover;
}
.reviews-page__title {
    margin: 20px 0 40px !important;
    color: #3E3D59;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
}

.reviews-page__title + div {
    width: min(100%, 500px) !important;
    max-width: 100%;
}

@media (max-width: 600px) {
    .container:has(> .reviews-page__title) {
        width: calc(100% - 32px);
    }

    .reviews-page__title {
        margin: 20px 0 24px !important;
        font-size: 24px;
        line-height: 32px;
    }

    .reviews-page__title + div {
        height: clamp(620px, 190vw, 760px) !important;
    }
}

@media (max-width: 360px) {
    body:has(.reviews-page__title) .site-footer__bottom-links {
        flex-wrap: wrap;
        justify-content: flex-start;
        row-gap: 6px;
    }
}

/* prices-tabs */

/* --- Original main.css --- */
.prices-tabs {
  padding-bottom: 80px;
}
.prices-tabs__container {
  width: 1440px;
  max-width: calc(100% - 80px);
  margin: 0 auto;
}
.prices-tabs__title {
  margin: 0 0 32px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: #3E3D59;
}
.prices-tabs__title sup {
  font-size: 20px;
  line-height: 1;
}
.prices-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.prices-tabs__tab {
  padding: 12px 24px;
  border: 0;
  border-radius: 8px;
  background: #F1F1F1;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  font-size: 16px;
  line-height: 20px;
  color: #3E3D59;
  cursor: pointer;
}
.prices-tabs__tab.is-active,
.prices-tabs__tab:hover {
  background: #FFFFFF;
  box-shadow: 0 8px 10px rgba(2, 18, 48, 0.08);
}
.prices-tabs__tab.is-active {
  border: 1px solid #F53C15;
  box-shadow: none;
}
.prices-tabs__body {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.prices-tabs__content {
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 8px;
}
.prices-tabs__pane {
  display: none;
}
.prices-tabs__pane.is-active {
  display: block;
}
.prices-tabs__all-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding: 12px 40px;
  border-radius: 12px;
  background: #F53C15;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
}
.prices-tabs__form-card {
  width: 453px;
  flex: 0 0 453px;
  padding: 12px;
  border-radius: 20px;
  background: #FFFFFF;
  box-shadow: 0 40px 40px rgba(2, 18, 48, 0.12);
}
.prices-tabs__form-inner {
    border: 1px solid #F53C15;
    border-radius: 22px;
    padding: 26px 30px;
}
.prices-tabs__form-title {
  margin-bottom: 32px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #3E3D59;
}
.prices-tabs__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.prices-tabs__input {
  width: 100%;
  padding: 8px 20px;
  border: 1px solid #B6BBC1;
  border-radius: 20px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #3E3D59;
  box-sizing: border-box;
}
.prices-tabs__agree {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "Open Sans", sans-serif;
  font-style: italic;
  font-size: 14px;
  line-height: 20px;
  color: #3E3D59;
}
.prices-tabs__agree input {
  margin: 0;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}
.prices-tabs__submit {
  padding: 12px 40px;
  border: 0;
  border-radius: 10px;
  background: #F53C15;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
}
.prices-table {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.prices-table__head,
.prices-table__row {
  display: flex;
  width: 100%;
}
.prices-table__head {
  background: #F1F1F1;
}
.prices-table__row:nth-child(odd) {
  background: rgba(241, 241, 241, 0.5);
}
.prices-table__col {
  padding: 12px 20px;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  color: #3E3D59;
}
.prices-table__head .prices-table__col {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
}
.prices-table__row .prices-table__col {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}
.prices-table__col--name {
  flex: 1 1 auto;
  border-right: 1px solid #DFE2E5;
}
.prices-table__col--unit {
  width: 140px;
  flex: 0 0 140px;
  text-align: center;
  border-right: 1px solid #DFE2E5;
}
.prices-table__col--price {
  width: 180px;
  flex: 0 0 180px;
  text-align: center;
}
.prices-table__note {
  padding: 12px 20px;
  font-family: "Open Sans", sans-serif;
  font-style: italic;
  font-size: 14px;
  line-height: 18px;
  color: #3E3D59;
}

@media (max-width: 1200px) {
    .prices-tabs__container {
        max-width: calc(100% - 48px);
      
    }
    .prices-tabs__body {
        flex-direction: column;
      
    }
    .prices-tabs__form-card {
        width: 100%;
        flex: none;
      
    }
}

@media (max-width: 768px) {
    .prices-tabs__container {
        max-width: calc(100% - 32px);
      
    }
    .prices-tabs__title {
        font-size: 24px;
        line-height: 32px;
      
    }
    .prices-tabs__nav {
        gap: 12px;
        margin-bottom: 24px;
      
    }
    .prices-tabs__tab {
        width: 100%;
        text-align: center;
      
    }
    .prices-tabs__form-inner {
        padding: 24px 20px;
      
    }
    .prices-table__head,
      .prices-table__row {
        flex-wrap: wrap;
      
    }
    .prices-table__col--name,
      .prices-table__col--unit,
      .prices-table__col--price {
        width: 100%;
        flex: none;
        border-right: 0;
        text-align: left;
      
    }
}

.prices-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #FFFFFF;
}
.prices-table th,
.prices-table td {
  padding: 12px 20px;
  font-family: "Open Sans", sans-serif;
  color: #3E3D59;
  vertical-align: middle;
  box-sizing: border-box;
}
.prices-table th {
  background: #F1F1F1;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: left;
}
.prices-table th:nth-child(2),
.prices-table th:nth-child(3),
.prices-table td:nth-child(2),
.prices-table td:nth-child(3) {
  text-align: center;
}
.prices-table th:first-child,
.prices-table td:first-child {
  width: auto;
}
.prices-table th:nth-child(2),
.prices-table td:nth-child(2) {
  width: 140px;
}
.prices-table th:nth-child(3),
.prices-table td:nth-child(3) {
  width: 180px;
}
.prices-table td {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  background: #FFFFFF;
}
.prices-table tbody tr:not(:first-child):nth-child(odd) td {
  background: rgba(241, 241, 241, 0.5);
}
.prices-table td,
.prices-table th {
  border-right: 1px solid #DFE2E5;
}
.prices-table td:last-child,
.prices-table th:last-child {
  border-right: 0;
}
.prices-table tr:last-child td {
  border-bottom: 0;
}
.prices-table__note-row td {
  padding: 12px 20px;
  font-style: italic;
  font-size: 14px;
  line-height: 18px;
  text-align: left;
  background: #FFFFFF;
  border-right: 0;
}
.prices-table tr:first-child th:first-child {
  border-top-left-radius: 10px;
}
.prices-table tr:first-child th:last-child {
  border-top-right-radius: 10px;
}
.prices-table tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
.prices-table tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}
.prices-tabs {
  position: relative;
  padding-bottom: 80px;
  overflow: visible;
      height: 711px;
}
.prices-tabs::before {
  content: "";
  position: absolute;
  left: -131px;
  bottom: -148px;
  width: 1073px;
  height: 741px;
  background: url("/local/templates/valenti/assets/images/prices-bg-bottom.png") left bottom / contain no-repeat;
  transform: rotate(9.88deg);
  z-index: 1;
  pointer-events: none;
  opacity: 1;
}
.prices-tabs__container {
  position: relative;
  z-index: 1;
}
.price-info {
	margin-bottom: 64px;
}
.price-intro {
	margin-bottom: 40px;
}
.text-price__title {
	font-size: 32px;
	line-height: 40px;
	letter-spacing: 0%;
	font-weight: var(--font-weight-semibold);
	color: var(--main-color);
}
.text-price__text {
	font-weight: var(--font-weight-regular);
	color: var(--main-color);
	font-size: 14px;
	line-height: 18px;
	letter-spacing: 0%;
}
.text-price__text + .text-price__text {
	margin-top: 20px;
}
.prices-page__title {
	font-weight: var(--font-weight-semibold);
	color: var(--main-color);
	font-size: 24px;
	line-height: 28px;
	margin: 0 0 24px 0;
}
.prices-section {
	margin-bottom: 64px;
}
.text-price__list {
	font-weight: var(--font-weight-regular);
	color: var(--main-color);
	font-size: 14px;
	line-height: 18px;
	padding-inline-start: 18px;
	margin: 20px 0;
}
.text-price__bold {
font-weight: var(--font-weight-medium);
}
.region-detail__price-tables .table-container {
	margin-bottom: 20px;
}
.text-price__item {
	font-weight: var(--font-weight-regular);
	color: var(--main-color);
	font-size: 14px;
	line-height: 18px;
	
}
.text-price__item::marker {
	width: 6px;
	height: 6px;
	color: var(--red);
}
.text-price__item:not(:last-child) {
	margin-bottom: 12px;
}
.service-page__price-tables h3 {
	font-weight: var(--font-weight-semibold);
    color: var(--main-color);
    font-size: 24px;
    line-height: 28px;
    margin: 0 0 24px 0;
}
.service-page__price-tables .prices-table {
	margin-bottom: 60px;
}
.tablebodytext {
	display: none;
}

.service-order-modal .prices-tabs__submit:disabled {
    opacity: 0.65;
    cursor: wait;
}

@media (max-width: 1200px) {
    .prices-tabs {
            position: relative;
            z-index: 2;
            box-sizing: border-box;
            height: auto;
            min-height: 0;
            padding: 0 0 160px;
            overflow: visible;
        
    }
    .prices-tabs::before {
            z-index: 0;
            bottom: clamp(-190px, -14vw, -100px);
            left: 50%;
            width: clamp(460px, 82vw, 900px);
            height: clamp(318px, 56.6vw, 621px);
            background-position: center bottom;
            background-size: contain;
            transform: translateX(-50%) rotate(7deg);
            transform-origin: center;
        
    }
    .prices-tabs .prices-tabs__container {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
            width: 100%;
            max-width: none;
            margin: 0;
            padding: 0 16px;
        
    }
    .prices-tabs__title {
            width: 100%;
            margin: 0;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 24px;
            font-weight: var(--font-weight-semibold);
            line-height: 32px;
        
    }
    .prices-tabs__title sup {
            font-size: 14px;
            line-height: 1;
        
    }
    .prices-tabs__nav {
            display: flex;
            flex-wrap: nowrap;
            align-items: flex-start;
            gap: 12px;
            width: 100%;
            height: 36px;
            margin: 0;
            overflow-x: auto;
            overflow-y: hidden;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
        
    }
    .prices-tabs__nav::-webkit-scrollbar {
            display: none;
        
    }
    .prices-tabs__tab {
            display: inline-flex;
            flex: 0 0 auto;
            align-items: center;
            justify-content: center;
            width: auto;
            height: 36px;
            padding: 8px 12px;
            border-radius: 8px;
            background: var(--surface);
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: var(--font-weight-extrabold);
            line-height: 20px;
            white-space: nowrap;
        
    }
    .prices-tabs__tab.is-active {
            border: 1px solid var(--red);
            background: var(--white);
        
    }
    .prices-tabs__body {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 20px;
            width: 100%;
        
    }
    .prices-tabs__content {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 100%;
            padding: 8px 0 20px;
        
    }
    .prices-tabs__pane.is-active {
            display: block;
            width: 100%;
        
    }
    .prices-tabs .prices-table {
            display: table;
            width: 100%;
            table-layout: fixed;
            border-collapse: separate;
            border-spacing: 0;
            border-radius: 10px;
            overflow: hidden;
            background: var(--white);
        
    }
    .prices-tabs .prices-table tbody {
            display: table-row-group;
        
    }
    .prices-tabs .prices-table tr {
            display: table-row;
        
    }
    .prices-tabs .prices-table th,
        .prices-tabs .prices-table td {
            display: table-cell;
            box-sizing: border-box;
            height: auto;
            padding: 8px 12px;
            color: var(--main-color);
            font-family: var(--font-main);
            vertical-align: middle;
        
    }
    .prices-tabs .prices-table th {
            height: 56px;
            background: var(--surface);
            font-size: 14px;
            font-weight: var(--font-weight-semibold);
            line-height: 20px;
        
    }
    .prices-tabs .prices-table td {
            font-size: 14px;
            font-weight: var(--font-weight-regular);
            line-height: 18px;
        
    }
    .prices-tabs .prices-table th:first-child,
        .prices-tabs .prices-table td:first-child {
            width: calc(100% - 160px);
            text-align: left;
        
    }
    .prices-tabs .prices-table th:nth-child(2),
        .prices-tabs .prices-table th:nth-child(3),
        .prices-tabs .prices-table td:nth-child(2),
        .prices-tabs .prices-table td:nth-child(3) {
            width: 80px;
            text-align: center;
        
    }
    .prices-tabs .prices-table__note-row td,
        .prices-tabs .prices-table tr.prices-table__note-row td {
            width: auto;
            height: 72px;
            padding: 12px 0;
            border-right: 0;
            background: var(--white);
            font-size: 12px;
            font-weight: var(--font-weight-regular);
            font-style: italic;
            line-height: 16px;
            text-align: left;
        
    }
    .prices-tabs__all-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 36px;
            margin: 0;
            padding: 10px 16px;
            border-radius: 8px;
            background: var(--red);
            color: var(--white);
            font-family: var(--font-main);
            font-size: 12px;
            font-weight: var(--font-weight-semibold);
            line-height: 16px;
            text-transform: uppercase;
        
    }
    .prices-tabs__form-card {
            box-sizing: border-box;
            flex: none;
            width: 100%;
            min-height: 412px;
            padding: 12px;
            border-radius: 20px;
            background: var(--white);
            box-shadow: 0 40px 80px rgba(2, 18, 48, 0.12);
        
    }
    .prices-tabs__form-inner {
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 32px;
            width: 100%;
            /*min-height: 388px;*/
            padding: 24px 16px 16px;
            border: 1px solid var(--red);
            border-radius: 12px;
        
    }
    .prices-tabs__form-title {
           /* width: 250px;*/
            margin: 0;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 18px;
            font-weight: var(--font-weight-semibold);
            line-height: 24px;
        
    }
    .prices-tabs__form {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 20px;
            width: 100%;
        
    }
    .prices-tabs__input {
            width: 100%;
            height: 36px;
            padding: 8px 20px;
            border: 1px solid var(--calculator-control-border, #b6bbc1);
            border-radius: 20px;
            background: var(--white);
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: var(--font-weight-regular);
            line-height: 20px;
        
    }
    .prices-tabs__agree {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            width: 100%;
            min-height: 64px;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 12px;
            font-weight: var(--font-weight-regular);
            font-style: italic;
            line-height: 16px;
        
    }
    .prices-tabs__agree input {
            flex: 0 0 20px;
            width: 20px;
            height: 20px;
            margin: 0;
            border-radius: 2px;
        
    }
    .prices-tabs__submit {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 36px;
            padding: 10px 16px;
            border-radius: 8px;
            background: var(--red);
            color: var(--white);
            font-family: var(--font-main);
            font-size: 12px;
            font-weight: var(--font-weight-semibold);
            line-height: 16px;
            text-transform: uppercase;
        
    }
}

@media (max-width: 1024px) {
    .block_recvizits .prices-tabs__form-card {
            width: 100%;
            max-width: none;
        
    }
}

@media (max-width: 768px) {
    .block_recvizits .prices-tabs__form-card,
    .block_recvizits .prices-tabs__form-inner,
    .block_recvizits .prices-tabs__form {
            width: 100%;
            min-width: 0;
            max-width: none;
        
    }
    .block_recvizits .prices-tabs__form-card {
            height: auto;
            min-height: 0;
            margin: 0;
        
    }
    .block_recvizits .prices-tabs__form-inner {
            height: auto;
        
    }
    .block_recvizits .prices-tabs__input,
        .block_recvizits .prices-tabs__submit,
        .block_recvizits .prices-tabs__agree {
            width: 100%;
            max-width: none;
        
    }
}

.block_recvizits .prices-tabs__form-card,
.block_recvizits .prices-tabs__form-inner,
.block_recvizits .prices-tabs__form {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}
.service-order-modal .prices-tabs__form-inner,
.service-order-modal .prices-tabs__form {
    width: 100%;
    min-width: 0;
    max-width: none;
}
.service-order-modal .prices-tabs__form-inner {
    height: auto;
    padding-right: 52px;
}
.service-order-modal .prices-tabs__input,
.service-order-modal .prices-tabs__submit,
.service-order-modal .prices-tabs__agree {
    width: 100%;
    max-width: none;
}

@media (max-width: 600px) {
    .service-order-modal .prices-tabs__form-inner {
            padding: 24px 16px;
        
    }
    .prices-tabs {
            overflow-x: clip;
            overflow-y: visible;
        
    }
    .prices-tabs::before {
            bottom: -80px;
            left: -61px;
            width: 472px;
            height: 315px;
            transform: matrix(0.99, 0.17, -0.17, 0.99, 0, 0);
        
    }
}

.modular-page__price-list {
    display: grid;
    gap: 32px;
	margin-bottom: 15px;
}
.modular-page__price-panel {
    overflow: hidden;
    border-radius: 10px;
    background: var(--white);
}
.modular-page__price-group-title {
    margin: 0;
    padding: 16px 20px;
    background: var(--white);
    color: var(--main-color);
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}
.modular-page__price-panel .modular-page__table-wrap {
    overflow-x: auto;
}
.modular-page__price-panel table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    color: var(--main-color);
    font-family: var(--font-main);
}
.modular-page__price-panel th,
.modular-page__price-panel td {
    padding: 12px 20px;
    border: 0;
    color: var(--main-color);
    text-align: left;
    white-space: normal;
}
.modular-page__price-panel thead {
    background: #f1f1f1;
}
.modular-page__price-panel thead th {
    background: transparent;
    color: var(--main-color);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}
.modular-page__price-panel tbody tr:nth-child(odd) {
    background: rgba(241, 241, 241, 0.5);
}
.modular-page__price-panel tbody th,
.modular-page__price-panel tbody td {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

@media (max-width: 767px) {
    .modular-page__price-list {
            gap: 24px;
        
    }
    .modular-page__price-panel table {
            min-width: 500px;
        
    }
    .modular-page__price-group-title {
            padding: 14px 12px;
            font-size: 18px;
            line-height: 24px;
        
    }
    .modular-page__price-panel th,
        .modular-page__price-panel td {
            padding: 10px 12px;
        
    }
}

.region-detail-section .prices-page__title {
    width: 100%;
    max-width: none;
    color: var(--main-color);
    font-family: var(--font-main);
    font-size: 24px;
    font-weight: var(--font-weight-semibold);
    line-height: 28px;
}
.region-detail-section .prices-page__title {
    margin: 0 0 24px;
}
.region-detail-section .text-price__item::marker {
    color: var(--red);
}
.region-detail-section .region-detail__price-tables .table-container {
    margin-bottom: 40px;
}
.region-detail-section .region-detail__price-tables .table-container:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .region-detail-section .prices-page__title {
            font-size: 20px;
            line-height: 24px;
        
    }
    .region-detail-section .prices-page__title {
            margin-bottom: 20px;
        
    }
    .region-detail-section .region-detail__price-tables .table-container {
            margin-bottom: 24px;
        
    }
}

/* news-article */

.news-article {
	background: #F1F1F1;
	padding: 15px 0 80px 0;
}
.news-block {
  position: relative;
  padding: 80px 0;
  background: #F1F1F1;
  overflow: hidden;
}
.news-block::before {
  content: "";
  position: absolute;
  right: 180px;
  top: 160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}
.news-block__container {
  position: relative;
  z-index: 1;
  width: 1440px;
  max-width: calc(100% - 80px);
  margin: 0 auto;
}
.news-block__head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.news-block__title {
  flex: 1 1 auto;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: #3E3D59;
}
.news-block__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid #F53C15;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #3E3D59;
  transition: .2s ease;
}
.news-block__all:hover {
  background: #fff;
}
.news-block__list {
  width: 100%;
}
.news-block__list.owl-carousel .owl-stage-outer {
  overflow: hidden;
  padding: 20px 35px 70px;
  margin: -20px -35px -70px;
}
.news-block__list.owl-carousel .owl-stage {
  display: flex;
}
.news-block__list.owl-carousel .owl-item {
  /*display: flex;
  height: auto;*/
  padding-bottom: 10px;
}
.news-block .owl-dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news-block .owl-dot {
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1000;
}
.news-block .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0;
  border-radius: 50%;
  background: #D9D9D9;
  transition: background .2s ease, transform .2s ease;
}
.news-block .owl-dot.active span {
  background: #F53C15;
  transform: scale(1.15);
}
.news-card {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #fff;
  transition: box-shadow .25s ease, transform .25s ease;
}
.news-card:hover {
  box-shadow: 0 40px 40px rgba(2, 18, 48, 0.12);
  transform: translateY(-2px);
}
.news-card__link {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
 /* padding: 0 2px;*/
}
.news-card__image {
  position: relative;
  flex: 0 0 280px;
  height: 280px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-card__date {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 12px;
  border-radius: 20px;
  background: #F1F1F1;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #3E3D59;
}
.news-card__content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 24px 32px 32px;
}
.news-card__title {
  margin: 0 0 15px;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.3;
  color: #3E3D59;
}
.news-card__text {
  flex: 1 1 auto;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #3E3D59;
}
.news-card__text p {
  margin: 0;
}

@media (max-width: 1200px) {
    .news-block__container {
        max-width: calc(100% - 48px);
      
    }
}

@media (max-width: 768px) {
    .news-block {
        padding: 48px 0;
      
    }
    .news-block__container {
        max-width: calc(100% - 32px);
      
    }
    .news-block__head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 24px;
      
    }
    .news-block__title {
        font-size: 24px;
        line-height: 32px;
      
    }
    .news-card__image {
        flex: 0 0 220px;
        height: 220px;
      
    }
    .news-card__content {
        padding: 20px;
      
    }
}

.news-block__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.news-card {
    height: 100%;
}
.news-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.article-news {
    padding: 15px 0 80px;
}
.article-news__wrap {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}
.article-news__return {
    display: inline-flex;
    align-items: center;
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    color: #6e6e73;
    text-decoration: none;
    transition: color 0.2s ease;
}
.article-news__return:hover {
    color: #111111;
}
.article-news__content::after {
    content: "";
    display: block;
    clear: both;
}
.article-news__data {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #b2b2b2;
}
.article-news__heading {
	font-weight: var(--font-weight-semibold);
	font-size: 32px;
	line-height: 40px;
}
.article-news__float-image {
    float: left;
    width: 620px;
    max-width: 44%;
    margin: 0px 32px 20px 0;
    border-radius: 22px;
    overflow: hidden;
    background: #f3f3f3;
}
.article-news__img {
    display: block;
    width: 100%;
    height: auto;
}
.article-news__body h2 {
	font-weight: var(--font-weight-semibold);
	font-size: 24px;
	line-height: 28px;
	letter-spacing: 0%;
	color: var(--main-color);
}

.article-news__body h3 {
	font-weight: var(--font-weight-semibold);
	font-size: 22px;
	line-height: 28px;
	letter-spacing: 0%;
	color: var(--main-color);
}
.article-news__body a {
	color: #ff5a36;
	text-decoration:none;
}
.article-news__body ul {
    margin: 12px 0 24px 0;
    padding: 0;
    list-style: none;
	color: var(--main-color);
}
.article-news__body li {
    display: block;
    padding-left: 0;
    margin: 0 0 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}
.article-news__body li::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 12px 1px 0;
    border-radius: 50%;
    background: #F53C15;
}
.article-news__body ol {
    counter-reset: step;
    margin: 12px 0 24px 0;
    padding: 0;
    list-style: none;
    color: var(--main-color);
}
.article-news__body ol > li {
    counter-increment: step;
    display: block;
    padding-left: 0;
    margin: 0 0 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}
.article-news__body ol > li::before {
    content: counter(step);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    width: auto;
    height: 28px;
    margin: 0 12px 2px 0;
    padding: 0 4px;
    border-radius: 20px;
    background: #f5f5f5;
    color: #f53c15;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    flex-shrink: 0;
    vertical-align: middle;
}
.article-news__body ol > li > * {
    margin: 0;
}
.article-news__body p {
    margin: 0;
}
.article-news__body p + p {
    margin-top: 20px;
}
.article-news__body p {
	font-weight: var(--font-weight-regular);
	font-size: 14px;
	line-height: 18px;
	color: var(--main-color);
}
.article-news__body li:last-child {
    margin: 0;
}

.article-news__body a {
    
}

.matte-article__installation,
.matte-article__design {
    display: flow-root;
}


.article-news__body .matte-article__gallery-image {
    width: 100%;
    height: 100%;
    margin: 0;
}

.matte-article__design.container {
    margin: 28px 0;
}
.matte-article__design .matte-article__design-grid {
    width: 100%;
}
.matte-article__design .matte-article__gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}
.article-news__body .matte-article__design .matte-article__installation-image,
.article-news__body .matte-article__design .matte-article__gallery-image {
    display: block;
    width: 100%;
    height: 320px;
    margin: 0;
    border-radius: 16px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .matte-article__design .matte-article__gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-news__body .matte-article__design .matte-article__installation-image,
    .article-news__body .matte-article__design .matte-article__gallery-image {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .article-news__body .matte-article__installation-image,
    .matte-article__gallery {
        float: none;
        width: 100%;
        margin: 20px 0;
    }

    .matte-article__design .matte-article__gallery {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 0;
    }

    .article-news__body .matte-article__design .matte-article__installation-image,
    .article-news__body .matte-article__design .matte-article__gallery-image {
        height: 240px;
    }
}

@media (max-width: 991px) {
    .article-news {
            padding: 44px 0 64px;
        
    }
    .article-news__heading {
            font-size: 34px;
        
    }
    .article-news__float-image {
            width: 320px;
            margin: 4px 24px 18px 0;
        
    }
    .article-news__body {
            font-size: 17px;
        
    }
}

@media (max-width: 767px) {
    .article-news__float-image {
            float: none;
            width: 100%;
            max-width: 100%;
            margin: 0 0 24px;
        
    }
}

@media (max-width: 575px) {
    .article-news {
            padding: 32px 0 48px;
        
    }
    .article-news__wrap {
            padding: 0 16px;
        
    }
    .article-news__heading {
            font-size: 28px;
            margin-bottom: 20px;
        
    }
    .article-news__body {
            font-size: 16px;
            line-height: 1.7;
        
    }
    .article-news__body h2 {
            font-size: 24px;
        
    }
    .article-news__body h3 {
            font-size: 21px;
        
    }
    .article-news__body h4 {
            font-size: 18px;
        
    }
}

.news-article {
    padding-top: 5px;
}
.news-article {
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .news-article {
            padding-bottom: 28px;
        
    }
}

.news-article--useful-list {
    background: var(--white);
}
.news-article--useful-list .news-card {
    border: 1px solid #B6BBC1;
    border-radius: 22px;
}
.news-article .news-block__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}
.news-article .news-card,
.news-article .news-card__link,
.news-article .news-card__content {
    min-width: 0;
}
.news-article .news-card__title,
.news-article .news-card__text {
    overflow-wrap: anywhere;
}

@media (max-width: 1000px) {
    .news-article {
            padding-bottom: 64px;
        
    }
    .news-article .news-block__list {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px;
        
    }
    .news-article .news-card__image {
            flex: 0 0 auto;
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 10;
        
    }
    .news-article .news-card__content {
            padding: 22px 24px 26px;
        
    }
}

@media (max-width: 600px) {
    .news-article {
            padding: 12px 0 48px;
        
    }
    .news-article .news-block__container {
            width: calc(100% - 32px);
            max-width: none;
        
    }
    .news-article .news-block__head {
            margin-bottom: 20px;
        
    }
    .news-article .news-block__title {
            font-size: 24px;
            line-height: 32px;
        
    }
    .news-article .news-block__list {
            grid-template-columns: minmax(0, 1fr);
            gap: 16px;
        
    }
    .news-article .news-card {
            border-radius: 12px;
        
    }
    .news-article .news-card__image {
            aspect-ratio: 343 / 220;
            border-radius: 12px 12px 0 0;
        
    }
    .news-article .news-card__date {
            top: 10px;
            left: 10px;
            padding: 4px 10px;
            font-size: 12px;
            line-height: 16px;
        
    }
    .news-article .news-card__content {
            padding: 16px;
        
    }
    .news-article .news-card__title {
            margin-bottom: 10px;
            font-size: 18px;
            line-height: 24px;
        
    }
    .news-article .news-card__text {
            font-size: 14px;
            line-height: 20px;
        
    }
    .news-article .news-card:hover {
            box-shadow: none;
            transform: none;
        
    }
    .news-article .valenti-pagination,
        .news-article .valenti-pagination__pages {
            gap: 4px;
        
    }
    .news-article .valenti-pagination {
            margin-top: 28px;
        
    }
    .news-article .valenti-pagination__page,
        .news-article .valenti-pagination__control {
            width: 36px;
            height: 36px;
        
    }
}

@media (max-width: 400px) {
    .news-article .news-block__container {
            width: calc(100% - 24px);
        
    }
    .news-article .valenti-pagination,
        .news-article .valenti-pagination__pages {
            gap: 3px;
        
    }
    .news-article .valenti-pagination__page,
        .news-article .valenti-pagination__control {
            width: 32px;
            height: 32px;
            font-size: 13px;
        
    }
    .news-article .valenti-pagination__control {
            font-size: 22px;
        
    }
    .news-article .valenti-pagination__dots {
            width: 20px;
        
    }
}

.region-section .article-news__body {
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .region-section .article-news__body {
            margin-bottom: 24px;
        
    }
}

.site-page--internal .news-article .news-block__head {
    margin-bottom: 0;
}
.site-page--internal .news-article {
    padding-top: 0;
}
.valenti-pagination {
    margin-top: 50px;
}
.news-article {
    padding-bottom: 50px;
}
.article-news__header {
    display: flex;
    gap: 24px;
    align-items: baseline;
    justify-content: space-between;
}
.article-news__heading {
    flex: 1 1 auto;
    min-width: 0;
    margin: 20px 0 40px;
    color: #3E3D59;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
}
.article-news__header .article-news__data {
    flex: 0 0 auto;
    margin: 0;
    color: #3E3D59;
    font-weight: var(--font-weight-regular);
    font-size: 14px;
    line-height: 18px;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .article-news__header {
            flex-direction: column;
            gap: 8px;
            align-items: flex-start;
            margin-bottom: 40px;
        
    }
    .article-news__heading {
            margin: 20px 0 0;
        
    }
}

.valenti-pagination__page,
.valenti-pagination__control {
    border: 1px solid #B6BBC1;
}
.valenti-pagination__control {
    padding-bottom: 6px;
}
.valenti-pagination__page--current:hover {
    border-color: var(--red);
    background: var(--red);
    color: var(--white);
}

@media (max-width: 767px) {
    .article-news__content .article-news__heading {
            margin: 0 0 10px !important;
        
    }
    .article-news__header {
            margin-bottom: 30px;
        
    }
    .article-news {
            padding: 32px 0 0;
        
    }
}

/* works-block */

/* --- Original main.css --- */
.works-block {
  padding-top: 80px;
      margin-bottom: 80px;
}
.works-block__head {
  width: 1440px;
  max-width: calc(100% - 80px);
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.works-block__title {
  flex: 1 1 auto;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: #3E3D59;
}
.works-block__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid #F53C15;
  border-radius: 8px;
  background: #F53C15;
  color: #FFFFFF;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  transition: .2s ease;
}
.works-block__all:hover {
  opacity: .9;
}
.works-block__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
}
.works-block__item {
  display: block;
  position: relative;
  height: 340px;
  overflow: hidden;
}
.works-block__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1200px) {
    .works-block__head {
        max-width: calc(100% - 48px);
      
    }
    .works-block__gallery {
        grid-template-columns: repeat(2, 1fr);
      
    }
    .works-block__item {
        height: 300px;
      
    }
}

@media (max-width: 768px) {
    .works-block {
        padding-top: 48px;
      
    }
    .works-block__head {
        max-width: calc(100% - 32px);
        margin-bottom: 24px;
        flex-direction: column;
        align-items: flex-start;
      
    }
    .works-block__title {
        font-size: 24px;
        line-height: 32px;
      
    }
    .works-block__gallery {
        grid-template-columns: 1fr;
      
    }
    .works-block__item {
        height: 260px;
      
    }
}

.section-portfolio-slider {
background: linear-gradient(0deg, #F1F1F1, #F1F1F1),
radial-gradient(28.23% 68.52% at 85.76% 48.04%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);

padding: 64px 0;
}
.section-portfolio-slider__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}
.section-portfolio-slider__title {
	font-weight: 600;
	font-size: 24px;
	line-height: 28px;
	letter-spacing: 0%;
	color: #3E3D59;
	margin: 0;
}
.section-portfolio-slider__all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 12px 24px;
    border: 1px solid #ff5a36;
	line-height: 20px;
    border-radius: 8px;
    color: #3E3D59;
    font-size: 16px;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease;
}
.section-portfolio-slider__all:hover {
    background: #ff5a36;
    color: #fff;
}
.section-portfolio-slider__slide {
    width: 330px;
}
.section-portfolio-slider__card {
    display: block;
    overflow: hidden;
    border-radius: 20px;
    text-decoration: none;
}
.section-portfolio-slider__card img {
    display: block;
    width: 330px;
    height: 240px;
    object-fit: cover;
}
.section-portfolio-slider .owl-stage-outer {
    overflow: hidden;
}
.section-portfolio-slider .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}
.section-portfolio-slider .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0;
    background: #D9D9D9;
    opacity: 1;
}
.section-portfolio-slider .owl-dots .owl-dot.active span {
    background: #F53C15;
}

@media (max-width: 767px) {
    .section-portfolio-slider {
            padding: 36px 0 16px;
        
    }
    .section-portfolio-slider__head {
            flex-direction: column;
            align-items: flex-start;
        
    }
    .section-portfolio-slider__title {
            font-size: 28px;
        
    }
    .section-portfolio-slider__slide,
        .section-portfolio-slider__card img {
            width: 100%;
            height: 200px;
        
    }
}

.section-portfolio-slider .owl-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.section-portfolio-slider .owl-dot {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.section-portfolio-slider .owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D9D9D9;
    transition: background-color 0.2s ease;
}
.section-portfolio-slider .owl-dot.active span,
.section-portfolio-slider .owl-dot:hover span {

}
.works-block--price .works-block__title {
	font-weight: var(--font-weight-semibold);
	color: var(--main-color);
	font-size: 24px;
	line-height: 28px;
}
.our-work-grid {
    display: grid;
    grid-template-columns: repeat(3, 459px);
    gap: 32px;
	margin: 40px auto 80px auto;
}
.our-work-card {
    position: relative;
    display: block;
    width: 459px;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    text-decoration: none;
}
.our-work-card__image-wrap {
    display: block;
    width: 100%;
    height: 100%;
}
.our-work-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.our-work-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(340.19deg, rgba(40, 40, 40, 0) 33.43%, rgba(40, 40, 40, 0.6) 93.26%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
}
.our-work-card__content {
    position: absolute;
    top: 32px;
    left: 32px;
    right: 32px;
    z-index: 2;
}
.our-work-card__title {
    display: block;
    color: #FFFFFF;
    font-family: "Open Sans", sans-serif;
    font-weight: 800;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 0;
}

@media (max-width: 1499px) {
    .our-work-grid {
            grid-template-columns: repeat(2, 459px);
        
    }
}

@media (max-width: 991px) {
    .our-work-grid {
            grid-template-columns: 1fr;
        
    }
    .our-work-card {
            width: 100%;
            max-width: 459px;
        
    }
}

h1.works-block__title {
    margin-top: 0;
    margin-bottom: 5px;
    transform: translateY(5px);
}

@media (max-width: 600px) {
    .works-block.works-block--main {
            --works-slider-dot: #d9d9d9;
            box-sizing: border-box;
            width: 100%;
            margin: 0;
            padding: 40px 16px 0;
        
    }
    .works-block--main .works-block__container {
            width: 100%;
        
    }
    .works-block--main .works-block__head {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 10px;
            width: 100%;
            max-width: none;
            height: 36px;
            margin: 0 0 20px;
        
    }
    .works-block--main .works-block__title {
            flex: 1 1 auto;
            margin: 0;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 24px;
            font-weight: var(--font-weight-semibold);
            line-height: 32px;
        
    }
    .works-block--main .works-block__all {
            display: inline-flex;
            flex: 0 0 105px;
            align-items: center;
            justify-content: center;
            width: 105px;
            height: 36px;
            padding: 8px 12px;
            border: 1px solid var(--red);
            border-radius: 8px;
            background: transparent;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: var(--font-weight-semibold);
            line-height: 20px;
            white-space: nowrap;
        
    }
    .works-block--main .works-block__gallery {
            display: block;
            width: 100%;
        
    }
    .works-block--main .works-block__gallery:not(.owl-loaded) .works-block__item:not(:first-child) {
            display: none;
        
    }
    .works-block--main .works-block__gallery.owl-carousel .owl-stage-outer {
            overflow: hidden;
            border-radius: 12px;
        
    }
    .works-block--main .works-block__gallery.owl-carousel .owl-stage {
            display: flex;
        
    }
    .works-block--main .works-block__gallery.owl-carousel .owl-item {
            flex: 0 0 auto;
        
    }
    .works-block--main .works-block__item {
            display: block;
            width: 100%;
            height: auto;
            aspect-ratio: 343 / 242.96;
            overflow: hidden;
            border-radius: 12px;
        
    }
    .works-block--main .works-block__item img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        
    }
    .works-block--main .owl-dots {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 24px;
            margin-top: 12px;
        
    }
    .works-block--main .owl-dot {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            margin: 0;
            padding: 0;
            border: 0;
            background: transparent;
        
    }
    .works-block--main .owl-dot span {
            display: block;
            width: 12px;
            height: 12px;
            margin: 0;
            border-radius: 50%;
            background: var(--works-slider-dot);
        
    }
    .works-block--main .owl-dot.active span {
            background: var(--red);
        
    }
}

.works-block--detail {
    padding-top: 0;
}
.works-block--detail .works-block__title {
    margin-bottom: 25px;
}
.our-work-grid:has(+ .question-call),
.works-block--price:has(+ .question-call),
.works-block--detail:has(+ .question-call) {
    margin-bottom: 0;
}
.section-portfolio-slider {
    margin-top: 40px;
    margin-bottom: 40px;
}
.section-portfolio-slider__slide,
.section-portfolio-slider__card {
    width: 100%;
    min-width: 0;
}
.section-portfolio-slider__card img {
    width: 100%;
}
#photo-print-title {
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    #photo-print-title {
            margin-bottom: 12px;
        
    }
}

/* FAQ */

/* --- Original main.css --- */
.first-section-card {
	    gap: 16px;
    display: flex;
    flex-direction: column;
}
.promo-heading__title {
	font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    color: #3E3D59;
    margin: 20px 0 0px 0;
}
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 459px);
    gap: 32px;
	    margin: 40px auto 80px auto;
}
.promo-card {
    position: relative;
    display: block;
    width: 459px;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    text-decoration: none;
}
.promo-card__image-wrap {
    display: block;
    width: 100%;
    height: 100%;
}
.promo-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.promo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(340.19deg, rgba(40, 40, 40, 0) 33.43%, rgba(40, 40, 40, 0.6) 93.26%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
}
.promo-card__content {
    position: absolute;
    top: 32px;
    left: 32px;
    right: 32px;
    z-index: 2;
}
.promo-card__title {
    display: block;
    color: #FFFFFF;
    font-family: "Open Sans", sans-serif;
    font-weight: 800;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 0;
}

@media (max-width: 1499px) {
    .promo-grid {
            grid-template-columns: repeat(2, 459px);
        
    }
}

@media (max-width: 991px) {
    .promo-grid {
            grid-template-columns: 1fr;
        
    }
    .promo-card {
            width: 100%;
            max-width: 459px;
        
    }
}

.promo-detail {
    margin: 0 auto 80px auto;
}
.promo-detail__wrap {
    margin: 0 auto;
}
.promo-detail__content::after {
    display: block;
    clear: both;
    content: "";
}
.promo-detail__meta {
    display: block;
    margin-bottom: 14px;
    color: var(--promo-muted);
    font-size: 14px;
    line-height: 1.4;
}
.promo-detail__heading {
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    color: #3E3D59;
    margin: 20px 0 40px 0;
}
.promo-detail__float-image {
    float: left;
    width: min(48%, 560px);
    margin: 0px 40px 0 0;
}
.promo-detail__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}
.promo-detail__body {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #3E3D59;
}
.promo-detail__body a {
	color: #ff5a36;
}
.promo-detail__body > :first-child {
    margin-top: 0;
}
.promo-detail__body > :last-child {
    margin-bottom: 0;
}
.promo-detail__body p {
    margin: 0 0 1.25em;
}
.promo-detail__body h2,
.promo-detail__body h3 {
    margin: 1.8em 0 0.7em;
    color: var(--promo-text);
    font-weight: 700;
    line-height: 1.2;
}
.promo-detail__body h2 {
    font-size: clamp(24px, 2.4vw, 36px);
}
.promo-detail__body h3 {
    font-size: clamp(20px, 1.8vw, 28px);
}
.promo-detail__body ul,
.promo-detail__body ol {
    margin: 0 0 1.5em;
    padding-left: 1.4em;
}
.promo-detail__body li {
    margin-bottom: 0.6em;
    padding-left: 0.25em;
}
.promo-detail__body li::marker {
    color: var(--promo-accent);
}
.promo-detail__body img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

@media (max-width: 767px) {
    .promo-detail__float-image {
            float: none;
            width: 100%;
            margin: 0 0 28px;
        
    }
    .promo-detail__img {
            border-radius: 14px;
        
    }
    .promo-detail__body {
            line-height: 1.6;
        
    }
}

.faq-page__content,
.payment-page__hero,
.production-page__hero,
.modular-page__hero {
    padding-top: 5px;
}
.modular-page__hero-content {
    padding-top: 0;
}
.modular-page > .modular-page__section:last-of-type {
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .modular-page > .modular-page__section:last-of-type {
            padding-bottom: 28px;
        
    }
}

.promo-grid:has(+ .question-call) {
    margin-bottom: 0;
}
.modular-page__section,
.modular-page__cta,
.production-page__section {
    padding-top: var(--inner-page-content-gap);
    padding-bottom: var(--inner-page-content-gap);
}
.modular-page > .modular-page__section:last-of-type {
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .modular-page__section,
        .modular-page__cta,
        .production-page__section {
            padding-top: var(--inner-page-content-gap-mobile);
            padding-bottom: var(--inner-page-content-gap-mobile);
        
    }
    .modular-page > .modular-page__section:last-of-type {
            padding-bottom: 28px;
        
    }
}

.faq-page .faq-page__title {
    margin: 20px 0 40px;
    color: #3E3D59;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
}
.faq-page__content > .container > p {
    margin: 0;
    color: #3E3D59;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}
.payment-page .payment-page__hero h1 {
    margin: 20px 0 40px;
    color: #3E3D59;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
}
.payment-page p {
    margin: 0;
    color: #3E3D59;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}
.payment-page #payment-methods-title {
    margin: 0;
    color: #3E3D59;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
}
.faq-page__content > .container > img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 32px auto;
}

@media (max-width: 767px) {
    .faq-page__content > .container > img {
            margin: 24px auto;
        
    }
}

.modular-page__final-actions .button {
    box-sizing: border-box;
    width: 220px;
    max-width: 100%;
    justify-content: center;
    text-align: center;
}

@media (max-width: 560px) {
    .modular-page__final-actions .button {
            width: 100%;
        
    }
}

.production-page {
    color: var(--main-color);
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 24px;
}
.production-page__hero,
.production-page__section {
    padding: 40px 0;
}
.production-page__hero-grid,
.production-page__split,
.production-page__section-intro {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
}
.production-page__hero-content,
.production-page__facts,
.production-page__text,
.production-page__equipment-gallery,
.production-page__section-intro > div {
    width: 100%;
}
.production-page h1 {
    margin: 0 0 20px;
    color: var(--main-color);
    font-family: var(--font-main);
    font-size: 32px;
    font-weight: var(--font-weight-semibold);
    line-height: 40px;
}
.production-page__heading h2,
.production-page__section-intro h2,
.production-page__text h2,
.production-page__facts h2,
.production-page__closing h2 {
    margin: 0;
    color: var(--main-color);
    font-family: var(--font-main);
    font-size: 24px;
    font-weight: var(--font-weight-semibold);
    line-height: 28px;
}
.production-page__step h3 {
    margin: 0 0 8px;
    color: var(--main-color);
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    line-height: 24px;
}
.production-page__lead,
.production-page__hero-note,
.production-page__text,
.production-page__facts,
.production-page__facts li,
.production-page__text li,
.production-page__step p,
.production-page__closing p {
    color: var(--main-color);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: var(--font-weight-regular);
    line-height: 24px;
}
.production-page__lead {
    max-width: none;
    margin: 0;
}
.production-page__hero-note {
    max-width: none;
    margin: 24px 0 0;
}
.production-page__heading {
    margin-bottom: 24px;
}
.production-page__facts,
.production-page__closing {
    margin: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}
.production-page__facts h2,
.production-page__text h2,
.production-page__closing h2 {
    margin-top: 16px;
    margin-bottom: 16px;
}
.production-page__facts ul,
.production-page__text ul {
    margin: 0;
    padding-left: 20px;
}
.production-page__facts li + li,
.production-page__text li + li {
    margin-top: 8px;
}
.production-page__facts li::marker,
.production-page__text li::marker {
    color: var(--red);
}
.production-page__text p {
    margin: 0;
}
.production-page__text p + p {
    margin-top: 12px;
}
.production-page__section-intro {
    gap: 16px;
    margin-bottom: 24px;
}
.production-page__gallery + .production-page__section-intro {
    margin-top: 32px;
    margin-bottom: 0;
}
.production-page__section-intro .production-page__text,
.production-page__equipment-gallery {
    margin: 0;
}
.production-page__steps,
.production-page__gallery,
.production-page__equipment-gallery {
    gap: 16px;
}
.production-page__step {
    padding: 24px;
}
.production-page__step p,
.production-page__closing p {
    margin: 0;
}
.production-page__closing {
    margin-top: 32px;
}
.production-page__gallery-item::after {
    display: none;
}
.production-page__closing h2 {
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .production-page {
            font-size: 14px;
            line-height: 20px;
        
    }
    .production-page__hero,
        .production-page__section {
            padding: 28px 0;
        
    }
    .production-page__hero-grid,
        .production-page__split,
        .production-page__section-intro {
            gap: 20px;
        
    }
    .production-page h1 {
            margin-bottom: 16px;
            font-size: 28px;
            line-height: 36px;
        
    }
    .production-page__heading h2,
        .production-page__section-intro h2,
        .production-page__text h2,
        .production-page__facts h2,
        .production-page__closing h2 {
            font-size: 20px;
            line-height: 24px;
        
    }
    .production-page__lead,
        .production-page__hero-note,
        .production-page__text,
        .production-page__facts,
        .production-page__facts li,
        .production-page__text li,
        .production-page__step p,
        .production-page__closing p {
            font-size: 14px;
            line-height: 20px;
        
    }
    .production-page__hero-note,
        .production-page__heading,
        .production-page__section-intro {
            margin-bottom: 20px;
        
    }
    .production-page__hero-note {
            margin-top: 20px;
        
    }
    .production-page__closing {
            margin-top: 24px;
        
    }
    .production-page__gallery + .production-page__section-intro {
            margin-top: 24px;
        
    }
    .production-page__closing h2 {
            margin-top: 12px;
            margin-bottom: 12px;
        
    }
}

.site-page--internal .payment-page__hero {
    padding-bottom: 0;
}
.site-page--internal .payment-page__content {
    padding-top: 0;
}
.site-page--internal .payment-page #payment-methods-title {
    padding: 0;
}
.production-page h1 {
    color: #3E3D59;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
}
.production-page p {
    margin: 0;
    color: #3E3D59;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}
.production-page h2 {
    margin: 0;
    color: #3E3D59;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
}
.production-page__facts,
.production-page__text,
.production-page__section-intro,
.production-page__section-intro > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.production-page__text p + p {
    margin-top: 0;
}
.production-page ul {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}
.production-page ul li {
    position: relative;
    margin: 0 0 12px;
    padding-left: 18px;
    color: var(--main-color);
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}
.production-page ul li:last-child {
    margin-bottom: 0;
}
.production-page ul li::before {
    position: absolute;
    top: 6px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    content: "";
}

/* .region-detail */

.region-detail__ceilings .natyazhnye-potolki__card-advantages {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}
.region-detail__ceilings
.natyazhnye-potolki__card:hover
.natyazhnye-potolki__card-advantages {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.region-detail .service-card__hover-text {
    font-size: 12px !imporant;
    line-height: 17px;
}
.region__title {
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    color: #3E3D59;
    margin: 20px 0 40px 0;
}
.region-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 459px);
    gap: 32px;
	margin: 0;
}
.region-section__card {
    position: relative;
    display: block;
    width: 459px;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    text-decoration: none;
}
.region-section__image-wrap {
    display: block;
    width: 100%;
    height: 100%;
}
.region-section__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.region-section__card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(340.19deg, rgba(40, 40, 40, 0) 33.43%, rgba(40, 40, 40, .6) 93.26%),
        linear-gradient(0deg, rgba(0, 0, 0, .6), rgba(0, 0, 0, .2));
}
.region-section__content {
    position: absolute;
    top: 32px;
    right: 32px;
    left: 32px;
    z-index: 2;
}
.region-section__title {
    display: block;
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-weight: 800;
    font-size: 28px;
    line-height: 32px;
}
.region-detail-section {
    background: #fff;
}
.region-detail-section__group {
    margin-bottom: 80px;
}
.region-detail-section__group-title {
    margin: 0 0 32px;
    color: var(--main-color);
    font-weight: var(--font-weight-semibold);
    font-size: 24px;
    line-height: 28px;
}
.region-detail-section__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
}
.region-detail-section__card {
    position: relative;
    min-width: 0;
    min-height: 400px;
    overflow: hidden;
    border-radius: 7px;
    background: #4b4d50;
    color: #fff;
    grid-column: span 2;
    cursor: pointer;
}
.region-detail-section__card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.region-detail-section__card:hover .region-detail-section__card-image {
    transform: scale(1.035);
}
.region-detail-section__card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    transition: background-color .3s ease;
}
.region-detail-section__card:hover .region-detail-section__card-overlay {
    background: rgba(0, 0, 0, .75);
}
.region-detail-section__card-content {
    position: absolute;
    inset: 0;
    display: flex;
    min-height: 62%;
    padding: 32px;
    flex-direction: column;
    justify-content: space-between;
}
.region-detail-section__card-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.region-detail-section__card-title {
    margin: 0;
    color: #fff;
    font-weight: 800;
    font-size: 28px;
    line-height: 32px;
}
.region-detail-section__card-advantages {
    display: flex;
    width: fit-content;
    padding: 4px 20px;
    border-radius: 60px;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    backdrop-filter: blur(8px);
}
.region-detail-section__card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.region-detail-section__card-price {
    color: #fff;
    font-weight: 600;
    font-size: 24px;
    line-height: 31px;
}
.region-detail-section__card-price-value,
.region-detail-section__card-price-unit {
    color: #fff;
}

@media (max-width: 1499px) {
    .region-section__grid {
            grid-template-columns: repeat(2, 459px);
        
    }
}

@media (max-width: 1200px) {
    .region-detail-section__grid {
            grid-template-columns: repeat(4, 1fr);
        
    }
    .region-detail-section__card {
            grid-column: span 2;
        
    }
}

@media (max-width: 991px) {
    .region-section__grid {
            grid-template-columns: 1fr;
        
    }
    .region-section__card {
            width: 100%;
            max-width: 459px;
        
    }
    .region-detail-section__grid {
            grid-template-columns: 1fr;
        
    }
    .region-detail-section__card {
            min-height: 340px;
            grid-column: span 1;
        
    }
    .region-detail-section__card-content {
            padding: 24px;
        
    }
    .region-detail-section__card-title {
            font-size: 22px;
            line-height: 26px;
        
    }
}

.region-section__list {
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .region-section__list {
            padding-bottom: 28px;
        
    }
}

.region-section__price {
    position: absolute;
    right: 32px;
    bottom: 32px;
    left: 32px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 24px;
    font-weight: var(--font-weight-semibold);
    line-height: 31px;
}
.region-section__price strong {
    color: inherit;
    font-family: inherit;
    font-size: 36px;
    font-weight: var(--font-weight-bold);
    line-height: 40px;
}

@media (max-width: 600px) {
    .region-section__price {
            right: 16px;
            bottom: 16px;
            left: 16px;
            font-size: 16px;
            line-height: 22px;
        
    }
    .region-section__price strong {
            font-size: 28px;
            line-height: 32px;
        
    }
}

@media (max-width: 767px) {
    .region-section .region__title {
            margin-bottom: 24px;
        
    }
}

.region-detail-section > section {
    margin-top: 0;
    margin-bottom: 0;
}
.region-detail-section > section + section {
    margin-top: 40px;
}
.region-detail-section .region-detail__advantages .advantages-strip {
    margin-top: 0;
    margin-bottom: 0;
}
.region-detail-section .service-page__content h2,
.region-detail-section .region-detail-section__group-title {
    width: 100%;
    max-width: none;
    color: var(--main-color);
    font-family: var(--font-main);
    font-size: 24px;
    font-weight: var(--font-weight-semibold);
    line-height: 28px;
}
.region-detail-section .service-page__content h2 {
    margin: 40px 0 24px;
}
.region-detail-section .region-detail-section__group-title {
    margin: 0 0 24px;
}
.region-detail-section .service-page__content li::marker,
.region-detail-section .service-page__text li::marker {
    color: var(--red);
}

@media (max-width: 767px) {
    .region-detail-section > section + section {
            margin-top: 24px;
        
    }
    .region-detail-section .service-page__content h2,
    .region-detail-section .region-detail-section__group-title {
            font-size: 20px;
            line-height: 24px;
        
    }
    .region-detail-section .service-page__content h2 {
            margin: 24px 0 20px;
        
    }
    .region-detail-section .region-detail-section__group-title {
            margin-bottom: 20px;
        
    }
}

/* contact-card  */


.contact-card {
	display: flex;
	background: rgba(241, 241, 241, 1);
	margin-bottom: 80px;
	max-width: 1440px;
	border-radius: 20px;
}
.contact-card__img {
	max-height: 308px;
}
.contact-card__img img {
	width: 100%;
	    height: 308px;
}
.contact-card__title {
	font-weight: 600;
	font-size: 32px;
	line-height: 40px;
	color: rgba(62, 61, 89, 1);
	margin: 0;
}
.contact-card__content {
margin: 40px 0;
    max-width: 680px;
}
.contact-card__text {
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: rgba(62, 61, 89, 1);
	    margin: 20px 0 40px 0;
}
.contact-card__link {
	opacity: 1;
	padding: 12px 20px;
	gap: 10px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 1);
	color: rgba(62, 61, 89, 1);
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	display: inline-grid;
}
.contact-card__link--icon img {
	max-width: 48px;
	max-height: 48px;
}
.contact-card__link--icon {
	padding: 12px;
}
.contact-card__actions {
    gap: 10px;
    display: flex;
}
.contacts-map {
  padding: 80px 0;
  background: #fff;
}
.contacts-map__inner {
  position: relative;
  /*width: 1440px;
  max-width: calc(100% - 80px);*/
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
}
.contacts-map__frame {
  height: 600px;
}
.contacts-map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.contacts-map__card {
  position: absolute;
  bottom: 40px;
  left: 240px;
  width: 540px;
  border-radius: 20px;
  background: #FFFFFF;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(2, 18, 48, 0.08);
  z-index: 2;
  gap: 32px;
  display: flex;
  flex-direction: column;
}
.contacts-map__photo {
  /*height: 332px;*/
  padding: 20px 20px 0 20px;
  border-radius: 20px;
}
.contacts-map__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}
.contacts-map__content {
	padding: 0 20px 31px 20px;
    gap: 8px;
    display: flex;
    flex-direction: column;
}
.contacts-map__phone {
  display: block;
  text-decoration: none;
  font-family: Open Sans;
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	color: #3E3D59;
}
.contacts-map__address,
.contacts-map__time {
  margin: 0;
  font-family: "Open Sans", sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0%;
  color: #3E3D59;
}
.contacts-map__address {
  /*margin-top: 10px;*/
}
.contacts-map__time {
  /*margin-top: 6px;*/
}

@media (max-width: 1200px) {
    .contacts-map__inner {
        max-width: calc(100% - 48px);
      
    }
}

@media (max-width: 900px) {
    .contacts-map__frame {
        height: 560px;
      
    }
    .contacts-map__card {
        position: relative;
        top: auto;
        left: auto;
        /*width: calc(100% - 32px);
        max-width: 360px;*/
        margin: 16px;
      
    }
}

@media (max-width: 768px) {
    .contacts-map {
        padding: 48px 0;
      
    }
    .contacts-map__inner {
        max-width: calc(100% - 32px);
        border-radius: 20px;
      
    }
    .contacts-map__frame {
        height: 500px;
      
    }
    .contacts-map__card {
        width: calc(100% - 24px);
        margin: 12px;
      
    }
    .contacts-map__photo {
        height: 200px;
      
    }
    .contacts-map__phone {
        font-size: 20px;
      
    }
}

.block_recvizits__container {
    margin-inline: auto;
	display: flex;
    justify-content: space-evenly;
}
.block_recvizits {
  padding: 40px 0;
  background: #f7f7f7;
}
.block_recvizits__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 32px;
  align-items: start;
      justify-content: space-between;
}
.block_recvizits__info {
  min-width: 0;
}
.block_recvizits__title {
    font-weight: var(--font-weight-semibold);
	font-size: 32px;
	line-height: 40px;
	color: var(--main-color);
	margin: 0;
}
.block_recvizits__card {
  padding: 28px;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}
.block_recvizits__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.block_recvizits__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 96px;
  padding: 18px 20px;
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.block_recvizits__label {
  display: block;
  margin: 0;
  color: #777777;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.block_recvizits__value {
  display: block;
  color: #2a2a2a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  word-break: break-word;
}

h1.block_recvizits__title {
    margin-top: 0;
    margin-bottom: 5px;
    transform: translateY(5px);
}
.block_recvizits {
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .block_recvizits {
            padding-bottom: 28px;
        
    }
}

@media (max-width: 1100px) {
    .contact-card.container {
            position: relative;
            display: block;
            isolation: isolate;
            width: calc(100% - 32px);
            height: auto;
            min-height: 440px;
            margin: 0 auto 40px;
            padding: 0;
            overflow: hidden;
            border-radius: 12px;
            background: var(--surface);
        
    }
    .contact-card__content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
            width: 100%;
            max-width: none;
            margin: 0;
            padding: 28px 16px 192px;
        
    }
    .contact-card__title {
            width: 100%;
            margin: 0;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 20px;
            font-weight: var(--font-weight-semibold);
            line-height: 24px;
        
    }
    .contact-card__text {
            width: 100%;
            margin: 0;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: var(--font-weight-regular);
            line-height: 20px;
        
    }
    .contact-card__actions {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            align-content: flex-start;
            gap: 8px 12px;
            width: 100%;
            margin: 0;
            padding: 20px 0 0;
        
    }
    .contact-card__link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 36px;
            padding: 8px 12px;
            border-radius: 28px;
            background: var(--white);
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: var(--font-weight-semibold);
            line-height: 20px;
            white-space: nowrap;
        
    }
    .contact-card__link:nth-child(1) {
            flex: 0 0 172px;
            width: 172px;
        
    }
    .contact-card__link:nth-child(2) {
            flex: 0 0 138px;
            width: 138px;
        
    }
    .contact-card__link.contact-card__link--icon {
            flex: 0 0 36px;
            width: 36px;
            height: 36px;
            padding: 8px;
        
    }
    .contact-card__link--icon img {
            display: block;
            width: 20px;
            max-width: 20px;
            height: 20px;
            max-height: 20px;
        
    }
    .contact-card__visual {
            position: absolute;
            z-index: 1;
            right: 0;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 180px;
            overflow: hidden;
            pointer-events: none;
        
    }
    .contact-card__clipboard,
        .contact-card__sheet,
        .contact-card__img {
            width: 100%;
            height: 100%;
            max-height: none;
        
    }
    .contact-card__img img {
            content: url('../images/contact-card-mobile.png');
            display: block;
            width: 100%;
            height: 100%;
            aspect-ratio: auto;
            object-fit: cover;
            object-position: center bottom;
        
    }
}

@media (max-width: 600px) {
    .contacts-map {
            width: 100%;
            margin: 0;
            padding: 0;
            background: var(--white);
        
    }
    .contacts-map__inner {
            display: flex;
            flex-direction: column-reverse;
            width: 100%;
            max-width: none;
            margin: 0;
            overflow: visible;
            border-radius: 0;
        
    }
    .contacts-map__card {
            position: static;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 24px;
            width: calc(100% - 32px);
            min-height: 464.19px;
            margin: 0 auto;
            padding: 40px 0;
            overflow: visible;
            border-radius: 0;
            background: var(--white);
            box-shadow: none;
        
    }
    .contacts-map__photo {
            width: 100%;
            height: auto;
            aspect-ratio: 343 / 228.19;
            padding: 0;
            overflow: hidden;
            border-radius: 12px;
        
    }
    .contacts-map__photo img {
            display: block;
            width: 100%;
            height: 100%;
            border-radius: 12px;
            object-fit: cover;
        
    }
    .contacts-map__content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
            width: 100%;
            min-height: 132px;
            padding: 0;
        
    }
    .contacts-map__phone {
            width: 100%;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 18px;
            font-weight: var(--font-weight-semibold);
            line-height: 24px;
        
    }
    .contacts-map__address,
        .contacts-map__time {
            width: 100%;
            margin: 0;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 14px;
            line-height: 20px;
        
    }
    .contacts-map__address {
            font-weight: var(--font-weight-medium);
        
    }
    .contacts-map__time {
            font-weight: var(--font-weight-semibold);
        
    }
    .contacts-map__frame,
        .contacts-map__frame .bx-yandex-view-layout,
        .contacts-map__frame .bx-yandex-view-map,
        .contacts-map__frame .bx-yandex-map {
            width: 100%;
            height: 400px !important;
            min-height: 400px;
        
    }
}

.block_recvizits,
.block_recvizits *,
.contacts-map,
.contacts-map * {
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .block_recvizits__container {
            grid-template-columns: minmax(0, 1fr);
        
    }
}

@media (max-width: 768px) {
    .contacts-map {
            width: 100%;
            margin: 0;
            padding: 0;
            background: var(--white);
        
    }
    .contacts-map__inner {
            display: flex;
            flex-direction: column-reverse;
            width: 100%;
            max-width: none;
            margin: 0;
            overflow: visible;
            border-radius: 0;
        
    }
    .contacts-map__card {
            position: static;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 24px;
            width: calc(100% - 32px);
            min-height: 0;
            margin: 0 auto;
            padding: 20px 0 32px;
            overflow: visible;
            border-radius: 0;
            background: var(--white);
            box-shadow: none;
        
    }
    .contacts-map__photo {
            width: 100%;
            height: auto;
            aspect-ratio: 343 / 228.19;
            padding: 0;
            overflow: hidden;
            border-radius: 12px;
        
    }
    .contacts-map__photo img {
            width: 100%;
            height: 100%;
            border-radius: 12px;
            object-fit: cover;
        
    }
    .contacts-map__content {
            width: 100%;
            min-height: 0;
            padding: 0;
        
    }
    .contacts-map__frame,
        .contacts-map__frame .bx-yandex-view-layout,
        .contacts-map__frame .bx-yandex-view-map,
        .contacts-map__frame .bx-yandex-map {
            width: 100%;
            height: 400px !important;
            min-height: 400px;
        
    }
    .block_recvizits {
            width: 100%;
            padding: 48px 0 28px;
            overflow: hidden;
        
    }
    .block_recvizits > .container {
            width: calc(100% - 32px);
            max-width: none;
            margin-inline: auto;
        
    }
    .block_recvizits__title {
            margin-bottom: 20px;
            font-size: 24px;
            line-height: 32px;
        
    }
    .block_recvizits__container {
            gap: 24px;
            width: 100%;
        
    }
    .block_recvizits__info,
    .block_recvizits__card,
    .block_recvizits__list {
            width: 100%;
            min-width: 0;
            max-width: none;
        
    }
    .block_recvizits__card {
            padding: 16px;
            border-radius: 12px;
        
    }
    .block_recvizits__list {
            gap: 12px;
        
    }
    .block_recvizits__item {
            min-width: 0;
            min-height: 0;
            padding: 16px;
            border-radius: 12px;
        
    }
    .block_recvizits__value {
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 15px;
            line-height: 20px;
            overflow-wrap: anywhere;
            word-break: normal;
        
    }
}

@media (max-width: 600px) {
    .block_recvizits__list {
            grid-template-columns: minmax(0, 1fr);
        
    }
    .block_recvizits__item,
        .block_recvizits__item--wide {
            grid-column: auto;
        
    }
}

.block_recvizits > .container > .block_recvizits__title {
    margin-bottom: 32px;
}

@media (min-width: 769px) {
    .contacts-map {
            width: 100%;
            padding: 24px 0 64px;
        
    }
    .contacts-map__inner {
            width: 1440px;
            max-width: calc(100% - 80px);
            margin-inline: auto;
        
    }
    .contacts-map__card {
            left: clamp(40px, 12vw, 240px);
        
    }
}

@media (min-width: 769px) and (max-width: 1199px) {
    .contacts-map__inner {
            display: grid;
            grid-template-columns: minmax(0, 1fr) clamp(320px, 36vw, 420px);
            align-items: stretch;
            gap: 32px;
            width: auto;
            max-width: calc(100% - 48px);
            overflow: visible;
            border-radius: 20px;
        
    }
    .contacts-map__frame {
            grid-row: 1;
            grid-column: 1;
            height: 520px;
            overflow: hidden;
            border-radius: 20px;
        
    }
    .contacts-map__card {
            position: static;
            grid-row: 1;
            grid-column: 2;
            align-self: stretch;
            gap: 20px;
            width: 100%;
            height: 520px;
            margin: 0;
            border-radius: 20px;
        
    }
    .contacts-map__photo {
            height: 300px;
            padding: 16px 16px 0;
        
    }
    .contacts-map__content {
            padding: 0 16px 24px;
        
    }
    .block_recvizits__container {
            grid-template-columns: minmax(0, 1fr);
            gap: 32px;
        
    }
}

@media (min-width: 769px) and (max-width: 900px) {
    .contacts-map__inner {
            gap: 24px;
        
    }
    .contacts-map__photo {
            height: 280px;
        
    }
}

@media (max-width: 768px) {
    .block_recvizits > .container > .block_recvizits__title {
            margin-bottom: 20px;
        
    }
}

@media (min-width: 769px) {
    .contacts-map__inner {
            display: block;
            width: 100%;
            max-width: none;
            margin: 0;
            overflow: hidden;
            border-radius: 0;
        
    }
    .contacts-map__frame {
            width: 100%;
            height: 600px;
            overflow: hidden;
            border-radius: 0;
        
    }
    .contacts-map__frame .bx-yandex-view-layout,
        .contacts-map__frame .bx-yandex-view-map,
        .contacts-map__frame .bx-yandex-map {
            width: 100% !important;
            height: 600px !important;
        
    }
    .contacts-map__card {
            position: absolute;
            right: auto;
            bottom: 40px;
            left: clamp(40px, 12vw, 240px);
            width: min(540px, calc(100% - 80px));
            height: auto;
            margin: 0;
        
    }
}

/* footer */

.site-footer {
    padding: 60px 0 0;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 4px solid var(--red);
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 70px;
    padding-bottom: 50px;
}
.brand--footer {
display: inline-block;
    margin-bottom: 20px;
}
.brand--footer .brand__logo {
    width: 210px;
}
.site-footer p {
    color: #74777b;
    font-size: 13px;
}
.site-footer h3 {
    margin: 0 0 18px;
    font-size: 14px;
}
.site-footer__grid>div:not(:first-child) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.site-footer__grid a:not(.brand) {
    color: #64676c;
    font-size: 13px;
}
.site-footer__grid a:hover {
    color: var(--red);
}
.site-footer__phone {
    color: var(--ink) !important;
    font-size: 19px !important;
    font-weight: 700;
}
.site-footer__bottom {
    min-height: 62px;
    border-top: 1px solid #B6BBC1;
    display: flex;
    justify-content: space-between;
    align-items: center;
	font-style: italic;
	font-weight: var(--font-weight-regular);
	font-size: 14px;
	line-height: 20px;
	color: var(--main-color);
}

@media (max-width: 800px) {
    .site-footer__grid {
            grid-template-columns: 1fr 1fr;
            gap: 35px;
        
    }
}

@media (max-width: 520px) {
    .site-footer__grid {
            grid-template-columns: 1fr;
        
    }
    .site-footer__bottom {
            padding: 18px 0;
            gap: 10px;
            align-items: flex-start;
            flex-direction: column;
        
    }
}

.site-footer {
    padding: 12px 0 14px;
    background: #fff;
    color: #4a4b68;
    border-top: 1px solid #B6BBC1;
    font-family: "Open Sans", sans-serif;
}
.site-footer a {
    text-decoration: none;
    transition: .2s ease;
}
.site-footer__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 11px;
    border-bottom: 1px solid #B6BBC1;
}
.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
	padding: 29.5px 0;
	gap: 55.38px;
}
.site-footer__nav a {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #3E3D59;
}
.site-footer__nav a:hover {
	color: #F53C15;
}
.site-footer__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.site-footer__button {
	gap: 12px;
	padding: 12px 20px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 14px;
	line-height: 100%;
	text-transform: uppercase;
	color: #FFFFFF;
}
.site-footer__button--gray {
    background: #9d988f;
    color: #fff;
}
.site-footer__button--gray:hover {
    background: #ff5a36;
    color: #fff;
}
.site-footer__button--gray a:hover {
    color: #fff;
}
.site-footer__button--accent {
    background: #ff5a36;
    color: #fff;
}
.site-footer__button--accent:hover {
    background: #9d988f;
    color: #fff;
}
.site-footer__main {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 40px;
    padding: 22px 0 20px;
}
.site-footer__company {
    min-width: 0;
}
.site-footer__contacts {
    gap: 10px;
    display: flex;
    flex-direction: column;
}
.brand--footer .brand__logo {
    display: block;
    max-width: 240px;
    width: 100%;
    height: auto;
}
.site-footer__contacts p,
.site-footer__contacts a {
    display: block;
    line-height: 1.15;
    color: #676885;
	font-size: 16px;
}
.site-footer__contacts a {
    font-weight: var(--font-weight-semibold);
}
.site-footer__social-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
	font-weight: var(--font-weight-semibold);
	font-size: 16px;
	line-height: 24px;	
}
.site-footer__social-row > a {
    margin-bottom: 0;
}
.site-footer__socials {
    display: flex;
    align-items: center;
    gap: 10px;
}
.site-footer__socials a {
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    color: #a5a7b8;
    text-transform: lowercase;
}
.site-footer__menu-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(300px, 1fr));
    /*gap: 32px;*/
	font-size: 16px;
	line-height: 24px;
	color: var(--main-color);
}
.site-footer__menu-col h3 {
    margin: 0 0 8px;
	font-weight: var(--font-weight-semibold);
	font-size: 16px;
	color: var(--main-color);
}
.site-footer__menu-col a {
    display: block;
    margin-bottom: 8px;
    line-height: 24px;
	font-size: 16px;
	color: var(--main-color);
	font-weight: var(--font-weight-regular);
}
.site-footer__menu-col a:last-child {
    margin-bottom: 0;
}
.site-footer__bottom {

}
.site-footer__bottom-links {
    display: flex;
    align-items: center;
    gap: 24px;
}
.site-footer__socials a:hover {
    color: #3E3D59;
}
.social-link svg {
    width: 24px;
    height: 24px;
    fill: #3E3D59;
    transition: fill .3s;
}
.social-link:hover svg {
    fill: #3E3D59;
}

@media (max-width: 1100px) {
    .site-footer__topbar,
        .site-footer__main,
        .site-footer__bottom {
            gap: 20px;
        
    }
    .site-footer__main {
            grid-template-columns: 1fr;
        
    }
    .site-footer__menu-grid {
            grid-template-columns: repeat(2, minmax(180px, 1fr));
        
    }
}

@media (max-width: 767px) {
    .site-footer {
            padding: 20px 0;
        
    }
    .site-footer__topbar,
        .site-footer__bottom {
            flex-direction: column;
            align-items: flex-start;
        
    }
    .site-footer__actions,
        .site-footer__bottom-links {
            flex-wrap: wrap;
        
    }
    .site-footer__menu-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        
    }
}

@media (max-width: 1460px) {
    .site-footer {
            --site-footer-social: #9e9eac;
            box-sizing: border-box;
            width: 100%;
            margin: 0;
            padding: 28px 0 2px;
            border-top: 0;
            border-bottom: 2px solid var(--red);
            background: var(--white);
            color: var(--main-color);
        
    }
    .site-footer > .container {
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: none;
            margin: 0;
        
    }
    .site-footer__topbar,
        .site-footer__main {
            display: contents;
        
    }
    .site-footer__company {
            order: 1;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
            width: calc(100% - 32px);
            min-height: 148px;
            margin: 0 16px;
        
    }
    .site-footer .brand--footer {
            display: block;
            width: 140px;
            height: 48px;
            margin: 0;
        
    }
    .site-footer .brand--footer .brand__logo {
            display: block;
            width: 140px;
            max-width: 140px;
            height: 48px;
            object-fit: contain;
            object-position: left center;
        
    }
    .site-footer__contacts {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
            width: 100%;
            min-height: 80px;
        
    }
    .site-footer__contacts p,
        .site-footer__contacts a {
            margin: 0;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 14px;
            line-height: 20px;
        
    }
    .site-footer__contacts p {
            font-weight: var(--font-weight-regular);
        
    }
    .site-footer__contacts a {
            font-weight: var(--font-weight-semibold);
        
    }
    .site-footer__social-row {
            display: flex;
            flex-wrap: nowrap;
            align-items: center;
            gap: 12px;
            width: 100%;
            height: 24px;
        
    }
    .site-footer__socials {
            display: flex;
            align-items: center;
            gap: 0;
        
    }
    .site-footer__socials a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 24px;
            color: var(--site-footer-social);
        
    }
    .site-footer__socials svg {
            display: block;
            width: 24px;
            height: 24px;
        
    }
    .site-footer__nav {
            order: 2;
            display: grid;
            grid-template-rows: repeat(4, 20px);
            grid-auto-flow: column;
            grid-auto-columns: minmax(0, 1fr);
            column-gap: 40px;
            row-gap: 12px;
            width: calc(100% - 32px);
            height: 116px;
            margin: 32px 16px 0;
            padding: 0;
            border: 0;
        
    }
    .site-footer__nav a {
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: var(--font-weight-semibold);
            line-height: 20px;
            white-space: nowrap;
        
    }
    .site-footer__actions {
            order: 3;
            display: flex;
            flex-wrap: nowrap;
            align-items: center;
            gap: 12px;
            width: calc(100% - 32px);
            max-width: 343px;
            height: 36px;
            margin: 32px 16px 0;
        
    }
    .site-footer__button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 0;
            height: 36px;
            padding: 10px 16px;
            border-radius: 8px;
            color: var(--white);
            font-family: var(--font-main);
            font-size: 12px;
            font-weight: var(--font-weight-semibold);
            line-height: 16px;
            text-transform: uppercase;
            white-space: nowrap;
        
    }
    .site-footer__button:first-child {
            flex: 1 1 162px;
            background: var(--muted);
        
    }
    .site-footer__button:last-child {
            flex: 0 0 169px;
            background: var(--red);
        
    }
    .site-footer__menu-grid {
            order: 4;
            display: flex;
            flex-direction: column;
            gap: 12px;
            width: calc(100% - 32px);
            min-height: 230px;
            margin: 32px 16px 0;
        
    }
    .site-footer__menu-col {
            display: block;
            width: 100%;
            padding: 0;
        
    }
    .site-footer__menu-col h3 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            height: 24px;
            margin: 0;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 16px;
            font-weight: var(--font-weight-semibold);
            line-height: 24px;
            cursor: pointer;
        
    }
    .site-footer__menu-col h3::after {
            content: '';
            flex: 0 0 9px;
            width: 9px;
            height: 9px;
            margin-right: 7px;
            border-right: 1.5px solid var(--site-footer-social);
            border-bottom: 1.5px solid var(--site-footer-social);
            transform: rotate(45deg) translateY(-2px);
            transition: transform .2s ease, border-color .2s ease;
        
    }
    .site-footer__menu-col > a {
            display: none;
            width: 100%;
            margin: 0;
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: var(--font-weight-regular);
            line-height: 20px;
        
    }
    .site-footer__menu-col.is-open {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding-bottom: 12px;
        
    }
    .site-footer__menu-col.is-open h3 {
            margin-bottom: 2px;
        
    }
    .site-footer__menu-col.is-open h3::after {
            border-color: var(--main-color);
            transform: rotate(225deg) translate(-2px, -2px);
        
    }
    .site-footer__menu-col.is-open > a {
            display: block;
        
    }
    .site-footer__bottom {
            order: 5;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 10px;
            width: 100%;
            min-height: 90px;
            margin-top: 24px;
            padding: 20px 16px;
            border-top: 1px solid var(--calculator-control-border, #b6bbc1);
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: var(--font-weight-regular);
            font-style: italic;
            line-height: 20px;
        
    }
    .site-footer__bottom-links {
            display: flex;
            flex-wrap: nowrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            width: 100%;
        
    }
    .site-footer__bottom a,
        .site-footer__bottom span {
            color: var(--main-color);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: var(--font-weight-regular);
            font-style: italic;
            line-height: 20px;
            white-space: nowrap;
        
    }
}

@media (min-width: 1461px) {
    .site-footer__main,
        .site-footer__menu-grid,
        .site-footer__menu-col {
            min-width: 0;
        
    }
    .site-footer__menu-grid {
            width: 100%;
            grid-template-columns: repeat(4, minmax(0, 1fr));
        
    }
    .site-footer__menu-col a,
        .site-footer__menu-col h3 {
            max-width: 100%;
            overflow-wrap: break-word;
        
    }
}

.site-footer {
    position: relative;
    border-top: 0;
}
.site-footer::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(100%, 1440px);
    height: 1px;
    background: #B6BBC1;
    transform: translateX(-50%);
    content: "";
}
.site-footer__menu-col a {
    font-size: 14px;
}

.site-page--internal h1 {
    margin: 20px 0 40px !important;
    transform: none;
}
form input:not([type="range"]):not([type="checkbox"]):not([type="radio"]):focus,
form textarea:focus,
form select:focus {
    border-color: #E31D01;
    outline: none;
    box-shadow: 0 0 0 1px #E31D01;
}

/* Global 404 page */
.error-page {
    padding: 56px 0 96px;
    color: var(--main-color);
}
.error-page__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 520px;
    text-align: center;
}
.error-page__code {
    margin-bottom: 20px;
    color: var(--red);
    font-family: var(--font-main);
    font-weight: var(--font-weight-extrabold);
    font-size: clamp(112px, 18vw, 240px);
    line-height: 0.8;
}
.site-page--internal .error-page__title,
.error-page__title {
    margin: 0 0 16px !important;
    color: var(--main-color);
    font-family: var(--font-main);
    font-weight: var(--font-weight-semibold);
    font-size: 32px;
    line-height: 40px;
}
.error-page__text {
    max-width: 620px;
    margin: 0;
    color: var(--main-color);
    font-family: var(--font-main);
    font-weight: var(--font-weight-regular);
    font-size: 14px;
    line-height: 20px;
}
.error-page__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}
.error-page__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 172px;
    min-height: 44px;
    padding: 10px 20px;
    border: 1px solid var(--red);
    border-radius: 8px;
    font-family: var(--font-main);
    font-weight: var(--font-weight-semibold);
    font-size: 14px;
    line-height: 20px;
    transition: color 0.2s ease, background-color 0.2s ease;
}
.error-page__button--primary {
    color: var(--white);
    background: var(--red);
}
.error-page__button--secondary {
    color: var(--main-color);
    background: var(--white);
}
@media (hover: hover) {
    .error-page__button--primary:hover {
        background: var(--red-dark);
    }
    .error-page__button--secondary:hover {
        color: var(--white);
        background: var(--red);
    }
}
@media (max-width: 767px) {
    .error-page {
        padding: 40px 0 64px;
    }
    .error-page__inner {
        min-height: 420px;
    }
    .error-page__code {
        margin-bottom: 24px;
        font-size: 112px;
    }
    .error-page__title {
        font-size: 24px;
        line-height: 32px;
    }
    .error-page__actions {
        flex-direction: column;
        width: 100%;
    }
    .error-page__button {
        width: 100%;
    }
}

/* Sitemap */
.site-map-page {
    padding: 0 0 80px;
    color: var(--main-color);
}

.site-map-page__title {
    margin: 20px 0 40px;
    color: var(--main-color);
    font-size: 32px;
    font-weight: var(--font-weight-semibold);
    line-height: 40px;
}

.site-map-page__grid {
    display: block;
}

.site-map-page__group {
    margin: 0 0 32px;
}

.site-map-page__group:last-child {
    margin-bottom: 0;
}

.site-map-page__group-title {
    margin: 0 0 20px;
    color: var(--main-color);
    font-size: 20px;
    font-weight: var(--font-weight-semibold);
    line-height: 24px;
}

.site-map-page__group-title a,
.site-map-page__item a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease;
}

.site-map-page__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-map-page__group--wide .site-map-page__list {
    column-count: 1;
}

.site-map-page__item {
    position: relative;
    margin: 0 0 12px;
    padding-left: 18px;
    break-inside: avoid;
    color: var(--main-color);
    font-size: 14px;
    font-weight: var(--font-weight-regular);
    line-height: 18px;
}

.site-map-page__item:last-child {
    margin-bottom: 0;
}

.site-map-page__item::before {
    position: absolute;
    top: 6px;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    content: "";
}

.site-map-page__item--depth-2 {
    margin-left: 16px;
}

.site-map-page__item--depth-3 {
    margin-left: 32px;
}

@media (hover: hover) {
    .site-map-page__group-title a:hover,
    .site-map-page__item a:hover {
        color: var(--red);
    }
}

@media (max-width: 767px) {
    .site-map-page {
        padding-bottom: 64px;
    }

    .site-map-page__title {
        margin: 20px 0 32px;
        font-size: 28px;
        line-height: 36px;
    }

    .site-map-page__group {
        margin-bottom: 28px;
    }

    .site-map-page__item--depth-2 {
        margin-left: 12px;
    }

    .site-map-page__item--depth-3 {
        margin-left: 24px;
    }
}


img[src^="//counter.yadro.ru/hit"] {
    display: none !important;
}