.home .landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem 5rem 1.5rem;
}

.home .landing > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home .landing > div > div {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.home .landing img {
  width: 50%;
  max-width: 200px;
}

.home .landing h1 {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  color: #2e4e66;
  margin: 0;
}

.home .landing input {
  background-color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 1.5rem;
  text-align: center;
}

.home .landing button {
  background-color: #8b254e;
  color: white;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 1.5rem;
  text-align: center;
}

.home .landing a {
  font-weight: 700;
}

.home .exposition {
  background-color: #1d2731;
  padding: 5rem 1.5rem;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.home .exposition .brands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  align-self: center;
  gap: 3rem;
}

.home .exposition .brands img {
  width: 100%;
  max-width: 100px;
}

.home .exposition-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.home .exposition h2 {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: white;
  text-align: center;
  margin: 0%;
}

.home .exposition button {
  font-weight: 600;
  border: 1px solid white;
  width: fit-content;
  padding: 0.75rem 2.5rem;
  border-radius: 1.5rem;
}

.home .exposition button:hover {
  background-color: #1d2731;
  color: white;
}

.home .illustrations {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin: 6rem 0;
  padding: 0 1.5rem;
}

.home .illustration {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home .illustration div {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.home .illustration img {
  width: 100%;
  max-width: 500px;
}

.home .illustration h2 {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #2e4e66;
  text-align: center;
  margin: 0%;
}

.home .services {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 1.5rem;
}

.home .service {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.home .service img {
  height: 6.5rem;
  width: 6.5rem;
}

.home .service h3 {
  text-align: center;
  color: #36536b;
  margin: 0;
}

.home p {
  text-align: center;
  color: #6b8294;
  margin: 0;
  line-height: 1.75rem;
}

@media (min-width: 768px) {
  .home .landing > div > div {
    display: flex;
    flex-direction: row;
    background-color: white;
    border-radius: 1.5rem;
  }

  .home .landing {
    padding: 0 4.5rem 5rem 4.5rem;
  }

  .home .landing h1 {
    font-size: 3rem;
  }

  .home .landing input {
    flex-grow: 1;
  }

  .home .exposition {
    padding: 5rem 4.5rem;
  }

  .home .exposition .brands {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .home .services {
    padding: 0 4.5rem;
  }

  .home .services {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }

  .home .service {
    gap: 1rem;
  }

  .home .illustration {
    flex-direction: row;
    padding: 0 4.5rem;
    justify-content: center;
  }

  .home .illustration div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 55%;
  }

  .home .illustration img {
    width: 35%;
    max-width: 400px;
  }

  .home .illustration h2 {
    font-size: 3rem;
    text-align: start;
  }

  .home .illustrations p {
    text-align: start;
  }
}

@media (min-width: 1024px) {
  .home .landing {
    flex-direction: row-reverse;
    gap: 6rem;
    align-items: center;
    justify-content: start;
    padding: 0rem 9rem 3rem 9rem;
  }

  .home .landing > div {
    max-width: 500px;
  }

  .home .landing > img {
    max-width: 360px;
  }

  .home .landing h1 {
    font-size: 4rem;
    text-align: start;
  }

  .home .landing p {
    text-align: start;
    padding: 0;
  }

  .home .illustrations,
  .home .services {
    padding: 0 9rem;
  }

  .home .exposition {
    padding: 5rem 9.5rem;
    flex-direction: row-reverse;
  }

  .home .exposition-data {
    width: 60%;
    align-items: start;
  }

  .home .exposition-data h2 {
    font-size: 3rem;
  }

  .home .exposition-data p {
    text-align: start;
  }
}
