@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Medium/Montserrat-Medium.woff2") format("woff2");
    font-weight: 500;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Regular/Montserrat-Regular.woff") format("woff");
    font-weight: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Bold/Montserrat-Bold.woff2") format("woff2");
    font-weight: bold;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-SemiBold/Montserrat-SemiBold.woff2") format("woff2");
    font-weight: 600;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Light/Montserrat-Light.woff2") format("woff2");
    font-weight: 300;
}

.mobile-only {
    display: none !important; 
}

@media (max-width: 767px){
    .desktop-only {
        display: none !important; 
    }
    .mobile-only {
        display: block !important;
    }
}

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

body {
    background: linear-gradient(360deg, #B2CBE7 0%, #0B4A92 100%);
}

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

.jc-c {
    justify-content: center !important;
}

.toggle {
    cursor: pointer;
    display: none;
    width: 37px;
    height: 28px;
    background: url(../img/burger.svg?2) no-repeat 0 0;
    background-size: contain;
    margin-left: 20px;
}
@media (max-width: 767px){
    .toggle {
        display: none;
    }
    .toggle.show {
        display: block;
    }
}

@media (max-width: 767px){
    .toggle-nav.show {
        display: block;
    }
}

.toggle-nav {
    position: absolute;
    top: 18px;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 20;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    border-radius: 0px 0px 20px 20px;
    padding: 36px;    
    display: none;
}
@media (max-width: 767px){
    .toggle-nav {
        
    }    
}

.toggle-close {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 35px;
    width: 37px;
    height: 28px;
    background: url(../img/close-s.svg?2) no-repeat 50% 50%;
    background-size: 23px 23px;
    display: none;
}

@media (max-width: 767px){
    .toggle-close.show {
        display: block;
    }
}

body.toggle-on .page__main:before {
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 20;
    display: none;
    background: rgba(11, 74, 146, 0.7);
    backdrop-filter: blur(2px);
}
@media (max-width: 767px){
    body.toggle-on .page__main:before {
        display: block;
    }    
}

.toggle-menu {
    list-style-type: none;
    padding: 0;
}
@media (max-width: 767px) {
    .toggle-menu {
        margin-bottom: 30px;
    }
}

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

.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: 30px;    
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}
@media (max-width: 767px){
    .header__inner {
        padding-left: 15px;
        padding-right: 15px;
        justify-content: space-between;       
        padding-top: 16px;
    }
}

.flags {
    max-width: 1240px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 40px;
    padding-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}
@media (max-width: 767px){
    .flags {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.flags img {
    display: block;
}

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

@media (max-width: 767px){
    .header__logo {
        max-width: 80%;
    }
}

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

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

.header-nav__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    cursor: pointer;
    margin-left: 20px;    
    width: 115px;
    height: 44px;
    background: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 16px;
    color: #0B4A92;
}
@media (max-width: 767px){
    .header-nav__btn {
        width: auto;
        padding-left: 10px;
        padding-right: 10px;
        height: 36px;
        font-size: 14px;
    }
}

.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: 58px;
    height: 44px;
    border: 1px solid #FFF;
    border-radius: 6px;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
}
@media (max-width: 767px){
    .lang {
        width: 100%;
        height: 54px; 
        border: 1px solid #B2CBE7;
        border-radius: 8px;
        font-family: 'Montserrat';
        font-weight: 500;
        font-size: 20px;
        text-align: center;
        color: #0B4A92;
    }
}

.lang-ru {
    background: #B2CBE7;
    color: #0B4A92;
    margin-bottom: 20px;
}


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

.footer {
    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: 30px;
    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;
        width: 100%;
    }
}

.footer__item p {
    margin: 0;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #0B4A92;
}

.footer__btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    max-width: 100%;
    text-decoration: none;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: #0B4A92;
}
@media screen and (max-width: 767px){
    .footer__btn {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

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

.footer__btn span {
    display: flex;
    border-left: 1px solid #0B4A92;
    padding-left: 15px;
    margin-left: 15px;
}

#exit {
	cursor: pointer;
}

.disable {
    display: none !important;
}

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