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


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

.header {
    width: 100%;
    position: fixed;
    z-index: 10;
    height: 140px;
    background: #FFFFFF;
}
@media screen and (max-width: 767px){
    .header {
        height: 100px;
    }
}

.header__inner {
    max-width: 1240px;
    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: 140px;
}
@media screen and (max-width: 767px){
    .header__inner {
        padding-left: 20px;
        padding-right: 20px;
        height: 100px;  
    }    
}

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

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

.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;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    width: 200px;
    height: 50px;
    background: #EF762F;
    border-radius: 100px;
}
@media (max-width: 767px) {
    .header-nav__btn {
        font-size: 12px;
        padding: 0 40px;
        width: 115px;
    }
}

.page__main {
    display: flex!important;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
    position: relative;
    padding-top: 140px;
    background: url(../img/bg.png) no-repeat 0 140px;
    background-size: cover;
    min-height: calc(100vh - 140px);
}
@media (max-width: 767px){
    .page__main {
        padding-top: 100px;
        background: url(../img/bg.png) no-repeat 0 100px;
        background-size: cover;
    }    
}


.footer {
    height: 140px;
    position: relative;  
    background: #EF762F;  
}
@media (max-width: 767px){
    .footer {
    }    
}

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

.footer__item {
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: #fff;
    display: flex;
    align-items: center;
    margin-top: 10px;
    text-decoration: none;
}
@media screen and (max-width: 767px){
    .footer__item  {
        font-size: 14px;
    }
}

.footer__item:first-child {
    font-weight: 700;
    font-size: 25px;
    margin-top: 0;
}
@media screen and (max-width: 767px){
    .footer__item:first-child {
        font-size: 14px;
    }
}

.footer__item img {
    margin-right: 10px;
}

#exit {
	cursor: pointer;
}

.disable {
    display: none !important;
}

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