.header-top {
    padding: 5px 0;
    background: #09ab9c;
}

.header-top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top-phone-items {
    display: flex;
    gap: 25px;
    align-items: center;
}

.header-top-phone-item {
    color: white;
    font-size: 15px;
    font-weight: 500;
}

.header-top-phone-item>a>i {
    margin-right: 5px;
}

.header-top-social-items {
    display: flex;
    gap: 5px;
    align-items: center;
}

.header-top-location-item {
    color: white;
    font-size: 15px;
    font-weight: 500;
    margin-right: 15px;
}


.header-top-location-item>a>i {
    margin-right: 5px;
}

.header-top-icon-item {
    background: #04776c;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}

.header-menu {
    padding: 5px 0;
}

.header-menu-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-menu-items {
    display: flex;
    gap: 15px;
}

.header-menu-item {
    padding: 2px 5px;
}

.header-menu-item>a {
    transition: 0.2s;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    color: #101010;
}

.header-menu-item-active>a {
    font-weight: 700;
}

.header-menu-item>a:hover {
    transition: 0.2s;
    color: #04776c;
}

.header-menu-item-active>a:hover {
    color: #101010 !important;
}

@media (max-width:1280px) {
    .header-menu-items {
        display: flex;
        gap: 10px;
    }

    .header-menu-item>a {
        font-size: 14px;
    }
}

/* Mobile */

.sidebar {
    width: 15em;
    height: 100vh;
    background-color: white;
    transition: 0.7s;
    position: fixed;
    z-index: 10000;
    top: 0;
    bottom: 0;
    left: 0;
    padding: 15px;
    box-shadow: 8px 10px 13px 8px #00000021;
}

.is-closed {
    transform: translateX(-18em);
}

.mobile-menu-header {
    position: fixed;
    z-index: 1000;
    background: white;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid #ededed;
    padding: 5px 0;
}

.mobile-header-menu-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mobile-header-logo>img {
    width: 100%;
    max-width: 225px;
}

.mobile-header-menu-button>i {
    font-size: 32px;
    color: #09ab9c;
}

.header-menu-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-menu-item-mobile {
    display: block;
    width: 100%;
    text-align: center;
    padding: 5px 0;
    text-decoration: none;
    font-size: 20px;
    color: #101010;
    font-weight: 500;
    border-bottom: 1px solid #f9f9f9;
    margin-bottom: 5px;
}
