/* =====================================================
   SLIDESHOW.CSS — hamid_j6_v1
   Simple Custom Slider
   ===================================================== */

.hamid-slider-simple {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 420px;
    background: #000;
    overflow: hidden;
    box-sizing: border-box;
}

.hamid-slider-simple .hamid-slide {
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.hamid-slider-simple .hamid-slide.active {
    display: block;
}

.hamid-slider-simple img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-sizing: border-box;
}

/* Mobile */
@media (max-width: 768px) {
    .hamid-section-slideshow-1,
    .hamid-pos-slideshow-1,
    .hamid-section-slideshow-1 .container,
    .hamid-section-slideshow-1 .container-fluid,
    .hamid-section-slideshow-1 .row,
    .hamid-section-slideshow-1 [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: hidden !important;
    }

    .hamid-slider-simple {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        background: #000;
    }

    .hamid-slider-simple .hamid-slide {
        width: 100% !important;
        height: auto !important;
    }

    .hamid-slider-simple img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        display: block !important;
    }
}