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


body{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: normal;
    background: #FFFFFF;
}

.container{
    width: 100%;
    padding: 0 10px;
}
.header{
    padding-top: 30px;
}
.header__menu-block.adaptive{
    width: fit-content;
    margin: 20px auto;
}
.header__menu{
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 53px;
    z-index: 3;
}
.header__menu-block{
    cursor: pointer;
}
.header__menu-row{
    height: 3px;
    width: 25px;
    background-color: #5E80FF;
    margin-bottom: 5px;
}
.header__title{
    font-weight: 900;
    font-size: 50px;
    line-height: 61px;
    text-align: center;
    color: #1453A6;
    max-width: 872px;
    margin: 0 auto 46px;
}
.header__input{
    margin: 0 auto 35px;
    max-width: 920px;
    width: 100%;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #1453A6;
    background: #E3EBFF;
    border-radius: 60px;
    height: 69px;
    overflow: hidden;
    outline: none;
    border: none;
}
.header__input::-webkit-input-placeholder {
    color: #1453A6;
}
.header__input:focus::-webkit-input-placeholder {
    color: transparent
}
.header__button{
    background: #6787FF;
    border-radius: 54px;
    width: 246px;
    height: 69px;
    border: none;

    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
}
.header__button:hover{
    background: #4161D9;
}
.header__button:focus{
    color: #5E80FF;
    border: 6px solid #5E80FF;
    background-color: transparent;
}
.header__menu-links{
    max-width: 435px;
    width: 100%;
    padding: 60px 40px 20px;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #6082FF;
    z-index: 1;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.header__menu-links-l{
    list-style-type: none;
}
.header__menu-links-l li{
    max-width: 309px;
    margin: 20px auto;
    padding-left: 35px;
    background-image: url(../images/li.svg);
    background-position: 7px 15px;
    background-size: 7px 7px;
    background-repeat: no-repeat;
}
.header__menu-links-l a{
    font-weight: bold;
    font-size: 30px;
    color: #FFFFFF;
}
.header__menu-logo{
    width: 250px;
    height: 40px;
    background-image: url(../images/logo-left.svg);
    margin: 0px auto 50px;
    opacity: 1;
}
.header__logo{
    transition: all .7s cubic-bezier(0.215, 0.610, 0.355, 1);
}
.header__logo.hidden{
    opacity: 0;
}


.flexboxes{
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flexboxes__box{
    padding: 70px 50px 50px 40px;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.flexboxes__box-title{
    font-weight: normal;
    font-size: 48px;
    line-height: 81px;
    color: #FFFFFF;
    margin: 7px 0;
}
.items{
    padding: 30px 0;
}
.items__boxes{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.items__box{
    max-width: 307px;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 15px auto;
}
.item__box-title{
    font-weight: 800;
    font-size: 18px;
    text-align: center;
    color: #1453A6;
}
.items__box p{
    max-width: 182px;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    color: #ADB3CB;
    margin: 30px auto 10px;
}
.flexboxes__boxes{
    display: flex;
    
}
.operations{
    padding: 70px 0;
}
.operations__title{
    font-weight: 900;
    font-size: 50px;
    text-align: center;
    color: #1453A6;
}
.operations__title p{
    margin: 10px auto 60px;
    max-width: 540px;
    font-weight: 500;
    font-size: 18px;  
    text-align: center;
    color: #ADB3CB;
}
.operations__buttons{
    max-width: 470px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 30px auto;
}
.operations__button{
    padding: 12px 26px;
    margin: 15px auto;
    cursor: pointer;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    height: 56px;
    transition: .4 background-color cubic-bezier(0.77, 0, 0.175, 1);
}
.operations__button-l.active{
    color: #FFFFFF;
    background: #5F81FF;
    border-radius: 60px 0 0 60px;
}
.operations__button-r{
    color: #5F81FF;
    width: 231px;
    height: 56px;
    border: 5px solid #6082FF;
    border-radius: 0 60px 60px 0;
}
.operations__table{
    max-width: 865px;
    width: 100%;
    margin: 20px auto;
}
.operations__table-title{
    font-weight: 800;
    font-size: 18px;
    text-align: center;
    color: #1453A6;
}
.operations__table-title_item{
    max-width: 163px;
    width: 100%;
}
.operations__table-row{
    font-weight: 500;
    font-size: 18px;    
    text-align: center;
    color: #ADB3CB;
}
.operations__table-row td{
    padding: 7px 13px;
}

.operations__table-deposits{
    display: none;
}
.operations__table-payouts{
    display: none;
}
.operations__table-deposits.active{
    display: table;
}
.operations__table-payouts.active{
    display: table;
}
.operations__button-l{
    padding: 12px 26px;
    color: #5F81FF;
    border: 5px solid #6082FF;
    background-color: #FFFFFF;
    cursor: pointer;
    margin: 15px auto;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    border-radius: 60px 0 0 60px;
}
.operations__button-r.active{
    padding: 12px 26px;
    color: #FFFFFF;
    background: #5F81FF;
}

.faqs__questions{
    width: 100%;
    margin: 10px auto;
    cursor: pointer;
}
.faqs__question-b{
    width: 100%;
    padding: 39px 87px;
    background: #5F81FF;
    border-radius: 25px;
    font-size: 30px;
    color: #FFFFFF;
    text-align: center;
    margin: 30px auto;
}
.faqs__question-w{
    width: 100%;
    padding: 39px 87px;
    border-radius: 25px;
    font-size: 30px;
    color: #1553A7;
    text-align: center;
    margin: 30px auto;
}
.faqs__question-b.active{
    transition: 1s;
    color: #1553A7;
    background-color: transparent;
}
.accept{
    padding: 100px 0 0;
}
.accept__images{
    margin: 0 auto;
    max-width: 1170px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.accept__images img{
    margin: 20px auto;
}

.contact{
    padding: 100px 0 0;
}
.contact__inner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact__inner a{
    font-weight: 500;
    font-size: 30px;
    color: #1553A7;
    text-align: center;
    padding-bottom: 30px;
    margin-top: 20px;

}


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