/*** service ***/

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

.service-carousel .owl-nav {
    display: flex !important;
    gap: 10px;
    justify-content: end;
    align-items: center;
    margin-top: 20px;
}

.service-carousel .owl-nav .owl-prev,
.service-carousel .owl-nav .owl-next {
    /* margin-right: 15px; */
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #89c63d;
    border: 2px solid #f5f5f5;
    font-size: 22px;
    transition: .5s;
}

.service-carousel .owl-nav .owl-prev:hover,
.service-carousel .owl-nav .owl-next:hover {
    color: #bed232;
    background: #ffffff;
}

.gallery-carousel .owl-nav {
    display: flex;
    justify-content: space-between;
}

.gallery-carousel .owl-nav .owl-prev,
.gallery-carousel .owl-nav .owl-next {
    width: 35px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #89c63d;
    color: #fff;
    font-size: 22px;
    margin-top: -40%;
    transition: .5s;
    z-index: 99999;
}

.gallery-carousel .owl-nav .owl-prev:hover,
.gallery-carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    background: #bed232;
}

/*** feature ***/


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

.feature-carousel .owl-nav {
    display: flex !important;
    gap: 10px;
    justify-content: end;
    align-items: center;
    margin-top: 20px;
}

.feature-carousel .owl-nav .owl-prev,
.feature-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -7%;
    transform: translate(-50%, -50%);
    /* margin-right: 15px; */
    width: 30px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #89c63d;
    border: 2px solid #f5f5f5;
    font-size: 18px;
    transition: .5s;
}

.feature-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translate(-50%, -50%);
}

.feature-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -2%;
    transform: translate(-50%, -50%);
}

.feature-carousel .owl-nav .owl-prev:hover,
.feature-carousel .owl-nav .owl-next:hover {
    color: #bed232;
    background: #ffffff;
}