.banner_content {
    height: 270px;
    padding-top: 0px;
}

.company-box img {
    width: 40px;
    /* Set desired width */
    height: 90px;
    /* Set desired height */
    object-fit: contain;
    /* Ensures the image scales properly without distortion */
    display: block;
    /* Removes any default inline spacing */
    margin: 0 auto;
    /* Centers the image horizontally */
}

.navbar-brand-mobile-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    display: none;
}

@media (max-width: 991px) {
    .navbar-brand-mobile-image {
        display: inline-block;
    }

    .navbar-brand-image {
        display: none;
    }
}

@media (max-width: 776px) {
    .navbar-brand-mobile-image {
        display: none;
    }

    .navbar-brand-image {
        display: inline-block;
    }
}

.navbar-brand-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
}