*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body
{
    font-family: 'Open Sans', sans-serif;   
    color: #2A2A2A;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background-color: #fff;
    position: relative;

}


body::after{
    content: '';
    display: block;
    height: 100vh;
    width: 100vw;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(25, 25, 25, 0.40);
    backdrop-filter: blur(16px);
    visibility: hidden;
    opacity: 0;
    transition: .3s all ease;
}

body.blur::after{
    opacity: 1;
    visibility: visible;
}

.container
{
    margin: 0 auto;
    max-width: 1170px;
}
ul
{
    list-style: none;
}
a
{
    text-decoration: none;
}
.section_title
{
    font-size: 48px;
    font-weight: 600;
}
.section_title.left
{
    text-align: left;
}
.section_title.center
{
    text-align: center;
}
.privacy_text
{
    color: #000;
    font-size: 18px;
    line-height: 150%; /* 27px */
    margin: 50px;
}

/* POPUP ONE */
.popup1.none,
.popup2.none,
.popup3.none
{
    top: 0;
    transform: scale(0.1);
    visibility: hidden;
    display: none;
}
.popup1,
.popup2
{
    position: fixed;
    width: 500px;
    height: 400px;
    top: 50%;
    left: 50%;
    margin-top: -200px;
    margin-left: -250px;
    padding: 40px 25px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/popup1_bg.jpg);
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: darken;
    text-align: center;
    transition: .5s all ease;
}

.popup1 form
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;

}
.popup1 form label
{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    color: #FFF;
    font-size: 25px;
    line-height: 150%; /* 37.5px */
}
.popup1 form label img
{
    width: 30px;
}
.popup1 label input
{
    width: 100%;
    border: none;
    border-bottom: 1px solid #fff;
    font-size: 24px;
    color: #fff;
    background: none;
}
.popup1 label input:focus
{
    outline: none;
}
.popup1 button
{
    display: inline-block;
    padding: 15px 90px;
    border: 2px solid #FF8903;
    background-color: transparent;
    align-self: center;
    color: #FFF;
    font-size: 20px;
    font-weight: 600;
}
.popup2
{
    background-image: url(../images/popup2_bg.jpg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    overflow: hidden;
    color: #fff;
}
.popup2 .popup2_title
{
    flex: 0 0 100%;
    font-size: 45px;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 20px;

}
.popup2 .popup2_subtitle
{
    flex: 0 0 100%;
    font-size: 18px;
}

.popup3
{
    position: fixed;
    width: 550px;
    height: 500px;
    top: 50%;
    left: 50%;
    margin-top: -250px;
    margin-left: -275px;
    padding: 75px 0;
    background-color: #fff;
    text-align: center;
    color: #000;
}
.popup3 .popup3_title
{
    font-size: 35px;
    font-weight: 600;
    line-height: 130%; /* 45.5px */
    text-transform: uppercase;
    margin-bottom: 25px;
}
.popup3 .operator
{
    display: flex;
    align-items: center;
    gap: 25px;
    width: 71%;
    margin: 0 auto;
    margin-bottom: 25px;

}
.popup3 .operator .operator_image
{
    flex: 0 0 27%;
}
.popup3 .operator .operator_image img
{
    width: 100%;
    max-width: 107px;
    border: 1px solid #FF8903;
    border-radius: 50%;
}
.popup3 .operator .operator_text
{
    font-size: 18px;
    font-weight: 600;
    line-height: 130%; /* 23.4px */
}
.popup3 form
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.popup3 form input
{
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid #FF8903;
    font-size: 18px;
    font-weight: 600;
    line-height: 130%; /* 19.5px */
}
.popup3 form input::placeholder
{
    opacity: .5;
}
.popup3 form input:focus
{
    outline: none;
}
.popup3 form button
{
    cursor: pointer;
    border: none;
    padding: 15px 80px;
    background:  #FF8903;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    line-height: 130%; /* 19.5px */
}
.popup3 form .action_subtitle
{
    font-size: 15px;
    font-weight: 400;
    line-height: 150%; /* 22.5px */
    text-decoration-line: underline;
    opacity: 0.7;
}







/* HEADER */

header
{
    padding: 30px 0;
    background-color: #ededed;
    position: relative;

}

/* HIDE MENU */

header .hide_menu
{
    display: none;
}

/* FIXED MENU */
header .fixed_menu.none
{
   visibility: hidden;
   right: -100%;
}
header .fixed_menu
{
    background-color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    width: 90%;
    height: 100vh;
    z-index: 100;
    padding: 20px;
    transition: .5s all ease;
    visibility: visible;
}
header .fixed_menu .fixed_block
{
    display: flex;
    flex-direction: column;
    gap: 50px;
}
header .fixed_menu .fixed_block .fixed_item
{
    display: flex;
    flex-wrap: wrap;
    
}
header .fixed_menu .fixed_block .fixed_item:first-child
{
    justify-content: space-between;
}
header .fixed_menu .fixed_block .fixed_item .navigation 
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
header .fixed_menu .fixed_block .fixed_item .navigation li::after
{
    display: none;
}
header .fixed_menu .fixed_block .fixed_item:last-child
{
    justify-content: flex-start;
}
header .fixed_menu .fixed_block .fixed_item:last-child a.our_site
{
    flex: 0 0 100%;
    text-align: center;
    margin-bottom: 30px;

    border: 2px solid #FF8903;
    padding: 15px 30px;
    color:  #2A2A2A;
    font-size: 16px;
    font-weight: 700;
}
header .fixed_menu .fixed_block .fixed_item:last-child .work_time
{
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
}
header .fixed_menu .fixed_block .fixed_item:last-child .work_time img
{
    max-width: 30px;
}
header .fixed_menu .fixed_block .fixed_item:last-child .header_contact
{
    flex: 0 0 90%;
}
header .fixed_menu .fixed_block .fixed_item:last-child .header_contact li
{
    margin-bottom: 15px;
}
header .fixed_menu .fixed_block .fixed_item:last-child .header_contact li a
{
    display: flex;
    align-items: center;
    color:  #2A2A2A;
    font-size: 16px;
    font-weight: 700;
    gap: 15px;

}


header .header_top
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
header .header_top a.logo
{
    flex: 0 0 15%;
}
header .header_top a.logo img
{
    max-width: 170px;
}
header .header_top a.our_site
{
    flex: 0 0 20%;
    border: 2px solid #FF8903;
    padding: 15px 30px;
    color:  #2A2A2A;
    font-size: 16px;
    font-weight: 700;
}
header .header_top .work_time
{
    flex: 0 0 23%;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 400;
}
header .header_top .work_time img
{
    max-width: 30px;
}
header .header_top .header_contact
{
    flex: 0 0 22%;
}
header .header_top .header_contact li
{
    margin-bottom: 15px;
}

header .header_top .header_contact li a
{
    display: flex;
    align-items: center;
    color:  #2A2A2A;
    font-size: 16px;
    font-weight: 700;
    gap: 15px;
}
header .header_top .header_contact li a img
{
    max-width: 30px;
}
header ul.navigation
{
    display: flex;
    justify-content: center;
    gap: 76px;
    align-items: center;
    flex-wrap: wrap;
}
header ul.navigation li
{
    position: relative;
}
header ul.navigation li::after
{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -46px;
    width: 16px;
    height: 16px;
    background-color: #FF8903;
    border-radius: 50%;
}
header ul.navigation li:last-child::after
{
    background-color: transparent;
}
header ul.navigation li a
{
    color: #2A2A2A;
    transition: .5s all ease;
}
header ul.navigation li a:hover
{
    color: #FF8903;
}

/* MAIN */

body main
{
    position: relative;
    background-color: #ededed;
    background-image: url(../images/main.png);
    background-repeat: no-repeat;
    background-position: top right;
    /* background-size: contain; */
    margin-bottom: 90px;
    padding: 165px 0;
}
body main .main_left
{
    width: 48%;
}
body main .main_left .title
{
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 30px;
}
body main .main_left .bold_subtitle
{
    font-weight: 600;
    margin-bottom: 15px;
}
body main .main_left .light_subtitle
{
    margin-bottom: 30px;
}
body main .main_left span
{
    color: #00A44D;
}
body main .main_left .location
{
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}
body main .scroll
{
    cursor: pointer;
    position: absolute;
    bottom: -85px;
    right: 0;
    left: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 170px;
    height: 170px;
    padding: 20px 0;
    background-color: #ededed;
    border-radius: 50%;
    border: 4px solid #FF8903;
    color:  #FF8903;
    font-weight: 600;
    transition: .5s all ease;
    
}
body main .scroll:hover
{
    background-color: #FF8903;
    color: #EDEDED;
    gap: 0px;
    padding-top: 60px;
}
body main .scroll:hover svg path
{
    fill: #EDEDED;
}

body main .scroll svg
{
    max-width: 32px;
}

/* WARRANTY */
body .warranty
{
    text-align: center;
    margin-bottom: 90px;
}
body .warranty .section_title
{
    margin-bottom: 15px;
}
body .warranty .section_subtitle
{
    margin-bottom: 60px;
    text-align: left;
}
body .warranty .manufacturer_block
{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
body .warranty .manufacturer_block .manufacture_item
{
    /* height: 150px; */
    flex:  0 0 31%;
    background: #EDEDED;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 30px;
}
body .warranty .manufacturer_block .manufacture_item img
{
    max-width: 310px;
}
body .warranty a.certificates
{
    display: inline-block;
    width: 370px;
    padding: 15px 30px;
    gap: 10px;
    border: 2px solid #FF8903;
    color: inherit;
    font-weight: 600;
}

/* PRODUCTS */
body .products
{
    margin-bottom: 90px;
    text-align: center;
}
body .products .section_title
{
    margin-bottom: 60px;
}
body .products .products_block
{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}
body .products .products_block .porduct_item
{
    flex: 0 0 23%;
    
}
body .products .products_block .porduct_item .porduct_name
{
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}
body .products .products_block .porduct_item .product_image
{
    position: relative;
    margin-bottom: 15px;
}
body .products .products_block .porduct_item .product_image img
{
    max-width: 270px;
}
body .products .products_block .porduct_item .product_image .status
{
    position: absolute;
    top: 15px;
    left: 15px;

    display: flex;
    gap: 5px;
}
body .products .products_block .porduct_item .product_image .status li
{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    background: rgba(42, 42, 42, 0.50);
    backdrop-filter: blur(4px);
    
}
body .products .products_block .porduct_item .product_image .status img
{
    max-width: 32px;
}
body .products .products_block .porduct_item:hover .product_image .technical
{
    opacity: 1;
}

body .products .products_block .porduct_item .product_image .technical
{
    cursor: pointer;
    border: none;
    position: absolute;
    bottom: 15px;
    right: 0;
    left: 0;
    margin: auto;
    width: 88%;
    padding: 15px 30px;
    background-color:  #FF8903;
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    z-index: 10;
    opacity: 0;
    transition: .3s all ease;

}

body .products .products_block .porduct_item ul.warehouse_status
{
    margin-bottom: 30px;
}
body .products .products_block .porduct_item ul.warehouse_status li
{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    margin-bottom: 15px;
}
body .products .products_block .porduct_item ul.warehouse_status li:last-child
{
    margin-bottom: 0;
}
body .products .products_block .porduct_item ul.warehouse_status li img
{
    width: 16px;
}
body .products .products_block .porduct_item a.price
{
    display: inline-block;
    padding: 15px 30px;
    background-color: #FF8903;
    color:  #FFF;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}
body .products .products_block .porduct_item a.consultation
{
    display: inline-block;
    padding: 15px 20px;
    border: 2px solid #FF8903;
    color:  #2a2a2a;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    text-align: center;
}
body .products a.all_products
{
    display: inline-block;
    padding: 15px 30px;
    background-color: #FF8903;
    color:  #FFF;
    font-weight: 600;
    margin-bottom: 15px;
}

/* CHOSEN _____________________________________________________________________________ */
body .products .products_block .chosen_product.none
{
    display: none;
}
body .products .products_block .chosen_product
{
    position: fixed;
    top: 10px;
    bottom: 10px;
    right: 0;
    left: 0;
    margin: auto;

    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 76%;
    background-color: #fff;
    padding: 0 80px 0 0;
    z-index: 20;
    overflow: hidden;

}
body .products .products_block .chosen_product .product_image
{
    flex: 0 0 42%;
}
body .products .products_block .chosen_product .product_image img
{
    width: 100%;
}
body .products .products_block .chosen_product .specifications
{
    flex: 0 0 45%;
    text-align: right;
    padding: 35px 0;
    color: #000;
} 
body .products .products_block .chosen_product .specifications .tech_title
{
    font-size: 25px;
    font-weight: 400;
    line-height: 150%; /* 37.5px */
    margin-bottom: 15px;
}
body .products .products_block .chosen_product .specifications .tech_subtitle
{
    color: #000;
    text-align: center;
    font-size: 15px;
    line-height: 150%; /* 22.5px */
    margin-bottom: 32px;
}
body .products .products_block .chosen_product .specifications .tech_characteristics .character_item
{
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.chosen_product .specifications .tech_characteristics .character_item .character_name
{
    font-size: 17px;
    font-weight: 600;
    line-height: 150%; /* 25.5px */
}
.chosen_product .specifications .tech_characteristics .character_item .character_attribute
{
    font-size: 17px;
    line-height: 150%; /* 25.5px */
}
.chosen_product .specifications .tech_characteristics .character_item .character_attribute ul
{
    display: flex;
    flex-direction: column;
}
.products_block .chosen_product img.chosen_exit
{
    position: fixed;
    top: 12px;
    right: 110px;
    cursor: pointer;
    width: 30px;
}



/* SECTION PROVIDER */
body .provider
{
    padding: 90px 0;
    margin-bottom: 90px;
    text-align: center;
    background: linear-gradient(180deg, #F5E7D7 0%, rgba(245, 231, 215, 0.00) 100%);
}
body .provider .section_title
{
    margin-bottom: 30px;
}
body .provider .provider_text
{
    font-size: 16px;
    margin-bottom: 60px;
}

/* SWIPER */
body .provider  .swiper {

  width: 100%;
  margin-bottom: 60px;  
}
body .provider  .swiper .swiper-wrapper .swiper-slide img
{
    /* width: 100%; */
    /* box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.40); */
}
body .provider .swiper .swiper-button-next,
body .provider .swiper .swiper-button-prev
{
    background-color: #FF8903;
    background-image: url("../images/slide_arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    /* position: relative;    */
}
body .provider .swiper .swiper-button-prev
{
    transform: rotate(180deg);
}
body .provider .swiper .swiper-button-next::after,
body .provider .swiper .swiper-button-prev::after
{
    content: '';
}
body .provider .swiper .swiper-button-next
{
    left: calc(50% + 320px);
}
body .provider .swiper .swiper-button-prev
{
    left:  calc(50% - 250px);
}

/* ADVENTAGES */
body .advantages .section_title
{
    margin-bottom: 30px;
}
body .advantages .advantages_block
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}
body .advantages .advantages_block .adventages_item
{
    flex: 0 0 32%;
    text-align: center;
}
body .advantages .advantages_block .adventages_item img
{
    max-width: 95px;
    margin-bottom: 15px;
    width: 100%;
}
body .advantages .advantages_block .adventages_item .adventages_text
{
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
}
/* SECTION TRUST */

body .trust
{
    margin-bottom: 90px;
}
body .trust .section_title
{
    margin-bottom: 60px;
}
body .trust .sertifacetion_block
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
body .trust .sertifacetion_block a
{
    cursor: pointer;
    flex: 0 0 32%;
}
body .trust .sertifacetion_block a img
{
    width: 100%;
}

/* CONDITIONS */
body .conditions
{
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: center;
    background-image: linear-gradient(0deg, rgba(42, 42, 42, 0.50) 0%, rgba(42, 42, 42, 0.50) 100%), url('../images/conditions_bg.png');
    padding: 90px 0;
    color: #fff;
    margin-bottom: 90px;
}
body .conditions .conditions_block
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
body .conditions .conditions_block .conditions_left,
body .conditions .conditions_block .conditions_right
{
    flex: 0 0 48%;
}
body .conditions .conditions_block .conditions_left .conditions_title
{
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 30px;
}
body .conditions .conditions_block .conditions_left .conditions_subtitle
{
    font-weight: 600;
    margin-bottom: 30px;
}
body .conditions .conditions_block .conditions_left .rating
{
    display: flex;
    align-items: center;
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase; 
    margin-bottom: 10px;
}
body .conditions .conditions_block .conditions_left .rating img.yandex_logo
{
    max-width: 60px;
    margin-right: 15px;
}
body .conditions .conditions_block .conditions_left .rating ul
{
    margin-left: 15px;
    list-style: none;
    display: flex;
    gap: 20px;
}
body .conditions .conditions_block .conditions_left  .rating_subtitle
{
    font-size: 16px;
}
body .conditions .conditions_block .conditions_right ul.conditions_block
{
    display: flex;
    flex-direction: column;
    align-items:flex-start;
    gap: 45px;
}
body .conditions .conditions_block .conditions_right ul.conditions_block li
{
    display: flex;
    align-items: center;
    gap: 20px;
}

/* GROUP SECTION */
body .group
{
    margin-bottom: 90px;
}
body .group .section_title
{
    margin-bottom: 30px;
}
body .group .section_subtitle
{
    margin-bottom: 60px;
}
body .group .group_block
{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
body .group .group_block .group_item
{
    flex: 0 0 23%;
    text-align: center;
}
body .group .group_block .group_item img
{
    max-width: 270px;
    margin-bottom: 30px;
    width: 100%;
}
body .group .group_block .group_item .subject_name
{
    font-weight: 600;
    margin-bottom: 10px;
}
body .group .group_block .group_item .subject_proffession
{
    font-size: 16px;
}
body .group form.comment
{
    width: 48%;
    margin: 0 auto;
    text-align: center;
}
body .group form.comment label
{
    display: block;
    margin-bottom: 30px;
    text-align: left;
}
body .group form.comment label .comment_title
{
    font-weight: 600;
    margin-bottom: 5px;
}
body .group form.comment label img
{
    max-width: 30px;
}
body .group form.comment label input
{
    width: 100%;
    border: none;
    border-bottom: 1px solid #2a2a2a;
    font-size: 24px;
}
body .group form.comment label input:focus
{
    outline: none;
}
body .group form.comment button
{
    background: #FF8903;
    padding: 15px 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}
/* OFFER */
body .offer
{
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: center;
    background-image: linear-gradient(0deg, rgba(42, 42, 42, 0.70) 0%, rgba(42, 42, 42, 0.70) 100%), url(../images/offer_bg.png);
    padding: 90px 0;
    color: #fff;
    margin-bottom: 90px;
}
body .offer .offer_block
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
body .offer .offer_block .offer_left,
body .offer .offer_block .offer_right
{
    flex: 0 0 48%;
}
body .offer .offer_block .offer_left .offer_title
{
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 40px;
}
body .offer .offer_block .offer_right .offers
{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
body .offer .offer_block .offer_right .offers .offer_item
{
    flex: 0 0 31.5%;
    background: rgba(42, 42, 42, 0.50);
    backdrop-filter: blur(4px);
    font-weight: 600;
    display: flex;
    padding: 35px 0;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: inherit;
}
body .contacts
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 90px;
}

body .contacts .contact_left,
body .contacts .contact_right
{
    flex: 0 0 48%;
}
body .contacts .contact_left .contact_item
{
    margin-bottom: 40px;
}
body .contacts .contact_left .contact_item .contact_title
{
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 30px;
}
body .contacts .contact_left .contact_item p
{
    margin-bottom: 15px;
}

body .contacts .contact_right .map
{
    max-width: 570px;
}

body footer
{
    padding: 30px 0;
    background-color: #087442;
    text-align: center;
}
body footer a.footer_logo
{
    display: inline-block;
    margin-bottom: 60px;
}
body footer a.footer_logo img
{
    max-width: 360px;
    width: 100%;
}
body footer .footer_bottom
{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
body footer .footer_bottom .privacy,
body footer .footer_bottom .copyright
{
    display: flex;
    align-items: center;
    gap: 15px;
}
body footer .footer_bottom .privacy a,
body footer .footer_bottom .copyright a
{
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    text-decoration-line: underline;
}
body footer .footer_bottom .copyright a:last-child
{
    display: flex;
    align-items: center;
    gap: 5px;
}
body .provider .swiper .swiper-button-prev {
    left: 0;
}
body .provider .swiper .swiper-button-next {
    left: calc( 100% - 50px );
}


@media (max-width: 1360px) {

    .container
    {
        max-width: 1024px;
        padding: 0 12px;
    }
    header .header_top a.logo img {
        max-width: 150px;
    }
    header .header_top a.our_site
    {
        padding: 15px 15px;
    }
    header .header_top .work_time {
        flex: 0 0 27%;
    }
    header .header_top .header_contact li {
        margin-bottom: 10px;
    }
    body main {
        background-position: bottom right;
        background-size: 600px;
    }
    body .warranty .manufacturer_block .manufacture_item img {
        max-width: 260px;
    }
    body .warranty a.certificates {
        width: 300px;
        padding: 15px 7px;
    }
    body .products .products_block
    {
        justify-content: center;
    }
    body .products .products_block .chosen_product .product_image img {
        height: 100%;
    }
    .products_block .chosen_product img.chosen_exit {
        right: 80px;
    }
    body .trust .sertifacetion_block a img
    {

    }
    body .conditions .conditions_block
    {
        justify-content: center;
    }
    body .group .group_block .group_item img
    {
        margin-bottom: 10px;
    }
    body .offer .offer_block
    {
        justify-content: center;
    }
    body .offer .offer_block .offer_left .offer_title {
        font-size: 42px;
        margin-bottom: 20px;
    }
    body .offer .offer_block .offer_right .offers .offer_item
    {
        font-size: 20px;
        padding: 25px;
    }
    body .contacts .contact_right .map iframe
    {
        width: 100%;
    }
    body .contacts .contact_left .contact_item .contact_title
    {
        margin-bottom: 20px;
    }
    body footer a.footer_logo {
        display: inline-block;
        margin-bottom: 30px;
    }
    body footer .footer_bottom {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    body .provider .swiper .swiper-button-prev {
        left: 10px;
    }
    body .provider .swiper .swiper-button-next {
        left: calc( 100% - 56px);
    }
    

}
@media (max-width: 1024px) {

    .container
    {
        max-width: 768px;
    }
    .section_title
    {
        font-size: 42px;
    }
    .section_subtitle
    {
        font-size: 22px;
    }
    header
    {
        padding: 15px 0;
    }
    header .header_top a.our_site
    {
        padding: 8px 15px;
        text-align: center;
        font-size: 12px;
    }
    header .header_top
    {
        justify-content: space-evenly;
        gap: 20px;
        margin-bottom: 25px;
    }
    header ul.navigation {
        gap: 45px;
    }
    header ul.navigation li::after
    {
        right: -32px;
    }
    body main
    {
        background-size: 400px;
        padding: 70px 0;
        margin-bottom: 90px;
    }
    body main .main_left {
        width: 60%;
    }
    body main .scroll
    {
        width: 120px;
        height: 120px;
        bottom: -55px;
        border: 2px solid #FF8903;
    }
    body main .scroll:hover
    {
        padding: 20px 0 0 0;
    }
    body .warranty .section_title
    {
        margin-bottom: 10px;
    }
    body .warranty .section_subtitle
    {
        margin-bottom: 40px;
    }
    body .warranty .section_title
    {
        text-align: center;
    }
    body .warranty .section_subtitle
    {
        text-align: center;
    }
    body .warranty .manufacturer_block {
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 60px;
        gap: 20px;
    }
    body .products .section_title {
        margin-bottom: 40px;
    }
    body .products .products_block
    {
        gap: 40px;
        margin-bottom: 40px;
    }
    body .products .products_block {
        padding: 0 40px 0 0;
    }
    body .products .products_block .chosen_product .specifications {
        flex: 0 0 45%;
        text-align: right;
        padding: 10px 0;
        color: #000;
    }
    body .products .products_block .chosen_product .specifications .tech_title {
        font-size: 20px;
        line-height: 140%;
        margin-bottom: 10px;
    }
    body .products .products_block .chosen_product .specifications .tech_subtitle {
        font-size: 12px;
        margin-bottom: 20px;
    }
    body .products .products_block .chosen_product .specifications .tech_characteristics .character_item {
        margin-bottom: 5px;
    }
    .chosen_product .specifications .tech_characteristics .character_item .character_name {
        font-size: 14px;
    }
    .chosen_product .specifications .tech_characteristics .character_item .character_attribute {
        font-size: 14px;
    }
    .products_block .chosen_product img.chosen_exit {
        right: 50px;
    }
    body .advantages .advantages_block .adventages_item img
    {
        max-width: 80px;
        
    }
    body .advantages .advantages_block .adventages_item .adventages_text
    {
        font-size: 28px;
    }
    body .provider {
        padding: 60px 0;
        margin-bottom: 60px;
    }
    body .conditions .conditions_block .conditions_left .conditions_title {
        font-size: 40px;
        margin-bottom: 22px;
    }
    body .conditions .conditions_block .conditions_left .conditions_subtitle {
        font-size: 18px;
    }
    body .conditions .conditions_block .conditions_left .rating
    {
        font-size: 24px;
    }
    body .conditions .conditions_block .conditions_left .rating img.yandex_logo {
        max-width: 40px;
    }
    body .conditions .conditions_block .conditions_left .rating ul {
        gap: 10px;
    }
    body .conditions .conditions_block .conditions_left .rating ul li img{
        max-width: 20px;
    }
    body .conditions .conditions_block .conditions_left .rating_subtitle {
        font-size: 14px;
    }
    body .conditions .conditions_block .conditions_right ul.conditions_block {
        gap: 25px;
    }
    body .conditions .conditions_block .conditions_right ul.conditions_block li {
        gap: 15px;
        font-size: 20px;
    }
    body .conditions .conditions_block .conditions_right ul.conditions_block li img{
        max-width: 25px;
    }
    body .group .group_block .group_item img {
        max-width: 150px;
    }
    body .group form.comment label .comment_title {
        font-weight: 600;
        margin-bottom: 5px;
        font-size: 20px;
    }
    body .group form.comment label img {
        max-width: 25px;
    }
    body .offer .offer_block .offer_left .offer_title
    {
        font-size: 40px;
    }
    body .offer .offer_block .offer_left .offer_subtitle
    {
        font-size: 16px;
    }
    body .offer .offer_block .offer_right .offers {
        gap: 10px;
        justify-content: space-evenly;

    }
    body .offer .offer_block .offer_right .offers .offer_item {
        font-size: 20px;
        padding: 16px 20px;
    }
    body .contacts .contact_left .contact_item {
        margin-bottom: 30px;
    }
    body .contacts .contact_left .contact_item .contact_title {
        margin-bottom: 10px;
        font-size: 26px;
    }
    body .contacts .contact_left .contact_item {
       font-size: 20px;
    }
    body .contacts .contact_left .contact_item p {
        margin-bottom: 10px;
    }
    body footer a.footer_logo{
        margin-bottom: 20px;
    }
    body footer a.footer_logo img {
        max-width: 300px;
    }
    body .provider .swiper .swiper-button-prev {
        left: 10px;
    }
    body .provider .swiper .swiper-button-next {
        right: 10px;
    }
}
@media (max-width: 768px) {

    .container
    {
        max-width: 320px;
    }

   
    body header .header_top,
    body header .navigation.main_nav
    {
        display: none;
    }

    
    /* HIDE MENU */
    header .hide_menu
    {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header .hide_menu .logo img
    {
        max-width: 130px;
    }
    header .hide_menu .hamburger
    {
        cursor: pointer;
    }


    header ul.navigation li a {
        font-size: 18px;
    }
    body main
    {
        padding: 20px 0 350px 0;
    }
    .section_title {
        font-size: 32px;
    }
    body main .main_left
    {
       width: 100%;
       margin: 0 auto;
    }
    body main .main_left .title {
        font-size: 30px;
    }
    body main .main_left .bold_subtitle,
    body main .main_left .light_subtitle
    {
        font-size: 18px;
        margin-bottom: 15px;
    }
    body main .main_left .location {
        gap: 5px;
        font-size: 14px;
    }
    body .provider {
        padding: 60px 10px;
    }
    body .conditions .conditions_block .conditions_left .conditions_title {
        font-size: 32px;
    }
    body .provider  .swiper .swiper-wrapper .swiper-slide img
    {
        width: 100%;
    }
    body .provider .swiper .swiper-button-next, 
    body .provider .swiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    body .provider .swiper .swiper-button-prev {
        left: 5px;
    }
    body .provider .swiper .swiper-button-next {
        left: calc( 100% - 40px);
    }
    body .products .products_block
    {
        padding: 0;
    }
    body .products .products_block .chosen_product {
        /* padding: 0 80px 0 0; */
        padding: 10px;
    }
    body .products .products_block .chosen_product .product_image {
        flex: 0 0 100%;
    }
    body .products .products_block .chosen_product .product_image img {
        max-width: 100px;
        /* width: 100%; */
        /* height: 100%; */
    }
    body .products .products_block .chosen_product .specifications {
        flex: 0 0 100%;
        text-align: right;
        padding: 10px 0;
    }
    body .products .products_block .chosen_product .specifications .tech_title {
        font-size: 20px;
        line-height: 140%;
        margin-bottom: 5px;
        width: 100%;
        text-align: center;
    }
    body .products .products_block .chosen_product .specifications .tech_subtitle {
        font-size: 12px;
        margin-bottom: 10px;
    }
    body .products .products_block .chosen_product .specifications .tech_characteristics .character_item {
        margin-bottom: 0;
    }
    .products_block .chosen_product img.chosen_exit {
        right: 5px;
        max-width: 20px;
    }

    .chosen_product .specifications .tech_characteristics .character_item .character_name {
        font-size: 12px;
    }
    .chosen_product .specifications .tech_characteristics .character_item .character_attribute {
        font-size: 10px;
    }
    body .advantages .advantages_block {
        gap: 20px;
    }
    body .advantages .advantages_block .adventages_item
    {
        flex: 0 0 100%;
    }
    body .advantages .advantages_block .adventages_item img {
        max-width: 60px;
        margin-bottom: 5px;
    }
    body .advantages .advantages_block .adventages_item .adventages_text {
        font-size: 18px;
    }
    body .trust .sertifacetion_block {
        gap: 15px;
        justify-content: center;
    }
    body .trust .sertifacetion_block a {
        flex: 0 0 90%;
    }
    body .conditions {
        background-position: center top;
    }
    body .conditions .conditions_block{
        gap: 50px;
    }
    body .conditions .conditions_block .conditions_left, 
    body .conditions .conditions_block .conditions_right {
        flex: 0 0 100%;
    }
    body .group .group_block {
        display: flex;
        align-items: stretch;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 60px;
        gap: 20px;
    }
    body .group .group_block .group_item {
        flex: 0 0 40%;
        text-align: center;
    }
    body .group .group_block .group_item img {
        max-width: 100px;
        margin-bottom: 0;
    }
    body .group .group_block .group_item .subject_name {
        font-size: 20px;
        margin-bottom: 0;
    }
    body .group .group_block .group_item .subject_proffession {
        font-size: 16px;
    }
    body .group form.comment {
        width: 100%;
    }
    body .offer .offer_block {
        gap: 30px;
        text-align: center;
    }
    body .offer .offer_block .offer_left, body .offer .offer_block .offer_right {
        flex: 0 0 100%;
    }
    body .offer .offer_block .offer_right .offers .offer_item {
        font-size: 16px;
    }
    body .contacts .contact_left, 
    body .contacts .contact_right {
        flex: 0 0 100%;
    }
    body .contacts .contact_left .contact_item {
        font-size: 18px;
    }
    body .contacts .contact_left .contact_item .contact_title {
        font-size: 22px;
    }
    body footer .footer_bottom .privacy, 
    body footer .footer_bottom .copyright
    {
        flex-wrap: wrap;
        justify-content: center;
    }
    body footer .footer_bottom .privacy a, 
    body footer .footer_bottom .copyright a
    {
        flex: 0 0 100%;
        font-size: 12px;
    }
    .popup1,
    .popup2
    {
        width: 320px;
        margin-left: -160px;
    }
    .popup3 {
        position: fixed;
        width: 320px;
        margin-left: -160px;
        padding: 30px 0;
    }
    .popup3 .popup3_title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .popup3 .operator {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0px;
        margin-bottom: 25px;
    }
    .popup3 .operator .operator_image {
        flex: 0 0 40%;
    }
    .operator_text {
        font-size: 14px;
    }

}