@charset "UTF-8";
/* snippet-banner-rounded START */
#banner-rounded {
    height: 700px;
    /*hide this if you want the video instead of the image; background: var(--bs-secondary) url('/public/images/banner-bgr.jpg') no-repeat center /cover;*/
    overflow: hidden;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    .bg-overlay {
        z-index: 1;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background: rgba(0,0,0,0.4); */
        background-image: linear-gradient(to bottom, rgba(0,0,0, 0.8), rgba(0, 0, 0, 0.2));
    }
    .fill-body {
        fill: var(--bs-body-bg);
    }
    .btn:hover {
        background: var(--bs-primary);
        color: #fff!important;
    }
}
@media (max-width: 768px) {
    #banner-rounded {
        height: auto;
        padding-bottom: 75px;
    }
}
/* snippet-banner-rounded END */