#slideshow{
    position: relative;
}
#slideshow .content-section{
    z-index:2;
    width: 100%;
}
#slideshow .item{
    display: flex;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}
#slideshow .item .slideshow-content{
    display: table;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.44, 0.13, 0.48, 0.87);
    transition-delay: 0.3s;
    color: white;
    width: 100%;
}
.middle{
    display: table-cell;
    vertical-align: middle;
}
#slideshow .title{
    font-weight: bold;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
    color: white;
}
#slideshow .description{
    font-size: 18px;
    margin-top: 20px;
    color: white;
}
#slideshow .owl-dots{
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

#slideshow .owl-dots button.owl-dot.active{
    background: white;
}