@font-face {
    font-family: "Cygre";
    src: url("../fonts/CygreRegular.woff2") format("woff2");
    font-weight: 400;
}
@font-face {
    font-family: "Cygre";
    src: url("../fonts/CygreBold.woff2") format("woff2");
    font-weight: 700;
}

body, html {
    margin: 0;
    min-height: 100%;  
    background: #EDEDED;  
}

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

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

.header {
    width: 100%;
}

.header__inner {
    max-width: 1040px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 50px;
    padding-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
@media screen and (max-width: 991px){
    .header__inner {
        padding-left: 20px;
        padding-right: 20px;        
        padding-top: 30px;
        padding-bottom: 30px;
    }    
}
@media (max-width: 767px){
    .header__inner {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.header__inner .logo {
    display: flex;
    align-items: center;
    max-width: 40%;
}
@media (max-width: 767px){
    .header__inner .logo {
        max-width: 100%;
        width: 200px;
    }
}

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

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    right: 40px;
    top: 50px;
}
@media screen and (max-width: 991px){
    .header-nav {
        right: 20px;
    }    
}
@media (max-width: 767px){
    .header-nav {
        right: 15px;
    }
}

.header-nav__btn {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

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

.footer {
    height: 120px;
}
@media (max-width: 767px){
    .footer {
        height: 200px;
        display: flex;
        align-items: center;
    }    
}

.footer__inner {
    max-width: 1150px;
    padding-left: 40px;
    padding-right: 40px;
    height: 120px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 991px){
    .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;
        text-align: center;
        height: auto;
        padding-top: 0;
        padding-bottom: 0;
        flex-wrap: wrap;
        justify-content: center;  
        width: 100%;   
        flex-direction: column;        
    }
    .footer__inner .btn {
        margin: 0 auto;
    }
}

.footer__item p {
    margin: 0;
    font-family: 'Cygre', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 3px;
    text-align: center;
    color: #000000;
}

@media screen and (max-width: 767px){
    .footer__item {
        width: 100%;
    }
    .footer__item .logo {
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
    }
}

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

.footer__btns__item {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    max-width: 100%;
    width: 260px;
    height: 40px;
    border-radius: 6px;
    font-family: 'Cygre', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #B10C2D;
    background: #fff;
}
@media screen and (max-width: 767px){
    .footer__btns__item {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}


#exit {
    cursor: pointer;
}

.disable {
    display: none !important;
}

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