.mainSingleSlide {
    height: 85vh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.mainSlide1 {
    background-image: url(../images/mainSlider/slider1.jpg);
}

.mainSlide2 {
    background-image: url(../images/mainSlider/slider2.png);
}

.mainSlide3 {
    background-image: url(../images/mainSlider/slider3.png);
}

.mainSlide4 {
    background-image: url(../images/mainSlider/slider4.png);
}

.sliderDetailBox {
    border-radius: 0 20px 0 0;
}

.mainSingleSlide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (max-width: 480px) {
    .mainSingleSlide {
        height: 50vh;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .mainSingleSlide {
        height: 50vh;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .mainSingleSlide {
        height: 50vh;
    }
}
@media (min-width: 1025px) and (max-width: 1280px) {
    .mainSingleSlide {
        height: 75vh;
    }
}

/* Custom larger text for large screens */
@media (min-width: 1200px) {
    .display-lg-custom {
        font-size: 3rem; /* Adjust the font size as needed */
    }
}

/* Custom Navigation Arrows */
.mainPrev,
.mainNext {
    position: absolute;
    top: 50%;
    z-index: 10;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    cursor: pointer;
}
