.header-block {
    position: fixed;
    width: 100%;
    z-index: 3333;
    top: 0;
}

.header {
    background: #271F32;
    padding: 2px 0px;
}

.header__top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__top-left {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.header__logo a, .header__event a{
    display: flex;
}

.header__top-buttons {
    display: flex;
    gap: 12px;
    margin-left: auto;
}

.header__logo img {
    width: auto;
}

.header-block ul {
    display: flex;
    margin: 0;
    padding: 0;
    gap: 12px;
}

.header-block ul li{
    list-style: none;
}

.header-block ul li a{
   text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.header__button-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: fit-content;
    padding: 9px 14px;
    border-radius: 8px;
    border: 1px solid #5BFBBD;
    background: transparent;
    font-weight: 500;
    color: #5BFBBD;
    font-size: 15px;
    text-decoration: none;
}

.header__button-outline:visited {
    color: #5BFBBD;
}

.header__button-fill {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: fit-content;
    padding: 9px 14px;
    border-radius: 8px;
    border: 1px solid #5BFBBD;
    font-size: 15px;
    font-weight: 500;
    background: #5BFBBD;
    color: #0C0C0C;
    text-decoration: none;
}

.header__button-fill:visited {
    color: #0C0C0C;
}

.mobile__menu {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 132px;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    height: fit-content;
    background: #271F32;
    padding: 12px;
    display: flex;
    justify-content: center;
    border-radius: 0px 0px 0px 16px;
}

.mobile__menu.active {
    right: 0;
}

.header__burger-close {
    display: none;
}



@media screen and (min-width: 992px) {

    .header__logo img {
        max-height: 60px;
    }

    .header__logo {
        margin-right: 40px;
    }

    .header__burger {
        display: none;
    }

    .mobile__menu {
        display: none;
    }
}

@media screen and (max-width: 991.98px) {

    .header__logo img {
        max-height: 60px;
    }

    .header__menu {
        display: none;
    }

    .header-menu-wrap ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .header-menu-wrap ul li a{
        text-align: center;
        font-weight: 500;
        width: 100%;
        display: block;
    }
}