/* 
Theme Name: DBD 
*/

* {
    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;
}

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

.header {
    width: 100%;
    position: fixed;
    padding: 1rem 4rem 0.625rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    z-index: 3;
}

.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;
    transition: 0.25s all ease-in-out;
}

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

.header-btns-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem
}

.whatsapp-btn {
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 0;
}
.whatsapp-btn:hover svg path {
    fill: #009A73;
}

.hero {
    padding: 7.75rem 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%;
}

.hero_container-video {
    width: 100%;
    border-radius: 40px;
}

.hero_container-video > source {
    width: 100%;
}


.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 {
    display: flex;
    width: fit-content;
    font-size: 0;
}

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

.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;
}



.section-bg-gost {
    background-color: #CECECE80;
}

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

.gost-container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    justify-content: space-between;
    width: 100%;
}

.gost-container-img {
    width: 100%;
}

.gost-video {
    width: 100%;
    border-radius: 40px;
    
}

.bigger-text {
    font-size: 1.5rem;
    line-height: 146%;
    font-weight: 400;
}








.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;
    cursor: pointer;
}

.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(./assets/images/bg.png);
    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;
    flex-direction: column;
}

.form-container-cf7 {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.wpcf7-spinner{
    display: none;
}

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

.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;
    background-color: unset;
    border: 0 solid black;
    cursor: pointer;
}

.check-container {
    display: flex;
    gap: 0.313rem;
    max-width: 610px;
    align-items: flex-start;
    flex-direction: column-reverse;
}

.check-container-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 610px;
    align-items: center;
}
.wpcf7-not-valid-tip {
    font-size: 0.75rem;
    position: absolute;
    bottom: 0;
    left: 25px;
}
.check-container-group .wpcf7-not-valid-tip {
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.policy-check {
    text-align: center;
}

.policies {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border: #009A73 0 solid;
    color: #009A73;
    font-weight: 600;
    margin: 0.5em;
}

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

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

.check-text_underline:hover {
    color: #009A73;
}

.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;
    color: #000000;
}

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

.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;
    align-items: center;
}

.contact-us_social a svg path {
    cursor: pointer;
    transition: 0.25s all ease-in-out;
}

.contact-us_social a:hover svg path {
    fill: #009A73;
}

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;
}

.footer_img-container img {
    filter: grayscale(1) brightness(1.8);
}


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: 20px;
    right: 20px;
    font-size: 4.5rem;
    cursor: pointer;
}

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

.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: 16px;
    right: 16px;
    width: 40px;
}

.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%;
}

.long-text-container {
    overflow: hidden;
    overflow-y: scroll;
}

.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;
    color: #000000;
}

.contacts_text-popup:hover {
    color: #009A73;
}

.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;
}

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

.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%;
    padding: 3.125rem;
    border-radius: 40px;
    position: relative;
    border: #009A73 3px solid;
    max-height: 90vh;
}

.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: 16px;
    right: 16px;
    width: 40px;
}

#politic-popup {
    display:none;
}
#agreement-popup {
    display: none;
}

.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;
    padding-bottom: 60px;
}

.button-prev,
.button-next {
    position: absolute;
    z-index: 2;
    top: 45%;
}

.button-prev {
    left: 0;
}

.button-next {
    right: 0;
}

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

.review-container-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    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;
}

.page404 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    height: 100vh;
}
.page404-link {
    color: #009A73;
}
.page404 img {
    max-width: 80%;
}


@media (min-width: 1441px) {

    section,
    footer {
        max-width: 1440px;
        margin: auto;
    }
    .hero_container-pics{
         max-width: 1280px;
         margin: auto;
    }
    .hero_container {
        padding: 18vh 0 15vh 0;
    } 
    .hero_under-title {
        width: unset;
        max-width: 1014px;
    }
    

    .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;
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
    }

    .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 {
        width: unset;
        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-img {
        margin: 0;
        width: 141px;
    }
    
    .patent_card {
    gap: 0.25rem;
    }

    .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;
        gap: 1rem;
        padding-top: 1.5rem;
    }

    .order_text-container {
        width: 100%;
    }

    .check-container {
        width: 80%;
    }


    .contacts_container,
    .partners {
        flex-direction: column;
        gap: 2.25rem;
    }
    
    .footer,
    .footer_contacts-container,
    .footer_container {
        gap: 3.5rem;
    }

    .footer_container {
        flex-direction: column;
    }

    .footer_img-container {
        align-items: unset;
        gap: 1rem;
    }

    .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;
    }

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

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

    #a {
        order: 2;
    }

    #b {
        order: 3;
    }

    #c {
        order: 1;
    }
    
    .bigger-text {
        font-size: 1rem;
    }

}


@media (max-width: 790px) {
    
     .hero {
         padding: 7rem 0.625rem 3.75rem 0.625rem;;
     }

    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;
    }
    
    .header-btns-wrapper {
        gap: 0.25rem;
    }

    .btn_green {
        font-size: 0.75rem;
        padding: 0.2rem 0.75rem;
    }
    
    .whatsapp-btn {
        padding: 0.25rem;
        font-size: 0;
    }
    
    .whatsapp-btn svg {
        width: 17px;
        height: 17px;
    }

    .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: 100%;
    }
    
    .wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
        text-align: center;
    }

    .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%;
    }

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

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

    .cards_goods {
        justify-content: space-between;
        gap: 1.75rem 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;
    }
    
    .form-container-cf7 {
        flex-direction: column;
        align-items: center;
    }
    
    .input-name, .input-phone {
        width: 310px;
    }

    .delivery_img-ozon {
        width: 140px;
    }

    .delivery_img-yandex {
        width: 286px;
    }

    .contacts {
        gap: 2.25rem;
    }

    .contacts_title {
        font-size: 2rem;
    }
    
    .link-wa {
        width: 20px;
    }
    .link-tg {
        width: 24px;
    }
    .link-vk {
        width: 26px;
    }

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

    .goods_text-container {
        gap: 0.375rem;
    }

    .contacts_container-text {
        gap: 0;
    }
    
    .contact-us_phones {
    gap: 0.25rem;
    }
    
    .contacts_container-group {
    gap: 1.625rem;
    }
    
    .contacts_info {
    gap: 0.875rem;
    }
    
    .footer_info-container {
    gap: 1rem;
    }
    
    hr {
    border: 1px solid #f3f3f3;
    }

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

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

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

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

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

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

    .modal_menu-container-pop-up
     {
        gap: 2rem;
    }
    
    .popup-delivery-container {
        gap: 0.75rem;
    }
    
    .modal_menu-bg-pop-up-phone {
        padding: 2.75rem 1.5rem;
        border-radius: 28px;
        width: 80%;
    }

    .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: 90%;
        border-radius: 28px;
    }
    
    .modal-btn-back-pop-up {
    top: 10px;
    right: 10px;
    width: 30px;
    }

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

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

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

    .review-container {
        padding: 0;
    }
    
    .form-bg {
        background-image: none;
    }
    
    .policies {
        gap: 0.5rem;
    }
    
    .check-container-group{
    gap: 2rem;
    }
    
    .gost-container {
        gap: 2.5rem;
    }
    .information-group {
        gap: 2.5rem;
    }
    .information {
        gap: 5rem;
    }

}