/**
 * Css for Widget
 */
.block-image-header-custom  {
}

.block-image-header-custom  .blockImage{
    width: 100%;
    aspect-ratio: 3/1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.block-image-header-custom  .blockImage>picture{
    width: 100%;
    height: 100%;
}

.block-image-header-custom  .blockImage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0) 40%), rgba(0, 0, 0, 0.50);
}

.block-image-header-custom  .blockImage-title-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 4rem;
    font-weight: 400;
    line-height: 5rem;
    word-wrap: break-word
}

.block-image-header-custom  .blockImage-title-container .container{
    height: 100%;
    display: flex;
    align-items: center;
}


.block-image-header-custom  .blockImage img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/*
xs      <576px      col-            smart-phone
sm      ≥576px 	    col-sm
md      ≥768px 	    col-md          ipad
lg      ≥992px 	    col-lg          ipad pro
xl      ≥1200px 	col-xl          desktop
xxl     ≥1400px     col-xxl
*/

/*============================================================
 *
 * XXL  desktop large
 *
 */
@media (min-width: 1400px) {

}

/*============================================================
 *
 * XL   desktop
 *
 */
@media (max-width: 1399px) {

}

/*============================================================
 *
 * LG   small desktop
 *
 */

@media (max-width: 1199px) {

}

/*============================================================
 *
 * LG   ipadpro
 *
 */
@media (pointer:coarse) and (max-width: 1199px) {

}


/*============================================================
 *
 *  MD  ipad
 *
 */
@media (max-width: 991px) {

}


/*============================================================
 *
 *  SM smart-phone 576-767
 *  XS 0-567
 */
@media (max-width: 767px) {
    .block-image-header-custom  .blockImage{
        aspect-ratio: 4/3;
    }

    .block-image-header-custom  .blockImage-title-container {
        font-size: 3rem;
        line-height: 3.5rem;
    }
}


/*============================================================
 *
 * XS   smartphone
 *
 */
@media (min-width: 10px)  and (max-width: 575px) {

}
