@media only screen and (max-width: 768px) {
    .desktop-slider {
        display: none !important;
    }
}

@media only screen and (min-width: 769px) {
    .mobile-slider {
        display: none !important;
    }
}

.owl-wrapper {
    position: relative;
}
.owl-controls {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}
.owl-theme .owl-controls .owl-page span {
    background: #fff !important;
}

.desktop-slider .owl-img {
    width: 100%;
    /* height: 700px; */
}

.mobile-slider .owl-img {
    width: 100%;
    height: 90%;
}

@media only screen and (max-width: 768px) {
    .owl-img {
        height: auto;
    }
}

.owl-text-overlay {
    position: absolute;
    width: auto;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    background-color: rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.4);
    padding-bottom: 20px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.owl-text-overlay-off {
    position: absolute;
    width: auto;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    padding-bottom: 20px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

h2.owl-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 40px;
}

h3.owl-description {
    font-size: 25px;
    font-weight: normal;
    margin-bottom: 20px;
}

h3.owl-button {
    font-size: 25px;
    font-weight: normal;
}

@media only screen and (max-width: 768px) {
    h2.owl-title {
        font-size: 18px;
        margin-bottom: 1px;
    }

    h3.owl-description {
        font-size: 8px;
        margin-bottom: 1px;
    }

    h3.owl-button {
        font-size: 8px;
        margin-bottom: 1px;
    }
}


.owl-theme .owl-controls .owl-page span:active {
    background: #fff !important;
}

.owl-buttons {
    visibility: hidden;
    display: none;
}


.owl-prev {
    position: absolute;
    left: 10px; /* Adjust as needed */
    top: 50%;
    width: 50px; /* Adjust the width as needed */
    height: 50px; /* Adjust the height as needed */
    font-size: 24px; /* Adjust the size as needed */
    transform: translateY(-50%);

    background-color: #f8f8f8; /* Background color */
    border: 2px solid #ccc; /* Border color */
    border-radius: 50%; /* Rounded corners */
    color: #555; /* Text color */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition */
}

.owl-next {
    position: absolute;
    right: 10px;
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    transform: translateY(-50%);

    background-color: #f8f8f8;
    border: 2px solid #ccc;
    border-radius: 50%;
    color: #555;
    transition: background-color 0.3s, color 0.3s;
}

@media only screen and (max-width: 768px) {
    .owl-prev,
    .owl-next {
        width: 30px; /* Adjust the width for mobile */
        height: 30px; /* Adjust the height for mobile */
        font-size: 10px; /* Adjust the font size for mobile */
    }
}

.owl-prev:hover,
.owl-next:hover {
    background-color: #ccc;
    color: #fff;
}
.custom-badge {
    background-color: #C09578;
    color: #fff; /* Text color */
    padding: 10px 15px; /* Padding for mobile */
}

@media only screen and (max-width: 768px) {
    .custom-badge {
        padding: 8px 12px; /* Adjusted padding for smaller screens */
    }
}
