.menu-title-1 {
    font-size: 12px;
    color: black;
}

.menu-banner-wrap-1 {
    height: auto;
    width: 250px;
    /* Adjust height dynamically */
    display: flex;
    flex-direction: column;
}

.menu-banner-image-1 {
    overflow: hidden;

}

.menu-banner-image-1 img {
    aspect-ratio: 2/1.7;
    object-fit: cover;
    object-position: top;
    width: 100%;
    transition: all 0.5s ease;

}

.menu-banner-content-1 {
    gap: 5px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;

}

.menu-banner-content-1 h4 {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 2;
}

.menu-banner-content-1 .btn {
    font-weight: 700;
    background-color: var(--primary);
}

.menu-banner-content-1 .btn:hover {
    background-color: red;
    color: white;
}

.menu-banner-wrap-1:hover img {
    transform: scale(1.1);
}

.mega_menu_container_1 {
    background-color: white;
    border: 1px solid #ddd;
    padding: 18px;
    display: flex;
    justify-content: center;
}



.row_container_1 {
    display: flex;
    gap: 10px;
}

.menu-list-container_1 {
    height: 280px;
    display: flex;
    min-width: 40%;
    flex-wrap: wrap;
    overflow-y: scroll;
    scrollbar-width: none;
}

.mega_links_container_1 {
    min-width: 33%;
}

.menu-title-1 {
    font-size: 19px;
    font-weight: 500;
    display: block;
    color: #161c27;
}

.menu-title-1:hover {
    color: var(--hov-primary);
}

.menu-list-container_1 ul {
    margin-top: 30px;
    padding-bottom: 5px;
}

.menu-list-container_1 li {
    line-height: 1;
    display: block;
    margin-bottom: 16px;
}

.menu-list-container_1 li a {
    font-size: 15px;
    color: black;
    display: block;
    line-height: 1.4;
}

.menu-list-container_1 li a:hover {
    color: var(--hov-primary);
}