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 - 144px);
}
@media (max-width: 767px) {
    .page {
        min-height: calc(100vh - 200px);
    }
}

.header {
    width: 100%;
    position: fixed;
    height: 144px;
    z-index: 10;
    background: #ffffff url(../img/bg-t.png) no-repeat 50% 0;
    background-size: cover;
}
@media (max-width: 767px) {
    .header {
        height: 100px;
    }
}

.header__inner {
    max-width: 840px;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    z-index: 1;
    height: 144px;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .header__inner {
        padding-left: 20px;
        padding-right: 20px;
        flex-wrap: wrap;
        height: 100px;
    }
}

.header__inner .logo {
    margin-right: 20px;
}
@media (max-width: 767px) {
    .header__inner .logo {
        max-width: 60%;
    }
}

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

@media (max-width: 767px) {
    .logo {
        width: 235px;
        min-width: auto;
    }
}

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

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

.header-nav__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #fff;
    line-height: 1;
    text-decoration: none;
    width: 140px;
    height: 45px;
    background: #3e88a2;
    border-radius: 6px;
    font-family: "Roboto";
    cursor: pointer;
}
@media (max-width: 767px) {
    .header-nav__btn {
        font-size: 14px;
        width: auto;
        height: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

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

.footer {
    background: #ffffff url(../img/bg-b.png) no-repeat 100% 0;
    background-size: cover;
}
@media (max-width: 767px) {
    .footer {
        height: 200px;
        display: flex;
        align-items: center;
    }
}

.footer__inner {
    max-width: 840px;
    padding-left: 40px;
    padding-right: 40px;
    height: 88px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    display: flex;
    align-items: center;
    color: #fff;
}
@media (max-width: 767px) {
    .footer__inner {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 0;
        height: auto;
        display: block;
    }
}

.footer__inner__item {
    display: flex;
    align-items: flex-start;
}
@media screen and (max-width: 767px) {
    .footer__inner__item {
        display: block;
        padding-top: 0;
    }
}

@media (max-width: 767px) {
    .footer__inner .logo {
        display: flex;
        justify-content: center;
        margin-bottom: 0;
        margin-right: auto;
        margin-left: auto;
    }
}

.help p {
    margin: 0;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: center;
    font-size: 12px;
    color: #3d87a1;
    font-family: Roboto, sans-serif;
}

@media screen and (max-width: 767px) {
    .help {
        margin-top: 25px;
    }
}

.footer__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    width: 206px;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    height: 40px;
    background: #3d87a1;
    border-radius: 5px;
    color: #fff;
    font-family: Roboto, sans-serif;
}
@media screen and (max-width: 767px) {
    .footer__btn {
        margin-top: 0px;
        margin-left: auto;
        margin-right: auto;
    }
}

.footer__btn img {
    margin-right: 10px;
    min-width: 12px;
    display: block;
}
@media screen and (max-width: 767px) {
    .footer__btn img {
        margin-left: 0px;
    }
}

.disable {
    display: none !important;
}

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