@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-SemiBold/Manrope-SemiBold.woff2') format('woff2'),
       url('../fonts/Manrope-SemiBold/Manrope-SemiBold.woff') format('woff'),
       url('../fonts/Manrope-SemiBold/Manrope-SemiBold.ttf')  format('truetype');
       font-weight: 600;
}

body, html {
  margin: 0;
  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: 100vh;
}

.header {
    width: 100%;
    margin-top: 80px;
    background: url(../img/bg.png) no-repeat 100% 50%;
    background-size: auto 57px;
    position: relative;
}
@media (max-width: 767px){
    .header {
        margin-top: 30px;
        background-size: auto 47px;
    }
}

.header:before {
    content: '';
    display: block;
    width: 350px;
    height: 57px;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
}
@media (max-width: 767px){
    .header:before {
        height: 47px;
        width: 265px;
    }
}

.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: 57px;
}
@media (max-width: 767px){
    .header__inner {
        padding-left: 15px;
        padding-right: 15px;
        height: 47px;
    }
}

.header .logo img {
    display: block;
    max-width: 100%;
    position: relative;
    z-index: 1;
}
@media (max-width: 767px){
    .header .logo img {
        height: 40px;
        width: auto;
    }
}

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

.footer {
    background: url(../img/bg.png) no-repeat 0 50%;
    background-size: auto 57px;
    position: relative;
    margin-bottom: 60px;
}
@media (max-width: 767px){
    .footer {
        background: url(../img/bg.png) no-repeat 0 100%;
        background-size: 100% auto;
        padding-bottom: 70px;
        margin-bottom: 0;
    }    
}

.footer:before {
    content: '';
    display: block;
    width: 330px;
    height: 57px;
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
}
@media (max-width: 767px){
    .footer:before {
        display: none;
    }
}

.footer__inner {
    max-width: 1240px;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
    justify-content: flex-end;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
}
@media (max-width: 767px){
    .footer__inner {
        padding-left: 15px;
        padding-right: 15px;
        display: block;
        text-align: center;
        padding-top: 0;
        padding-bottom: 0;
    }
}

.footer__inner p {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    color: #EF3C28;
    position: absolute;
    top: -30px;
}
@media (max-width: 767px){
    .footer__inner p {
        position: static;
        text-align: center;
    }
}

.footer__btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-decoration: none;
    padding-left: 20px;
    padding-right: 20px;
    background: #01AA93;
    border-radius: 30px;
    font-family: 'Manrope', sans-serif;
    height: 55px;
    width: 248px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    color: #FFFFFF;
}
@media screen and (max-width: 767px){
    .footer__btn {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media screen and (max-width: 767px){
    .footer__btn:last-child {
        margin-top: 15px;    
    }    
}

.footer__btn span {
    display: flex;
    border-left: 1px solid #fff;
    text-decoration: underline;
    padding-left: 15px;
    margin-left: 15px;    
}

.footer__btn img {
    min-width: 20px;
    display: block;
}

.disable {
    display: none !important;
}

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