@media only screen and (min-width: 320px) {
    .hero-block, .is-root-container .hero-block{
        position: relative;
        display: flex;
        align-items: center;
    }
    .hero-block.alignfull{
        padding-left:0px;
        padding-right:0px;
    }
    .hero-block .hero-txt-container{
        padding-left:var(--mobile-side-padding);
        padding-right:var(--mobile-side-padding);
    }
    /*Hero with image*/
   
    .hero-with-img figure, .editor-styles-wrapper .hero-with-img figure{
        position: absolute;
        left:0px;
        right:0px;
        width: 100%;
        height: 100%;
        z-index: 0;
        overflow:hidden;
        text-align:center;
    }
    .hero-with-img figure img.hero-image, .editor-styles-wrapper .hero-with-img figure img.hero-image{
        object-fit: cover;
        height: 100%;
        filter: blur(0px);
        transition: filter 1s ease-in-out 1s;

    }
    .hero-with-img figure:after, .editor-styles-wrapper .hero-with-img figure:after{
        background-image: url("../img/lk-green-bg.svg");
        opacity:0;
    }
    .post-template-default .hero-with-img figure:after, .editor-styles-wrapper .post-template-default .hero-with-img figure:after{
        width:auto;
    }
    .hero-block.animations-ready.hero-with-img figure:after{
        opacity:1;
    }
    .single-post .hero-with-img.animations-ready figure img.hero-image{
        filter: blur(3px);
    }
    /*Hero text settings*/
    .hero-txt-container, .is-root-container .hero-txt-container{
        z-index: 2;
        text-align: center;
        padding:100px 0px;
    }

    .hero-label, .is-root-container .hero-label{
        font-size:1.1em;
        margin-bottom:0px;
        z-index: 1;
    }

    .hero-title, .is-root-container .hero-title{
        font-size:var(--hero-title-font-size);
        margin-bottom: 10px;
        z-index: 1;
    }
    .hero-excerpt, .is-root-container .hero-excerpt{
        z-index: 1;
        font-weight:var(--hero-excerpt-font-weight);
    }
    .hero-button, .is-root-container .hero-button{
        z-index: 1;
    }
}

@media only screen and (min-width: 768px) {
    /*Hero text settings*/
    .hero-txt-container, .is-root-container .hero-txt-container{
        text-align: left;
    }
    
    .hero-txt-container .gb-headline, .is-root-container .hero-txt-container .gb-headline{
        width:60%;
    }

    .hero-title, .is-root-container .hero-title{
        font-size:var(--hero-title-font-size);
    }
}

@media only screen and (min-width: 990px) {
    .hero-block.alignfull{
        padding-left:var(--mobile-side-padding);
        padding-right:var(--mobile-side-padding);
    }
    .hero-block .hero-txt-container{
        padding-left:40px;
        padding-right:40px;
    }
    
}
@media only screen and (min-width: 1280px) {
    
   .hero-title, .is-root-container .hero-title{
        font-size:var(--hero-title-font-size);
        line-height:var(--hero-title-line-height);
    }
    .hero-block .hero-txt-container{
        padding-left:0px;
        padding-right:0px;
    }
    .hero-excerpt{
        font-size:var(--hero-excerpt-font-size);
        font-weight:var(--hero-excerpt-font-weight);
    }
}
/*Admin styles*/
.editor-styles-wrapper .hero-block{
    position:relative;
}
.editor-styles-wrapper .hero-with-img figure{
    position:absolute;
    left:0px;
    right:0px;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.editor-styles-wrapper .hero-with-img figure img.hero-image{
    object-fit: cover;
    height: 100%;
    width:100%;
}
.editor-styles-wrapper .hero-with-img figure:after{
    display: block;
    content: '';
}