/* .history-items:nth-child(odd) {
    background: red;   
}

.history-items:nth-child(even) {
    background: green;   
} */

.history-items{
    width: calc(50% - 20px);
    height: auto;
    margin-bottom: 84px;
    margin-right: 20px;
    box-sizing: border-box;
    position: relative;
}
.history-items .inner-container{
    position: relative;
    display: block;
}
.history-items *{ 
    box-sizing: border-box;
}
.history-items .image-container > img{
    height: auto;
    width: 100%;
    min-height: 100%;
    transition: transform .2s; /* Animation */    

    
}
.history-items:hover .image-container > img{
    transform: scale(1.1);  
}
.history-items .image-container {
    width: 100%;
    height: 384px;
    overflow: hidden;
}

.history-items .bottom-header{
    position: absolute;
    display : flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height:  80px;
    bottom: 0;
    z-index: 100;
    border-left-color: #C80002 ;
    border-left-style: solid;
    border-left-width: 20px;
    left : -10px
}

.history-items .bottom-header h3 {
    font-family: Khula;
    font-style: normal;
    font-weight: bold;
    font-size: 36px;
    line-height: 58px;
    color: #FFFFFF;
    padding :0;
    margin-left: 10px;
    margin-bottom: 0;
    text-shadow: 0px 3px 4px rgba(0,0,0,.5);
}
.slider-item.history-items  .arrow-container{

    display: none;
    width: 100%;
    height: auto;
    justify-content: space-between;
    margin-top: 14px;
    margin-top: 14px;
}

@media only screen and (max-width: 765px) {
    .custom-slider .slider-item.history-items{
        display: none;
    }
    .custom-slider .slider-item.history-items.active{
        display: block;
        width: 100%;
    }
    .mobile.history-items .image-container {
        width: 100%;
        height: 279px;
        overflow: hidden;
    }
    .mobile.slider-item.history-items  .arrow-container{

        display: flex;
        width: 100%;
        height: auto;
        justify-content: space-between;
        margin-top: 6px;
    }

    .mobile.slider-item.history-items  .arrow-container svg{

        height: 18px;
        width: 32px;
    }
    
    
}

