/* ==========================================================
   Hero Banner
   Costa Power Industries Pvt Ltd
   Image-Only Responsive Banner
========================================================== */

.hero-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #075a9f;
}

.hero-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.hero-media {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 520px;
    margin: 0;
    padding: 0;
    object-fit: cover;
    object-position: center;
}

/* ==========================================================
   Large Desktop
========================================================== */

@media (min-width: 1600px) {
    .hero-image {
        max-height: 560px;
    }
}

/* ==========================================================
   Laptop
========================================================== */

@media (max-width: 1366px) {
    .hero-image {
        max-height: 470px;
    }
}

/* ==========================================================
   Tablet
========================================================== */

@media (max-width: 991px) {
    .hero-image {
        max-height: 400px;
        object-position: center;
    }
}

/* ==========================================================
   Mobile
========================================================== */

@media (max-width: 768px) {
    .hero-image {
        min-height: 250px;
        max-height: 330px;
        object-fit: cover;
        object-position: center;
    }
}

/* ==========================================================
   Small Mobile
========================================================== */

@media (max-width: 480px) {
    .hero-image {
        min-height: 210px;
        max-height: 270px;
        object-fit: cover;
        object-position: center;
    }
}