@charset "UTF-8";
/* snippet-banner-full-viewport-video START */
#snippet-banner-full-viewport-video {
    height: 100vh;
    background: var(--bs-secondary) url('/public/images/smiling-woman.jpg') no-repeat center /cover;
    overflow: hidden;
    /* 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-video-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-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;
    }
    .typewrite-h, .buttons {
        padding: 25px 0;
    }
}
@media (max-width: 768px) {
    #snippet-banner-full-viewport-video {
        height: auto;
        padding-bottom: 75px;
    }
}
/* Adding/removing aspect ratios, you get better viewed video but with empty spaces either on the sides or top/bottom; change according to the content of the video and desired result */
/*@media (min-aspect-ratio: 16/9) {
    #banner-video-vid {
        width: 100% !important;
        height: auto !important;
    }
}
@media screen and (min-width: 1290px) and (max-width: 1700px) {
    #banner-video-vid {
        width: 100% !important;
        height: auto !important;
    }
}*/
@media (max-aspect-ratio: 16/9) {
    #banner-video-vid {
        width: auto !important;
        height: 100% !important;
    }
}


/* start text animation */
.typewrite {
  text-align: left;
}

/* end text animation */

/* snippet-banner-full-viewport-video END */



