/*
|-----------------------------------------------------------------------------------------------------------
| HOMEPAGE SLIDESHOW SECTION
|-----------------------------------------------------------------------------------------------------------
*/

.header-slideshow .home-header {
    position: relative;
}

.header-slideshow .slick-slider {
    margin-bottom: 0;
}

.header-slideshow .item {
    position: relative;
}

.header-slideshow .item .img-cont {
    position: relative;
    transform: scale(1.2);
    transition: opacity ease 2s, transform ease 2s;
    /* height: calc(100vh - 127px); */
}

/*.header-slideshow .item .img-cont.vimeo-img-cont {
    height: 100%;
}*/

.header-slideshow .vimeo-video {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    min-width: 100%;
    width: auto;
    min-height: 100%;
    height: auto;
    transform: translate(-50%, -50%);
}
.header-slideshow .item.slick-current .img-cont {
    opacity: 1;
    transform: scale(1);
}

.header-slideshow .item .img-cont::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(0,0,0,0.6), rgba(0,0,0,0.05) 40%)
}
.header-slideshow .item .img-cont {
    max-height: 850px;
    overflow: hidden;
}
.header-slideshow .item .img-cont img {
	display: block;
	width: 100%;
	height: 100%;
    object-fit: cover;
    /* min-height: 430px; */
}
.header-slideshow .img-cont.main-img-cont img {
    /* min-height: 430px; */
}
.header-slideshow .item .photo-cred {
    position: absolute;
    bottom: 0;
    right: 10px;
    transform: rotate(-90deg) translate(60%, 350%);
   
}

.header-slideshow .item .photo-cred span {
    display: inline-block;
    color: white;
    font-size: 15px;
}

.header-slideshow .item .content {
    position: absolute;
    left: 75px;
    bottom: 25px;
}

.header-slideshow .item .content h3 {
    color: white;
    font-size: 40px;
    line-height: 44px;
    font-weight: 100;
}

/*.header-slideshow .item a.video-cont {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 101;
}*/

.header-slideshow .item .play-btn-over-img {
    position: absolute;
	width: 75px;
	height: 75px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease-in-out;
	border: 5px solid white;
	border-radius: 50px;
	background-color: rgba(255, 255, 255, 0.4);
    z-index: 1;
}

.header-slideshow .item .play-btn-over-img .fa.fa-play {
	position: relative;
	top: 7px;
	left: 18px;
    color: white;
    font-size: 50px;
}

.header-slideshow .arrows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 100;
}

.header-slideshow .arrows .custom-prev,
.header-slideshow .arrows .custom-next {
    position: absolute;
    top: 0;
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    pointer-events: all;
}

.header-slideshow .arrows .custom-prev {
    left: 0;
    justify-content: flex-start;
    transition: opacity 0.6s ease-in-out;
    opacity: 0;
}

.header-slideshow .arrows .custom-prev:hover,
.header-slideshow .arrows .custom-next:hover {
    opacity: 1;
}

.header-slideshow .arrows .custom-next {
    right: 0;
    justify-content: flex-end;
    transition: opacity 0.6s ease-in-out;
    opacity: 0;
}

.header-slideshow .arrows .custom-next .arrow-cont img {
    transform: rotate(180deg) translate(50%, 50%);
}

.header-slideshow .arrows .arrow-cont {
    position: relative;
    width: 40px;
    height: 50px;
    cursor: pointer;
}

.header-slideshow .arrows .arrow-cont::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 0.8;
    transition: all 0.6s ease-in-out;
    z-index: -1;
}

.header-slideshow .arrows .arrow-cont img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease-in-out;
    z-index: 1;
}

.header-slideshow .arrows .arrow-cont:hover::before {
    opacity: 1;
    background-color: #50afad;
}

.header-slideshow .arrows .arrow-cont .arrow-white {
    opacity: 0;
}

.header-slideshow .arrows .arrow-cont:hover .arrow-white {
    opacity: 1;
}

.header-slideshow .arrows .arrow-cont:hover .arrow-blue {
    opacity: 0;
}

/**** DOTS ****/
.header-slideshow .dots {
    position: absolute;
    right: 45px;
    bottom: 20px;
    z-index: 101;
}

.header-slideshow ul.slick-dots {
    display: block;
    position: relative;
    bottom: 0;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
}

.header-slideshow ul.slick-dots li {
    display: inline-block;
}

.header-slideshow ul.slick-dots li button {
    font-size: 0px;
    padding: 0px;
    margin: 0px;
    width: 13px;
    height: 18px;
    margin: 0px 7px;
    background-color: transparent !important;
    background-image: url("/includes/client_public/assets/images/dot1.png");
}

.header-slideshow ul.slick-dots li.slick-active button {
    background-image: url("/includes/client_public/assets/images/dot2.png");
}

.header-slideshow ul.slick-dots li button:before {
	content: '';
}
/**** END DOTS ****/

@media (max-width: 1024px) {
    .header-slideshow .item .content {
        left: 25px;
        bottom: 25px;
    }
    .header-slideshow .item .content h3 {
        font-size: 30px;
        line-height: 34px;
    }
}

@media (max-width: 640px) {
    /* .header-slideshow .slick-track {
        display: flex !important;
    }
    
    .header-slideshow .slick-slide {
        height: inherit !important;
    } */
    .header-slideshow .slide {
        height: 100%;
    }
    .header-slideshow .item .img-cont {
        height: 100%;
    }
    .header-slideshow .item .content {
        left: 15px;
        bottom: 45px;
    }
    .header-slideshow .dots {
        right: 15px;
        bottom: 45px;
    }
    .header-slideshow .arrows {
        display: none;
    }
    .header-slideshow .slick-list {
        padding-bottom: 25px;
        margin-bottom: -25px;
        z-index: 1;
    }
	.header-slideshow ul.slick-dots {
		bottom: 0;
	}
    .header-slideshow .item .photo-cred {
        transform: translateY(105%);
        right: 15px;
    }
    .header-slideshow .item .photo-cred span {
        color: #332212;
        font-size: 12px;
        font-weight: normal;
    }
    .header-slideshow .item .content {
        width: 70%;
    }
    .header-slideshow .item .content h3 {
        font-size: 24px;
        line-height: 30px;
    }
    .header-slideshow .item .img-cont {
        transform: scale(1);
    }
}
