.owl-home .owl-nav {
    text-align: center;
    display: flex;
    justify-content: space-between;
}
.owl-home .owl-nav .owl-prev span,
.owl-home .owl-nav .owl-next span {
    font-size: 29px;
    color: #000;
}
.owl-home .owl-nav .owl-next {
    right: 0;
}
.owl-carousel .owl-nav button.owl-next i,
.owl-carousel .owl-nav button.owl-prev i {
    font-size: 12px;
}
.owl-home .owl-nav .owl-prev,
.owl-home .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    z-index: 21;
    justify-content: center;
    align-items: center;
    background: #fff !important;
    margin: 0;
}
.owl-home .owl-nav {
    position: absolute;
    bottom: 25px;
    left: 0;
}
.owl-home .owl-nav .owl-prev.disabled,
.owl-home .owl-nav .owl-next.disabled,
.owl-home .owl-nav .owl-prev:hover,
.owl-home .owl-nav .owl-next:hover,
.owl-home .owl-nav .owl-prev:focus,
.owl-home .owl-nav .owl-next:focus,
.owl-home .owl-nav .owl-prev:active,
.owl-home .owl-nav .owl-next:active {
    background-color: var(--blue) !important;
    color: #fff;
    transition: all 500ms cubic-bezier(0.250, 0.100, 0.250, 1.000); /* ease (default) */
    transition-timing-function: cubic-bezier(0.250, 0.100, 0.250, 1.000); /* ease (default) */
}
.owl-home .owl-dots {
    left: 50%;
    position: absolute;
    width: 100%;
    bottom: 12px;
    display: flex;
    justify-content: center;
    max-width: 900px;
    margin-left: -450px;
}
.owl-home .owl-dots .owl-dot.active {
    background: var(--blue);
}
.owl-home .owl-dots .owl-dot {
    width: 15px;
    height: 15px;
    display: inline-block;
    background: var(--purple);
    border-radius: 50px;
    margin: 0 4px;
}