/* body{
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #23E3C9;
} */
.slider{
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
}
.slides{
    width:500%;
    height: 500px;
    display: flex;
}
.slides input{
    display: none;
}
.slide{
    width: 20%;
    transition: 2s;
}
.slide img{ 
    width: 100%;
    height: 500px;
}
/* css for manual slide navigation */
.navigation-manual{
    position: absolute;
    width: 800px;
    margin-top: -40px;
    display: flex;
    justify-content: center;

}

.manual-btn{
    border: 2px maroon solid;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
    
}
.manual-btn:not(:last-child){
    margin-right: 40px;
}
.manual-btn:hover{
    background:maroon;
}
#radio1:checked ~ .first{
    margin-left: 0;
}
#radio2:checked ~ .first{
    margin-left: -20%;
}
#radio3:checked ~ .first{
    margin-left: -40%;
}
#radio4:checked ~ .first{
    margin-left: -60%;
}
/* css for automatic */
.navigation-auto{
    position: absolute;
    display: flex;
    width: 800px;
    justify-content: center;
    margin-top: 460px;
}
.navigation-auto div{
    border: 2px solid maroon; 
    padding: 5px;
    border-radius: 10px;
    transition: 1s;
}
.navigation-auto div:not(:last-child){
    margin-right: 40px;
}
#radio1:checked ~ .navigation-auto .auto-btn1{
    background:maroon ;
}
#radio2:checked ~ .navigation-auto .auto-btn2{
    background:maroon ;
}
#radio3:checked ~ .navigation-auto .auto-btn3{
    background:maroon ;
}
#radio4:checked ~ .navigation-auto .auto-btn4{
    background:maroon ;
}



/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.main {
    height:100vh;
    width: 100%;
    background-color: whitesmoke;
}
.wrapper,
 .slide {
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.slide{
    overflow: hidden;
}
.slide::before{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 10;
}
.slide .image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.slide .image-data{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 10;
}

.image-data span.text{
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}
.image-data h2{
    font-size: 45px;
    font-weight: 600;
    color: black;
}

/* swiper button css */
/* .nav-btn{
    height:50px;
    width: 50px;
    border-radius: 50%;
}
.nav-btn::before,
.nav-btn::after{
    font-size: 25px;
    color: #fff;
}
@media screen and (max-width: 768){
    .nav-btn{
        visibility: hidden;
    }
    .swiper-pagination-bullet{
        visibility: visible;
    }
} 


b