/* modifier style */
.darken-text {
  font-weight: 600;
  margin-right: 10px;
}

.banner {
  background: url("../assets/images/bus-service.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--fill-color);
  height: 300px;
  position: relative;
  color: white;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}
.banner__text {
  font-size: 3rem;
  text-shadow: 1px 1px 5px black;
}

.bus-container {
  display: flex;
  margin-bottom: var(--spacing-md);
  gap: 24px;
}

.bus-container p {
  margin-top: 90px;
  padding-left: 16px;
}

.bus-container iframe.bus-form {
  width: 140%;
  height: 2000px;
}

@media only screen and (max-width: 1100px) {
  .bus-container {
    flex-direction: column;
    align-items: center;
  }

  .bus-container p {
    max-width: 635px;
    padding: 16px;
    margin: 0;
  }

  .bus-container iframe.bus-form {
    width: 100%;
  }
}

@media only screen and (max-width: 450px) {
  .banner {
    height: 350px;
  }
}
