html{
    box-sizing: border-box;
    /* Ширина Паддингов не учитывается в общую ширину */
}
*, *::before, *, *::after{
    box-sizing: inherit;
}
a{
    color: #000;
    display: inline-block;
    /* Все ссылки делаем строчно-блочными */
    text-decoration: none;
    /* Убираем всю декорацию (подчёркивания) на ссылках */
}
ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
}
button{
    cursor: pointer;
}

body{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: normal;
    background: #FFFFFF;
}
/* input{
    outline: none;
} */

/* полоса прокрутки (скроллбар) */
::-webkit-scrollbar {
    display: none;
}

/* ползунок скроллбара */
::-webkit-scrollbar-thumb {
    display: none;
}

::-webkit-scrollbar-thumb:hover {
    display: none;
}

/* Стрелки */

::-webkit-scrollbar-button:vertical:start:decrement {
    display: none;
}

::-webkit-scrollbar-button:vertical:end:increment {
    display: none;
}

::-webkit-scrollbar-button:horizontal:start:decrement {
    display: none;
}

::-webkit-scrollbar-button:horizontal:end:increment {
    display: none;
}

.container{
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 10px;
}
.header{
    background-color: #095F96;
}
.header__menu{
    background-color: #095F96;
    padding: 18px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__menu-links{
    max-width: 800px;
    width: 100%;
}
.header__menu-links ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__menu-links ul li a{
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    text-align: center;
    color: #FFFFFF;
}
.header__menu-links ul li span{
    border-bottom: 2px solid #FFFFFF;
}
.header__body{
    margin: 0 auto;
    max-width: 1240px;
    padding-top: 95px;
    padding-left: 20px;
    padding-bottom: 150px;
    overflow: hidden;
}
.header__body__inner{
    display: flex;
    position: relative;
}
.header__body-text{
    padding-top: 50px;
    max-width: 738px;
    font-weight: 800;
    font-size: 80px;
    color: #095F96;
}
.header__body-text_buttons button{
    font-weight: 800;
    font-size: 20px;
    text-align: center;
    color: #1B1D1C;
    display: block;
    padding: 22px 0;
    width: 470px;
    margin-top: 38px;
    border: 4px solid #000000;
    border-radius: 10px;
}
.header__body-img{
    position: absolute;
    top: 0;
    right: 0;
}
.about{
    background: #095F96;
    padding: 90px 20px 65px;
}
.about__inner{
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.about__title{
    max-width: 569px;
    font-weight: 800;
    font-size: 100px;
    color: #FFFFFF;
}
.t_about__inner{
    white-space: pre-wrap;
}
.about__inner p{
    font-weight: normal;
    font-size: 20px;
    line-height: 26px;
    text-align: justify;
    color: #FFFFFF;
}
.about__button{
    display: flex;
    justify-content: flex-end;
    width: 100%;
    
}
.about__button button{
    padding: 22px 0;
    background: linear-gradient(180deg, #2D9FD4 -17.39%, rgba(45, 159, 212, 0) 382.61%);
    border-radius: 10px;
    width: 380px;

    font-weight: 800;
    font-size: 20px;
    text-align: center;
    color: #FFFFFF;
    border: none;
    position: relative;
}
.about__button button::before{
    content: '';
    position: absolute;
    top: 18px;
    left: -60px;
    width: 28px;
    height: 28px;
    background-image: url(../images/ellipse28.svg);
}
.body{
    padding: 100px 20px 50px;
}
.body__boxes{
    max-width: 1170px;
    margin: 0 auto;
}
.body_box{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.body_box img{
    margin-right: 10px;
}
.body_box-text{
    background: linear-gradient(276.77deg, rgba(9, 95, 150, 0.15) 67.77%, rgba(9, 95, 150, 0) 183.85%);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 21px 33px 23px 53px;
    max-width: 868px;
    width: 100%;

}
.body_box-text_text p{
    font-weight: normal;
    font-size: 20px;
    color: #095F96;

}
.body_box-text_text{
    max-width: 516px;
    margin-right: 5px;
}
.body_box-text_title{
    font-weight: 800;
    font-size: 50px;
    color: #095F96;
}
.body__bottom_title{
    font-weight: 800;
    font-size: 100px;
    color: #095F96;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1170px;
    margin: 20px auto 10px;
}
.body__bottom_title img{
    margin-left: 5px;
}
.refferal{
    background: #095F96;
    padding: 107px 5px 87px;
}
.refferal_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 58px;
}
.refferal_box-num{
    background: linear-gradient(270deg, #FFFFFF -352.93%, rgba(255, 255, 255, 0) 117.91%);
    border-radius: 10px;

    font-weight: 800;
    font-size: 120px;
    text-align: center;
    color: #FFFFFF;
    max-width: 256px;
    width: 100%;
    padding: 44px 0;
    margin-right: 5px;
}
.refferal__boxes{
    max-width: 1170px;
    margin: 0 auto;
}
.refferal_box-text{
    max-width: 863px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 35px 30px 53px;
    background: linear-gradient(269.77deg, rgba(96, 86, 154, 0.15) -4.5%, rgba(96, 86, 154, 0) 168.94%);
    border-radius: 10px;
}
.refferal_box-text-text p{
    font-weight: 600;
    font-size: 20px;
    color: #FFFFFF;
}
.refferal_box-text-title{
    font-weight: 800;
    font-size: 50px;
    color: #FFFFFF;
}
.refferal_buttons{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.refferal_button{
    width: 570px;
    padding: 21px 0;
    text-align: center;

    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.05em;
    color: #FFFFFF;

    background: linear-gradient(180deg, #2D9FD4 -17.39%, rgba(45, 159, 212, 0) 382.61%);
    border-radius: 10px;
    border: none;
}
.t_header__body__img-a{
    display: none;
}
.body_barcode-w{
    display: none;
}

.faq{
    padding: 79px 5px 93px;
}
.faq__inner{
    max-width: 1170px;
    margin: 0 auto;
}
.faq__title{
    font-weight: 800;
    font-size: 130px;
    color: #095F96;
    margin-bottom: 21px;
}
.faq_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 21px;
}
.faq_box-text{
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.05em;
    color: #095F96;
}
.faq_box-button{
    cursor: pointer;
    font-weight: 800;
    font-size: 30px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    width: 35px;
    height: 69px;
    display: flex;
    justify-content: center;
    align-items: center;

    background: #095F96;
    border-radius: 10px;
    padding-left: 2px;
}
.faq__contact{
    display: flex;
    justify-content: flex-end;
    max-width: 1170px;
    margin: 0 auto;
    margin-top: 45px;
}
.faq__contact-btn{
    position: relative;
    padding-right: 55px;
}
.faq__contact-btn::after{
    content: '';
    position: absolute;
    right: 0;
    top: 23px;
    width: 28px;
    height: 28px;
    background-image: url(../images/ellipse28-contact.svg);
}

.footer{
    padding: 25px 30px;
    background: #095F96;
}
.footer__text{
    font-weight: 300;
    font-size: 20px;
    color: #FFFFFF;
    margin-right: 10px;
}
.footer__inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__links{
    max-width: 380px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__links-links{
    max-width: 230px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.refferal_button-1{
    margin-right: 5px;
}
.body_barcode-a{
    display: none;
}
.refferal_barcode-a{
    display: none;
}
.body_box_img-a{
    display: none;
}
.header__logo-img-a{
    display: none;
}
.header__body-img_img-a{
    display: none;
}
.t_header{
    background: #37AEE2;
}
.t_header__menu{
    background: #37AEE2;
}
.t_header__body{
    padding: 195px 20px;
    position: relative;
    overflow: hidden;
}
.t_header__body__text p{
    margin: 0;
    font-weight: 800;
    font-size: 100px;
    color: #37AEE2;
    max-width: 500px;
}
.t_header__body__text button{
    background: linear-gradient(180deg, #2D9FD4 -17.39%, rgba(45, 159, 212, 0) 382.61%);
    border-radius: 10px;

    position: relative;

    font-weight: 800;
    font-size: 20px;
    text-align: center;

    color: #FFFFFF;

    width: 341px;
    height: 69px;
    border: none;
    margin-top: 31px;
}
#t_header__button::after{
    content: '';
    position: absolute;
    top: 30%;
    right: -40px;
    width: 26px;
    height: 26px;
    background-image: url(../images/telegram_ellipse-26x26.svg);
}
.t_header__body__inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1235px;
    margin: 0 auto;
}
/* .t_header__body__img{
    position: absolute;
    top: -93px;
    right: 0px;
} */
.p_about{
    background: #2D9FD4;
}
.t_body_box-text_title{
    color: #2D9FD4;
}
.t_body_box-text_text p{
    color: #095F96;
}
.t_body__bottom_title{
    color: #2D9FD4;
    
}
.t_body__bottom_title p{
    max-width: 669px;
}
.body__bottom_title p{
    max-width: 870px;
    margin-right: 20px;
}
.t_columns{
    padding: 0px 10px 63px;
}
.t_columns__boxes{
    display: flex;
    justify-content: space-between;
    max-width: 1170px;
    margin: 0 auto;
}
.t_column{
    max-width: 370px;
    width: 100%;
    margin-right: 5px;
}
.t_row{
    width: inherit;
    padding: 21px 20px;

    background: #D5ECF6;
    border-radius: 10px;
    margin-bottom: 11px;
}
.t_row-name{
    font-weight: 800;
    font-size: 20px;
    color: #2D9FD4;
}
.t_row-text{
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: #095F96;
}
.t_row-value{
    padding: 10px 10px 9px; 
    background: #2D9FD4;
    font-weight: 800;
    font-size: 40px;    
    color: #FFFFFF;
}
.t_column-value{
    margin-right: 0;
}
.t_faq__contact-btn{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.t_faq__contact-btn{
    padding-right: 0;
}
.t_faq__contact-btn::after{
    display: none;
}
.t_how{
    padding: 0 10px;
    margin-bottom: 40px;
}
.t_how__box-text{
    display: flex;
    align-items: center;
    margin-right: 10px;
}
.t_how__box-text p{
    margin-left: 5px;
    font-weight: 500;
    font-size: 50px;
    color: #2D9FD4;
    max-width: 560px;
    margin: 0;
}
.t_how__box-text_num{
    font-weight: 800;
    font-size: 220px;
    color: #2D9FD4;
}
.t_how__boxes{
    margin: 0 auto;
    max-width: 1170px;
}
.t_how__box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.t_faq__title{
    color: #2D9FD4;
}
.t_faq_box-button{
    background: #2D9FD4;
}
.t_faq_box-text{
    background: #D5ECF6;
    border-radius: 10px;
    padding: 22px 25px;
    width: 100%;
    margin-right: 10px;
}
.t_footer{
    background: #2D9FD4;
}

.r_header__menu{
    background-color: #60569A;
}
.r_header__body__text p{
    color: #60569A;
}
/* .r_header__body__img {
    position: absolute;
    top: -78px;
    right: 0px;
} */
.r_header__body__text button {
    background: linear-gradient(180deg, #60569A -17.39%, rgba(96, 86, 154, 0) 382.61%);
}
.r_about{
    background-color: #60569A;
}
.r_refferal{
    background: #FFFFFF;
}
.r_refferal_box-text .refferal_box-text-text p{
    color: #60569A;
}
.r_refferal_box-text .refferal_box-text-text .refferal_box-text-title{
    color: #60569A;
}
.r_refferal_box-num{
    background: linear-gradient(89.11deg, #60569A -10.85%, rgba(96, 86, 154, 0) 390.99%);
}
.r_refferal_buttons{
    justify-content: flex-end;
}
.r_refferal_button{
    background: linear-gradient(180deg, #60569A 29.71%, rgba(96, 86, 154, 0) 317.39%);
}
.r_body__bottom_title{
    color: #60569A;
}
.r_how__box-text p{
    color: #60569A;
}
.r_how__box-text .t_how__box-text_num{
    color: #60569A;
}
.r_faq__title{
    color: #60569A;
}
.r_faq_box-text{
    width: 100%;
    margin-right: 20px;
    padding: 22px 25px;
    background: rgba(96, 86, 154, 0.15);
    border-radius: 10px;
    color: #60569A;
}
.r_faq_box-button{
    background: #60569A;
}
.r_footer{
    background: #60569A;
}
.w_header{
    background: #3C3C3C;
}
.w_header__menu{
    background: #3C3C3C;
}
.w_header__body__text p{
    color: #3B3B3B;
}
/* .header__inner{
    position: fixed;
    width: 100%;
    z-index: 66;
    border-bottom: 3px solid #FFFFFF;
} */
.w_header__body__text button{
    background: linear-gradient(180deg, #FAC344 -17.39%, rgba(226, 158, 0, 0.85) 382.61%);
    color: #3B3B3B;
}
.w_header__body__inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: 1170px;
}
.w_header__body__inner img{
    margin-left: 10px;
}
/* .w_header__body__img{
    position: absolute;
    top: -17px;
    right: 0px;
} */
.w_item__title{
    max-width: 834px;
    font-weight: 800;
    font-size: 50px;
    color: #3B3B3B;
    margin-bottom: 40px;
}
.w_item__subtitle{
    font-size: 100px;
}
.w_why__text{
    margin-left: 10px;
    max-width: 500px;
}
.w_why__text p {
    font-weight: normal;
    font-size: 20px;
    text-align: justify;
    color: #3B3B3B;
}
.w_item__inner p{
    font-weight: normal;
    font-size: 20px;
    text-align: justify;
    color: #3B3B3B;
}
.w_item__inner{
    position: relative;
    padding: 80px 20px;
    max-width: 1220px;
    margin: 0 auto;
}
.w_why__inner{
    margin: 0 auto;
    max-width: 1220px;
    padding: 10px 10px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.w_cases__inner{
    max-width: 1170px;
    margin: 0 auto;
    padding: 20px 20px 70px;
}
.w_cases__images{
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.w_header__body__img-a{
    display: none;
}
.w_get__inner{
    display: flex;
    align-items: baseline;
    max-width: 1170px;
    margin: 0 auto;
    padding: 20px 20px 70px;
}
.w_get__text{
    max-width: 500px;
}
.w_get__text p{
    font-weight: normal;
    font-size: 20px;
    text-align: justify;
    color: #3B3B3B;
}
.w_get__inputs{
    margin-left: 100px;
    display: flex;
    flex-direction: column;
}
.w_get__inputs input{
    font-weight: normal;
    font-size: 20px;
    letter-spacing: 0.05em;
    color: #3B3B3B;
    padding: 22px 34px;
    overflow: auto;
    margin-bottom: 18px;
    border: none;
    background: #F4D78D;
    border-radius: 10px;
    width: 570px;
}
.w_get__inputs button{
    font-weight: 800;
    font-size: 20px;
    text-align: center;
    color: #3B3B3B;
    width: 341px;
    height: 69px;
    background: linear-gradient(180deg, #FAC344 -17.39%, rgba(226, 158, 0, 0.85) 382.61%);
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

.w_faq__title{
    font-weight: 800;
    font-size: 50px;
    color: #3B3B3B;
}
.w_faq_box-text{
    background: #F4D78D;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.05em;
    color: #3B3B3B;
}
.w_faq_box-button{
    background: #F7C03F;
}
.w_footer{
    background: #3B3B3B;
}
.r_header__body__inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: 1170px;
    flex-wrap: wrap-reverse;
}
.header__menu-adaptive{
    display: none;
}
.header__menu-img-a{
    display: none;
}
.header__body-text_text{
    max-width: 397px;
}
.faq_box-p{
    font-weight: normal;
    font-size: 20px;
    text-align: justify;
    color: #3B3B3B;
    margin-top: 10px;
    background: #F4D78D;
    border-radius: 20px;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
    height: 0;
    padding: 0;
    transition: all 500ms;
}
.faq_box-p p{
    display: none;

}

#faq_box-p-1.active{
    opacity: 1;
    height: auto;
    padding: 22px 50px;
    transition: 500ms;
    margin-bottom: 10px;
}
#faq_box-p-1.active p{
    display: block;
}
#faq_box-p-2.active{
    opacity: 1;
    height: auto;
    padding: 22px 50px;
    transition: 500ms;
    margin-bottom: 10px;
}
#faq_box-p-2.active p{
    display: block;
}
#faq_box-p-3.active{
    opacity: 1;
    height: auto;
    padding: 22px 50px;
    transition: 500ms;
    margin-bottom: 10px;
}
#faq_box-p-3.active p{
    display: block;
}
#faq_box-p-4.active{
    opacity: 1;
    height: auto;
    padding: 22px 50px;
    transition: 500ms;
    margin-bottom: 10px;
}
#faq_box-p-4.active p{
    display: block;
}
#faq_box-p-5.active{
    opacity: 1;
    height: auto;
    padding: 22px 50px;
    transition: 500ms;
    margin-bottom: 10px;
}
#faq_box-p-5.active p{
    display: block;
}
.faq_box-button p{
    margin: 0;
    transition: all 500ms;
    -webkit-transition: all 500ms;
}
#faq_box-button-1.active p{
    transform: rotate(45deg);
    transition: 500ms;
}
#faq_box-button-2.active p{
    transform: rotate(45deg);
    transition: 500ms;
}
#faq_box-button-3.active p{
    transform: rotate(45deg);
    transition: 500ms;
}
#faq_box-button-4.active p{
    transform: rotate(45deg);
    transition: 500ms;
}
#faq_box-button-5.active p{
    transform: rotate(45deg);
    transition: 500ms;
}
.n_refferal__circles{
    display: none;
}
.launch__text{
    max-width: 748px;
}
.launch__text p{
    max-width: 690px;
}
.launch__inner{
    max-width: 1180px;
    display: flex;
}
.launch__text button{
    background: linear-gradient(180deg, #2D9FD4 -17.39%, rgba(45, 159, 212, 0) 382.61%);
    border-radius: 10px;
    width: 380px;
    height: 70px;
    font-weight: 800;
    font-size: 20px;
    text-align: center;
    color: #FFFFFF;
    border: none;
    margin-top: 50px;
}
.n_refferal__inner{
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px 110px;
}
.n_refferal-text{
    font-weight: normal;
    font-size: 20px;
    text-align: justify;
    line-height: 26px;
    color: #095F96;
    margin-bottom: 50px;
}
.n_refferal__inner button{
    background: linear-gradient(180deg, #238DC2 29.71%, #2C9CD1 317.39%);
    border-radius: 10px;
    width: 570px;
    height: 69px;
    font-weight: 800;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    border: none;
}
#header__menu-a-img{
    display: none;
}
.w_item{
    background-color: #F6BE3D;
}
.launch__img{
    margin-left: 20px;
}
/* .tg_circles{
    position: absolute;
    bottom: -189px;
    left: 12%;
} */
.barcode_small{
    display: none;
}
.r_faq_box-p{
    background: linear-gradient(269.77deg, rgba(96, 86, 154, 0.15) -4.5%, rgba(96, 86, 154, 0) 168.94%);
    color: #60569A;
}
.t_faq_box-p{
    background: #D5ECF6;
    color: #095F96;
}
.slick-slide img{
    margin: 0 auto;
    height: 239px;
}
.slick-dots{
    width: auto;
    left: 45%;
    border-radius: 20px;
}
.slick-dots li{
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50px;
}


.t_flip-box:hover .flipper, .flip-container.hover .flipper
{
    transform: rotateY(180deg);
}
.flip-container 
{
    perspective: 1000;
}
.flipper 
{
    transition: 0.6s;
    transform-style: preserve-3d;
    position: relative;
    left: 0;
}
.front, .back 
{
    backface-visibility: hidden;
}
   
.front 
{
    position: absolute;
    top: 0;
    z-index: 2;
}
   
   
.back 
{
    transform: rotateY(180deg);
}

.t_flip-box{
    cursor: pointer;
    min-height: 515px;
}
.t_flip-box_w{
    width: 370px;
    height: 453px;
    background: #FFFFFF;
    box-shadow: 0px 32px 32px -8px rgb(0 0 0 / 8%), 0px 0px 32px -8px rgb(0 0 0 / 12%), 0px 0px 1px rgb(0 0 0 / 20%);
    border-radius: 20px;
    padding: 10px 12px 21px 12px;
}
.t_flip-box_w-blue{
    position: relative;
    width: 340px;
    min-height: 350px;
    background: #2D9FD4;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    justify-content: flex-end;
    overflow: auto;
    align-items: flex-end;
}
.t_flip-box_w-blue img{
    position: absolute;
    top: 105px;
    left: 105px;
}
.t_flip-box_subtitle{
    margin-top: 14px;
    font-weight: 600;
    font-size: 20px;
    color: #2D9FD4;
}
.t_flip-box_w p{
    font-weight: normal;
    font-size: 20px;
    color: #2D9FD4;
}
.t_flip-box_w-blue_users{
    font-weight: normal;
    font-size: 20px;
    color: #FFFFFF;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 82px;
    width: 100%;
}
.t_flip-box_w-blue-back{
    min-height: 417px;
    display: block;
}
.t_flip-box_w-blue-back p{
    font-weight: normal;
    font-size: 20px;
    color: #FFFFFF;
    max-width: 291px;
    max-height: 288px;
}
.t_flip-box_w-blue_users-back{
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 82px;
    width: 100%;
}
.t_flip__boxes{
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 1220px;
    padding: 0 10px;
    margin: 0 auto;
}
.t_header__body{
    position: relative;
}
#telegram_h_circles{
    position: absolute;
    top: -143px;
    z-index: -1;
    left: 0;
}
#tg_about_decoration-d_el{
    position: absolute;
    top: 0;
    right: 0;
}
.header__account{
    display: flex;
    align-items: center;
}
.header__account-nickname{
    font-size: 20px;
    color: #FFFFFF;
    margin-right: 24px;
    overflow: auto;
    max-width: 120px;
}



/* ----------------Личный кабинет----------------------- */


.pc_body{
    padding-top: 105px;
    padding-bottom: 100px;
}
.pc_menu button{
    width: 180px;
    height: 48px;
    text-align: center;
    padding: 12px;

    font-size: 16px;
    color: #095F96;
    border: none;
    border-radius: 8px;
}
.pc_order{
    background-color: #095F96;
    margin-bottom: 20px;
}
.pc_menu__nav{
    display: flex;
    flex-direction: column;
    margin-bottom: 187px;
}
.pc_menu__nav button{
    background-color: #FFFFFF;
}
.pc_body__inner{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.pc_item{
    height: 700px;
    overflow: auto;
    padding: 55px 35px 95px 50px;
    max-width: 996px;
    width: 100%;
    border: 5px solid #E7F0F5;
    border-radius: 12px;
    margin-left: 24px;
}
.pc_home__balance{
    max-width: 232px;
    width: 100%;
    padding: 24px 10px;
    background: #E7F0F5;
    border-radius: 12px;
    margin-right: 20px;
}
.pc_home__balance-num{
    font-weight: 600;
    font-size: 35px;
    text-align: center;
    color: #095F96;
}
.pc_home__balance p{
    margin: 5px 0 0 0 ;
    text-align: center;
    font-size: 16px;
    color: #095F96;
}
.pc_home__item{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}
.pc_home__nav{
    width: 100%;
}
.pc_home__nav-input{
    padding: 12px 60px 12px 20px;
    width: 100%;

    border: 1px solid #095F96;
    border-radius: 8px;
    margin-bottom: 20px;

    font-size: 16px;
    text-decoration-line: underline;
    color: #095F96;
}
.pc_home__nav-input::placeholder{
    font-size: 16px;
    text-decoration-line: underline;
    color: #095F96;
}
.pc_home__nav-input_copy{
    position: absolute;
    right: 10px;
    top: 6px;

    background: rgba(9, 95, 150, 0.1);
    border-radius: 8px;
    padding: 7px 17px;
    border: none;
}
.pc_home__nav-input:focus{
    border: 2px solid #095F96;
    border-radius: 8px;
    outline: none;
}
.pc_home__nav-copy{
    position: relative;
}
.pc_home__nav-btn{
    display: flex;
    align-items: center;
}
.pc_home__nav-btn button{
    width: 180px;
    height: 48px;
    padding: 12px;
    text-align: center;

    background: #095F96;
    border-radius: 8px;

    font-size: 16px;
    color: #FFFFFF;
    border: none;
    margin-right: 20px;
}
.pc_home__nav-btn input{
    width: 100%;
    border: none;
    background-color: transparent;

    
    font-size: 16px;
    color: #999CA0;
    padding: 12px 10px;
    border-radius: 8px;
}
.pc_home__nav-btn input:focus{
    /* border: 2px solid #095F96;
    border-radius: 8px; */
    outline: none;
}
.pc_home_text{
    font-size: 16px;
    color: #999CA0;
    margin-bottom: 80px;
}
.pc_home_ref-text{
    max-width: 260px;
    width: 100%;
    margin: 0 30px;
}
.pc_home_ref-text p{
    font-size: 14px;
    color: #999CA0;
}
.home_current-state{
    font-weight: 600;
    font-size: 35px;
    text-align: center;
    color: #095F96;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.home_current-state span{
    font-size: 16px;
    color: #095F96;
}
.pc_home_ref button{
    width: 212px;
    background: rgba(9, 95, 150, 0.1);
    border-radius: 8px;
    padding: 12px;

    text-align: center;
    font-size: 16px;
    color: #095F96;

    border: none;
}
.pc_home_ref{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pc_pay_table_row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.pc_pay_row-simillar{
    font-size: 16px;
    color: #095F96;
}
.pc_pay_row-simillar a{
    font-size: 16px;
    color: #095F96;
}
.pc_pay_row-profit{
    font-size: 20px;
    color: #095F96;
    max-width: 116px;
    width: 100%;
    margin-right: 10px;
}
.pc_pay_row-date{
    max-width: 144px;
    width: 100%;
    margin-right: 10px;
}
.pc_pay_row-client{
    max-width: 194px;
    width: 100%;
    margin-right: 10px;
}
.pc_pay_row-hash{
    max-width: 272px;
    width: 100%;
    margin-right: 10px;
    overflow: hidden;
}
.pc_pay_row-status{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 110px;
    width: 100%;
    margin-right: 10px;
}
.pc_pay_row-status img{
    margin-left: 8px;
}
.pc_pay_row-simillar-f{
    margin-right: 10px;
    font-size: 16px;
    color: #999CA0;
}
.pc_pay_table_row-f{
    margin-bottom: 30px;
}
.pc_ref_row-ID{
    max-width: 246px;
    width: 100%;
    margin-right: 10px;
}
.pc_ref_row-rank{
    max-width: 194px;
    width: 100%;
    margin-right: 10px;
}
.pc_ref_row-perc{
    max-width: 206px;
    width: 100%;
    margin-right: 10px;
}
.pc_ref_row-total_profit{
    max-width: 147px;
    width: 100%;
    margin-right: 10px;
}
.pc_ref_row-orders{
    max-width: 100px;
    width: 100%;
    margin-right: 10px;
}
.pc_how_title{
    font-size: 35px;
    color: #095F96;
    margin-bottom: 21px;
}
.pc_how_text{
    font-size: 16px;
    color: #095F96;
    white-space: pre-wrap;
}
#web-double__ellipse{
    position: absolute;
    top: 80px;
    right: 0;
}
.r_header__body{
    position: relative;
}
#ref-header-ell{
    position: absolute;
    bottom: -175px;
    left: 0;
    z-index: -1;
}
.ref__title{
    max-width: 775px;
}
#ref_decoration{
    position: absolute;
    right: 0;
    top: 0;
}
.t_chess{
    padding-top: 157px;
    padding-bottom: 200px;
}
.t_chess__box-1{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 180px;
}
.t_chess__box-text{
    max-width: 384px;
}
.t_chess__box-title{
    margin-bottom: 47px;
    font-weight: 800;
    font-size: 50px;
    color: #2D9FD4;
}
.t_chess__box-p{
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #2D9FD4;
}
.t_chess__box-boxes{
    max-width: 588px;
}
.t_chess__box-box{
    padding: 35px 50px;
    background: #F5F5F5;
    border-radius: 10px;
    margin-bottom: 20px;
}
.t_chess__box-title-b{
    margin-bottom: 15px;
}
.t_chess__box-2{
    display: flex;
    justify-content: space-between;
    align-items: center;
}



/* -----------------MODALS---------------------- */

.modals {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #161928c7;
    display: none;
    z-index: 11;
    overflow-y: auto;
    padding: 0 20px;
}
.modal{
    display: none;
    color: #ffffffbf;
    max-width: 792px;
    width: 100%;
    margin: auto;
    margin-top: 100px;
    position: relative;
    padding: 100px 50px;

    background: #FFFFFF;
    border: 5px solid #E7F0F5;
    box-shadow: 0px 32px 32px -8px rgba(0, 0, 0, 0.08), 0px 0px 32px -8px rgba(0, 0, 0, 0.12), 0px 0px 1px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.modals .close {
    position: absolute;
    right: 20px;
    top: 0;
    font-weight: 900;
    font-size: 50px;
    color: #ffffffa8;
    transform: rotate(45deg);
    cursor: pointer;
}
.modal input{
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 24px;
    border: 1px solid #095F96;
    border-radius: 8px;

    color: #095F96;
}
.modal input::placeholder{
    color: #999CA0;
}
.modal input:focus{
    border: 2px solid #095F96;
    border-radius: 8px;
    outline: none;
}
.modal_subtitle{
    font-size: 35px;
    line-height: 24px;
    color: #095F96;
    margin-bottom: 50px;
}
.modal_button-text{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal .modal_change-pass-p{
    font-size: 28px;
    line-height: 24px;
    color: #999CA0;
}
.modal_button-text p{
    font-size: 14px;
    line-height: 24px;
    color: #999CA0;
}
.regular_modal-btn{
    width: 180px;
    height: 48px;

    background: #095F96;
    border-radius: 8px;
    padding: 12px;
    border: none;

    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}
.modal_btn-underline{
    background: none;
    border: none;

    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-decoration-line: underline;
    color: #999CA0;
}
.modal_btn-underline a{
    background: none;
    border: none;

    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-decoration-line: underline;
    color: #999CA0;
}
.modal_subtitle-reg{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal_subtitle-reg p{
    margin: 0;
    font-size: 35px;
    line-height: 24px;
    text-align: right;
    color: #999CA0;  
}
.modal_input-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#reg_nick{
    width: 346px;
}
#reg_tel-id{
    width: 331px;
}
.modal_reg-box-form{
    width: 100%;
    height: auto;
    padding: 70px;
    border: 1px dashed #095F96;
    border-radius: 12px;
}
.modal_reg-box-form p{
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #095F96;
}
.modal .step2{
    display: none;
}

#reg_skip{
    width: 88px;
    height: 48px;
    padding: 12px;

    background: rgba(9, 95, 150, 0.1);
    border-radius: 8px;

    font-size: 16px;
    line-height: 24px;
    color: #095F96;
    border: none;
}
#reg_finish{
    height: 48px;
    padding: 12px;
    background: rgba(9, 95, 150, 0.1);
    border-radius: 8px;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    border: none;
    width: 212px;
    background: #095F96;
}
.finish{
    text-align: center;
    font-size: 19px;
    line-height: 24px;
    color: #095F96;
    margin-top: 30px;
}










.pc_logout-a{
    background: none;
    border: none;
    display: none;
}
.header__pc-menu{
    display: none;
}
.header__menu-btn-blue{
    display: block;
    margin-right: 23px;
    margin-bottom: 30px;
    height: 20px;
}
.header__menu-btn-blue.active{
    display: none;
}
.header__pc-menu-img{
    opacity: 0;
    transition: 0.2s;
    
}
.header__pc-menu-img.active{
    opacity: 1;
    transition: 2s;
}
.header__menu-btn{
    display: none;
}
.header__menu-btn-white.active{
    display: none;
}
.header__pc-menu{
    align-items: flex-end;
    z-index: 11;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    flex-direction: column;
    background-color: #FFFFFF;
    padding: 17px;
    height: 688px;
    padding-top: 37px;
    box-shadow: 0px 32px 32px -8px rgba(0, 0, 0, 0.08), 0px 0px 32px -8px rgba(0, 0, 0, 0.12);
    filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.2));
}
/* .header__pc-menu.active{
    display: flex;
} */
.header__pc-menu button{
    display: block;
    width: 100%;
    height: 48px;
    margin: 7px 0;
    border: none;
    background-color: #FFFFFF;
    border-radius: 8px;
    font-size: 14px;
    color: #095F96;
}
.header__pc-menu-img{
    position: absolute;
    bottom: 25px;
    left: 37%;
}

.pc_item-a{
    display: none;
    padding: 100px 35px 95px 50px;
    max-width: 996px;
    width: 100%;
    border: 5px solid #E7F0F5;
    border-radius: 12px;
}
.pc_item-a_top_box{
    padding: 26px 20px;
    background: #E7F0F5;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 267px;
    width: 100%;
    margin-right: 20px;
}
.pc_item-a_top_box_cross{
    width: 1px;
    height: 42px;

    background: #095F96;
}
.pc_item-a_top_box_main-num{
    font-weight: 500;
    font-size: 30px;
    text-align: center;
    color: #095F96;
}
.pc_item-a_top_box_text{
    font-weight: 400;
    font-size: 12px;
    color: #095F96;
}
.pc_item-a_top_box_text p{
    font-weight: 600;
    margin-top: 0;   
}
.pc_item-a_top_buttons{
    display: flex;
    flex-direction: column;
    max-width: 165px;
}
.pc_item-a_top_button{
    width: 155px;
    height: 41px;
    background: #E7F0F5;
    border-radius: 12px;
    padding: 12px 28px;

    font-size: 12px;
    color: #095F96;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pc_item-a_top_button-1{
    border: 1px solid #E7F0F5;
    background-color: transparent;
    margin-bottom: 12px;
}
.pc_item-a_top_button-cross{
    width: 1px;
    height: 23px;
    background: #095F96;
    opacity: 0.5;
}
.pc_item-a_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 20px;
    margin-bottom: 40px;
}
.pc_item-a_mid-gray_text{
    font-size: 14px;
    color: #999CA0;
}
.pc_item-a_mid-underline_text button{
    border: none;
    background: #E7F0F5;
    border-radius: 5px;
    padding: 6px;
    margin-left: 10px;
}
.pc_item-a_mid-underline_text{
    font-size: 12px;
    text-decoration-line: underline;
    color: #095F96;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.pc_item-a_mid-underline_text-i{
    text-decoration: none;
}
.pc_item-a_bot-box{
    padding: 13px 50px;
    background: #E7F0F5;
    border-radius: 12px;
    width: 160px;
    margin-right: 20px;
}
.pc_item-a_bot-boxes{
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pc_item-a_bot-state_title{
    font-size: 14px;
    color: #999CA0;
    margin-bottom: 20px;
}
.pc_item-a_bot-state-order{
    font-size: 14px; 
    color: #095F96;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pc_item-a_bot-state-order p{
    font-weight: 600;
    margin: 0;
}
.pc_item-a_bot_upgrade a{
    font-size: 14px;
    text-decoration-line: underline;
    color: #095F96;
    margin-top: 30px;
}
#ref-span-a{
    display: none;
}
#hash-id-a{
    max-width: 46px;
    padding: 7px 16px;
    background: rgba(9, 95, 150, 0.1);
    border-radius: 8px;
    display: none;
}
.pc_guides_box{
    border-radius: 12px;
    /* background-image: url(../images/guid-1920.svg); */
}
#guid-barcode{
    position: absolute;
    right: 20px;
    top: 20px;
}
.pc_guides_box-title{
    font-weight: 500;
    font-size: 35px;
    color: #095F96;
    margin: 45px 0 25px;

}
.pc_guides_box button{
    background: transparent;
    border: none;
}
.guid-paragraph{
    font-size: 16px;
    line-height: 24px;
    color: #095F96;
}
#guid-button.active{
    transform: rotate(180deg);
    transition: 1s;
}
.pc_guides_item{
    padding-bottom: 50px;
    margin-bottom: 25px;
    max-width: 892px;
    width: 100%;
}
#img-guid{
    max-width: 893px;
    width: 100%;
    height: auto;
}
.guid-paragraph-bot{
    width: 100%;
    display: flex;
    justify-content: flex-end;
}



/* полоса прокрутки (скроллбар) */
.pc_item::-webkit-scrollbar {
    width: 4px; /* ширина для вертикального скролла */
    height: 4px; /* высота для горизонтального скролла */
    background-color: transparent;
}

/* ползунок скроллбара */
.pc_item::-webkit-scrollbar-thumb {
    background-color: #095F96;
    /* box-shadow: inset 1px 1px 10px #f3faf7; */
    border-radius: 15px;
    border: none;
}

.pc_item::-webkit-scrollbar-thumb:hover {
    background-color: #253861;
}

/* Стрелки */

.pc_item::-webkit-scrollbar-button:vertical:start:decrement {
    background: linear-gradient(120deg, #02141a 40%, rgba(0, 0, 0, 0) 41%),
    linear-gradient(240deg, #02141a 40%, rgba(0, 0, 0, 0) 41%),
    linear-gradient(0deg, #02141a 30%, rgba(0, 0, 0, 0) 31%);
    background-color: #f6f8f4;
    display: none;
}

.pc_item::-webkit-scrollbar-button:vertical:end:increment {
    background:
        linear-gradient(300deg, #02141a 40%, rgba(0, 0, 0, 0) 41%),
        linear-gradient(60deg, #02141a 40%, rgba(0, 0, 0, 0) 41%),
        linear-gradient(180deg, #02141a 30%, rgba(0, 0, 0, 0) 31%);
    background-color: #f6f8f4;
    display: none;
}

.pc_item::-webkit-scrollbar-button:horizontal:start:decrement {
    background:
        linear-gradient(30deg, #02141a 40%, rgba(0, 0, 0, 0) 41%),
        linear-gradient(150deg, #02141a 40%, rgba(0, 0, 0, 0) 41%),
        linear-gradient(270deg, #02141a 30%, rgba(0, 0, 0, 0) 31%);
    background-color: #f6f8f4;
    display: none;
}

.pc_item::-webkit-scrollbar-button:horizontal:end:increment {
    background:
        linear-gradient(210deg, #02141a 40%, rgba(0, 0, 0, 0) 41%),
        linear-gradient(330deg, #02141a 40%, rgba(0, 0, 0, 0) 41%),
        linear-gradient(90deg, #02141a 30%, rgba(0, 0, 0, 0) 31%);
    background-color: #f6f8f4;
    display: none;
}


.pc_set-first_text{
    font-size: 20px;
    line-height: 24px;
    color: #999CA0;
    margin-bottom: 20px;
}
.pc_set-box-inter{
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pc_set-box-inter input{
    overflow-x: auto;
    margin-right: 24px;
    width: 100%;
    height: 48px;

    border: 1px solid #095F96;
    border-radius: 8px;

    font-size: 16px;
    color: #095F96;
    padding: 12px 20px;
}
.pc_set-box-inter input::placeholder{
    font-size: 16px;
    color: #095F96;
}
.pc_set-box-inter input:focus{
    outline: none;
    border: 3px solid #095F96;
    border-radius: 8px;
}
.pc_set-box-inter button{
    width: 180px;
    height: 48px;
    background: rgba(9, 95, 150, 0.1);
    border-radius: 8px;
    border: none;
    padding: 12px 20px;

    font-size: 16px;
    line-height: 24px;
    color: #095F96;
}
.pc_set-box_change{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pc_set-box_change-btn{
    width: 246px;
    height: 47px;
    position: relative;

    background: rgba(9, 95, 150, 0.1);
    border-radius: 8px;
    border: none;
    padding: 11px 20px;
    text-align: start;

    font-size: 16px;
    line-height: 24px;
    color: #095F96;
    margin-right: 20px;
}
.pc_set-box_change-btn img{
    position: absolute;
    top: 11px;
    right: 20px;
}



.pc-hover-btn-blue button:hover{
    transition: all 0.4s;
    background: #1E84C4
}
.pc-hover-btn-blue-m:hover{
    transition: all 0.4s;
    background: #1E84C4
}
.pc-hover-btn-blue button:focus{
    transition: all 0.2s;
    background: #025183;
}
.pc-hover-btn-blue-m:focus{
    transition: all 0.2s;
    background: #025183;
}

.pc-hover-btn-gray:hover{
    transition: all 0.4s;
    background: rgba(57, 133, 181, 0.1);
    color: #3282B5;
}
.pc-hover-btn-gray:focus{
    transition: all 0.2s;
    background: #9FC7E0;
    color: #095F96;
}
.menu-btn:hover{
    transition: all 0.4s;
    color: #559ECB;
}
.menu-btn:focus{
    transition: all 0.2s;
    color: #095F96;
    background: rgba(9, 95, 150, 0.1);
}
.pc_item-home{
    overflow: hidden;
}
#login{
    font-weight: 800;
    width: 181px;
    height: 48px;
    background-color: #FFFFFF;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    line-height: 24px;
}
.modal_register-check{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    line-height: 24px;
    color: #999CA0;
}
.modal_register-check input{
    width: auto;
    padding: 0;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
    border: none;
    border-radius: 8px;
    color: #095F96;
    margin-right: 15px;
}
/* .w_services{
    margin: 0 auto;
    max-width: 1170px;
    padding: 100px 20px 45px;
}
.w_services__title{
    font-weight: 800;
    font-size: 50px;
    line-height: 61px;
    color: #3B3B3B;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
.w_services__title p{
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #3B3B3B;
}
.w_services__box{
    padding: 15px 15px 21px 15px;
    width: 384px;
    height: 453px;
    background: #FFFFFF;
    box-shadow: 0px 32px 32px -8px rgba(0, 0, 0, 0.08), 0px 0px 32px -8px rgba(0, 0, 0, 0.12), 0px 0px 1px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}
.w_services__box-box{
    background: #F7BF3E;
    border-radius: 20px;
    width: 352px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
} */

.t_flipbox-switch{
    width: 180px;
    height: 104px;

    border: 6px solid #C3E7F6;
    background: #FFFFFF;
    border-radius: 114.85px;
    transform: matrix(0, 1, 1, 0, 0, 0);
    position: relative;
}
.t_flipbox-switch img{
    cursor: pointer;
    position: absolute;
    top: -1px;
    left: -6px;
}
#t_switch-msg{
    z-index: 11;
    opacity: 0;
    transition: all 0.6s;
}
#t_switch-msg.active{
    left: 71px;
    opacity: 1;
    transition: all 0.6s;
}
#t_switch-tg{
    z-index: 11;
    opacity: 1;
    transition: all 0.6s;

}
#t_switch-tg.active{
    left: 32px;
    opacity: 0;
    transition: all 0.6s;
}
.t_flipbox-switch p{
    position: absolute;
    z-index: 5;
    
    font-size: 16px;
    line-height: 20px;
    color: #2D9FD4;
    transform: matrix(0, 1, 1, 0, 0, 0);
}
#t_switch-p-forum{
    left: 105px;
    top: 20px;
    opacity: 1;
    transition: all 0.4s;
}
#t_switch-p-forum.active{
    opacity: 0;
    transition: all 0.4s;
}
#t_switch-p-teleg{
    opacity: 0;
    left: 5px;
    top: 20px;
    transition: all 0.4s;
}
#t_switch-p-teleg.active{
    opacity: 1;
    transition: all 0.4s;
}
.t_flip-box_w-blue-empty{
    background-color: #2D9FD4;
    opacity: 0.2;
}
.t_flip-box_w-blue-back-empty{
    background-color: #2D9FD4;
    opacity: 0.2;
}
.t_flip__boxes-2{
    display: none;
}
.t_flip__boxes-2.active{
    display: flex;
}
.t_flip__boxes-1{
    display: flex;
}
.t_flip__boxes-1.active{
    display: none;
}
.t_about__button{
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.t_about__button button{
    width: 180px;
    height: 48px;
    background: #FFFFFF;
    border-radius: 8px;

    font-size: 20px;
    line-height: 24px;
    color: #2D9FD4;
    border: none;
}
#t_faq-request{
    width: 282px;
    height: 48px;

    background: rgba(9, 95, 150, 0.1);
    border-radius: 8px;
    border: none;

    font-size: 20px;
    line-height: 24px;
    color: #2D9FD4;
    margin-right: 25px;
}
#t_faq-order{
    width: 180px;
    height: 48px;
    background: #2D9FD4;
    border-radius: 8px;
    border: none;

    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
}
.faq__buttons{
    display: flex;
    margin-left: 20px;
}
.t_chess__box-img-a{
    display: none;
}

#fctfb-2{
    top: 86px !important;
    left: 65px;
    height: 12px;
}
#imgfl6{
    top: 160px;
}
.t_body__bottom_title{
    overflow: hidden;
}
.t_faq__contact-btn p{
    color: #999CA0;
}
.t_flip-box_w-yellow{
    background-color: #F7BF3E;
}
.t_flip-box_w-yellow-back{
    background-color: #F7BF3E;
}
.w_flip-box_w p{
    color: #3B3B3B;
}
.w_flip-box_subtitle{
    color: #3B3B3B;
}
.w_body__bottom_title p{
    max-width: 669px;
}
.w_body__bottom_title{
    color: #3B3B3B;
    max-width: 1200px;
}
.t_flip-box_w-yellow-back p{
    color: #3B3B3B;
}
.w_body__bottom_title-p{
    font-weight: 600;
    font-size: 20px;

    color: #3B3B3B;
}
.w_body__bottom_title .w_item__title{
    font-size: 50px;
}
.t_flip-box_w-orange{
    background: #FFE6AB;
    /* opacity: 0.3; */
}
.t_flip-box_w-orange-back{
    background: #FFE6AB;
}
.make_order-row_name{
    max-width: 162px;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    color: #2D9FD4;
}
.make_order-row_value{
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #2D9FD4;
    width: 55px;
    height: 27px;
    background: #EAF5FB;
    border-radius: 8px;
}
.make_order-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
.modal #make_order-input{
    position: relative;
    z-index: 3;
    width: 285px;
    margin: 0;
    padding: 0;
    height: 6px;
}
.modal .make_order-row_checkbox input[type=checkbox]{
    margin: 0;
    padding: 0;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

input[type=range] {
    height: 6px;
    margin: 0;
    padding: 0;
    -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
    width: 100%; /* Specific width is required for Firefox. */
    background: linear-gradient(90deg, #EAF5FB 0%, #68BEE7 100.7%);
    border-radius: 10px;
    border: none;
}
  
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
  }
  
input[type=range]:focus {
    background-color: red;
    border: none;
    outline: none; /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
}
  
input[type=range]::-ms-track {
    width: 100%;
    cursor: pointer;
  
    /* Hides the slider so custom styles can be added */
    background: transparent; 
    border-color: transparent;
    color: transparent;
}
  /* Special styling for WebKit/Blink */
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    position: relative;
    z-index: 99;
    background: #2D9FD4;
    border-radius: 100px;

    cursor: pointer;
}
  
  /* All the same stuff for Firefox */
input[type=range]::-moz-range-thumb {
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    width: 10px;
    height: 10px;

    background: #2D9FD4;
    border-radius: 100px;

    cursor: pointer;
}
  
  /* All the same stuff for IE */
input[type=range]::-ms-thumb {
    z-index: 11;
    width: 10px;
    height: 10px;

    background: #2D9FD4;
    border-radius: 100px;

    cursor: pointer;
}
.make_order-row_input{
    position: relative;
    display: none;
    max-width: 285px;
    width: 100%;
}
.make_order-input-start{
    z-index: 1;
    position: absolute;
    left: 0;
    top: 5px;
    width: 11px;
    height: 11px;
    border-radius: 100px;


    background: #E8F5FB;
}
.make_order-input-end{
    z-index: 1;
    position: absolute;
    right: 0;
    top: 5px;
    width: 11px;
    height: 11px;
    border-radius: 100px;

    background: #6DC1E8;
}
.make_order-input-start-text{
    position: absolute;
    bottom: -30px;
    left: -13px;
    font-size: 16px;
    line-height: 24px;

    color: #B0DBEE;
}
.make_order-input-end-text{
    position: absolute;
    bottom: -30px;
    right: -13px;
    font-size: 16px;
    line-height: 24px;

    color: #B0DBEE;
}


output{ 
    position: absolute;
    /* width: 40px; 
    height: 30px;  */
    text-align: center; 

    display: inline-block; 


    font-size: 16px;
    line-height: 24px;
    color: #2D9FD4;

    top: -20px;
    left: 0;
    margin-left: -1%;
}
form { 
    position: relative; 
    margin: 0;
}

.make_order-title_b{
    font-size: 35px;
    line-height: 24px;
    color: #2D9FD4;
}
.make_order-title_g{
    font-size: 35px;
    line-height: 24px;
    color: #999CA0;
}
.make_order-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
.modal .make_order-title-inputs{
    display: flex;
    justify-content: space-between;
}
.modal .make_order-title-inputs input{
    width: 329px;
    margin-bottom: 35px;
}

#make_order-input-1.active{
    display: block;
}
#make_order-input-2.active{
    display: block;
}
#make_order-input-3.active{
    display: block;
}
#make_order-input-4.active{
    display: block;
}
#make_order-input-5.active{
    display: block;
}
#make_order-input-6.active{
    display: block;
}
.modal .make_order-title_bottom .make_order-title_g{
    text-align: right;
}
.make_order-bottom_rows{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.make_order-bottom_row{
    display: flex;
    justify-content: space-between;
    align-items: center;
}   
.make_order-title_bottom{
    margin-bottom: 50px;
}
.make_order-row_name-bot{
    margin-right: 30px;
}
.modal.make_order .make_order-input_bottom textarea{
    font-size: 16px;
    line-height: 24px;
    color: #095F96;

    margin: 18px 0 30px;
    padding: 25px;
    width: 100%;
    border: 3px solid #EAF5FB;
    border-radius: 12px;
    min-height: 200px;
    overflow-y: auto;
    display: flex;
    align-content: flex-start;
    resize: none;
}
.modal.make_order .make_order-input_bottom textarea:focus{
    outline: none;
    border: 5px solid #EAF5FB;
    border-radius: 12px;
}
.make_order-button_bottom button{
    border: none;
    width: 180px;
    height: 48px;

    background: #2D9FD4;
    border-radius: 8px;

    font-size: 16px;
    line-height: 24px;

    color: #FFFFFF;
}
.make_order-button_bottom p{
    font-size: 16px;
    line-height: 24px;
    color: #999CA0;
}
.make_order-button_bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ---------------------INDEX------------------------- */

.i_header__body-text{
    max-width: 494px;
}
.i_header__body-text-title{
    font-weight: 800;
    font-size: 40px;
    letter-spacing: 0.02em;
    color: #095F96;
}
.i_header__body-text-title span{
    font-size: 133px;
}
.i_header__body-text-buttons{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.i_header__body-text-buttons button{
    width: 100%;
    border: none;
    cursor: pointer;
    height: 55px;
    left: 360px;
    top: 700px;

    background: rgba(9, 95, 150, 0.1);
    border-radius: 8px;
    font-weight: 600;
    font-size: 20px;
    color: #095F96;
}

.i_header__body-text-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    margin-top: 20px;
}
.i_header__body-text-box button{
    cursor: pointer;
    border: none;
    width: 100%;
    height: 55px;
    left: 360px;
    top: 625px;
    background: rgba(9, 95, 150, 0.1);
    border-radius: 8px;

}
.i_header__body{   
    /* position: relative; */
}
.i_header__body__inner{
    padding: 261px 0 216px 0;
    position: relative;
}
.i_header__body img{
    position: absolute;
    top: 58px;
    right: 16px;
}
#i_header__body-btn1{
    margin-right: 14px;
}
.i_about{
    background: #095F96;
    padding: 80px 0;
}
.i_about__title{
    font-weight: 800;
    font-size: 50px;
    line-height: 61px;
    color: #FFFFFF;
}
.i_about__inner p{
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
}
.i_about__button{
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.i_about__button button{
    width: 219px;
    height: 48px;

    border: 2px solid #FFFFFF;
    border-radius: 8px;

    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #FFFFFF;

    background: none;
    cursor: pointer;
    margin-top: 22px;
}
.i_reason__title{
    margin-bottom: 40px;
    font-weight: 800;
    font-size: 50px;
    line-height: 61px;
    color: #095F96;
}
.i_reason__subtitle{
    font-weight: bold;
    font-size: 20px;
    line-height: 26px;
    color: #095F96;
}
.i_reason__box p{
    font-size: 20px;
    line-height: 26px;
    color: #095F96;
}
.i_reason{
    padding: 200px 0;
}
.i_reason__inner{
    display: flex;
    justify-content: space-between;
}
.i_reason__box{
    padding: 38px 26px 24px;
    max-width: 382px;
    border-radius: 8px;
}
.i_reason__boxes-group{
    display: flex;
}
#i_reason__box-1{
    margin-right: 40px;
    background: #E7F0F5;
}
.i_reason__inner img{
    margin-right: 30px;
}
.i_reason__box-large{
    max-width: none;
    width: 100%;
}
.i_dream{
    padding-bottom: 200px;
}
.i_dream__inner{
    display: flex;
    justify-content: space-between;
}
.i_dream__box{
    margin-right: 40px;
    max-width: 690px;
}
.i_dream__box button{
    width: 384px;
    height: 48px;

    background: #095F96;
    border-radius: 8px;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    border: none;
}
.i_dream__box p{
    font-size: 20px;
    line-height: 140%;
    color: #095F96;
}
.re_header__body__inner{
    padding: 225px 0;
    position: relative;
}
.re_header__body-text{
    max-width: 609px;
}
.re_header__body-title{
    font-weight: 800;
    font-size: 100px;
    line-height: 122px;
    color: #095F96;
}
.re_header__body-text button{
    margin-top: 40px;
    width: 50%;
    height: 69px;

    background: #095F96;
    border-radius: 10px;

    font-weight: 800;
    font-size: 20px;
    line-height: 130.69%;
    text-align: center;
    color: #FFFFFF;
    border: none;
}
.re_header__body__inner img{
    position: absolute;
    top: 80px;
    right: 0;
}
.re_what{
    background: #095F96;
}
.re_what__inner{
    position: relative;
    padding: 140px 0 100px;
}
.re_what__inner img{
    position: absolute;
    top: 150px;
    right: 0;
}
.re_what__title{
    font-weight: 800;
    font-size: 100px;
    line-height: 122px;
    color: #FFFFFF;
    max-width: 723px;
}
.re_what__inner p{
    margin-top: 40px;
    font-size: 20px;
    line-height: 140%;
    text-align: justify;
    color: #FFFFFF;
}
.re_how{
    padding: 110px 0;
}
.re_how__inner{
    display: flex;
    justify-content: space-between;
}
.re_how__box-title{
    font-weight: 800;
    font-size: 50px;
    color: #095F96;    
    margin-bottom: 20px;
}
.re_how__box{
    max-width: 340px;
}
.re_how__box p{
    font-size: 20px;
    line-height: 130.69%; 
    text-align: justify;
    color: #3B3B3B;    
}
.re_we__inner p{
    font-size: 20px;
    line-height: 130.69%;
    text-align: justify;
    color: #3B3B3B;
}
.re_we{
    padding-bottom: 150px;
}
.re_we__inner p span{
    font-weight: 600;
}
.re_more__inner{
    display: flex;
    justify-content: space-between;
    margin-bottom: 150px;
}
.re_more__box{
    max-width: 588px;
}
.re_how__box-title p{
    font-size: 20px;
    line-height: 130.69%;
    text-align: justify;
    color: #3B3B3B;
    font-weight: normal;
}
.re_more__box-item{
    padding: 20px 47px;
    border: 4px solid #E7F0F5;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 282px;
    width: 100%;
    margin: 10px;
}
.re_more__box-item-l{
    max-width: 64px;
}
.re_more__box-item-l p{
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: #095F96;
    margin: 10px 0 0 0;
}
.re_more__box-item-r{
    font-weight: 600;
    font-size: 30px;
    line-height: 130.69%;
    text-align: center;
    color: #095F96;
}
.re_more__box-items{
    display: flex;
    justify-content: space-between;
}
#re_more-adaptive{
    display: none;
}
.re_more__box button{
    width: 279px;
    height: 48px;
    border: none;
    background: #095F96;
    border-radius: 8px;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    margin-top: 40px;
    margin-left: 10px;
}
.modal.change_pass .step2{
    display: none;
}
.step2 p{
    text-align: center;
    margin-top: 40px;
    font-size: 28px;
    color: #3B3B3B;
    margin-bottom: 50px;
}
.pc_item-ver{
    max-width: 1200px;
    width: 100%;
    height: 923px;
    max-width: none;
    margin: 0 auto;
    padding-top: 140px;
}
.ver_box p{
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #095F96;
    margin: 80px 0 40px;
}
.ver_box button{
    width: 212px;
    height: 48px;

    background: #095F96;
    border-radius: 8px;
    border: none;

    font-size: 16px;
    color: #FFFFFF;
    margin: 7px 0;
}
.ver-gray-text{
    margin-top: 40px;
    font-size: 14px;
    line-height: 24px;
    color: #999CA0;
    display: inline-block;
}
.ver_box .ver_gray-span{
    padding: 0;
    background: none;
    width: auto;
    height: auto;
    font-weight: 600;
    font-size: 16px;
    text-decoration-line: underline;
    color: #999CA0;
    margin: 0;
    display: inline-block;
}
.ver_box{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal_regular-gray-text{
    font-size: 18px;
    line-height: 133%;
    color: #999CA0;
    margin: 30px 0;
}
.modal_withdraw-input_btn{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal_withdraw-input_btn input{
    margin-bottom: 0;
    height: 48px;
}
.modal_withdraw-input_btn button{
    margin-left: 20px;
    height: 48px;
}
.withdraw_ea-main {
    font-weight: 500;
    font-size: 12px;
    line-height: 200%;
    color: #999CA0;
    margin: 0;
    margin-bottom: 30px;
}
.modal_withdraw-status{
    display: inline-block;
    font-weight: 500;
    font-size: 18px;
    line-height: 133%;
    color: #999CA0;
}
.modal_withdraw-status_accepted{
    display: inline-block;
    color: #095F96;
    display: none;
}
.modal_withdraw-status_declined{
    color: #FF0000;
    display: inline-block;
    display: none;
}
.webdev_button:hover{
    background: linear-gradient(180deg, #FED066 -17.39%, rgba(226, 158, 0, 0.85) 382.61%);
}
.webdev_button:focus{
    background: linear-gradient(180deg, #F7B00C -17.39%, rgba(226, 158, 0, 0.85) 240.94%);
}


.i_timer{
    font-weight: 800;
    font-size: 50px;
    color: #FFFFFF;
    top: 515px;
    right: 181px;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 287px;
    position: absolute;
    text-align: center;
}
.i_timer p{
    font-weight: 300;
    font-size: 20px;
    color: #FFFFFF;
    margin: 0;
}
