@font-face {
    font-family: 'Manrope';
    src: url("../fonts/ManropeRegular.woff") format("woff");
    font-weight: 400;
}
@font-face {
    font-family: 'Manrope';
    src: url("../fonts/Manrope-SemiBold.woff2") format("woff");
    font-weight: 500;
}
@font-face {
    font-family: "Manrope";
    src: url("../fonts/manropebold.woff2") format("woff2");
    font-weight: 700;
}

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

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

body {
    background: #fff url(../img/bg.png?2) no-repeat 50% 50%;
    background-size: cover;
    background-attachment: fixed;
}   

@media (max-width: 767px){
    body {
    }     
}

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

.header {
    width: 100%;
    z-index: 10;
}

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

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

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

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

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

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

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

.header-nav__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 12px;
    height: 44px;
    border: 1px solid #46B4A5;
    border-radius: 6px;
    font-family: 'Manrope';
    font-weight: 700;
    font-size: 16px;
    color: #292929;
    text-decoration: none;
}

.exit {
    cursor: pointer;
    margin-left: 15px;
    color: #FFFFFF;
    background: linear-gradient(90deg, #46B4A5 0%, #96EDE1 100%);
    border: 0;
}
@media (max-width: 767px) {
    .exit {
    }    
}

.exit img {
    margin-right: 5px;
}

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

.footer__inner {
    max-width: 1120px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 767px){
    .footer__inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.footer__item {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.footer__item p {
    margin: 0;
    margin-bottom: 10px;
    text-align: center;
    font-family: 'Manrope';
    font-weight: 700;
    font-size: 14px;
    line-height: 19px;
    color: #292929;
}

.footer__btn {
    position: relative;
    z-index: 1;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    width: 301px;
    height: 54px;
    border: 1px solid #292929;
    border-radius: 8px;
    font-family: 'Manrope';
    font-weight: 500;
    font-size: 14px;
    color: #292929;
}
@media screen and (max-width: 767px){
    .footer__btn {

    }
}

.footer__btn span {
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid #292929;
}

#exit {
	cursor: pointer;
}

.disable {
    display: none !important;
}

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