.hero01-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero01-box > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services01-box {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  justify-content: start;
  align-items: start;
}
.services01-box-item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.services01-box-item > img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;

  filter: saturate(0.5);
}

/* email form */

.form-box {
  width: 100%;
  padding: 2rem 0;

  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;

  border-top: solid 1px var(--clr-border);
  border-bottom: solid 1px var(--clr-border);
}
.form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: start;
  align-items: start;
}
.form-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: start;
  align-items: start;
}
.form-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: start;
  align-items: start;
}
.form-field > label {
  width: 100%;
  font-weight: 100;
}
.form-field > label > span {
  font-size: 0.8rem;
  color: var(--clr-shadow);
}
.form-field > input {
  width: 100%;
  padding: 1rem 1rem;

  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;

  background-color: var(--clr-bg);
  border: solid 1px var(--clr-shadow);
}
.form-field > textarea {
  width: 100%;
  padding: 1rem 1rem;

  background-color: var(--clr-bg);
  border: solid 1px var(--clr-shadow);
}

/* brands */
.brands01-box {
  width: 100%;
  margin-block: 5rem;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5rem;
  justify-content: center;
  align-items: center;
}
.brands01-box > img {
  width: 100%;
}

@media (max-width: 768px) {
  .services01-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: start;
    align-items: start;
  }

  /* brands */
  .brands01-box {
    width: 100%;
    margin-block: 1rem;

    display: flex;
    flex-direction: column;
    gap: 3rem;
    justify-content: center;
    align-items: center;
  }
  .brands01-box > img {
    width: 80%;
    height: 100px;
    object-fit: contain;
  }
}
