.inner-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.inner-header-right {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
}

.inner-header-right a {
    display: block;
}

/* ── Sub-header ── */
#sub-header {
    background-color: #333333;
}

#sub-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
}

#sub-header .left-info ul,
#sub-header .social-icons ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

#sub-header .left-info ul li {
    padding: 0 15px;
    border-left: 1px solid #4d4d4d;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    color: #afafaf;
    line-height: 50px;
}

#sub-header .left-info ul li:first-child {
    border-left: none;
}

#sub-header .left-info ul li:last-child {
    border-right: 1px solid #4d4d4d;
}

#sub-header .left-info ul li i {
    margin-right: 10px;
    color: var(--main);
    font-size: 13px;
}

#sub-header .social-icons ul li {
    line-height: 50px;
    margin-left: 5px;
}

#sub-header .social-icons ul li i {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #b3b3b3;
    color: #afafaf;
    border-radius: 50%;
    font-size: 12px;
}

#sub-header .social-icons ul li i:hover {
    background-color: var(--main);
    border-color: transparent;
    color: #ffffff;
}

#header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

body {
    /* padding-top: 120px; */
}

@media (max-width: 767px) {
    #sub-header .container {
        flex-direction: column;
        height: auto;
        /* padding: 10px 0;
        gap: 8px; */
    }

    #sub-header .left-info ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    #sub-header .left-info ul li {
        line-height: 30px;
    }

    #sub-header .social-icons ul {
        justify-content: center;
    }
}
