.hero03-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: start;
  align-items: start;
}
.hero03-heading {
  font-size: 2.5rem;
  font-weight: 600;
}
.hero03-text {
  font-size: 1.5rem;
}
.hero03-text > span {
  font-weight: 600;
}

.hero03-box iframe {
  width: 100%;
  max-width: 560px;
  height: auto;
  aspect-ratio: 16 / 9;
  border: none;

  filter: saturate(0.5);
}

/* ada */
.ada03-box {
  width: 100%;

  display: grid;
  grid-template-columns: calc(70% - 5rem) 30%;
  gap: 5rem;
  justify-content: center;
  align-items: center;
}

.ada03-box > img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;

  filter: saturate(0.5);
}
.ada03-text {
  font-size: 3rem;
  font-weight: 600;
}

/* info */

.info03-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: start;
  align-items: start;
}
.info03-text {
  font-size: 1.5rem;
  font-weight: 200;
}
.info03-text.big {
  font-size: 2rem;
}
.info03-text > span {
  font-weight: 600;
}
.info03-heading {
  font-size: 2rem;
  font-weight: 600;
}
.info03-brands {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 5rem;
  justify-content: center;
  align-items: center;
}
.info03-brands > img {
  height: 100px;
}

.info03-box .break {
  width: 100%;
  height: 5rem;
}

/* responsive */

@media (max-width: 768px) {
  .hero03-heading {
    font-size: 1.5rem;
  }
  .hero03-text {
    font-size: 1rem;
  }

  /* ada */
  .ada03-box {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: start;
    align-items: start;
  }

  .ada03-box > img {
    width: 100%;
    aspect-ratio: unset;
  }
  .ada03-text {
    font-size: 1.5rem;
  }

  /* info */

  .info03-box {
    gap: 1rem;
  }
  .info03-text {
    font-size: 1rem;
  }
  .info03-text.big {
    font-size: 1.5rem;
  }

  .info03-heading {
    font-size: 1.5rem;
  }
  .info03-brands {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: start;
    align-items: start;
  }
  .info03-brands > img {
    height: 100px;
  }

  .info03-box .break {
    height: 2rem;
  }
}
