@import url('https://fonts.googleapis.com/css2?family=Martian+Mono:wght@100..800&display=swap');
html{
    height: 100%;
    width: 100%;
    margin: 0;
    -webkit-overflow-scrolling:touch;
}
body{
    margin: 0;
    color: #000000;
    font-size: 14px;
    line-height: 1.2;
    font-family: "Martian Mono", monospace;
    position: relative;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    background: #F2F2F2;
    min-height: 100%;
    min-width: 320px;
    height: 100vh;
}
html,body{
    touch-action: manipulation;
}
body.noscroll {
    overflow: hidden;
}
p {
    font-weight: 500;
    font-size: 15px;
    line-height: normal;
    color: #2f1f57;
    margin: 0;
}
p:last-child{
    margin-bottom: 0px;
}
img{
    display: block;
    max-width: 100%;
}
a {
    outline: none;
    text-decoration: underline;
}
a:hover {
    text-decoration: none;
}
ul{
    padding: 0;
    margin: 0;
}
li{
    list-style: none;
}
/*== buttons
---------------------------------*/
button{
    margin:0;
    padding:0;
    border:none;
    background:none;
    cursor:pointer;
    overflow:visible;
    width:auto;
    outline: none;
    box-shadow: none;
    font-family: inherit;
}
button:hover , button:focus , button:active{
    outline: none;
    text-decoration: none;
}


/*== inputs
---------------------------------*/
input{
    outline: none;
    border: none;
    font-family: inherit;
}
textarea{
    height: 80px;
    outline: none;
    font-family: inherit;
}
textarea{
    height: 80px;
    outline: none;
    resize: none;
}

/* End Total css ====*/
.container{

}
*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.b-container{
    max-width: 1200px;
    margin: 0 auto 0;
}
/* -------------- page index -------------- */
.header{
    background: #0c38fb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
    display: block;
}
.header__nav ul li a , .header__btn{
    display: block;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.65;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition: 0.2s;
}
.header__nav ul li a:hover , .header__nav ul li a.active{
    font-weight: 700;
}
.header__btn{
    display: none;
}
.p-32{
    padding: 32px;
}
.mb-8{
    margin-bottom: 8px;
}
.header__menu{
    display: none;
}
/* -------------- section -------------- */
.section{
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 24px 0;
}
.section_blue{
    background: #0c38fb;
}
.section__title{
    font-weight: 400;
    font-size: 22px;
    line-height: 1.65;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0c38fb;
}
.section_blue .section__title{
    color: #fff;
}
.section_blue p{
    color: #fff;
}
p{
    font-weight: 400;
    font-size: 18px;
    line-height: 1.65;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0c38fb;
}
/* -------------- footer -------------- */
.footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright{
    font-weight: 400;
    font-size: 22px;
    line-height: 1.65;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
}
.footer__link{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0 40px;
}
.footer__link a{
    font-weight: 400;
    font-size: 22px;
    line-height: 1.65;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition: 0.2s;
}
.footer__link a:hover{
    font-weight: 700;
}
/* -------------- services -------------- */
.wrapper{
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    gap: 0 8px;
}
.wrapper .section{
    width: 50%;
}
.wrapper .section__title{
    padding-bottom: 24px;
    border-bottom: 2px solid #0c38fb;
}
.faq{
    display: block;
}
.faq__top{
    display: flex;
    justify-content: space-between;
    align-content: flex-start;
    cursor: pointer;
    gap: 0 16px;
}
.faq__top-btn{
    width: 36px;
    height: 36px;
    background: url("../img/plus.svg") center no-repeat;
    flex-shrink: 0;
    transition: 0.2s;
}
.faq.active .faq__top-btn{
    transform: rotate(45deg);
}
.faq__top-wrap{
    display: flex;
    flex-direction: column;
    gap: 24px 0;
}
.faq__top-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq__top-container p:first-child{
    margin-top: 24px;
}

.section_last .section__title{
    border: none;
    padding: 0;
}
.section_last img{
    max-width: 120px;
}
/* -------------- info -------------- */
.b-container.info{
    padding: 108px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px 0;
}
.info__block{
    background: #0c38fb;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.65;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
}
.info__link{
    display: block;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.65;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0c38fb;
    text-decoration: none;
    transition: 0.2s;
}
.info__link:hover{
    font-weight: 700;
}
.blink{
    animation: blink 1s steps(1, start) infinite;
}
@keyframes blink {
    50% { opacity: 0; }

}

/* ========= responsive ========= */
@media (max-width: 1229px) {
    .b-container{
        padding: 0 8px;
    }
    .header{
        position: relative;
    }
    .header__nav{
        display: none;
    }
    .header__btn{
        display: block;
    }
    .header__menu{
        display: block;
        position: absolute;
        top: 99%;
        left: 0;
        width: 100%;
        height: 0vh;
        overflow: auto;
        background: #0c38fb;
        padding: 40px 32px 32px 32px;
        z-index: -1;
        opacity: 0;
        visibility: hidden;
        transform-origin: top center;
        transform: scaleY(0); /* стартовое состояние */
    }
    /* Открытие */
    .header__menu.active {
        height: calc(100vh - 100px + 1%);
        opacity: 1;
        visibility: visible;
        z-index: 100;
        animation: bounceOpen 0.5s ease forwards;
    }

    /* Закрытие */
    .header__menu.closing {
        animation: bounceClose 0.4s ease forwards;
    }

    /* анимации */
    @keyframes bounceOpen {
        0%   { transform: scaleY(0);  }
        60%  { transform: scaleY(1.05);  }
        80%  { transform: scaleY(0.97); }
        100% { transform: scaleY(1); }
    }
    /*@keyframes bounceClose {*/
    /*    0%   { transform: scaleY(1); }*/
    /*    20%  { transform: scaleY(0.97); }*/
    /*    40%  { transform: scaleY(1.05); }*/
    /*    100% { transform: scaleY(0); }*/
    /*}*/
    @keyframes bounceClose {
        0%   { transform: scaleY(1); }
        40%  { transform: scaleY(0.8); }  /* быстро схлопываемся */
        60%  { transform: scaleY(1.02); } /* отпрыгиваем назад */
        80%  { transform: scaleY(0.95); } /* снова немного схлопываемся */
        100% { transform: scaleY(0); }    /* окончательно закрываем */
    }
    .header__menu ul li a{
        display: block;
        font-weight: 400;
        font-size: 22px;
        line-height: 1.65;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        text-decoration: none;
        color: #fff;
        padding: 32px 0;
        border-bottom: 2px solid #fff;
        transition: 0.2s;
    }
    .header__menu ul li a:hover , .header__menu ul li a.active , .header__menu ul li a:Active{
        font-weight: 700;
    }
    .header__menu ul li:first-child a{
        padding-top: 0;
    }
    .header__menu ul li:last-child a{
        border: none;
    }

    .footer{
        justify-content: center;
    }
    .footer__link{
        display: none;
    }
    .wrapper{
        flex-direction: column;
        gap: 8px 0;
    }
    .wrapper .section{
        width: 100%;
    }

}
@media (max-width: 767px) {
    .b-container.info{
        padding: 89px 8px;
    }
    .p-32{
        padding: 24px;
    }
    .header__nav ul li a, .header__btn{
        font-size: 20px;
    }
    .logo{
        max-width: 165px;
    }
    .header__menu{
        padding:  32px 24px 24px 24px;
    }
    .header__menu.active{
        height: calc(100vh - 81px + 1%);
    }
    .header__menu ul li a{
        font-size: 20px;
        padding: 24px 0;
    }
    .section__title{
        font-size: 20px;
    }
    p{
        font-size: 16px;
    }
    .copyright{
        font-size: 20px;
    }
    .info__block{
        font-size: 20px;
    }
    .info__link{
        font-size: 20px;
    }
}


.header__btn , a , .faq{
    -webkit-appearance: none !important;
    appearance: none !important;
    outline: none !important !important;
    box-shadow: none !important !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-focus-ring-color: transparent !important;
}
