/* Header Styles */
.header_banner_text {
    z-index: 1000;
    height: 68px;
}

.logo_and_btn {
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 0;
}

.left-logo-section {
    display: flex;
    align-items: center;
    gap: 0;
}

.left-logo-section .img-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.left-logo-section .img-link img {
    height: 35px;
    width: auto;
}

.logo-title {
    color: white;
    font-family: Calibri;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.divider {
    width: 0.5px;
    height: 44px;
    background-color: #BFD3DE;
    margin: 0 10px;
}

.icon-menu-section {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.icon-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    height: 40px;
}


.icon-item i {
    color: white;
    font-size: 18px;
    font-weight: normal;
    padding: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .logo_and_btn {
        padding: 0 15px;
    }

    .logo-title {
        font-size: 18px;
    }

    .menu-link {
        font-size: 14px;
    }

    .divider {
        height: 35px;
        margin: 0 8px;
    }
}