.header-slideshow {
    position: relative;
    overflow: hidden;
}

.header-slideshow .home-header {
    position: relative;
    overflow: hidden;
    margin: 0;
}

.header-slideshow .top-accent {
    position: absolute;
    top: -2px;
    right: -5px;
    width: 85%;
    z-index: 1;
}

.header-slideshow .bottom-accent {
    position: absolute;
    bottom: -1px;
    left: -10%;
    width: 90%;
    z-index: 1;
}

.header-slideshow .top-accent img,
.header-slideshow .bottom-accent img {
    display: block;
    width: 100%;
}

.header-slideshow .home-header .arrow-cont {
    position: absolute;
    bottom: 0;
    right: 5px;
    width: 50px;
    height: 100px;
    display: flex;
    align-items: flex-start;
    z-index: 1;
}

.header-slideshow .arrow-cont .custom-arrow {
    color: white;
    font-size: 48px;
    cursor: pointer;
}

.header-slideshow .arrow-cont .custom-arrow.prev {
    margin-right: 8px;
}

.header-slideshow .item {
    position: relative;
}

.header-slideshow .item .play-btn{
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    opacity: 0.6;
    z-index: 1;
}
.header-slideshow .item .play-btn:hover{
    opacity: 0.75;
}
.header-slideshow .item .play-btn i::before{
    color: white;
    font-size: calc(45px + (60 - 45) * ((100vw - 320px) / (640 - 320)));
}

.header-slideshow .item .img-cont {
    position: relative;
    display: block;
    height: 100%;
}

.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-cont::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
}

.header-slideshow .item .img-cont img {
    display: block;
    width: 100%;
}

.header-slideshow .item .slide-content {
    position: absolute;
    right: 55px;
    bottom: 0;
    width: calc(100% - 50px);
    padding: 0 10px 45px 5px;
    text-align: right;
    z-index: 1;
    max-width: 430px;
}

.header-slideshow .item h2 {
    font-size: 22px;
    line-height: 26px;
    text-transform: uppercase;
    color: white;
    margin: 0;
    font-weight: 800;
}

.header-slideshow .item .desc {
    font-size: 13px;
    color: white;
    margin: 0;
    line-height: 22px;
}

.header-slideshow .item .desc .more-link{
    display: block;
}

.header-slideshow .item .desc a {
    font-size: 12px;
    text-transform: uppercase;
    color: white;
}

.header-slideshow .dots-cont {
    display: none;
}

@media (min-width: 641px) {
    .header-slideshow .home-header::before,
    .header-slideshow .home-header::after {
        height: 55px;
    }

    .header-slideshow .top-accent,
    .header-slideshow .bottom-accent {
        width: 70%;
    }

    .header-slideshow .top-accent {
        right: -15px;
    }
    .header-slideshow .item .isvimeo .play-btn{
        display: none;
    }
    .header-slideshow .item .img-cont video.loaded {
        opacity: 1;
    }
    .header-slideshow .item .desc .more-link{
        display: inline-block;
    }
}

@media (min-width: 1025px) {
    .header-slideshow .home-header::before {
        height: 75px;
        top: -20px;
        right: -80px;
    }

    .header-slideshow .home-header::after {
        height: 75px;
        bottom: -20px;
        left: -80px;
    }

    .header-slideshow .item .slide-content {
        max-width: 530px;
        padding-bottom: 50px;
        right: 125px;
    }

    .header-slideshow .home-header .arrow-cont {
        right: 75px;
        height: 110px;
    }

    .header-slideshow .item h2 {
        font-size: 36px;
        line-height: 34px;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .header-slideshow .item .desc {
        font-size: 22px;
        line-height: 26px
    }

    .header-slideshow .item .desc a {
        font-size: inherit;
    }

    .header-slideshow .arrow-cont .custom-arrow {
        font-size: 56px;
    }

    .header-slideshow .arrow-cont .custom-arrow.prev {
        margin-right: 12px;
    }

    .header-slideshow .dots-cont {
        display: block;
        position: absolute;
        bottom: 15px;
        right: 70px;
        z-index: 1;
    }

    .header-slideshow .dots-cont .slick-dots {
        display: flex;
        position: relative;
        bottom: auto;
    }

    .header-slideshow .dots-cont .slick-dots li {
        width: 55px;
        height: 5px;
        background-color: #868785;
        margin: 0 0 0 15px;
    }

    .header-slideshow .dots-cont .slick-dots li.slick-active {
        background-color: white;
    }

    .header-slideshow .dots-cont .slick-dots li button {
        display: none;
    }

    .header-slideshow .top-accent {
        width: 40%;
    }

    .header-slideshow .bottom-accent {
        width: 55%;
        left: 0;
    }
}

@media (min-width: 1300px) {
    .header-slideshow .home-header::before,
    .header-slideshow .home-header::after {
        height: 100px;
    }
}