

/* HomePageStyle.css */
.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
  }
  
  .poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
  }

/* Navbar Resposnsive CSS */
body{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
   }
.Mobile{
    display: none;
}

@media screen and (max-width:1000px) {
    #links-hide{
        display: none;
    }
}




@media screen and (max-width:820px) {
  #Category1{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 35px;
    row-gap: 10px;
  }
  
}
@media screen and (max-width:500px) {
  #Category1{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    row-gap: 10px;
    
  }
  #Category1 >div{
    margin-left: 7px;
  }
  
  
}

@media screen and (max-width:400px) {
  #Category1{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    row-gap: 10px;
    
  }
 
  
  
}

@media screen and (max-width:300px) {
  #Category1{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    row-gap: 10px;
    
  }
 #Category1 >div{
  margin-left: 60px;
 }
  
  
}

@media screen and (max-width:1024px) {
    #ps5{
    display: grid;
    grid-column: 1/2;
   }
   #womenColl{
    display: grid;
    grid-row:1/2;
   }  
   #speaker{
     display: grid;
     grid-template-columns: repeat(1,fr);
     
   }
   
    
}

@media screen and (max-width:430px) {
  
  #ps5{
   grid-column: auto;  
    
  }
  #womenColl{
  grid-row: auto;
  }
  #speaker{
   grid-template-columns: 1fr;
  }
}

/*  */
.parent{
    background-color: rgb(188, 0, 0);
}
.card-img {
  width: 80%;
  aspect-ratio: 3/2;
  object-fit: contain;
  mix-blend-mode: color-burns;
}