@charset "UTF-8";

img {
    vertical-align: middle;
}

.feat-videos {
    padding: var(--secPaddingNoBtm);
    background-color: var( --white );
}

.feat-videos img {
    object-fit: cover;
    object-position: 24% -50px;
    height: 130%;
    width: 100%;
    filter: brightness(0.5);
    transition: filter 1.2s ease-in-out;
}

.feat-videos .row.flex {
    flex-wrap: nowrap;
    gap: 10px;
}

.feat-videos .featLink.popVid {
    position: relative;
    display: inline-flex;
    height: clamp( 400px, 41.667vw, 800px );
    width: 33.3333333%;
    padding: 0;
    overflow: visible;
    /* flex: 3; */
    transition: all 1.2s ease-in-out;
    /* z-index: auto; */
    justify-content: flex-end;
}

.feat-videos .featLink.popVid::after {
    content: '\f04b';
    position: absolute;
    bottom: 40px;
    left: unset;
    right: 40px;
    top: unset;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var( --white );
    border-radius: 50%;
    background-color: transparent;
    width: 120px;
    height: 120px;
    border: 2px solid;
    display: flex;
    align-items: center;
    transform: none;
    justify-content: center;
    letter-spacing: -4px;
    transition: all .5s linear;
}

.feat-videos .featLink.popVid:hover::after {
    width: 142px;
    height: 142px;
    transition: all .5s linear;
}

.feat-videos .feat-videos .featLink::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    top: 0;
    right: -1.5px;
    background-color: rgb(248 248 248 / 40%);
    z-index: 2;
}

.feat-videos .featLink:last-of-type::before {
    display: none;
}

.feat-videos .featLink:last-of-type::after {
    display: flex;
}

.feat-videos .featLink:hover {
    text-decoration: none;
    width: min(100vw, 1920px);
    /* flex: 1; */
    transition: all 1.2s ease-in-out;
}

.feat-videos .featLink:hover img {
    /* filter: none; */
    transition: filter 1.2s ease-in-out;
}

.feat-videos .featBox {
    padding: 0;
    width: 100%;
    height: clamp( 195px, 41.667vw, 800px );
    display: flex;
    transition: all .5s ease;
    flex-direction: column;
    justify-content: flex-end;
}

.feat-videos .featImg {
     position: absolute;
     width: 100%;
     height: 100%;
     object-fit: cover;
     overflow: hidden;
     z-index: 0;
}

.feat-videos .featContent {
    position: relative;
    display: flex;
    background-color: transparent;
    padding: 40px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
}

.feat-videos .featContent h4 {
    color: var( --white );
    font-weight: 500;
    font-size: clamp( 20px, 1.771vw, 34px );
    line-height: clamp( 28px, 2.083vw, 40px );
    letter-spacing: -0.34px;
    text-align: left;
    text-transform: none;
    margin-left: clamp( 30px, 3.125vw, 60px );
    margin-bottom: 0;
}

.feat-videos .featLink .featContent .fade-in {
    display: flex;
    opacity: 0;
    color: var( --white );
    transition: all 1s ease;
    margin: 0;
    flex-direction: row;
    align-items: center;
}

.feat-videos .featLink:hover .featContent .fade-in {
    opacity: 1;
    margin: 0 32px 0 0;
    transition: all 1s ease;
    transition-delay: .5s
}

.feat-videos .featLink .featContent .fade-in .fas {
    margin: 0;
    transition: all 1s ease;
}

.feat-videos .featLink:hover .featContent .fade-in .fas {
    margin: 0 0 0 10px;
    transition: all 1s ease;
    transition-delay: .5s;
}

.feat-videos .ftBtn a.btn-text {
    color: var( --black );
    font-family: var( --body-font );
    font-size: clamp(14px, .833vw, 16px);
    line-height: clamp(22px, 1.25vw, 24px);
    letter-spacing: clamp(.25px, .033vw, .67px);
    font-weight: 600;
    text-transform: uppercase;
    transition: all .5s ease;
}

.feat-videos .ftBtn a.btn-text .fas {
    opacity: 0;
    margin-left: -10px;
    transition: all .75s ease;
}

.feat-videos .featBox:hover a.btn-text .fas {
    opacity: 1;
    margin-left: 5px;
    transition: all .75s ease;
}

@media ( max-width: 1024px ) {
    .feat-videos .row.flex {
    flex-direction: column;
    }

    .feat-videos .vidFrame {
        margin-bottom: 20px;
    }

    .feat-videos .featContent h4 {
        margin: 0 auto;
        width: 100%;
        text-align: center;
    }

    .feat-videos .featLink,
    .feat-videos .featLink:hover {
        width: 50%;
    }

    .featLink:nth-of-type(2)::before {
        content: '';
        position: absolute;
        display: block;
        background-color: rgb(248 248 248 / 40%);
        width: 3px;
        height: 100%;
        left: -1.5px;
        top: 0;
        z-index: 2;
    }

    .feat-videos .featLink:nth-of-type(1)::after,
    .feat-videos .featLink:nth-of-type(2)::after {
        /* height: 3px; */
        /* width: 100%; */
        /* right: unset; */
        /* top: unset; */
        /* bottom: -1.5px; */
    }

    .feat-videos img {
        height: 175%;
    }
}

@media ( max-width: 567px ) {
    .feat-videos .featLink.popVid, .feat-videos .featBox {
        height: min(50.088vw, 284px);
        width: 100%;
    }

    
}