.header-default {
    color: var(--color-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-color: white;
}

.header-top {
    background-color: white !important;
    border-bottom: 1px solid var(--color-light-dark);
    width: 100%;
    z-index: 99999;

    .container {
        display: flex;
        justify-content: space-between;
        align-items: center;

        .hava {
            display: flex;
            align-items: center;
            gap: var(--space-s);

            img {
                height: 28px !important;
            }

        }
    }
}

.header-default .logo {
    text-decoration: none;

    & img {
        max-height: 60px;
        width: auto;
        vertical-align: middle;

        @media(max-width:768px) {
            max-height: 45px;
        }
    }
}


.header-nav {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
    text-wrap: nowrap;
    box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(30px);
    position: sticky;
    top: 0;
    z-index: 9998;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: var(--space-s, 16px);
    margin: 0;
    padding: 0;

    @media(max-width:992px) {
        :last-child a {
            margin-right: 12px;
        }
    }
}

.main-nav ul a {

    @media(max-width: 992px) {
        border-radius: 100px;
    }

}

.main-nav ul ul {
    display: none;
}