@font-face {
    font-family: "SF Pro Text";
    src: url(../fonts/SF-Pro-Text-Light.woff2) format("woff2");
    font-weight: 300;
}
@font-face {
    font-family: "SF Pro Text";
    src: url(../fonts/SF-Pro-Text-Regular.woff2) format("woff2");
    font-weight: 400;
}
@font-face {
    font-family: "SF Pro Text";
    src: url(../fonts/SF-Pro-Text-Medium.woff2) format("woff2");
    font-weight: 500;
}
@font-face {
    font-family: "SF Pro Text";
    src: url(../fonts/SF-Pro-Text-Semibold.woff2) format("woff2");
    font-weight: 600;
}
@font-face {
    font-family: "SF Pro Text";
    src: url(../fonts/SF-Pro-Text-Bold.woff2) format("woff2");
    font-weight: 700;
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing:border-box;
}
ul,
ol,
li {
    list-style: none;
}
a {
    text-decoration: none;
}
html,
body {
    height: 100%;
    font-family: "SF Pro Text";
    font-weight: 400;
    background-color: #101029;
    color: #FFFFFF;
}
body._lock {
    overflow: hidden;
}
.wrapper {
    min-width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
._container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}
._ibg {
    position: relative;
}
._ibg img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

/* ----------- header --------------- */

@media (min-width: 320px) {

.header {
    margin: 20px 0px 0px 0px;
    padding: 10px;
    position: absolute;
    width: 100%;
    z-index: 99999;
    background-color: #101029;
}
.menu-burger {
    z-index: 1000;
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
}
.menu-burger span,
.menu-burger::before,
.menu-burger::after {
    position: absolute;
    left: 0;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background: #5B00FB;
}
.menu-burger::before,
.menu-burger::after {
    content: " ";
}
.menu-burger::before {
    top: 20%;
}
.menu-burger::after {
    bottom: 20%;
}
.menu-burger span {
    top: 50%;
    transform: scale(1) translate(0px, -50%);
}
.menu-burger._active span{
    transform: scale(0) translate(0px, -50%);
}
.menu-burger._active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);;
}
.menu-burger._active::after {
    width: 100%;
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);;
}
.fake__block {
    display: none;
}
.header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__list {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 150px 0px 0px 50px;
    transition:left 0.3s ease 0s;
    z-index: 100;
    background-color: #101029;
}
._active {
    left: 0%;
}
.nav__list >*:not(:last-child) {
    margin: 0px 0px 30px 0px;
}
.nav__link {
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 171%;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease 1ms;
}
.register {
    z-index: 100;
}
}
@media (min-width:690px) {

    .menu-burger {
        display: none;
    }
    .fake__block {
        display: block;
    }
    .nav__list {
        position: static;
        padding: 0;
        width: auto;
        height: auto;
        display: flex;
        align-items: center;
        background-color: transparent;
    }
    .nav__list >*:not(:last-child) {
        margin: 0px 50px 0px 0px;
    }
    .nav__li {
        position: relative;
    }
    .nav__link::before {
        content: '';
        position: absolute;
        width: 120%;
        height: 3px;
        top: -116%;
        left: -10%;
        transition: all 0.3s ease 1ms;
    }
    .nav__link._active__header {
        color: #5B00FB;
    }
    .nav__link._active__header:before{ 
        background-color: #5B00FB;
    }
    .nav__link {
        font-size: 14px;
    }
    .header {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        margin: 40px 0px 0px 0px;
        padding: 15px 0px;
    }
}

/* ----------- section-subheader --------------- */

@media (min-width: 320px) {

.section-subheader {
    padding: 110px 0px 20px 0px;
    background-color: #1E1E37;
}
.subheader__wrapper >*:not(:last-child) {
    margin: 0px 0px 10px 0px;
}
.subheader__text {
    font-size: 20px;
    font-weight: 500;
}
.subheader__list {
    display: flex;
}
.subheader__list >*:not(:last-child) {
    margin: 0px 20px 0px 0px;
}
.subheader__link {
    font-size: 14px;
    color: #FFFFFF;
    position: relative;
}
.subheader__li {
    position: relative;
}
.subheader__li:not(:first-child)::before{
    content: '';
    width: 3px;
    height: 3px;
    background-color: #FFFFFF;
    position: absolute;
    top: 45%;
    left: -10px;
}
}
@media (min-width:690px) {

    .main {
        background: url(../image/Ellipse\ 5.png) right 170% no-repeat;
    }
    .subheader__wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .subheader__wrapper >*:not(:last-child) {
        margin: 0px;
    }
    .section-subheader {
        padding: 140px 0px 20px 0px;
    }
}

/* ----------- section-about --------------- */

@media (min-width:320px) {

    .section-about {
        margin: 40px 0px 60px 0px;
    }
    .about__wrapper {
        position: relative;
        background-color: #1E1E37;
        border-radius: 10px;
    }
    .about__content >*:not(:last-child) {
        margin: 0px 0px 20px 0px;
    }
    .about__content {
        line-height: 140%;
        padding: 32px 10px;
    }
    .about__image {
        display: none;
    }
    @media (min-width:1024px) {

        .about__content {
            font-size: 16px;
            padding: 32px 0px 32px 32px;
        }
    }
    .section-about {
        margin: 60px 0px 120px 0px;
    }
}
@media (min-width:1200px) {

    .about__wrapper  {
        position: relative;
        display: flex;
    }
    .about__content {
        max-width: 665px;
    }
    .about__image {
        display: block;
        position: absolute;
        top: -3%;
        right: 0%;
        padding: 0px 0px 44% 38%;
    }
    .about__image img {
        border-radius: 5px;
    }
    .section-about {
        margin: 60px 0px 160px 0px;
    }
}


/* ----------- footer --------------- */

@media (min-width:320px) {

    .footer {
        background-color: rgba(9, 1, 13, 1);
        padding: 30px 0px;
    }
    .footer__container >*:not(:last-child) {
        margin: 0px 0px 40px 0px;
    }
    .form__footer {
    }
    .form__footer >*:not(:last-child) {
        margin: 0px 0px 20px 0px;
    }
    .form__text {
        font-size: 16px;
        font-weight: 600;
    }
    .input__wrapper {
        position: relative;
        width: 100%;
    }
    .footer__input {
        width: 100%;
        background: transparent;
        border: 0.5px solid #D0D0D0;
        border-radius: 48px;
        padding: 15px 20px 15px 10px;
        outline: white;
        color: white;
        text-align: center;
    }
    .footer__input::placeholder {
        padding-left: 40px;
        font-size: 14px;
        text-align: left;
        color: rgba(208, 208, 208, 1);
    }
    .footer__button {
        background:linear-gradient(90deg, #5D00FA 0%, #D70BCA 100%);
        border-radius: 48px;
        padding: 9px 20px;
        border: none;
        position: absolute;
        right: 0.2%;
        top: 2%;
        cursor: pointer;
        transition: all 0.3s ease 1ms;
    }
    .footer__button:hover {
        opacity: 0.7;
    }
    .footer__item >*:not(:last-child) {
        margin: 0px 0px 15px 0px;
    }
    .item__headtext {
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        border-bottom: 0.5px solid #D0D0D0;
        padding-bottom: 10px;
    }
    .item__contact >*:not(:last-child) {
        margin: 0px 0px 10px 0px;
    }
    .footer__wrapper  >*:not(:last-child) {
        margin: 0px 0px 40px 0px;
    }
    .footer__mail {
        color: #FFFFFF;
        font-size: 14px;
    }
    .item__social >*:not(:last-child) {
        margin: 0px 10px 0px 0px;
    }
    .item__store >*:not(:last-child){
        margin: 0px 0px 5px 0px;
    }
    .item__list >*:not(:last-child) {
        margin: 0px 0px 10px 0px;
    }
    .item__li {
        background: url(../image/footer/Polygon\ 1.png) left center no-repeat;
        padding-left: 15px ;
    }
    .item__link {
        color: #FFFFFF;
        font-size: 14px;
        text-transform: capitalize;
    }
    .footer__data >*:not(:last-child){
        margin: 0px 0px 20px 0px;
    }
    .data__img {
        text-align: center;
    }
    .data__reserved {
        text-align: center;
    }
    }
    @media (min-width: 460px) {
    
        .footer__input {
            background: transparent url(../image/footer/envelope.png) 5% center no-repeat;
        }
        .input__wrapper {
            width: 410px;
        }
        .form__footer {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .footer__wrapper {
            display: grid;
            grid-template-columns: repeat(2, minmax(180px,1fr));
            gap: 50px;
        }
        .footer__data {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .data__img {
            text-align: left;
        }
        .data__reserved {
            text-align: left;
        }
    }
    @media (min-width: 769px) {
    
        .footer {
            padding: 50px 0px 30px 0px;
        }
        .footer a:hover {
            text-decoration: underline;
        }
        .footer__wrapper {
            display: grid;
            grid-template-columns: repeat(4, minmax(150px,1fr));
            gap: 50px;
        }
        .footer__container >*:not(:last-child) {
            margin: 0px 0px 60px 0px;
        }
    }