.owl-carousel{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.owl-carousel .owl-nav{
    display: none;
}
.owl-carousel .owl-dots{
    position: absolute;
    top: 50%;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transform: translateY(-50%);
}
.owl-carousel .owl-dots .owl-dot{

}

.owl-carousel .owl-dots .owl-dot.active span, .owl-carousel .owl-dots .owl-dot:hover span{
    width: 20px;
    background-color: #fff;
}

.owl-carousel .owl-dots .owl-dot span{
    width: 10px;
    transition: all 0.2s linear;

}
.owl-carousel .owl-stage-outer{
    height: 100%;
}
.owl-carousel .owl-stage{
    height: 100%;
}
.owl-carousel .owl-stage .owl-item{
    height: 100%;
}
.owl-carousel .owl-stage .owl-item .item{
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    background: transparent no-repeat center / cover;
}
.owl-carousel .owl-stage .owl-item .item .container{
    position: relative;
    z-index: 1;
}
.owl-carousel .owl-stage .owl-item .item:before{
    content:'';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.15;
}
.owl-carousel .owl-stage .owl-item .item .description{
}
.owl-carousel .owl-stage .owl-item .item .description p{
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.owl-carousel .owl-stage .owl-item .item .description h1{
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.owl-carousel .owl-stage .owl-item .item .description a{
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.top-bar--style-1 .top-bar__navigation a:not(.custom-btn){
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 768px){
    .owl-carousel .owl-dots{
        top: auto;
        left: 50%;
        right: auto;
        bottom: 10px;
        flex-direction: row;
        align-items: flex-end;
        transform: translate(-50%,0);
    }
    .owl-carousel .owl-dots .owl-dot.active span, .owl-carousel .owl-dots .owl-dot:hover span{
        width: 10px;
        height: 20px;
    }
}
