/**
 * Css for Widget
 */

.block-html-direct-style-2{
    background-position: center center;
    background-repeat: no-repeat;
    padding-bottom: var(--website-padding-top-bottom);
}

.block-html-direct-style-2 .container-max-block {
    max-width: 400px;
    margin: 0 auto;
}

.block-html-direct-style-2 .container-max-block .block-container{
    text-align:center;
}

.block-html-direct-style-2 .container-max-block .block-container .block-title{
    text-align:center;
    color: #000;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.block-html-direct-style-2 .container-max-block .block-container .block-title-emphasis{
    color: var(--website-accent);
    font-style: italic;
    font-weight: 500;
}


.block-html-direct-style-2 .container-max-block .block-container .block-content{
    text-align:center;
    color: var(--website-secondary);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}



.block-html-direct-style-2 .container-max-block .block-container a.block-link{
    margin-top: 2rem;
}

.block-html-direct-style-2 .container-max-block .block-container a.block-link svg{
    width: 1rem;
}




/*
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) {

}


/*============================================================
 *
 *  Container 1100
 */
@media (max-width: 1200px) {
    .block-html-direct-style-2{
    }

}

/*============================================================
 *
 *  SM smart-phone 576-767
 *  XS 0-567
 */
@media (max-width: 767px) {
    .block-html-direct-style-2 .container-max-block {
        height: 80vh;
        min-height: 460px;
    }

    .block-html-direct-style-2 .container-max-block .block-container {
        max-width: 100vw;
    }

    .block-html-direct-style-2 .container-max-block .block-container .block-content {
        text-align: left;
        padding: 0 2rem;
    }

    .block-html-direct-style-2 .container-max-block {
        height: auto;
        min-height: auto;
    }
}

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

}

