@font-face {
    font-family: "TT Norms Pro";
    src: url("../fonts/TTNorms-Regular.woff2") format("woff");
    font-weight: normal;
}
@font-face {
    font-family: "TT Norms Pro";
    src: url("../fonts/TTNorms-Bold.woff2") format("woff");
    font-weight: 700;
}

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: calc(100vh - 100px);
}
@media (max-width: 1024px) {
    .page {
        min-height: calc(100vh - 200px);
    }
}
@media (max-width: 767px) {
    .page {
        min-height: calc(100vh - 200px);
    }
}

.header {
    width: 100%;
    position: fixed;
    z-index: 10;
    background: #000;
}

.header--ar {
    background: #000 url(../img/bg-t-l-n.png) no-repeat 0 0;
    background-size: auto 100%;    
}
@media (max-width: 767px) {
    .header--ar {
        background: #000 url(../img/bg-t-n.png) no-repeat 60% 0;
        background-size: auto 100%;
    }
}

.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: 146px;
    position: relative;
    width: 100%;
}
@media (max-width: 1024px) {
    .header__inner {
        height: 120px;
    }
}
@media screen and (max-width: 991px) {
    .header__inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 767px) {
    .header__inner {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.header--ar .header__inner {
    justify-content: flex-end;
}

.page--n {
    min-height: 100vh;
    justify-content: space-between;
}

.page--n .header {
    position: static;
}

.page--n .header__inner {
    padding-top: 40px;
    padding-bottom: 40px;
    height: auto;
}

.logo {
    display: flex;
    align-items: center;
}
@media (max-width: 1024px) {
    .header .logo {
        max-width: 50%;
    }
}
@media (max-width: 767px) {
    .header .logo {
        max-width: 75%;
    }
}

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

.lang-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 108px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 2px;
    position: absolute;
    right: 40px;
    top: 70px;
    font-family: 'TT Norms Pro';
    font-weight: 700;
    font-size: 16px;
    color: #FC4D14;
    text-decoration: none;
}
@media screen and (max-width: 991px) {
    .lang-btn {
        right: 20px;
    }
}
@media (max-width: 767px) {
    .lang-btn {
        right: 15px;
        width: 70px;
        top: 40px;
        height: 34px;
    }
}

.lang {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    width: 82px;
    min-height: 34px;
    border: 1px solid #BABABA;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    right: 140px;
    top: 50%;
    margin-top: -17px;
    background: #000;
}
@media (max-width: 767px) {
    .lang {
        right: 15px;
        width: 70px;
    }
}

.header--ar .lang {
    left: 140px;
    right: auto;
}
@media (max-width: 767px) {
    .header--ar .lang {
        left: 15px;
    }
}

.lang__item {
    font-family: 'TT Norms Pro';
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #BABABA;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    height: 32px;
    width: 100%;
    padding-left: 20px;
    padding-right: 5px;
    text-decoration: none;
}
@media (max-width: 767px) {
    .lang__item {
        font-size: 14px;
        padding-left: 10px;
    }
}

.lang__item:after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: url(../img/down.svg) no-repeat 50% 50%;
    background-size: 12px 8px;
    
}

.lang__list {
    width: 100%;
    padding-left: 20px;
    display: none;
}
@media (max-width: 767px) {
    .lang__list {
        padding-left: 10px;
    }
}

.lang.show .lang__list {
    display: block;
}

.lang.show .lang__item:after {
    transform: rotate(180deg);
}

.lang__list__item {
    display: flex;
    height: 34px;
    align-items: center;
    font-family: 'TT Norms Pro';
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #BABABA;
    text-transform: uppercase;
    text-decoration: none;
    margin: 5px 0;
}
@media (max-width: 767px) {
    .lang__list__item {
        font-size: 14px;
    }
}

.page__main {
    display: flex !important;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
    position: relative;
    padding-top: 146px;
    min-height: calc(100vh - 100px);
}
@media (max-width: 767px) {
    .page__main {
        min-height: calc(100vh - 200px);
    }
}

.page--n .page__main  {
    padding-top: 0;    
    min-height: auto;
    justify-content: space-between;
}

.footer {
    height: 100px;
    background: #E74211;
}
@media (max-width: 767px) {
    .footer {
        height: 200px;
        display: flex;
        align-items: flex-start;
    }
}

.footer__inner {
    max-width: 1240px;
    padding-left: 40px;
    padding-right: 40px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: space-between;
}
@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: 200px;
        padding-top: 0;
        padding-bottom: 0;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
    }
}

.footer__item p {
    margin: 0;
    text-align: center;
    font-family: 'TT Norms Pro';
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    color: #FFFFFF;
    margin-bottom: 10px;
}
@media (max-width: 767px) {
    .footer__item p {
        margin-top: 30px;
    }
}

.footer__btns__item {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-decoration: none;
    max-width: 100%;
    width: 260px;
    height: 38px;
    background: #FFFFFF;
    border-radius: 5px;
    font-family: 'TT Norms Pro';
    font-weight: 700;
    font-size: 10px;
    line-height: 1;
    text-decoration-line: underline;
    color: #E74211;
}
@media screen and (max-width: 767px) {
    .footer__btns__item {
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100%;
    }
}

.footer__btns__item span {
    height: 12px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    margin-left: 10px;
    border-left: 1px solid #E74211;
}

.footer__btns__item img {
    min-width: 12px;
}

@media (max-width: 767px) {
    .footer .logo {
        flex-wrap: wrap;
        justify-content: center;
        padding-right: 0;
    }
    .footer .logo img {
    }
}

.disable {
    display: none !important;
}

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