.banner {
    width: 100%;
    height: 160px;
    background: url("../assets/images/header-footer-images/abisy-breadcum-background.png") center/cover no-repeat;
    position: relative;
}

/* HEADER BACKGROUND */
.top-header {
    background: linear-gradient(to right, #d4b45c, #a45a1a, #5a2a00);
}

/* LEFT LOGO */
.main-logo {
    max-height: 80px;
    width: auto;
}

/* RIGHT LOGOS WRAPPER */
.right-logos-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* RIGHT LOGOS */
.right-logos-wrapper img {
    max-height: 55px;
    width: auto;
}

/* ===== TABLET & MOBILE ===== */
@media (max-width: 991px) {
    .right-logos-wrapper {
        justify-content: center;
    }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 576px) {
    .main-logo {
        max-height: 60px;
    }

    .right-logos-wrapper img {
        max-height: 45px;
    }
}
