.interior-slideshow {
    position: relative;
    visibility: hidden;
}
.interior-slideshow.hasTitle {
    margin-bottom: calc(35px + (80 - 35) * ((100vw - 320px) / (1024 - 320)));
}

.interior-slideshow .big-title{
    position: absolute;
    bottom: calc(-22px + (-105 - -22) * ((100vw - 320px) / (1500 - 320)));
    width: 100%;
    pointer-events: none;
    text-align: right;
    padding-right: 0;
}

.interior-slideshow .big-title h4{
    color: #f0df02;
    margin: 0;
    font-family: "termina", sans-serif;
    font-size: calc(40px + (179 - 40) * ((100vw - 320px) / (1500 - 320)));
    line-height: 1;
    letter-spacing: 2.4px;
    opacity: 0.7;
    text-transform: uppercase;
}

@supports(-webkit-text-stroke: 1px black){
    .interior-slideshow .big-title h4{
        color: transparent;
        -webkit-text-stroke: 3px #f0df02;
        text-shadow: none;
    }
}

.interior-slideshow .arrow-cont {
    width: 45px;
    height: 45px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 50px;
    right: 25px;
    z-index: 3;
}

.interior-slideshow .arrow-cont .count {
    font-size: calc(10px + (12 - 10) * ((100vw - 320px) / (640 - 320)));
    font-weight: 600;
    line-height: 24px;
    color: #fff;
    pointer-events: auto;
    font-family: "montserrat", sans-serif;
    cursor: pointer;
    text-transform: uppercase;
}
.interior-slideshow .arrow-cont .count span {
    color: #f0df02;
}
.interior-slideshow .arrow-cont .arrow {
    cursor: pointer;
    display: inline-block;
    height: 100%;
}
.interior-slideshow .arrow-cont .arrow.prev::before {
    content: "";
}
.interior-slideshow .arrow-cont .arrow img{
    position: relative;
    width: 35px;
}

.interior-slideshow .arrow-cont .arrow.prev img {
    transform: rotate(180deg);
    left: -2px;
}

.interior-slideshow .arrow-cont .arrow.next img {
    right: -2px;
}
.interior-slideshow .arrow-cont .arrow.next::before {
    content: "";
}

.interior-slideshow .slide::after {
    content: "";
    width: 100%;
    height: 45%;
    position: absolute;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 43%, rgba(0,0,0,0) 100%);
}
.interior-slideshow .slide .inner {
    position: relative;
}
.interior-slideshow .img-cont {
    position: relative;
}
.interior-slideshow .slide .inner .background-img {
    height: 320px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.interior-slideshow .inner .content-section {
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    padding: 15px 15px 50px;
    z-index: 3;
}

.interior-slideshow .content-section .river-icon {
    display: block;
    width: 60px;
    margin: 0 auto 10px;
}

.interior-slideshow .content-section a {
    text-decoration: none;
}

.interior-slideshow .content-section h3 {
    font-family: 'montserrat', sans-serif;
    color: #fff;
    font-size: calc(10px + (14 - 10) * ((100vw - 320px) / (640 - 320)));
    line-height: 1;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.7px;
}

.interior-slideshow .content-section p {
    font-family: 'montserrat', sans-serif;
    font-size: calc(10px + (14 - 10) * ((100vw - 320px) / (640 - 320)));
    line-height: 1.2;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0;
    margin-top: 0;
}

.interior-slideshow .content-section .read-more {
    display: inline-block;
    color: #fff;
    font-family: 'montserrat', sans-serif;
    text-transform: uppercase;
    font-size: calc(10px + (14 - 10) * ((100vw - 320px) / (1024 - 320)));
    line-height: 18px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-decoration: underline;
}


@media(min-width: 641px) {

    .interior-slideshow .slide{
        opacity: 0;
        transition: all ease-out 0.5s;
    }

    .interior-slideshow .slide::after{
        height: 100%;
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 40%,rgba(0,0,0,0.7) 100%)
    }

    .interior-slideshow .slide.active{
        opacity: 1;
        transition: all ease-out 0.5s;
    }

    .interior-slideshow .slide .inner .background-img {

    }

    .interior-slideshow .slide .inner .content-section {
        width: 40%;
        height: auto;
        position: absolute;
        left: 0px;
        bottom: -10px;
        border-radius: 4px;
        padding: 30px 30px 55px;
        opacity: 0;
    }

    .interior-slideshow .slide.active .content-section {
        bottom: 0px;
        opacity: 1;
        transition: opacity ease 1s, bottom ease 0.2s;
    }

    .interior-slideshow .content-section h3 {
        font-size: 14px;
    }

    .interior-slideshow .content-section p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .interior-slideshow .arrow-cont {
        width: 65px;
        height: 53px;
        bottom: 55px;
        right: 25px;
    }
    .interior-slideshow .arrow-cont .count {
        font-size: 12px;
    }
    .interior-slideshow .arrow-cont .arrow img{
        width: 57px;
    }
}


@media(min-width: 1025px) {
    .interior-slideshow.hasTitle {
        margin-bottom: calc(80px + (125 - 80) * ((100vw - 1025px) / (1500 - 1025)));
    }

    
    .interior-slideshow .slide .inner .background-img {
        
    }
    .interior-slideshow .big-title{
        padding-right: 88px;
        /*bottom: calc(-60px + (-105 - -60) * ((100vw - 1025px) / (1500 - 1025)));*/
    }
    .interior-slideshow .big-title h4{
        font-size: calc(120px + (179 - 120) * ((100vw - 1025px) / (1500 - 1025)));
    }
    .interior-slideshow .slide .inner .content-section {
        padding: 35px 35px 80px 80px;
    }
    .interior-slideshow .slide.active .content-section {
       
    }
    .interior-slideshow .content-section h3 {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .interior-slideshow .content-section .read-more {
        border-bottom: none;
        font-size: 14px;
        text-decoration: none;
    }

    .interior-slideshow .content-section .read-more:hover {
        border-bottom: 2px solid #FFF;
        margin-bottom: -2px;
    }

    .interior-slideshow .arrow-cont {
        bottom: 82px;
        right: 88px;
    }
}

@media(min-width: 1200px) {
    .interior-slideshow .slide .inner .background-img {
        height: 575px;
    }

}
@media(min-width: 1500px) {
    .interior-slideshow.hasTitle {
        margin-bottom: 125px;
    }
    .interior-slideshow .big-title{
        bottom: -105px;
    }
    .interior-slideshow .big-title h4{
        font-size: 179px;
    }
}

.custom_header_slideshow_blog img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}