/* Styles Start here  imagebox-single */
.imagebox-single {
    position: relative;
    margin-bottom: 50px;
}
/* Title Styles */
.imagebox-single .content-section h4,
.imagebox-single .content-section h4 a {
    font-size: 30px;
    font-family: 'Windsor W01 Bold';
    line-height: 1.2em;
    margin-bottom: 13px;
    text-shadow: 1px 1px 11px rgba(0, 0, 0, 0.34);
}
/* Description Styles */
.imagebox-single .content-section p {
    font-family: 'monotype-grotesque', sans-serif;
    font-size: 14px;
    line-height: 1.6em;
    font-weight: 100;
    text-shadow: 1px 1px 11px rgba(0, 0, 0, 0.34);
}
/* Read More Button */
.imagebox-single  .content-section .read-more {
    display: inline-block;
    font-family: 'monotype-grotesque', sans-serif;
    background-color: #ce4814;
    font-style: italic;
    font-weight: 100;
    font-size: 14px;
    letter-spacing: .05em;
    width: max-content;
    padding: 5px 30px;
    margin-top: 29px;
    margin-bottom: 23px;
    transition: border-radius ease 0.6s;
}
.imagebox-single  .content-section .read-more:hover {
    border-radius: 5px;
}
.imagebox-single  .content-section .read-more i {
    font-size: 10px;
}
.imagebox-single .fa-arrow-right:before {
    content: "\f054";
}

/* General Styles */
.imagebox-single .img-cont::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    height: 100%;
    opacity: 0.2;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0), black);
    pointer-events: none;
}
.imagebox-single:not(.full-width) .slides {
    padding-left: 20px;
    padding-right: 20px;
    max-width: calc(1110px + 40px);
}


.imagebox-single .shared-play-button {
    top: 10%;
}

/* Media Queries */
@media screen and (min-width: 40em) {
    .imagebox-single .shared-play-button {
        top: 15%;
    }
}
@media screen and (min-width: 64em) {
       .imagebox-single .shared-play-button {
        top: 50%;
        left:55%;
    }
    .imagebox-single {
        position: relative;
        margin-bottom: 85px;
    }
    .imagebox-single.active:after {
        transform: scaleX(0);
        transition: transform ease-out 0.7s;
    }
    
    .imagebox-single:after {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        transform: scaleX(1);
        transform-origin: right;
        background: white;
        content: '';
        transition: transform ease-out 0.7s 1.2s;
    }
    .imagebox-single .content-section {
        margin-bottom: 14px;
        margin-left: -500px;
        opacity: 0;
    }
    .imagebox-single.active .content-section {
        width: 44%;
        margin-bottom: 14px;
        margin-left: 0;
        opacity: 1;
        transition: opacity ease 1.6s 0.5s;
        left: 50px;
    }
    /* Title Styles */
    .imagebox-single .content-section h4,
    .imagebox-single .content-section h4 a {
        font-size: 50px;
        line-height: 1.2em;
        margin-bottom: 0;
    }
    /* Description Styles */
    .imagebox-single .content-section p {
        font-size: 20px;
        line-height: 1.4em;
        margin-top: 0;
    }
    /* Read More Button */
    .imagebox-single  .content-section .read-more {
        font-size: 18px;
        margin-top: 21px;
        padding: 4px 23px;
    }
    .imagebox-single  .content-section .read-more i {
        font-size: 14px;
    }
}
@media screen and (min-width: 74em) {
       .imagebox-single .shared-play-button {
        top: 50%;
        left:50%;
    }
}