/* Prevent overflow on all screens */
body {
    margin: 0;
    overflow-x: hidden;  /* Prevent horizontal scrolling */
    box-sizing: border-box;  /* Include padding and border in element width calculations */
    font-family: "Poppins", serif;
}
.header {
    background: #fff;
    padding: 15px 5%;
    width: 100%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between; /* Default alignment for larger screens */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .header {
        flex-direction: column; /* Stack elements vertically */
        text-align: center; /* Center text elements */
        justify-content: center; /* Center content */
        padding: 10px 3%;
    }
}
/* Navbar Container */
.navbar {
    background-color: #c32a2c;
    padding: 15px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Navigation List Items */
.nav-links li {
    position: relative;
    padding: 10px 15px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

/* Remove default link styles */
.nav-links li a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease-in-out;
}

.nav-links li a:hover {
    color: black;
}

/* Hide menu icon on desktop */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.home-img{
    width: 100%;
    border-radius: 20px !important;
}
.about-head{
    font-size: 30px;
    font-weight: 600;
    color: #c32a2c;
    position: relative;
    padding-bottom: 20px;
}
.about-head::after{
    content: "";
    position: absolute;
    width: 140px;
    height: 4px;
    left: 0;
    bottom: 0;
    background: #c32a2c;
    border-radius: 20px;
}
.about-desc{
    font-size: 18px;
    color: #333;
    line-height: 22px;
    padding-top: 20px;
    font-weight: normal;
    text-align: justify;
}

.at{
    color: black;
}
.fab{
    color: black;
    font-size: 20px;
}
.erg {
    text-align: center !important;
}
.pickup-btn {
    background: #c32a2c;
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-weight: bold;
    border-radius: 6px !important;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    align-items: end;
    border-radius: 15px;
    /* height: 40px;
    width: 250px; */
    text-align: center;
}
.pickup-btn:hover{
    background-color: black;
    color:white;
    transition: all .3s linear;
    text-decoration: none;
}
.logo {
    display: flex;
    align-items: left; /* Aligns items vertically */
    gap: 10px; /* Adds space between logo and text */
}
.text {
    display: flex;
    flex-direction: column; /* Stacks text elements vertically */
}
.logo img {
    height: 80px;
}
.ef{
    font-size: 16px;
}

.adc {
    color: black;
    font-size: 14px;
}
.eg{
    margin-top: 10px;
}
.hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.615); 
}
.hero-content {
    position: relative;
    z-index: 2;
    margin-top: -50px;
}
@media (max-width: 768px) {
    .hero {
        height: 450px; /* Reduce height on mobile */
    }

    .hero video {
        height: auto;
        min-height: 100%;
        width: auto;
        min-width: 100%;
    }

    .hero-content {
        margin-top: 0; /* Remove negative margin on mobile */
        padding: 10px;
        max-width: 90%;
        font-size: 16px;
    }
   
}
.ab{
    font-size:55px;
    font-family:'Times New Roman', Times, serif
}
.ac{
    font-size: 40px;
    color: #fff;
    font-weight: 600;
}
.form-group{
    padding-bottom: 10px;
}
.form-group input,textarea{
    padding: 20px;
    border-radius: 5px;
    font-size: 16px !important;
}
.form-group textarea{
    resize: none;
}
@media (max-width: 768px) {
    .ab{
        font-size: 40px;
    }
    .ac{
        font-size:30px;
    }
}
.btn{
    background-color:#c32a2c;
    color:white;
    padding: 10px 30px;
}
.btn:hover{
    color:white;
}

/* Popup Background */
.popup {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.5s;
}
/* Popup Background */
.popup {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.5s;
}

/* Popup Content */
.popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Video Styling */
.popup-video {
    width: 100%;
    border-radius: 5px;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: black;
}

/* Fade In Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.form-container {
    background: white;
    padding: 20px; /* Reduced padding for better fit on small screens */
    border-radius: 10px;
    color: black;
    width: 450px;
    max-width: 90%; /* Ensures the form adjusts to smaller screen sizes */
    height: auto; /* Allows height to adjust based on content */
    font-size: 14px;
    margin: 0 auto; /* Centers the form horizontally */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow */
}

.form-container input, 
.form-container select, 
.form-container textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc; /* Adds a border for clarity */
    border-radius: 5px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

.form-container button {
    background-color: #c32a2c;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px; /* Slightly larger font for better readability */
    width: 100%;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-container button:hover {
    background-color: #b62a2a; /* Slightly darker on hover */
}

/* Mobile responsiveness */

.aa{
    color: #c32a2c;
    font-weight: 700;
}
.container,.container-fluid{
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.ad{
    color: #c32a2c;
    font-size: 28px;
    text-align: center;
}
.ae{
    color:#c32a2c;
    font-size: 30px;
    font-weight: 700 !important;
    padding-top: 10px;
}
.af{
    font-size: 26px;
    text-align: start;
}
@media (max-width: 768px){
    .af{
        padding-left: 10px;
    }
}
.az{
    font-size: 20px;
    text-align: start;
    /* padding-left: 80px; */
}
.ap{
    font-size: 18px;
    text-align: left;
    /* padding-left: 80px; */
}
@media (max-width: 768px) {
    .az, .ak, .ap {
        font-size: 20px ; /* Reduce font size for mobile */
        padding-left: 20px; /* Reduce padding */
        text-align: center !important; 
    }

    .ak {
        font-size: 28px; /* Slightly smaller heading for mobile */
    }

    .ap {
        font-size: 18px;
    }
    .rtg{
        text-align: center;
    }
}

.ag{
    font-size: 20px !important;
    text-align: left;
    padding-top: 15px;
}
@media (max-width: 768px){
    .ag{
        padding-left: 10px;
    }
}
.ah{
    background-color: #c32a2c;
}
.about-us{
    padding: 60px 10px;
}
.dry-services {
    text-align: center;
    padding: 60px 10px;
    background-color: whitesmoke;
}
.dry-services h2{
    font-size: 30px;
    color: #c32a2c;
    font-weight: 700;
}
.dry-services .serv-desc{
    font-size: 18px;
    padding-right: 40px;
    padding-left: 40px;
    text-align: center;
    width: 80%;
}

.service-box {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 15px
}
/* .service-box img{
    width: 40%;
    border-radius: 15px;
} */
.content{
    padding: 10px 20px;
}
.content h3{
    font-size: 25px;
    font-weight: 600;
    padding-top: 10px;
    color: #c32a2c;
}
.content p{
    font-size: 18px;
}

.image-container {
    position: relative;
    width: 100%;
    /* max-width: 400px;  */
    overflow: hidden;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 1px 1px 10px #afafaf;
}

.image {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
    cursor: pointer;
    border-radius: 10px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7); 
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    /* border-radius: 20px; */
    opacity: 0; 
    transform: translateY(100%); 
    transition: opacity 0.3s ease, transform 0.3s ease; 
}

.text-overlay h3{
    color: #c32a2c;
    font-size: 25px;
    font-weight: 700;
}
.text-overlay p{
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    padding: 10px 20px;
}
.serv-head h1{
    font-size: 20px;
    padding: 10px 0;
    font-weight: 600;
    color: #333;
}

.image-container:hover .overlay {
    opacity: 1; 
    transform: translateY(0); 
}

.image-container:hover .image {
    opacity: 0.7;
}
@media (max-width: 576px) {
    /* Make each column full width on mobile */
    .col-md-6 {
      width: 100%;
      padding: 0 15px; /* Adds some horizontal padding */
      box-sizing: border-box;
    }
  
    /* Ensure the service box fits its container */
    .service-box {
      width: 90% !important;
      margin-bottom: 20px;
    }
  
    /* Make service images responsive */
    .service-box img {
      width: 100%;
      height: auto; /* Let the height adjust automatically */
      max-height: 180px; /* Optional: limit image height if needed */
    }
  
    /* Adjust text sizes for readability */
    .service-box h3 {
      font-size: 20px;
    }
  
    .service-box p {
      font-size: 14px;
    }
  
    .service-box .read-more {
      font-size: 14px;
      padding: 8px 12px;
    }
  }
  
.read-more {
    color:#c32a2c;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
}
.read-more:hover {
    text-decoration: underline;
}
.banner{
    padding: 60px 10px;
}

.banner-video {
    width: 98%;
    height: auto;
    align-items: center;
    border-radius: 10px;
    text-align: center;
    justify-content: center;
    margin-left: 20px;
}

.banner-content {
    text-align: start;
    padding: 20px;
}
.banner-content .span{
    color:#c32a2c ;
}
.banner-content h1 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    line-height: 1.1;
    padding-bottom: 20px;
}

.banner-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    padding-bottom:30px ;
}

.ai{
    font-size: 18px;
    color: #666;
    line-height: 22px;
    padding: 20px 30px 10px 0;
}
.aj{
    font-size: 18px;
}
.pricing-card {
    border: 2px solid #ccc;
    padding: 20px;
    margin: 10px auto; /* Center horizontally */
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    position: relative;
    width: 80%;
    max-width: 400px; /* Limit max width for better mobile responsiveness */
}
.aew{
    max-width: 500px; /* Restricts width on larger screens */
    width: 90%; /* Adjusts width for smaller screens */
    margin: 0 auto; /* Centers the div */
    text-align: center; /* Ensures text is centered */
}

.pricing-card.selected {
    border-color: #8a0808;
    background-color: #c32a2c;
    color: white;
}
.btn-select {
    display: none; 
    margin-top: 10px;
    background-color: #ff9900;
    color: white;
    border-radius: 5px;
    padding: 10px;
    text-decoration: none;
}
.choose-plan{
    background: black;
    color: white;
    border: none;
    padding: 5px;
    border-radius: 5px;
    height: 40px;
    font-size: 14px !important;
    width: 150px;
    justify-content: center;
    align-content: center;
    text-align: center;
    transition: all 0.4s ease-in-out;
}
.choose-plan:hover{
    background: #fff;
    color: #000;
    border: none;
    padding: 5px;
    /* border-radius: 15px; */
    height: 40px;
    font-size: 14px;
    width: 150px;
    justify-content: center;
    align-content: center;
    text-align: center;
}
.btn-select:hover {
    background-color: #cc7a00;
}
.pricing-card.selected .btn-select {
    display: block; /* Show button only for selected plan */
}
.as{
    background-color: #f5f5f5;
}
.ak{
    font-size: 40px;
    color: #000;
    font-weight:700;
    text-align: left;
    padding-bottom: 20px;
    /* padding-left: 80px; */
}
.al{
    font-size: 16px;
}
.am{
    font-size: 20px;
}
.btn-block{
    background: black;
    color: white;
    border: none;
    padding: 5px;
    border-radius: 15px;
    height: 40px;
    font-size: 14px;
    width: 150px;
    justify-content: center;
    align-content: center;
    text-align: center;
}
.btn-block:hover{
    background-color: white;
    color:#000000;
    transition: all .3s linear;
}
.ar{
    width:100%;
}

.a{
    font-size:16px;
}
/* Styling for the testimonial section */
.testimonial-container {
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.testimonial-wrapper {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.testimonial-item {
    flex: 0 0 25%; /* 4 items per row */
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.testimonial-item h5 {
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

.testimonial-item p {
    font-size: 14px;
    color: #555;
}

/* Navigation Buttons */
.testimonial-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 20px;
}

.prev-btn {
    left: 10px;
    z-index: 200;
}

.next-btn {
    right: 10px;
    z-index: 200;
}
.an{
    text-align: center;
}
.gmap_iframe {
    width: 100%;
    height: 600px;
    border: none;
}
.btn-lg{
    font-size: 18px;
}
.footer{
    padding: 60px 10px;
    background: #000;
}
/* .left{
    text-align: center;
} */
.left p{
    font-size: 16px;
    line-height: 22px;
    padding-top: 20px;
    color: #fff;
}
.left ul{
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
}
.left ul li:first-child{
    font-size: 16px;
    font-weight: 700;
    color: #c32a2c;
    padding-bottom:20px ;
}
.left ul li{
    color: #fff;
    font-size: 14px;
}
.left ul li .fa-solid,.fa-brands{
    color: #c32a2c;
    padding-right:10px ;
}
.footer-address-desc{
    font-weight: 600;
}
.fa-brands{
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.left ul li a{
    color: white;
    text-decoration: none;
    font-weight: 600;
}
.social-icons {
    display: flex;
    justify-content: start;
}
.social-icons .fa-brands:hover {
   color: #fff;
}
.info-box {
    flex: 1;
    min-width: 250px;
    padding: 10px;
}

.info-box i {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Call Section */
.call-section {
    margin-top: 20px;
}

.call-section a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* Social Icons */
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    text-decoration: none;
}

.edf{
    font-size: 34px;
}
.asd{
    font-size: 30px;
}
.you{
    margin-top: 10px;
    font-size: 20px;
}
.yu{
    font-size: 22px !important;
}
.contact-us{
    padding: 60px 10px;
}
.footer1{
    position: relative;
    background: url('Images/steam-iron.jpg') center/cover no-repeat;
    padding: 60px 10px;
    text-align: center;
    color: white;
}
 .overlay2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(128, 0, 0, 0.832); /* Dark Red Overlay */
}
/* Basic styles for the video popup */
.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 150%;
    height: 90%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Make sure it is on top of everything */
    transition: opacity 0.6s ease; /* Fade-out effect */
}

/* Hidden class to hide the video popup */
.video-popup.hidden {
    opacity: 0;
    visibility: hidden; /* Ensures it is not interactable */
}

/* The video itself inside the popup */
.video-popup video {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px; /* Optional: Adds rounded corners to the video */
}

/* Close button styles */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #fff;
    color: #000;
    border: none;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    z-index: 10000; /* Ensure it appears above the video */
}

/* Responsive styles */
@media only screen and (max-width: 1024px) {
    .container {
        width: 95%;
        margin: auto;
        padding: 10px;
    }
    
    .header {
        text-align: center;
        padding: 15px;
    }
    
    .nav {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .nav a {
        padding: 10px;
        display: block;
    }
    
    .content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .service-box {
        width: 100%;
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 768px) {
    .header h1 {
        font-size: 1.8rem;
    }
    
    .nav {
        flex-direction: column;
        text-align: center;
    }
    
    .nav a {
        width: 100%;
        padding: 12px;
    }
    
    .content {
        padding: 10px;
    }
    
    .footer {
        text-align: center;
        padding: 10px;
    }
}

@media only screen and (max-width: 480px) {
    body {
        font-size: 14px;
        padding: 5px;
    }
    
    .container {
        width: 100%;
        padding: 0;
    }
    
    .header h1 {
        font-size: 1.5rem;
    }
    
    .nav a {
        font-size: 16px;
        padding: 8px;
    }
    
    .service-box {
        padding: 10px;
    }
}
.faq-section {
    padding: 40px 20px;
}
.faq-section h2 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #c32a2c;
}

/* Panel Styling */
.panel-group .panel {
    background-color: #eef7f8;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    border-radius: 5px;
}
.panel-heading {
    background-color: #eef7f8;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 16px;
}
.panel-heading a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    display: block;
    position: relative;
}
.panel-heading a:after {
    content: '\f107'; /* Down Arrow (Font Awesome) */
    font-family: FontAwesome;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #333;
}

.panel-body {
    background-color: #fff;
    color: #555;
    padding: 15px;
    border-top: 1px solid #ddd;
}
.hut{
    height: 500px;
    width: 450px;
}
.whats-app {
    position: fixed;
    bottom: 20px;
    right: 15px;
    border-radius: 50px;
    text-align: center;
    z-index: 100;
}
.whats-app img{
    width: 60px;
}

.phone {
    position: fixed;
    bottom: 20px;
    left: 15px;
    border-radius: 50px;
    text-align: center;
    z-index: 100;
    display: none;
}

.phone img {
    width: 50px;
}
.my-float {
    margin-top: 16px;
}
.pickup-btn{
        display: none;
    }
    
.pickup-btn1 {
    position: fixed;
    bottom: 20px;
    right: 19%;
    border-radius: 50px;
    text-align: center;
    z-index: 100;
    background: #fff;
    border: 2px solid #c32a2c;
    color: #c32a2c;
    padding: 8px 15px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    align-items: end;
    border-radius: 15px;
    height: 50px;
    width: 250px;
    text-align: center;
    display: none;
}
@media (max-width: 768px){
    .whats-app{
        display: block !important;
    }
     .pickup-btn {
        display: none;
    }

    .pickup-btn1 {
        display: flex;
        justify-content:center;
        align-items:center;
    }

    .phone {
        display: block !important;

    }
    .hut{
        display: none;
    }
    .text{
        display: none;
    }
    .bad{
        width: 90%;
    }
    .logo{
        text-align:center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show menu icon */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Hide menu initially */
        width: 250px;
        height: 100%;
        background: #c32a2c;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: right 0.3s ease-in-out;
        z-index: 99;
    }

    .nav-links li {
        display: block;
        width: 100%;
        text-align: left;
        padding: 15px;
    }

    .nav-links li a {
        font-size: 18px;
        display: block;
    }

    .nav-links.show {
        right: 0; /* Slide in the menu */
    }
    .about-head{
        text-align: start;
        font-size:25px;
        padding-top: 20px;
    }
    .dry-services .serv-desc{
        font-size: 18px;
        padding-right: 0px;
        padding-left: 0px;
        padding-top: 20px;
        text-align: center;
        width: 100%;
    }
    .banner-video {
        
        margin-left: 0px;
    }
    .leftsec{
        padding: 0 20px;
    }
    .ak{
        font-size: 35px !important;
    }
    .social-icons {
        display: flex;
        justify-content: center !important;
    }
}
.carousel-wrap {
    margin: 90px auto;
    padding: 0 5%;
    width: 80%;
    position: relative;
}

/* Fix blank or flashing items on carousel */
.owl-carousel .item {
    position: relative;
    z-index: 100;
    -webkit-backface-visibility: hidden;
}

/* Owl Navigation */
.owl-nav>div {
    margin-top: -26px;
    position: absolute;
    top: 50%;
    color: #cdcbcd;
    font-size: 32px;
    cursor: pointer;
}

.owl-nav .owl-prev {
    left: -30px;
}

.owl-nav .owl-next {
    right: -30px;
}

.owl-nav i {
    font-size: 32px;
}

.item img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}