.featured-video {
    display: flex
}

.featured-video .featured-video-container {
    width: 100%;
    position: relative
}

.featured-video .featured-video-container .video-thumbnail {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    flex: 1;
    align-items: end;
    width: 100%;
    min-height: 600px;
    /* padding: 60px 20px 20px; */
    padding: 60px 303px;
    display: flex;
    position: relative
}

@media (min-width:768px) {
    .featured-video .featured-video-container .video-thumbnail {
        padding: 60px 303px
    }
}

.featured-video .featured-video-container .video-thumbnail img {
    width: 100%;
    height: auto
}

.featured-video .featured-video-container .video-thumbnail .video-gradient {
    background-color: #000;
    background-color: var(--color-black);
    opacity: .5;
    flex: 1;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    top: 0;
    left: 0
}

.featured-video .featured-video-container .video-fields {
    color: var(--color-white);
    z-index: 1;
    max-width: 740px;
    display: inline
}

.featured-video .featured-video-container .video-fields p {
    color: var(--color-white);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2;
}

.featured-video .featured-video-container .video-fields .secondary-button {
    color: var(--color-white);
    border-color: #fff;
    border-color: var(--color-white)
}

.featured-video .featured-video-container .video-fields .secondary-button:after {
    content: "";
    background-image: url(../../play-circle.9e29561d.svg);
    width: 2.4rem;
    height: 2.4rem;
    margin-left: 10px
}

.featured-video .featured-video-container .video-fields .secondary-button:hover {
    margin-left: -1px;
    margin-right: -1px;
    background-color: #3baf58;
    /* background-color: var(--btn-hover-background); */
    color: var(--btn-hover-color)
}


.featured-video-modal {
    z-index: 999;
    background: #0006;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
    position: fixed;
    inset: 0
}

.featured-video-modal.open {
    display: flex
}

.featured-video-modal .featured-video-embed {
    width: 80%;
    height: 50%;
    position: relative
}

@media (min-width:768px) {
    .featured-video-modal .featured-video-embed {
        height: 60%
    }
}

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

    .featured-video .featured-video-container .video-thumbnail {
        padding: 10px;
    }
}

.featured-video-modal .featured-video-embed .close-container {
    padding: 15px;
    position: absolute;
    top: -50px;
    right: -15px
}

/*# sourceMappingURL=featured-video.css.map */