.categoriesp{
    color: #ffffff;
}
.featured{
  display: flex;
  justify-content: center;
}
.pfeatured{
  font-size: 25px;
  font-weight: 800;
  padding: 10px 20px;
  border: none;
  border-radius: 40px;
  background-color: #ffffff;
  -moz-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);  
  outline: 1px solid transparent;
}


.brandscontainer{
    padding: 0 10px;
    max-width: 1500px;
    margin: 0 auto;
    margin-top: 30px;
}
.brandsbox{
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.451);
    padding: 20px 10px;
}
.brands{
  border-radius: 30px;
  background-color: #f5f5f5;
  padding: 40px 15px;
}
.brandsmini{
  margin-top: 40px;
}
.brandslogo{
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}
.brandslogoimg{
    height: 30px;
}
.brand {
    margin-top: 30px;
    width: 100%;
}
.brand:first-child {
    margin-top: 0;
}
.brandheader {
  width: 100%;
    border-radius: 5px;
    padding: 25px 15px;
    background-color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    -moz-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);  
    outline: 1px solid transparent; 
    font-weight: 600 ;
}
.brand-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 ;
}
.brand-content.open {
    max-height: 250px;
    padding: 10px 20px;
}
.brandcontent{
    padding: 15px;
    border-radius: 5px;
    background-color: #ffffff;
    -moz-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);  
    outline: 1px solid transparent; 
    width: 100%;
    max-height: 230px;
}
.brandcontentmini{
  overflow-y: scroll;
  width: 100%;
  max-height: 200px;
}
.category{
  padding: 10px;
  text-decoration: none;
  color: #000000;
  display: flex;
  justify-content: space-between;
  background-color: #f5f5f5;
  border: 2px solid #d3e8f4;
  border-radius: 5px;
  margin-bottom: 10px ;
  font-size: 13px;
}
.category:last-child{
  margin-bottom: 0 ;
}

@media(min-width:1024px){
    .brandscontainer{
        padding: 0 20px;
      }
      .brandsbox{
        padding: 50px 30px;
      }
      .brandsmini{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
      }
      .brand{
        width: 49%;
        margin-top: 0;
        margin-bottom: 30px;
      }
}


@media(min-width:1200px){
    .brand{
      width: 32%;
      margin-top: 0;
    }
    .brandsmini{
      padding: 20px 60px 80px 60px;
    }
  }