.banner {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 100%;
  height: 25rem;
  color: #fff;
  padding: 0 10%;
  background-image: url('../images/home.jpg');
  background-position: center;
  background-size: cover;
  box-sizing: border-box;
}

.banner h1 {
  font-size: 2.5rem;
  margin: 0;
}

.banner p {
  font-size: 1.3rem;
  }

section {
  margin-bottom: 3rem;
}

section h2 {
  font-weight: 500;
  margin: 5rem 0 3rem;
  text-align: center;
}

section .brands {
  display: flex;
  flex-wrap: wrap;
}

section .brands .brand-item {
  display: inline-flex;
  align-items: center;
  width: 25%;
}

section .brands .brand-item img {
  display: block;
  width: 52%;
  margin: 2rem auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}