@font-face {
    font-family: Montserrat-Regular;
    font-display: swap;
    src: url("../fonts/Montserrat/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat/Montserrat-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: Manrope-SemiBold;
    font-display: swap;
    src: url("../fonts/Manrope/Manrope-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: Manrope-Bold;
    font-display: swap;
    src: url("../fonts/Manrope/Manrope-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: Manrope-Regular;
    font-display: swap;
    src: url("../fonts/Manrope/Manrope-Regular.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
}

@media (min-width:280px) and (max-width:991.98px) {
    .hero-text span {
        display: block;
    }
}

.special-conditions {
    .conditions__wrapper {
        background: rgba(10, 118, 240, 1);
        padding: 50px 30px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        border-radius: 30px;
        position: relative;
        overflow: hidden;
        z-index: 1;
        margin-bottom: 100px;

        @media (min-width:280px) and (max-width:767.98px) {
            padding: 30px 18px;
            margin-bottom: 50px;
        }

        @media (min-width:768px) and (max-width:1023.98px) {
            padding: 30px 18px;
            margin-bottom: 0px;
        }

        @media (min-width:1024px) and (max-width:1169.98px) {
            padding: 40px 47px;
        }

        @media (min-width:1170px) and (max-width:1279.98px) {
            padding: 40px 47px;
        }
    }

    .conditions__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;

        @media (min-width:280px) and (max-width:767.98px) {
            grid-template-columns: 1fr;
        }
    }

    .conditions__left {
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        .conditions__left-top {
            .conditions__left-title {
                margin-bottom: 30px;

                @media (min-width:280px) and (max-width:767.98px) {
                    margin-bottom: 15px;
                }

                h2 {
                    strong {
                        display: block;
                        font-family: Manrope-Bold, sans-serif;
                        font-size: 40px;
                        line-height: 110%;
                        font-weight: 700;
                        color: #fff;
                        text-transform: uppercase;

                        @media (min-width:280px) and (max-width:767.98px) {
                            font-family: Manrope-SemiBold, sans-serif;
                            font-size: 22px;
                            line-height: 120%;
                            font-weight: 600;
                        }
                    }

                    span {
                        display: block;
                        font-family: Manrope-Regular, sans-serif;
                        font-size: 40px;
                        line-height: 110%;
                        font-weight: 500;
                        color: #fff;
                        text-transform: uppercase;

                        @media (min-width:280px) and (max-width:767.98px) {
                            font-size: 22px;
                            line-height: 120%;
                            font-weight: 400;
                        }
                    }
                }
            }

            .conditions__left-subtitle {
                p {
                    font-weight: 500;
                    font-style: normal !important;
                    font-family: "Montserrat-Regular", sans-serif;
                    font-size: 20px;
                    line-height: 130%;
                    color: #fff;
                    max-width: 435px;
                    opacity: .9;

                    @media (min-width:280px) and (max-width:767.98px) {
                        font-size: 14px;
                    }
                }

                @media (min-width:280px) and (max-width:767.98px) {
                    margin-bottom: 20px;
                }
            }
        }

        .conditions__left-bottom {
            .custom-list {
                list-style: none;
                padding: 0;
                margin: 0;

                li {
                    padding-left: 30px;
                    /* Пространство для иконки */
                    margin-bottom: 18px;
                    /* Отступ между элементами */
                    position: relative;
                    font-weight: 400;
                    font-style: normal !important;
                    font-family: "Montserrat-Regular", sans-serif;
                    font-size: 18px;
                    line-height: 100%;
                    color: #fff;

                    @media (min-width:280px) and (max-width:767.98px) {
                        font-size: 14px;
                        line-height: 130%;
                        padding-left: 20px;
                    }

                    &:last-child {
                        margin-bottom: 0;
                    }

                    &::before {
                        content: '';
                        position: absolute;
                        left: 0;
                        top: 50%;
                        transform: translateY(-50%);
                        width: 23px;
                        height: 23px;
                        background-image: url('../img/condit_icon.svg');
                        background-size: contain;
                        background-repeat: no-repeat;
                        display: inline-block;

                        @media (min-width:280px) and (max-width:767.98px) {
                            width: 15px;
                            height: 15px;
                            top: 0;
                            transform: none;
                            vertical-align: top;
                        }
                    }
                }
            }
        }


    }

    .conditions__right {
        display: flex;
        flex-direction: column;

        .conditions-image {
            position: relative;
            width: 100%;
            height: 263px;
            margin-bottom: 20px;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 20px;
            }

            @media (min-width:280px) and (max-width:767.98px) {
                margin-bottom: 10px;
                height: 140px;

                img {
                    border-radius: 11px;
                }
            }
        }


        .image-button {
            display: flex;
            align-items: center;
            justify-content: space-between;
            column-gap: 20px;

            @media (min-width:280px) and (max-width:767.98px) {
                flex-direction: column;
                row-gap: 20px;
            }
        }

        .conditions_btn {
            width: 100%;
            box-sizing: border-box;
            border: 1px solid rgb(255, 255, 255);
            border-radius: 6.09px;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            height: 90px;

            span {
                color: rgb(255, 255, 255);
                font-size: 16px;
                font-weight: 700;
                line-height: 100%;
                letter-spacing: 4px;
                text-align: center;
                text-transform: uppercase;
            }

            @media (min-width:280px) and (max-width:767.98px) {
                width: 100%;
                height: 60px;

                span {
                    font-size: 12px;
                    letter-spacing: 3px;
                }
            }


            &:hover {
                background: rgba(255, 255, 255, 0.5);
            }
        }

        .image-descr {
            margin-bottom: 20px;

            p {
                font-weight: 400;
                font-style: normal !important;
                font-family: "Montserrat-Regular", sans-serif;
                font-size: 14px;
                line-height: 140%;
                color: #fff;
                opacity: .9;

                @media (min-width:280px) and (max-width:767.98px) {
                    font-size: 10px;
                }
            }
        }

        .image-button p {
            font-weight: 400;
            font-style: normal !important;
            font-family: "Montserrat-Regular", sans-serif;
            font-size: 14px;
            line-height: 140%;
            color: #fff;
            max-width: 168px;
            opacity: .9;

            @media (min-width:280px) and (max-width:767.98px) {
                max-width: 173px;
                font-size: 10px;
                text-align: center;
            }
        }
    }
}

/* для страницы проверок кодов */

.hero__row.f-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}


.check_code_form {
  .form-inputs {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    column-gap: 10px;

    input {
      width: calc(33.3333% - 5px);
    }

    @media (min-width:280px) and (max-width:767.98px) {
      flex-direction: column;
      column-gap: 0px;
      row-gap: 10px;

      input {
        width: 100%;
        color: #fff;
      }
    }
    @media (min-width: 768px) and (max-width: 1023.98px) {
      justify-content: center;
    }

    button {
      box-sizing: border-box;
      border: 1px solid #0a76f0;
      border-radius: 3px;
      background: #0a76f0;
      display: flex;
      align-items: center;
      justify-content: center;
      width: calc(33.3333% - 5px);
      height: 56px;

      @media (min-width:280px) and (max-width:767.98px) {
        width: 100%;
      }

      span {
        color: rgb(255, 255, 255);
        font-size: 16px;
        font-weight: 600;
        line-height: 100%;
        letter-spacing: 5%;
        text-align: center;
        text-transform: uppercase;
      }

      &:hover {
        background: #066bdf;
      }
    }
  }
}

/* НОВАЯ СТРНИЦА */

body {
    &.b2b-inner-page {
        background: #fff;

        .when {
            background: rgba(2, 15, 29, 1);
        }

        footer {
            padding-top: 50px;
            background: rgba(2, 15, 29, 1);
        }
    }

    &.product-inner-page {
        background: rgba(2, 15, 29, 1);

        footer {
            padding-top: 50px;
            background: rgba(2, 15, 29, 1);
        }
    }
}



.new-header {
    .toggle_button {
        display: none;
    }

    .new-header_phone {
        display: none;
    }

    .header-nav {
        position: relative;
        transition: all .4s ease-in-out;

        ul {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            column-gap: 20px;

            a {
                color: rgba(255, 255, 255, 1);
                font-family: "Montserrat-Regular", sans-serif;
                font-size: 1.13rem;
                font-weight: 400;
                line-height: 1.38rem;
                letter-spacing: 0;
                text-align: left;

                @media (min-width:1024px) and (max-width:1279.098px) {
                    font-size: 0.85rem;
                }

                &:hover {
                    color: #2C8DFA;
                }
            }
        }
    }

    .nav-header,
    .nav-footer,
    .nav-close {
        display: none;
    }


    .desc_hidden {
        display: none;
    }

    @media(max-width:1023.98px) {

        .header__row {
            justify-content: space-between;
        }

        .header-nav {
            position: fixed;
            top: 0;
            bottom: 0;
            left: 100%;
            width: 100%;
            height: 100%;
            z-index: 4;
            background: rgba(2, 15, 29, 1);
            display: flex;
            flex-direction: column;
            justify-content: space-between;

            &.__open {
                left: 0;
            }
        }


        .nav-header {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 30px 25px 0 25px;
        }

        .header-nav {
            ul {
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                row-gap: 15px;

                .desc_hidden {
                    display: flex;
                }

                a {
                    color: rgba(255, 255, 255, 1);
                    font-family: Montserrat;
                    font-size: 1rem;
                    font-weight: 500;
                    line-height: 1.25rem;
                    letter-spacing: 0;
                    text-align: center;
                    display: flex;
                    max-width: 230px;

                    &.active {
                        color: #2C8DFA;
                    }
                }
            }
        }

        .toggle_button {
            display: flex;
        }

        .new-header_phone {
            display: flex;
        }

        .mob-visible {
            display: flex;
        }

        .nav-close {
            display: flex;
        }

        .nav-footer {
            padding: 0 0 30px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            row-gap: 10px;

            .new-header_phone {
                a {
                    color: rgba(255, 255, 255, 1);
                    font-family: Montserrat;
                    font-size: 1rem;
                    font-weight: 500;
                    line-height: 1.25rem;
                    letter-spacing: 0;
                    text-align: center;
                    text-decoration-line: underline;
                }
            }
        }
    }
}

.b2b-hero {
    background-image: url(../img/new-page/new-page-bg.webp);

    @media (min-width:280px) and (max-width:543px) {
        padding-bottom: 20px;
    }

    .hero-left {
        /* width: 100%; */
        width: 960px;

        @media (min-width:280px) and (max-width:359.98px) {
            width: 100%;
        }

        @media (min-width:360px) and (max-width:543.98px) {
            width: 100%;
        }

        @media (min-width:544px) and (max-width:767.98px) {
            width: 100%;
        }

        @media (min-width:768px) and (max-width:1023.98px) {
            width: 100%;
        }


        @media (min-width:1024px) and (max-width:1169.98px) {
            width: 90%;
        }

        @media (min-width:1170px) and (max-width:1279.98px) {
            width: 90%;
        }

        @media (min-width:1280px) and (max-width:1439.98px) {
            width: 90%;
        }

        @media (min-width:1440px) and (max-width:1599.98px) {
            width: 90%;
        }

        .subtitle {
            font-family: "Montserrat-Regular", sans-serif;
            font-weight: 400;
            font-size: 1.25rem;
            letter-spacing: 5px;

            @media (min-width:280px) and (max-width:359.98px) {
                font-size: 10px;
                line-height: 14px;
                text-align: center;
                letter-spacing: 7.4px;
                display: none;
            }

            @media (min-width:360px) and (max-width:543.98px) {
                font-size: 10px;
                line-height: 14px;
                text-align: center;
                letter-spacing: 7.4px;
                display: none;
            }

            @media (min-width:544px) and (max-width:768px) {
                font-size: 14px;
                line-height: 14px;
                text-align: center;
                letter-spacing: 7.4px;
                margin-bottom: 15px;
                display: none;
            }

            @media (min-width:769px) and (max-width:1170px) {
                font-size: 16px;
                line-height: 14px;
                letter-spacing: 8.4px;
                margin-bottom: 15px;
            }

            @media (min-width:1171px) and (max-width:1440px) {
                font-size: 18px;
                line-height: 18px;
                letter-spacing: 9.4px;
                margin-bottom: 15px;
            }

            @media (min-width:1441px) and (max-width:1600px) {
                font-size: 20px;
                line-height: 20px;
                letter-spacing: 10.4px;
                margin-bottom: 20px;
            }
        }

        h1 {
            text-transform: uppercase;
            font-size: 3.58rem;
            line-height: 1.45;

            @media (min-width:280px) and (max-width:359.98px) {
                font-size: 30px;
                line-height: 39px;
                text-align: center;
            }

            @media (min-width:360px) and (max-width:543.98px) {
                font-size: 28px;
                line-height: 39px;
                text-align: center;
            }

            @media (min-width:544px) and (max-width:768px) {
                font-size: 42px;
                line-height: 52px;
                text-align: center;
            }

            @media (min-width:769px) and (max-width:1279.98px) {
                font-size: 50px;
                line-height: 120%;
            }

            .border-text {
                /* margin-top: 10px; */
                /* padding-top: 8px; */
                width: 100%;
                height: 104px;
                /* background-image: none; */
                background-image: url(../img/new-page/pod_text.svg);
                background-size: 620px;
                /* box-sizing: border-box;
                border-radius: 1.0rem;
                box-shadow: 0rem 4.289156913757324rem 4.289156913757324rem 0rem rgba(0, 0, 0, 0.25);
                backdrop-filter: blur(139.67470169067383rem);
                background: rgba(217, 217, 217, 0.15); */

                @media (min-width:280px) and (max-width:359.98px) {
                    padding-top: 4px;
                    height: 50px;
                    background-size: contain;
                }

                @media (min-width:360px) and (max-width:543.98px) {
                    padding-top: 4px;
                    height: 50px;
                    background-size: contain;
                }

                @media (min-width:544px) and (max-width:768px) {
                    margin-left: 0px;
                    width: 100%;
                    height: 72.22px;
                    background-size: contain;
                    background-position: center;
                }

                @media (min-width:1024px) and (max-width:1279.098px) {
                    background-image: none;
                    height: auto;
                }
            }
        }

        .hero-text {
            margin-bottom: 20px;
        }
    }

    .hero-right {
        .img-wrapper {
            position: absolute;
            top: 100px;
            left: -190px;
            width: 600px;
            height: auto;

            @media (min-width:280px) and (max-width:359.98px) {
                position: relative;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
            }

            @media (min-width:360px) and (max-width:543.98px) {
                position: relative;
                width: 100%;
                height: 100%;
                top: 0;
                /* left: 0; */
                left: auto;
            }

            @media (min-width:544px) and (max-width:767.98px) {
                position: relative;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
            }

            @media (min-width:768px) and (max-width:1023.98px) {
                position: relative;
                width: 60%;
                margin-inline: auto;
                height: 100%;
                top: 0;
                left: 0;
            }

            @media (min-width:1024px) and (max-width:1169.98px) {
                top: auto;
                left: auto;
                right: 0;
                bottom: 0;
                width: 350px;
                height: 350px;
            }

            @media (min-width:1170px) and (max-width:1279.98px) {
                top: auto;
                left: auto;
                right: 0;
                bottom: 0;
                width: 450px;
                height: 450px;
            }

            @media (min-width:1280px) and (max-width:1439.98px) {
                top: auto;
                left: auto;
                right: 0;
                bottom: 0;
                width: 450px;
                height: 450px;
            }

            @media (min-width:1440px) and (max-width:1599.98px) {
                top: auto;
                left: auto;
                right: 0;
                bottom: 0;
                width: 550px;
                height: 550px;
            }

            @media (min-width:1600px) and (max-width:1919.98px) {
                top: 100px;
                left: auto;
                right: 0;
                bottom: 0;
                width: 570px;
                height: 650px;
            }
        }
    }
}

section.when {
    width: 100%;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    margin-bottom: 0px;

    @media (min-width:280px) and (max-width:359.98px) {
        padding: 0;
        margin-bottom: 30px;
    }

    @media (min-width:360px) and (max-width:543.98px) {
        padding: 0;
        margin-bottom: 30px;
    }


    @media (min-width:544px) and (max-width:767.98px) {
        padding: 0;
        margin-bottom: 30px;
    }

    @media (min-width:768px) and (max-width:1023.98px) {
        padding: 0;
        margin-bottom: 50px;
    }

    @media (min-width:1024px) and (max-width:1169.98px) {
        padding: 0 0 50px 0;
        margin-bottom: 0px;
    }

    @media (min-width:1170px) and (max-width:1279.98px) {
        padding: 0 0 50px 0;
        margin-bottom: 0px;
    }

    @media (min-width:1280px) and (max-width:1599.98px) {
        padding: 0 0 50px 0;
        margin-bottom: 0px;
    }

    @media (min-width:1600px) {
        padding: 0 0 50px 0;
    }

    .subtitle {
        color: rgba(255, 255, 255, 0.9);
        font-family: Montserrat;
        font-size: 1.25rem;
        font-weight: 300;
        line-height: 1.5rem;
        letter-spacing: 7px;
        text-align: center;
        text-transform: uppercase;

        @media (min-width:280px) and (max-width:359.98px) {
            font-size: 0.63rem;
            line-height: 0.75rem;
            text-align: center;
            letter-spacing: 2.4px;
        }

        @media (min-width:360px) and (max-width:543.98px) {
            font-size: 0.63rem;
            line-height: 0.75rem;
            text-align: center;
            letter-spacing: 2.4px;
        }

        @media (min-width:544px) and (max-width:768px) {
            font-size: 14px;
            line-height: 0.75rem;
            text-align: center;
            letter-spacing: 2.4px;
            margin-bottom: 15px;
        }

        @media (min-width:769px) and (max-width:1170px) {
            font-size: 16px;
            line-height: 14px;
            letter-spacing: 8.4px;
            margin-bottom: 15px;
        }

        @media (min-width:1171px) and (max-width:1440px) {
            font-size: 18px;
            line-height: 18px;
            letter-spacing: 9.4px;
            margin-bottom: 15px;
        }

        @media (min-width:1441px) and (max-width:1600px) {
            font-size: 20px;
            line-height: 20px;
            letter-spacing: 13.4px;
            margin-bottom: 20px;
        }
    }


    .title {
        margin-bottom: 63px;
        display: flex;
        justify-content: center;

        @media (min-width:280px) and (max-width:767.98px) {
            margin-bottom: 22px;
        }

        h2 {
            color: #fff;
            font-size: 4.06rem;
            font-weight: 500;
            line-height: 130%;
            letter-spacing: 0;
            text-align: center;
            text-transform: uppercase;

            @media (min-width:280px) and (max-width:359.98px) {
                font-size: 30px;
                line-height: 130%;
            }

            @media (min-width:360px) and (max-width:543.98px) {
                font-size: 30px;
                line-height: 130%;
            }

            @media (min-width:544px) and (max-width:767.98px) {}

            @media (min-width:768px) and (max-width:1023.98px) {}

            @media (min-width:1024px) and (max-width:1169.98px) {}

            @media (min-width:1170px) and (max-width:1279.98px) {}

            @media (min-width:1280px) and (max-width:1439.98px) {}

            span {
                color: rgb(44, 141, 250);
            }
        }
    }

    .when_content {
        display: flex;

        @media (min-width:280px) and (max-width:768px) {
            flex-direction: column;
            row-gap: 20px;
        }

        .when_content-image {
            width: 47.06rem;
            background-image: url(../img/new-page/2sec.webp);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: top center;
            flex-shrink: 0;

            @media (min-width:280px) and (max-width:768px) {
                width: 100%;
                height: 20.97rem;
            }

            @media (min-width:1024px) and (max-width:1280px) {
                width: 50%;
            }
        }

        .when_content-items {
            /* width: auto; */
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            row-gap: 22px;

            @media (min-width:280px) and (max-width:768px) {
                row-gap: 10px;
                padding-bottom: 50px;
            }

            .item {
                width: 100%;
                min-height: 13.13rem;
                position: relative;
                padding: 40px 25px;
                box-sizing: border-box;
                background: rgba(28, 39, 52, 1);
                z-index: 2;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                row-gap: 14px;

                @media (min-width:280px) and (max-width:768px) {
                    min-height: 9.38rem;
                    padding: 25px 10px;
                }


                &::after {
                    content: '';
                    position: absolute;
                    width: 40%;
                    left: 50%;
                    bottom: 0px;
                    transform: translateX(-50%);
                    margin: 0px auto;
                    padding: 0;
                    height: 1px;
                    border: none;
                    border-bottom: 1px solid #0a76f0;
                    box-shadow: 0 20px 20px -20px #002c5d;

                }



                .item-title {
                    width: 100%;
                    display: flex;
                    align-items: center;
                    column-gap: 10px;

                    svg {
                        width: 35px;
                        height: 35px;
                        flex-shrink: 0;

                        @media (min-width:280px) and (max-width:768px) {
                            width: 25px;
                            height: 25px;
                        }
                    }

                    h3 {
                        color: rgba(255, 255, 255, 0.9);
                        font-family: Montserrat;
                        font-size: 1rem;
                        font-weight: 500;
                        line-height: 1.25rem;
                        letter-spacing: 0;
                        text-align: left;

                        @media (min-width:280px) and (max-width:768px) {
                            font-size: 0.88em;
                            line-height: 1.06rem;
                        }
                    }
                }

                .item-text {
                    p {
                        color: rgba(255, 255, 255, 0.7);
                        font-family: "Montserrat-Regular", sans-serif;
                        font-size: 1rem;
                        font-weight: 400;
                        line-height: 1.25rem;
                        letter-spacing: 0%;
                        text-align: left;

                        @media (min-width:280px) and (max-width:768px) {
                            font-size: 0.88em;
                            line-height: 1.06rem;
                        }
                    }
                }

            }
        }
    }
}

section.catalog {
    background: #fff;
    margin-bottom: 0;

    width: 100%;
    position: relative;
    padding: 80px 0;
    overflow: hidden;

    @media (min-width:280px) and (max-width:359.98px) {
        padding: 0px 0;
        margin-bottom: 30px;
    }

    @media (min-width:360px) and (max-width:543.98px) {
        padding: 0px 0;
        margin-bottom: 30px;
    }


    @media (min-width:544px) and (max-width:767.98px) {
        padding: 0px 0;
        margin-bottom: 30px;
    }

    @media (min-width:768px) and (max-width:1023.98px) {
        padding: 30px 0;
        margin-bottom: 50px;
    }

    @media (min-width:1024px) and (max-width:1169.98px) {
        padding: 50px 0;
        /* margin-bottom: 80px; */
    }

    @media (min-width:1170px) and (max-width:1279.98px) {
        padding: 50px 0;
        /* margin-bottom: 80px; */
    }

    @media (min-width:1280px) and (max-width:1599.98px) {
        padding: 50px 0;
        /* margin-bottom: 80px; */
    }

    @media (min-width:1600px) {
        padding: 50px 0;
    }

    .subtitle {
        color: rgba(2, 15, 29, 0.9);
        font-family: Montserrat;
        font-size: 1.25rem;
        font-weight: 300;
        line-height: 1.5rem;
        letter-spacing: 7px;
        text-align: center;
        text-transform: uppercase;

        @media (min-width:280px) and (max-width:359.98px) {
            font-size: 0.63rem;
            line-height: 0.75rem;
            text-align: center;
            letter-spacing: 2.4px;
        }

        @media (min-width:360px) and (max-width:543.98px) {
            font-size: 0.63rem;
            line-height: 0.75rem;
            text-align: center;
            letter-spacing: 2.4px;
        }

        @media (min-width:544px) and (max-width:768px) {
            font-size: 14px;
            line-height: 0.75rem;
            text-align: center;
            letter-spacing: 2.4px;
            margin-bottom: 15px;
        }

        @media (min-width:769px) and (max-width:1170px) {
            font-size: 16px;
            line-height: 14px;
            letter-spacing: 8.4px;
            margin-bottom: 15px;
        }

        @media (min-width:1171px) and (max-width:1440px) {
            font-size: 18px;
            line-height: 18px;
            letter-spacing: 9.4px;
            margin-bottom: 15px;
        }

        @media (min-width:1441px) and (max-width:1600px) {
            font-size: 20px;
            line-height: 20px;
            letter-spacing: 13.4px;
            margin-bottom: 20px;
        }
    }


    .title {
        margin-bottom: 63px;
        display: flex;
        justify-content: center;

        @media (min-width:280px) and (max-width:767.98px) {
            margin-bottom: 22px;
        }

        h2 {
            color: #020f1d;
            font-size: 4.06rem;
            font-weight: 500;
            line-height: 130%;
            letter-spacing: 0;
            text-align: center;
            text-transform: uppercase;

            @media (min-width:280px) and (max-width:359.98px) {
                font-size: 30px;
                line-height: 130%;
            }

            @media (min-width:360px) and (max-width:543.98px) {
                font-size: 30px;
                line-height: 130%;
            }

            @media (min-width:544px) and (max-width:767.98px) {}

            @media (min-width:768px) and (max-width:1023.98px) {}

            @media (min-width:1024px) and (max-width:1169.98px) {}

            @media (min-width:1170px) and (max-width:1279.98px) {}

            @media (min-width:1280px) and (max-width:1439.98px) {}

            span {
                color: rgb(44, 141, 250);
            }
        }
    }

    .catalog__top-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(18.125rem, 1fr));
        gap: 7px;
        margin-bottom: 30px;

        .catalog__top-wrapper-item {
            background: rgba(241, 241, 241, 1);
            display: flex;
            flex-direction: column;
            padding: 28px 20px;
            border-radius: 8px;
            cursor: pointer;

            &:hover {
                background: rgb(221, 219, 219);
            }

            @media (min-width:280px) and (max-width:768px) {
                padding: 28px 10px;
            }

            .ctw-title {
                display: flex;
                gap: 7px;

                svg {
                    width: 50px;
                    height: 50px;
                    flex-shrink: 0;

                    @media (min-width:280px) and (max-width:768px) {
                        height: 25px;
                        width: 25px;
                    }
                }

                h3 {
                    color: rgba(2, 15, 29, 1);
                    font-family: Montserrat;
                    font-size: 1.13rem;
                    font-weight: 500;
                    line-height: 1.38rem;
                    letter-spacing: 0;
                    text-align: left;
                    text-transform: uppercase;
                    max-width: 180px;

                    @media (min-width:280px) and (max-width:768px) {
                        font-size: 0.88rem;
                        line-height: 1.06rem;
                    }
                }
            }

            .item-image {
                display: flex;
                align-items: center;
                justify-content: center;
                max-width: 385px;
                width: 100%;

                img {
                    width: 100%;
                    height: auto;
                    object-fit: contain;
                }
            }
        }
    }

    .catalog__bottom-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(18.125rem, 1fr));
        column-gap: 45px;
        row-gap: 20px;
        margin-bottom: 50px;

        @media (min-width:280px) and (max-width:768px) {
            row-gap: 15px;
        }

        .catalog__bottom-wrapper-item {
            background: rgba(241, 241, 241, 1);
            display: flex;
            flex-direction: column;
            border-radius: 5px;
            padding: 30px 30px 34px 30px;

            .cbw-title {
                display: flex;
                gap: 7px;
                margin-bottom: 7px;

                svg {
                    width: 35px;
                    height: 35px;
                    flex-shrink: 0;

                    @media (min-width:280px) and (max-width:768px) {
                        height: 25px;
                        width: 25px;
                    }
                }

                h4 {
                    color: rgba(2, 15, 29, 1);
                    font-family: Montserrat;
                    font-size: 1rem;
                    font-weight: 500;
                    line-height: 1.25rem;
                    letter-spacing: 0;
                    text-align: left;
                    max-width: 180px;

                    @media (min-width:280px) and (max-width:768px) {
                        font-size: 0.88rem;
                        line-height: 1.06rem;
                    }
                }
            }

            .cbw-text {
                p {
                    font-family: "Montserrat-Regular", sans-serif;
                    color: rgba(2, 15, 29, 1);
                    font-size: 1rem;
                    font-weight: 400;
                    line-height: 1.25rem;
                    letter-spacing: 0%;
                    text-align: left;
                }
            }

            &:last-child {
                padding: 0;
                background: #fff;
                align-items: center;
                justify-content: center;
            }
        }

        .hero-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 99.64px;
            border-radius: 5px;
            box-shadow: inset 0px 15px 28.1px 0px rgba(255, 255, 255, 0.15);
            background: rgb(10, 118, 240);
            border-bottom: 5px solid rgb(8, 87, 177);

            @media (min-width:280px) and (max-width:359.98px) {
                width: 98%;
                height: 77px;
                margin-inline: auto;
            }

            @media (min-width:360px) and (max-width:543.98px) {
                width: 100%;
                height: 77px;
                margin-inline: auto;
            }

            @media (min-width:544px) and (max-width:1023.98px) {
                width: 50%;
                height: 77px;
                margin-inline: auto;
            }

            &:hover {
                background: rgb(4, 102, 214);
                border-bottom: 5px solid rgb(4, 76, 158);
            }

            span {
                color: rgb(255, 255, 255);
                font-size: 16px;
                font-weight: 700;
                line-height: 100%;
                letter-spacing: 5px;
                text-align: center;
                text-transform: uppercase;

                @media (min-width:280px) and (max-width:359.98px) {
                    font-size: 11.64px;
                    line-height: 11.64px;
                    letter-spacing: 4px;
                }

                @media (min-width:360px) and (max-width:543.98px) {
                    font-size: 11.64px;
                    line-height: 11.64px;
                    letter-spacing: 4px;
                }
            }
        }
    }
}


/* grid media container */
.grid-media-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 10px 10px;
    grid-template-areas:
        "ms-1 mbig mbig"
        "ms-2 mbig mbig"
        "ms-3 ms-4 ms-5";

    @media (min-width:360px) and (max-width:768px) {
        gap: 5px 5px;
    }
}


.ms-1 {
    grid-area: ms-1;
}

.ms-2 {
    grid-area: ms-2;
}

.ms-3 {
    grid-area: ms-3;
}

.ms-4 {
    grid-area: ms-4;
}

.ms-5 {
    grid-area: ms-5;
}

.mbig {
    grid-area: mbig;
}

.media-wrapper {
    border-radius: 5px;
    background: rgba(240, 240, 240, 1);
    position: relative;
    overflow: hidden;
    display: flex;

    &.mw-mini {
        max-height: 13.38rem;
    }

    &.mw-max {
        max-height: 27.38rem;
    }

    &.video-type {

        &::after {
            position: absolute;
            content: '';
            background-image: url(../img/new-page/icons/video-circle-2.svg);
            background-repeat: no-repeat;
            background-size: cover;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 3;
        }

        &.mw-max {
            &::after {
                width: 170px;
                height: 170px;

                @media (min-width:360px) and (max-width:768px) {
                    width: 50px;
                    height: 50px;
                }
            }
        }

        &.mw-mini {
            &::after {
                width: 50px;
                height: 50px;

                @media (min-width:360px) and (max-width:768px) {
                    width: 25px;
                    height: 25px;
                }
            }
        }
    }

    &::before {
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        background: rgba(2, 15, 29, .4);
        left: 0;
        top: 0;
        z-index: 2;
        border-radius: 5px;
    }



    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(1);
    }
}

.components-base {
    width: 100%;
    padding: 50px 0;
    background: rgba(2, 15, 29, 1);

    @media (min-width:280px) and (max-width:359.98px) {
        padding: 30px 0;
        margin-bottom: 350px;
    }

    @media (min-width:360px) and (max-width:543.98px) {
        padding: 30px 0;
        margin-bottom: 30px;
    }


    @media (min-width:544px) and (max-width:767.98px) {
        padding: 30px 0;
        margin-bottom: 30px;
    }

    @media (min-width:768px) and (max-width:1023.98px) {
        padding: 0;
        margin-bottom: 50px;
    }

    @media (min-width:1024px) and (max-width:1169.98px) {
        padding: 50px 0;
        /* margin-bottom: 80px; */
    }

    @media (min-width:1170px) and (max-width:1279.98px) {
        padding: 50px 0;
        /* margin-bottom: 80px; */
    }

    @media (min-width:1280px) and (max-width:1599.98px) {
        padding: 50px 0;
        /* margin-bottom: 80px; */
    }

    @media (min-width:1600px) {
        padding: 50px 0;
    }

    .base-container {
        margin-bottom: 50px;

        @media (min-width:280px) and (max-width:768px) {
            margin-bottom: 30px;
        }
    }

    ._container:last-child {
        margin-bottom: 0px;

        @media (min-width:280px) and (max-width:768px) {
            /* margin-bottom: 30px; */
        }

        .consult__wrapper {
            padding: 50px;
            margin-bottom: 0;

            @media (min-width:280px) and (max-width:768px) {
                padding: 20px;
            }
        }

        .controls {
            @media (min-width:280px) and (max-width:768px) {
                row-gap: 20px;
            }

            .new-controls__title {
                width: 100%;
                max-width: 983px;
                position: relative;
                margin-bottom: 10px;

                @media (min-width:280px) and (max-width:768px) {
                    max-width: 100%;
                }

                h3 {
                    color: rgb(255, 255, 255);
                    font-family: Manrope, sans-serif;
                    font-size: 4.06rem;
                    line-height: 1;
                    letter-spacing: 0;
                    text-transform: uppercase;

                    @media (min-width:280px) and (max-width:359.98px) {
                        text-align: center;
                        font-size: 1.78rem;
                        line-height: 1.2;
                        margin-bottom: 5px;
                    }

                    @media (min-width:360px) and (max-width:767.98px) {
                        text-align: center;
                        font-size: 1.78rem;
                        line-height: 1.2;
                        margin-bottom: 5px;
                    }

                    @media (min-width:768px) and (max-width:1023.98px) {
                        font-size: 30px;
                    }

                    @media (min-width:1024px) and (max-width:1169.98px) {
                        font-size: 40px;
                    }
                }

                p {
                    display: block;
                    position: absolute;
                    right: 0;
                    bottom: 0;
                    width: 317px;

                    font-family: 'Montserrat-Regular', sans-serif;
                    color: rgba(255, 255, 255, 0.9);
                    font-size: 1.13rem;
                    font-weight: 500;
                    line-height: 1.75rem;
                    letter-spacing: 0;
                    text-align: left;

                    @media (min-width:280px) and (max-width:768px) {
                        position: relative;
                        width: 80%;
                        right: auto;
                        left: auto;
                        margin-inline: auto;
                        text-align: center;
                        font-size: 0.88rem;
                        font-weight: 400;
                        line-height: 1.06rem;
                        letter-spacing: 0;
                    }


                }
            }

            width: 100%;

            .controls-form__wrapper {
                .form-inputs {
                    input {
                        width: calc(33.3333% - 5px);

                        @media (min-width:280px) and (max-width:768px) {
                            width: 100%;
                        }
                    }
                }

                .form-agree {
                    p {
                        color: rgba(219, 236, 255, 1);
                        font-family: 'Montserrat-Regular', sans-serif;
                        font-size: 0.81rem;
                        font-weight: 400;
                        line-height: 1;
                        letter-spacing: 0;
                        text-align: left;
                        padding-bottom: 3px;
                    }

                    a {
                        color: rgba(219, 236, 255, 1);
                        font-family: 'Montserrat-Regular', sans-serif;
                        font-size: 0.81rem;
                        font-weight: 400;
                        line-height: 1;
                        letter-spacing: 0;
                        text-align: left;
                        text-decoration: underline;

                        &:hover {
                            opacity: .7;
                        }
                    }

                    @media (min-width:280px) and (max-width:768px) {
                        display: flex;
                        flex-direction: column;
                        row-gap: 5px;

                        p {
                            text-align: center;
                        }
                    }
                }
            }
        }
    }

    .subtitle {
        color: rgba(255, 255, 255, 0.9);
        font-family: Montserrat;
        font-size: 1.25rem;
        font-weight: 300;
        line-height: 1.5rem;
        letter-spacing: 7px;
        text-align: center;
        text-transform: uppercase;

        @media (min-width:280px) and (max-width:359.98px) {
            font-size: 0.63rem;
            line-height: 0.75rem;
            text-align: center;
            letter-spacing: 2.4px;
        }

        @media (min-width:360px) and (max-width:543.98px) {
            font-size: 0.63rem;
            line-height: 0.75rem;
            text-align: center;
            letter-spacing: 2.4px;
        }

        @media (min-width:544px) and (max-width:768px) {
            font-size: 14px;
            line-height: 0.75rem;
            text-align: center;
            letter-spacing: 2.4px;
            margin-bottom: 15px;
        }

        @media (min-width:769px) and (max-width:1170px) {
            font-size: 16px;
            line-height: 14px;
            letter-spacing: 8.4px;
            margin-bottom: 15px;
        }

        @media (min-width:1171px) and (max-width:1440px) {
            font-size: 18px;
            line-height: 18px;
            letter-spacing: 9.4px;
            margin-bottom: 15px;
        }

        @media (min-width:1441px) and (max-width:1600px) {
            font-size: 20px;
            line-height: 20px;
            letter-spacing: 13.4px;
            margin-bottom: 20px;
        }
    }


    .title {
        margin-bottom: 63px;
        display: flex;
        justify-content: center;

        @media (min-width:280px) and (max-width:767.98px) {
            margin-bottom: 22px;

            br {
                display: none;
            }
        }

        h2 {
            color: #fff;
            font-size: 4.06rem;
            font-weight: 500;
            line-height: 130%;
            letter-spacing: 0;
            text-align: center;
            text-transform: uppercase;

            @media (min-width:280px) and (max-width:359.98px) {
                font-size: 30px;
                line-height: 130%;
            }

            @media (min-width:360px) and (max-width:543.98px) {
                font-size: 30px;
                line-height: 130%;
            }

            @media (min-width:544px) and (max-width:767.98px) {}

            @media (min-width:768px) and (max-width:1023.98px) {}

            @media (min-width:1024px) and (max-width:1169.98px) {}

            @media (min-width:1170px) and (max-width:1279.98px) {}

            @media (min-width:1280px) and (max-width:1439.98px) {}

            span {
                color: rgb(44, 141, 250);
            }
        }
    }

    .when_content {
        display: flex;

        @media (min-width:280px) and (max-width:768px) {
            flex-direction: column;
            row-gap: 20px;
        }

        .when_content-image {
            width: 65%;
            height: 100%;
            /* background-image: url(../img/new-page/base/base_img.webp);
            background-repeat: no-repeat;
            background-size: contain;
            background-position: top; */
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;

            img {
                /* width: 90%;
                height: 90%;
                object-fit: contain; */
            }

            @media (min-width:280px) and (max-width:768px) {
                width: 100%;
                height: 20.97rem;
            }

            @media (min-width:1024px) and (max-width:1280px) {
                width: 50%;
            }

            .image-button {
                width: 100%;
                display: flex;
                justify-content: center;

                .hero-button {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 438.9px;
                    height: 99.64px;
                    border-radius: 5px;
                    box-shadow: inset 0px 15px 28.1px 0px rgba(255, 255, 255, 0.15);
                    background: rgb(10, 118, 240);
                    border-bottom: 5px solid rgb(8, 87, 177);

                    @media (min-width:280px) and (max-width:359.98px) {
                        width: 98%;
                        height: 77px;
                        margin-inline: auto;
                    }

                    @media (min-width:360px) and (max-width:543.98px) {
                        width: 100%;
                        height: 77px;
                        margin-inline: auto;
                    }

                    @media (min-width:544px) and (max-width:1023.98px) {
                        width: 50%;
                        height: 77px;
                        margin-inline: auto;
                    }

                    &:hover {
                        background: rgb(4, 102, 214);
                        border-bottom: 5px solid rgb(4, 76, 158);
                    }

                    span {
                        color: rgb(255, 255, 255);
                        font-size: 16px;
                        font-weight: 700;
                        line-height: 100%;
                        letter-spacing: 5px;
                        text-align: center;
                        text-transform: uppercase;

                        @media (min-width:280px) and (max-width:359.98px) {
                            font-size: 11.64px;
                            line-height: 11.64px;
                            letter-spacing: 4px;
                        }

                        @media (min-width:360px) and (max-width:543.98px) {
                            font-size: 11.64px;
                            line-height: 11.64px;
                            letter-spacing: 4px;
                        }
                    }
                }
            }
        }

        .when_content-items {
            /* width: auto; */
            width: 35%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            row-gap: 22px;

            @media (min-width:280px) and (max-width:768px) {
                width: 100%;
                row-gap: 10px;
            }

            .item {
                width: 100%;
                min-height: 13.13rem;
                position: relative;
                padding: 40px 25px;
                box-sizing: border-box;
                background: rgba(28, 39, 52, 1);
                z-index: 2;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                row-gap: 14px;

                @media (min-width:280px) and (max-width:768px) {
                    min-height: 9.38rem;
                    padding: 25px 10px;
                }


                &::after {
                    content: '';
                    position: absolute;
                    width: 40%;
                    left: 50%;
                    bottom: 0px;
                    transform: translateX(-50%);
                    margin: 0px auto;
                    padding: 0;
                    height: 1px;
                    border: none;
                    border-bottom: 1px solid #0a76f0;
                    box-shadow: 0 20px 20px -20px #002c5d;

                }



                .item-title {
                    width: 100%;
                    display: flex;
                    align-items: center;
                    column-gap: 10px;

                    svg {
                        width: 35px;
                        height: 35px;
                        flex-shrink: 0;

                        @media (min-width:280px) and (max-width:768px) {
                            width: 25px;
                            height: 25px;
                        }
                    }

                    h3 {
                        color: rgba(255, 255, 255, 0.9);
                        font-family: Montserrat;
                        font-size: 1rem;
                        font-weight: 500;
                        line-height: 1.25rem;
                        letter-spacing: 0;
                        text-align: left;

                        @media (min-width:280px) and (max-width:768px) {
                            font-size: 0.88em;
                            line-height: 1.06rem;
                        }
                    }
                }

                .item-text {
                    p {
                        color: rgba(255, 255, 255, 0.7);
                        font-family: "Montserrat-Regular", sans-serif;
                        font-size: 1rem;
                        font-weight: 400;
                        line-height: 1.25rem;
                        letter-spacing: 0%;
                        text-align: left;

                        @media (min-width:280px) and (max-width:768px) {
                            font-size: 0.88em;
                            line-height: 1.06rem;
                        }
                    }
                }

            }
        }
    }
}

.trials {
    padding: 50px 0;

    overflow: hidden;

    @media (min-width:280px) and (max-width:359.98px) {
        padding: 0px 0;
        margin-bottom: 30px;
    }

    @media (min-width:360px) and (max-width:543.98px) {
        padding: 0px 0;
        margin-bottom: 30px;
    }


    @media (min-width:544px) and (max-width:767.98px) {
        padding: 0px 0;
        margin-bottom: 30px;
    }

    @media (min-width:768px) and (max-width:1023.98px) {
        padding: 30px 0;
        margin-bottom: 50px;
    }

    @media (min-width:1024px) and (max-width:1169.98px) {
        padding: 50px 0;
        /* margin-bottom: 80px; */
    }

    @media (min-width:1170px) and (max-width:1279.98px) {
        padding: 50px 0;
        /* margin-bottom: 80px; */
    }

    @media (min-width:1280px) and (max-width:1599.98px) {
        padding: 50px 0;
        /* margin-bottom: 80px; */
    }

    @media (min-width:1600px) {
        padding: 50px 0;
    }

    .subtitle {
        color: rgba(2, 15, 29, 0.9);
        font-family: Montserrat;
        font-size: 1.25rem;
        font-weight: 300;
        line-height: 1.5rem;
        letter-spacing: 7px;
        text-align: center;
        text-transform: uppercase;

        @media (min-width:280px) and (max-width:359.98px) {
            font-size: 0.63rem;
            line-height: 0.75rem;
            text-align: center;
            letter-spacing: 2.4px;
        }

        @media (min-width:360px) and (max-width:543.98px) {
            font-size: 0.63rem;
            line-height: 0.75rem;
            text-align: center;
            letter-spacing: 2.4px;
        }

        @media (min-width:544px) and (max-width:768px) {
            font-size: 14px;
            line-height: 0.75rem;
            text-align: center;
            letter-spacing: 2.4px;
            margin-bottom: 15px;
        }

        @media (min-width:769px) and (max-width:1170px) {
            font-size: 16px;
            line-height: 14px;
            letter-spacing: 8.4px;
            margin-bottom: 15px;
        }

        @media (min-width:1171px) and (max-width:1440px) {
            font-size: 18px;
            line-height: 18px;
            letter-spacing: 9.4px;
            margin-bottom: 15px;
        }

        @media (min-width:1441px) and (max-width:1600px) {
            font-size: 20px;
            line-height: 20px;
            letter-spacing: 13.4px;
            margin-bottom: 20px;
        }
    }


    .title {
        margin-bottom: 63px;
        display: flex;
        justify-content: center;

        @media (min-width:280px) and (max-width:767.98px) {
            margin-bottom: 22px;
        }

        h2 {
            color: #020f1d;
            font-size: 4.06rem;
            font-weight: 500;
            line-height: 130%;
            letter-spacing: 0;
            text-align: center;
            text-transform: uppercase;

            @media (min-width:280px) and (max-width:359.98px) {
                font-size: 30px;
                line-height: 130%;
            }

            @media (min-width:360px) and (max-width:543.98px) {
                font-size: 30px;
                line-height: 130%;
            }

            @media (min-width:544px) and (max-width:767.98px) {}

            @media (min-width:768px) and (max-width:1023.98px) {}

            @media (min-width:1024px) and (max-width:1169.98px) {}

            @media (min-width:1170px) and (max-width:1279.98px) {}

            @media (min-width:1280px) and (max-width:1439.98px) {}

            span {
                color: rgb(44, 141, 250);
            }
        }
    }

    .grid-media-container {
        margin-bottom: 100px;

        @media (min-width:280px) and (max-width:768px) {
            margin-bottom: 30px;
        }
    }

    .trials__about-text {
        display: flex;
        column-gap: 25px;
        margin-bottom: 46px;

        @media (min-width:360px) and (max-width:768px) {
            flex-direction: column;
            row-gap: 10px;
            margin-bottom: 20px;
        }

        .trials_content {
            width: 100%;

            p {
                font-family: 'Montserrat-Regular', sans-serif;
                color: rgba(2, 15, 29, 1);
                font-size: 1rem;
                font-weight: 400;
                line-height: 1.25rem;
                letter-spacing: 0;
                text-align: left;


                &:not(:last-child) {
                    margin-bottom: 30px;
                }

                @media (min-width:280px) and (max-width:768px) {
                    font-size: .8rem;
                    line-height: 1.3;

                    &:not(:last-child) {
                        margin-bottom: 20px;
                    }
                }
            }
        }

        .trials_image {
            width: 502px;
            border-radius: 20px;
            overflow: hidden;
            flex-shrink: 0;

            @media (min-width:280px) and (max-width:768px) {
                width: 100%;
                border-radius: 12px;
            }

            img {
                width: 100%;
                height: auto;
                object-fit: cover;
            }
        }
    }

    .trials__about-adv {
        display: flex;
        align-items: center;
        justify-content: space-between;

        @media (min-width:280px) and (max-width:768px) {
            flex-wrap: wrap;
            justify-content: flex-start;
            gap: 10px;
        }

        .item {
            display: flex;
            align-items: center;
            column-gap: 10px;
            padding: 9px 12px;
            border-radius: 5px;
            background: rgba(240, 240, 240, 1);

            svg {
                width: 20px;
                height: 18px;
                flex-shrink: 0;

                @media (min-width:280px) and (max-width:768px) {
                    width: 15px;
                    height: 13px;
                }
            }

            span {
                color: rgba(2, 15, 29, 1);
                font-family: "Montserrat-Regular", sans-serif;
                font-size: 1.13rem;
                font-weight: 400;
                line-height: 100%;
                letter-spacing: 1px;
                text-align: center;

                @media (min-width:280px) and (max-width:768px) {
                    font-size: 0.75em;
                }
            }
        }
    }
}

.advantages-using {

    width: 100%;
    padding: 50px 0;
    background: rgba(2, 15, 29, 1);

    @media (min-width:280px) and (max-width:359.98px) {
        padding: 30px 0;
        margin-bottom: 350px;
    }

    @media (min-width:360px) and (max-width:543.98px) {
        padding: 30px 0;
        /* margin-bottom: 30px; */
    }


    @media (min-width:544px) and (max-width:767.98px) {
        padding: 30px 0;
        /* margin-bottom: 30px; */
    }

    @media (min-width:768px) and (max-width:1023.98px) {
        padding: 0;
        /* margin-bottom: 50px; */
    }

    @media (min-width:1024px) and (max-width:1169.98px) {
        padding: 50px 0;
        /* margin-bottom: 80px; */
    }

    @media (min-width:1170px) and (max-width:1279.98px) {
        padding: 50px 0;
        /* margin-bottom: 80px; */
    }

    @media (min-width:1280px) and (max-width:1599.98px) {
        padding: 50px 0;
        /* margin-bottom: 80px; */
    }

    @media (min-width:1600px) {
        padding: 50px 0;
    }

    .subtitle {
        color: rgba(255, 255, 255, 0.9);
        font-family: Montserrat;
        font-size: 1.25rem;
        font-weight: 300;
        line-height: 1.5rem;
        letter-spacing: 7px;
        text-align: center;
        text-transform: uppercase;

        @media (min-width:280px) and (max-width:359.98px) {
            font-size: 0.63rem;
            line-height: 0.75rem;
            text-align: center;
            letter-spacing: 2.4px;
        }

        @media (min-width:360px) and (max-width:543.98px) {
            font-size: 0.63rem;
            line-height: 0.75rem;
            text-align: center;
            letter-spacing: 2.4px;
        }

        @media (min-width:544px) and (max-width:768px) {
            font-size: 14px;
            line-height: 0.75rem;
            text-align: center;
            letter-spacing: 2.4px;
            margin-bottom: 15px;
        }

        @media (min-width:769px) and (max-width:1170px) {
            font-size: 16px;
            line-height: 14px;
            letter-spacing: 8.4px;
            margin-bottom: 15px;
        }

        @media (min-width:1171px) and (max-width:1440px) {
            font-size: 18px;
            line-height: 18px;
            letter-spacing: 9.4px;
            margin-bottom: 15px;
        }

        @media (min-width:1441px) and (max-width:1600px) {
            font-size: 20px;
            line-height: 20px;
            letter-spacing: 13.4px;
            margin-bottom: 20px;
        }
    }


    .title {
        margin-bottom: 63px;
        display: flex;
        justify-content: center;

        @media (min-width:280px) and (max-width:767.98px) {
            margin-bottom: 22px;

            br {
                display: none;
            }
        }

        h2 {
            color: #fff;
            font-size: 4.06rem;
            font-weight: 500;
            line-height: 130%;
            letter-spacing: 0;
            text-align: center;
            text-transform: uppercase;

            @media (min-width:280px) and (max-width:359.98px) {
                font-size: 30px;
                line-height: 130%;
            }

            @media (min-width:360px) and (max-width:543.98px) {
                font-size: 30px;
                line-height: 130%;
            }

            @media (min-width:544px) and (max-width:767.98px) {}

            @media (min-width:768px) and (max-width:1023.98px) {}

            @media (min-width:1024px) and (max-width:1169.98px) {}

            @media (min-width:1170px) and (max-width:1279.98px) {}

            @media (min-width:1280px) and (max-width:1439.98px) {}

            span {
                color: rgb(44, 141, 250);
            }
        }
    }

    .advantages-using__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        margin-bottom: 50px;

        @media (min-width:280px) and (max-width:1024px) {
            grid-template-columns: repeat(auto-fit, minmax(18.125rem, 1fr));
            gap: 25px;
        }

        .item {
            background: rgba(28, 39, 52, 1);
            position: relative;
            padding: 30px;

            @media (min-width:280px) and (max-width:1024px) {
                padding: 25px;
            }

            &::before {
                position: absolute;
                content: '';
                width: 60%;
                height: 4.5px;
                border-radius: 5px 5px 0 0;
                background: rgba(10, 118, 240, 1);
                top: -5px;
                left: 50%;
                transform: translateX(-50%);

                @media (min-width:280px) and (max-width:1024px) {
                    height: 2px;
                    top: -2px;
                }
            }

            .item_title {
                margin-bottom: 16px;
                display: flex;
                align-items: center;
                gap: 14px;

                @media (min-width:280px) and (max-width:1024px) {
                    margin-bottom: 10px;
                }

                svg {
                    width: 50px;
                    height: 50px;
                    flex-shrink: 0;

                    @media (min-width:280px) and (max-width:1024px) {
                        width: 25px;
                        height: 25px;
                    }
                }

                h3 {
                    color: rgba(255, 255, 255, 0.9);
                    font-family: "Montserrat-Regular", sans-serif;
                    font-size: 1.13rem;
                    font-weight: 500;
                    line-height: 1.38rem;
                    letter-spacing: 0;
                    text-align: left;

                    @media (min-width:280px) and (max-width:1024px) {
                        font-size: 0.88rem;
                        line-height: 1.06rem;
                    }
                }
            }

            .item_text {
                p {
                    color: rgba(255, 255, 255, 0.9);
                    font-family: "Montserrat-Regular", sans-serif;
                    font-size: 1rem;
                    font-weight: 400;
                    line-height: 1.25rem;
                    letter-spacing: 0;
                    text-align: left;
                    opacity: .7;

                    @media (min-width:280px) and (max-width:1024px) {
                        font-size: 0.88rem;
                        line-height: 1.06rem;
                    }
                }
            }
        }

    }

    .advantages-using__form {
        margin-bottom: 50px;

        .blue-wrapper {
            background: linear-gradient(148.72deg, rgb(44, 141, 250) 19.831%, rgb(4, 89, 183) 53.025%);
            padding: 60px 100px 0 50px;
            display: flex;
            justify-content: center;
            flex-direction: row;
            border-radius: 30px;
            position: relative;
            overflow: hidden;
            z-index: 1;


            @media (min-width:280px) and (max-width:767.98px) {
                padding: 30px 18px;
                margin-bottom: 0px;
                flex-direction: column;
                row-gap: 20px;
                padding-bottom: 0;
            }

            @media (min-width:768px) and (max-width:1023.98px) {
                padding: 30px 18px;
                margin-bottom: 0px;
                flex-direction: column;
                row-gap: 20px;
                padding-bottom: 0;
            }

            @media (min-width:1024px) and (max-width:1169.98px) {
                padding: 40px 47px;
            }

            @media (min-width:1170px) and (max-width:1279.98px) {
                padding: 40px 47px;
            }

            .left-content {
                width: 100%;
                padding-bottom: 93px;

                @media (min-width:280px) and (max-width:768px) {
                    padding-bottom: 0;
                }

                h2 {
                    color: rgba(255, 255, 255, 1);
                    font-family: Manrope;
                    font-size: 4.06rem;
                    font-weight: 400;
                    line-height: 1;
                    letter-spacing: 0;
                    text-align: left;
                    text-transform: uppercase;
                    margin-bottom: 22px;

                    @media (min-width:280px) and (max-width:768px) {
                        font-size: 1.75rem;
                        line-height: 1.2;
                        margin-bottom: 15px;
                    }
                }

                .left-content-text {
                    display: flex;
                    align-items: center;
                    justify-content: flex-start;
                    gap: 17px;
                    margin-bottom: 40px;

                    @media (min-width:280px) and (max-width:768px) {
                        margin-bottom: 15px;
                    }

                    svg {
                        width: 23px;
                        height: 21px;
                    }

                    p {
                        color: rgba(255, 255, 255, 0.9);
                        font-family: "Montserrat-Regular", sans-serif;
                        font-size: 1.13rem;
                        font-weight: 400;
                        line-height: 1.38rem;
                        letter-spacing: 0;
                        text-align: left;
                        max-width: 245px;

                        @media (min-width:280px) and (max-width:768px) {
                            font-size: 0.88rem;
                            line-height: 1.56;
                        }
                    }
                }

                .left-content-button {
                    button {
                        box-sizing: border-box;
                        border: 1px solid rgb(255, 255, 255);
                        border-radius: 6.09px;
                        background: rgba(255, 255, 255, 0.2);
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        width: 370px;
                        height: 80px;

                        @media (min-width:280px) and (max-width:767.98px) {
                            width: 100%;
                        }

                        span {
                            color: rgb(255, 255, 255);
                            font-size: 16px;
                            font-weight: 600;
                            line-height: 100%;
                            letter-spacing: 5%;
                            text-align: center;
                            text-transform: uppercase;
                        }

                        &:hover {
                            background: rgba(255, 255, 255, 0.5);
                        }
                    }
                }
            }

            .right-image {
                flex-shrink: 0;
                width: 415px;
                height: 478px;
                background-image: url(../img/new-page/adv-using-form-img.webp);
                background-repeat: no-repeat;
                background-position: bottom center;

                @media (min-width:280px) and (max-width:768px) {
                    width: 100%;
                    height: 330px;
                    background-position: top center;
                    background-size: contain;
                }
            }
        }
    }

    .adv-using_content {
        display: flex;

        @media (min-width:280px) and (max-width:768px) {
            flex-direction: column;
            row-gap: 20px;
        }

        .adv-using_content-image {
            width: 38.13rem;
            /* background-image: url(../img/new-page/adv-using-content-img.webp);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: top center; */
            flex-shrink: 0;

            display: flex;
            flex-direction: column;
            justify-content: space-between;

            img {
                width: 100%;
                height: auto;
                object-fit: cover;
            }

            @media (min-width:280px) and (max-width:768px) {
                width: 100%;
                height: 100%;
            }

            @media (min-width:1024px) and (max-width:1280px) {
                width: 50%;
            }

            .image-button {
                width: 100%;
                display: flex;
                justify-content: center;

                .hero-button {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 438.9px;
                    height: 99.64px;
                    border-radius: 5px;
                    box-shadow: inset 0px 15px 28.1px 0px rgba(255, 255, 255, 0.15);
                    background: rgb(10, 118, 240);
                    border-bottom: 5px solid rgb(8, 87, 177);

                    @media (min-width:280px) and (max-width:359.98px) {
                        width: 98%;
                        height: 77px;
                        margin-inline: auto;
                    }

                    @media (min-width:360px) and (max-width:543.98px) {
                        width: 100%;
                        height: 77px;
                        margin-inline: auto;
                    }

                    @media (min-width:544px) and (max-width:1023.98px) {
                        width: 50%;
                        height: 77px;
                        margin-inline: auto;
                    }

                    &:hover {
                        background: rgb(4, 102, 214);
                        border-bottom: 5px solid rgb(4, 76, 158);
                    }

                    span {
                        color: rgb(255, 255, 255);
                        font-size: 16px;
                        font-weight: 700;
                        line-height: 100%;
                        letter-spacing: 5px;
                        text-align: center;
                        text-transform: uppercase;

                        @media (min-width:280px) and (max-width:359.98px) {
                            font-size: 11.64px;
                            line-height: 11.64px;
                            letter-spacing: 4px;
                        }

                        @media (min-width:360px) and (max-width:543.98px) {
                            font-size: 11.64px;
                            line-height: 11.64px;
                            letter-spacing: 4px;
                        }
                    }
                }
            }
        }

        .adv-using_content-items {
            width: 100%;
            display: flex;
            flex-direction: column;
            /* justify-content: space-between; */
            row-gap: 35px;

            @media (min-width:280px) and (max-width:768px) {
                row-gap: 18px;
                padding-bottom: 0;
            }

            .item {
                background: rgba(28, 39, 52, 1);
                position: relative;
                padding: 30px;
                min-height: 219px;

                @media (min-width:280px) and (max-width:1024px) {
                    padding: 25px;
                    min-height: auto;
                }

                &::before {
                    position: absolute;
                    content: '';
                    width: 60%;
                    height: 4.5px;
                    border-radius: 5px 5px 0 0;
                    background: rgba(10, 118, 240, 1);
                    top: -5px;
                    left: 50%;
                    transform: translateX(-50%);

                    @media (min-width:280px) and (max-width:1024px) {
                        height: 2px;
                        top: -2px;
                    }
                }

                .item_title {
                    margin-bottom: 16px;
                    display: flex;
                    align-items: center;
                    gap: 14px;

                    @media (min-width:280px) and (max-width:1024px) {
                        margin-bottom: 10px;
                    }

                    svg {
                        width: 50px;
                        height: 50px;
                        flex-shrink: 0;

                        @media (min-width:280px) and (max-width:1024px) {
                            width: 25px;
                            height: 25px;
                        }
                    }

                    h3 {
                        color: rgba(255, 255, 255, 0.9);
                        font-family: "Montserrat-Regular", sans-serif;
                        font-size: 1.13rem;
                        font-weight: 500;
                        line-height: 1.38rem;
                        letter-spacing: 0;
                        text-align: left;

                        @media (min-width:280px) and (max-width:1024px) {
                            font-size: 0.88rem;
                            line-height: 1.06rem;
                        }
                    }
                }

                .item_text {
                    p {
                        color: rgba(255, 255, 255, 0.9);
                        font-family: "Montserrat-Regular", sans-serif;
                        font-size: 1rem;
                        font-weight: 400;
                        line-height: 1.25rem;
                        letter-spacing: 0;
                        text-align: left;
                        opacity: .7;

                        @media (min-width:280px) and (max-width:1024px) {
                            font-size: 0.88rem;
                            line-height: 1.06rem;
                        }
                    }
                }
            }
        }
    }
}

.reviews {
    padding: 50px 0;

    overflow: hidden;

    @media (min-width:280px) and (max-width:359.98px) {
        padding: 30px 0;
    }

    @media (min-width:360px) and (max-width:543.98px) {
        padding: 30px 0;
    }


    @media (min-width:544px) and (max-width:767.98px) {
        padding: 30px 0;
    }

    @media (min-width:768px) and (max-width:1023.98px) {
        padding: 50px 0;
    }

    @media (min-width:1024px) and (max-width:1169.98px) {
        padding: 50px 0;
    }

    @media (min-width:1170px) and (max-width:1279.98px) {
        padding: 50px 0;
    }

    @media (min-width:1280px) and (max-width:1599.98px) {
        padding: 50px 0;
    }

    @media (min-width:1600px) {
        padding: 50px 0;
    }

    .subtitle {
        color: rgba(2, 15, 29, 0.9);
        font-family: Montserrat;
        font-size: 1.25rem;
        font-weight: 300;
        line-height: 1.5rem;
        letter-spacing: 7px;
        text-align: center;
        text-transform: uppercase;

        @media (min-width:280px) and (max-width:359.98px) {
            font-size: 0.63rem;
            line-height: 0.75rem;
            text-align: center;
            letter-spacing: 2.4px;
        }

        @media (min-width:360px) and (max-width:543.98px) {
            font-size: 0.63rem;
            line-height: 0.75rem;
            text-align: center;
            letter-spacing: 2.4px;
        }

        @media (min-width:544px) and (max-width:768px) {
            font-size: 14px;
            line-height: 0.75rem;
            text-align: center;
            letter-spacing: 2.4px;
            margin-bottom: 15px;
        }

        @media (min-width:769px) and (max-width:1170px) {
            font-size: 16px;
            line-height: 14px;
            letter-spacing: 8.4px;
            margin-bottom: 15px;
        }

        @media (min-width:1171px) and (max-width:1440px) {
            font-size: 18px;
            line-height: 18px;
            letter-spacing: 9.4px;
            margin-bottom: 15px;
        }

        @media (min-width:1441px) and (max-width:1600px) {
            font-size: 20px;
            line-height: 20px;
            letter-spacing: 13.4px;
            margin-bottom: 20px;
        }
    }


    .title {
        margin-bottom: 40px;
        display: flex;
        justify-content: center;

        @media (min-width:280px) and (max-width:767.98px) {
            margin-bottom: 22px;
        }

        h2 {
            color: #020f1d;
            font-size: 4.06rem;
            font-weight: 500;
            line-height: 130%;
            letter-spacing: 0;
            text-align: center;
            text-transform: uppercase;

            @media (min-width:280px) and (max-width:359.98px) {
                font-size: 30px;
                line-height: 130%;
            }

            @media (min-width:360px) and (max-width:543.98px) {
                font-size: 30px;
                line-height: 130%;
            }

            @media (min-width:544px) and (max-width:767.98px) {}

            @media (min-width:768px) and (max-width:1023.98px) {}

            @media (min-width:1024px) and (max-width:1169.98px) {}

            @media (min-width:1170px) and (max-width:1279.98px) {}

            @media (min-width:1280px) and (max-width:1439.98px) {}

            span {
                color: rgb(44, 141, 250);
            }
        }
    }

    .reviews-one-silder-container {
        position: relative;
        margin-bottom: 9px;

        .rev-item {
            /* width: 100%; */
            display: flex;
            height: 380px;
            border-radius: 16px;
            overflow: hidden;
            @media (min-width:280px) and (max-width:767.98px) {
                height: 280px;
            }


            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    }

    .reviews-two-silder-container {
        position: relative;
        margin-bottom: 9px;

        .rev-item {
            /* width: 100%; */
            display: flex;
            height: 205px;
            border-radius: 16px;
            overflow: hidden;
            @media (min-width:280px) and (max-width:767.98px) {
                height: 150px;
            }


            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    }



    .rev-one-slider-nav {
        width: 100%;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding-inline: 1.25rem;
        height: 1.25rem;

        @media(max-width:767.98px) {
            display: none;
        }

        button {
            width: 2rem;
            height: 2rem;

            svg {
                width: 100%;
                height: 100%;
                fill: rgba(43.52423858642578, 140.85430908203125, 249.9000244140625, 1);
            }
        }

        .sl-button-prev {
            position: absolute;
            left: -35px;
        }

        .sl-button-next {
            position: absolute;
            right: -35px;
        }
    }
}

/* НОВЫЕ ПОПАПЫ */

.popup-spec-offer {
    position: relative;
    max-width: 800px;
    width: 100%;
    padding: 40px 40px;
    border-radius: 5px;
    background: linear-gradient(148.72deg, rgb(44, 141, 250) 19.831%, rgb(4, 89, 183) 53.025%);
    overflow: unset;

    @media (min-width:280px) and (max-width:768px) {
        padding: 20px 25px 40px 25px;
    }

    .popup-spec-offer__wrapper {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        row-gap: 33px;

        @media (min-width:280px) and (max-width:768px) {
            row-gap: 20px;
        }

        .popup-spec-offer__wrapper-top {
            display: flex;
            justify-content: space-between;

            @media (min-width:280px) and (max-width:768px) {
                flex-direction: column;
                row-gap: 20px;
            }

            .offer-text {
                width: 50%;
                display: flex;
                flex-direction: column;
                row-gap: 10px;

                @media (min-width:280px) and (max-width:768px) {
                    width: 100%;
                    row-gap: 5px;
                }

                .subtitle {
                    color: rgba(255, 255, 255, 0.9);
                    font-family: "Montserrat-Regular", sans-serif;
                    font-size: 16px;
                    font-weight: 400;
                    line-height: 20px;
                    letter-spacing: 4px;
                    text-transform: uppercase;

                    @media (min-width:280px) and (max-width:768px) {
                        font-size: 12px;
                    }
                }

                .title {
                    h3 {
                        color: rgba(255, 255, 255, 1);

                        font-family: Manrope;
                        font-size: 40px;
                        font-weight: 400;
                        line-height: 1.1;
                        letter-spacing: 0;
                        text-align: left;
                        text-transform: uppercase;

                        @media (min-width:280px) and (max-width:768px) {
                            font-size: 32px;
                            line-height: 1.1;
                        }

                        span {
                            font-weight: 600;
                        }
                    }
                }

                .text {
                    color: rgba(255, 255, 255, 0.9);

                    font-family: "Montserrat-Regular", sans-serif;
                    font-size: 14px;
                    font-weight: 500;
                    line-height: 17px;
                    letter-spacing: 0;
                    text-align: left;
                }
            }

            .offer-form-wrapper {
                width: 100%;
                max-width: 300px;

                @media (min-width:280px) and (max-width:768px) {
                    max-width: 100%;
                }

                form {

                    .popup-form__input {
                        margin-top: 0;
                        margin-bottom: 10px;
                    }

                    button {
                        box-sizing: border-box;
                        border: 1px solid rgb(255, 255, 255);
                        border-radius: 6.09px;
                        background: rgba(255, 255, 255, 0.2);
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        width: 100%;
                        height: 56px;

                        margin-top: 20px;

                        @media (min-width:280px) and (max-width:768px) {
                            width: 100%;
                        }

                        span {
                            color: rgb(255, 255, 255);
                            font-size: 16px;
                            font-weight: 600;
                            line-height: 100%;
                            letter-spacing: 5%;
                            text-align: center;
                            text-transform: uppercase;
                        }

                        &:hover {
                            background: rgba(255, 255, 255, 0.5);
                        }
                    }
                }
            }
        }

        .popup-spec-offer__wrapper-bottom {
            width: 100%;
            height: 275px;
            background-image: url(../img/new-page/popups/spec-offer-img.png);
            background-repeat: no-repeat;
            background-size: cover;
            border-radius: 20px;
            filter: grayscale(1);

            @media (min-width:280px) and (max-width:768px) {
                height: 122.22px;
            }
        }
    }
}

.popup-save-catalog {
    position: relative;
    max-width: 800px;
    width: 100%;
    padding: 40px 40px 50px 40px;
    border-radius: 5px;
    background: linear-gradient(148.72deg, rgb(44, 141, 250) 19.831%, rgb(4, 89, 183) 53.025%);
    overflow: unset;

    @media (min-width:280px) and (max-width:768px) {
        padding: 20px 25px 40px 25px;
    }

    .popup-save-catalog__wrapper {
        display: flex;
        flex-direction: column;
    }

    .popup-save-catalog__top {
        display: flex;

        @media (min-width:280px) and (max-width:768px) {
            flex-direction: column;
            row-gap: 8px;
        }

        .top-left {
            display: flex;
            flex-direction: column;
            row-gap: 5px;

            .top-left_subtitle {
                color: rgba(255, 255, 255, 0.9);
                font-family: "Montserrat-Regular", sans-serif;
                font-size: 16px;
                font-weight: 400;
                line-height: 20px;
                letter-spacing: 4px;
                text-transform: uppercase;

                @media (min-width:280px) and (max-width:768px) {
                    font-size: 12px;
                }
            }

            .top-left_title {
                h3 {
                    color: rgba(255, 255, 255, 1);

                    font-family: Manrope;
                    font-size: 40px;
                    font-weight: 400;
                    line-height: 1.1;
                    letter-spacing: 0;
                    text-align: left;
                    text-transform: uppercase;

                    @media (min-width:280px) and (max-width:768px) {
                        font-size: 30px;
                        line-height: 1.1;
                    }

                    span {
                        font-weight: 600;
                    }
                }
            }
        }

        .top-right {
            padding-top: 26px;

            @media (min-width:280px) and (max-width:768px) {
                padding-top: 0;
            }

            p {
                color: rgba(255, 255, 255, 0.9);
                font-family: "Montserrat-Regular", sans-serif;
                font-size: 14px;
                font-weight: 500;
                line-height: 17px;
                letter-spacing: 0;
                text-align: left;
            }
        }
    }

    .popup-save-catalog__bottom {
        display: flex;
        justify-content: space-between;

        @media (min-width:280px) and (max-width:768px) {
            flex-direction: column-reverse;

        }
    }

    .bottom_form {
        width: 300px;

        @media (min-width:280px) and (max-width:768px) {
            width: 100%;
        }

        form {
            margin-top: 30px;
            @media (min-width:280px) and (max-width:768px) {
                margin-top: 0;
            }

            .popup-form__input {
                margin-top: 0;
                margin-bottom: 10px;
                width: 300px;

                @media (min-width:280px) and (max-width:768px) {
                    width: 100%;
                }
            }

            button {
                box-sizing: border-box;
                border: 1px solid rgb(255, 255, 255);
                border-radius: 6.09px;
                background: rgba(255, 255, 255, 0.2);
                display: flex;
                align-items: center;
                justify-content: center;
                width: 300px;
                height: 56px;

                margin-top: 10px;

                @media (min-width:280px) and (max-width:768px) {
                    width: 100%;
                }

                span {
                    color: rgb(255, 255, 255);
                    font-size: 16px;
                    font-weight: 600;
                    line-height: 100%;
                    letter-spacing: 5%;
                    text-align: center;
                    text-transform: uppercase;
                }

                &:hover {
                    background: rgba(255, 255, 255, 0.5);
                }
            }
        }
    }


    .bottom_image {
        width: 43%;

        @media (min-width:280px) and (max-width:768px) {
            width: 100%;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .save-catalog-img {
            position: relative;

            img {
                width: 90%;
                top: 40px;
                right: 15px;
                position: absolute;
                transform: rotate(-9.85deg);

                @media (min-width:280px) and (max-width:768px) {
                    width: 100%;
                    position: relative;
                    top: 0;
                    right: 0;
                }
            }
        }
    }
}

/* СТРАНИЦА ТОВАРА */
.product-card {
    padding-top: 205px;
    padding-bottom: 60px;

    @media (min-width:280px) and (max-width:768px) {
        padding-top: 105px;
        padding-bottom: 30px;
    }

    @media (min-width:1024px) and (max-width:1280px) {
        padding-top: 145px;
    }

    .card-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        margin-bottom: 60px;

        @media (min-width:280px) and (max-width:768px) {
            flex-direction: column;
            gap: 20px;
            margin-bottom: 30px;
        }

        @media (min-width:1024px) and (max-width:1280px) {
            gap: 20px;
            align-items: flex-start;
        }

        .product-gallery {
            width: 100%;
            min-width: 450px;
            height: auto;
            min-height: 100%;

            /* background: #000; */
            @media (min-width:280px) and (max-width:768px) {
                min-width: 100%;
            }

            @media (min-width:1024px) and (max-width:1280px) {
                min-width: 40%;
            }
        }

        .product-info {
            width: 100%;
            max-width: 670px;
            height: auto;
            flex-shrink: 0;
            border-radius: 20px;
            background: rgba(28, 39, 52, 1);
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;

            @media (min-width:280px) and (max-width:768px) {
                max-width: 100%;
                padding: 20px 10px;
            }

            @media (min-width:1024px) and (max-width:1280px) {
                padding: 40px 20px;
                max-width: 60%;
                flex-shrink: inherit;
            }

            .info-title {
                margin-bottom: 86px;

                @media (min-width:280px) and (max-width:768px) {
                    margin-bottom: 30px;
                }

                h1 {
                    margin-bottom: 12px;
                    color: rgba(255, 255, 255, 1);
                    font-family: Manrope;
                    font-size: 40px;
                    font-weight: 600;
                    line-height: 1;
                    letter-spacing: 0;
                    text-align: left;
                    text-transform: uppercase;

                    @media (min-width:280px) and (max-width:768px) {
                        font-size: 18px;
                        line-height: 25px;
                        margin-bottom: 5px;
                    }

                    @media (min-width:1024px) and (max-width:1280px) {
                        font-size: 28px;
                    }
                }

                p {
                    color: rgba(190, 190, 190, 1);
                    font-family: "Montserrat-Regular", sans-serif;
                    font-size: 18px;
                    font-weight: 500;
                    line-height: 22px;
                    letter-spacing: 0%;
                    text-align: left;

                    @media (min-width:280px) and (max-width:768px) {
                        font-size: 12px;
                        line-height: 15px;
                    }
                }
            }

            .characteristics-block {
                width: 100%;
                /* Блок может быть любой ширины */
                font-family: sans-serif;
            }

            .characteristic-line {
                position: relative;
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
                margin-bottom: 12px;
                /* Отступ между строками */
            }

            .characteristic-name,
            .characteristic-value {
                background: rgba(28, 39, 52, 1);
                /* flex: 1; */
                text-align: left;
                padding: 0px 0;
                color: rgba(171, 175, 180, 1);
                font-family: "Montserrat-Regular", sans-serif;
                font-size: 16px;
                font-weight: 400;
                line-height: 20px;
                letter-spacing: 0;
            }

            .characteristic-name {
                @media (min-width:280px) and (max-width:768px) {
                    font-size: 10px;
                    /* line-height: 12px; */
                }
            }

            .characteristic-value {
                color: #fff;

                @media (min-width:280px) and (max-width:768px) {
                    font-size: 10px;
                    /* line-height: 15px; */
                }
            }

            .characteristic-line::after {
                content: '';
                position: absolute;
                left: 0;
                right: 0;
                height: 1px;
                background-color: rgb(43, 54, 68);
                /* background-color: rgba(32, 43, 56, 1); */
                /* Цвет линии */
                /* top: 50%;
                transform: translateY(-0.5px); */
                bottom: 0;
                /* Центрируем линию по высоте */
                z-index: 0;
            }

            .characteristic-name,
            .characteristic-value {
                position: relative;
                z-index: 1;
                /* Чтобы текст был поверх линии */
            }
        }
    }

    .card-description {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 40px;

        @media (min-width:280px) and (max-width:768px) {
            flex-direction: column;
            gap: 20px;
        }

        @media (min-width:1024px) and (max-width:1280px) {
            gap: 20px;
            align-items: flex-start;
        }

        .card-description_chars {
            width: 100%;
            min-width: 450px;
            height: auto;
            min-height: 100%;

            @media (min-width:280px) and (max-width:768px) {
                min-width: 100%;
            }

            @media (min-width:1024px) and (max-width:1280px) {
                min-width: 40%;
            }

            .title {
                margin-bottom: 30px;

                @media (min-width:280px) and (max-width:768px) {
                    margin-bottom: 20px;
                }

                h2 {
                    color: rgba(255, 255, 255, 1);
                    font-family: Manrope;
                    font-size: 40px;
                    font-weight: 500;
                    line-height: 55px;
                    letter-spacing: 0;
                    text-align: left;
                    text-transform: uppercase;

                    @media (min-width:280px) and (max-width:768px) {
                        font-size: 18px;
                        line-height: 25px;
                    }
                }
            }

            .chars-list {
                ul {
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    row-gap: 16px;

                    @media (min-width:280px) and (max-width:768px) {
                        row-gap: 10px;
                    }

                    li {
                        width: 100%;
                        display: flex;
                        align-items: center;
                        gap: 20px;

                        /* span {
                            width: 50%;
                            flex-shrink: 0;
                        } */

                        .ch_name {
                            color: rgba(171, 175, 180, 1);
                            font-family: "Montserrat-Regular", sans-serif;
                            font-size: 16px;
                            font-weight: 400;
                            line-height: 20px;
                            letter-spacing: 0;
                            text-align: left;
                            flex-shrink: 0;

                            @media (min-width:280px) and (max-width:768px) {
                                font-size: 10px;
                                line-height: 12px;
                            }
                        }

                        .ch_value {
                            color: rgba(255, 255, 255, 1);
                            font-family: "Montserrat-Regular", sans-serif;
                            font-size: 16px;
                            font-weight: 500;
                            line-height: 20px;
                            letter-spacing: 0;
                            text-align: left;

                            @media (min-width:280px) and (max-width:768px) {
                                font-size: 12px;
                                line-height: 1;
                            }
                        }
                    }
                }
            }
        }

        .card-description_desc {
            width: 100%;
            max-width: 670px;
            height: auto;
            flex-shrink: 0;
            padding: 0px 0px;

            @media (min-width:280px) and (max-width:768px) {
                max-width: 100%;
                padding: 0;
            }

            @media (min-width:1024px) and (max-width:1280px) {
                padding: 40px 20px;
                max-width: 60%;
                flex-shrink: inherit;
            }

            .title {
                margin-bottom: 30px;

                @media (min-width:280px) and (max-width:768px) {
                    margin-bottom: 20px;
                }

                h2 {
                    color: rgba(255, 255, 255, 1);
                    font-family: Manrope;
                    font-size: 40px;
                    font-weight: 500;
                    line-height: 55px;
                    letter-spacing: 0;
                    text-align: left;
                    text-transform: uppercase;

                    @media (min-width:280px) and (max-width:768px) {
                        font-size: 18px;
                        line-height: 25px;
                    }
                }
            }

            .desc_content {
                p {
                    color: rgba(171, 175, 180, 1);
                    font-family: "Montserrat-Regular", sans-serif;
                    font-size: 16px;
                    font-weight: 400;
                    line-height: 20px;
                    letter-spacing: 0;
                    text-align: left;

                    @media (min-width:280px) and (max-width:768px) {
                        font-size: 14px;
                        line-height: 17px;
                    }

                    &:not(:last-child) {
                        margin-bottom: 30px;

                        @media (min-width:280px) and (max-width:768px) {
                            margin-bottom: 20px;
                        }
                    }
                }

                h4 {
                    color: rgba(171, 175, 180, 1);
                    font-family: "Montserrat-Regular", sans-serif;
                    font-size: 18px;
                    line-height: 22px;
                    font-weight: 500;
                    margin-bottom: 10px;

                    @media (min-width:280px) and (max-width:768px) {
                        margin-bottom: 6px;
                    }
                }

                ul {
                    box-sizing: border-box;
                    list-style: none;
                    padding: 0;
                    margin: 0;

                    &:not(:last-child) {
                        margin-bottom: 30px;

                        @media (min-width:280px) and (max-width:768px) {
                            margin-bottom: 20px;
                        }
                    }

                    li {
                        font-family: "Montserrat-Regular", sans-serif;
                        position: relative;
                        padding-left: 1.2rem;
                        margin-bottom: 12px;
                        color: rgba(171, 175, 180, 1);
                        font-size: 16px;
                        font-weight: 400;
                        line-height: 20px;
                        letter-spacing: 0;
                        text-align: left;

                        @media (min-width:280px) and (max-width:768px) {
                            font-size: 14px;
                            line-height: 17px;
                        }
                    }


                    li::before {
                        content: '';
                        position: absolute;
                        left: 0;
                        top: 50%;
                        transform: translateY(-50%);
                        width: 0.18rem;
                        height: 0.18rem;
                        background: rgba(171, 175, 180, 1);
                        border-radius: 50%;
                    }


                    li:last-child {
                        margin-bottom: 0;
                    }
                }
            }
        }
    }
}

/* product slider */

.product-gallery {



    .first-item {
        position: relative;
        display: block;
        overflow: hidden;
        flex-basis: 100%;
        height: 300px;
        margin-right: 16px;
        margin-bottom: 16px;
        background: rgba(28, 39, 52, 1);
        border-radius: 20px;

        @media (min-width:280px) and (max-width:768px) {
            height: 200px;
        }
    }

    .first-item a {
        position: relative;
        display: block;
        overflow: hidden;
        width: 100%;
        height: 100%;
        z-index: 2;
    }

    .first-item a::before {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        transition: opacity .3s ease-in-out;
        background-color: rgba(43, 52, 69, .8);
        content: "";
        opacity: 0;
        z-index: 1;
    }

    .first-item a:hover {
        &::before {
            opacity: 1;
        }
    }

    .first-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        /* background: #f4f4f4; */
        border-radius: 20px;
    }

    .first-item a::after {
        display: none;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 2.875rem;
        height: 2.875rem;
        margin-top: -1.4375rem;
        margin-left: -1.4375rem;
        transform: scale(0.3);
        color: #fff;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 12.75rem;
        font-weight: 100;
        text-align: center;
        line-height: 2.875rem;
        content: "+";
        z-index: 5;
    }

    .first-item a:hover {
        &::after {
            display: block;
        }
    }

    .second-item {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        height: 100px;
        border-radius: 20px;
        border: 1px solid transparent;
        opacity: .5;

        @media (min-width:280px) and (max-width:768px) {
            height: 70px;
        }

        &::before {
            position: absolute;
            content: '';
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transition: opacity .3s ease-in-out;
            background-color: rgba(43, 52, 69, .5);
            border-radius: 20px;
            z-index: 1;
            /* opacity: 0; */
        }

        img {
            /* background: #f4f4f4; */
            border-radius: 20px;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        &:hover {
            opacity: .8;
        }
    }

    .gallery-control .swiper-slide-thumb-active {
        opacity: 1;
        border: 1px solid #fff;

        /* background-color: #f0f0f0; */
        &::before {
            opacity: 0;
        }
    }

}
.save-catalog-form {
    margin-bottom: 20px;
}
.popup-save-catalog {
    .popup-form__policy {
        margin-top: 0;
        text-align: left;
        margin-bottom: 12px;
    }
}