html {
    /*    overflow-x: hidden;*/
}

input {
    border-radius: 0 !important
}

:root {
    --main-color: #2E6B75;
    --dark-color: #2D2D2D;
    --light-color: #fff;
}

body {
    position: relative;
    background: #F5F5F5;
    background: #FFFFFF;
    color: #1E2121;
    /*    overflow-x: hidden;*/
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: auto;
}


html *,
html *:before,
html *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html.stop,
body.stop {
    /*    overflow: hidden;*/
    position: relative;
    height: 100%;
}

img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    margin: 10px;
    background: none;
    width: 0px;
}

html::-webkit-scrollbar-button,
body::-webkit-scrollbar-button {
    display: none;
}

html::-webkit-scrollbar-track-piece,
body::-webkit-scrollbar-track-piece {
    background: rgba(0, 0, 0, 0.15);
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    margin: 10px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 3px;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1440px;
    padding: 0 80px;
    margin: auto;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media(max-width: 1280px) {
    .container {
        max-width: 768px;
        padding: 0 40px;
    }
}


@media(max-width: 768px) {
    .container {
        max-width: 360px;
        padding: 0 20px;
    }
}

.fixed_trigger{
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, calc(100% - 57px));
    z-index: 9999;
    padding: 15px;
    border-radius: 15px 15px 0 0;
    background: #4CA970;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.3s;
}
.fixed_trigger.hide{
    transform: translate(-50%, 100%);
}
.fixed_trigger .h2{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    margin-bottom: 20px;
}
.fixed_trigger:hover {
    transform: translate(-50%, calc(100% - 95px));
}
.fixed_trigger.active {
    transform: translate(-50%, 0);
}
.fixed_trigger.active img{
    display: none;
}
.fixed_trigger .big-desc{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.8);
    max-width: 400px;
    margin-top: 15px;
}
.fixed_trigger .btn{
    border: 1px solid #fff;
    border-radius: 500px;
    padding: 15px 0;
    width: 100%;
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #fff;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    margin-top: 15px;
    background: #fff;
    color: #1F2121;
}
.fixed_trigger .btn:hover{
    
}

.base_btn{
    background: #4ca970;
    border-radius: 500px;
    padding: 19px 32px;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}
.base_btn:hover{
    background: #3F8F5E;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background:  linear-gradient(180deg, rgba(31, 33, 33, 0), rgba(31, 33, 33, 0));
    transition: 0.3s;
}
.header:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:  linear-gradient(180deg, rgba(31, 33, 33, 1), rgba(31, 33, 33, 0));
    background: linear-gradient(180deg, rgba(31, 33, 33, 0.8), rgba(31, 33, 33, 0.4) 60%, rgba(31, 33, 33, 0) 100%);
    transition: 0.3s;
    opacity: 0;
    z-index: 0;
}
.header.scroll:before{
    opacity: 1;
}
.header .container{
    z-index: 10;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 45px;
    padding-bottom: 45px;
}
.header .right,
.header .right .menu_btn{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    grid-gap: 40px;
}
.header ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 40px;
}
.header ul a,
.header .right .menu_btn p{
    position: relative;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    line-height: 22px;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration-skip-ink: none;
    text-align: center;
    color: #1E2121;
    transition: 0.3s;
    cursor: pointer;
}
.header ul a:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #1E2121;
    transition: 0.3s;
}
.header ul a:hover,
.header .right .menu_btn:hover p{
    color: #4CA970;
}
.header ul a:hover:before{
    background: #4CA970;
}
.header .right .menu_btn{
    cursor: pointer;
}
.header .right .menu_btn .btn{
    width: 47px;
    height: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
}
.header .right .menu_btn .btn span{
    width: 100%;
    height: 2px;
    background: #1E2121;
    transition: 0.3s;
}
.header .right .menu_btn:hover .btn span{
    background: #4CA970;
}
.header .right .menu_btn .btn span:nth-child(1){
    width: 50%;
}
.header .right .menu_btn:hover .btn span:nth-child(1){
    width: 100%;
}
.header.scroll a,
.header.scroll p{
    color: #fff !important;
}
.header.scroll ul a:before,
.header.scroll .right .menu_btn .btn span{
    background: #fff;
}

.menu{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #1F2121;
    z-index: 99999;
/*    z-index: -1;*/
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}
.menu.active{
    visibility: visible;
    opacity: 1;
}
.menu .container{
    height: 100%;
    padding-top: 45px;
    padding-bottom: 45px;
    overflow: auto;
}
.menu .up{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.menu .up .right{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    grid-gap: 40px;
}
.menu .up .lang{
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 10px;
}
.menu .up .lang a,
.menu .up .lang span{
    display: block;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #666;
    transition: 0.3s;
    cursor: pointer;
}
.menu .up .lang a.active,
.menu .up .lang a:hover{
    color: #fff;
}
.menu .up .close-btn{
    border: 1px solid #fff;
    border-radius: 500px;
    padding: 10px 32px;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #fff;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.menu .up .close-btn:hover{
    color: #1F2121;
    background: #fff;
}
.menu .main{
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    padding-top: 12vh;
}
.menu .main .left,
.menu .main .left ul{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    grid-gap: 20px;
}
.menu .main .left ul a{
    position: relative;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #666;
    transition: 0.3s;
}
.menu .main .left ul a:hover{
    color: #fff;
}
.menu .main .left ul a:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}
.menu .main .left ul a:hover:before{
    width: 100%;
}
.menu .main .left .phone {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 50px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #fff;
    margin-top: 30px;
}
.menu .main .left .mail{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #fff;
    margin-top: 5px;
}
.menu .main .left .btns{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 35px;
    grid-gap: 20px;
}
.menu .main .left .btns .btn_2{
    border: 1px solid #fff;
    border-radius: 500px;
    padding: 19px 32px;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #fff;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.menu .main .left .btns .btn_2:hover{
    background: #fff;
    color: #1F2121;
}
.menu .right{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    grid-gap: 20px;
}
.menu .right .h2{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 55px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #fff;
    margin-top: -10px;
}
.menu .right .h2 span{
    color: #4CA970;
}
.menu .right .big-desc{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
/*    letter-spacing: -0.04em;*/
    color: rgba(255,255,255,0.65);
    margin-top: 5px;
}
.menu .right .big-desc span{
    color: #4CA970;
}
.menu .right .btn{
    border: 1px solid rgba(255,255,255,0.75);
    border-radius: 500px;
    padding: 10px 32px;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: rgba(255,255,255,0.75);
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.menu .right .btn:hover{
    background: #fff;
    color: #1F2121;
}

.block-1{
    padding-top: 225px;
}
.block-1 .line{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: flex-end;
}
.block-1 .line.l2{
    align-items: center;
    margin-top: 50px;
}
.block-1 h1{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 70px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #1e2121;
    max-width: 785px;
}
.block-1 h1 span{
    color: #4ca970;
}
.block-1 .sub{
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #1e2121;
    margin-top: 10px;
    display: block;
}
.block-1 .l1 p{
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -0.01em;
    text-align: right;
    color: #1e2121;
    max-width: 300px;
    opacity: 0 !important;
}
.block-1 .l2 p{
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -0.01em;
    color: #1e2121;
    max-width: 500px;
}

.block-2 .cont{
    height: 570px;
    border-radius: 24px;
    overflow: hidden;
    margin-top: 66px;
    position: relative;
    margin-bottom: 80px;
}
.block-2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.block-2 .info{
    background: linear-gradient(180deg, rgba(1, 1, 1, 0) 0%, rgba(1, 1, 1, 0.25) 50.35%, rgba(1, 1, 1, 0.8) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    padding: 37px 0;
    display: flex;
    align-items: flex-end;
}
.block-2 .info .line,
.block-2 .mob_line{
    display: flex;
    padding: 0px 50px;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
}
.block-2 .info .line .box,
.block-2 .mob_line .box{
    display: flex;
    align-items: center;
    grid-gap: 10px;
}
.block-2 .info .line .box img,
.block-2 .mob_line .box img{
    width: 30px;
    height: 30px;
}
.block-2 .info .box p,
.block-2 .mob_line .box p{
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #fff;
}
.block-2 .mob_line{
    display: none;
}
.block-2 .mob_line .box p{
    color: #1e2121;
}

.block-3{
    background: #0C1911;
    padding-top: 115px;
}
.block-3 h2{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 50px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #fff;
}
.block-3 .line{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 82px;
    width: 100%;
}
.block-3 .line .box{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    grid-gap: 30px;
}
.block-3 .line .box .head{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #4ca970;
}
.block-3 .line .box .desc{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #fff;
    max-width: 220px;
}

.block-4{
    background: #0C1911;
    padding-top: 180px;
}
.block-4 h2{
    font-family: "Manrope", sans-serif;
font-weight: 400;
font-size: 50px;
line-height: 90%;
letter-spacing: -0.04em;
text-align: center;
color: #fff;
}
.block-4 h2 span{
    color: #4ca970;
}
.block-4 .line{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 25px;
    margin-top: 70px;
}
.block-4 .line .box{
    border-radius: 20px;
    padding: 40px;
    height: 300px;
    background: #152723;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
}
.block-4 .line .box img{
    width: 70px;
    height: auto;
}
.block-4 .line .box h3{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #fff;
}
.block-4 .line .box .info{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #152723;
    padding: 40px;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -0.04em;
    color: #fff;
}
.block-4 .line .box:hover .info{
    opacity: 1;
    visibility: visible;
}

.block-5{
    background: #0C1911;
    padding-top: 120px;
    /* padding-bottom: 150px; */
}
.block-5 h2{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 50px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #fff;
}
.block-5 .cont{
    margin-top: 70px;
    border-radius: 30px;
    width: 100%;
    background: #152723;
    padding: 50px 40px;
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
}
.block-5 .cont .list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-gap: 35px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.block-5 .cont .list .box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-gap: 34px;
    cursor: pointer;
    position: relative;
}
.block-5 .cont .list .box label:nth-child(2){
    display: block;
    min-width: 16px;
    height: 16px;
    border: 1px solid #fff;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
}
.block-5 .cont .list .box label:nth-child(2):before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background: #fff;
    width: 6px;
    height: 6px;
    border-radius: 2px;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
}
.block-5 .cont .list .box label:nth-child(3){
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #fff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
}
.block-5 .cont .list .box:hover label:nth-child(2):before{
    opacity: 1;
}
.block-5 .cont .list .box:hover label:nth-child(3){
    color: #fff;
}

.block-5 .cont .list .box input{
    display: none;
}
.block-5 .cont .list .box input[type="radio"]:checked+label{
    border-color: #4CA970 !important;
}
.block-5 .cont .list .box input[type="radio"]:checked+label:before{
    background: #4CA970 !important;
    opacity: 1 !important;
}
.block-5 .cont .list .box input[type="radio"]:checked+label+label{
    color: #4CA970 !important;
}

.block-5 .change .box{
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 100%;
    display: none;
}
.block-5 .change .box.on{
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}
.block-5 .change .box .h3{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    /* letter-spacing: -0.08em; */
    /* background: -webkit-gradient(linear, left top, left bottom, from(#e6e5e6), to(#b9b9ba)); */
    background: -o-linear-gradient(top, #e6e5e6 0%, #b9b9ba 100%);
    /* background: linear-gradient(180deg, #e6e5e6 0%, #b9b9ba 100%); */
    /* background-clip: text; */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    color: #fff;
}
.block-5 .change .box .desc, .block-5 .change .box .desc p{
   font-family: "Manrope", sans-serif;
   font-weight: 400;
   font-size: 18px;
   line-height: 130%;
   letter-spacing: -0.04em;
   color: rgba(255, 255, 255, 0.8);
   margin-top: 38px;
   max-width: 500px;
}
.block-5 .change .box .desc p{
    margin-top: 10px;
}
.block-5 .change .box .desc p strong{
    font-weight: 700;
    color: rgba(255,255,255,1);
}
.block-5 .change .box .desc span{
    color: #fff;
}
.block-5 .bottom{
    margin-top: 50px;
}
.block-5 p,
.block-5 td{
   font-family: "Manrope", sans-serif;
font-weight: 400;
font-size: 14px;
line-height: 130%;
letter-spacing: -0.04em;
color: rgba(255, 255, 255, 0.8);
    max-width: 434px;
}
.block-5 table{
    /* margin-top: 40px; */
}
.block-5 tr{
    border-top: 10px solid rgba(255,255,255,0);
}
.block-5 td{
    color: rgba(255, 255, 255, 1);
    font-size: 28px;
    max-width: none;
}
.block-5 td:nth-child(2){
    padding: 0 10px;
}
.block-5 .change .box .bottom .btns,
.block-5 .boxx .btns{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 35px;
    grid-gap: 20px;
}
.block-5 .change .box .bottom .btns .btn_2,
.block-5 .boxx .btns .btn_2{
    border: 1px solid #fff;
    border-radius: 500px;
    padding: 19px 32px;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #fff;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.block-5 .change .box .bottom .btns .btn_2:hover,
.block-5 .boxx .btns .btn_2:hover{
    background: #fff;
    color: #1e2121;
}
.block-5 .boxx{
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-gap: 10px;
    margin-top: 32px;
}
.block-5 .boxx .line {
    padding: 2px 0;
    border-bottom: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    overflow: hidden;
    position: relative;
    
    background: #060606;
    border: 1px solid #242424;
border-radius: 10px;
}


.block-5 .boxx .head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    grid-gap: 25px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    padding-left: 20px
}
.block-5 .boxx .head .h3 {
    margin-top: 16px;
    margin-bottom: 16px;
    
        font-family: "Steppe", sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 100%;
letter-spacing: -0.06em;
color: #8b8b8b;
    position: relative;
    padding-left:39px;
}
.block-5 .boxx .head .h3:before{
    content: '';
    top: 50%;
    left: 0;
    position: absolute;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
    width: 16px;
    height: 16px;
    border: 1px solid #3C3C3C;
    border-radius: 5px;
    cursor: pointer;
}
.block-5 .boxx .head .h3:after{
    content: '';
    position: absolute;
    top: 50%;
    left: 8px;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background: #D7FFB7;
    width: 6px;
    height: 6px;
    border-radius: 2px;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
}
.block-5 .boxx .active .head .h3{
    color: #4ca970;
}
.block-5 .boxx .active .head .h3:before{
    border-color: #4ca970;
}
.block-5 .boxx .active .head .h3:after{
    opacity: 1;
    background: #4ca970;
}

.block-5 .boxx .text {
    position: relative;
    width: 100%;
}

.block-5 .boxx .text .p{
    position: absolute;
    padding: 15px 15px 10px;
    width: 100%;
}
.block-5 .boxx .text p {
    font-family: "Steppe", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -0.04em;
    color: rgba(255,255,255,0.8);
    margin-top: 10px;
/*    color: #9f9f9f;*/
}
.block-5 .boxx .text p:nth-child(1){
    margin-top: 0;
}
.block-5 .boxx .text p strong{
    font-weight: 700;
    color: #fff;
}
.block-5 .boxx .text p span {
    color: #fff;
}

@media(max-width: 1280px) {
    .block-5 .cont .list .box label:nth-child(3){
        font-size: 18px;
    }
    .block-5 .change .box .h3{
        font-size: 26px;
    }
    .block-5 .change .box .desc{
        margin-top: 26px;
        font-size: 16px;
    }
    .block-5 .change .box .bottom .btns,
    .block-5 .boxx .btns{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        width: 100%;
        margin-top: 45px;
    }
    .block-5 .change .box .bottom .btns .btn_2,
    .block-5 .boxx .btns .btn,
    .block-5 .boxx .btns .btn_2{
        width: 100%;
    }
    .block-5 .change .box .bottom .btns .btn_2,
    .block-5 .boxx .btns .btn_2{
        -webkit-box-ordinal-group: 0;
            -ms-flex-order: -1;
                order: -1;
    }
    .block-5 .change .box .bottom .btns .base_btn{
        width: 100%;
        text-align: center;
    }
}
@media(max-width: 768px) {
    .block-5 .boxx{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .block-5 h2{
        font-size: 28px;
    }
    .block-5 .cont:nth-child(2){
        display: none;
    }
    .block-5 .change .box .bottom .btns, .block-5 .boxx .btns{
        grid-gap: 10px;
        margin-top: 40px;
    }
}

.block-6{
    background: #0C1911;
    padding-top: 180px;
    padding-bottom: 80px;
}
.block-6 .left .cont{
    position: sticky;
    top: 100px;
    
}
.block-6 .container{
    display: grid;
    grid-template-columns: 1fr 544px;
    grid-gap: 40px;
    align-items: stretch;
}
.block-6 h2{
    font-family: "Manrope", sans-serif;
font-weight: 400;
font-size: 50px;
line-height: 90%;
letter-spacing: -0.04em;
color: #fff;
}
.block-6 h2 span{
    color: #4ca970;
}
.block-6 .btns{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 35px;
    grid-gap: 20px;
}
.block-6 .btns .btn_2{
    border: 1px solid #fff;
    border-radius: 500px;
    padding: 19px 32px;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #fff;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.block-6 .btns .btn_2:hover{
    background: #fff;
    color: #1e2121;
}
.block-6 .right{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    grid-gap: 100px;
    flex-direction: column;
    position: relative;
}
.block-6 .right .box{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    grid-gap: 30px;
}
.block-6 .box .main-icon{
    width: 48px;
    height: 48px;
}
.block-6 .right .box .info{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}
.block-6 .box h3{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 48px;
    letter-spacing: -0.04em;
    color: #4ca970;
}
.block-6 .box .desc{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 21px;
}
.block-6 .box .plug{
    border-radius: 10px;
    padding: 5px 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 10px;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #4ca970;
    background: #152723;
    margin-top: 20px;
}
.block-6 .box .plug img{
    height: 18px;
}
.block-6 .progress-line{
    position: absolute;
    top: 0;
    left: -53px;
    height: 100%;
    width: 3px;
    background: #383D3C;
    border-radius: 10px;
    overflow: hidden;
}
.block-6 .progress-line .span{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #4CA970;
    border-radius: 10px;
    transition: 0.3s;
}

.block-7{
    background: #0C1911;
    padding-top: 40px;
    padding-bottom: 80px;
}
.block-7 .cont{
    background: #fff;
    border-radius: 25px;
    padding: 50px 40px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
}
.block-7 .tags{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    grid-gap: 5px;
    max-width: 700px;
}
.block-7 .tags .tag{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    background: rgba(76, 169, 112, 0.1);
    border-radius: 10px;
    padding: 11px 12px;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #4ca970;
}
.block-7 h2{
    margin-top: 70px;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #1e2121;
    max-width: 620px;
}
.block-7 .desc{
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -0.01em;
    color: rgba(30, 33, 33, 0.6);
    max-width: 410px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.block-8 {
    background: #f4f4f4;
    padding-top: 115px;
    padding-bottom: 80px;
}
.block-8 h2{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 50px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #1e2121;
}
.block-8 .cont{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    margin-top: 70px;
}
.block-8 .cont .box{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    border-radius: 20px;
    height: 280px;
    background: #fff;
}
.block-8 img{
    width: 60px;
    height: auto;
}
.block-8 .cont .box h3{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 90%;
    letter-spacing: -0.04em;
    text-align: center;
    color: #1e2121;
    max-width: 440px;
}
.block-8 .cont .box h3 span{
    font-size: 18px;
    margin-top: 10px;
    opacity: 0.5;
    display: block;
    /* white-space: nowrap; */
}
.block-8 .boxx{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 122px;
    grid-column-start: 1;
    grid-column-end: 3;
    border-radius: 20px;
    padding: 20px 40px;
    background: #fff;
}
.block-8 .boxx h3{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #1e2121;
}

.block-9{
    background: #0C1911;
    padding-top: 115px;
    /* padding-bottom: 143px; */
}
.block-9 h2{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 70px;
    line-height: 90%;
    letter-spacing: -0.04em;
    text-align: center;
    color: #fff;
    max-width: 820px;
    margin: auto;
}
.block-9 .subhead{
    margin: auto;
    margin-top: 40px;
    color: rgba(255,255,255, 0.6);
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 90%;
    letter-spacing: -0.04em;
    text-align: center;
    max-width: 600px;
}
.block-9 .cont{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    margin-top: 70px;
}
.block-9 .cont .box{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border-radius: 20px;
    background: #152723;
    padding: 50px 40px;
}
.block-9 .cont .box h3{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 44px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #fff;
}
.block-9 .cont ul{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    grid-gap: 26px;
    margin-top: 55px;
    flex-grow: 1;
}
.block-9 .cont ul li{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #fff;
    padding-left: 26px;
    position: relative;
}
.block-9 .cont ul li .list{
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    grid-gap: 10px;
}
.block-9 .cont ul li .list p{
    position: relative;
    padding-left: 20px;
}
.block-9 .cont ul li .list p:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 4px;
    transform: translate(0, -50%);
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}
.block-9 .cont ul li:before{
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    transform: translate(0, -50%);
    width: 16px;
    height: 16px;
    background: url(../img/b9_li.svg) center center no-repeat;
    background-size: cover;
}
.block-9 .cont ul li.special{
    color: #1E2121;
    padding-left: 0;
    margin-top: 10px;
}
.block-9 .cont ul li.special  p{
    z-index: 10;
    display: block;
    position: relative;
    width: 265px;
}
.block-9 .cont ul li.special:after{
    content: '';
    z-index: 0;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: -40px;
    background: #fff;
    border-radius: 0 10px 10px 0;
    width: calc(100% + 70px);
    width: 330px;
    height: calc(100% + 24px);
}
.block-9 .cont ul li.special:before{
    background: url(../img/b9_li_special.svg) center center no-repeat;
    background-size: cover;
    left: inherit;
    right: -40px;
    width: 25px;
    height: 25px;
    z-index: 10;
}
.block-9 .cont .prices{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 50px;
    width: 100%;
}
.block-9 .cont .prices .period_vars{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 4px;
    justify-content: flex-start;
    flex-direction: row;
    gap: 10px;
}
.block-9 .cont .prices .period_vars .period{
    padding: 6px 12px;
    border-radius: 40px;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}
.block-9 .cont .prices .period_vars .period.active{
    background: #4CA970;
}
.block-9 .cont .prices .period_prices{
    width: 100%;
}
.block-9 .cont .prices .period_prices .period{
    display: none;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%;
    grid-row-gap: 30px;
    grid-column-gap: 20px;
    margin-top: 30px;   
}
.block-9 .cont .prices .period_prices .period.active{
    display: grid;
}
.block-9 .cont .prices .period_prices .period .main-price{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 90%;
    letter-spacing: -0.07em;
    color: #fff;
}
.block-9 .cont .prices .period_prices .period .info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    grid-gap: 7px;
}
.block-9 .cont .prices .period_prices .period .info .daily_price{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #fff;
}
.block-9 .cont .prices .period_prices .period .info .daily_price span{
    font-size: 24px;
    color: rgba(255, 255, 255, 0.4);
}
.block-9 .cont .prices .period_prices .period .info .desc{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.5);
}
.block-9 .cont .prices .period_prices .period .btn{
    width: 100%;
    text-align: center;
}
.block-9 .cont .prices .period_prices .period .second_btn{
    border: 1px solid #fff;
    border-radius: 500px;
    padding: 19px 0;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #fff;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.block-9 .cont .prices .period_prices .period .second_btn:hover{
    background: #fff;
    color: #1e2121;
}
#vip_poket h3{
    color: #4CA970;
}
.block-9 .cont .box.last_box{
    grid-column-start: 1;
    grid-column-end: 3;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    grid-gap: 40px;
    align-items: self-end;
}
.block-9 .cont .box.last_box .left{
    width: 100%;
}
.block-9 .cont .box.last_box p{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #fff;
    margin-top: 30px;
}


.block-10{
    padding: 115px 0 80px;
}
.block-10 h2{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 90%;
    letter-spacing: -0.04em;
    text-align: center;
    color: #1e2121;
    max-width: 780px;
    margin: auto;
}
.block-10 .box{
    min-width: 880px;
    max-width: 880px;
    margin: auto;
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
}
.block-10 .line{
    /*padding: 10px;*/
/*    padding: 2px 0;*/
/*    border: 1px solid #cbcbca;;*/
/*    border-right: none;*/
/*    border-left: none;*/
/*    border-bottom: none;*/
    border-radius: 16px;
    background: #F4F4F4;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    overflow: hidden;
    cursor: pointer;
}
.block-10 .head{
    padding: 0 25px;
    min-height: 35px;
    color: #1E2121;
font-family: Gilroy;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 110%; /* 19.8px */
    
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.block-10 .head h3{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #1e2121;
    max-width: 680px;
    opacity: 0.8;
    
    margin-top: 20px;
    margin-bottom: 20px;
}
.block-10 .close{
    margin-left: 10px;
    min-width: 40px;
    min-height: 40px;
    /*background: url(../img/close-question.svg) center center no-repeat;*/
    background-size: 25px;
    cursor: pointer;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    /*opacity: 0.6;*/
    border-radius: 20px;
}
.block-10 .line.active .close{
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}
.block-10 .text{
    position: relative;
}
.block-10 .text .p{
    position: absolute;
    margin-top: 10px;
    line-height: 150%; /* 21px */
    padding-top: 10px;
    padding-bottom: 40px;
    padding-left: 25px;
    padding-right: 25px;
}
.block-10 .text p{
    color: rgba(30, 33, 33, 0.75);
font-family: Gilroy;
font-size: 14px;
font-style: normal;
font-weight: 400;
}
.block-10 .text p strong{
    font-weight: 700;
}
.block-10 ul{
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
}
.block-10 li{
    color: rgba(30, 33, 33, 0.75);
    font-family: Gilroy;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    position: relative;
    padding-left: 20px;
}
.block-10 li:before{
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 8px;
    height: 8px;
    background: #4CA970;
    border-radius: 50%;
}
.block-10 .bottom{
    margin: auto;
    width: 880px;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.block-10 .bottom h3{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #1e2121;
    max-width: 680px;
    opacity: 0.8;
}
.block-10 .bottom .base_btn{
    padding: 12px 20px;
}

.block-11{
    background: #0C1911;
    padding: 115px 0 90px;
}
.block-11 .cont{
    border-radius: 20px;
    background: #152723;
    display: grid;
    grid-template-columns: 1fr 540px;
    grid-gap: 40px;
    padding: 50px 40px;
}
.block-11 .left{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.block-11 h2{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #fff;
}
.block-11 h2 span{
    color: #4ca970;
}
.block-11 .left .desc{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 41px;
    max-width: 460px;
}
.block-11 .left .down,
.block-11 .right{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    grid-gap: 24px;
}
.block-11 .left .down .phone{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 50px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #fff;
}
.block-11 .left .down .mail{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #fff;
}
.block-11 .right{
    grid-gap: 14px;
}
.block-11 .right input,
.block-11 .right textarea{
    width: 100%;
    padding: 22px 21px;
    width: 540px;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 1);
    background: #313C39;
    border: 1px solid #2e3332;
    border-radius: 10px !important;
    outline: none;
    transition: 0.3s;
}
.block-11 .right textarea{
    min-height: 120px;
}
.block-11 .right input:focus,
.block-11 .right textarea:focus{
    border-color: #4ca970;
}
.block-11 .right input::placeholder,
.block-11 .right textarea::placeholder{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.5);
}
.block-11 .right .date,
.block-11 .right .time{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    grid-gap: 8px;
    width: 100%;
}
.block-11 .right .date .head,
.block-11 .right .time .head{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 40px;
    letter-spacing: -0.04em;
    color: #fff;
    min-width: 60px;
}
.block-11 .right .date .list,
.block-11 .right .time .list{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-grow: 1;
    grid-gap: 14px;
}
.block-11 .right .date .list div,
.block-11 .right .time .list div{
    border-radius: 10px;
    width: 40px;
    height: 40px;
    background: #313C39;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}
.block-11 .right .time .list div{
    width: 70px;
}
.block-11 .right .date .list div:hover,
.block-11 .right .time .list div:hover{
    background: #464E4C;
}
.block-11 .right .date .list div.active,
.block-11 .right .time .list div.active{
    color: #fff;
    background: #4ca970;
}
.block-11 .right .type{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 4px;
    justify-content: flex-start;
    flex-direction: row;
    gap: 10px;
}
.block-11 .right .type .var{
    width: 25%;
    padding: 6px 12px;
    border-radius: 40px;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
}
.block-11 .right .type .var.active{
    background: #4CA970;
}
.block-11 .right .btn{
    border-radius: 10px;
    padding: 24px 21px;
    width: 100%;
    height: 71px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4ca970;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -0.04em;
    color: #fff;
    transition: 0.3s;
    cursor: pointer;
}
.block-11 .right .btn:hover{
    background: #3F8F5E;
}
.block-12{
    margin-top: 135px;
    margin-bottom: 100px;
}
.block-12 h1{
        font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 70px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #1e2121;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}
.block-12 h2{
        font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 34px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #1e2121;
    text-align: center;
    width: 100%;
    margin-top: 100px;
}
.block-12 p,
.block-12 li{
    margin-top: 20px;
        font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -0.01em;
    color: #1e2121;
}
.block-12 .has-text-align-center{
    width: 100%;
    text-align: center;
    margin-top: 0px;
}
.footer{
    background: #0C1911;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.footer .line{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 40px;
    border-top: 1px solid rgba(255,255,255,0.25);
    padding: 60px 0;
}
.footer .col{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    grid-gap: 16px;
}
.footer .col .head{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}
.footer .col a{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #fff;
    transition: 0.3s;
}
.footer .col a:hover{
    color: #4ca970;
}
.footer .line:nth-child(2){
    padding: 0 0 30px 0;
    border-top: none;
}
.footer .line:nth-child(2) .adress{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #fff;
    opacity: 0.6;
}
.footer .line:nth-child(2) .up{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #fff;
    transition: 0.3s;
    grid-gap: 15px;
}
.footer .line:nth-child(2) .up img{
    width: 24px;
}
.footer .line:nth-child(3){
    padding: 30px 0;
}
.footer .line .desc{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1280px) {
    .base_btn{
        padding: 15px;
    }
    .container{
        max-width: 768px;
    }
    .header ul{
        display: none;
    }
    .block-1 .l1 p{
        display: none;
    }
    .block-1 .line.l2{
        flex-direction: column;
        align-items: flex-start;
        grid-gap: 15px;
        margin-top: 30px;
    }
    .block-1 h1{
        font-size: 60px;
    }
    .block-1 .sub{
        font-size: 32px;
        margin-top: 10px;
    }
    .block-2 .cont{
        height: 400px;
    }
    .block-2 .info{
        background: linear-gradient(180deg, rgba(1, 1, 1, 0) 0%, rgba(1, 1, 1, 0.25) 30.35%, rgba(1, 1, 1, 0.8) 100%);
    }
    .block-2 .info .line{
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 15px;
    }
    .block-3 .line{
        flex-wrap: wrap;
        grid-gap: 50px;
        align-items: flex-start;
        justify-content: center;
        margin-top: 60px;
    }
    .block-3 h2,
    .block-4 h2,
    .block-5 h2,
    .block-6 h2,
    .block-7 h2,
    .block-8 h2,
    .block-9 h2,
    .block-10 h2,
    .block-11 h2{
        font-size: 42px;
    }
    .block-4 .line{
        margin-top: 30px;
        grid-template-columns: 1fr 1fr;
    }
    .block-4 .line .box,
    .block-4 .line .box .info{
        padding: 30px;
    }
    .block-4 .line .box h3{
        font-size: 26px;
    }
    .block-4 .line .box{
        height: 240px;
    }
    .block-4 .line .box .info{
        font-size: 16px;
    }
    .block-4 .line .box img{
        width: 60px;
    }
    .block-5 .cont{
        margin-top: 30px;
    }
    .block-5 table{
        margin-top: 30px;
    }
    .block-5 td{
        font-size: 20px;
    }
    .block-5,
    .block-6{
        padding-top: 70px;
        padding-bottom: 50px;
    }
    .block-6 .container{
        grid-template-columns: 1fr;
    }
    .block-6 .right{
        padding-left: 60px;
    }
    .block-6 .progress-line{
        left: 0;
    }
    .block-6 .box .desc{
        font-size: 16px;
    }
    .block-7 .cont{
        padding: 40px 30px;
    }
    .block-7 .desc{
        font-size: 16px;
        margin-top: 20px;
    }
    .block-7 h2{
        max-width: 400px;
    }
    .block-8 .cont{
        grid-gap: 20px;
        margin-top: 30px;
    }
    .block-8 .cont .box{
        height: 200px;
    }
    .block-8 .cont .box h3{
        font-size: 22px;
        padding: 0 20px;
    }
    .block-8 .boxx{
        padding: 20px;
        grid-gap: 20px;
    }
    .block-8 .boxx h3{
        font-size: 22px;
    }
    .block-8 .base_btn{
        white-space: nowrap;
    }
    .block-9 .cont{
        margin-top: 30px;
        grid-gap: 20px;
    }
    .block-9 .cont .box{
        padding: 30px 20px;
    }
    .block-9 .cont .box h3{
        font-size: 36px;
    }
    .block-9 .cont ul{
        margin-top: 35px;
        grid-gap: 15px;
    }
    .block-9 .cont ul li,
    .block-9 .box.last_box p{
        font-size: 16px !important;
    }
    .block-9 .cont ul li.special:after{
        left: -20px;
        width: 280px;
    }
    .block-9 .cont ul li.special:before{
        right: -5px;
    }
    .block-9 .cont .prices .period_prices .period .btn{
        grid-column-start: 1;
        grid-column-end: 3;
    }
    .block-9 .cont .prices .period_prices .period{
        grid-gap: 20px;
        grid-template-columns: 2fr 1fr;
    }
    .block-9 .cont .prices .period_prices .period .main-price{
        grid-column-start: 1;
        grid-column-end: 3;
    }
    .block-9 .cont .prices .period_prices .period .info{
        flex-direction: row;
        grid-column-start: 1;
        grid-column-end: 3;
        align-items: center;
        grid-gap: 40px;
    }
    .block-9 .base_btn{
        margin-top: 10px;
    }
    .block-5 .change .box .bottom .btns .btn_2,
    .block-5 .boxx .btns .btn_2,
    .block-6 .btns .btn_2,
    .block-9 .cont .prices .period_prices .period .second_btn{
        padding: 15px;
    }
    .block-9{
        padding-bottom: 100px;
    }
    .block-9 .cont .box.last_box{
        flex-direction: column;
    }
    .block-10 .bottom,
    .block-10 .box{
        width: 688px;
        max-width: 688px;
        min-width: 688px;
    }
    .block-10 .head h3,
    .block-10 .bottom h3{
        font-size: 22px;
    }
    .block-11 .cont{
        grid-template-columns: 1fr;
    }
    .block-11 .left .down{
        display: none;
    }
    .block-11 .left .desc{
        margin-top: 25px;
        font-size: 16px;
    }
    .block-11 .right input, .block-11 .right textarea{
        width: 100%;
    }
    .footer .line{
        grid-template-columns: 1fr 1fr;
        grid-row-gap: 60px;
    }
    .footer .col .head{
        margin-bottom: 10px;
    }
    .footer .col a{
        font-size: 16px;
    }
    .footer .col{
        grid-gap: 10px;
    }
    .footer .line:nth-child(3){
        grid-row-gap: 15px;
    }
    .menu .main{
        grid-template-columns: 1fr;
        grid-gap: 100px;
    }
    .menu .right{
        display: none;
    }
    .menu .main .left .btns .btn_2{
        padding: 15px;
    }
}
@media (max-width: 768px) {
    .base_btn{
        text-align: center;
    }
    .container{
        max-width: calc(100% - 30px);
        padding: 0;
    }
    .block-1{
        padding-top: 100px;
    }
    .block-2 .cont{
        height: 50vw;
        margin-bottom: 30px;
    }
    .block-1 h1,
    .block-12 h1{
        font-size: 8vw;
    }
    .block-1 .sub{
        font-size: 5.5vw;
    }
    .block-12 h2{
        font-size: 24px;
        margin-top: 50px;
    }
    .block-1 .l2 p{
        font-size: 14px;
    }
    .block-12 p,
    .block-12 li{
        font-size: 16px;
    }
    .block-1 .line.l2 .base_btn{
        width: 100%;
        text-align: center;
    }
    .block-2 .info{
        display: none;
    }
    .block-2 .mob_line{
        display: flex;
        flex-direction: column;
        grid-gap: 15px;
        padding: 0;
        margin-bottom: 30px;
    }
    .block-3 h2,
    .block-4 h2,
    .block-5 h2,
    .block-6 h2,
    .block-7 h2,
    .block-8 h2,
    .block-9 h2,
    .block-10 h2,
    .block-11 h2{
        font-size: 32px;
    }
    .block-10 h2{
        padding: 0 10px;
    }
    .block-3 .line{
        justify-content: flex-start;
    }
    .block-3 .line .box{
        flex-direction: row;
        align-items: center;
    }
    .block-3 .line .box .head{
        min-width: 70px;
    }
    .block-4{
        padding-top: 120px;
    }
    .block-4 .line{
        grid-template-columns: 1fr;
    }
    .block-4 .line .box,
    .block-4 .line .box .info{
        height: auto;
        padding: 20px;
        grid-gap: 40px;
    }
    .block-4 .line .box .info{
        height: 100%;
    }
    .block-4 .line .box h3{
        font-size: 24px;
    }
    .block-5 .boxx .line{
        background: #152723;
    }
    .block-5 .boxx .head .h3:before{
        border-color: #fff;
    }
    .block-5 .boxx .btns .btn_2{
        padding: 14px 0;
        text-align: center;
    }
    .block-5 .boxx .head .h3{
        color: #fff;
    }
    .block-6 .btns{
        flex-direction: column;
        grid-gap: 10px;
    }
    .block-6 .btns div{
        width: 100%;
        text-align: center;
    }
    .block-6 .btns .btn_2{
        padding: 14px 0;
    }
    .block-6 .right{
        padding-left: 20px;
        grid-gap: 50px;
    }
    .block-6 .box .main-icon{
        width: 40px;
    }
    .block-6 .right .box{
        grid-gap: 20px;
    }
    .block-6 .box h3{
        font-size: 24px;
        line-height: 110%;
        min-height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .block-6 .box .desc{
        font-size: 14px;
    }
    .block-7 .cont{
        padding: 20px;
    }
    .block-7 h2{
        margin-top: 20px;
    }
    .block-7 .tags .tag{
        font-size: 12px;
    }
    .block-7 .desc{
        font-size: 14px;
    }
    .block-7 .base_btn{
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }
    .block-8{
        padding-top: 80px;
    }
    .block-8 .cont{
        grid-template-columns: 1fr;
    }
    .block-8 .cont .box{
        padding: 15px;
        height: auto;
        grid-gap: 20px;
    }
    .block-8 .boxx{
        padding: 15px;
        grid-column-end: 2;
        flex-direction: column;
    }
    .block-8 .base_btn{
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }
    .block-8 .cont .box h3{
        font-size: 20px;
    }
    .block-8 .cont .box h3 span{
        font-size: 16px;
        margin-bottom: 10px;
    }
    .block-8 img{
        width: 50px;
    }
    .block-9{
        padding-top: 100px;
        padding-bottom: 0;
    }
    .block-9 .cont{
        grid-template-columns: 1fr;
    }
    .block-9 .cont ul li.special{
        margin-top: 22px;
    }
    .block-9 .cont .box.last_box{
        grid-column-end: 2;
        padding-bottom: 20px
    }
    .block-9 .cont .box.last_box .right,
    .block-9 .cont .box.last_box .base_btn{
        width: 100%;
    }
    .block-10{
        padding-top: 80px;
    }
    .block-10 .box{
        margin-top: 30px;
    }
    .block-10 .bottom, .block-10 .box{
        width: 100%;
        max-width: none;
        min-width: 0;
    }
    .block-10 .head{
        padding: 0 15px;
    }
    .block-10 .head h3{
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .block-10 .head h3, .block-10 .bottom h3{
        font-size: 20px;
    }
    .block-10 .bottom{
        flex-direction: column;
        grid-gap: 20px;
    }
    .block-11{
        padding: 80px 0 80px;
    }
    .block-11 .cont{
        padding: 30px 20px;
    }
    .block-11 .right .type{
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-radius: 15px;
    }
    .block-11 .right .type .var{
        width: 100%;
    }
    .block-11 .right .date, .block-11 .right .time{
        flex-direction: column;
    }
    .menu .main .left .phone{
        font-size: 9vw;
    }
    .menu .main .left .mail{
        font-size: 6vw;
        margin-top: 0px;
    }
    .menu .main .left .btns{
        flex-direction: column;
        width: 100%;
        align-items: stretch;
        text-align-last: center;
    }
    .fixed_trigger .h2{
        font-size: 26px;
    }   
}

#main-div {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  opacity: 1;
  transition: 0.3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}
#main-div.hide{
    right: -60px;
    visibility: hidden;
    opacity: 0;
}
@media(max-width: 768px){
    #main-div{
        bottom: 70px;
    }
}


#main-button {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 60px;
  width: 60px;
  font-size: 20px;
  color: #0064f3;
  cursor: pointer !important;
  background-color: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
          box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
    -webkit-transition: .3s background;
  -moz-transition: .3s background;
  -ms-transition: .3s background;
  -o-transition: .3s background;
}
#main-button:hover{
    background: #4CA970;
}
#main-button:hover svg path{
    fill: #fff;
}
#main-div svg,
#main-div path,
#main-div g{
    z-index: 2;
    cursor: pointer !important;
}
#main-button svg{
    width: 48%;
    height: auto;
    display: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
#main-button svg.active{
    display: block;
}
#main-button svg.close{
    width: 38%;
    height: auto;
}

#main-div button {
  visibility: hidden;
  font-weight: 600;
  height: 45px;
  padding: 0 20px;
  color: #fff;
  background: #4CA970;
  -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
          box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
  border: 0;
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 5px;
  opacity: 0;
  white-space: nowrap;
  cursor: pointer !important;
  transition: .2s all linear;
  -webkit-transition: .2s all linear;
  -moz-transition: .2s all linear;
  -ms-transition: .2s all linear;
  -o-transition: .2s all linear;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 5px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #fff;
}

#main-div button.active {
  visibility: visible;
  right: 70px;
  opacity: 1;
  transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -webkit-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -moz-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -ms-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -o-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
}

#main-button ~ a {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer !important;
  position: absolute;
  right: 5px;
  bottom: 0;
  z-index: -1;
  height: 50px;
  width: 50px;
  font-size: 20px;
  opacity: 0;
  text-decoration: none;
  color: #fff;
  background-color: #fff;
    -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
            box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: .2s all linear;
  -webkit-transition: .2s all linear;
  -moz-transition: .2s all linear;
  -ms-transition: .2s all linear;
  -o-transition: .2s all linear;
}
#main-button.load,
#main-button.load ~ a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
#main-button ~ .telegram-color {
  background: #1C93D2;
}
#main-button ~ .telegram-color svg {
    width: 75%;
    height: auto;
}

#main-button ~ .viber-color {
  background: #5141c1
}
#main-button ~ .viber-color svg {
    width: 55%;
    height: auto;
}

#main-button ~ .mail-color {
  background: #25d366;
}
#main-button ~ .mail-color svg {
    width: 45%;
    height: auto;
}

#main-button ~ .phone-color {
  background: #2ed573
}
#main-button ~ .phone-color svg {
    width: 45%;
    height: auto;
}

#main-button.open ~ a {
  opacity: 1;
  transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -webkit-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -moz-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -ms-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -o-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
}
#main-button.open ~ a:nth-of-type(1) {
  bottom: 70px;
}
#main-button.open ~ a:nth-of-type(2) {
  bottom: 130px;
}
#main-button.open ~ a:nth-of-type(3) {
  bottom: 190px;
}
#main-button.open ~ a:nth-of-type(4) {
  bottom: 250px;
}

.wave {
  -webkit-animation-name: wave;
          animation-name: wave;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
/*

@keyframes wave {
  0% {box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.5);}
  100% {box-shadow: 0 0 0px 10px rgba(255, 255, 255, 0);}
}
*/

.open {
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}



.online-chat-btn{
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #4ca970;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    z-index: 999;
    transition: 0.3s;
}
@media(max-width: 768px){
    .online-chat-btn{
        bottom: 70px;
    }
}
.online-chat-btn.hide{
    left: -100%;
}
.online-chat-btn svg{
    width: 40px;
    height: auto;
}
.online-chat-btn svg path{
    fill: #fff;
}