@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-card --------------- */

@media (min-width:320px) {

    .section__card {
        margin: 50px 0px 0px 0px;
    }
    .card__choose {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin: 0px 0px 35px 0px; 
    }
    .choose__wrapper >*:not(:last-child){
        margin: 0px 0px 10px 0px;
    }
    .choose__text {
        font-size: 14px;
    }
    .choose__text span {
        font-size: 14px;
        font-weight: 500;
    }
    .choose__select {
        -webkit-appearance: none;
        background: transparent url(../image/select_arrow.png) 90% center no-repeat;
        width: 206px;
        color: #FFFFFF;
        border: 1px solid #FFFFFF;
        font-size: 14px;
        font-weight: 500;
        border-radius: 30px;
        outline: none;
        padding: 12px 20px;
        cursor: pointer;
    }
    .choose__select:hover {
        border: 1px solid #5B00FB;
    }
    /* ----------- card-navigation --------------- */

    .card-navigation {
        margin: 40px 0px 60px 0px;
        border-top: 1px solid #FFFFFF;
        border-bottom: 1px solid #FFFFFF;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 0px;
    }
    .left__link,
    .right__link {
        color: #FFFFFF;
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        border: 1px solid #FFFFFF;
        border-radius: 30px;
    }
    .navigation__text {
        font-size: 16px;
        font-weight: 600;
    }
    .left__link {
        background: url(../image/left.png) 10% center no-repeat;
        padding: 10px 20px 10px 30px;
    }
    .right__link {
        background: url(../image/right.png) 90% center no-repeat;
        padding: 10px 30px 10px 20px;
    }
    ._disable {
        opacity:0.5;
        cursor: none;
        pointer-events: none;
    }
}
@media (min-width:480px) {
    .choose__wrapper >*:not(:last-child){
        margin: 0px;
    }
    .choose__wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 420px;
    }
}
@media (min-width:760px) {
    .card-navigation {
        margin: 60px 0px;
    }
}
@media (min-width:1024px) {

    .card-navigation {
        margin: 60px 0px 120px 0px;
    }
}
@media (min-width:1200px) {

    .card-navigation {
        margin: 60px 0px 160px 0px;
    }
}

/* ----------- featured__wrapper --------------- */

@media (min-width:320px) {

    .section-featured {
        margin: 40px 0px 0px 0px;
    }
    .section-featured__container >*:not(:last-child) {
        margin: 0px 0px 30px 0px; 
    }
    .block__heading {
        font-size: 30px;
        font-weight: 600;
        text-align: center;
    }
    .item__card {
        text-align: center;
        background-image: linear-gradient(to left bottom, #bb82db, #ab7ed7, #9b7ad3, #8b76ce, #7a72c9, #6d68b9, #605daa, #54539b, #474080, #3a2f65, #2b1e4c, #1d0f35);
        border-radius: 10px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .card__image {
        border-radius: 5px;
    }
    .card__disription {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
        flex: 1 1 auto;
        margin-bottom: 30px;
    }
    .card__disription span {
        font-size: 14px;
        font-weight: 400;
    }
    .featured__wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .featured__wrapper >*:not(:last-child) {
        margin: 0px 0px 20px 0px;
    }
    .card__buy {
        margin: 20px 0px 0px 0px;
    }
    .card__buy >*:not(:last-child) {
        margin: 0px 0px 15px 0px;
    }
    .buy__text {
        margin-top: 20px;
        font-size: 14px;
        font-weight: 600;
        line-height: 200%;
    }
    .card__btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        font-size: 18px;
        font-weight: 600;
        color: #FFFFFF;
        padding: 14px 45px;
        border-radius: 46px;
        background:#FFFFFF;
        transition: all 0.3s ease 1ms;
    }
    .card__btn:hover {
        opacity: 0.7;
    }
    .card__btn span {
        background: linear-gradient(
            91.72deg, #5D00FA 25.01%, #D70BCA 96.4%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: #0000;
    }
    }
    @media (min-width:560px) {
    
        .featured__wrapper {
            display: grid;
            grid-template-columns: repeat(2, minmax(255px,1fr));
            gap: 30px;
        }
        .item__card {
            display: flex;
        }
        .featured__wrapper >*:not(:last-child) {
            margin: 0px;
        }
    }
    @media (min-width:964px) {
        .featured__wrapper {
            display: grid;
            grid-template-columns: repeat(3, minmax(230px,1fr));
            gap: 10px;
        }
        .section-featured {
            margin: 90px 0px 0px 0px;
            background: url(../image/Ellipse\ 5.png) right center no-repeat;
        }
    }
    @media (min-width:1125px) {
        .featured__wrapper {
            grid-template-columns: repeat(3, minmax(350px,1fr));
            gap: 30px;
        }
    }
    

/* ----------- 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;
        }
    }