﻿/* Base reset for predictable layout behavior */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

#services,
#price,
#reviews,
#contacts {
    scroll-margin-top: 20px;
}

body {
    min-height: 100vh;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-feature-settings: "liga" 1, "calt" 1;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    color: rgb(0, 0, 0);
}

/* Media should not break layout */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

/* Better defaults for typography blocks */
h1,
h2,
h3,
h4,
h5,
h6,
p {
    overflow-wrap: break-word;
}

/* Links and lists */
a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

/* Inputs inherit typography by default */
input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

/* Useful utility container */
.container {
    width: 100%;
    max-width: 1450px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

.container2 {
    width: 100%;
    max-width: 1178px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

.header-block {
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    gap: 15px;
}

.site-logo {
    margin-top: auto;
    margin-bottom: auto;
}

.site-logo>img {
    max-height: 70px;
    width: auto;
}

.home-menu {
    margin: auto;
}

.home-menu>nav>ul {
    display: flex;
    gap: 30px;
}

.home-menu>nav>ul>li>a {
    display: inline-block;
    position: relative;
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
}

.home-menu>nav>ul>li>a::after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    width: 100%;
    height: 3px;
    background: #000;
    pointer-events: none;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.home-menu>nav>ul>li>a:hover::after,
.home-menu>nav>ul>li>a:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

.contact-button {
    margin-top: auto;
    margin-bottom: auto;
}

.button1 {
    display: flex;
    gap: 15px;
    background-color: black;
    border-radius: 100px;
    padding: 10px 20px;
}

.button1>img {
    max-height: 45px;
    width: auto;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(84deg) brightness(105%) contrast(102%);
}

.button1>span {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    margin-top: auto;
    margin-bottom: auto;
}

.section-cta {
    margin-top: 30px;
    display: flex;
}

.section-cta-center {
    justify-content: center;
}

.main-block1-slide-content {
    position: relative;
    z-index: 1;
    padding-top: 250px;
    padding-bottom: 250px;
    touch-action: pan-y;
}

.main-block1-slide {
    position: relative;
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(80px);
    z-index: 1;
}

.main-block1-slide-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    pointer-events: none;
}

.button-line {
    display: flex;
}

.main-block1-slide-content h1 {
    color: #ffffff;
    font-size: 60px;
    margin-bottom: 10px;
    font-weight: 600;
}

.main-block1-slide-content p {
    color: #ffffff;
    margin-bottom: 50px;
    font-size: 20px;
    font-weight: 600;
}

.main-block1 {
    position: relative;
    display: grid;
    overflow: hidden;
}

.main-block1-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    z-index: 2;
}

.main-block1-slide.is-entering-next {
    visibility: visible;
    animation: mainBlockEnterNext 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
    z-index: 2;
}

.main-block1-slide.is-entering-prev {
    visibility: visible;
    animation: mainBlockEnterPrev 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
    z-index: 2;
}

.main-block1-slide.is-leaving-next {
    visibility: visible;
    pointer-events: none;
    animation: mainBlockLeaveNext 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
    z-index: 1;
}

.main-block1-slide.is-leaving-prev {
    visibility: visible;
    pointer-events: none;
    animation: mainBlockLeavePrev 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
    z-index: 1;
}

@keyframes mainBlockEnterNext {
    from {
        opacity: 0;
        transform: translateX(18%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes mainBlockLeaveNext {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-14%);
    }
}

@keyframes mainBlockEnterPrev {
    from {
        opacity: 0;
        transform: translateX(-18%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes mainBlockLeavePrev {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(14%);
    }
}

.main-block1-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-block1-arrow>span {
    margin: 0;
    font-size: 26px;
    line-height: 1;
}

.main-block1-arrow-left {
    left: 25px;
}

.main-block1-arrow-right {
    right: 25px;
}

.main-block1-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    z-index: 3;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-block1-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background-color: #b7b7b7;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.main-block1-dot:hover,
.main-block1-dot:focus-visible {
    transform: scale(1.12);
}

.main-block1-dot.is-active {
    background-color: #ffffff;
}

@media (max-width: 991px) {
    .main-block1-arrow-left {
        left: 12px;
    }

    .main-block1-arrow-right {
        right: 12px;
    }
}


.main-block2 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.main-block2-sod {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.main-block2-sod>div {
    width: calc(100% / 2 - (20px * 1 / 2));
}

.main-block2-sod-right>h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 15px;
}

.main-block2-sod-right>p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 40px;
}

.main-block2-sod-right-content-element {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.main-block2-sod-right-content-element>img {
    width: 60px;
    height: auto;
    margin-top: auto;
    margin-bottom: auto;
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(290deg) brightness(93%) contrast(103%);
}

.main-block2-sod-right-content-element-cont {
    width: calc(100% - 60px - 20px);
}

.main-block2-sod-right-content-element-cont>h3 {
    font-size: 21.6px;
    font-weight: 800;
    line-height: 25.9167px;
    margin-bottom: 10px;
}

.main-block2-sod-right-content-element-cont>p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.main-block2-sod-right>.main-block2-sod-right-content-element:not(:last-of-type) {
    margin-bottom: 40px;
}

.main-block2-sod-left-kr {
    animation: mainBlock2Spin 20s linear infinite;
    transform-origin: center center;
}

@keyframes mainBlock2Spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.main-block2-sod-left {
    position: relative;
}

.people-block-element {
    position: absolute;
    top: 0;
}

.cont-pov-1 {
    width: 184px;
    height: 184px;
    background-color: black;
    border-radius: 100%;
    display: flex;
    position: absolute;
    top: 10%;
    left: 5%;
}

.cont-pov-1>div {
    margin: auto;
}

.cont-pov-1-lvl1 {
    color: white;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    margin-bottom: 10px;
}

.cont-pov-1-lvl2 {
    color: white;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    text-align: center;
}

.cont-pov-2 {
    width: 184px;
    height: 184px;
    background-color: black;
    border-radius: 100%;
    display: flex;
    position: absolute;
    top: 30%;
    right: 5%;
}

.cont-pov-2>div {
    margin: auto;
}

.main-block3 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.main-block3 {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.main-block3-content>h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 15px;
    text-align: center;
}

.main-block3-content>p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 40px;
    text-align: center;
}

.main-block3-content-slide {
    display: flex;
    gap: 60px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.main-block3-content-slide::-webkit-scrollbar {
    display: none;
}

.main-block3-content-slide-slide-element {
    flex: 0 0 calc((100% - (60px * 3)) / 4);
    border-radius: 50px;
    border: 5px solid white;
    padding: 20px;
    min-height: 500px;
    background-position: center center;
    background-size: cover;
    display: flex;
    scroll-snap-align: start;
}

.main-block3-content-slide-slide-element-content {
    width: 100%;
    margin-top: auto;
}

.main-block3-content-slide-slide-element-content-ico {
    margin-left: auto;
    margin-right: auto;
    width: 90px;
    height: 90px;
    border-radius: 100%;
    display: flex;
    background-color: white;
    margin-bottom: 20px;
}

.main-block3-content-slide-slide-element-content-ico>img {
    height: 55px;
    width: auto;
    margin: auto;
}

.main-block3-content-slide-slide-element-content>h3 {
    background-color: white;
    border-radius: 20px;
    padding: 8px;
    text-align: center;
    font-size: 21px;
    font-weight: 700
}

.main-block3-slider-arrows {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.main-block3-arrow {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #ffffff;
    font-size: 26px;
    line-height: 1;
}

@media (max-width: 1199px) {
    .main-block3-content-slide-slide-element {
        flex: 0 0 calc((100% - 60px) / 2);
    }
}

@media (max-width: 767px) {
    .main-block3-content-slide-slide-element {
        flex: 0 0 calc((100% - 16px) / 2);
    }
}

.main-block4 {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #ffffff;
}

.main-block4-sod {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.main-block4-sod>div {
    width: calc(100% / 2 - (30px * 1 / 2));
}

.main-block4-left>h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 15px;
}

.main-block4-left>p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.main-block4-right {
    margin-top: auto;
    margin-bottom: auto;
}

.main-block4-form-row {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}

.main-block4-form-row>input,
.main-block4-form-submit {
    background-color: #efefef;
    border: 1px solid #ececec;
    border-radius: 100px;
    box-shadow: 0 3px 0 #000000;
}

.main-block4-form-row>input {
    background-color: #ffffff;
    box-shadow: 0 3px 0 #000000, 0 4px 14px rgba(0, 0, 0, 0.08);
    width: calc(100% / 3 - (25px * 2 / 3));
    height: 70px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #8e8e8e;
    outline: none;
}

.main-block4-form-row>input::placeholder {
    color: #8e8e8e;
}

.main-block4-form-submit {
    background-color: #ffffff;
    width: 100%;
    min-height: 70px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #8e8e8e;
}

@media (max-width: 1400px) {
    .main-block4-form-row>input {
        height: 62px;
    }

    .main-block4-form-submit {
        min-height: 62px;
    }
}

@media (max-width: 991px) {
    .main-block4-sod>div {
        width: 100%;
    }

    .main-block4-left>h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .main-block4-left>p {
        font-size: 16px;
        line-height: 24px;
    }

    .main-block4-form-row {
        flex-wrap: wrap;
        gap: 15px;
    }

    .main-block4-form-row>input {
        width: 100%;
        height: 56px;
    }

    .main-block4-form-submit {
        min-height: 56px;
    }
}

.main-block5 {
    padding-top: 60px;
    padding-bottom: 60px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.main-block5-head {
    text-align: center;
    margin-bottom: 40px;
}

.main-block5-head-icon {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background-color: #000000;
    color: #ffffff;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-block5-head-icon>img {
    width: 52px;
    height: 52px;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(132deg) brightness(105%) contrast(102%);
}

.main-block5-head>h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 15px;
}

.main-block5-head>p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.main-block5-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.main-block5-track::-webkit-scrollbar {
    display: none;
}

.main-block5-card {
    flex: 0 0 calc((100% - (30px * 3)) / 4);
    background-color: #f4f4f4;
    border-radius: 10px;
    padding: 56px 40px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
}

.main-block5-card>p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 28px;
}

.main-block5-card>img {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    object-fit: cover;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 14px;
}

.main-block5-card>h3 {
    margin-top: 0;
    font-size: 21px;
    font-weight: 700;
    line-height: 25px;
}

.main-block5-dots {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.main-block5-dot {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: 1px solid #000000;
    background-color: #ffffff;
}

.main-block5-dot.is-active {
    background-color: #000000;
}

@media (max-width: 1400px) {
    .main-block5-card {
        padding: 36px 24px 28px;
    }
}

@media (max-width: 1199px) {
    .main-block5-card {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}

@media (max-width: 767px) {
    .main-block5-card {
        flex: 0 0 calc((100% - 16px) / 2);
    }

    .main-block5-track {
        gap: 16px;
    }
}

.main-block6,
.main-block7,
.main-block8 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.main-block6 {
    background-color: #f7f7f7;
}

.main-block6-head>h2,
.main-block7-head>h2,
.main-block8-head>h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 15px;
    text-align: center;
}

.main-block6-head>p,
.main-block7-head>p,
.main-block8-head>p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    margin-bottom: 40px;
}

.main-block6-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.main-block6-item {
    width: calc(100% / 2 - (20px * 1 / 2));
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid #ececec;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.main-block6-item>h3 {
    font-size: 21px;
    font-weight: 700;
    line-height: 25px;
}

.main-block6-item>p {
    font-size: 21px;
    font-weight: 700;
    line-height: 25px;
    white-space: nowrap;
}

.main-block7-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.main-block7-image {
    margin-bottom: 24px;
}

.main-block7-image>img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
}

.main-block7-card {
    width: calc(100% / 2 - (20px * 1 / 2));
    background-color: #f7f7f7;
    border-radius: 20px;
    padding: 24px;
}

.main-block7-card>h3 {
    font-size: 21px;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 10px;
}

.main-block7-card>p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.main-block8 {
    background-color: #f7f7f7;
}

.main-block8-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.main-block8-item {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #ececec;
    padding: 18px 20px;
}

.main-block8-item>summary {
    list-style: none;
    cursor: pointer;
    font-size: 21px;
    font-weight: 700;
    line-height: 25px;
    padding-right: 34px;
    position: relative;
}

.main-block8-item>summary::-webkit-details-marker {
    display: none;
}

.main-block8-item>summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    line-height: 1;
}

.main-block8-item[open]>summary::after {
    content: "-";
}

.main-block8-item>p {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

@media (max-width: 991px) {
    .main-block6-item,
    .main-block7-card {
        width: 100%;
    }

    .main-block7-image>img {
        height: 220px;
    }

    .main-block6-item {
        flex-wrap: wrap;
    }

    .main-block6-item>h3,
    .main-block6-item>p,
    .main-block8-item>summary {
        font-size: 18px;
        line-height: 24px;
    }
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.menu-toggle>span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000000;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open>span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open>span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open>span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1200px) {
    .main-block1-slide-content {
        padding-top: 180px;
        padding-bottom: 180px;
    }

    .main-block1-slide-content h1 {
        font-size: 48px;
        line-height: 1.15;
    }

    .main-block2-sod>div {
        width: 100%;
    }

    .main-block2-sod-left {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
    }

    .main-block4-form-row {
        flex-wrap: wrap;
    }

    .main-block4-form-row>input {
        width: 100%;
    }
}

@media (max-width: 991px) {
    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 1100;
    }

    .header-block {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }

    .menu-toggle {
        display: flex;
        z-index: 1300;
    }

    .contact-button {
        display: block;
        width: 100%;
        order: 3;
        margin-top: 6px;
        margin-bottom: 0;
    }

    .contact-button>.button1 {
        width: 100%;
        justify-content: center;
        padding: 8px 14px;
        gap: 10px;
    }

    .contact-button>.button1>img {
        max-height: 26px;
    }

    .contact-button>.button1>span {
        font-size: 14px;
    }

    .home-menu {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        max-width: 86vw;
        height: 100vh;
        background-color: #ffffff;
        margin: 0;
        padding: 88px 22px 26px;
        z-index: 1200;
        transition: right 0.25s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
    }

    .home-menu.is-open {
        right: 0;
    }

    .home-menu>nav>ul {
        flex-direction: column;
        gap: 18px;
    }

    .home-menu>nav>ul>li>a {
        font-size: 20px;
        line-height: 26px;
    }

    .home-menu>nav>ul>li>a::after {
        top: calc(100% + 6px);
    }

    .main-block1-slide-content {
        padding-top: 140px;
        padding-bottom: 120px;
    }

    .main-block1-slide-content h1 {
        font-size: 38px;
        line-height: 1.15;
    }

    .main-block1-slide-content p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .main-block1-arrow {
        width: 44px;
        height: 44px;
    }

    .main-block1-arrow>span {
        font-size: 22px;
    }

    .people-block-element {
        width: 80%;
        left: 50%;
        transform: translateX(-50%);
    }

    .cont-pov-1,
    .cont-pov-2 {
        width: 140px;
        height: 140px;
    }

    .cont-pov-1-lvl1 {
        font-size: 30px;
        line-height: 32px;
    }

    .cont-pov-1-lvl2 {
        font-size: 14px;
        line-height: 20px;
    }

    .main-block5-card {
        padding: 28px 18px 24px;
    }
}

@media (max-width: 767px) {
    .site-logo>img {
        max-height: 58px;
    }

    .main-block1-slide-content {
        padding-top: 115px;
        padding-bottom: 90px;
    }

    .main-block1-slide-content h1 {
        font-size: 31px;
    }

    .main-block1-slide-content p {
        font-size: 16px;
        line-height: 24px;
    }

    .main-block1-arrow {
        display: none;
    }

    .main-block1-dots {
        bottom: 16px;
    }

    .main-block2,
    .main-block3,
    .main-block4,
    .main-block5,
    .main-block6,
    .main-block7,
    .main-block8 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .main-block2-sod {
        gap: 10px;
    }

    .main-block2-sod-left-kr {
        max-width: 240px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 1;
    }

    .main-block2-sod-left {
        position: relative;
        display: block;
        min-height: 385px;
        margin-bottom: 0;
    }

    .people-block-element {
        position: absolute;
        top: 18px;
        left: 50%;
        transform: translateX(-50%);
        width: 92%;
        max-width: 300px;
        margin: 0;
        z-index: 2;
    }

    .cont-pov-1,
    .cont-pov-2 {
        display: flex;
        position: absolute;
        width: 118px;
        height: 118px;
        z-index: 3;
    }

    .cont-pov-2 {
        top: 29%;
        right: 2%;
    }

    .cont-pov-1 {
        top: 12%;
        left: 2%;
    }

    .main-block2-sod-right {
        margin-top: 0;
    }

    .main-block2-sod-right>h2 {
        margin-bottom: 12px;
    }

    .main-block3-content-slide {
        gap: 16px;
    }

    .main-block3-content-slide-slide-element {
        min-height: 360px;
        border-radius: 22px;
    }

    .main-block3-content-slide-slide-element-content-ico {
        width: 72px;
        height: 72px;
        margin-bottom: 12px;
    }

    .main-block3-content-slide-slide-element-content-ico>img {
        height: 42px;
    }

    .main-block4-form-row>input,
    .main-block4-form-submit,
    .order-modal__form>input {
        height: 52px;
    }

    .main-block5-head-icon {
        width: 82px;
        height: 82px;
        margin-bottom: 14px;
    }

    .main-block5-head-icon>img {
        width: 42px;
        height: 42px;
    }

    .main-block5-card>img {
        width: 92px;
        height: 92px;
    }

    .main-block6-item {
        padding: 16px;
    }

    .main-block6-item>h3,
    .main-block6-item>p {
        font-size: 16px;
        line-height: 22px;
    }

    .cont-pov-1-lvl1 {
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 6px;
    }

    .cont-pov-1-lvl2 {
        font-size: 12px;
        line-height: 16px;
    }

    .main-block8-item {
        padding: 14px 14px;
    }
}

body.modal-open {
    overflow: hidden;
}

.order-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
}

.order-modal.is-open {
    display: block;
}

.order-modal__backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
}

.order-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(96%, 620px);
    margin: 6vh auto;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 28px 24px 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.order-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 100%;
    background-color: #f3f3f3;
    border: 1px solid #e6e6e6;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-modal__dialog>h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 10px;
}

.order-modal__dialog>p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 20px;
}

.order-modal__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.order-modal__form>input {
    width: 100%;
    height: 56px;
    border-radius: 100px;
    border: 1px solid #e6e6e6;
    background-color: #ffffff;
    box-shadow: 0 2px 0 #000000, 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 0 24px;
    font-size: 16px;
    line-height: 24px;
    outline: none;
}

.order-modal__form>.button1 {
    justify-content: center;
}

.site-footer {
    background-color: #000000;
    color: #ffffff;
    padding-top: 60px;
}

.site-footer-top {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 30px;
}

.site-footer-col {
    width: 20%;
}

.site-footer-col-form {
    width: 40%;
}

.site-footer-logo>img {
    max-width: 220px;
    width: 100%;
    height: auto;
    margin-bottom: 16px;
}

.site-footer-slogan {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #d9d9d9;
    margin-bottom: 18px;
}

.site-footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.site-footer-contacts li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 24px;
}

.site-footer-contacts li>span {
    width: 22px;
    text-align: center;
    color: #ffffff;
}

.site-footer-socials {
    display: flex;
    gap: 12px;
}

.site-footer-socials>a {
    width: 40px;
    height: 40px;
    border: 1px solid #ffffff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.site-footer-socials>a>img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(84deg) brightness(105%) contrast(102%);
}

.site-footer-col h3 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 14px;
}

.site-footer-col-form>p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 18px;
    color: #d9d9d9;
}

.site-footer-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer-form>input,
.site-footer-form>button {
    width: 100%;
    min-height: 52px;
    border-radius: 100px;
    border: 1px solid #e4e4e4;
    background: #f4f4f4;
    padding: 0 20px;
    font-size: 16px;
    line-height: 24px;
    color: #838383;
}

.site-footer-form>button {
    cursor: pointer;
}

.site-footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 24px;
}

.site-footer-links a::before {
    content: "—";
    font-weight: 700;
}

.site-footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 0;
    text-align: center;
}

.site-footer-bottom>p {
    font-size: 16px;
    line-height: 24px;
    color: #dddddd;
}

@media (max-width: 1200px) {
    .site-footer-top {
        flex-wrap: wrap;
    }

    .site-footer-col,
    .site-footer-col-form {
        width: calc(100% / 2 - (30px * 1 / 2));
    }

    .site-footer-form>input,
    .site-footer-form>button {
        font-size: 16px;
        min-height: 54px;
    }
}

@media (max-width: 991px) {
    .site-footer-top {
        gap: 22px;
    }

    .site-footer-col-form {
        width: 100%;
        order: 2;
    }

    .site-footer-col {
        width: calc(100% / 2 - (22px * 1 / 2));
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding-top: 40px;
    }

    .site-footer-top {
        flex-wrap: wrap;
        gap: 18px;
    }

    .site-footer-col,
    .site-footer-col-form {
        width: 100%;
    }

    .site-footer-logo>img {
        max-width: 180px;
    }

    .site-footer-contacts li,
    .site-footer-links a,
    .site-footer-bottom>p,
    .site-footer-slogan,
    .site-footer-col-form>p {
        font-size: 15px;
        line-height: 22px;
    }

    .site-footer-col h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .site-footer-form>input,
    .site-footer-form>button {
        font-size: 16px;
        min-height: 50px;
    }

    .site-footer-bottom {
        margin-top: 24px;
    }

    .site-footer-socials {
        gap: 10px;
    }

    .site-footer-socials>a {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
}

.page-404-body {
    background-color: #ffffff;
}

.error404 {
    padding-top: 70px;
    padding-bottom: 70px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.error404-card {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255, 255, 255, 0.92);
    border: 1px solid #ececec;
    border-radius: 30px;
    padding: 40px 34px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.error404-code {
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 16px;
}

.error404-card>h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 14px;
}

.error404-text {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 28px;
}

.error404-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.error404-actions>.button1 {
    min-width: 220px;
    justify-content: center;
}

.error404-call {
    background-color: #202020;
}

@media (max-width: 1200px) {
    .error404 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .error404-code {
        font-size: 96px;
    }

    .error404-card>h1 {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .error404 {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .error404-card {
        border-radius: 22px;
        padding: 28px 16px;
    }

    .error404-code {
        font-size: 72px;
        margin-bottom: 10px;
    }

    .error404-card>h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .error404-text {
        margin-bottom: 18px;
    }

    .error404-actions {
        gap: 10px;
    }

    .error404-actions>.button1 {
        width: 100%;
        min-width: 0;
    }
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus {
    clip: auto;
    width: auto;
    height: auto;
    margin: 0;
    padding: 12px 18px;
    top: 12px;
    left: 12px;
    z-index: 999999;
    background: #ffffff;
    color: #111827;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.12);
}

.garut-content-page {
    padding: 120px 0 80px;
    background: #f6f1e8;
}

.garut-entry {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.garut-entry h1 {
    margin-bottom: 24px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.garut-entry p,
.garut-entry li,
.garut-entry blockquote {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
}

.garut-entry a {
    color: #9a3412;
}

.garut-entry ul,
.garut-entry ol {
    padding-left: 1.25rem;
}

.current-menu-item > a,
.current_page_item > a,
.current-page-ancestor > a,
.current-menu-ancestor > a {
    color: #9a3412;
}

.garut-form-feedback {
    display: none;
    width: 100%;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.garut-form-feedback.is-success,
.garut-form-feedback.is-error {
    display: block;
}

.garut-form-feedback.is-success {
    color: #15803d;
}

.garut-form-feedback.is-error {
    color: #dc2626;
}

.garut-field-error {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.15);
}

.main-block4-form-submit[disabled],
.site-footer-form button[disabled],
.order-modal__form .button1[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

@media (max-width: 767px) {
    .garut-content-page {
        padding: 96px 0 64px;
    }

    .garut-entry {
        padding: 28px 22px;
        border-radius: 24px;
    }
}
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("../fonts/InterVariable.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: italic;
    font-weight: 100 900;
    font-display: swap;
    src: url("../fonts/InterVariable-Italic.woff2") format("woff2");
}
