@charset "utf-8";
.owl-carousel {
    margin: 0;
    background: transparent;
    height: auto;
    z-index: inherit;
}
.owl-prev, .owl-next {
    transform: scale(1.0);
    -webkit-transition-property: transform;
    -webkit-transition-duration: 0.3s;
    -webkit-transition-timing-function: linear;
    -webkit-transition-delay: 0s;
    transition-duration: 0.3s;
    transition-property: transform;
    transition-timing-function: linear;
    transition-delay: 0s;
}
.owl-prev:hover, .owl-next:hover {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
}
.owl-nav {
    margin: 1em 0;
    text-align: center;
}
.owl-prev {
    display: inline-block;
    color: #e7d8c5;
    padding-right: 0.5em;
}
.owl-next {
    display: inline-block;
    color: #e7d8c5;
    padding-left: 0.5em;

}

.owl-dots {
    text-align: center;
}

.owl-dot {
    height: 10px;
    width: 10px;
    display: inline-block;
    background: rgba(236,143,102,.3);
    margin-left: 5px;
    margin-right: 5px;
}

.owl-dot.active {
    background: rgba(156,146,133,1);
}