/**
 * Owl Carousel v2.3.3
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */


/*
 *	Owl Carousel - Core
 */

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: none;
    touch-action: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}


/* No Js */

.no-js .owl-carousel {
    display: block;
}


/*
 *	Owl Carousel - Animate Plugin
 */

.owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}


/*
 * 	Owl Carousel - Auto Height Plugin
 */

.owl-height {
    transition: height 500ms ease-in-out;
}


/*
 * 	Owl Carousel - Lazy Load Plugin
 */

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d;
}


/*
 * 	Owl Carousel - Video Plugin
 */

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}


/*
 * 	�˦��վ�
 */

.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: 0px;
    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: #fff;
    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;
}


/* themeforest-ezy */


/* Carousel */

.owl-carousel {
    /* Rounded Style 1 */
    /* Owl Dots Styles */
    /* Owl Nav Styles */
    /* Nav Colors */
    /* Nav Size */
}

.owl-carousel.stage-py-1 .owl-stage-outer {
    padding-top: 32px;
    padding-top: 2rem;
    padding-bottom: 32px;
    padding-bottom: 2rem;
}

.owl-carousel .owl-item {
    -ms-touch-action: auto !important;
    touch-action: auto !important;
}

.owl-carousel .owl-nav {
    top: 50%;
    position: absolute;
    margin-top: -23px;
    width: 100%;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
    display: inline-block;
    position: absolute;
    width: 50px;
    height: 50px;
    outline: none;
}

.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.owl-carousel .owl-nav .owl-prev {
    left: -5px;
}

.owl-carousel .owl-nav .owl-prev:before {
    font-family: "FontAwesome";
    content: "\f053";
    position: relative;
    left: -1px;
    top: 1px;
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.owl-carousel .owl-nav .owl-next {
    right: -5px;
}

.owl-carousel .owl-nav .owl-next:before {
    font-family: 'FontAwesome';
    content: "\f054";
    position: relative;
    left: 2px;
    top: 1px;
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.owl-carousel .owl-nav.disabled+.owl-dots {
    margin-top: 16px;
    margin-top: 1rem;
}

.owl-carousel .owl-prev,
.owl-carousel .owl-next {
    outline: none;
}

.owl-carousel .owl-dots {}

.owl-carousel .owl-dots .owl-dot {
    outline: none;
}

.owl-carousel.rounded-style-1 .owl-stage-outer {
    border-radius: 100%;
}

.owl-carousel.rounded-style-1 .owl-stage-outer:before {
    content: '';
    display: block;
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 4px solid;
    border-color: #CCC;
    border-radius: 100%;
    z-index: 1;
}

.owl-carousel.rounded-style-1 .owl-stage-outer:after {
    content: '';
    display: block;
    pointer-events: none;
    position: absolute;
    top: 4px;
    right: 4px;
    bottom: 4px;
    left: 4px;
    border: 6px solid;
    border-color: #FFF;
    border-radius: 100%;
    z-index: 1;
}

.owl-carousel.dots-style-1 {
    margin-bottom: 30px;
}

.owl-carousel.dots-style-1 .owl-dots .owl-dot span {
    width: 7px;
    height: 7px;
    margin: 4px 4px;
    -webkit-transition: ease background 300ms 100ms;
    transition: ease background 300ms 100ms;
}

.owl-carousel.dots-style-1 .owl-dots .owl-dot.active span {
    background: #CCC;
    -webkit-transition: ease background 300ms;
    transition: ease background 300ms;
}

.owl-carousel.dots-style-2 .owl-dots {
    position: absolute;
    bottom: 7px;
    right: 10px;
}

.owl-carousel.dots-style-2 .owl-dots .owl-dot span {
    width: 7px;
    height: 7px;
    margin: 4px 4px;
}

.owl-carousel.dots-style-2 .owl-dots .owl-dot.active span {
    background: #FF6666;
}

.owl-carousel.dots-style-2.dots-style-2-left .owl-dots {
    right: auto;
    left: 10px;
}

.owl-carousel.dots-style-2.dots-style-2-center .owl-dots {
    right: auto;
    left: auto;
    width: 100%;
}

.owl-carousel.dots-style-2.dots-style-2-center-more-up .owl-dots {
    bottom: 30px;
    right: auto;
    left: auto;
    width: 100%;
}

.owl-carousel.dots-style-3 {
    margin-bottom: 30px;
}

.owl-carousel.dots-style-3 .owl-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: -100;
}

.owl-carousel.dots-style-3 .owl-dots .owl-dot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.owl-carousel.dots-style-3 .owl-dots .owl-dot span {
    background: #999;
    width: 8px;
    height: 8px;
    -webkit-transition: ease all 300ms 300ms;
    transition: ease all 300ms 300ms;
}

.owl-carousel.dots-style-3 .owl-dots .owl-dot.active span {
    background: #333;
    -webkit-transition: ease all 300ms;
    transition: ease all 300ms;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.owl-carousel.nav-style-1 {
    padding-bottom: 30px;
}

.owl-carousel.nav-style-1 .owl-nav {
    left: 50%;
    margin-top: 0;
    position: absolute;
    top: auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 65px;
}

.owl-carousel.nav-style-1 .owl-nav .owl-prev,
.owl-carousel.nav-style-1 .owl-nav .owl-next {
    background: transparent;
    color: #CCC;
    font-size: 22.4px;
    font-size: 1.4rem;
}

.owl-carousel.nav-style-1 .owl-nav .owl-prev:before {
    content: '\f104';
}

.owl-carousel.nav-style-1 .owl-nav .owl-next:before {
    content: '\f105';
}

.owl-carousel.nav-style-2 .owl-nav .owl-prev,
.owl-carousel.nav-style-2 .owl-nav .owl-next {
    background: transparent;
    color: #CCC;
    font-size: 22.4px;
    font-size: 1.7rem;
}

.owl-carousel.nav-style-2 .owl-nav .owl-prev {
    left: 0;
}

.owl-carousel.nav-style-2 .owl-nav .owl-prev:before {
    content: '\f104';
}

.owl-carousel.nav-style-2 .owl-nav .owl-next {
    right: 0;
}

.owl-carousel.nav-style-2 .owl-nav .owl-next:before {
    content: '\f105';
}

.owl-carousel.nav-style-3 .owl-nav .owl-prev,
.owl-carousel.nav-style-3 .owl-nav .owl-next {
    background: rgba(255, 255, 255, 1);
    font-size: 15px;
    width: 45px;
    height: 60px;
}

.owl-carousel.nav-style-3 .owl-nav .owl-prev {
    left: -135px;
    background-image: url("owl-prev.png");
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 0 8px 8px 0;
    box-shadow: 5px 5px 25px 0px rgba(0, 0, 0, 0.15);
}

.owl-carousel.nav-style-3 .owl-nav .owl-prev:before {
    content: '';
}

.owl-carousel.nav-style-3 .owl-nav .owl-next {
    right: -135px;
    background-image: url("owl-next.png");
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 8px 0 0 8px;
    box-shadow: 5px 5px 25px 0px rgba(0, 0, 0, 0.15);
}

.owl-carousel.nav-style-3 .owl-nav .owl-next:before {
    content: '';
}

.owl-carousel.nav-style-4 .owl-nav {
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    margin-top: -20px;
}

.owl-carousel.nav-style-4 .owl-nav .owl-prev,
.owl-carousel.nav-style-4 .owl-nav .owl-next {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 100%;
    color: #666 !important;
    font-size: 22.4px;
    font-size: 1.4rem;
    line-height: 17px;
}

.owl-carousel.nav-style-4 .owl-nav .owl-prev {
    left: 3px;
}

.owl-carousel.nav-style-4 .owl-nav .owl-prev:before {
    content: '\f104';
}

.owl-carousel.nav-style-4 .owl-nav .owl-next {
    right: 3px;
}

.owl-carousel.nav-style-4 .owl-nav .owl-next:before {
    content: '\f105';
}

.owl-carousel.nav-style-4:hover .owl-nav {
    opacity: 1;
}

.owl-carousel.nav-style-5 .owl-nav {
    top: 0;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    margin-top: 0;
    height: 100%;
    pointer-events: none;
}

.owl-carousel.nav-style-5 .owl-nav .owl-prev,
.owl-carousel.nav-style-5 .owl-nav .owl-next {
    background: rgba(255, 255, 255, 0.6) none repeat scroll 0 0;
    border-radius: 0;
    font-size: 22.4px;
    font-size: 1.4rem;
    height: 100%;
    line-height: 17px;
    margin: 0;
    color: #666 !important;
    width: 35px;
    pointer-events: auto;
}

.owl-carousel.nav-style-5 .owl-nav .owl-prev {
    left: 0;
}

.owl-carousel.nav-style-5 .owl-nav .owl-prev:before {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: '\f104';
}

.owl-carousel.nav-style-5 .owl-nav .owl-next {
    right: 0;
}

.owl-carousel.nav-style-5 .owl-nav .owl-next:before {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: '\f105';
}

.owl-carousel.nav-style-5:hover .owl-nav {
    opacity: 1;
}

.owl-carousel.nav-style-6 .owl-nav .owl-next,
.owl-carousel.nav-style-6 .owl-nav .owl-prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: transparent;
}

.owl-carousel.nav-style-6 .owl-nav .owl-next:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.owl-carousel.nav-style-6 .owl-nav .owl-next:after {
    content: '';
    display: block;
    position: absolute;
    width: 35px;
    right: 19px;
    border-top: 1px solid #FFF;
}

.owl-carousel.nav-style-6 .owl-nav .owl-prev:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border-top: 1px solid #FFF;
    border-left: 1px solid #FFF;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.owl-carousel.nav-style-6 .owl-nav .owl-prev:after {
    content: '';
    display: block;
    position: absolute;
    width: 35px;
    left: 19px;
    border-top: 1px solid #FFF;
}

.owl-carousel.nav-style-7 .owl-nav .owl-prev,
.owl-carousel.nav-style-7 .owl-nav .owl-next {
    background: transparent;
    color: #CCC;
    font-size: 22.4px;
    font-size: 1.4rem;
}

.owl-carousel.nav-style-7 .owl-nav .owl-prev {
    left: 15px;
}

.owl-carousel.nav-style-7 .owl-nav .owl-prev:before {
    content: '\f104';
}

.owl-carousel.nav-style-7 .owl-nav .owl-next {
    right: 15px;
}

.owl-carousel.nav-style-7 .owl-nav .owl-next:before {
    content: '\f105';
}

.owl-carousel.nav-style-8 .owl-nav .owl-prev,
.owl-carousel.nav-style-8 .owl-nav .owl-next {
    background: rgba(255, 255, 255, 0);
    font-size: 15px;
    width: 45px;
    height: 60px;
}

.owl-carousel.nav-style-8 .owl-nav .owl-prev {
    top: -30px;
    left: 0px;
    background-image: url("owl-prev.png");
    background-repeat: no-repeat;
    background-position: center center;
}

.owl-carousel.nav-style-8 .owl-nav .owl-prev:before {
    content: '';
}

.owl-carousel.nav-style-8 .owl-nav .owl-next {
    top: -30px;
    right: 0px;
    background-image: url("owl-next.png");
    background-repeat: no-repeat;
    background-position: center center;
}

.owl-carousel.nav-style-8 .owl-nav .owl-next:before {
    content: '';
}

.owl-carousel.nav-style-9 .owl-nav .owl-prev,
.owl-carousel.nav-style-9 .owl-nav .owl-next {
    background: rgba(255, 255, 255, 0);
    font-size: 15px;
    width: 30px;
    height: 45px;
}

.owl-carousel.nav-style-9 .owl-nav .owl-prev {
    left: -30px;
    background-image: url("owl-prev.png");
    background-repeat: no-repeat;
    background-position: center center;
}

.owl-carousel.nav-style-9 .owl-nav .owl-prev:before {
    content: '';
}

.owl-carousel.nav-style-9 .owl-nav .owl-next {
    right: -30px;
    background-image: url("owl-next.png");
    background-repeat: no-repeat;
    background-position: center center;
}

.owl-carousel.nav-style-9 .owl-nav .owl-next:before {
    content: '';
}

.owl-carousel.nav-color-light .owl-nav .owl-prev,
.owl-carousel.nav-color-light .owl-nav .owl-next {
    color: #FFF !important;
}

.owl-carousel.nav-color-light.nav-style-5 .owl-nav .owl-prev,
.owl-carousel.nav-color-light.nav-style-5 .owl-nav .owl-next {
    background: rgba(255, 255, 255, 0.6) none repeat scroll 0 0;
    color: #1c1f21 !important;
}

.owl-carousel.nav-color-dark .owl-nav .owl-prev,
.owl-carousel.nav-color-dark .owl-nav .owl-next {
    color: #1c1f21 !important;
}

.owl-carousel.nav-color-dark.nav-style-5 .owl-nav .owl-prev,
.owl-carousel.nav-color-dark.nav-style-5 .owl-nav .owl-next {
    background: rgba(28, 31, 33, 0.6) none repeat scroll 0 0;
    color: #FFF !important;
}

.owl-carousel.nav-size-1 .owl-nav .owl-prev,
.owl-carousel.nav-size-1 .owl-nav .owl-next {
    font-size: 27.2px;
    font-size: 1.7rem;
}

.owl-carousel.nav-size-2 .owl-nav .owl-prev,
.owl-carousel.nav-size-2 .owl-nav .owl-next {
    font-size: 32px;
    font-size: 2rem;
}


/* Responsive Nav Syles */

@media (max-width: 575px) {
    .owl-carousel.nav-style-3 {
        margin-right: auto;
        margin-left: auto;
    }
}


/* Carousel Horizontal Degrade */

.owl-carousel.carousel-horizontal-degrade:after {
    content: ' ';
    display: block;
    width: 30%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(241, 243, 247, 0)), to(#f1f3f7));
    background: linear-gradient(to right, rgba(241, 243, 247, 0), #f1f3f7);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    pointer-events: none;
}

.owl-carousel.carousel-horizontal-degrade:before {
    content: ' ';
    display: block;
    width: 30%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#f1f3f7), to(rgba(241, 243, 247, 0)));
    background: linear-gradient(to right, #f1f3f7, rgba(241, 243, 247, 0));
    position: absolute;
    left: 0;
    z-index: 10;
    pointer-events: none;
}

.owl-carousel.carousel-horizontal-degrade.rm-degrade-now:before,
.owl-carousel.carousel-horizontal-degrade.rm-degrade-now:after {
    content: none;
}

@media (max-width: 767px) {
    .owl-carousel.carousel-horizontal-degrade.mobile-disable-degrade:before,
    .owl-carousel.carousel-horizontal-degrade.mobile-disable-degrade:after {
        content: none;
    }
}


/* Carousel Style 1 */

.owl-carousel.carousel-style-1 .content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.owl-carousel.carousel-style-1 .left-content {
    position: relative;
    padding: 0 32px;
    padding: 0 2rem;
    text-align: center;
    min-width: 100px;
}

.owl-carousel.carousel-style-1 .left-content>span span {
    font-size: 60.8px;
    font-size: 3.8rem;
    line-height: 1;
    margin-left: 2px;
}

.owl-carousel.carousel-style-1 .left-content:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    top: 6.4px;
    top: 0.4rem;
    right: 8px;
    right: 0.5rem;
    height: 68.8px;
    height: 4.3rem;
    border-right: 1px solid #e1e1e1;
}

.owl-carousel.carousel-style-1 .right-content {
    padding-left: 16px;
    padding-left: 1rem;
    padding-top: 30.4px;
    padding-top: 1.9rem;
}

.owl-carousel.carousel-style-1 .owl-dots {
    position: absolute;
    left: 30.4px;
    left: 1.9rem;
    z-index: 1;
}


/* Carousel Style - Left Bottom Corner */

.owl-carousel.carousel-corner-left-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35%;
    margin-bottom: 0;
    min-width: 300px;
    /* Carousel Corner Style 1 */
}

.owl-carousel.carousel-corner-left-bottom:before {
    content: '';
    display: block;
    position: absolute;
    top: -60px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    background: rgba(28, 31, 33, 0.3);
    border-radius: 100%;
    z-index: -1;
}

.owl-carousel.carousel-corner-left-bottom .owl-stage-outer:before {
    content: '';
    display: block;
    background: #FFF;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.owl-carousel.carousel-corner-left-bottom.stage-top-gap .owl-stage-outer:before {
    top: 22px;
}

.owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-item h2 {
    position: relative;
    top: -7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 2.5em;
    letter-spacing: 1.2px;
    font-weight: 800;
    margin-bottom: 5px;
    -webkit-transition: ease top 300ms;
    transition: ease top 300ms;
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
}

.owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-item h2>span {
    font-size: 1.4em;
    font-weight: 900;
    line-height: 1;
    -webkit-transition: ease opacity 300ms;
    transition: ease opacity 300ms;
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
}

.owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-item .content {
    padding: 0 15%;
    -webkit-transition: ease opacity 300ms;
    transition: ease opacity 300ms;
    -webkit-transition-delay: 100ms;
    transition-delay: 100ms;
}

.owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-item a.learn-more {
    font-weight: bold;
    -webkit-transition: ease transform 300ms, ease opacity 300ms;
    transition: ease transform 300ms, ease opacity 300ms;
}

.owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-item a.learn-more:hover i {
    margin-left: 8px;
}

.owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-item a.learn-more i {
    margin-left: 5px;
    -webkit-transition: ease margin-left 300ms;
    transition: ease margin-left 300ms;
}

.owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-item.changing h2 {
    top: 20px;
    -webkit-transition: ease top 100ms;
    transition: ease top 100ms;
    -webkit-transition-delay: 0ms;
    transition-delay: 0ms;
}

.owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-item.changing h2>span {
    opacity: 0;
    -webkit-transition: ease opacity 100ms;
    transition: ease opacity 100ms;
}

.owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-item.changing .content {
    opacity: 0;
    -webkit-transition: ease opacity 100ms;
    transition: ease opacity 100ms;
    -webkit-transition-delay: 0ms;
    transition-delay: 0ms;
}

.owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-item.changing a.learn-more {
    opacity: 0;
    -webkit-transition: ease transform 100ms, ease opacity 100ms;
    transition: ease transform 100ms, ease opacity 100ms;
    -webkit-transition-delay: 0ms;
    transition-delay: 0ms;
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
}

.owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-dots {
    margin-top: 0;
    padding: 20px 0;
    background: #FFF;
}

@media (max-width: 575px) {
    .owl-carousel.carousel-corner-left-bottom {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}


/* Carousel Style - Center Active Items */

.owl-carousel.carousel-center-active-items {
    padding-bottom: 60px;
    left: 50%;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    /* Change Color On Current Item */
}

@media (min-width: 992px) {
    .owl-carousel.carousel-center-active-items {
        width: 114vw;
    }
}

@media (min-width: 1200px) {
    .owl-carousel.carousel-center-active-items {
        width: 102vw;
    }
}

.owl-carousel.carousel-center-active-items .owl-item .card {
    background-color: #FFF;
    padding: 24.615px;
    padding: 1.5384615385rem;
    -webkit-transition: ease background-color 300ms;
    transition: ease background-color 300ms;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.owl-carousel.carousel-center-active-items .owl-item:not(.current):not(.remove-blur) .card {
    -webkit-filter: blur(2px);
}

.owl-carousel.carousel-center-active-items .owl-nav {
    left: 50%;
    margin-top: 10px;
    position: absolute;
    top: auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 65px;
    transform: translateX(-50%);
}

.owl-carousel.carousel-center-active-items .owl-nav .owl-prev,
.owl-carousel.carousel-center-active-items .owl-nav .owl-next {
    background: transparent;
    color: #CCC;
    font-size: 22.4px;
    font-size: 1.4rem;
}

.owl-carousel.carousel-center-active-items .owl-nav .owl-prev:before {
    content: '\f104';
}

.owl-carousel.carousel-center-active-items .owl-nav .owl-next:before {
    content: '\f105';
}

.owl-carousel.carousel-center-active-items:not(.carousel-center-active-items-style-2):not(.carousel-center-active-items-style-3) .owl-item.active.current .card {
    background: #CCC;
}

.owl-carousel.carousel-center-active-items:not(.carousel-center-active-items-style-2):not(.carousel-center-active-items-style-3) .owl-item.active.current .card i,
.owl-carousel.carousel-center-active-items:not(.carousel-center-active-items-style-2):not(.carousel-center-active-items-style-3) .owl-item.active.current .card strong,
.owl-carousel.carousel-center-active-items:not(.carousel-center-active-items-style-2):not(.carousel-center-active-items-style-3) .owl-item.active.current .card p {
    color: #FFF !important;
}

@media (min-width: 768px) {
    .owl-carousel.carousel-center-active-items.carousel-center-active-items-style-2,
    .owl-carousel.carousel-center-active-items.carousel-center-active-items-style-3 {
        width: 160%;
    }
}

@media (min-width: 1200px) {
    .owl-carousel.carousel-center-active-items.carousel-center-active-items-style-2,
    .owl-carousel.carousel-center-active-items.carousel-center-active-items-style-3 {
        width: 133vw;
    }
}

.owl-carousel.carousel-center-active-items.carousel-center-active-items-style-3 .owl-item .card {
    -webkit-transition: ease opacity 300ms;
    transition: ease opacity 300ms;
}

.owl-carousel.carousel-center-active-items.carousel-center-active-items-style-3 .owl-item:not(.current):not(.remove-blur) .card {
    opacity: 0.2;
}

.owl-carousel.carousel-center-active-items.carousel-center-active-items-style-4 {
    max-width: 100%;
}

.owl-carousel.carousel-center-active-items.carousel-center-active-items-style-6 {
    width: 133vw;
    max-height: 40vw;
    cursor: move;
    cursor: -webkit-grab;
    overflow: hidden;
}

.owl-carousel.carousel-center-active-items.carousel-center-active-items-style-6.bottom-degrade:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -30px;
    width: 100%;
    height: 36vh;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(90%, white));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 90%);
    pointer-events: none;
}

@media (min-width: 768px) {
    .owl-carousel.carousel-center-active-items.carousel-center-active-items-style-7 {
        width: 133vw;
    }
}