@font-face {
    font-family: "Onest";
    src: url("../fonts/OnestRegular.woff2") format("woff");
    font-weight: 400;
}
@font-face {
    font-family: "Onest";
    src: url("../fonts/OnestMedium.woff2") format("woff");
    font-weight: 600;

}
@font-face {
    font-family: "Onest";
    src: url("../fonts/OnestBold.woff2") format("woff");
    font-weight: 700;
}

body,
html {
    margin: 0;
    min-height: 100%;
}

html {
    font-size: 18px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
* {
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a {
    transition: 0.2s;
}
svg {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.page {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    overflow: hidden;
    min-height: calc(100vh - 140px);
    background: #EEE;
}
@media (max-width: 1024px) {
    .page {
        min-height: calc(100vh - 222px);
    }
}
@media (max-width: 767px) {
    .page {
        min-height: calc(100vh - 222px);
    }
}

.header {
    width: 100%;
    z-index: 10;
    background: #56338A url(../img/bg-t.png) no-repeat 100% 0;
    background-size: auto 100%;
}
@media (max-width: 991px) {
    .header {
        background: #56338A url(../img/bg-t.png) no-repeat calc(100% + 250px) 0;
        background-size: auto 100%;
    }
}

.header__inner {
    max-width: 1240px;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    height: 212px;
}
@media (max-width: 1024px) {
    .header__inner {
        height: 140px;
    }
}
@media (max-width: 767px) {
    .header__inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.logo {
    display: flex;
    align-items: center;
    width: 100%;
}

.header .logo img {
    margin-top: -6px;
}

@media (max-width: 1024px) {
    .header .logo {
        max-width: 54%;
    }
}
@media (max-width: 767px) {
    .header .logo {
        padding-right: 0;
    }
}

.logo img,
.logo svg {
    display: block;
    max-width: 100%;
}

.header-nav {
    display: flex;
    justify-content: flex-end;
}

.header-nav__btns {
    display: flex;
    margin-left: 30px;
    align-items: center;
}
@media (max-width: 767px) {
    .header-nav__btns {

    }
}

.btn-lang {
    font-family: 'Onest';
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: #FFFFFF;
    text-decoration: none;
}
@media (max-width: 767px) {
    .btn-lang {
        font-size: 16px;
    }
}

.btn-exit {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 85px;
    height: 46px;
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 10px;
    font-family: 'Onest';
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: #7358A1;
    margin-left: 20px;
}
@media (max-width: 767px) {
    .btn-exit {
        font-size: 16px;
        width: 75px;
        height: 40px;
    }
}


.page__main {
    display: flex !important;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
    position: relative;
    min-height: calc(100vh - 140px);
}
@media (max-width: 767px) {
    .page__main {
        min-height: calc(100vh - 222px);
    }
}

.footer {
    height: 140px;
    background: #56338A url(../img/bg-b.png) no-repeat 0 0;
    background-size: auto 100%;
}
@media (max-width: 1024px) {
    .footer {
        background: #56338A url(../img/bg-b.png) no-repeat calc(100% - 180px) 0;
        background-size: auto 100%;    
    }
}
@media (max-width: 767px) {
    .footer {
        height: 222px;
        display: flex;
        align-items: flex-start;
    }
}
@media (max-width: 480px) {
    .footer {
        background: #56338A url(../img/bg-b.png) no-repeat calc(100% - 80px) 0;
        background-size: auto 100%;    
    }
}

.footer__inner {
    max-width: 1240px;
    padding-left: 30px;
    padding-right: 30px;
    height: 140px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .footer__inner {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
        height: 222px;
        width: 100%;
        padding-top: 0;
        padding-bottom: 0;
        justify-content: center;
        flex-direction: column;
    }
    .footer__inner .btn {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .footer__item {
        width: 100%;
    }
}

.footer__item p {
    margin: 0;
    margin-bottom: 10px;
    text-align: center;
    font-family: 'Onest';
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
}
@media (max-width: 767px) {
    .footer__item p {
        margin-top: 30px;
    }
}

.footer__btns {
    display: flex;
}
@media screen and (max-width: 767px) {
    .footer__btns {
        display: block;
        margin-bottom: 10px;
    }
}

.footer__btns__item {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-decoration: none;
    max-width: 100%;
    width: 260px;
    height: 38px;
    border-radius: 5px;
    background: #AB92CD;
    font-family: 'Onest';
    font-weight: 400;
    font-size: 10px;
    line-height: 140%;
    color: #FFFFFF;
}
@media screen and (max-width: 767px) {
    .footer__btns__item {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

.footer__btns__item span {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #fff;
}

.footer .logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 412px;
    max-width: 100%;
}
@media (max-width: 767px) {
    .footer .logo {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .footer .logo__item {
        margin-top: 10px;
        margin-bottom: 10px;
        margin-left: 20px;
    }
    .footer .logo__item:first-child {
        margin-left: 0;
    }
}

#exit {
    cursor: pointer;
}

.disable {
    display: none !important;
}

.MuiCircularProgress-root {
    color: #8D4ECD !important;
}
.CircularContainer svg circle {
    stroke: #8D4ECD;
}
