.banner {
  background-color: #D8BCEB;
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 20px 0;
}

.banner__text {
  font-size: 26px;
  line-height: 36px;
  padding: 10px 0 24px 0;
}


.about {
  padding: 80px 0;
  width: 100%;
  box-sizing: border-box;
}

.about__title {
  margin-bottom: 35px;
}

.about__two-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__text-col {
  flex: 1;
  text-align: center;
  font-size: 17px;
  line-height: 26px;
}

.about__text-inner {
  padding-left: 15%;
}

.about__img-col {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.about__img-col img {
  width: 100%;
  height: 546px;
  object-fit: cover;
}

/* =Brands
-------- */
.brands {
  width: 100%;
  box-sizing: border-box;
}

.brands__title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 25%;
  padding: 24px 8px;
  color: #37302C;
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;

}

.brands__logos-wrap {
  display: flex;
  justify-content: stretch;
}

.brands__container {
  display: flex;
  flex-wrap: wrap;
  flex: 0 75%;
}

.brands__item {
  flex: 0 0 33%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  align-self: stretch;
  height: 140px;
  position: relative;

}

.brands__item img {
  max-height: 120px;
  max-width: 100%;
  width: auto;
  height: auto;
}



@media screen and (max-width: 1024px) {
  .about__img-col img {
    height: 480px;
  }

  .about__text-inner {
    padding-left: 20px;
  }

  .brands__logos-wrap {
    flex-direction: column;
  }

  .brands__title {
    font-size: 28px;
    line-height: 30px;
  }

  .brands__item img {
    max-height: 36px;
  }


}

@media screen and (max-width: 800px) {
  .about__img-col img {
    height: 380px;
  }

  .brands__title {
    font-size: 22px;
    line-height: 26px;
  }


}

@media screen and (max-width: 480px) {
  .banner__text {
    font-size: 24px;
    line-height: 34px;
    padding: 20px 20px 24px;
  }

  .about {
    padding: 48px 0 60px 0;
  }

  .about__title {
    margin-bottom: 25px;
    font-size: 26px;
    line-height: 32px;
  }

  .about__two-col {
    flex-direction: column;
  }

  .about__img-col img {
    height: 340px;
  }

  .about__text-col {
    font-size: 16px;
    line-height: 26px;
  }

  .about__text-inner {
    padding-left: 0;
    margin-top: 20px;
  }

  .brands {
    margin-bottom: 30px;
  }

  .brands__title {
    font-size: 26px;
    line-height: 32px;
    padding: 32px 8px 0;

  }

  .brands__logos-wrap {
    flex-direction: column;
  }

  .brands__item {
    flex: 0 0 100%;
    margin: 16px 0;
  }

  .brands__item img {
    max-height: 50px;
    position: relative;
  }


}