.section-1__container {
  max-width: 128rem;
  width: calc(100% - 2rem);
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 5rem auto 3rem;
}

.section-1__wrapper {
  display: flex;
  gap: 4rem;
  /* justify-content: space-between; */
  flex-wrap: nowrap;
}
@media screen and (max-width: 56.25rem) {
  .section-1__wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.section-1__img {
  display: flex;
  flex-direction: column;
  width: 50rem;
  flex: 0 1 50rem;
  transform: translateY(-5rem);
  opacity: 0.1;
  transition: 1s transform ease;
  overflow: auto;
}
.section-1__img img {
  /* width: 40rem; */
  /* max-width: 50rem;  */
  aspect-ratio: 100/95;
}
.section-1__img-caption {
  font-size: 1.4rem;
  color: gray;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 37.5rem) {
  .section-1__img {
    width: 30rem;
    flex: 0 1 30rem;
    /* padding: 0 1rem; */
  }
}

.section-1__content {
  flex: 0 1 76rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-1__content-logo {
  width: 19rem;
}
.section-1__heading {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.section-1__heading::after {
  content: "";
  background-color: #ac0000;
  width: 5rem;
  height: 0.4rem;
  margin-top: 1rem;
}
@media screen and (max-width: 56.25rem) {
  .section-1__heading {
    align-items: center;
  }
}
@media screen and (max-width: 56.25rem) {
  .section-1__content-title {
    text-align: center;
  }
}
/* .section-1__content-title::before{
  content:"";
  display: block;
  width: 8.5rem;
  height: .5rem;
  background-color: #AC0000;
  transform: translateY(-1rem);
} */

.section-1__content-detail {
  line-height: 1.7;
}
@media screen and (max-width: 56.25rem) {
  .section-1__content-detail {
    text-align: center;
  }
}
.section-1__text {
  display: flex;
  align-items: center;
  margin: 2rem auto;
}
.section-1__text h3 {
  line-height: 2.1;
  transform: translateY(5rem);
  opacity: 0.1;
  transition: 1s ease;
  text-align: center;
  /* display: flex;
  align-items: center; */
}

.section-1__text-logo {
  height: 3.8rem;
  transform: translate(0.4rem, 0.8rem);
}
@media screen and (max-width: 37.5rem) {
  .section-1__text {
    flex-direction: column;
  }
  .section-1__text-logo {
    height: 2.8rem;
  }
}
