.brands {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 16px;
  user-select: none;
  background-color: var(--color__dark);
}

.brands__description {
  display: flex;
  padding-bottom: 80px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.brands__description-title {
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
  font-family: 'Raleway';
  color: var(--color__blue);
}

.brands__description-introduction {
  max-width: 343px;
  line-height: 27px;
  text-align: center;
  font-size: 18px;
  font-weight: 500; 
  color: var(--color__light);
}

@media screen and (min-width: 768px) {
  .brands {
    padding-bottom: 110px;
  }

  .brands__description {
    padding-bottom: 90px;
  }
  
  .brands__description-title {
    font-size: 32px;
    line-height: 48px;
  }

  .brands__description-introduction {
    max-width: 736px;
    padding: 0 100px;
    font-weight: 400;
    font-size: 22px;
    line-height: 33px;
  }
}

@media screen and (min-width: 1440px) {
  .brands {
    padding: 150px 100px 110px;
  }

  .brands__description-title {
    padding-right: 1117px;
  }

  .brands__description-introduction {
    padding: 0 320px 0 0;
    max-width: 920px;
    text-align: left;
  }
}