/*
|-----------------------------------------------------------------------------------------------------------
| HOMEPAGE SLIDESHOW SECTION
|-----------------------------------------------------------------------------------------------------------
*/
.header-slideshow {
    margin-bottom: 25px;
}

.header-slideshow,
.header-slideshow .home-header {
    position: relative;
}

.header-slideshow .home-header .slick-arrow{
    width: 34px;
    height: 50px;
    background-color: #554c3f;
    background-repeat: no-repeat;
    background-size: 8px;
    background-position: center;
    color: #FFF;
    border: 1px solid #99b8ad;
    z-index: 1;
    opacity: .8;
}
.header-slideshow .home-header .slick-arrow.slick-prev:before,
.header-slideshow .home-header .slick-arrow.slick-next:before{
    content: "";
}

.header-slideshow .home-header .slick-arrow.slick-prev{
    left: 0;
    border-left: none;
    background-image: url("/includes/public/assets/shared/arrow-left.png");
}
.header-slideshow .home-header .slick-arrow.slick-next{
    right: 0;
    border-right: none;
    background-image: url("/includes/public/assets/shared/arrow-right.png");
}

.header-slideshow .home-header .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /*background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 35%);*/
    pointer-events: none;
}

.header-slideshow .home-header .item img { 
    width:100%;
    display: block;
}

.header-slideshow .home-header .item { position: relative; }

.header-slideshow .home-header .item .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    font-size: 80px;
    color: #FFF;
    opacity: .7;
}
.header-slideshow .home-header .item .play-btn:hover{
    opacity: .9;
}
@media (min-width: 641px) {
    .header-slideshow .home-header .item .play-btn.vimeo {
        display: none;
    }
}

.header-slideshow .home-header .item .play-btn img {
    width: auto;
}

.header-slideshow .home-header .item .slide-content {
    position: absolute;
    width: 75%;
    transform: translateX(-50%);
    left: 50%;
    bottom: 50px;
    padding: 20px 20px 5px;
    z-index: 2;
    text-align: center;
}

.header-slideshow .home-header .item .slide-content h2 {
    font-size: 28px;
    color: #FFF;
    line-height: 45px;
    margin: 0;
    margin-bottom: 20px;
    text-transform: none;
    font-weight: bold;
}

.header-slideshow .home-header .item .slide-content .desc {
    display: none;
}

.header-slideshow .home-header .item .slide-content .slide-link{
    display: inline-block;
    position: relative;
    padding: 12px 20px;
    text-align: center;
    text-transform: uppercase;
    color: white;
    font-size: 14px;
    z-index: 1;
    background-color: #64513d;
}

.header-slideshow .home-header .item .slide-content .slide-link::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    border: 1px solid #589580;
    opacity: 0.8;
}

.header-slideshow .home-header .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 .home-header .item video.loaded {
    opacity: 1;
}

.header-slideshow  .down-arrow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -20px);
    transition: transform .4s ease;
    z-index: 2;
}

.header-slideshow .down-arrow:hover {
    transform: translate(-50%, -10px);
    transition: transform .4s ease;
    cursor: pointer;
}

.header-slideshow .down-arrow i {
    color: #589580;
    font-size: 40px;
}

@media (min-width: 1025px) {
    .header-slideshow {
        padding-top: 130px;
        margin-bottom: 75px;
    }
    .header-slideshow::after {
        height: 60px;
        background-size: contain;
    }

    .header-slideshow .home-header .slick-arrow{
        background-size: 12px; 
        width: 49px;
        height: 72px;
    }
    .header-slideshow .home-header .item .slide-content {
        left: 50%;
        bottom: 75px;
        width: 50%;
        opacity: 1;
    }

    .header-slideshow .home-header .item .slide-content h2 {
        font-size: 54px;
        margin: 0;
        margin-bottom: 20px;
        line-height: 60px;
    }
    .header-slideshow .home-header .item .slide-content .desc {
        display: block;
        font-size: 18px;
        line-height: 28px;
        margin: 0;
        color: white;
        margin-bottom: 20px;
    }
    .header-slideshow .home-header .item .slide-content .slide-link{
        padding: 16px 20px;
        font-size: 18px;

    }

    .header-slideshow .home-header .item .slide-content .slide-link::before {
        content: "";
        position: absolute;
        top: 4px;
        left: 4px;
        width: calc(100% - 8px);
        height: calc(100% - 8px);
        border: 1px solid #589580;
        opacity: 0.8;
    }

    .header-slideshow .home-header .item .slide-content .desc > a {
        font-size: 15px;
        font-weight: bold;
        color: #3dc6f0;
    }

    .header-slideshow .down-arrow i {
        font-size: 55px;
    }
    
    .header-slideshow .home-header .item::before {
        /*background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 55%);*/
    }
}

/**** DOTS ****/

.header-slideshow ul.slick-dots {
    display: flex !important;
    justify-content: center;
    position:absolute;
    bottom:0px;
    height:30px;
    width:100%;
    margin:0px;
    text-align:center;
    padding:0px;
    list-style:none;
    z-index: 1;
    pointer-events: none;
}
.header-slideshow ul.slick-dots li {    
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display:inline-block;
    height: 100%;
}
.header-slideshow ul.slick-dots li button {
    background-color: #FFF;
    opacity: .5;
    width:11px;
    height:11px;
    font-size:0px;
    padding:0px;
    margin:0px 8px 0px 8px; 
    border:2px #fff solid;  
    border-radius:50%;  
    vertical-align: top;
    pointer-events: all;
}
.header-slideshow ul.slick-dots li button:first-child{
    margin-left: 0;
}
.header-slideshow ul.slick-dots li button:focus {
    outline: none;
}
.header-slideshow ul.slick-dots li.slick-active button { 
    opacity: 1; 
}

.header-slideshow .slick-dots li button:before {
    font-size: 0;
    opacity: 0;
    content: "";
}

@media (min-width: 1025px) {
    .header-slideshow ul.slick-dots {
        height: 50px;
    }
    .header-slideshow ul.slick-dots li button {
        width: 17px;
        height: 17px;
        border-radius: 14px;
    }
}