@font-face {
    font-family: 'Roboto Thin';
    src: url('../font/Roboto/Robotothin.woff2') format('woff2'), 
    url('../font/Roboto/Robotothin.woff') format('woff'), 
    url('../font/Roboto/Robotothin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto Black';
    src:  url('../font/Roboto/Robotoblack.woff2') format('woff2'), 
        url('../font/Roboto/Robotoblack.woff') format('woff'), 
        url('../font/Roboto/Robotoblack.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto Light';
    src: url('../font/Roboto/Robotolight.woff2') format('woff2'), 
        url('../font/Roboto/Robotolight.woff') format('woff'), 
        url('../font/Roboto/Robotolight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto Bold';
    src:  url('../font/Roboto/Robotobold.woff2') format('woff2'),
        url('../font/Roboto/Robotobold.woff') format('woff'), 
        url('../font/Roboto/Robotobold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto Bold Italic';
    src: url('../font/Roboto/Robotobolditalic.woff2') format('woff2'), 
        url('../font/Roboto/Robotobolditalic.woff') format('woff'), 
        url('../font/Roboto/Robotobolditalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: 'Playfair Display Black';
    src:  url('../font/PlayFair/Playfairdisplayblack.woff2') format('woff2'), 
        url('../font/PlayFair/Playfairdisplayblack.woff') format('woff'), 
        url('../font/PlayFair/Playfairdisplayblack.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Playfair Display Bold';
    src:  url('../font/PlayFair/Playfairdisplaybold.woff2') format('woff2'), 
        url('../font/PlayFair/Playfairdisplaybold.woff') format('woff'), 
        url('../font/PlayFair/Playfairdisplaybold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Playfair Display Regular';
    src: url('../font/PlayFair/Playfairdisplayregular.woff2') format('woff2'), 
        url('../font/PlayFair/Playfairdisplayregular.woff') format('woff'), 
        url('../font/PlayFair/Playfairdisplayregular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

body{
    font-family: 'Roboto Thin'; 
}
.header{
    display: flex;
    width: 100%;
}
.section__one{
    display: flex;
    width: 100%;
    min-height: 670px;
    flex-wrap: wrap;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/first.jpg);
}
.container{
    display: flex;
    width: 100%;
    max-width: 960px;  
    margin: 0 auto;
}
.wrapper{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.section__one_wrapp{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.nav_menu{
    display: flex;
    /*position: fixed;*/
    top: 0;
    left: 0;
    height: 50px;
    align-items: center;
    margin-top: 10px;
    width: 100%;
    justify-content: space-between;
}
.logoname{
    color: #13d1cf;
    display: flex;
    align-items: center;
}
.logo{
    padding: 5px;
}
.logo img{
    transform: scale(.8);
}
.name{
    padding: 5px;
}
.menu{
    display: flex;
    align-items: center;
    
}
.menu_name{
    overflow: hidden;
    font-family: 'Roboto Black' ;
    font-size: 8px;
    text-transform: uppercase;
    transform: translateX(200px) scale(0);
    opacity: 0;
    color: white;
    flex-wrap: wrap;
    display: flex;
    transition: all 1s ease;
}
.add_menu{
    color: #13d1cf;
    font-size: 20px;
    cursor: pointer;
    transition: all 1s ease;
    margin: 5px;
    transform: rotate(90deg);
}
.rotate{
    transform: rotate(0deg);
}
.menu_name li{
    padding: 10px;
    cursor: pointer;
    transition: all .5s ease;
}
.menu_name li:hover{
    color: #13d1cf;
    transform: translateX(2px);
}
.open{
    transform: translateX(0) scale(1);
    transition: all 1s ease;
    opacity: 1;
}

.section__one_info{
    position: relative;
    display: flex;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 10px;
    color: white;
}
.section__one_info_slide{
    display: flex;
    width:  80%;
    overflow: hidden;
    animation-name: fade;
    animation-duration: 1.5s;

    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin: 10px;
    color: white;
}
.hidden{
    display: none;
    width: 0;
}
.vis{
    background-color: teal;
}
.prev, .next{
    margin: 2px;
    cursor: pointer;
    position: absolute;
    padding: 5px 10px;
    border: 1px solid white;
}
.prev:hover{
    color: teal;
    border: 1px solid teal;
}
.next:hover{
    color: teal;
    border: 1px solid teal;
}
.prev{
    left: 0;
}
.next{
    right: 0;
}
.slider .item {
    animation-name: fade;
    animation-duration: 1.5s;
}
@keyframes fade {
    from {
        opacity: 0.1;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section__one_info_span{
    display: flex;
    width: 100%;
    justify-content: center;
}
.section__one_info_text{
    margin: 15px;
    flex-wrap: wrap;
    text-align: center;
    font-size: 30px;
    font-family: 'Playfair Display Black';
}
.section__one_info_line{
    display: flex;
    width: 50px;
    margin: 20px;
    height: 1px;
    background-color:  #13d1cf ;
}
.section__one_info_paragr{
    max-width: 640px;
    line-height: 20px;
    font-family: 'Roboto Light';
    flex-wrap: wrap;
    text-align: center;
    font-size: 13px;
    margin: 15px;
}
.learn_more, .learn_more_two, .learn_more_three {
    z-index: 2;
    position: relative;
    height: 40px;
    text-transform: uppercase;
    font-family: 'Roboto Bold';
    color: #13d1cf;
    transition: all .5s ease;
    cursor: pointer;
    font-size: 10px;
    background-color: unset;
    width: 120px;
    border: 2px solid #13d1cf;
    margin: 10px;
    outline: unset;
}
.learn_more:hover{
    color: white;
}
.learn_more::before{
    transition: all .5s ease;
    position: absolute;
    z-index: -1;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color:  #13d1ce77;
}
.learn_more::after{
    transition: all .5s ease;
    position: absolute;
    z-index: -1;
    content: '';
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background-color: #13d1ce77;
}
.learn_more:hover::after{
    width: 50%;
}
.learn_more:hover::before{
    width: 50%;
}

.cirkle{
    display: flex;
    padding-bottom: 25px;
}
.cirkle_c{
    margin: 5px;
    width: 10px;
    height: 10px;
    border: 1px solid white;
    border-radius: 10px;
    cursor: pointer;
    transition: all .5s ease;
}
.cirkle_c:hover{
    background-color:  #13d1cf ;
}

.section__two{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    min-height: 400px;
}
.section__two_wrapp{
    width: 100%;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}
.section__two_wrapp_img{
    display: flex;
    justify-content: center;
    max-width: 380px;
    width: 100%;
}
.section__two_wrapp_info{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-width: 540px;
    width: 100%;
    align-items: flex-start;
}
h2{
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Playfair Display Bold';
    margin: 10px;
}
.learn_more_two:hover{
    color: rgb(0, 0, 0);
}
.learn_more_two::before{
    transition: all .5s ease;
    position: absolute;
    z-index: -1;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color:  #13d1ce77;
}
.learn_more_two::after{
    transition: all .5s ease;
    position: absolute;
    z-index: -1;
    content: '';
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background-color: #13d1ce77;
}
.learn_more_two:hover::after{
    width: 50%;
}
.learn_more_two:hover::before{
    width: 50%;
}
.section__two_wrapp_info_text{
    padding: 10px;
    font-family: 'Roboto Light';
    font-size: 14px;
    line-height: 20px;
    color: #817f86;
}

.section__three{
    display: flex;
    width: 100%;
    min-height: 670px;
    flex-wrap: wrap;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/zvc.png);
}
.section__three_wrapp{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.section__three_wrapp_videoplay{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.video_play{
    width: 100px;
    height: 100px;
    background-color: unset;
    border: 2px solid white;
    border-radius: 100px;
    outline: unset;
    margin: 15px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: all .5s ease;
}
.video_play:hover{
    transform: scale(1.1);
}
.section__three_wrapp_watch{
    display: flex;
    font-family: 'Roboto Black';
    margin: 15px;
    font-size: 14px;
    color: white;
}

.section__four{
    display: flex;
    width: 100%;
    min-height: 755px;
    flex-wrap: wrap;
}
.section__four_wrapp{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
.section__four_wrapp_first{
    display: flex;
    flex-direction: column;
    align-items: center;
}
h3{
    font-family: 'Playfair Display Bold';
    font-size: 16px; 
    padding: 10px; 
}
.section__four_wrapp_first p{
    font-family: 'Playfair Display Regular';
    font-size: 15px;
    text-align: center;
    line-height: 20px;
    color: #78777b;
    padding: 10px;
}
.section__four_wrapp_first span{
    display: flex;
    width: 50px;
    background-color: #c6c4c9;
    height: 2px;
    margin: 10px;
}
.section__four_wrapp_second{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.section__four_wrapp_second_block{
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    flex: 1 1 300px;
    min-height: 220px;
    padding: 10px;
    cursor: pointer;
    border: 1px solid  #78777b00; 
    transition: all .5s ease;
}
.section__four_wrapp_second_block:hover{
    /*border: 1px solid  #8a8a8a;*/
    box-shadow: 2px 2px 15px 5px rgba(56, 56, 56, 0.582);
    transform: scale(1.1);
}
.section__four_wrapp_second_block span{
    font-family: 'Roboto Black';
    font-size: 10px;
}
.section__four_wrapp_second_block p{
    display: flex;
    flex-wrap: wrap;
    max-width: 255px;
    line-height: 20px;
    text-align: center;
    font-family: 'Roboto Light';
    font-size: 14px;
    color: #78777b;
}
.middle_line{
    z-index: 0;
    display: flex;
    width: 100%;
    background-color: #ebebeb;
    height: 1px;
    margin: 10px;
}

.section__five{
    position: relative;
    display: flex;
    width: 100%;
    min-height: 670px;
    flex-wrap: wrap;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/treee.png);
}
.section__five_wrapp{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
.section__five_wrapp_first{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section__five_wrapp_first p{
    font-family: 'Playfair Display Regular';
    font-size: 15px;
    text-align: center;
    line-height: 20px;
    color: #f9f9f9;
    padding: 10px;
}
h4{
    font-family: 'Playfair Display Bold';
    font-size: 16px; 
    padding: 10px; 
    color: #e7e7e7;
}
.section__five_wrapp_first span{
    display: flex;
    width: 50px;
    background-color: #c6c4c998;
    height: 2px;
    margin: 10px;
}
.section__five_wrapp_content{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}
.section__five_wrapp_content_item{
    display: flex;
    margin: 10px;
    flex: 1 1 220px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.section__five_wrapp_content_item_img{
    display: flex;
    width: 100%;
    height: 230px;
    background-color: white;
}
.section__five_wrapp_content_item_img img{
    display: flex;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all .5s ease;
}
.section__five_wrapp_content_item_img img:hover{
    transform: scale(.9);
}

.section__five_wrapp_content_item_border{
    display: flex;
    width: 100%;
    min-height: 80px;
    border: 1px solid #78778b;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.section__five_wrapp_content_item_border span{
    text-transform: uppercase;
    font-family: 'Roboto Black';
    font-size: 10px;
    padding: 5px;
    color: white;
}
.section__five_wrapp_content_item_border p{
    text-transform: uppercase;
    font-family: 'Roboto Light';
    font-size: 9px;
    padding: 5px;
    color: #c1c0c8;
}
.section__five_wrapp_known{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.section__five_wrapp_known p{
    font-family: 'Roboto Light';
    font-size: 14px;
    padding: 10px;
    color: white;
}
.learn_more_three:hover{
    color: white;
}
.learn_more_three::before{
    transition: all .5s ease;
    position: absolute;
    z-index: -1;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color:  #13d1ce77;
}
.learn_more_three::after{
    transition: all .5s ease;
    position: absolute;
    z-index: -1;
    content: '';
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background-color: #13d1ce77;
}
.learn_more_three:hover::after{
    width: 50%;
}
.learn_more_three:hover::before{
    width: 50%;
}

.section__six{
    display: flex;
    width: 100%;
    min-height: 500px;
    flex-wrap: wrap;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/фыа.png);
}
.section__six_wrapp{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
h4{
    font-family: 'Playfair Display Regular';
    font-weight: bold;
    text-transform: uppercase;
    padding: 15px;
    font-size: 60px;
}
.section__six_wrapp_text{
    color: white;
    font-family: 'Playfair Display Regular';
    display: flex;
    font-size: 15px;
    text-align: center;
    line-height: 25px;
    padding: 15px;
    flex-wrap: wrap;
    max-width: 755px;
}
.section__six_wrapp_item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.section__six_wrapp_item p{
    font-family: 'Roboto Black';
    text-transform: uppercase;
    font-size: 10px;
    padding: 5px;
    color: white;
}
.section__six_wrapp_item span{
    font-family: 'Roboto Light';
    text-transform: uppercase;
    font-size: 9px;
    padding: 5px;
    color: #cfced4;
}
.section__six_wrapp_img{
    font-family: 'Roboto Light';
    font-size: 20px;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
    color: rgb(168, 168, 168);
}
.section__six_wrapp_img p{
    padding: 10px;
}
.section__six_wrapp_img img{
    display: flex;
    margin: 5px;
    cursor: pointer;
    width: 35px;
    height: 35px;
}
.section__six_wrapp_img img:nth-child(4){
    width: 45px;
    height: 45px;
}
.main{
    position: relative;
}

.popup{
    opacity: 0;
    transition: all 1s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.836);
    width: 100%;
    height: 100%;
}
.popup_opacity{
    opacity: 1;
}
.popup_img{
    transform: translateX(150%);
    overflow: hidden;
    transition: all 1s ease;
    height: 80%;
    width: 60%;
}
.popup_img_translate{
    transform: translateX(0);
}

.section__seven{
    display: flex;
    width: 100%;
    min-height: 500px;
    flex-wrap: wrap;
}
.section__seven_wrapp{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px;
}
.section__seven_wrapp_plate{
    display: flex;
    max-width: 460px;
    width: 100%;
    flex-direction: column;
}
.section__seven_wrapp_heading{
    font-family: 'Playfair Display Bold';
    text-transform: uppercase;
    display: flex;
    align-self: flex-start;
    font-size: 16px;
    color: rgb(0, 0, 0);
    margin:  20px 0  15px 0;
}
.form_step{
    display: flex;
    width: 100%;
    flex-direction: column;
}
.form_step .error{
    transition: all 1s ease;
    color: #fc2a2a; 
    border: 1px solid #fc2a2a; 
}
.form_step input, textarea{
    font-family: 'Roboto Light';
    transition: all 1s ease;
    font-size: 14px;
    outline: none;
    padding: 10px;
    color: #464646;
    margin:  10px 0  10px 0;
    border: 1px solid #e5e5e5;
}
.form_step textarea{
    min-height: 150px;
    resize: none;
}
.btn_send{
    position: relative;
    cursor: pointer;
    font-family: 'Roboto Black';
    outline: unset;
    display: flex;
    margin:  10px 0  10px 0;
    width: 120px;
    height: 40px;
    text-transform: uppercase;
    font-size: 13px;
    justify-content: center;
    align-items: center;
    color:  #00e0d0;
    background-color: unset;
    border: 2px solid #00e0d0;
}
.hiden{
    border: 2px solid #525252;
    cursor: no-drop;
}
.btn_send::before{
    transition: all .5s ease;
    position: absolute;
    z-index: -1;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color:  #13d1ce77;
}
.btn_send::after{
    transition: all .5s ease;
    position: absolute;
    z-index: -1;
    content: '';
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background-color: #13d1ce77;
}
.btn_send:hover::after{
    width: 50%;
}
.btn_send:hover::before{
    width: 50%;
}

.section__seven_wrapp_logos{
    display: flex;
    flex-direction: column;
    max-width: 380px;
    width: 100%;
}
.section__seven_wrapp_logos_img{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    
}
.section__seven_wrapp_logos_img img{
    margin:  15px 0  15px 0;
}
.section__seven_wrapp_logos_colon{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.section__eight{
    display: flex;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/beckgr.png);
    width: 100%;
    min-height: 400px;
    flex-wrap: wrap;
}
.section__eight_wrapp{
    display: flex;
    width: 100%;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px;
}
.section__eight_wrapp_item{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}
.section__eight_wrapp_item_title{
    display: flex;
    flex: 1 1 290px;
    margin: 10px;
    flex-direction: column;
    justify-content: space-between;
}
.section__eight_wrapp_item_title_line{
    display: flex;
    width: 100%;
    border: 1px solid #dbdbdb85;
}

.section__eight_wrapp_item_title_text{
    font-family: 'Roboto Light';
    font-size: 14px;
    line-height: 25px;
    color: white;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}
.section__eight_wrapp_item_title_name{
    display: flex;
    font-family: 'Roboto Black';
    height: 70px;
    align-items: center;
    color: white;
    font-size: 11px;
    text-transform: uppercase;
}
.section__eight_wrapp_item_title_adress{
    font-family: 'Roboto Light';
    font-size: 14px;
    line-height: 25px;
    flex-wrap: wrap;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}
.section__eight_wrapp_item_title_adress_name{
    display: flex;
    width: 100%;
}
.section__eight_wrapp_item_title_adress_name p{
    display: flex;
    width: 90%;
    flex-wrap: wrap;
    padding: 0 10px 0 10px;
}
.section__eight_wrapp_item_title_adress_phone{
    margin-top: 10px;
    display: flex;
    width: 100%;
}
.section__eight_wrapp_item_title_adress_phone p{
    display: flex;
    flex-wrap: wrap;
    padding: 0 10px 0 10px;
}

.send_letter{
    display: flex;
    width: 100%;
    padding: 5px;
    justify-content: space-between;
}
.inp_send_letter{
    font-size: 14px;
    font-family: 'Roboto Light';
    padding: 10px;
    color: white;
    background-color: unset;
    outline: unset;
    border: 1px solid #dbdbdb85;
    height: 45px;
    width: 80%;
}
.btn_send_letter{
    cursor: pointer;
    outline: unset;
    border: unset;
    height: 45px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: rgb(20, 20, 20);
    background-color: #dbdbdb85;
    display: flex;
    width: 18%;
    transition: all .5s ease;
}
.btn_send_letter:hover{
    background-color:  rgb(20, 20, 20);
    color: #dbdbdb85;
}
.section__eight_wrapp_item_title_social{
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.section__eight_wrapp_item_title_social_href{
    display: flex;
    align-items: flex-end;
}
.section__eight_wrapp_item_title_social_border{
    display: flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border-radius: 35px;
    transition: all .5s ease;
    margin: 10px 5px;
    color: white;
    border: 1px solid white;
}
.section__eight_wrapp_item_title_social_border:hover{
    color:  #13d1ce;
    border: 1px solid #13d1ce;
}

.section__eight_wrapp_item_footer_href{
    display: flex;
    padding: 10px;
    color: white;
    max-width: 300px;
    width: 100%;
    
    justify-content: space-between;
}
.section__eight_wrapp_item_footer_href a{
    padding: 5px;
    transition: all .5s ease;
    border: 1px solid #13d1ce00;
}
.section__eight_wrapp_item_footer_href a:hover{
    color:  #13d1ce;
    border: 1px solid #13d1ce;
}

.section__eight_wrapp_item_footer_text{
    display: flex;
    padding: 10px;
    color: white;
    max-width: 300px;
    width: 100%;
    justify-content: flex-end;
}
