@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;

}

:root {
    --color: rgb(194, 17, 129);
    --black: black;
    --white: white;
    --red: rgb(213, 24, 24);
    --blue: rgb(30, 97, 192);
    --gray: rgb(166, 166, 166);
    --light: rgb(236, 236, 236);
}


/* ----------------HEADER section ------------------------------------------------------------------  */
header {
    width: 100%;
    height: 50vh;
    position: relative;
    background-image: url(../Images/BANNER/NEW/banner-1.jpg );
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    margin-bottom: 5%;
}

.special-feature{
    margin-bottom: 5%;
}

.feature-title{
    margin-bottom: 3%;
}
.feature-title h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--color);
    text-shadow: yellow,
        0 0 15px yellow,
        0 0 20px var(--black),
        0 0 25px var(--black),
        0 0 30px var(--black);
    animation: star 4s linear infinite;


}
 .feature-list h5{
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--blue);
}

.feature-list ul li{
    font-family: 'Poppins', sans-serif;
    color: var(--gray);

}

.feature-list ul li::marker{
    color: var(--color);
}




@media screen and (max-width:320px) {
    header {
      
        background-image: url(../Images/BANNER/NEW/banner-1.0.jpg);
      
    }
    
}

@media screen and (min-width:321px) and (max-width:425px) {
    header {
      
        background-image: url(../Images/BANNER/NEW/banner-1.0.jpg);
      
    }
}

@media screen and (min-width:426px) and (max-width:600px) {
    header {
      
        background-image: url(../Images/BANNER/NEW/banner-1.0.jpg);
      
    }
}

@media screen and (min-width:601px) and (max-width:768px) {
    header {
      
        background-image: url(../Images/BANNER/NEW/banner-1.0.jpg);
      
    }
}

@media screen and (min-width:769px) and (max-width:900px) {
    
}

@media screen and (min-width:901px) and (max-width:992px) {
    
}

@media screen and (min-width:993px) and (max-width:1024px) {
    
}

@media screen and (min-width:1025px) and (max-width:1140px) {
    
}





