/*@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*/
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Poppins&display=swap');
*{
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}
.body{
    font-family: "Poppins", sans-serif;
}
/*navbar*/
.logo-section{
   
    width: 45%;
    margin: 0 auto;
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    min-height: 80px;
}
.logo-title{
    font-size: 80px;
    color: #E893CF;
    font-weight: bold;
}
.logo-section img{
    width: 60px;
}
.list-items-section{
    width: 45%;
    margin: 0 auto;
    
}
.header-container{
    display: flex;
    background-color:#9276DE ;
}
.list-item {
   
   display: flex;
   justify-content: space-between;
   align-items: center;
   min-height: 80px;
}
.list-item a{
    text-decoration: none;
    font-size: 20px;
    color: white;
} 
.nav-button{
    padding: 10px 15px;
    background-color: #E893CF;
    border-radius: 5px;
}
.nav-button a{
    color: black;
}
.banner-container{
    display: flex;
    margin: 0 auto;
    width: 95%;
    margin-top: 30px;
    background-color: #E6E9EB;
    border-radius: 10px;
}

.banner-text-container{
    min-height: 400px;
    
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.banner-image-container{
    /*min-height: 400px;*/
    width: 50%;
    padding: 15px;
   
    
}
.banner-image-container img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
   position: relative;
}
.banner-title{ 
     font-size: 80px;
     background: linear-gradient(90deg, #9276DE, #E893CF);
     background-clip: text;
     color: transparent ;
}
.banner-sub-title{
    font-size: 60px;
    font-family: "Dancing Script", cursive;
}
.common-button{
    padding: 10px 20px;
    /*background-color: #E893CF;*/
    background: linear-gradient(90deg, #9276DE, #E893CF);
    border-radius: 10px;
    color: white;
}
.icon{
    margin-bottom: 10px;
}
.discount-badge{
    width: 100px;
    height: 100px;
    background-color:#808010 ;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: absolute;
    bottom: 72%;
    left: 80%;
}
.products{
    width: 95%;
    margin: 0 auto;
}
.products-title{
    font-size: 30px;
    text-align: center;
    margin-top: 20px;
}
.first-card{

      /*width: 400px;*/
      padding: 15px;
      background-color: #E6E9EB;
      border-radius: 10px;
      /*height: 500px;*/
}
.first-card img{
      width: 100%;
}
.title-with-icons{
    display: flex;
    justify-content: space-between;
}
.products-container{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 50px;
}
.footer{
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #9276DE;
    margin-top: 20px;
}