/* *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */
body {
  font-family: "Poppins", sans-serif;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
}

.menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.menu li a {
  text-decoration: none;
  color:rgba(58, 58, 58, 1);
  font-size: 1rem;
  font-weight: 600;
}

.menu li a:hover {
  color: #2ce062d0;
}
.container{
  max-width: 1140px;
  margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  
    
}
.banner-title{
   font-size: 3.2rem;
   font-weight: 400px;
   color: #3A3A3A;
     margin-bottom: 10px;

}
.banner-description{
    width: 505px;
   font-size: 1 rem;
   font-weight: 600;
   margin-bottom: 10px;
}
.btn{
    padding: 10px 24px;
    border-radius: 41px;
    background-color: #2ce047;
    color: #FFFFFF;
}
.btn:hover{
    background-color: blueviolet;
}
.banner-image{
    background-image: url(images/Circle\ design.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
   

}
.banner-image img{
  width: 100%;
}
/* .sponsors{
 margin: 0 auto; 
margin-top:70px;
display: flex;
justify-content: center;
align-items: center;
gap: 50px;  
} */
.sponsors{
  max-width: 1000px;
  margin: 70px auto;
  display: grid;
  grid-template-columns: repeat(7,1fr);
  justify-content: space-between;
  justify-items: center;
  gap: 20px;

}

.card-header{
   text-align: center;
   color: rgba(22, 98, 106, 0.678);
}
.card-container{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.card{
  
  border-radius: 10px;
  padding: 10px; 
    width: 100%;
}
.card-image img{
   width: 100%;
  height: auto;
  border-radius: 10px;
}
.card-title{
  font-size: 28px;
  font-weight: 500;
  margin-top: 0px;
   margin-bottom: 4px;
}
.card-price{
  font-size: 24px;
  font-weight: 400;
   margin-top: 0;
  margin-bottom: 6px; 
  color: #E02C6D;
}
.card-description{
  font-size: 14px;
  font-weight: 700;
  color: rgba(128, 128, 128, 0.674);
   margin: 0;
}
.featured-container{
  max-width: 1110px;
  margin: 100px auto;
   display: flex;
    gap: 96px;
}
.featured-image img{
  border-radius: 10px;
}
.featured-title{
  font-size: 38px;
  font-weight: 700;
  color:rgba(10, 8, 38, 1);
  margin-bottom:20px;
}
.featured-discription{
  font-size: 16px;
  font-weight: 700;
  color: rgba(108, 108, 108, 1);
   margin-bottom: 30px;
}


 @media screen and (max-width:576px){
 .card-container{
 grid-template-columns: repeat(1,1fr);
 justify-content: center;
 justify-items: center;
 align-items: center;
 
}
 }

 @media screen and (max-width:576px) {
  .featured-container{
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }

  .featured-title{
    font-size: 28px;
  }
}

   
