#history-carousel{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    margin: 5rem 0 0 0;
}
#history-carousel .item{
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: row;
    gap:5vw;
   align-items: center;
}

#history-carousel .item .image-block{
    flex: 0 0 45%;
}
#history-carousel .item .info-block{
    flex: 0 1 55%;
}

#history-carousel .owl-dots{
    position: absolute;
    display: flex;
    flex-direction: column;
    right: 0;
    gap: 2rem;
    z-index: 1;
    top: 0;
    height: 100%;
    justify-content: center;
    align-items: center;
}
#history-carousel.owl-theme .owl-dots .owl-dot span{
    margin:0px;
    width: 1rem;
    height: 1rem;
    background-color: #FFF5;
    border-radius: 50%;
    transition: all .3s linear;
}
#history-carousel.owl-theme .owl-dots .owl-dot.active span, #history-carousel.owl-theme .owl-dots .owl-dot:hover span{
    background-color: #FFF;    
}
#history-carousel.owl-theme .owl-dots .owl-dot.active{
    border: 1px solid #FFF;
    border-radius: 50%;
    padding: .5rem !important;
}

#history-carousel.owl-theme .owl-dots .owl-dot {
    border: 1px solid transparent;
    border-radius: 50%;
    padding: .5rem !important;
    transition: all .3s linear;
}

#history-carousel .item .info-block{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
#history-carousel .item .info-block .year{
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1;
    color: white;
    margin-bottom: 2rem;
}

#history-carousel .item .info-block .title{
    font-size:1.75rem;
    font-weight: 300;
    line-height: 1;
    color: white;
}
#history-carousel .item .info-block p{
    font-size: 1.375rem;
    font-weight: 300;
    line-height: 1.5;
    color: white;
}

@media screen and (max-width: 768px){
    #history-carousel .item{
        flex-direction: column;
        width: 100%;
    }
    #history-carousel .item .info-block .year{
        margin-bottom: 0;
    }
    #history-carousel .item .info-block .title{
        font-size: 1.5rem;
    }
    #history-carousel .item .info-block p{
        font-size: 1rem;
    }
    #history-carousel {
        margin: 2rem 0 0 0;
    }
}