/**
 * styles for registered Guten-blocks Style-types
 */

/** core/cover : is-style-banner */

.is-style-banner {
    /*min-height: 850px;*/
    padding:150px 15px 75px;
}

@media (min-width: 1200px) {
    /*.is-style-banner {*/
    /*    min-height: 850px;*/
    /*}*/
    .is-style-banner .bl-h {
        font-size: 7.2rem;
        margin-bottom: 1rem;
    }
    .is-style-banner .bl-p {
        font-size: 4rem;
    }
}

@media (max-width: 1199px) {
    .is-style-banner .bl-h {
        font-size: 5rem;
    }
    .is-style-banner .bl-p {
        font-size: 3rem;
    }
}
@media (max-width: 992px) {
    .is-style-banner .bl-h {
        font-size: 3.2rem;
    }
    .is-style-banner .bl-p {
        font-size: 1.8rem;
    }
}

/** .is-style-checkbox-bullets */

.bl-list.is-style-checkbox-bullets {
    font-weight: 600;
    margin-left: 0;
    padding-left: 0;
    list-style-type: none;
}
.is-style-checkbox-bullets li {
    display: flex;
}
.is-style-checkbox-bullets li:before {
    content:'';
    width: 35px;
    height: 35px;
    background-image: url('/wp-content/themes/sb-child/img/checked.png');
    background-repeat: no-repeat;
    background-position: 50%;

    display: block;
    margin-right: .3em;
    position: relative;
    top: -.3em;

    flex-grow: 0;
    flex-shrink: 0;

    /*background: var(--featured-gradient);*/
    /*-webkit-background-clip: text;*/
    /*-webkit-text-fill-color: transparent;*/
}
@media (min-width: 769px) {
    ul.is-style-checkbox-bullets {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .is-style-checkbox-bullets li {
        flex-basis:48%;
    }
}