/*
|-----------------------------------------------------------------------------------------------------------
| INTERIOR HEADERS
|-----------------------------------------------------------------------------------------------------------
*/

.header-slideshow-int {
	position:relative;
	display: block;
    width: 100%;
    padding-bottom: 15px;
}

.header-slideshow-int::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 35px;
    background: url("/includes/public/assets/images/rough-edge.png")center/cover repeat-x;
}

.header-slideshow-int .item {
    position: relative;
}

.header-slideshow-int .item .img-cont {
    position: relative;
    overflow: hidden;
}

.header-slideshow-int .item video {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    min-width: 100%;
    width: auto;
    height: auto;
    min-height: 100%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease-in;
}

.header-slideshow-int .item .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
    z-index: 1;
}

@media (min-width: 641px) {
    .header-slideshow-int .item .play-btn.vimeo {
        display: none;
    }
}

.header-slideshow-int .item .play-btn::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background-color: rgba(0,0,0,0.2);
    border-radius: 100%;
    z-index: -1;
}

.header-slideshow-int .item .play-btn img {
    width: auto;
}

.header-slideshow-int .item video.loaded {
    opacity: 1;
}

.header-slideshow-int .item .img-cont::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.header-slideshow-int .item .img-cont img { 
	width: 100%; 
	display: block;
}

.header-slideshow-int .item .slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 640px;
    padding: 15px 15px 55px;
}

.header-slideshow-int .item .slide-content h2 {
    font-size: 22px;
    line-height: 28px;
    margin: 0;
    color: white;
    text-transform: none;
}

.header-slideshow-int .item .slide-content .desc {
    display: block;
    font-size: 15px;
    line-height: 20px;
    margin: 0;
    color: white;
}

.header-slideshow-int .item .slide-content .desc a {
    color: #3dc6f0;
    font-weight: bold;
}

@media (min-width: 641px) {
    .header-slideshow-int {
        padding-bottom: 25px;
    }
    .header-slideshow-int::after {
        background-size: contain;
    }
}

@media (min-width: 1025px) {
    .header-slideshow-int .item .slide-content {
        left: 8%;
        padding-bottom: 50px;
    }
    .header-slideshow-int .item .slide-content .desc {
        display: block;
        font-weight: 400;
    }
    .header-slideshow-int .item .slide-content h2 {
        font-size: 26px;
        line-height: 30px;
        margin-bottom: 7px;
    }
    .header-slideshow-int::after {
        height: 50px;
    }
}