@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    scroll-behavior: smooth;
    /*text-decoration: none;*/
}
/*------------------------flex----------------------------------------------------------------------*/
.flex_colum{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.flex_start{
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
}
.flex_c{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.flex_s-e{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}
.flex_se_nw{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.flex_bw{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
nav[hidden]{
    display: none;
}
.flex-col{
    display: flex;
    flex-direction: column;

}
.disp_flex{
    display: flex;
}
.disp_none{
    display: none;
}
.display_bl{
    display: block;
}
.hidden{
    display: none;
}


/*----------------------------------------header-------------------------------------------------*/
.active{
    color: white;
}
.non_st_l{
    list-style-type: none;
}
header img {
    width: 240px;
    height: auto;
    margin-left: 30px;
}
header{
    height: 90px;
    background: #9FC5E9;
    display: block;
}
header nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu{
    height: 100%;
    display: flex;
    justify-content:space-evenly;
    align-items: center;
    margin-bottom: 0;
}
header nav ul li{
    width: 150px;
    height: 100%;
    float: left;
    position: relative;
}
header nav ul li a{
    text-decoration: none;
    color: black;
    padding: 15px;
    font-size: 1em;
    transition: 0.5s;
    display: block;
    text-align: center;
}
header nav ul li a:hover {
    color: white;
    transition: 1s;
}
header ul li ul{
    position: absolute;
    left: 0;
    background-color: #9FC5E9;
    display: none;
    z-index: 100;
}
header ul li ul li{
    width: 100%;
    border: 1px solid rgba(41, 41, 41, 0.1);
}
header ul li:hover > ul{
    display: initial;
}


/*----------------------------------Section_home------------------------------------------------*/
.s_home{
    height: 1000px;
    background-image: url("media/main/photo_for_main.png");
    background-size: cover;
    flex-direction: column;
}
section main h1{
    color: #FFF;
    font-size: 5em;
    font-weight: 600;
    line-height: 100px; /* 125% */
}
.size_main{
    width: 90%;
    height: 500px;
}
.text_no_dec{
    text-decoration: none;
}
.black{
    color: black;
}
.main_multi-but{
    width: 90%;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 205px;
}
.main_left_but{
    width: 474px;
    height: 205px;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 2.5em;
    font-weight: 600;
    line-height: 50px; /* 125% */
    border-radius: 50px 0 0 50px;
    background: linear-gradient(270deg, #9FC5E9 0%, #026A7F 100%);
}
.main_right_but{
    width: 474px;
    height: 205px;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 2.5em;
    font-weight: 600;
    line-height: 50px; /* 125% */
    border-radius: 0 50px 50px 0;
    background: linear-gradient(90deg, #9FC5E9 0%, #026A7F 100%);
}
.main_left_but p{
    height: 205px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}
.main_left_but p:hover{
    transform: scale(110%);
    transition: 1s;
}
.main_right_but p{
    height: 205px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}
.main_right_but p:hover{
    transform: scale(110%);
    transition: 1s;
}
.main_mid_logo{
    width: 581px;
    height: 205px;
    background-color: #9FC5E9;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main_mid_logo img{
    width: 581px;
    height: 205px;
}
/*-----------------------------------footer------------------------------------------------------*/
footer{
    background-color: black;
    color: white;
    font-size: 1em;
    line-height: 30px; /* 125% */
    align-items: flex-start;
    position: relative;
}
footer address{
    display: flex;
    justify-content: start;
    flex-direction: column;
    align-items: flex-start;
    font-style: normal;
}
.under_p{
    position: absolute;
    left: 110px;
    bottom: -15px;
}
.footer_name {
    margin-top: 20px;
    font-size:1.1em;
}
footer ul{
    display: block;
    list-style-type: none;
    padding: 0;
}
footer a{
    text-decoration: none;
    color: white;
    transition: 0.5s;
}
footer a:hover{
    color: #9FC5E9;
    transition: 0.5s;
}
.footer_partner{
    height: 100%;
    align-items: flex-start;
    justify-items: left;
}
.height_foot_block{
    height: 100%;
}
.social_pic{
    margin-top: 15px;
    display: flex;
    justify-content: space-around;
    align-items: start;
    gap: 15px;
}
.social_pic img{
    height: 80px;
    width: 80px;
    transition: 0.5s;
}
.social_pic img:hover{
    transform: scale(1.1);
    transition: 1s;
}
.footer_button{
    width: 250px;
    height: 60px;
    margin-top: 20px;
    border-radius: 40px;
    background: #9FC5E9;
    color: black;
    transition: 0.5s;
}
.footer_button p {
    margin-bottom: 0;
}
.footer_button:hover{
    transform: scale(110%);
    transition: 1s;
}
.low_block{
    height: 100px;
}
.my_footer{
    font-size: 1em;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-evenly;
    padding: 15px;
}


/*-----------------------------------gap/marg----------------------------*/
.gap_50{
    gap: 50px;
}
.marg_top_60{
    margin-top: 60px;
}
.marg_top_30{
    margin-top: 30px;
}
.weight_80{
    width: 80%;
}
.marg_left_50{
    margin-left: 50px;
}
.weight_60{
    width: 50%;
}
.weight_40{
    width: 40%;
}
.pad15{
    padding: 30px;
}
.marg_left_30{
    margin-left: 30px;
}
.marg_bottom0{
    margin-bottom: 0;
}
.pad0{
    padding: 0 0 0 0;
}
.marg_top10{
    margin-top: 10px;
}
.text_box{
    margin: 20px;
}
.logo_side{
    margin-top: 15px;
    margin-bottom: 15px;
}
/*.cont_marg{*/
/*    margin-top: 15px;*/
/*    margin-bottom: 15px;*/
/*}*/
/*------------------------------------------download----------------------------------------------------------------*/
.hover_1shadow{
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.25));
    transition: 0.5s;
}
.hover_1shadow:hover{
    transform: scale(1.1);
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.5));
    transition: 1s;
}
/*------------------------------------------partners----------------------------------------------------------*/

.shadow_bc-wh{
    background-color: white;
    border-radius: 0 30px 0 30px;
    filter: drop-shadow(11px 14px 20px rgba(0, 0, 0, 0.25));
}
.dis_line{
    position: absolute;
    z-index: -1;
}

/*-------------------------text----------------------------------------*/
.headline{
    font-size: 3em;
    font-weight: 400;
    line-height: 50px; /* 41.667% */
}
.text{
    margin-top: 20px;
    font-size: 1.25em;
    font-weight: 400;
    line-height: 30px; /* 166.667% */
}
.text_2{
    margin-top: 20px;
    font-size: 1em;
    font-weight: 800;
    line-height: 30px; /* 166.667% */
}
.text_1{
    font-size: 1em;
}

.text_on_cont{
    font-size: 1.25em;
}
.my_h1{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 3em;
    font-weight: 400;
    line-height: 50px;
}
h4{
    text-align: center;
    font-size: 2em;
    font-weight: 500;
    line-height: 40px; /* 111.111% */
    width: 80%;
}
h5{
    font-size: 1.75em;
    font-weight: 500;
    line-height: 40px; /* 125% */
}
.h3_catalog_main {
    width: 90%;
    height: 145px;
    text-align: center;
    font-size: 3.3em;
    font-weight: 600;
    line-height: 80px;
    letter-spacing: 5px;
}
/*--------------------------------------------img-----------------------*/
.logo_side img{
    height: 100%;
    width:auto;
}
.logo_mid img{
    height: 100%;
    width: auto;
}
.img_custom_size{
    height: 190px;
}
.img_custom_size_1{
    height: 170px;
}
.img_c_s{
    height: 240px;
}
.imgcust{
    height: 380px;
}
.img_custom_size_2{
    height: 380px;
}
.img_custom_size_3{
    width: 50%;
    height: 100%;
}
.img_custom_size_4{
    height: auto;
    width: 280px;
    float: right;
    margin-left: 20px;
}

.img_custom_size_5{
    height: auto;
    width: 280px;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}
.img_custom_size_6{
    height: 230px;
}
.img_sz{
    float: right;
    width: 350px;
    display: block;
}
.img100{
    height: 100px;
    width: 100px;
}
.img_catalog{
    width: 253px;
    height: 277px;
}
/*--------------------------------------container-----------------------------*/
.container {
    width: 800px;
    border-radius: 70px;
    border: 1px solid #000;
    background: rgba(159, 197, 233, 0.6);
    padding: 15px;
}
.my_container {
    width: 100%;
    height: 400px;
    border: 1px solid #000;
    background: rgba(159, 197, 233, 0.6);
    padding: 15px;
}
.my_container_partners {
    width: 100%;
    border: 1px solid #000;
    background: rgba(159, 197, 233, 0.6);
    padding: 15px;
}
.bottom_button{
    width: 80vh;
    height: 100px;
    font-size: 2em;
    font-weight: 500;
    line-height: 50px; /* 125% */
    border-radius: 30px;
    border: 1px solid #000;
    background: #9FC5E9;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 15px;
}
.gigena_box1{
    width: 20%;
    height: 100%;
}
.gigena_box1 img{
    height: 25%;
}
.gigena_box2 {
    width: 60%;
    height: 100%;
}


.txt_gigiena_box1{
    width: 100%;
    height: 25%;
    position: relative;
}
.select_contact{
    width: 30%;
    background-color: #defdff;
}
.bott_legistal{
    background-color: #9FC5E9;
    border-radius: 40px;
    border: 1px black solid;
    text-align: center;
    font-size: 20px;
}
.box_contact_address{
    height: 100%;
    width: 400px;
    background-color: #9FC5E9;
    border-radius: 50px;
    margin-bottom: 15px;
    text-align: center;
    margin-top: 15px;
}
.box_work-time{
    height: 100%;
    width: 400px;
    background-color: #9FC5E9;
    border-radius: 50px;
    text-align: center;
    margin-bottom: 15px;
    margin-top: 15px;
}
.address_bar{
    background-color: #9FC5E9;
}
.my_group{
    width: 60%;
    position: relative;
    background-color: white;
    border-radius: 0 30px 0 30px;
    filter: drop-shadow(11px 14px 20px rgba(0, 0, 0, 0.25));
}
.group_85{
    width: 85%;
    position: relative;
    background-color: white;
    border-radius: 0 30px 0 30px;
    filter: drop-shadow(11px 14px 20px rgba(0, 0, 0, 0.25));
}





.bot{
    transform: rotate(180deg);
    right: 0;
    bottom: 0;
}

.logo_mid a{
    transition: 0.5s;
}
.logo_side a{
    transition: 0.5s;
}
.logo_side a:hover{
    background-color: #9FC5E9;
    border-radius: 30px;
    transition: 0.5s;
}
.logo_mid a:hover{
    background-color: #9FC5E9;
    border-radius: 30px;
    transition: 0.5s;
}

.form_contact{
    width: 500px;
}
#exampleFormControlInput1, #exampleFormControlInput2,#exampleFormControlInput3{
    height: 30px;
}
.form-control{
    background-color: #defdff;
    width: 300px;
}
.choose_bar{
    height: 70px;
}
.address_bar{
    margin-bottom: 0;
}
.map{
    border-radius: 20px;
}


.address_bar a{
    color: black;
}



.alert{
    position: relative;
}
.alert > span{
    position: absolute;
    cursor: pointer;
    top: -5px;
    right: 5px;
}
.bgr_col{
    background-color: #d6d6d6;
    border-radius: 30px;
}
.link_img{
    width: 15px;
}























