body, html {
    margin: 0;
    font-family: Arial, sans-serif;
    min-height: 100%;
}

html {
    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);
}

body {
    background: #1A3B60 url(../img/bg-b.png?2) 0 calc(100% - 120px) no-repeat;
    background-size: 100% auto;
}   

@media (max-width: 991px){
    body {
        background: #1A3B60 url(../img/bg-b.png?2) 0 calc(100% - 220px) no-repeat;
        background-size: 100% auto;
    }     
}

.bg-t-wrapper {
    width: 100%;
    position: absolute;
    left: 0;
}
@media (max-width: 991px){
    .bg-t-wrapper {

    }
}

.bg-t {
    display: block;
    width: 100%;
}

.bg-t-sh {
    background: linear-gradient(0deg, rgba(26, 59, 96, 0) 0%, #1B3B66 100%);
    height: 600px;
    width: 100%;
    position: absolute;
    bottom: -600px;
} 

.embed {
    position: relative;
}

.page {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    overflow: hidden;
    min-height: calc(100vh - 120px - 120px);
}
@media (max-width: 991px){
    .page {
        min-height: calc(100vh - 220px - 95px);
    }    
}

.header {
    width: 100%;
    z-index: 10;
    background: #fff;
    position: fixed;
}

.header__inner {
    max-width: 1020px;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    height: 120px;
}
@media (max-width: 991px){
    .header__inner {
        height: 95px;
        padding-left: 20px;
        padding-right: 20px;
        justify-content: center   
    }
    .header {
        position: static;
    }
}

.header__inner .logo {
    display: flex;
    align-items: center;
}
@media (max-width: 991px){
    .logo {

    }
}

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

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

.page__main {
    display: flex!important;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
    position: relative;
    min-height: calc(100vh - 120px);
    padding-top: 120px;
}
@media (max-width: 991px) {
    .page__main {
        min-height: calc(100vh - 220px - 95px);
        padding-top: 0;
    }
}

.footer {
    height: 120px;
    background: #fff;
    position: relative;
}
@media (max-width: 991px){
    .footer {
        display: flex;
        height: 220px;
        align-items: center
    }     
}

@media screen and (max-width: 991px){
    .footer .logo {
        margin-bottom: 30px;
        margin-left: auto;
        margin-right: auto;
    }
}

.footer__inner {
    max-width: 1020px;
    padding-left: 30px;
    padding-right: 30px;
    height: 120px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: space-between;
}
@media screen and (max-width: 991px){
    .footer__inner {
        margin: 0;
        width: 100%;
        flex-direction: column;
    }
}
@media (max-width: 991px){
    .footer__inner {
        padding-left: 30px;
        padding-right: 30px;
        height: 220px;
        justify-content: center;
    }
}

.footer__item {
    width: 33.33%;
}
@media screen and (max-width: 991px){
    .footer__item {
        width: 100%;
    }    
}

.footer__item:last-child {
    display: flex;
    justify-content: flex-end;
}
@media screen and (max-width: 991px){
    .footer__item:last-child {
        justify-content: center;
    }
}

.footer__item img {
    max-width: 100%;
}
@media screen and (max-width: 991px){
    .footer__item img {
        margin-left: auto;
        margin-right: auto
    }    
}

.footer__item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: #7B7B7B;
    margin-bottom: 5px;
    text-align: center;
}

.footer__btn {
    position: relative;
    z-index: 1;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #334054;
    border-radius: 10px;
    text-decoration: none;
    width: 268px;
    height: 55px;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #428F94;
}


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

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

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

.exit {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    cursor: pointer;
    margin-left: 20px;
    width: 120px;
    height: 49px;
    background: #46B4A5;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .exit {
        font-size: 14px;
        margin-left: 15px;
        width: auto;
        height: auto;
        padding: 10px 15px;
    }    
}

.lang {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    width: 65px;
    height: 49px;
    background: #CBD1D7;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #1A1A18;
}
@media (max-width: 767px) {
    .lang {
        font-size: 14px;
        width: auto;
        height: auto;
        padding: 10px 15px;
        margin-left: 15px;
    }
}

#exit {
	cursor: pointer;
}

.disable {
    display: none !important;
}

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