.top {
    display: flex;
    justify-content: center;
    position: relative;
    top: 24px;
}

.topCont {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    position: relative;
    width: 90%;
    height: 80px;
    padding: 18px 24px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all .4s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    user-select: none;
    -webkit-user-select: none;
}

.glImg {
    display: block;
    width: 150px;
    filter: brightness(0) invert(1);
    transition: all .3s;
    cursor: pointer;
}

.glImg:hover {
    transform: scale(1.1);
    filter: none;
}

.headBtns {
    display: flex;
    gap: 10px;
}

.headBtns a {
    font-weight: 500;
    color: white;
}

.topBtn {
    display: block;
    width: 40px;
    transition: all .3s;
    cursor: pointer;
}

.topBtn:hover {
    transform: scale(.9);
}

.headSoc {
    display: flex;
    gap: 10px;
}

.animBtn:hover::after {
    width: 100%;
    border: 1px solid rgb(255, 255, 255, 1);
}

.animBtn:hover::before {
    width: 100%;
    border: 1px solid rgb(255, 255, 255, 1);
}

.animBtn::after {
    width: 0%;
    margin: 0 auto;
    display: block;
    transition: all .2s;
    border: 1px solid rgb(255, 255, 255, 0);
    content: " ";
    position: relative;
    bottom: -2px;
}

.animBtn::before {
    width: 0%;
    margin: 0 auto;
    display: block;
    transition: all .2s;
    border: 1px solid rgb(255, 255, 255, 0);
    content: " ";
    position: relative;
    top: -3px;
}

/* VIP Button */
@keyframes gradientMove {
    0% {
        color: #ff6b6b;
    }

    25% {
        color: #f8e71c;
    }

    50% {
        color: #50e3c2;
    }

    75% {
        color: #00aaff;
    }

    100% {
        color: #ff6b6b;
    }
}

.vipBtn {
    font-weight: 600 !important;
    color: gold;
    animation: gradientMove 4s linear infinite;
}

/* Mobile menu */

.topCont.open {
    height: 500px;
}

.burger {
    display: none;
    position: relative;
    width: 30px;
    height: 23px;
    border: none;
    background-color: transparent;
    z-index: 4;
}

.burger span {
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: white;
    transition: transform .5s, opacity .5s, background-color .5s;
}

.burger span:nth-child(2) {
    transform: translateY(10px);
}

.burger span:nth-child(3) {
    transform: translateY(20px);
}

.topCont.open .burger span:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
}

.topCont.open .burger span:nth-child(2) {
    opacity: 0;
}

.topCont.open .burger span:nth-child(3) {
    transform: translateY(10px) rotate(45deg);
}

@media (max-width: 1279px) {

    .anim {
        transform: scale(0);
        transition: all .25s ease;
    }

    .burger {
        display: block;
        position: absolute;
        right: 20px;
        top: 26px;
    }

    .topCont {
        flex-direction: column;
        justify-content: flex-end;
    }

    .glBtn {
        position: absolute;
        top: 20px;
    }

    .headBtns {
        display: none;
        margin-bottom: 4px;
        flex-direction: column;
        align-items: center;
    }

    .headBtns a {
        margin-bottom: 10px;
        font-size: 22px;
    }

    .headSoc {
        display: none;
    }
}