@font-face {
    font-family: 'Golos Text';
    src: url('../fonts/GolosTextBold.woff2') format('woff2'),
       url('../fonts/GolosTextBold.woff') format('woff'),
       url('../fonts/GolosTextBold.ttf')  format('truetype');
    font-weight: 700;
}
@font-face {
    font-family: 'Golos Text';
    src: url('../fonts/GolosTextRegular.woff2') format('woff2'),
       url('../fonts/GolosTextRegular.woff') format('woff'),
       url('../fonts/GolosTextRegular.ttf')  format('truetype');
    font-weight: 400;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}
* {
	box-sizing: border-box;
	outline: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
body {
	margin: 0;
    padding: 0;
    background: #04488C;
    background-image: url(../img/bg-l.png), url(../img/bg-r.png);
    background-repeat: no-repeat, no-repeat;
    background-position: 80px 0, 100% 100%;
    background-size: auto, auto;
}
@media (max-width: 767px){
    body {
        background-position: 0 0, 100% 100%;
        background-size: 80% auto, 80% auto;
    }
}

svg {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}


.header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__inner {
    max-width: 1270px;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: relative;
    width: 100%;
}
@media (max-width: 767px){
    .header__inner {
        padding-left: 20px;
        padding-right: 20px;
        flex-wrap: wrap;
        flex-direction: column;
    }
}

.header__logo {
    margin-top: 87px;
}
@media (max-width: 1024px){
    .header__logo {
        margin-top: 47px;
    }    
}
@media (max-width: 767px){
    .header__logo {
        margin-top: 52px;
        width: 239px;
    }
}

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

.header__title {
    margin-top: 90px;
    margin-left: 85px;
    font-family: 'Golos Text', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.4;
    text-transform: uppercase;
    color: #FFFFFF;
}
@media (max-width: 1300px){
    .header__title {
        margin-left: 50px;
        font-size: 28px;
    }
}
@media (max-width: 1024px){
    .header__title {
        font-size: 18px;
        margin-left: 40px;
        margin-top: 50px;
    }
}
@media (max-width: 767px){
    .header__title {
        margin-top: 26px;
        font-weight: 400;
        font-size: 12px;
        line-height: 14px;
        text-align: center;
        text-transform: uppercase;
    }
}

.langs {
    display: flex;
    position: absolute;
    top: 40px;
    right: 40px;
}
@media (max-width: 1024px){
    .langs {
        top: 30px;
    }
}
@media (max-width: 767px){
    .langs {
        right: 20px;
        top: 20px;
    }
}

.langs__item {
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 38px;
    background: #0C3A68; 
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    color: #557595;
    text-decoration: none;
    cursor: pointer !important;
}
@media (max-width: 767px){
    .langs__item {
        height: 20px;
        font-size: 10px;
    }
}

.langs__item:first-child {
    border-radius: 4px 0 0 4px;
}

.langs__item:last-child {
    border-radius: 0px 4px 4px 0px;
}

.langs .langs__item.active {
    background: #1D1D1B;   
    color: #FFFFFF;
}

.page {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    overflow: hidden;
    min-height: 100vh;
}

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

.footer__inner {
    max-width: 1240px;
    padding-left: 40px;
    padding-right: 40px;
    height: 108px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    color: #fff;
}
@media screen and (max-width: 767px){
    .footer__inner {
        padding-left: 20px;
        padding-right: 20px;       
        margin: 0;
        width: 100%;
        height: 113px;
    }
}

.footer__item p {
    margin: 0;
    margin-bottom: 8px;
    text-align: center;
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
}
@media screen and (max-width: 767px){
    .footer__item {
        width: 100%;
    }
}

.footer__btns {
    display: flex;
    justify-content: center;
}

.footer__btns__item {
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 260px;
    height: 40px;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: #FFFFFF;
}

@media (max-width: 767px){

}

#exit {
    cursor: pointer;
}

.disable {
    display: none !important;
}

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