@charset "UTF-8";
/* snippet-banner-rounded START */
#snippet-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: 0rem;
    border-top-right-radius: 0rem;
    /* Keep the position of the video with the min/max-aspect-ratios below for full videos but empty spaces on the sides or remove aspect-ratios and change video positioning to focus something in the video */
    #banner-rounded-vid {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: 100%;
        height: auto;
        z-index: 0;
        -ms-transform: translateX(-50%) translateY(-50%);
        -moz-transform: translateX(-50%) translateY(-50%);
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }
    .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),
            rgba(0, 0, 0, 0.8)
        );
    }
    .fill-body {
        fill: var(--bs-body-bg);
    }
    .btn:hover {
        background: var(--bs-primary);
        color: #fff !important;
    }
    .typewrite-h,
    .buttons {
        padding: 25px 0;
    }
}
@media (max-width: 768px) {
    #snippet-banner-rounded {
        height: auto;
        padding-bottom: 75px;
    }
}
/* Keep these and get a better viewed video but with some empty spaces on the sides sometimes */
@media (min-aspect-ratio: 16/9) {
    #banner-rounded-vid {
        width: 100% !important;
        height: auto !important;
    }
}
@media (max-aspect-ratio: 16/9) {
    #banner-rounded-vid {
        width: auto !important;
        height: 100% !important;
    }
}
@media screen and (min-width: 1290px) and (max-width: 1700px) {
    #banner-rounded-vid {
        width: 100% !important;
        height: auto !important;
    }
}
/* snippet-banner-rounded END */
