﻿:root {
    --main-white-color: white;
    --main-black-color: black;
}
.static {
    position: static;
}

.cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.owl-slide-text a {
    background-color: #f37000;
    cursor: pointer;
    text-decoration: none;
    max-width: 200px;
    min-width: 150px;
    font-size: 1rem;
    line-height: 38px;
    padding: 0 30px;
    color: white;
}
    .owl-slide-text a:hover {
        background-color: #bd6f00;
    }
.owl-carousel {
    z-index: 0;
}
.owl-carousel .owl-slide {
    position: relative;
    min-height: 100vh;
    background-color: lightgray;
}
    .owl-carousel h2 {
        border-top: 3px solid var(--main-white-color);
        border-bottom: 3px solid var(--main-white-color);
        padding: 15px 0;
        margin: 0 10% 5%;
        font-weight: normal;
    }

    .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-nav {
        color: var(--main-white-color);
        position: absolute;
        top: 45%;
        width: 100%;
        font-size: 1.2rem;
    }
        .owl-carousel .owl-nav .owl-prev {
            left: 10%;
            position: absolute;
            border-radius: 50px;
            border: 3px solid !important;
            height: 35px;
            width: 35px;
        }
            .owl-carousel .owl-nav .owl-prev .fa-chevron-left {
                vertical-align: text-bottom;
                margin-left: -2px;
            }
            .owl-carousel .owl-nav .owl-next {
                right: 10%;
                position: absolute;
                border-radius: 50px;
                border: 3px solid !important;
                height: 35px;
                width: 35px;
            }
                .owl-carousel .owl-nav .owl-next .fa-chevron-right {
                    vertical-align: text-bottom;
                    margin-right: -2px;
                }

.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
}
.owl-dots{
    display: none;
}
section {
    display: none;
}

@media (max-width: 991px) {
    .owl-carousel .owl-nav .owl-prev {
        left: 0;
    }
    .owl-carousel .owl-nav .owl-next {
        right: 0;
    }
    .owl-carousel .owl-slide-subtitle {
        padding-left: 10px;
        padding-right: 10px;
    }
    .owl-carousel .owl-slide {
        padding-top: 10vh;
    }
}