* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Inter", sans-serif;
}

a {
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    color: #009A73;
}

li {
    list-style-type: none;
}

section,
footer {
    padding: 7rem 5rem;
}

body {
    background-image: url(./images/bg_main.png);
    background-position: center;
    background-size: 100%;
    background-attachment: fixed;
}

.section-bg {
    background-color: #F3F3F3;
}

.header {
    padding: 1rem 4rem 0.625rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 148px;
}

.header_nav {
    display: flex;
    gap: 2rem;
}

#menu {
    display: none;
}

.nav-img {
    width: 24px;
    cursor: pointer;
}

.modal_menu {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #FFFFFF70;
    position: fixed;
    justify-content: space-between;
    z-index: 10;
    display: none;
    flex-direction: column;
}

.modal_menu-bg {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    width: 100%;
    height: auto;
    padding: 1.5rem 4rem;
}

.modal_menu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    width: 100%;
}

.modal-btn-back {
    cursor: pointer;
}

.header_nav_text,
.header_nav_link {
    font-size: 1rem;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.0px;
    color: #000000;
}

.btn_green {
    background-color: #009A73;
    border: 3px solid #009A73;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 150%;
    color: #FFFFFF;
    cursor: pointer;
}

.btn_green:hover {
    background-color: #FFFFFF;
    color: #009A73;
}

.hero {
    padding: 3rem 5rem 7rem 5rem;
}

.hero_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.688rem;
    padding: 5.75rem 0;
}

.hero_over-title {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 112%;
    text-align: center;
    letter-spacing: -0.6px;

}

.hero_title {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 4rem;
    line-height: 120%;
    letter-spacing: -2.6px;
    text-align: center;
    text-transform: uppercase;
}

.hero_under-title {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 150%;
    text-align: center;
    width: 50%;
}

.arrow-img {
    width: 36px;
}

.btn {
    background-color: initial;
    border: 3px solid #009A73;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    gap: 1.125rem;
    padding: 0.313rem;
    position: relative;
    justify-content: space-between;
}

.btn:hover .arrow-img {
    animation:
        .8s linear 0s infinite alternate move
}


@keyframes move {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-8px);
    }
}



.btn a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}

.btn-text {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 150%;
    color: #000000;
    padding-left: 1.25rem;
}

.hero_container-pics {
    display: flex;
    gap: 5rem;
}

.hero-pic-wrapper {
    width: 46.7%;
}

.hero-pic {
    width: 100%;
    border-radius: 40px;
}

.goods {
    display: flex;
    gap: 5rem;
    flex-direction: column;
}

.goods_container-group {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.goods_text-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.goods_title-over {
    color: #000000;
    font-weight: 700;
    font-size: 1rem;
    line-height: 150%;
}

.goods_title-container {
    display: flex;
    align-items: baseline;
    gap: 0.563rem;
}

.goods_title {
    color: #000000;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 3.125rem;
    line-height: 120%;
    letter-spacing: -1px;
}

.goods_title-img {
    width: 26px;
}

.text {
    color: #000000;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 145%;
}

.cards_goods {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.card_goods {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    width: 31%;
}

.card_goods-img {
    border-radius: 20px;
}

.card_goods-name {
    font-weight: 500;
    font-size: 1rem;
    line-height: 140%;
    color: #000000;
}

.card_goods-price {
    font-weight: 700;
    font-size: 1.625rem;
    line-height: 150%;
    color: #000000;
}



.advantages {
    gap: 5rem;
    display: flex;
    background-color: #FFFFFF;
}

.advantages_container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.advantages-pic-wrapper {
    width: 100%;
}

.advantages-img {
    width: 100%;
    border-radius: 40px;
}

.advantages_cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem 0;
}

.advantages_card {
    width: 48%;
    display: flex;
    flex-direction: column;
}

.advantages_green-text {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 120%;
    letter-spacing: -0.6px;
    color: #009A73;
}

.text {
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    letter-spacing: 0.0px;
    color: #000000;
}




.patent {
    display: flex;
    flex-direction: column;
    gap: 98px;
}

.patent-title {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 4rem;
    line-height: 112.00000000000001%;
    letter-spacing: -1.3px;
    color: #000000;
}

.patent-title-mob {
    display: none;
}

.patent-dash_img {
    width: 148px;
    border-radius: 80px;
}

.patent_container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.patent_cards {
    display: flex;
    flex-direction: column;
    gap: 0.938rem;
}

.patent_card {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.patent_card-img {
    width: 24px;
}

.patent_card-text {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 112.00000000000001%;
    letter-spacing: -0.3px;
    color: #000000;
}

.patent_container-img {
    position: relative;
    font-size: 0;
}

.patent-img {
    width: 224px;
    border-radius: 20px;
    box-shadow: 0px 3px 3px 1px rgba(233, 233, 233, 0.4);
    cursor: pointer;
}

.patent-img5,
.patent-img2,
.patent-img3,
.patent-img4 {
    position: absolute;
}

.patent-img1 {
    right: 0;
    z-index: 10;
    position: relative;
}

.patent-img2 {
    right: 36%;
    z-index: 8;
}

.patent-img3 {
    right: 72%;
    z-index: 6;
}

.patent-img4 {
    right: 108%;
    z-index: 4;
}

.patent-img5 {
    right: 144%;
    z-index: 2;
}




.information {
    gap: 7.5rem;
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
}

.information-group {
    display: flex;
    gap: 5rem;
}

.information-img {
    width: 100%;
    border-radius: 40px;
    border: 2px solid #eeeeee;
}

.information_container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info_title {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 120%;
    letter-spacing: -0.8px;
    color: #000000;
}

.information_container-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.information-text {
    color: #000000;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 146%;
    letter-spacing: 0.0px;
}

.information-text-bold {
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 146%;
    letter-spacing: 0.0px;
    color: #000000;
}

.information_cards {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.information_card {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.information_card-img {
    width: 20px;
}

.information_card-text {
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 146%;
    letter-spacing: 0.0px;
    color: #000000;
}




.delivery {
    display: flex;
    gap: 5rem;
}

.delivery_info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 48%;
}

.delivery_img-container {
    display: flex;
    flex-direction: column;
    gap: 2.625rem;
}

.delivery_img-container img {
    filter: grayscale(1);
    transition: filter 0.2s ease;
}

.delivery_img-container img:hover {
    filter: grayscale(0);
}

.delivery_card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.625rem;
    width: 50%;
}

.delivery_card {
    padding: 1.5rem;
    background-color: #FFFFFF;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 4rem;
}

.delivery_card-main {
    width: 100%;
    padding: 1.5rem;
    background-color: #FFFFFF;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
}

.delivery_card-main>.delivery_card {
    padding: 0;
}

.delivery_card-text-underline {
    text-decoration: underline;
}

.delivery_card-img {
    width: 115px;
}

.delivery_card-title {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 120%;
    letter-spacing: -0.5px;
    color: #000000;
}

.delivery_card-text,
.delivery_card-text-bold {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 140%;
    letter-spacing: 0.0px;
}

.delivery_card-text-bold {
    font-weight: 500;
}

.delivery_card-width {
    width: 47%;
}

.delivery_img-ozon {
    width: 212px;
}

.delivery_img-yandex {
    width: 370px;
}

.delivery_img-container-mob {
    display: none;
}

.form-bg {
    background-image: url(./images/form-bg.webp);
    background-position: center;
    background-size: cover;
}

.order {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

.order_text-container {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order_text {
    text-align: center;
}

.order_form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.688rem;
}

form {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.input-name,
.input-phone {
    border: 1px solid #EBEDF0;
    background-color: #EBEDF0;
    opacity: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
}

.input-name::placeholder,
.input-phone::placeholder {
    color: #000000;
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    letter-spacing: 0.0px;
}

.btn_order {
    font-size: 1rem;
    align-items: center;
    display: flex;
}

.check-container {
    display: flex;
    gap: 0.313rem;
    max-width: 610px;
}

.check-text,
.check-text_underline {
    font-weight: 300;
    font-size: 0.625rem;
    line-height: 112.00000000000001%;
    letter-spacing: 0.0px;
    color: #000000;
}

.check-text_underline {
    text-decoration: underline;
}



.contacts {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    background-color: #FFFFFF;
}

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

.contacts_title {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 3rem;
    line-height: 120%;
    letter-spacing: -1.0px;
    color: #000000;
}

.contacts_container-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contacts_info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contacts_container-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-icon {
    width: 24px;
}

.contacts_text-bold {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 140%;
    letter-spacing: 0.0px;
}

.contacts_text {
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    letter-spacing: 0.0px;
    text-decoration: underline;
}

.contact-us_container {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.contact-us_phones {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-us_social {
    display: flex;
    gap: 1.25rem;
}

iframe {
    border-radius: 40px;
}




.partners {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5rem;
}

.partners_img {
    display: flex;
    align-items: center;
    gap: 5rem;
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-232px * 12));
        transform: translateX(calc(-232px * 6));
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-232px * 12));
        transform: translateX(calc(-232px * 3));
    }
}

.ticker {
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
}

.clients_slider-track {
    -webkit-animation: scroll 20s linear infinite;
    animation: scroll 20s linear infinite;
    display: flex;
    align-items: center;
    width: calc(232px * 6);
}

.clients__slide {
    width: 232px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-wrapper {
    background-color: #134D3F;
}

.footer {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

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

.footer_contacts-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.text-white {
    color: #FFFFFF;
}

.footer_img-container {
    align-items: flex-end;
}

hr {
    border: 1px solid #FFFFFF;
}

.footer_info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer_text-container {
    display: flex;
    justify-content: space-between;
}

.footer_info-text {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 150%;
    letter-spacing: 0.0px;
}

.footer_text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}


/******* сертификаты *******/


.popup-image {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(227, 227, 227, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 15;
}

.popup-hidden {
    display: none !important;
}

.popup-image-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
}

.popup-image-wrapper #close-patent {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 4.5rem;
    cursor: pointer;
}

.arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 100%;
    width: 20%;
}

.arrow-svg {
    user-select: none;
    color: #333333 !important;
}

.popup-image-wrapper img {
    max-width: 75%;
}


/******* сертификаты *******/



/******* pop up *******/

.modal_menu-pop-up {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    background-color: #FFFFFF70;
    position: fixed;
    z-index: 10;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modal_menu-bg-pop-up {
    background-color: #EEEEEE;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    width: 50%;
    height: auto;
    padding: 3.125rem;
    border-radius: 40px;
    position: relative;
}

.modal_menu-container-pop-up {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

.modal-btn-back-pop-up {
    cursor: pointer;
    position: absolute;
    top: 3%;
    right: 2%;
}

.popup-pic-wrapper {
    position: absolute;
    width: 100%;
    top: 93%;
    right: 1%;
}

.pop-up-pic {
    width: 100%;
}

.text-popup-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.title-popup {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 112.00000000000001%;
    letter-spacing: -0.7px;
    text-align: center;
}

.text-popup {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 146%;
    letter-spacing: 0.0px;
    text-align: center;
}

.contacts-popup-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    cursor: pointer;
}

.contacts_text-popup {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 150%;
    letter-spacing: 0.0px;
    text-decoration: underline;
}

.popup-delivery-container {
    display: flex;
    gap: 2.625rem;
    align-items: center;
}

.popup_img-ozon {
    width: 161px;
    cursor: pointer;
}

.popup_img-yandex {
    width: 280px;
    cursor: pointer;
}

.popup-delivery-container img {
    filter: grayscale(1);
    transition: filter 0.2s ease;
}

.modal_menu-pop-up-phone {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    background-color: #FFFFFF70;
    position: fixed;
    z-index: 10;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modal_menu-bg-pop-up-phone {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    width: 50%;
    height: auto;
    padding: 3.125rem;
    border-radius: 40px;
    position: relative;
    border: #009A73 3px solid;
}

.modal_menu-container-pop-up-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

.modal-btn-back-pop-up-phone {
    cursor: pointer;
    position: absolute;
    top: 3%;
    right: 2%;
}




.reviews {
    display: flex;
    align-items: center;
}

.reviews-swiper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100% !important;
    position: relative;
    overflow-x: hidden;
}

.review-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.875rem;
    gap: 2rem;
    width: 100%;
}

div.swiper-wrapper {
    width: 90% !important;
}

.review-container-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3.625rem 1.875rem;
    gap: 2rem;
    width: 100%;
}

.review-container-slider-group {
    display: flex;
    gap: 1.875rem;
    align-items: center;
}

.review-pic-wrapper img {
    width: 400px;
    border-radius: 20px;
}

.review-container-pics {
    display: flex;
    gap: 0.25rem;
}

.review-container-pics img {
    width: 20px;
}

.review-text {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 140%;
    color: #000000;
    text-align: center;
}

.review-wrapper-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.review-wrapper-group img {
    width: 56px;
}

.review-wrapper-group-text-bold {
    font-size: 1rem;
    font-weight: 700;
    line-height: 150%;
    color: #000000;
}

.review-wrapper-group-text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 150%;
    color: #000000;
}

.swiper-container {
    display: flex;
    align-items: center;
}

.reviews-swiper .swiper-slide {
    width: 100% !important;
    height: unset !important;
}

.swiper-pagination-bullet-active {
    background-color: #000000 !important;
}

.btn-swiper {
    width: 40px;
    cursor: pointer;
}



@media (min-width: 1441px) {

    section,
    footer {
        max-width: 1440px;
        margin: auto;
    }

    .information_container {
        width: 100%;
    }
}

@media (min-width: 1281px) and (max-width: 1440px) {

    .advantages-img,
    .information-img {
        width: 500px;
    }
}

@media (max-width: 1280px) {

    body {
        background-size: cover;
    }

    .header_nav {
        display: none;
    }

    #menu {
        display: flex;
    }

    .hero_under-title {
        width: 100%;
    }

    .hero-pic-wrapper {
        width: 47.7%;
    }

    .hero_container-pics {
        gap: 2.25rem;
    }

    .card_goods {
        width: 29%;
    }

    .advantages {
        flex-direction: column-reverse;
    }

    .patent-dash_img {
        width: 116px;
    }

    .patent-title {
        font-size: 2rem;
    }

    .patent_container {
        flex-direction: column-reverse;
        align-items: unset;
        gap: 2rem;
    }

    .patent_card-text {
        font-size: 1rem;
    }

    .patent_card-img {
        width: 12px;
    }

    .patent_container-img {
        overflow-x: scroll;
        display: flex;
        gap: 2rem;
    }

    .patent_container-img {
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
        overflow-x: scroll;
        padding-bottom: 2.125rem;
        position: relative;
        cursor: pointer;
    }

    .patent_container-img::-webkit-scrollbar {
        height: 9px;
        background: #FFFFFF;
        border-radius: 10px;
    }


    .patent_container-img::-webkit-scrollbar-thumb:horizontal {
        background: #009A73;
        border-radius: 10px;
    }

    .patent_container-img::-webkit-scrollbar-thumb:hover {
        background: #009A73;
    }

    .patent {
        gap: 2.75rem;
    }

    .patent_cards {
        align-items: center;
    }

    .patent-img5,
    .patent-img2,
    .patent-img3,
    .patent-img4 {
        position: static;
    }

    .patent-img {
        width: 141px;
    }

    .information-group {
        flex-direction: column-reverse;
    }

    .information-mob {
        flex-direction: column;
    }

    .delivery {
        flex-direction: column;
        gap: 2.25rem;
    }

    .delivery_info {
        width: 100%;
    }

    .delivery_card-container {
        width: 100%;
    }

    .delivery_img-container-desktop {
        display: none;
    }

    .delivery_img-container-mob {
        display: flex;
    }

    .order_text-container {
        width: 100%;
    }

    .check-container {
        width: 80%;
    }


    .contacts_container,
    .partners {
        flex-direction: column;
        gap: 2.25rem;
    }

    .footer_container {
        flex-direction: column;
        gap: 3rem;
    }

    .footer_img-container {
        align-items: unset;
    }

    .modal_menu-bg-pop-up {
        width: 92%;
    }

    .review-container-slider {
        align-items: flex-start;
        padding: 0;
    }

    .review-container-slider-group {
        flex-direction: column;
    }

    .review-text {
        text-align: left;
    }

    .review-pic-wrapper {
        margin-bottom: 22px;
    }

    div.swiper-wrapper {
        width: 89% !important;
    }

    .reviews-swiper {
        align-items: flex-end;
    }

    .modal_menu-bg-pop-up-phone {
        width: 70%;
    }

    #a {
        order: 2;
    }

    #b {
        order: 3;
    }

    #c {
        order: 1;
    }

}


@media (max-width: 790px) {

    .hero,
    section,
    footer {
        padding: 3.75rem 0.625rem;
    }

    .hero_container {
        padding: 0 0.625rem 5.438rem;
        gap: 0.5rem;
    }

    .header {
        padding: 1rem 0.625rem 0.625rem;
    }

    .logo {
        width: 96px;
    }

    .btn_green {
        font-size: 0.75rem;
        padding: 0.375rem 1.063rem;
    }

    .hero_over-title {
        font-size: 1rem;
    }

    .hero_title {
        font-size: 2.25rem;
    }

    .hero_under-title {
        font-size: 0.75rem;
    }

    .btn-text {
        font-size: 1.125rem;
        padding-left: 1rem;
    }

    .arrow-img {
        width: 26px;
    }

    .btn-form {
        gap: 0.875rem;
        width: 80%;
    }

    .input-name,
    .input-phone {
        width: 80%;
    }

    .hero_container-pics {
        flex-direction: column;
    }

    .hero-pic-wrapper {
        width: 100%;
    }

    .goods_title-over {
        font-size: 0.625rem;
    }

    .goods_title {
        font-size: 2rem;
    }

    .goods_title-img {
        width: 16px;
    }

    .card_goods {
        width: 48.3%;
    }

    .text,
    .card_goods-name {
        font-size: 0.75rem;
    }

    .card_goods-price {
        font-size: 1rem;
    }

    .cards_goods {
        gap: 0.75rem;
    }

    .advantages_container {
        gap: 1rem;
    }

    .advantages_cards {
        gap: 1rem 0.75rem;
    }

    .advantages_green-text {
        font-size: 1.5rem;
    }

    .text {
        font-size: 0.75rem;
    }

    .info_title {
        font-size: 1.313rem;
    }

    .information-text,
    .information-text-bold {
        font-size: 0.75rem;
    }

    .information_card-img {
        width: 12px;
    }

    .information_card-text {
        font-size: 0.875rem;
    }

    .information_card {
        gap: 0.25rem;
    }

    .delivery_info {
        width: 100%;
    }

    .delivery_card-img {
        display: none;
    }

    .delivery_card-width {
        width: 100%;
    }

    .delivery_card-title {
        font-size: 1.25rem;
    }

    .delivery_card {
        gap: 2rem;
    }

    .delivery_card-text,
    .delivery_card-text-bold {
        font-size: 0.875rem;
    }

    .delivery_card-text-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    }

    .delivery_card-text-1 {
        grid-area: 1 / 1 / 2 / 2;
    }

    .delivery_card-text-2 {
        grid-area: 2 / 1 / 3 / 2;
    }

    .delivery_card-text-3 {
        grid-area: 1 / 2 / 2 / 3;
    }

    .delivery_card-text-4 {
        grid-area: 2 / 2 / 3 / 3;
    }

    .patent-title-desktop {
        display: none;
    }

    .patent-title-mob {
        display: block;
    }

    form {
        flex-direction: column;
        width: 80%;
    }

    .delivery_img-ozon {
        width: 140px;
    }

    .delivery_img-yandex {
        width: 286px;
    }

    .contacts {
        gap: 2.25rem;
    }

    .contacts_title {
        font-size: 2rem;
    }

    .delivery_card-container {
        flex-wrap: nowrap;
        flex-direction: column;
    }

    .goods_text-container {
        gap: 0.375rem;
    }

    .contacts_container-text {
        gap: 0.375rem;
    }

    .footer_contacts-container {
        gap: 1.75rem;
    }

    .footer_contacts-container>img {
        width: 140px;
    }

    .title-popup {
        font-size: 1.5rem;
    }

    .text-popup {
        font-size: 0.875rem;
    }

    .contacts_text-popup {
        font-size: 1.2rem;
    }

    .popup-delivery-container {
        flex-direction: column;
    }

    .modal_menu-bg-pop-up {
        padding: 2.125rem;
    }

    .modal_menu-container-pop-up,
    .popup-delivery-container {
        gap: 1.2rem;
    }

    .popup_img-ozon {
        width: 110px;
    }

    .popup_img-yandex {
        width: 180px;
    }

    .hero-pic,
    .information-img,
    iframe,
    .modal_menu-bg-pop-up,
    .advantages-img {
        border-radius: 20px;
    }

    .card_goods-img,
    .delivery_card-main,
    .delivery_card,
    .patent-img {
        border-radius: 10px;
    }

    .review-pic-wrapper img {
        width: 280px;
    }

    .modal_menu-bg-pop-up-phone {
        width: 93%;
    }

    .review-text {
        font-size: 0.8rem;
    }

    .button-prev,
    .button-next {
        display: none;
    }

    div.swiper-wrapper {
        width: 98% !important;
    }

    .review-container {
        padding: 0;
    }

}