@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-500.woff") format("woff");
    font-weight: 500;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-400.woff") format("woff");
    font-weight: 400;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-SemiBold/Montserrat-SemiBold.woff") format("woff");
    font-weight: 600;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-800.woff") format("woff");
    font-weight: 800;
}

body, html {
    margin: 0;
    font-family: Montserrat, sans-serif;
    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);
}

.d-flex {
    display: flex !important;
}

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

@media (max-width: 767px){
    .page {
        min-height: calc(100vh - 190px);
    }
}

.header {
    width: 100%;
    height: 144px;
}
@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;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    height: 144px;
}
@media (max-width: 1023px){
    .header__inner {
        padding-left: 20px;
        padding-right: 20px;
    }    
}
@media (max-width: 767px){
    .header__inner {
        padding-left: 15px;
        padding-right: 15px;
        height: 100px;
    }
}

.logo {
    max-width: 60%;
}

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

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

.header-nav__btns {
    display: flex;
    align-items: center;
    margin-top: 16px;
}

.header-nav__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    border: 1px solid #00B3DC;
    border-radius: 5px;
    box-sizing: border-box;
    color: #6C7075;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 30px;
}
@media (max-width: 767px){
    .header-nav__btn {
        padding-left: 10px;
        padding-right: 10px;
        margin-left: 15px;
    }    
}
@media (max-width: 389px){
    .header-nav__btn {
        font-size: 12px;
    }    
}

.lang {
    font-size: 14px;
    color: #6C7075;
    display: block;
    text-decoration: none;
    cursor: pointer;
}
@media (max-width: 389px){
    .lang {
        font-size: 12px;
    }    
}

.page__main {    
    display: flex!important;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    width: 100%;
    position: relative;
    min-height: calc(100vh - 144px - 113px);
}
@media (max-width: 767px) {
    .page__main {         
        min-height: calc(100vh - 100px - 190px);
    }
}

.footer {
    position: relative;
    background: #6B7075;
}
@media (max-width: 767px){
    .footer {
        padding-top: 20px;
        padding-bottom: 20px;
        height: 190px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }    
}

.footer a {
    color: #fff;
}
.footer .logo {
    width: 349px;
}
.footer img {
    display: block;
}
.footer__inner {
    max-width: 840px;
    padding-left: 40px;
    padding-right: 40px;
    height: 113px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    display: flex;
    align-items: center;
    color: #fff;
}
@media screen and (max-width: 1023px){
    .footer__inner {
        padding-left: 20px;
        padding-right: 20px;       
        padding-top: 30px;
        padding-bottom: 30px;    
    }
}
@media (max-width: 767px){
    .footer__inner {
        padding-left: 15px;
        padding-right: 15px;
        display: block;
        text-align: center;      
        height: auto; 
        padding-top: 0;
        padding-bottom: 0;
        width: 100%;
    }
    .footer__inner .logo img {
        margin: 0 auto 20px;
        max-width: 60%;
    }
    .footer__inner .btn {
        margin: 0 auto;
    }
}

.footer__item p {
    margin: 0;
    color: #FFFFFF;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
}
@media screen and (max-width: 767px){
    .footer__item p {
        margin-top: 20px;
    }
}

.footer__item p small {
    font-size: 10px;
}

.footer__btns {
    display: flex;
}
@media screen and (max-width: 767px){
    .footer__btns {
        display: block;
    }
}

.footer__btns__item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    box-sizing: border-box;
    text-decoration: none;
    color: #FFFFFF;
    max-width: 100%;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    height: 38px;
    width: 260px;
    max-width: 100%;    
    font-weight: 400;
    font-size: 10px;
    line-height: 140%;
}

@media screen and (max-width: 767px){
    .footer__btns__item {
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100%;
        justify-content: center;
    }
}

.footer__btns__item img {
    min-width: 12px;
    display: block;
}
.footer__btns__item span {
    display: flex;
    border-left: 1px solid #fff;
    padding-left: 10px;
    margin-left: 10px;
    text-decoration: underline;
}

#exit {
	cursor: pointer;
}

.disable {
    display: none !important;
}

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