    .owl-nav {
        text-align: center;
        margin-top: 20px;
    }
    
    .owl-prev, 
    .owl-next {
        display: inline-block;
        margin: 0 10px;
    }


    .owl-carousel img {
        width: 100%;
        height: auto;
    }

    .slide .text {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        padding: 20px;
        padding-top: 50%;
        opacity: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.90) 70%);
    }

    .text h3 {
        text-align: left;
        color: #A66F47;
        font-size: 30px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .text h4 {
        text-align: left;
        color: #3F5165;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .active .text {
        opacity: 1;
    }

    .owl-carousel .slide {
        opacity: 0.5;
        transition: 0.3s opacity;
    }

    .owl-carousel .center .slide {
        opacity: 1;
    }

    /* Styles for the text on inactive slides */
    .slide:not(.center) .text {
        opacity: 1;
    }

    @media (max-width: 768px) {

        .text h3 {
            text-align: left;
            color: #A66F47;
            font-size: 15px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
        }
    
        .text h4 {
            text-align: left;
            color: #3F5165;
            font-size: 7px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
        }

        .owl-carousel .slide {
            transform: rotateY(-10deg) translateZ(50px);
            perspective: 500px;
          }
    }