.image-section {
    height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.image-section img {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}


@media(max-width: 991px) {
    .image-section {
        height: 400px;
    }
}

@media(max-width: 575px) {
    .image-section {
        height: 185px;
        padding-inline: 0 !important;
    }
}