.delay-by-250 {
    transition-delay: 250ms;
}

/* .delay-by-1000 {
    transition-delay: 1000ms;
}

.delay-by-3000 {
    transition-delay: 3000ms;
}


.delay-by-4000 {
    transition-delay: 4000ms;
}

.no-delay {
    transition-delay: 0ms;
} */

.duration-500 {
    transition-duration: 500ms;
}


.move-after-1500 {
    transform: translateY(100%);
    transition: transform 0.5s ease;
    /* transition-delay: 1500ms; */
}

.move-after-1500.active {
    transform: translateY(0%);
    transition: transform 0.5s ease;
    /* transition-delay: 1500ms; */
}



.shrink-after-1500 {
  transform: scale(1.2);
  transition: transform 0.5s ease;
  /* transition-delay: 1500ms; */
}

.shrink-after-1500.active {
  transform: scale(0.9);
  transition: transform 0.5s ease;
  /* transition-delay: 1500ms; */
}


.dummy-animation-delay {
    opacity: 0;
    position: absolute;
    transition-duration: 400ms;
    transform: translateX(0);
}

.dummy-animation-delay.active {
    transition-duration: 400ms;
    transform: translateX(5px);
}




.fade-up-after-1500 {
    opacity: 0;
    transform: translateY(64px);
    --_animation-duration: 500ms;
    transition: all var(--_animation-duration) ease-in-out;
    position: relative !important;
    opacity: 0;
    /* transition-delay: 900ms; */
}

.fade-up-after-1500.active {
    opacity: 1;
    transform: translateY(0);
    /* transition-delay: 900ms; */
}






.home-hero-container-fluid {
    background-size: cover;
    background-position: center;
    padding-top: 175px !important;
    padding-bottom: 125px !important;
	overflow: hidden !important;
}


.home-hero-video-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.home-hero-container-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .95);
    transition: 1500ms;
}

.home-hero-container-overlay.active, .home-hero-container-overlay.mobile {
    background-color: rgba(0, 0, 0, .6);
    transition: 1500ms;
}


.home-hero-content-wrapper {
    text-align: center;
}

.home-hero-para-wrapper {
    max-width: 1100px;
    padding-top: 20px;
    padding-bottom: 25px;
    font-size: var(--FC-font-size-20);
    line-height: 1.4;
    margin: auto;
    opacity: 0;
}


.home-hero-video-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.home-hero-video-wrapper wistia-player {
    position: absolute;
    top: 50%;
    left: 50%;

    /* Core behavior */
    width: 100vw;
    height: 56.25vw; /* 16:9 baseline */

    min-width: 177.77vh;
    min-height: 100vh;

    transform: translate(-50%, -50%);
    pointer-events: none;
}


@media screen and (max-width: 767px) {

    .home-hero-container-fluid {
        padding-top: 150px !important;
        padding-bottom: 75px !important;
    }

    .home-hero-headline-wrapper h1 {
        font-size: var(--FC-font-size-60) !important;
        margin-bottom: 0;
    }

}

@media screen and (max-width: 500px) {

    .home-hero-container-fluid {
        padding-top: 125px !important;
    }

    .home-hero-headline-wrapper h1 {
        font-size: var(--FC-font-size-50) !important;
        margin-bottom: 0;
    }

}