@charset "UTF-8";
/* snippet-banner-video START */
#snippet-banner-video {
    height: 600px;
    /*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;
    /* 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: rgba(0,0,0,0.4); */
        background-image: linear-gradient(to bottom, rgba(0,0,0, 0.8), rgba(0, 0, 0, 0.4));
    }
    .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-video {
        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-video-vid {
        width: 100% !important;
        height: auto !important;
    }
}
@media (max-aspect-ratio: 16/9) {
    #banner-video-vid {
        width: auto !important;
        height: 100% !important;
    }
}
@media screen and (min-width: 1290px) and (max-width: 1700px) {
    #banner-video-vid {
        width: 100% !important;
        height: auto !important;
    }
}
/* snippet-banner-video END */



.btn-animation {
    position: relative;
}

a.btn-animation::before {
    content: '';
    border-radius: 10px;
    min-width: calc(160px + 18px);
    min-height: calc(40px + 10px);
    border: 2px solid var(--bs-white);
    box-shadow: 0 0 60px rgba(var(--bs-primary-rgb),1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .3s ease-in-out 0s;
}




a.btn-animation::after {
    content: '';
    width: 30px; height: 30px;
    border-radius: 100%;
    border: 4px solid var(--bs-white);
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 1.5s infinite;
}

a.btn-animation:hover::after, a.btn-animation:focus::after {
    animation: none;
    display: none;
}

@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}


[data-bs-theme=dark] .btn-light {
    color: var(--bs-dark) !important;
}

