/* HERO WRAPPER */
.bi-hero {
    position: relative;
}

/* BANNER */
.bi-hero-banner {
    height: 220px;
    overflow: hidden;
}

.bi-hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* WHITE SECTION BELOW */
.bi-hero-bottom {
    height: 100px;
    background: #fff;
}

/* LOGO (MAIN PART) */
.bi-hero-logo {
    position: absolute;
  left: 160px;
  bottom: 10px;
}

.bi-hero-logo img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: contain;

    /* SHADOW (important) */
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Tablet */
@media (max-width: 992px) {
    .bi-hero-logo {
        left: 30px;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .bi-hero-banner {
        height: 160px;
    }

    .bi-hero-bottom {
        height: 70px;
    }

    .bi-hero-logo {
        left: 20px;
        bottom: 5px;
    }

    .bi-hero-logo img {
        width: 85px;
        height: 85px;
    }
}

/* Small mobile (320px) */
@media (max-width: 360px) {
    .bi-hero-logo img {
        width: 75px;
        height: 75px;
    }
}

.listing-wrapper {
    padding-top: 20px;
    padding-bottom: 30px;
}