.first-news-box{
    margin-bottom: 120px;
    margin-top: -60px;
}

.featured-image-single{
    width: 100%;
    height: auto;
    max-height: 380px;
    -o-object-fit: cover;
    object-fit: cover;
}

.first-news-info{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/* ___________ CAPTIONS ___________ */

.featured-image-box{
    position: relative;
    margin-bottom: 20px;
}

.caption-box{
    position: absolute;
    background-color: var(--secondary-color-4);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    bottom: 15px;
    right: 0;
    padding: 3px 5px;
}

/* __________ POSITION DATE AND CATEGORY _______ */

.news-category-box{
    display : -webkit-box;
    display : -ms-flexbox;
    display : flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-left: 30px;
}

/* ___________ SLIDER _____________ */

.slider-box{
    width: 100%;
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.image-slider-box{
    width: 100%;
    height: 380px;
    position: relative;
    overflow: hidden;
}

.image-slider-box img.image-slider{
    -o-object-fit: contain;
    object-fit: contain;
    height: 380px;
    width: 100%;
    position: absolute;
    top: 0;
    left: -100%;
    opacity: 0;
    -webkit-transition: left 0.5s, opacity 0.2s;
    transition: left 0.5s, opacity 0.2s;
}

.image-slider-box .caption-box{
    opacity: 0;
    right: -100%;
    -webkit-transition: right 0.5s, opacity 0.2s;
    transition: right 0.5s, opacity 0.2s;
}

.image-slider-box .singular-slider-box.is-active img.image-slider{
    left: 0;
    opacity: 1;
    -webkit-transition: left 0.5s, opacity 0.3s 0.2s;
    transition: left 0.5s, opacity 0.3s 0.2s;
}

.image-slider-box .singular-slider-box.is-active .caption-box{
    right: 0;
    opacity: 1;
    -webkit-transition: right 0.5s, opacity 0.3s 0.2s;
    transition: right 0.5s, opacity 0.3s 0.2s;
}

.buttons-slider-box{
    margin-top: 20px;
    width: 240px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 992px){
    .slider-box{
        margin-bottom: 60px;
    }
    
    .content-box{
        margin-bottom: 40px;
    }
}

@media (max-width: 768px){
    .featured-image-single{
        max-height: 300px;
    }
    
    .first-news-box{
        margin-bottom: 60px;
    }
}

@media (max-width: 576px){
    .image-slider-box{
        height: 270px;
    }
    
    .image-slider-box img.image-slider{
        max-height: 270px;
    }
}




