*{
    box-sizing: border-box;
    margin:0;
    padding:0;
}
.poppins{
  font-family: "Poppins", sans-serif;
  font-style: normal;
}
/* shared style */
.img{
    max-width: 100%;
}
/* Navigation Style */
header{
    margin: auto 120px;
}
.navigation{
    margin: 100px auto;
    display:flex;
    justify-content: space-between;
    align-items: center;
}
.nav-title{
    height: 52px;
    width: 300px;
    font-size: 24px;
    font-weight: 700;
    color: #3A3A3A;
}
.nav-list{
    display: flex;
    gap: 34px;
}
.nav-list-content{
    list-style: none;
}
.nav-list-content a {
    text-decoration: none;
    color: #3A3A3A;
    font-size: 1rem;
}

/* Banner Style */
.banner{
    margin-top:50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.banner-content{
    width: 582px;       
}
.banner-title{
    font-size: 3.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.banner-description{
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.btn-primary{
    color: #FFFFFF;
    font-size: 1rem ;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 41px;
    background-color: #E02C6D;
    border: none;
}
.banner-img{
    background-image: url("../images/Circle\ design.svg");
    background-position: center;
    height:475px;
    width:475px;    
}
/* .img-bg-2{
    position:relative;
    top: -450px;

} */
/* Sponsor style */
.sponsors{
    margin: 70px 165px;
    padding: 35px 60px;
    border-top:1px solid rgba(192, 204, 218, 0.6); 
    border-bottom:1px solid rgba(192, 204, 218, 0.6); 
}
.sponsor-content{
    display:flex;
    justify-content: center;
    align-items: center;
    gap: 60px;   
}

/**** Product Card Style*****/
.product{
    width: 1027px;
    margin: 100px auto;
}
.product-title{
    text-align: center;
}
.product-collection{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.product-card{
    height: 520px;
    width: 320px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 10px;
    border-radius: 5px;
}
.card-title{
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 0px;
}
.card-price{
    font-size:1.5rem;
    margin-top:0px;
    margin-bottom: 10px;
}
.card-icon{
    width: 15px;
    padding: 0px;
    height: 12px;;
}
.card-description{
    margin-top:0px;
}
.card-end{
    color:#E02C6D;
    font-weight: bold;
    text-align: end;
}
/* Feature Style */
.Feature{
    display:flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin: 100px 165px;
}
.feature-content{
    width: 620px;
    height: 230px;

}
.feature-content-title{
    font-size: 38px;
}
.feature-content-description{
    font-size: 16px;
    color: #6C6C6C;
    text-align: left;
    width: 510px;
}
.footer{
    height: 40%;
    width: 100%;
    background-color: #0A0826;
    margin-top: 100px;
    padding: 50px 589px;
}
.footer-content{
    color:white;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    align-items: center;
}
.footer-content-title{
    font-size:1.5rem;
    font-weight: bold;
}
.footer-content-p{
    font-size: .875rem;
    
}
.footer-link-list{
    margin-top: 10px;
    display: flex;
    gap:1rem;
}
.footer-link-list-item{
    list-style: none;
    font-size: 2rem;
}
/* Responsive Design */
@media screen and (max-width:576px){
    .navigation{
        flex-direction: column;
    }
    .nav-list{
        justify-content: space-around;
        gap:20x;
        }
    .nav-list-content{
        font-size:.3rem;
        font-weight: 600;
    }
    .nav-list-content-icon{
        font-size: 24px;
    }
    .nav-title{
        height: 20px;
        width:200px;
        margin-bottom:10px;
        font-size: 16px;
        font-weight: 700;
        text-align: center;      
    }
    .banner{
        flex-direction:column-reverse;
        justify-content: center;
        align-items: center;
    }
    
    .banner-img{    
        width:100%;
        height: 100%;
    }
    .banner-content{
     text-align: center;
     width:404px;
    }
    .banner-title{
        font-size:28px;
        font-weight: 700;
    }
    .sponsors{
        border: none;
        margin: 50px auto;
        padding: 0px;

    }
    .sponsor-content{
        flex-wrap:wrap;
        height: 100px;
        width: 500px;
        gap:30px;
        margin:0px;
        padding: 0px;
    }
    .product-collection{
        flex-direction: column;
    }
    .product{
        width: 100%;
        
        margin: 10px auto;
        display: flex;
        flex-direction: column;
    }
    .product-card{
        width: 100%;
        height: auto;
    }
    .product-card-img{
    width:100%;
}
   .Feature{
     flex-direction: column-reverse;
     width: 100%;
     margin:auto;
     text-align: center;
   }
   .feature-content{
    text-align: center;
    margin: 10px auto;
    width: 100%;    
   }
   .footer{
    
    padding:50px 68px;
    width: 100%;
    height: 40%;
   }
   .footer-content{
        text-align: center;
   }
   .footer-content-title{
    font-size:16px;

   }
   .footer-content-p{
    font-size: 12px;
   }
}

@media screen and (min-width:577px) and (max-width:996px){
    .navigation, .nav-list{
        flex-direction: column;
        }
    .banner{
        flex-direction:column-reverse;
    }
    
    
}