/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}
.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: 0.5;
    cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px;
}
.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #869791;
}
/*CUSTOM*/
.featured-gallery-wrap {
    max-width: 1800px;
    margin: auto;
    overflow: hidden;
    position: relative;
}
.featured-gallery .owl-stage-outer {
    overflow: visible;
}
.featured-gallery .owl-stage, .sponsor-slider .owl-stage {
    display: flex;
    align-items: center;
}
.featured-gallery .owl-stage-outer {
    overflow: hidden
}
.featured-gallery .item {
    transition: all .45s ease;
    transform: scale(0.85);
    opacity: 0.75;
    padding: 0 10px;
}
.featured-gallery .item:hover {
    opacity: 1;
}
.featured-gallery .item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: #ddd;
}
.featured-gallery-container {
    position: relative;
    padding: 0 24px;
}
.featured-gallery .owl-item.center .item {
    transform: scale(1);
    opacity: 1;
}
.featured-gallery .owl-item.center img {
    height: 240px;
}
.featured-gallery .owl-item:not(.center) img {
    height: 200px;
}
.owl-prev, .owl-next {
    position: absolute;
    display: block;
    top: 50%;
    color: #000;
    font-size: 56px;
    line-height: 9px;
    font-weight: 700;
    text-align: center;
    width: 24px;
    height: 24px;
    overflow: hidden;
}
.owl-nav span {
    display: block;
    width: 24px;
    height: 24px;
}
.owl-prev {
    left: -24px;
}
.owl-next {
    right: -24px;
}
.owl-dots {
    text-align: center;
}
.owl-carousel button.owl-dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 4px;
    border: solid 3px var(--main-color);
    border-radius: 50%;
}
.owl-carousel button.owl-dot.active {
    background-color: var(--main-color);
}