.service-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

.service-item * {
    transition: .5;
}

.service-item:hover * {
    color: #FFFFFF;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}

.services-carousel {
    position: relative;
}

.services-carousel .owl-stage {
    display: flex;
}

.services-carousel .owl-item {
    display: flex;
    height: auto;
}

.services-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
}

.services-carousel .owl-nav .owl-prev,
.services-carousel .owl-nav .owl-next {
    pointer-events: auto;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 1.25rem;
    margin: 0 -22px;
    cursor: pointer;
}

.services-carousel .owl-nav .owl-prev:hover,
.services-carousel .owl-nav .owl-next:hover {
    background-color: var(--dark);
}

.services-carousel .owl-nav .disabled {
    opacity: .4;
    cursor: default;
    pointer-events: none;
}
