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

html {
    margin: 0;
    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 {
    margin: 0;
    min-height: 100%;
    position: relative;
    background: url(../img/bg.png) no-repeat 50% 50%;
    background-size: cover;
}

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: 100vh;
    position: relative;
    background-image: url(../img/bg-r.png), url(../img/bg-l.png);
    background-repeat: no-repeat, no-repeat;
    background-position: 100% 20%, 0 70%;
    background-size: 404px auto, 761px auto;
}
@media (max-width: 1200px){
    .page {
        background-size: auto 30%, auto 70%;
        background-position: 100% 30%, 0 80%;
    }
}
@media (max-width: 767px){
    .page {
        background-size: 30% auto, 70% auto;
        background-position: 100% 30%, 0 60%;
    }
}

.header {
    width: 100%;
    z-index: 10;
    position: relative;
}
@media (max-width: 767px){
    .header {

    }    
}

.header__inner {
    max-width: 1240px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    z-index: 1;
    position: relative;
    align-items: flex-end;
}
@media (max-width: 767px){
    .header__inner {
        padding-left: 20px;
        padding-right: 20px;           
        padding-top: 20px;
        padding-bottom: 20px;
        justify-content: space-between;
    }    
}

.header-nav {
    position: absolute;
    right: 40px;
}
@media (max-width: 767px){
    .header-nav {
        position: static;
        margin-left: 20px;
    }
}

.header-nav__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 44px;
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    color: #FFFFFF;
    background: #E5491D;
    border-radius: 10px;    
}
@media (max-width: 1024px){
    .header-nav__btn {
        width: 101px;
        height: 36px;
        font-size: 14px;
        border-radius: 6px;    
    }
}

.header__logo {
    display: flex;
    align-items: center;
}
@media (max-width: 767px){
    .header__logo {
        width: 250px;
    }    
}

.header__inner .logo {
    display: flex;
    align-items: center;
}

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

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

.footer {

}
@media (max-width: 767px){
    .footer {
        display: flex;
    }    
}

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

.footer__item p {
    margin: 0;
    margin-bottom: 10px;
    text-align: center;
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    color: #DFE8F2;
}
@media screen and (max-width: 767px){
    .footer__item p {
        font-size: 12px;
    }
}

.footer__btns {
    display: flex;
    justify-content: center;
}
@media screen and (max-width: 767px){
    .footer__btns {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
    }
}

.footer__btns__item {
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    border: 1px solid #E5491D;
    border-radius: 10px;
    text-decoration: none;    
    width: 273px;
    height: 44px;
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    color: #DFE8F2;
    margin-right: 30px;
}
@media screen and (max-width: 767px){
    .footer__btns__item {
        margin-right: 0;
        font-size: 12px;
        height: 36px;
        width: max-content;
        border-radius: 6px;
    }
}

.footer__btns__item:last-child {
    margin-right: 0;
    width: auto;
}
@media screen and (max-width: 767px){
    .footer__btns__item:last-child {
        margin-top: 10px;
    }
}

.footer__btns__item img {
    margin-right: 15px;
    min-width: 20px;
    display: block;
}
@media (max-width: 767px){
    .footer__btns__item img {
        max-width: 16px;
        min-width: 16px;
    }
}

@media screen and (max-width: 767px){
    .footer__btns__item:last-child img {
        max-width: 13px;
        min-width: 13px;
    }
}

.footer__btns__item span {
    display: flex;
    border-left: 1px solid #fff;
    padding-left: 15px;
    line-height: 20px;
}
@media (max-width: 767px){
    .footer__btns__item span {
        line-height: 17px;
    }
}

#exit {
    cursor: pointer;
}

.disable {
    display: none !important;
}

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