.header {
    display: flex;
    background: #16172C;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 5;
}

.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 19px 0;
}

.header-menu {
    display: flex;
    align-items: center;
    gap: 44px;
}

.header-menu a.active {
    color: white;
    font-weight: 700;
}

.header-menu a.disable {
    color: #FFFFFF80;
}
.header-menu a.disable-drop {
   opacity: 0.8;
   cursor: pointer;
}

.header-menu a {
    font-family: Avenir Next;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #FFFFFF;
}

.header-menu .soon {
    position: relative;
    z-index: 0;
}
.header-menu .soon:hover span {
    opacity: 1;
}
.header-menu .soon-dr:hover span {
    opacity: 1;
}
.header-menu .soon-dr span {
    position: absolute;
    pointer-events: none;
    left: 50%;
    text-align: center;
    bottom: 10px;
    opacity: 0;
    width: 100%;
    padding: 10px 0;
    transform: translateX(-50%);
    font-family: Avenir Next;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0%;
    background:white;
    color: #16172C!important;
    backdrop-filter: blur(15px);
    border-radius: 12px;
    transition: all 0.4s ease-in-out;
}


.header-menu .soon span {
    position: absolute;
    pointer-events: none;
    left: 50%;
    width: 200px;
    text-align: center;
    bottom: -80px;
    opacity: 0;
    transform: translateX(-50%);
    font-family: Avenir Next;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0%;
    color: #dedcdc;
    padding: 8px 12px;
    background: rgb(89 83 83);
    border-radius: 12px;
    transition: all 0.4s ease-in-out;
}

@media screen and (max-width:1024px) {
    .header__wrapper{
        padding: 16px 0 16px 0;
    }
    .header-menu {
        display: none;
    }

}
.info-popup {
    position: fixed;
    background: #16172C;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(160px);
    -webkit-backdrop-filter: blur(160px);
}

.info-popup__close {
    z-index: 1;
    border-radius: 900px;
    cursor: pointer;
    background-color: #0353F0;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 5%;
    transition: all 0.4s ease-in-out;
}

.info-popup__close:hover {
    scale: 1.1;
}

.info-popup__content {
    height: auto;
    width: 100%;
    max-width: 600px;
    border-radius: 32px;
    margin: 0 auto;
    position: relative;
    border: 1px solid #FFFFFF80;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 64px 32px 32px 32px;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1);
    transition: all .4s ease-in-out;
}

.info-popup__content h3 {
    font-family: Fixel Display;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
}

.info-popup__content a {
    padding: 12px;
    width: calc(100% - 24px);
    font-family: Avenir Next;
    font-weight: 600;
    font-style: Demi Bold;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-popup__content p {
    font-family: Avenir Next;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    text-align: center;
    line-height: 140%;
    letter-spacing: 0%;
    color: white;
}

@media screen and (max-width:1024px) {

    .info-popup__content {
        height: auto;
        width: 100%;
        max-width: 80%;
        border-radius: 32px;
        margin: 0 auto;
        position: relative;
        border: 1px solid #FFFFFF80;
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 24px 12px;
        ;
        box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1);
        transition: all .4s ease-in-out;
    }

    .info-popup__content h3 {
        font-size: 20px;
    }
}
.disable {
 
 cursor:pointer !important;
}