
.imgSlider{
    width: 100%;
    height: 600px;
    margin-top: 75px;
    background-image: url('imgs/m1.jpg');
    background-size: 100% 100%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    animation: changeImage 20s linear  infinite ;
}
@keyframes changeImage {
    0%{
        background-image: url('imgs/modiyogibanner.jpg');
    }
    25%{
        background-image: url('imgs/B3\ h1.jpg');
    }
    50%{
        background-image: url('imgs/B4\ g1.jpg');
    }
    75%{
        background-image: url('imgs/b2\ p2.jpg');
    }
    100%{
        background-image: url('imgs/B5\ R1.jpg');
    }
}
/* Responsive */


@media(max-width:1200px){
    .imgSlider{
        height: 400px;
        margin-top: 80px;
    }
}
@media(max-width:450px){
    .imgSlider{
        height: 500px;
        margin-top: 80px;
    }
}