.row {

    margin-right: 0px;
    margin-left: 0px;
    margin-left: 0px;
    width: 100%;
}

ul {
    list-style-type: none;
    /* Add more styles here */
}


.owl-carousel .owl-item img {
    display: block;
    margin: 0 auto;
}

/* .owl-prev,
.owl-next {
    display: block;
} */



/* Default styles */
.owl-carousel .item-img-verticle img {
    width: 525px;
    height: 800px;
}

/* Media query for mobile devices */
@media only screen and (max-width: 767px) {
    .owl-carousel .item-img-verticle img {
        width: 329px;
        height: 500px;
    }
}

/* Media query for tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .owl-carousel .item-img-verticle img {
        width: 558px;
        height: 850px;
    }
}

/* Media query for desktops */
@media only screen and (min-width: 992px) {
    .owl-carousel .item-img-verticle img {
        width: 525px;
        height: 800px;
    }
}

/* Default styles */
.owl-carousel .item-img-horizontal img {
    width: 1251px;
    height: 800px;
}

/* Media query for mobile devices */
@media only screen and (max-width: 767px) {
    .owl-carousel .item-img-horizontal img {
        width: 329px;
        height: 210px;
    }
}

/* Media query for tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .owl-carousel .item-img-horizontal img {
        width: 558px;
        height: 357px;
    }
}

.owl-carousel .owl-nav button {
    background-color: transparent;
    color: rgb(0 0 0 / 20%) !important;
    border: 2px solid #333;
    font-size: 100px !important;
    font-weight: 100 !important;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    opacity: 0;
    /* Hide by default */
    pointer-events: auto;
    /* Enable pointer events for buttons */
    position: absolute !important;
}


/* Media query for desktops */
@media only screen and (min-width: 992px) {
    .owl-carousel .item-img-horizontal img {
        width: 1251px;
        height: 800px;
    }
}

/* Media query for desktops */
@media only screen and (min-width: 1100px) {
    /* Next and previous button */

    /* Owl Carousel Previous and Next Buttons */
    /* Owl Carousel Previous and Next Buttons */
    /* .container {
    position: absolute;
} */
    .owl-carousel .owl-nav {
        position: absolute;
        top: 40%;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        z-index: 10;
        pointer-events: none;
        /* Disable pointer events to avoid interfering with image hover */
    }


    .owl-carousel .owl-nav button:hover {
        background-color: #f0f0f0;
        color: #666;
    }

    .owl-carousel:hover .owl-nav button {
        opacity: 1;
        /* Show on hover */
    }

    .owl-carousel .owl-nav .owl-prev {
        order: 1;
        /* Place previous button first */
        left: 100px;
        /* Adjust left position as needed */
    }

    .owl-carousel .owl-nav .owl-next {
        order: 2;
        /* Place next button second */
        right: -1080px;
        /* Adjust right position as needed */
    }

    .owl-carousel .owl-nav button::after {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        background-color: #f0f0f0;
        /* Light grey color */
        opacity: 0;
        transition: opacity 0.3s;
    }

    .owl-carousel:hover .owl-nav button::after {
        opacity: 1;
        /* Show overlay on hover */
    }

    .owl-next:hover {
        color: black !important;
    }

    .owl-theme .owl-nav [class*=owl-]:hover {
        background: #eff1f0;
        color: #FFF;
        padding: 0px;
        margin: 0px;
        width: auto;
        height: 0px;
    }
}