.owl-nav {
    position: absolute;
    top: 45%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.owl-nav .owl-prev, 
.owl-nav .owl-next {
    background-color: rgba(0, 0, 0, 0.2) !important;
    color: white !important;
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 50%;
}

.owl-nav .owl-prev:hover, 
.owl-nav .owl-next:hover {
    background-color: rgba(0, 0, 0, 0.5) !important;
    color: white !important;
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 50%;
}

.owl-nav .owl-prev:focus, 
.owl-nav .owl-next:focus {
    outline: none;
} 

.owl-nav .owl-prev {
    position: absolute;
    left: -25px;
}

.owl-nav .owl-next {
    position: absolute;
    right: -25px;
}

.owl-nav .fa {
    font-size: 20px;
}

.rounded-xl {
    border-radius: 15px !important;
}

.owl-carousel .item img {
    height: 250px;
}

@media (max-width: 1200px) {
    .owl-carousel .item img {
        height: 230px;
    }
}