.header-slideshow .home-header {
	margin: 0;
}

.header-slideshow .item {
    position: relative;
    overflow: hidden;
}

.header-slideshow .item .img-cont 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 .item img {
    display: block;
    width: 100%;
    height: auto;
}

.header-slideshow .item .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    transform: translate(-50%, -50%);
}
.header-slideshow .item .play-btn i.far{
    font-size: 50px;
    color: #FFF;
    opacity: 0.6;
}
.header-slideshow .item .play-btn:hover i.far{
	opacity: 0.75;
}
.header-slideshow .item .play-btn svg {
    width: 100%;
    height: auto;
}

@media (min-width: 641px) {
    .header-slideshow .home-header .item .img-cont .play-btn.vimeo {
        display: none;
    }

    .header-slideshow .home-header .item .img-cont video.loaded {
        opacity: 1;
    }
}

.header-slideshow .item .content {
    position: absolute;
    bottom: 40px;
    right: 0;
    z-index: 5;
    padding: 10px 15px;
    background-color: #ffffff;
    box-shadow: -2px 4px 8px -1px rgba(0, 0, 0, 0.2);
}
.header-slideshow .item .content h2,
.header-slideshow .item .content a h2 {
    color: #33332e;
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    text-transform: none;
    margin-bottom: 0;
}

.header-slideshow .item .content .icon {
    display: inline-block;
    margin-left: 10px;
}

.header-slideshow .item .content .icon .fa-square {
    position: relative;
    color: #cb545b;
    font-size: 16px;
}

.header-slideshow .item .content .icon .fa-square .fa {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: #fff;
}

@media only screen and (min-width: 1025px) {
    .header-slideshow .item .play-btn {
        width: 100px;
    }

    .header-slideshow .item .content {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .header-slideshow .item .content h2,
    .header-slideshow .item .content a h2 {
        font-size: 20px;
        font-weight: 300;  
    }

    .header-slideshow .item .content .icon .fa-square {
        font-size: 18px;
    }

    .header-slideshow .item .content .icon .fa-square .fa {
        font-size: 14px;
    }
}

/**** DOTS ****/
.header-slideshow .slick-dots {
    position: absolute;
    top: 63%;
    transform: translateY(-50%);
    right: 5px;
    list-style: none;
    width: 30px;
}

.header-slideshow .slick-dots li{
	width: 28px;
	height: 28px;
	margin: 0;
}

.header-slideshow .slick-dots li button {
    position: relative;
    content: "";
    font-size: 0;
    padding: 0;
    margin: 0;
    letter-spacing: 1px;
    color: #f5f5f0;
    border: 1px solid white;
    border-radius: 100%;
    width: 20px;
    height: 20px;
}
.header-slideshow .slick-dots li button::before{
	content : "";
}
.header-slideshow .slick-dots li.slick-active button::after {
    position: absolute;
    content: "";
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: ' \25CF';
    font-size: 16px;
}

@media only screen and (min-width: 1025px) {
    .header-slideshow .slick-dots {
        right: 15px;
    }
}
/**** END DOTS ****/