@charset "UTF-8";
@font-face {
    font-family: Gilroy;
    src: url(../Gilroy-Regular.ttf);
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: Gilroy;
    src: url(../Gilroy-Bold.ttf);
    font-weight: 700;
    font-display: swap;
}
:root {
    --primary: #E9473F;
    --text: #606060
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}
body {
    font-family: Gilroy, sans-serif;
    background-color: #fffdf9;
    color: var(--text)
}
a, input { font-family: Gilroy, sans-serif}
a small small { opacity: 1 !important;}
a:hover {
    color: var(--primary);
    transition: color .3s ease
}
br { display: none}
.pre-line { white-space: pre-line}
.uppercase {
    text-transform: uppercase
}
.red {
    color: var(--primary) !important
}
.btn {
    border-radius: 30px;
    border: none;
    outline: none;
    background-color: #fff;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    transition: all .3s ease
}
.btn-red {
    background-color: var(--primary);
    color: #fff
}
.btn-white {
    border: 1px solid var(--primary);
    color: var(--primary)
}
.btn-to-red:hover {
    background-color: var(--primary);
    color: #fff;
    border: none
}
.btn-to-white:hover {
    border: 1px solid var(--primary);
    color: var(--primary);
    background-color: #fff
}
.btn-scale:hover {
    transform: scale(1.05)
}
.universal-title {
    font-weight: 700;
    font-size: 55px;
    line-height: 100%;
    text-align: center;
    color: #606060;
    margin-bottom: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between
}
.universal-title-one {
    margin: 0 auto 40px;
    display: block
}
.line-box {
    display: flex;
    align-items: center
}
.line-box--right {
    left: auto;
    right: 0;
    top: 50%;
    transform: translateY(-50%)
}
.the-line {
    height: 2px;
    width: 600px;
    background-color: var(--primary)
}
.the-square {
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    transform: rotate(45deg)
}
.custom-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative
}
.custom-checkbox input[type=checkbox] {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    height: 20px;
    width: 180px;
    outline: none
}
.checkbox-custom {
    position: relative;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 1px solid var(--primary);
    border-radius: 3px;
    flex-shrink: 0;
    transition: all .2s ease
}
.checkbox-custom:after {
    content: "";
    position: absolute;
    display: none;
    left: 8px;
    top: -8px;
    width: 10px;
    height: 24px;
    border: solid var(--primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg)
}
.custom-checkbox input[type=checkbox]:checked + .checkbox-custom:after {
    display: block
}
.checkbox-label {
    color: var(--primary);
    font-size: 12px;
    line-height: 16px;
    width: max-content
}
.checkbox-label a {
    color: var(--primary);
    text-decoration: underline
}
@media (max-width: 768px) {
    .checkbox-label {
        font-size: 14px
    }
    .universal-title {
        font-size: 25px;
        margin-bottom: 30px
    }
    .the-line {
        width: 60px
    }
    br {
        display: block
    }
}
*, :before, :after {
    box-sizing: border-box
}

body:has(dialog[open]) {
    overflow: hidden;
    height: 100dvh
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    white-space: nowrap
}

:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px
}

a {
    text-decoration: none
}

b, strong {
    font-weight: bolder
}

code, kbd, samp, pre {
    font-family: ui-monospace, SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

table {
    border-collapse: collapse;
    border-color: currentColor
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button {
    cursor: pointer
}

textarea {
    resize: vertical
}

button, [type=button], [type=reset], [type=submit] {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button
}

:-moz-focusring {
    outline: auto
}

:disabled {
    cursor: not-allowed
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0
}

legend {
    padding: 0
}

progress {
    vertical-align: baseline
}

::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto
}

::file-selector-button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    font: inherit
}

[type=search] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
    outline-offset: -2px
}

::-webkit-search-decoration {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

img, picture, video, canvas, svg {
    max-width: 100%;
    height: auto;
    object-fit: cover
}

details, summary {
    display: block
}

summary {
    cursor: pointer;
    list-style: none
}

dialog {
    border: 0;
    padding: 0;
    margin: auto
}
footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 100px;
    padding: 70px 0 25px;
    background-color: #fff;
    border-top-left-radius: 90px;
    border-top-right-radius: 90px;
    box-shadow: 0 -2px 10px #00000026
}

.footer__form-title {
    font-family: Bounded, sans-serif;
    font-weight: 400;
    font-size: 45px;
    line-height: 100%;
    text-align: center;
    color: var(--primary);
    margin-bottom: 15px
}

.footer__form-text {
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    text-align: center;
    color: var(--primary);
    margin-bottom: 40px
}

.footer__form {
    display: flex;
    gap: 30px
}

.footer__form-input, .footer__form-btn {
    width: 320px;
    height: 65px;
    border-radius: 30px;
    background-color: #fff;
    border: 1px solid #D8D8D8;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    color: #606060;
    outline: none
}

.footer__form-btn-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center
}

.footer__form-btn {
    background-color: var(--primary);
    border: none;
    color: #fff
}

.footer__content {
    width: 1440px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between
}

.footer__logo {
    width: 230px;
    height: fit-content;
    flex-shrink: 0
}

.footer__content-container {
    display: flex;
    gap: 70px
}

.footer__contacts-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    color: #606060;
    margin-bottom: 25px
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.footer__contacts-item {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: #606060
}

.footer__contacts-item a, .footer__contacts-item span {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #606060
}

.footer__social {
    display: flex;
    gap: 30px
}

.footer__social-link {
    width: 50px;
    height: 50px
}

.footer__social-link img {
    width: 100%;
    height: 100%
}

.footer__privacy-container {
    width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between
}

.footer__privacy-link {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-decoration: underline;
    color: var(--primary)
}

.footer__logo--mob {
    display: none
}

@media (max-width: 768px) {
    footer {
        border-top-left-radius: 60px;
        border-top-right-radius: 60px;
        padding: 25px 0 35px;
        gap: 50px
    }

    .footer__logo--mob {
        display: block;
        margin-bottom: 35px
    }

    .footer__form-container {
        display: flex;
        flex-direction: column;
        align-items: center
    }

    .footer__form-title {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 5px
    }

    .footer__form-text {
        font-size: 18px
    }

    .footer__form {
        flex-direction: column;
        align-items: center;
        gap: 20px
    }

    .footer__form-input, .footer__form-btn {
        width: 300px;
        height: 50px
    }

    .footer__content {
        flex-direction: column-reverse;
        align-items: center;
        gap: 50px;
        width: 100%;
        margin-bottom: 0
    }

    .footer__logo {
        display: none
    }

    .footer__content-container {
        flex-direction: column;
        gap: 40px
    }

    .footer__contacts-container h3, .footer__contacts-container p {
        text-align: center
    }

    .footer__contacts-title {
        margin-bottom: 10px
    }

    .footer__contacts {
        gap: 10px
    }

    .footer__privacy-container {
        width: 100%;
        flex-direction: column
    }

    .footer__privacy-container {
        gap: 15px
    }

    .footer__privacy-container a {
        text-align: center
    }
}

@media (min-width: 1200px) and (max-width: 1450px) {
    .footer__content, .footer__privacy-container {
        width: 95%;
    }
    .footer__content-container {
        gap: 25px;
    }
    .footer__social {
        gap: 15px;
    }
}

.about-nums {
    margin-bottom: 130px
}

.about-nums__item-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between
}

.about-nums__item {
    width: 350px;
    height: 290px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 4px 10px #00000026;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: flex-end;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: background .3s ease;
}
.about-nums__item:nth-child(1) {
    background-image: url("../images/nums1.png");
}
.about-nums__item:nth-child(2) {
    background-image: url("../images/nums2.png");
}
.about-nums__item:nth-child(3) {
    background-image: url("../images/nums3.png");
}
.about-nums__item:nth-child(4) {
    background-image: url("../images/nums4.png");
}
.about-nums__item:nth-child(1):hover {
    background-image: url("../images/nums1-red.png");
}
.about-nums__item:nth-child(2):hover {
    background-image: url("../images/nums2-red.png");
}
.about-nums__item:nth-child(3):hover {
    background-image: url("../images/nums3-red.png");
}
.about-nums__item:nth-child(4):hover {
    background-image: url("../images/nums4-red.png");
}
.about-nums__item:hover .about-nums__item-num, .about-nums__item:hover .about-nums__item-text {
    color: #fff !important;
}
.about-nums__item:first-child {
    align-items: flex-end
}

.about-nums__item:nth-child(odd) {
    margin-top: 40px
}

.about-nums__item:first-child .about-nums__item-num {
    width: 153px
}

.about-nums__item-num {
    font-weight: 700;
    font-size: 50px;
    line-height: 100%
}

.about-nums__item-num span {
    font-weight: 500;
    font-size: 25px
}

.about-nums__item-text {
    font-weight: 400;
    font-size: 25px;
    line-height: 100%
}

.why-us {
    padding: 70px 0;
    background-image: url(../bg-why-us.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 170px
}

.why-us__title {
    font-weight: 700;
    font-size: 50px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 60px
}

.why-us__item-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    row-gap: 30px;
    column-gap: 45px
}

.why-us--hidden {
    display: contents
}

.why-us__item {
    width: 450px;
    height: 260px;
    background-color: #fff;
    border: 1px solid var(--primary);
    box-shadow: 0 1px 10px #00000026;
    border-radius: 25px;
    padding: 25px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between
}

.why-us__item-arrow {
    display: none
}

.why-us__item-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 5px;
    height: 25px
}

.why-us__item-subtitle {
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    text-align: center
}

.why-us__show-btn, .hits__show-btn {
    display: none
}

.partners {
    margin-bottom: 80px;
    overflow: hidden
}

.partners__wrapper {
    background-color: var(--primary);
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center
}

.partners__container {
    display: flex;
    align-items: center;
    gap: 35px;
    animation: scroll 60s linear infinite
}

.partners__container span {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    flex-shrink: 0
}

.partners__text {
    font-weight: 400;
    font-size: 30px;
    line-height: 100%;
    color: #fff;
    flex-shrink: 0
}

@keyframes scroll {
    0% {
        transform: translate(0)
    }
    to {
        transform: translate(-100%)
    }
}

.catalog {
    max-width: 1440px;
    margin: 0 auto 180px
}

.catalog__title {
    width: fit-content
}

.catalog__swiper-container, .services__swiper-container, .awards__swiper-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin-bottom: 45px
}

.catalog__swiper-btn, .services__swiper-btn, .awards__swiper-btn, .reviews__swiper-btn, .news__swiper-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 20px;
    outline: none;
    background-color: var(--primary);
    width: 50px;
    height: 50px;
    flex-shrink: 0
}

.swiper {
    padding: 10px !important
}

.catalog__slide {
    height: 400px !important;
    max-width: 300px !important;
    padding: 15px 20px 20px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 10px #00000026;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between
}

.catalog__slide-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    color: #381f1f;
    margin-bottom: 10px
}

.catalog__slide-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: #606060;
    margin-bottom: 15px
}

.catalog__slide-link {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    box-shadow: 0 2px 5px #0000001a
}

.catalog__slide-img {
    width: 100%;
    height: 190px;
    display: flex;
    justify-content: center;
    align-items: center
}

.catalog__slide-img img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.catalog__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 620px;
    height: 50px;
    font-weight: 600;
    color: #fff !important
}

.hits {
    margin: 0 auto 170px
}

.hits__item-container, .hits__item--hidden {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 25px;
    column-gap: 20px;
    max-width: 1440px;
    margin: 0 auto
}

.hits__item--hidden {
    display: contents;
}

.hits__item {
    width: 465px;
    height: 200px;
    box-shadow: 0 2px 10px #00000026;
    display: flex;
    justify-content: space-between;
    padding: 30px 20px;
    border-radius: 20px
}

.hits__item-img {
    width: 190px;
    height: 140px;
    border: 1px solid var(--primary);
    border-radius: 20px;
    flex-shrink: 0
}

.hits__item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.hits__item-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 215px
}

.hits__item-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    margin-bottom: 5px
}

.hits__item-desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%
}

.hits__item-btn {
    width: 100%;
    height: 35px;
    font-size: 16px;
    line-height: 100%;
    box-shadow: 0 2px 5px #0000001a
}

.brands, .trust-us {
    max-width: 1440px;
    margin: 0 auto 170px
}

.brands__title, .trust-us__title {
    margin-bottom: 60px
}

.brands__container, .trust-us__container {
    display: flex;
    flex-direction: column;
    gap: 60px
}

.brands__row, .trust-us__row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 45px
}

.brands__row img, .trust-us__row img {
    height: 100%;
    filter: grayscale(100%) drop-shadow(0 0 0 transparent);
    transition: filter .3s ease;
    cursor: pointer
}

.brands__row img:hover, .trust-us__row img:hover {
    filter: none
}

.services {
    max-width: 1440px;
    margin: 0 auto 170px
}

.services__swiper-container {
    gap: 45px
}

.services__slide {
    height: 400px !important;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 10px #00000026;
    border-radius: 20px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between
}

.services__slide-img {
    width: 100%;
    height: 230px;
    border-radius: 20px
}

.services__slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.services__slide-title {
    font-weight: 700;
    font-size: 25px;
    line-height: 100%;
    color: var(--primary);
    margin-bottom: 20px
}

.services__slide-link {
    width: 235px;
    height: 35px;
    border-radius: 20px;
    box-shadow: 0 2px 5px #0000001a;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.portfolio {
    max-width: 1440px;
    margin: 0 auto 170px;
    display: flex;
    gap: 25px
}

.portfolio__left {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 585px
}

.portfolio__left-main {
    padding: 30px;
    background-color: var(--primary);
    background-image: url(../bg-service.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    height: 395px
}

.portfolio__title {
    font-weight: 700;
    font-size: 50px;
    line-height: 100%;
    color: #fff;
    margin-bottom: 25px
}

.portfolio__btn {
    width: 235px;
    height: 55px;
    border-radius: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
    line-height: 100%
}

.portfolio__left-item {
    width: 100%;
    height: 235px
}

.portfolio__item {
    border-radius: 20px;
    overflow: hidden
}

.portfolio__item-img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.portfolio__right {
    width: 830px;
    display: flex;
    flex-direction: column;
    gap: 25px
}

.portfolio__right-top {
    display: flex;
    gap: 25px
}

.portfolio__right-top .portfolio__item {
    height: 245px
}

.portfolio__right-item {
    height: 385px
}

.feedback {
    max-width: 1440px;
    margin: 0 auto 170px;
    padding: 25px 115px 25px 25px;
    box-shadow: 0 4px 10px #00000026;
    border-radius: 40px;
    background-color: #fff;
    display: flex;
    justify-content: space-between
}

.feedback__form-container {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between
}

.feedback__title {
    font-weight: 700;
    font-size: 50px;
    line-height: 100%;
    margin-bottom: 5px;
    text-align: center
}

.feedback__subtitle {
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    text-align: center
}

.feedback__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 400px
}

.feedback__form-input {
    width: 100%;
    height: 65px;
    border: 1px solid #D8D8D8;
    border-radius: 30px;
    background-color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    text-align: center
}

.feedback__form-btn {
    height: 65px;
    width: 100%;
    margin-bottom: -10px
}

.awards {
    max-width: 1440px;
    margin: 0 auto 170px
}

.awards__item-container {
    display: flex;
    gap: 35px;
    margin-bottom: 60px
}

.awards__item {
    box-shadow: 0 5px 10px #00000040;
    border-radius: 5px
}

.awards__item img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.awards__item--main {
    height: 975px;
    width: 670px
}

.awards__item-container--right {
    display: flex;
    flex-direction: column;
    gap: 35px
}

.awards__item-container--right-top {
    display: flex;
    gap: 35px
}

.awards__item--small {
    height: 490px;
    width: 350px
}

.awards__item--horiz {
    height: 450px;
    width: 735px
}

.awards__swiper-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease
}

.awards__swiper-container.active {
    max-height: 500px
}

.awards__btn {
    width: 620px;
    height: 50px;
    display: block;
    margin: 0 auto
}

.awards__slide {
    height: 310px !important;
    background-color: #fff;
    box-shadow: 0 2px 10px #00000026;
    border-radius: 20px;
    padding: 20px;
    display: flex !important;
    gap: 10px
}

.awards__slide-img {
    width: 190px;
    height: 270px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.awards__slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.awards__text {
    font-weight: 700
}

.awards-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.awards-lightbox--visible {
    opacity: 1;
}

.awards-lightbox__swiper {
    width: 80vw;
    max-width: 900px;
}

.awards-lightbox__slide {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 60px;
    min-height: 80vh;
}

.awards-lightbox__img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.awards-lightbox__img-wrap img {
    object-fit: contain;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.awards-lightbox__caption {
    color: #fff;
    margin-top: 16px;
    font-size: 18px;
    text-align: center;
    opacity: 0.8;
}

.awards-lightbox__arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 28px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10000;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.awards-lightbox__arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.awards-lightbox__arrow--prev { left: 16px; }
.awards-lightbox__arrow--next { right: 16px; }

.awards-lightbox__close {
    position: fixed;
    top: 16px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10000;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.awards-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.reviews {
    max-width: 1440px;
    margin: 0 auto 170px
}

.reviews__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 65px
}

.reviews__title {
    text-align: left;
    margin-bottom: 0
}

.reviews__tab-container {
    display: flex;
    gap: 20px
}

.reviews__tab {
    height: 45px;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    color: #929292;
    transition: all .3s ease
}

.reviews__tab.active {
    box-shadow: 0 2px 5px #0000001a;
    background-color: #fff;
    border-radius: 15px;
    color: var(--primary);
    font-weight: 700;
    padding: 0 15px
}

.reviews__slider-btn-container, .news__slider-btn-container {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 20px
}

.reviews__slide {
    height: 315px !important;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
    padding: 20px 80px 20px 20px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px #00000026;
    max-width: 700px !important;
    position: relative;
}

.reviews__slide-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
    height: 50px;
    margin: 50px auto 0;
}

.reviews__slide-btn:hover {
    color: #fff !important;
}

.reviews__slide-img-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap
}

.reviews__slide-img {
    width: 140px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden
}

.reviews__slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.reviews__slide-content {
    width: 610px
}

.reviews__slide-top {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 15px
}

.reviews__slide-content p {
    color: #000;
    line-height: 100%;
    font-size: 14px
}

.reviews__slide-name {
    font-size: 20px !important
}

.reviews__slide-stars {
    display: flex;
    gap: 5px
}

.reviews__slide-text {
    margin-bottom: 15px
}

.reviews__slide-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.news {
    max-width: 1440px;
    margin: 0 auto 170px;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 2px 10px #00000026;
    padding: 45px 40px !important;
}

.news__top {
    margin-left: 15px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px
}

.news__title {
    font-weight: 700;
    font-size: 55px;
    line-height: 100%
}

.news__btn-container {
    display: flex;
    gap: 25px
}

.news__btn {
    width: 220px;
    height: 50px;
    box-shadow: 0 2px 5px #00000026;
    border-radius: 20px;
    border: none;
    background-color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: var(--text);
    transition: all .3s ease
}

.news__btn.active {
    background-color: var(--primary);
    color: #fff
}

.news__slide-img {
    width: 320px;
    height: 275px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px
}

.news__slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.news__slide-info {
    display: flex;
    justify-content: space-between
}

.news__slide-info p {
    color: #000;
    line-height: 100%
}

.news__slide-text {
    max-width: 190px
}

.news__slide-date {
    font-size: 14px
}

.news__slide {
    max-width: 320px !important;
}

.news__swiper-btn.swiper-button-disabled {
    background-color: #fac1be !important
}

.news__pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    position: static !important
}

.news__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #eee;
    opacity: 1;
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s ease
}

.news__pagination .swiper-pagination-bullet-active {
    background-color: var(--primary)
}

.page__header {
    width: 100%;
    box-shadow: 0 5px 25px 0 #0000001A;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
.header__top, .header__bottom {
    padding: 15px 240px;
    border-bottom: 1px solid #F0F0F0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__top-mob {
    display: contents;
}
.burger-btn {
    display: none;
}
.header__bottom {
    border: none;
}
.header__top-right {
    display: flex;
    align-items: center;
    gap: 40px;
}
.header__logo {
    height: 45px;
}
.header__search-container {
    display: flex;
    align-items: center;
    gap: 15px;
}
.header__search {
    width: 430px;
    position: relative;
}
.header__search-input {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--primary);
    outline: none;
    background-color: #fff;
    padding: 0 50px 0 10px;
}
.header__search-btn, .header__cart-btn {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 1px solid var(--primary) !important;
    border-radius: 10px;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header__cart-container {
    position: relative;
}
.header__cart-num {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 1;
    background-color: var(--primary);
    color: #fff;
    border-radius: 5px;
    height: 22px;
    font-size: 12px;
    min-width: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header__cart-btn {
    position: relative;
}
.header__socials {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header__socials-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    overflow: hidden;
}
.header__socials-link {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header__tel--main {
    display: flex;
    align-items: center;
    gap: 5px;
}
.header__tel-container {
    position: relative;
}
.header__tel-menu {
    position: absolute;
    background-color: #fff;
    box-shadow: 0 5px 20px 0 #00000026;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    padding: 15px 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
}
.header__tel-container:hover .header__tel-menu {
    opacity: 1;
    visibility: visible;
}
.header__tel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #F0F0F0;
    width: 100%;
}
.header__tel-item a, .header__tel-item p, .header__schedule {
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}
.header__tel-item p, .header__schedule {
    font-weight: 400;
}
.header__schedule {
    padding-top: 10px;
}
.header__feedback-btn {
    width: 220px;
    height: 40px;
    border-radius: 10px;
    background-color: var(--primary);
    border: none;
    outline: none;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header__feedback-btn:hover {
    color: #fff;
}
.header__dropdown-container {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header__dropdown {
    position: relative;
}
.header__dropdown-main {
    width: 190px;
    height: 40px;
    border: 1px solid #D9D9D9 !important;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 1001;
    position: relative;
}
.header__dropdown-main a, .header__dropdown-main span {
    color: #606060;
    font-weight: 600;
}
.dropdown-main__btn--mob {
    display: none;
}
.header__dropdown-menu, .header__dropdown-submenu {
    display: flex;
    flex-direction: column;
    padding: 45px 15px 0;
    width: 190px;
    align-items: center;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
    box-shadow: 0 5px 20px 0 #00000026;
}
.header__dropdown-item {
    padding: 5px 0;
    border-top: 1px solid #F0F0F0 !important;
    width: 100%;
    position: relative;
    max-width: 160px;
}
.header__dropdown-item a {
    text-align: center;
    font-weight: 400;
    line-height: 100%;
    color: #606060;
    width: 100%;
    max-width: 160px;
    display: block;
    white-space: normal;
    word-break: break-word;
}
.header__dropdown-item a:hover {
    color: var(--primary);
}
.header__dropdown-item:first-child {
    border-top: none !important;
    padding-top: 0 !important;
}
.header__dropdown:hover .header__dropdown-menu, .header__dropdown:hover .header__dropdown-item:hover .header__dropdown-submenu {
    opacity: 1;
    visibility: visible;
}
.header__dropdown-submenu {
    padding-top: 5px;
    top: 0;
    left: 175px;
}
.header__dropdown-item::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 0;
    width: 15px;
    height: 100%;
}
.header__pages-container {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header__pages-container a {
    font-weight: 600;
    color: #8D8D8D;
}
.header__pages-container a:hover {
    color: var(--primary);
}
.header__dropdown-item--main img, .header__cooperation, .header__feedback--mob {
    display: none;
}
.hits__item.open {
    display: flex !important;
}

@media (min-width: 1601px) and (max-width: 1800px) {
    .header__top, .header__bottom {
        padding: 15px 110px;
    }
}

@media (min-width: 1201px) and (max-width: 1600px) {
    .header__top, .header__bottom {
        padding: 15px 30px;
    }
    .header__bottom {
        justify-content: center;
    }
    .header__search {
        width: 340px;
    }
    .header__top-right, .header__pages-container, .header__socials {
        gap: 15px;
    }
    .header__feedback-btn {
        width: 190px;
    }
    .header__pages-container {
        display: none;
    }
}

@media (max-width: 1200px) {
    body.no-scroll {
        overflow: hidden;
    }
    .page__header {
        padding: 15px 10px;
        max-width: 100vw;
    }
    .header__socials, .header__tel-container, .header__feedback-btn, .header__pages-container {
        display: none;
    }
    .header__top {
        display: contents;
        padding: 0;
    }
    .header__top-mob {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 15px;
        border-bottom: 1px solid #F0F0F0;
    }
    .header__bottom {
        position: fixed;
        width: 100%;
        top: 160px;
        left: 0;
        bottom: 0;
        padding: 0 10px 15px;
        background-color: #fff;
        overflow-x: hidden;
        display: none;
        overflow-y: auto;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        max-width: 100vw;
    }
    .burger-btn {
        background-color: transparent;
        border: none;
        outline: none;
        width: 40px;
        height: 27px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    .header__cart-num {
        right: -8px;
    }
    .burger-btn span {
        width: 40px;
        height: 3px;
        background-color: var(--primary);
        border-radius: 10px;
        transition: transform .4s ease, opacity .4s ease;
    }
    .burger-btn.active {
        height: 40px;
    }
    .burger-btn.active span:nth-child(1) {
        transform: translateY(19px) rotate(45deg);
    }
    .burger-btn.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .burger-btn.active span:nth-child(3) {
        transform: translateY(-19px) rotate(-45deg);
    }
    .header__top-right {
        padding-top: 15px;
    }
    .header__search {
        width: 100%;
    }
    .header__search-container {
        width: 100%;
        gap: 10px;
    }
    .header__cart-btn, .header__search-btn {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }
    .header__search-input {
        height: 45px;
    }
    .header__dropdown, .header__cooperation {
        padding: 20px 0;
        border-bottom: 1px solid #F0F0F0 !important;
    }
    .header__dropdown-container {
        flex-direction: column;
        align-items: unset;
        gap: 0;
        width: 100%;
    }
    .header__dropdown-main {
        width: 100%;
        border: none !important;
        justify-content: space-between;
        height: fit-content;
    }
    .header__dropdown-main a, .header__cooperation p, .header__dropdown-main span {
        font-weight: 600;
        font-size: 18px;
        line-height: 100%;
        color: var(--primary);
    }
    .dropdown-main__btn {
        display: none;
    }
    .dropdown-main__btn--mob {
        display: block;
        margin-right: 20px;
        transition: transform .3s ease;
    }
    .header__dropdown-menu, .header__dropdown-submenu {
        width: 100%;
        position: static;
        opacity: 0;
        visibility: hidden;
        margin-top: 0;
        padding: 0;
        border: none !important;
        align-items: unset;
        gap: 15px;
        display: flex;
        max-height: 0;
        transition: all .3s ease;
        box-shadow: none;
    }
    .header__dropdown-menu.open, .header__dropdown-submenu.open {
        max-height: 100vh;
        opacity: 1 !important;
        visibility: visible !important;
        margin-top: 20px;
    }
    .header__dropdown:hover .header__dropdown-menu, .header__dropdown:hover .header__dropdown-item:hover .header__dropdown-submenu {
        opacity: 0;
        visibility: hidden;
    }
    .header__dropdown-item--main img {
        transition: transform .3s ease;
    }
    .dropdown-main__btn--mob.active, .header__dropdown-item--main img.active {
        transform: rotate(180deg);
    }
    .header__dropdown-item--main {
        display: flex;
        align-items: center;
        padding-right: 20px;
    }
    .header__dropdown-item--main img {
        display: block;
        width: 18px;
        height: 9px;
        flex-shrink: 0;
    }
    .header__dropdown-item--main a, .header__dropdown-item a {
        text-decoration: underline;
        font-weight: 600;
    }
    .header__dropdown-item {
        border: none !important;
        padding: 0 !important;
        max-width: unset;
    }
    .header__dropdown-item a {
        text-align: unset;
        max-width: unset;
    }
    .header__dropdown-submenu {
        margin: 10px 0 0 10px;
    }
    .header__cooperation {
        display: contents;
    }
    .header__cooperation .header__dropdown-main {
        display: none;
    }
    .header__cooperation-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding-top: 0;
        margin-top: 15px;
        transition: all .3s ease;
    }
    .header__cooperation-content.open {
        margin-top: 20px;
        padding-top: 15px;
        opacity: 1;
        visibility: visible;
        max-height: 100vh;
    }
    .header__cooperation-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header__cooperation-item a {
        font-weight: 700;
        font-size: 14px;
        line-height: 100%;
        color: #606060;
    }
    .header__cooperation-item p {
        font-weight: 400;
        font-size: 14px;
        line-height: 100%;
        color: #606060;
    }
    .header__feedback--mob {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 15px;
        gap: 25px;
        width: 100%;
    }
    .header__feedback--mob p {
        font-weight: 400;
        font-size: 14px;
        line-height: 100%;
        text-align: center;
        color: #606060;
    }
    .header__feedback--mob .header__feedback-btn {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    section {
        margin-bottom: 80px !important
    }

    .hero {
        width: 95%;
        flex-direction: column-reverse;
        padding: 10px 10px 20px;
        margin: 10px auto 80px;
    }

    .hero img {
        width: 100%;
        border-radius: 30px;
        object-fit: cover;
        margin-bottom: 25px;
        max-height: 40vh
    }

    .hero__title {
        font-size: 24px;
        text-align: center;
        margin-bottom: 15px
    }

    .hero__subtitle {
        display: block;
        font-size: 14px;
        line-height: 140%;
        text-align: center;
        margin-bottom: 20px
    }

    .hero__btn-container {
        flex-direction: column;
        align-items: center;
        gap: 15px
    }

    .hero__btn {
        height: 45px;
        width: 250px
    }

    .hero__btn.btn-red {
        width: 280px;
        height: 50px
    }

    .about-nums__item-container {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px
    }

    .about-nums__item {
        background: #fff !important;
    }

    .about-nums__item:nth-child(odd) {
        margin-top: 0
    }

    .about-nums__item {
        width: 170px;
        height: 115px;
        border-radius: 20px;
        padding: 15px;
        gap: 0;
        justify-content: center;
        align-items: center !important
    }

    .about-nums__item-num {
        font-size: 30px;
        width: fit-content !important;
        text-align: center
    }

    .about-nums__item-text {
        text-align: center;
        font-size: 16px
    }

    .about-nums__item-num span {
        font-size: 12px
    }

    .why-us {
        padding: 30px 25px;
        margin-bottom: 0
    }

    .why-us__title {
        font-size: 25px;
        margin-bottom: 30px
    }

    .why-us__item-container, .why-us--hidden.active {
        display: flex;
        flex-direction: column;
        gap: 10px
    }

    .why-us--hidden {
        display: none
    }

    .why-us__item {
        width: 100%;
        height: fit-content;
        padding: 20px 30px 20px 20px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        position: relative;
        overflow: hidden
    }

    .why-us__item-arrow {
        display: block;
        position: absolute;
        top: 38px;
        right: 30px;
        transition: transform .3s ease
    }

    .why-us__item-title {
        font-size: 18px;
        max-width: 190px;
        text-align: left;
        height: fit-content;
        margin-bottom: 0;
        margin-left: 15px
    }

    .why-us__item-text {
        display: contents
    }

    .why-us__item-icon {
        width: 60px
    }

    .why-us__item-subtitle {
        font-size: 16px;
        text-align: left;
        white-space: normal;
        max-height: 0;
        transition: max-height .3s ease, margin-top .3s ease;
        overflow: hidden;
        margin-top: 0
    }

    .why-us__item.active .why-us__item-subtitle {
        max-height: 400px;
        margin-top: 15px
    }

    .why-us__item.active .why-us__item-arrow {
        transform: rotate(180deg)
    }

    .why-us__show-btn, .hits__show-btn {
        margin: 15px auto 0;
        border: none;
        background-color: transparent;
        display: flex;
        gap: 10px;
        align-items: center;
        font-weight: 700;
        font-size: 25px;
        line-height: 100%;
        text-align: center
    }

    .why-us__show-btn img, .hits__show-btn img {
        width: 12px;
        margin-top: 5px;
        transition: transform .3s ease
    }

    .partners__wrapper {
        height: 90px
    }

    .partners__container {
        gap: 25px
    }

    .partners__container span {
        width: 12px;
        height: 12px
    }

    .partners__title {
        font-size: 23px;
    }

    .partners__text {
        font-size: 20px
    }

    .catalog {
        padding: 0 20px
    }

    .catalog__btn {
        width: 100%;
        font-size: 16px
    }

    .catalog__swiper-container, .services__swiper-container, .awards__swiper-container {
        flex-wrap: wrap;
        column-gap: 20px;
        row-gap: 30px;
        margin-bottom: 30px
    }

    .catalog__swiper-btn--prev, .services__swiper-btn--prev, .awards__swiper-btn--prev {
        order: 2
    }

    .catalog__swiper-btn--next, .services__swiper-btn--next, .awards__swiper-btn--next {
        order: 3
    }

    .catalog__slide {
        max-width: none !important
    }

    .hits__item--hidden {
        display: none;
    }

    .hits__item-container, .hits__item--hidden.active {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 0 25px
    }

    .hits__item--hidden {
        padding: 0 !important;
    }

    .hits__item {
        width: 48%;
        height: 270px;
        flex-direction: column;
        align-items: center;
        padding: 10px
    }

    .hits__item-img {
        width: 100%;
        height: 110px
    }

    .hits__item-info {
        width: 100%
    }

    .hits__item-title {
        font-size: 16px;
        text-align: center
    }

    .hits__item-desc {
        text-align: center;
        margin-bottom: 10px
    }

    .hits__item-btn {
        height: 40px;
        border-radius: 15px;
        font-size: 14px
    }

    .hits__show-btn {
        margin-top: 30px;
    }

    .brands__row, .trust-us__row {
        display: contents
    }

    .brands__title, .trust-us__title {
        margin-bottom: 30px
    }

    .brands__container, .trust-us__container {
        flex-direction: row;
        gap: 30px;
        height: 45px;
        align-items: center;
        animation: scroll 60s linear infinite
    }

    .brands__wrapper, .trust-us__wrapper {
        overflow: hidden;
        display: flex;
        align-items: center
    }

    .partners__container {
        display: flex;
        align-items: center;
        gap: 35px;
        animation: scroll 60s linear infinite
    }

    .services__swiper-container {
        padding: 0 20px
    }

    .portfolio {
        flex-direction: column;
        gap: 10px;
        padding: 0 10px
    }

    .portfolio__left {
        width: 100%
    }

    .portfolio__left-item {
        display: none
    }

    .portfolio__left-main {
        height: fit-content;
        padding: 20px 25px
    }

    .portfolio__title {
        font-size: 28px;
        text-align: center;
        white-space: normal
    }

    .portfolio__btn {
        margin: 0 auto
    }

    .portfolio__right {
        width: 100%;
        gap: 10px
    }

    .portfolio__right-top {
        gap: 10px
    }

    .portfolio__right-top .portfolio__item {
        height: 120px
    }

    .portfolio__right-item {
        height: 155px
    }

    .feedback {
        flex-direction: column-reverse;
        width: 100%;
        padding: 40px 20px
    }

    .feedback__form-container {
        margin: 0 0 35px
    }

    .feedback__title {
        font-size: 28px
    }

    .feedback__subtitle {
        font-size: 18px
    }

    .feedback__form-text {
        margin-bottom: 30px
    }

    .feedback__form {
        width: 300px
    }

    .feedback__form-input {
        height: 50px
    }

    .awards__item-container {
        display: none
    }

    .awards__swiper-container {
        max-height: fit-content
    }

    .awards__btn {
        display: none
    }

    .awards__slide {
        height: 220px !important
    }

    .awards__slide-img {
        width: 130px;
        height: 180px
    }

    .reviews {
        padding: 0 10px
    }

    .reviews__top {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        margin-bottom: 30px
    }

    .reviews__tab-container {
        justify-content: flex-start;
        align-items: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        max-width: 100%;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 5px
    }

    .reviews__tab {
        width: fit-content;
        flex-shrink: 0
    }

    .reviews__slider-container {
        display: flex;
        flex-direction: column-reverse
    }

    .reviews__slider-btn-container, .news__slider-btn-container {
        justify-content: center;
        margin-top: 15px
    }

    .reviews__swiper {
        width: 100% !important
    }

    .reviews__slide {
        height: fit-content !important;
        padding: 20px 10px 20px 20px
    }

    .reviews__slide-btn {
        width: 100%;
        margin-top: 30px;
    }

    .reviews__slide-top {
        gap: 15px;
    }

    .reviews__slide-top p {
        max-width: 240px;
    }

    .reviews__slide-content {
        width: 100%
    }

    .news {
        padding: 30px 20px
    }

    .news__top {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-left: 0;
        margin-bottom: 40px
    }

    .news__title {
        font-size: 25px
    }

    .news__btn-container {
        gap: 20px
    }

    .news__btn {
        width: 170px
    }

    .news__slider-container {
        display: flex;
        flex-direction: column-reverse
    }

    .news__swiper {
        width: 100% !important
    }

    .news__slide-img {
        width: 100%;
        height: auto;
        max-height: 300px;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    section {
        margin-bottom: 80px !important
    }

    .hero {
        width: 95%;
        flex-direction: column-reverse;
        padding: 10px 10px 20px;
        margin: 10px auto 80px;
    }

    .hero img {
        width: 100%;
        border-radius: 30px;
        object-fit: cover;
        margin-bottom: 25px;
        max-height: 55vh;
    }

    .hero__title {
        font-size: 34px;
        text-align: center;
        margin-bottom: 15px
    }

    .hero__subtitle {
        display: block;
        font-size: 16px;
        line-height: 140%;
        text-align: center;
        margin-bottom: 20px
    }

    .hero__btn-container {
        flex-direction: column;
        align-items: center;
        gap: 15px
    }

    .hero__btn {
        height: 50px;
        width: 320px
    }

    .hero__btn.btn-red {
        width: 350px;
        height: 50px
    }
    .line-box {
        display: none;
    }
    .universal-title {
        font-size: 45px;
        text-align: center;
        justify-self: center;
    }
    .about-nums__item-container {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px
    }
    .about-nums__item:nth-child(odd) {
        margin-top: 0
    }
    .about-nums__item {
        width: 300px;
        height: 200px;
        border-radius: 20px;
        padding: 15px;
    }
    .why-us {
        padding: 30px 25px;
        margin-bottom: 0
    }

    .why-us__title {
        font-size: 30px;
        margin-bottom: 30px
    }

    .why-us__item-container, .why-us--hidden.active {
        display: flex;
        flex-direction: column;
        gap: 10px
    }

    .why-us--hidden {
        display: none
    }

    .why-us__item {
        width: 100%;
        height: fit-content;
        padding: 20px 30px 20px 20px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        position: relative;
        overflow: hidden
    }

    .why-us__item-arrow {
        display: block;
        position: absolute;
        top: 38px;
        right: 30px;
        transition: transform .3s ease
    }

    .why-us__item-title {
        font-size: 18px;
        max-width: 190px;
        text-align: left;
        height: fit-content;
        margin-bottom: 0;
        margin-left: 15px
    }

    .why-us__item-text {
        display: contents
    }

    .why-us__item-icon {
        width: 60px
    }

    .why-us__item-subtitle {
        font-size: 16px;
        text-align: left;
        white-space: normal;
        max-height: 0;
        transition: max-height .3s ease, margin-top .3s ease;
        overflow: hidden;
        margin-top: 0
    }

    .why-us__item.active .why-us__item-subtitle {
        max-height: 400px;
        margin-top: 15px
    }

    .why-us__item.active .why-us__item-arrow {
        transform: rotate(180deg)
    }

    .why-us__show-btn, .hits__show-btn {
        margin: 15px auto 0;
        border: none;
        background-color: transparent;
        display: flex;
        gap: 10px;
        align-items: center;
        font-weight: 700;
        font-size: 25px;
        line-height: 100%;
        text-align: center
    }

    .why-us__show-btn img, .hits__show-btn img {
        width: 12px;
        margin-top: 5px;
        transition: transform .3s ease
    }

    .partners__wrapper {
        height: 90px
    }

    .partners__container {
        gap: 25px
    }

    .partners__container span {
        width: 12px;
        height: 12px
    }

    .partners__title {
        font-size: 23px;
    }

    .partners__text {
        font-size: 20px
    }

    .catalog {
        padding: 0 20px
    }

    .catalog__btn {
        width: 100%;
        font-size: 16px
    }

    .catalog__swiper-container, .services__swiper-container, .awards__swiper-container {
        flex-wrap: wrap;
        column-gap: 20px;
        row-gap: 30px;
        margin-bottom: 30px
    }

    .catalog__swiper-btn--prev, .services__swiper-btn--prev, .awards__swiper-btn--prev {
        order: 2
    }

    .catalog__swiper-btn--next, .services__swiper-btn--next, .awards__swiper-btn--next {
        order: 3
    }

    .catalog__slide {
        max-width: none !important
    }

    .hits__item--hidden {
        display: none;
    }

    .hits__item-container, .hits__item--hidden.active {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 0 25px
    }

    .hits__item--hidden {
        padding: 0 !important;
    }

    .hits__item {
        width: 48%;
        height: 270px;
        flex-direction: column;
        align-items: center;
        padding: 10px
    }

    .hits__item-img {
        width: 100%;
        height: 110px
    }

    .hits__item-info {
        width: 100%
    }

    .hits__item-title {
        font-size: 16px;
        text-align: center
    }

    .hits__item-desc {
        text-align: center;
        margin-bottom: 10px
    }

    .hits__item-btn {
        height: 40px;
        border-radius: 15px;
        font-size: 14px
    }

    .hits__show-btn {
        margin-top: 30px;
    }

    .brands__row, .trust-us__row {
        display: contents
    }

    .brands__title, .trust-us__title {
        margin-bottom: 30px
    }

    .brands__container, .trust-us__container {
        flex-direction: row;
        gap: 30px;
        height: 45px;
        align-items: center;
        animation: scroll 60s linear infinite
    }

    .brands__wrapper, .trust-us__wrapper {
        overflow: hidden;
        display: flex;
        align-items: center
    }

    .partners__container {
        display: flex;
        align-items: center;
        gap: 35px;
        animation: scroll 60s linear infinite
    }

    .services__swiper-container {
        padding: 0 20px
    }

    .portfolio {
        flex-direction: column;
        gap: 10px;
        padding: 0 10px
    }

    .portfolio__left {
        width: 100%
    }

    .portfolio__left-item {
        display: none
    }

    .portfolio__left-main {
        height: fit-content;
        padding: 20px 25px
    }

    .portfolio__title {
        font-size: 28px;
        text-align: center;
        white-space: normal
    }

    .portfolio__btn {
        margin: 0 auto
    }

    .portfolio__right {
        width: 100%;
        gap: 10px
    }

    .portfolio__right-top {
        gap: 10px
    }

    .portfolio__right-top .portfolio__item {
        width: 50%;
        height: auto;
    }

    .portfolio__right-item {
        height: 260px
    }

    .feedback {
        flex-direction: column-reverse;
        width: 100%;
        padding: 40px 20px
    }

    .feedback__form-container {
        margin: 0 0 35px
    }

    .feedback__title {
        font-size: 28px
    }

    .feedback__subtitle {
        font-size: 18px
    }

    .feedback__form-text {
        margin-bottom: 30px
    }

    .feedback__form {
        width: 80%;
    }

    .feedback__form-input {
        height: 50px
    }

    .awards__item-container {
        display: none
    }

    .awards__swiper-container {
        max-height: fit-content
    }

    .awards__btn {
        display: none
    }

    .awards__slide {
        height: 220px !important
    }

    .awards__slide-img {
        width: 130px;
        height: 180px
    }

    .reviews {
        padding: 0 10px
    }

    .reviews__top {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        margin-bottom: 30px
    }

    .reviews__tab-container {
        justify-content: flex-start;
        align-items: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        max-width: 100%;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 5px
    }

    .reviews__tab {
        width: fit-content;
        flex-shrink: 0
    }

    .reviews__slider-container {
        display: flex;
        flex-direction: column-reverse
    }

    .reviews__slider-btn-container, .news__slider-btn-container {
        justify-content: center;
        margin-top: 15px
    }

    .reviews__swiper {
        width: 100% !important
    }

    .reviews__slide {
        height: fit-content !important;
        padding: 20px 10px 20px 20px
    }

    .reviews__slide-btn {
        width: 100%;
        margin-top: 30px;
    }

    .reviews__slide-top {
        gap: 15px;
    }

    .reviews__slide-top p {
        max-width: 240px;
    }

    .reviews__slide-content {
        width: 100%
    }

    .news {
        padding: 30px 20px
    }

    .news__top {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-left: 0;
        margin-bottom: 40px
    }

    .news__title {
        font-size: 34px
    }
    .news__slide {
        max-width: unset !important;
    }

    .news__btn-container {
        gap: 20px
    }

    .news__btn {
        width: 170px
    }

    .news__slider-container {
        display: flex;
        flex-direction: column-reverse
    }

    .news__swiper, .footer__form-btn {
        width: 100% !important
    }

    .news__slide-img {
        width: 100%;
        height: auto;
        max-height: 300px;
    }
    footer {
        gap: 60px;
    }
    .footer__form {
        flex-direction: column;
        align-items: center;
    }
    .footer__form-input, .footer__form-btn-container {
        width: 80%;
    }
    .footer__content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .footer__privacy-container {
        width: 100%;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }
}

@media (min-width: 1201px) and (max-width: 1450px) {
    .hero {
        width: 95%;
        padding-left: 25px;

    }
    .hero img {
        width: 48%;
        height: auto;
    }
    .hero__title {
        font-size: 38px;
    }
    .hero__btn.btn-red {
        width: 300px;
    }
    .the-line {
        width: 325px;
    }
    .about-nums__item-container {
        justify-content: center;
        gap: 15px;
    }
    .about-nums__item {
        width: 280px;
    }
    .about-nums__item-num {
        font-size: 47px;
    }
    .why-us__item-container {
        column-gap: 20px;
        justify-items: center;
    }
    .why-us__item {
        width: 365px;
        height: 225px;
    }
    .why-us__item-icon {
        width: 70px;
        height: 70px;
    }
    .why-us__item-subtitle {
        font-size: 16px;
    }
    .partners__title {
        font-size: 46px;
    }
    .catalog__slide {
        max-width: none !important;
    }
    .catalog__swiper-container, .services__swiper-container, .awards__swiper-container {
        max-width: 95%;
        margin: 0 auto 45px;
    }
    .hits__item-container, .hits__item--hidden {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .brands__wrapper, .trust-us__wrapper {
        max-width: 95%;
        margin: 0 auto;
    }
    .portfolio__left {
        width: 500px;
        gap: 15px;
    }
    .portfolio__right {
        width: 675px;
        gap: 15px;
    }
    .portfolio {
        justify-content: center;
        gap: 15px;
    }
    .portfolio__right-top {
        gap: 15px;
    }
    .feedback {
        width: 95%;
        padding: 25px;
    }
    .feedback img {
        width: 60%;
        border-radius: 15px;
    }
    .feedback__title {
        font-size: 40px;
    }
    .awards__item-container, .awards__item-container--right, .awards__item-container--right-top {
        gap: 15px;
    }
    .awards__item--small {
        height: 445px;
        width: 300px;
    }
    .awards__item--horiz {
        width: 615px;
        height: 410px;
    }
    .awards__item--main {
        height: 870px;
        width: 560px;
    }
    .awards__item-container {
        justify-content: center;
    }
    .awards__swiper-container {
        margin: 0;
    }
    .awards__swiper-container.active {
        margin: 30px auto;
    }
    .brands__row, .trust-us__row {
        height: 35px;
    }
    .news__slide {
        max-width: unset !important;
    }
    .reviews {
        width: 95%;
    }
    .reviews__slide {
        padding: 20px;
    }
    .reviews__slide-content {
        width: 100%;
    }
    .reviews__slide-content p {
        white-space: normal;
    }
    .reviews__slide {
        height: 345px !important;
    }
    .news {
        width: 95%;
    }
    .news__title {
        font-size: 48px;
    }
}

@media (min-width: 1451px) and (max-width: 1600px) {
    .the-line {
        width: 400px;
    }
}

@font-face {
    font-family: swiper-icons;
    src: url(data:application/font-woff;charset=utf-8;base64,\ d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA);
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block
}

.swiper-vertical > .swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
    transform: translateZ(0)
}

.swiper-horizontal {
    touch-action: pan-y
}

.swiper-vertical {
    touch-action: pan-x
}

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

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d {
    perspective: 1200px
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
    transform-style: preserve-3d
}

.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
    scroll-snap-type: none
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: none
}

.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
    content: "";
    flex-shrink: 0;
    order: 9999
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after)
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: #00000026
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, #00000080, #0000)
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    transform: translateZ(0)
}

.swiper-virtual.swiper-css-mode .swiper-wrapper:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after {
    height: 1px;
    width: var(--swiper-virtual-size)
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after {
    width: 1px;
    height: var(--swiper-virtual-size)
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
    display: none !important
}

.swiper-button-next svg, .swiper-button-prev svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
    transform: rotate(180deg)
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto
}

.swiper-button-lock {
    display: none
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: "prev"
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: "next"
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translateZ(0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
    display: none !important
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2)
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none !important
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
    right: var(--swiper-pagination-right, 8px);
    left: var(--swiper-pagination-left, auto);
    top: 50%;
    transform: translate3d(0, -50%, 0)
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: .2s transform, .2s top
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translate(-50%);
    white-space: nowrap
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s left
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s right
}

.swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color, inherit)
}

.swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, .25));
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    position: relative;
    touch-action: none;
    background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, .1))
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
    display: none !important
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%))
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%))
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, .5));
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.swiper-slide-zoomed {
    cursor: move;
    touch-action: none
}

.swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-grid > .swiper-wrapper {
    flex-wrap: wrap
}

.swiper-grid-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column
}

.swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

.swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper.swiper-cube {
    overflow: visible
}

.swiper-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%
}

.swiper-cube .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-cube.swiper-rtl .swiper-slide {
    transform-origin: 100% 0
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: .6;
    z-index: 0
}

.swiper-cube .swiper-cube-shadow:before {
    content: "";
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    filter: blur(50px)
}

.swiper-cube .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper.swiper-flip {
    overflow: visible
}

.swiper-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1
}

.swiper-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-creative .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height
}

.swiper.swiper-cards {
    overflow: visible
}

.swiper-cards .swiper-slide {
    transform-origin: center bottom;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden
}
/* SEO-текст на главной */
.seo-text {
    max-width: 1440px;
    margin: 0 auto 130px;
    padding: 50px 60px;
    background-color: #fff;
    box-shadow: 0 4px 10px #00000026;
    border-radius: 40px
}
.seo-text__title {
    font-weight: 700;
    font-size: 36px;
    line-height: 110%;
    color: #606060;
    margin-bottom: 25px
}
.seo-text p {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    margin-bottom: 15px
}
.seo-text p:last-child {
    margin-bottom: 0
}

/* Как мы работаем */
.steps {
    margin-bottom: 130px
}
.steps__item-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px
}
.steps__item {
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 4px 10px #00000026;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px
}
.steps__item-num {
    font-weight: 700;
    font-size: 50px;
    line-height: 100%
}
.steps__item-title {
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    color: #606060
}
.steps__item-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%
}

@media (max-width: 1450px) {
    .seo-text {
        width: 95%
    }
    .steps__item-container {
        width: 95%
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .seo-text {
        padding: 35px 25px
    }
    .seo-text__title {
        font-size: 28px
    }
    .steps__item-container {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 768px) {
    .seo-text {
        padding: 25px 15px;
        border-radius: 30px
    }
    .seo-text__title {
        font-size: 22px
    }
    .seo-text p {
        font-size: 15px
    }
    .steps__item-container {
        grid-template-columns: 1fr;
        gap: 15px
    }
    .steps__item {
        padding: 20px;
        border-radius: 30px
    }
    .steps__item-num {
        font-size: 36px
    }
    .steps__item-title {
        font-size: 18px
    }
}
