.block__home_hero_container_fluid {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 95dvh;
    max-height: 750px;
    padding: 0;
    margin: 0;
}

.block__home_hero_container_fluid_overlay {
    background-color: rgba(255,255,255,.44);
    height: 100%;
    transition: var(--FC-default-transition);
    padding: 0;
    margin: 0;
}

.block__home_hero_container {
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}


.block__home_hero_col_2 {
    display: flex;
    align-items: flex-end;
}

.block__home_hero_video_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto;
    width: fit-content;
    height: 100%;
}

.block__home_hero_video_wrapper_col {
    display: flex;
    align-items: center;
}


.block__home_hero_text_wrapper {
    padding: 20px;
    background-color: var(--FC-bo-white);
    margin-top: -60px;
    background-size: 200% 100% !important;
    background-position: right !important;
    z-index: 0;
    transition: var(--FC-default-transition);
}

.block__home_hero_text_wrapper:hover,
.block__home_hero_text_wrapper:focus,
.block__home_hero_video_image:hover ~ .block__home_hero_text_wrapper,
.block__home_hero_video_image:focus ~ .block__home_hero_text_wrapper {
    background-position: left !important;
    color: var(--FC-bo-white);
    transition: var(--FC-default-transition);
}

.block__home_hero_text_wrapper.remove {
    opacity: 0;
    transition-duration: 500ms;
    transition-delay: 500ms;
}


.block__home_hero_video_image {
    width: 200px;
    height: 200px;
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 50%;
    border: solid var(--FC-bo-black) 6px;
    z-index: 10;
}

.block__home_hero_video_image:hover,
.block__home_hero_video_image:focus,
.block__home_hero_text_wrapper:hover,
.block__home_hero_text_wrapper:focus {
    cursor: pointer;
}

.block__home_hero_video_image.active {
    opacity: 0;
    transition: var(--FC-default-transition);
    transition-delay: 100ms;
    transition-duration: 100ms;
}

.block__home_hero_play_button {
    max-width: 40px;
    margin-bottom: 10px;
}


.block__home_hero_video_player_wrapper {
    position: absolute;
    width: 200px;
    height: 200px;
    margin: auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    pointer-events: none;
    opacity: 0;
    z-index: 9999;
    transition: var(--FC-default-transition);
}

.block__home_hero_video_player_wrapper.active {
    width: 100%;
    height: 100%;
    opacity: 1;
    pointer-events: all;
    /* justify-content: stretch;
    align-items: stretch; */
    transition: var(--FC-default-transition);
    z-index: 9999;
}

.block__home_hero_video_player_wrapper.active .block__home_hero_video_player_wrapper iframe {
    width: 100%;
    height: 100%;
    border-radius: 0%;
    border: solid 0px rgba(0,0,0,0);
    transition: var(--FC-default-transition);
    transition-delay: 500ms;
    transition-duration: 500ms;
}

.block__home_hero_video_player {
    width: fit-content;
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

.block__home_hero_video_player_wrapper.active .block__home_hero_video_player {
    position: relative;
    width: 100%;
    /* padding-top: 56%;  */
    height: 100%;
    overflow: hidden;
    align-self: center;
    transition: var(--FC-default-transition);
    transition-delay: 500ms;
    transition-duration: 500ms;
}

.block__home_hero_video_player iframe {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: solid var(--FC-bo-black) 6px;
}

.block__home_hero_video_player_wrapper.active .block__home_hero_video_player iframe {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: none;
}

.block__home_hero_video_wrapper.active {
    width: 100%;
    height: 100%;
    transition: var(--FC-default-transition);
    transition-delay: 500ms;
    transition-duration: 500ms;
}


.block__home_hero_video_wrapper h4 {
    margin: 0;
}

.no-bg {
    background-color: rgba(0,0,0,0) !important;
}



@media screen and (max-width: 1299px) {
    .block__home_hero_col_mid {
        display: none;
    }
}


@media screen and (max-width: 991px) {
    .animate.slide-up-more {
        transform: translateY(125%);
    }

    .block__home_hero_video_image,
    .block__home_hero_video_player iframe {
        width: 175px;
        height: 175px;
    }
}


@media screen and (max-width: 991px) {
    .block__home_hero_container_fluid {
        max-height: unset;
        height: 100%;
    }

    .block__home_hero_container {
        padding-top: 125px;
    }

    .block__home_hero_text_wrapper {
        display: flex;
        align-items: center;
        gap: 15px;
        width: 100%;
        margin: auto;
        position: absolute;
    }

    .block__home_hero_text_wrapper h4 {
        font-size: var(--FC-font-size-40) !important;
    }

    .block__home_hero_text_wrapper img {
        margin-bottom: 0;
    }

    .block__home_hero_video_wrapper {
        width: 100%;
        flex-direction: row-reverse;
        justify-content: flex-start;
        align-items: center;
    }

    .block__home_hero_video_player {
        height: auto;
    }

    .block__home_hero_video_image,
    .block__home_hero_video_player iframe {
        width: 150px;
        height: 150px;
    }

    .block__home_hero_video_wrapper.active {
        height: 400px;
    }

    .block__home_hero_video_player_wrapper {
        align-items: center;
    }
}

@media screen and (max-width: 767px) {
    .block__home_hero_video_wrapper.active {
        height: 300px;
    }
}


@media screen and (max-width: 650px) {
    .animate.slide-left {
        transform: translateX(100%);
        opacity: 0;
    }

    .animate.slide-left.begin {
        opacity: 1;
    }
}


@media screen and (max-width: 500px) {
    .block__home_hero_text_wrapper {
        padding-left: 10px;
        padding-right: 10px;
        gap: 10px;
        display: block;
        width: 100%;
        margin: auto;
        position: relative;
        margin-top: -60px;
    }

    .block__home_hero_text_wrapper img {
        margin-bottom: 10px;
    }

    .block__home_hero_video_wrapper {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-end;
    }

    .block__home_hero_text_wrapper h4 {
        font-size: var(--FC-font-size-42) !important;
    }

    .block__home_hero_video_image,
    .block__home_hero_video_player iframe {
        width: 175px;
        height: 175px;
    }

    .block__home_hero_video_player_wrapper {
        align-items: flex-start;
    }
}


@media screen and (max-width: 400px) {
    .top--25 {
        top: -15px;
    }

    .block__home_hero_container h1 {
        font-size: 42px !important;
    }

    .block__home_hero_video_image,
    .block__home_hero_video_player iframe {
        width: 150px;
        height: 150px;
    }

    .block__home_hero_video_wrapper.active {
        height: 200px;
    }
}
