/*------------------------------------*\
    
    Full-Width Image + Text Block Customizations - Global Styling

    The styles you add to this file will be applied to the 'Full-Width Image + Text' block. 
    If there is any reasons why you would need to style this separately,
    please create a block-specific stylesheet for it (don't forget to register that block-specific stylesheet in acf-starter-blocks.php)

\*------------------------------------*/

.full-width-image-text {
    position: relative;
}

.full-width-image-text__bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1;
    opacity: 0.1;
    pointer-events: none;
}

.full-width-image-text__content {
    margin: 0 auto;
    max-width: 840px;
    position: relative;
    z-index: 2;
}

.full-width-image-text__content .btn-group {
    margin-top: 30px;
}

@media (min-width: 1025px) {
    .full-width-image-text__content .btn-group {
        margin-top: 50px;
    }
}