/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots, .owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

.owl-theme .owl-nav {
    margin-top: 10px
}

.owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none
}

.owl-theme .owl-nav .disabled {
    opacity: .5;
    cursor: default
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #869791
}

.owl-gallery {
    background-color: white;
}

.owl-gallery, .owl-gallery .owl-stage-outer, .owl-gallery .owl-stage {
    height: 470px;
}

.owl-dots {
    text-align: center;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    margin: 0 .75rem;
    background-color: #A1A2A4 !important;
}

.owl-dot.active {
    width: 16px;
    height: 16px;
    background-color: #2181b9 !important;
}

.owl-gallery .owl-item img {
    height: 470px;
}

@media (min-width: 768px) {
    .owl-gallery .owl-item img {
        object-fit: cover;
    }
}


.owl-gallery:hover .owl-nav {
    opacity: 1;
}

.owl-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    color: #fff;
    font-size: 130px;
    line-height: 1;
    margin: 0;
    width: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s;
}


.owl-nav .owl-prev, .owl-nav .owl-next {
    display: block;
    width: 40px;
    z-index: 2;
    color: rgb(255, 255, 255) !important;
    text-transform: uppercase;
    background-color: rgba(255, 255, 255, 0.5) !important;
    cursor: pointer;
    line-height: 1;
    text-indent: -999px;
    pointer-events: all;
    padding: 9px 12px;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    border-radius: 0px;
    transition: opacity 150ms, border 0.3s ease-in-out;
    overflow: hidden;
    position: absolute;
    top: 0px;
    bottom: 0px;
}

.owl-nav .owl-prev span, .owl-nav .owl-next span {
    position: relative;
    display: block;
    height:20px;
}

.owl-nav .owl-prev span:before {
    width: 5px;
    height: 20px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    content: "";
    transform: rotate(45deg) translateY(-8px);
    left: 10px;
}

.owl-nav .owl-prev span:after {
    width: 5px;
    height: 20px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    content: "";
        transform: rotate(-45deg) translateY(8px);
    left: 10px;
}

.owl-nav .owl-next span:before {
    width: 5px;
    height: 20px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    content: "";
        transform: rotate(-45deg) translateY(-8px);
    right: 10px;
}

.owl-nav .owl-next span:after {
    width: 5px;
    height: 20px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    content: "";
        transform: rotate(45deg) translateY(8px);
    right: 10px;
}

.owl-nav .owl-prev {
    left: 0px;
}

.owl-nav .owl-next {
    right: 0px;
}