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

html {
    font-size: 18px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    /*    background: url(../img/bg.png?2) 50% -5%;*/
    background-size: 100% auto;
}

* {
    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: 100vh;
    position: relative;
    background: url(../img/bg-n.png) no-repeat 50% 100%;
    background-size: 100% auto;
}

@media (max-width: 767px) {
    .page {}
}

.header {
    width: 100%;
}

@media (max-width: 767px) {
    .header {
        position: relative;
        z-index: 1;
    }
}

.header__inner {
    max-width: 1240px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 34px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

@media (max-width: 991px) {
    .header__inner {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .header__inner {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.header__logo {
    background: #fff;
}

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

.header-nav {
    margin-left: 20px;
}

@media (max-width: 991px) {
    .header-nav {
        margin-left: auto;
    }
}

.header-nav__btns {
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-nav__btns {
        margin-top: 34px;
    }
}

.header-nav__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    cursor: pointer;
    margin-left: 13px;
    width: 101px;
    height: 44px;
    background: #F3982D;
    border-radius: 6px;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: none;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .header-nav__btn {
        font-size: 14px;
        width: auto;
        padding-left: 10px;
        padding-right: 10px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .header-nav__btn {
        font-size: 11px;
        height: 30px;
    }
}

.btn-inf {
    padding-left: 10px;
    padding-right: 10px;
    width: auto;
    background: #00AA56;
    margin-right: 13px;
}

.header-nav__btn img {
    margin-right: 4px;
    display: block;
}

@media (max-width: 767px) {
    .header-nav__btn img {
        display: none;
    }
}

.lang {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    width: 46px;
    height: 44px;
    border: 1px solid #F3982D;
    border-radius: 6px;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    background: #fff;
}

@media (max-width: 767px) {
    .lang {
        font-size: 14px;
        width: auto;
        padding-left: 10px;
        padding-right: 10px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .lang {
        font-size: 11px;
        height: 30px;
    }
}

.page__main {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    width: 100%;
    position: relative;
}

.footer {
    margin-top: auto;
    position: relative;
}

@media (max-width: 767px) {
    .footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.footer__inner {
    max-width: 1240px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 34px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .footer__inner {
        padding-left: 15px;
        padding-right: 15px;
        display: block;
        text-align: center;
        height: auto;
        width: 100%;
        padding-bottom: 70px;
    }
}

.footer__item p {
    margin: 0;
    margin-bottom: 10px;
    text-align: center;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
}

.footer__btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    max-width: 100%;
    text-decoration: none;
    padding-left: 30px;
    padding-right: 30px;
    height: 54px;
    border: 1px solid #05469C;
    border-radius: 8px;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 14px;
    color: #000000;
    text-decoration: none;
    background: #fff;
}

@media screen and (max-width: 767px) {
    .footer__btn {
        margin-left: auto !important;
        margin-right: auto !important;
        justify-content: center;
        font-size: 12px;
        height: 48px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.footer__btn img {
    min-width: 20px;
    display: block;
}

.footer__btn span {
    display: flex;
    border-left: 1px solid #05469C;
    color: #000;
    padding-left: 15px;
    margin-left: 15px;
}

#exit {
    cursor: pointer;
}

.disable {
    display: none !important;
}

.MuiCircularProgress-root {
    color: #00AA56 !important;
}

.CircularContainer svg circle {
    stroke: #00AA56;
}