@media only screen and (min-width: 320px) {
    :root{
        --hero-title-font-size: 30px;
    }
    .hero-block, .is-root-container .hero-block{
        position: relative;
        display: flex;
        align-items: center;
    }

    /*Hero with image*/
    .hero-with-img > figure, .is-root-container .hero-with-img > figure{
        position: absolute;
        left:0px;
        right:0px;
        width: 100%;
        height: 100%;
        z-index: 0;
    }
    .hero-with-img > figure img.hero-image, .is-root-container .hero-with-img > figure img.hero-image{
        object-fit: cover;
        height: 100%;
        width:100%;
    }
    .hero-with-img > figure:after, .is-root-container .hero-with-img > figure:after{
        display: block;
        content: '';
        position: absolute;
        width:100%;
        height:100%;
        background:rgba(0, 0 ,0, 0.25);
        left:0px;
        top:0px;
    }


    /*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;
    }
    .hero-button, .is-root-container .hero-button{
        z-index: 1;
    }
    /*hero number*/
    .hero-numbers-container, .editor-styles-wrapper .hero-numbers-container{
        margin:30px 0px;
    }

    
    .hero-number-container, .editor-styles-wrapper .hero-number-container{
        text-align: center;
        z-index: 1;
        display: flex;
        align-items:center;
        justify-content: flex-start;
        padding-right:10px;
    }
    .hero-number-container:not(:last-child), .editor-styles-wrapper .hero-number-container:not(:last-child){
        border-right: 1px solid black;
        margin-right: 10px;
    }
    .hero-number, .editor-styles-wrapper .hero-number{
        font-size:22px;
        font-weight:600;
        line-height:0.8em;
        z-index: 1;
        margin-bottom:5px;
    }
    .hero-number-label, .editor-styles-wrapper .hero-number-label{
        font-size:10px;
        font-weight:400;
        line-height:0.8em;
        z-index: 1;
    }
}

@media only screen and (min-width: 768px) {
    :root{
        --hero-title-font-size: 40px;
    }
    /*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{
        
    }

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

@media only screen and (min-width: 1280px) {
    :root{
        --hero-title-font-size: 50px;
        --hero-title-line-height: 1.1em;
    }
   .hero-title, .is-root-container .hero-title{
        font-size:var(--hero-title-font-size);
        line-height:var(--hero-title-line-height);
    }
    .hero-numbers-container, .editor-styles-wrapper .hero-numbers-container{
        margin:45px 0px;
    }
    .hero-number-container, .editor-styles-wrapper .hero-number-container{
        padding-right:20px;
    }
    .hero-number-container:not(:last-child), .editor-styles-wrapper .hero-number-container:not(:last-child){
        margin-right:20px;
    }
    .hero-number, .editor-styles-wrapper .hero-number{
        font-size:28px;
        margin-bottom:15px;
    }
    .hero-number-label, .editor-styles-wrapper .hero-number-label{
        font-size:12px;
    }
}
/*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: '';
}