
.brands-hero-content{
  height: 60vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.brands-hero-container{
  background-image: url(/assets/img/terms-conditions-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  &::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
  }
}
.brands-hero-content h1{
  font-size: 3rem;
  color: white;
  font-weight: 500;
  text-transform: uppercase;
  z-index: 1;
}
.brands-hero-content p{
  font-size: 1rem;
  margin-top: 1vw;
  color: white;
  font-weight: 300;
  text-align: center;
  max-width: 50%;
  z-index: 1;
}
.brands-hero-blur-1{
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
  top: 0;
  margin: auto;
  z-index: 0;
}
.brands-hero-blur-2{
  position: absolute;
  width: 50%;
  height: 50%;
  left: 0;
  top: 0;
  margin: auto;
  z-index: 0;
}
.brands-hero-blur-2 img{
  transform: scaleX(-1);
}
.brands-hero-blur-1 img, .brands-hero-blur-2 img{
  width: 100%;
  height: 100%;
}
.content{
  padding: 0 3%;
}
.intro h3{
  color: white;
  font-size: 2rem;
  font-weight: 500;
}
.intro p{
  color: rgba(255, 255, 255, 0.60);;
  font-size: 1rem;
  font-weight: 300;
  margin-top: 1vw;
}
.normal{
  margin-block: 3%;
}
.normal h4{
  color: white;
  font-weight: 500;
}
.normal p{
  color: rgba(255, 255, 255, 0.60);;
  font-size: 1rem;
  font-weight: 300;
  margin-top: 1vw;
}
.blur-3{
  position: absolute;
  width: 40%;
  height: auto;
  right: 0;
  bottom: -160%;
  margin: auto;
  z-index: -1;
}
.blur-3 img{
  width: 100%;
  height: 100%;
}
@media (width < 1020px){
  .brands-hero-content{
    height: 500px;
  }
}
@media (width < 500px){
  .brands-hero-content{
    height: auto;
    padding-top: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 40px;
  }
  .brands-hero-content h1{
    font-size: 2rem;
    text-align: center;
    padding-inline: 20px;
  }
  .brands-hero-content p{
    font-size: 1rem;
    width: 100%;
    max-width: 100%;
    padding-inline: 20px;
  }
  .content{
    padding: 0 20px;
  }
  .normal{
    margin-block: 20px;
  }
  .normal h4{
    font-size: 22px;
    font-weight: 300;
  }
  .normal p{
    font-size: 18px;
    margin-block: 10px;
    font-weight: 300;
  }
}