/**
 * 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 {
    position: absolute;
    width: 40%;
    bottom: 0;
    transform: translate(150%, -46%);
    z-index: 9;
}

.owl-theme .owl-nav .owl-prev {
    margin-left: -2em;
}

.owl-theme .owl-nav .owl-next {
    margin-right: -2em;
}

.owl-theme .owl-nav [class*="owl-"] {
    font-size: 40px !important;
    color: #fff !important;
    display: inline-grid;
    cursor: pointer;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    place-content: center;
    transition: .3s;

}

.owl-theme .owl-nav [class*="owl-"] span {
    margin-bottom: 8px;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    border: 1px solid #4A6B28;
    color: #fff;
    text-decoration: none;
    place-content: center;
}

.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default;
}


.owl-theme .owl-dots {
    margin-top: 1em;
    position: absolute;
    bottom: 25px;
    left: 100px;
}

@media screen and (max-width:575px) {
    .owl-theme .owl-dots {
        left: 30px;
    }
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    margin-right: 10px;

}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 8px 8px;
    background: #4A6B28;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 0.2s ease;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #4A6B28;
}

.owl-theme .owl-dots .owl-dot.active,
.owl-theme .owl-dots .owl-dot:hover {

    border: 1px solid #4A6B28;
    border-radius: 50px;
}