:root {
    --main-white-color: black;
    --main-black-color: white;
}

.static {
    position: static;
}

.cover {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.owl-carousel .owl-slide {
    position: relative;
    height: 79vh;
    background-color: lightgray;
}

.slide_content {
    z-index: 40;
}

.owl-overlay {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 0;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(42deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 76%);
    background: -webkit-linear-gradient(42deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 76%);
    background: linear-gradient(42deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 76%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

.owl-carousel .owl-slide-animated {
    transform: translateX(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.05s;
}

.owl-carousel .owl-slide-animated.is-transitioned {
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s;
}

.owl-carousel .owl-slide-title.is-transitioned {
    transition-delay: 0.2s;
}

.owl-carousel .owl-slide-subtitle.is-transitioned {
    transition-delay: 0.35s;
}

.owl-carousel .owl-slide-cta.is-transitioned {
    transition-delay: 0.5s;
}


.owl-carousel .owl-dots,
.owl-carousel .owl-nav {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media (max-width: 1024px) {
    .owl-carousel .owl-dots,
    .owl-carousel .owl-nav {
        left: 0;
    }
}

.owl-carousel .owl-dots .owl-dot span {
    background: transparent;
    border: 1px solid var(--main-black-color);
    transition: all 0.2s ease;
}

.owl-carousel .owl-dots .owl-dot:hover span,
.owl-carousel .owl-dots .owl-dot.active span {
    background: var(--main-black-color);
}

.owl-carousel .owl-nav {
    left: 50%;
    top: 10%;
    transform: translateX(-50%);
    margin: 0;
}

.owl-theme .owl-dots .owl-dot span {
    width: 70px;
}

.owl-theme .owl-dots .owl-dot span {
    height: 5px !important;
}