@charset "UTF-8";
/* snippet-banner-inside START */

section #snippet-banner-inside {
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    backdrop-filter: saturate(180%) blur(5px);
}

#snippet-banner-inside {
    background-color: var(--bs-primary);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;

    .inside-title {
        font-size: 1.8rem;
        line-height: 48px;
        color: var(--bs-white);
    }
    .inside-text {
        font-size: 1.2rem;
        line-height: 32px;
        color: var(--bs-white);
        position: relative;
        padding: 30px 0;
    }
    .inside-text::before {
        content: "";
        width: 50%;
        height: 2px;
        position: absolute;
        background: var(--bs-secondary);
        top: -5px;
    }
    .inside-text::after {
        content: "";
        width: 50%;
        height: 2px;
        position: absolute;
        background: var(--bs-secondary);
        bottom: -5px;
        left: 0;
    }
    @media screen and (max-width: 768px) {
        .inside-text {
            margin-top: 15px;
            text-align: center;
        }
        .inside-text::before, .inside-text::after {
            left: 50%;
            transform: translateX(-50%);
        }
    }
}
.overlay-bgr {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
}

/* snippet-banner-inside END */
