@charset "UTF-8";
/* snippet-banner-video START */
#snippet-banner-video {
    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;
    /* 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.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-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;
    }
}


.heading-line {
        font-family: var(--bs-font-sans-serif);
        display: block;
        position: relative;
    }
    .heading-line::before {
        display: block;
        position: absolute;
        color: #fff;
        pointer-events: none;
        width: 100%;
    }
    .heading-line-gradient {
        -webkit-text-fill-color: transparent;
        color: transparent;
        -webkit-background-clip: text;
        background-clip: text;
    }
    .heading-line-first {
        padding-top: 5rem;
    }
    .heading-line-first > .heading-line-gradient {
        background-image: linear-gradient(to left, #c5e7f5, #6ec1e4);
        animation: first_heading_gradient 8s infinite;
    }
    /* Change content here if you change the heading-line text in the HTML file */
    .heading-line-first::before {
        content: "Your Damage Prevention Specialist";
        animation: first_heading_white_text 8s infinite;
    }
    .heading-line-second > .heading-line-gradient {
        background-image: linear-gradient(to left, #38b2ac, #0bc5ea);
        animation: second_heading_gradient 8s infinite;
    }
    /* Change content here if you change the heading-line text in the HTML file */
    .heading-line-second::before {
        content: "Don't get your lines crossed. We have your back.";
        animation: second_heading_white_text 8s infinite;
    }
    .heading-line-third > .heading-line-gradient {
        background-image: linear-gradient(to left, #ecc94b, #48bb78);
        animation: third_heading_gradient 8s infinite;
    }
    /* Change content here if you change the heading-line text in the HTML file */
    .heading-line-third::before {
        content: "Utility Locating Services";
        animation: third_heading_white_text 8s infinite;
    }
    @media screen and (min-width: 992px) {
        .carousel-item {
            position: absolute;
            bottom: 0;
        }
    }
    @media screen and (max-width: 992px) {
        height: auto;
        padding: 50px 0 0;
    }
}
@keyframes first_heading_gradient {
    0%,
    16.667% {
        opacity: 1;
    }
    33.333%,
    83.333% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes first_heading_white_text {
    0%,
    16.667% {
        opacity: 0;
    }
    25%,
    91.667% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes second_heading_gradient {
    0%,
    16.667% {
        opacity: 0;
    }
    33.333%,
    50% {
        opacity: 1;
    }
    66.667%,
    100% {
        opacity: 0;
    }
}
@keyframes second_heading_white_text {
    0%,
    25% {
        opacity: 1;
    }
    33.333%,
    50% {
        opacity: 0;
    }
    58.333%,
    100% {
        opacity: 1;
    }
}
@keyframes third_heading_gradient {
    0%,
    50% {
        opacity: 0;
    }
    66.667%,
    83.333% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes third_heading_white_text {
    0%,
    58.333% {
        opacity: 1;
    }
    66.667%,
    83.333% {
        opacity: 0;
    }
    91.667%,
    100% {
        opacity: 1;
    }
}


/* snippet-banner-video END */



