/*
|-----------------------------------------------------------------------------------------------------------
| INTERIOR HEADERS
|-----------------------------------------------------------------------------------------------------------
*/
.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

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

.header-slideshow-int {
	position:relative;
	display: block;
	width: 100%;
}

.header-slideshow-int.alternate {
    margin-bottom: 25px;
}

.header-slideshow-int .img-cont {
    position: relative;
}

.header-slideshow-int .img-cont::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.5) 90%);
}

.header-slideshow-int .img-cont img {
    display: block;
    width: 100%;
}

.header-slideshow-int .content {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
}


.header-slideshow-int.alternate .content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: none;
    text-align: left;
}
.header-slideshow-int.alternate .content p {
    display: none;
}
.header-slideshow-int.alternate .content h1 {
    color: white;
    font-size: 38px;
    line-height: 40px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.header-slideshow-int .content .credit {

    display: none;
}

.header-slideshow-int .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    font-size: 66px;
    color: white;
}

.header-slideshow-int.alternate .content .credit {
    font-size: 15px;
    color: white;
    font-style: italic;
    text-align: left;
    display: block;
}

.header-slideshow-int .content p {
    display: none;
    color: white;
    margin: 0;
}

.header-slideshow-int .content h1 {
    text-transform: uppercase;
    margin: 0;
    color: white;
    font-size: 34px;
    line-height: 40px;
    font-weight: 600;
}
.header-slideshow-int .content a {
    text-decoration: none;
}
.header-slideshow-int .vimeo-video {
    position: absolute;
    bottom:0;
    left:0;
    width: 100%;
    height: auto;
}
@media (max-width: 641px) {
    .header-slideshow-int .vimeo-video {
        height: 100%;
        object-fit: cover;
    }
}
@media (min-width: 641px) {
    .header-slideshow-int .content p {
        display: block;
    }
    .header-slideshow-int .content {
        /* width: 50%; */
    }
    .header-slideshow-int.alternate {
        margin-bottom: 50px;
    }
}

@media (min-width: 1025px) {
    .header-slideshow-int .content {
        bottom: 30px;
    }
    .header-slideshow-int .content h1 {
        font-size: calc(68px + (108 - 68) * ((100vw - 1025px) / (1665 - 1025)));
        line-height: calc(76px + (128 - 76) * ((100vw - 1025px) / (1665 - 1025)));
    }
    .header-slideshow-int .content p {
        width: 70%;
        margin: 0 auto;
    }
    .header-slideshow-int.alternate .content {
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 1180px;
        padding: 30px;
    }
    .header-slideshow-int.alternate .content h1 {
        font-size: 76px;
        line-height: 82px;
        margin-bottom: 25px;
    }
    .header-slideshow-int.alternate .content .credit {
        font-size: 24px;
    }
}

