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;
    font-family: Open Sans, sans-serif;
    min-height: 100%;
    position: relative;
    background: linear-gradient(71.57deg, #0078BE 0%, #133658 101.11%);
}
@media screen and (max-width: 767px){
    body {
        background: #fff;
    }
}

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 - 167px);
    position: relative;
    background: url(../img/bg.png) no-repeat 0 107px;
    background-size: cover;
    background-attachment: fixed;
}
@media screen and (max-width: 767px){
    .page {
        background: none;
    }
}

.header {
    width: 100%;
    z-index: 10;
    height: 280px;
    position: relative;
}
@media screen and (max-width: 767px){
    .header {
        height: 149px;
        background: url(../img/bg-t.png) no-repeat 0 0, linear-gradient(71.57deg, #0078BE 0%, #133658 101.11%);
        border-radius: 0 0 30px 30px;
        background-size: cover;
    }
}

.header__inner {
    max-width: 1240px;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    z-index: 1;
    height: 280px;
    position: relative;
}
@media screen and (max-width: 767px){
    .header__inner {
        padding-left: 20px;
        padding-right: 20px;
        height: 149px;
    }    
}

.header__btn {
    position: absolute;
    right: 40px;
    top: 35px;
    width: 100px;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    border: 1px solid #FFFFFF;
    border-radius: 10px;
    font-weight: 300;
    font-size: 14px;
    line-height: 120%;
    color: #FFFFFF;
    text-decoration: none;    
}
@media screen and (max-width: 767px){
    .header__btn  {
        right: 20px;
        top: 20px;
        height: 30px;
        width: 80px;
        font-size: 12px;
    }    
}

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

.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 - 280px - 165px);
}
@media (max-width: 767px){
    .page__main {
        min-height: calc(100vh - 149px - 149px);
    }
}

.footer {
    height: 165px;
}
@media (max-width: 767px){
    .footer {
        display: flex;
        height: 149px;
        background: url(../img/bg-t.png) no-repeat 0 0, linear-gradient(71.57deg, #0078BE 0%, #133658 101.11%);
        background-size: cover;
        border-radius: 30px 30px 0 0;
    }    
}

.footer a {
    color: #fff;
}

.footer__inner {
    max-width: 1240px;
    padding-left: 40px;
    padding-right: 40px;
    height: 167px;
    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;       
        padding-top: 30px;
        padding-bottom: 30px;    
        margin: 0;
        width: 100%;
        height: 149px;
    }
}

.footer__item p {
    margin: 0;
    font-weight: 700;
    font-size: 14px;
    line-height: 120%;
    color: #FFFFFF;
    margin-bottom: 15px;
    text-align: center;
}
@media screen and (max-width: 767px){
    .footer__item {
        width: 100%;
    }
}

.footer__btns {
    display: flex;
    justify-content: center;
}

.footer__btns__item {
    width: 360px;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    height: 55px;
    border: 1px solid #FFFFFF;
    background: linear-gradient(71.57deg, #0078BE 0%, #133658 170%);
    border-radius: 10px;
    font-weight: 300;
    font-size: 14px;
    line-height: 120%;
    color: #FFFFFF;
    text-decoration: none;    
}
@media screen and (max-width: 767px){
    .footer__btns__item {
        padding-left: 20px;
        padding-right: 20px;
        width: 282px;
        height: 45px;
        background: linear-gradient(71.57deg, #0078BE 0%, #133658 170%);
    }
}

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

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

#exit {
	cursor: pointer;
}

.disable {
    display: none !important;
}

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