@import "../../components/splitText/style.css";
.about-banner {
  background-color: var(--color-secondary-2);
  position: relative;
  z-index: 1;
}
.about-banner > .bg {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: max(50vw - 720px, 0px);
  aspect-ratio: 894/442;
  width: 100%;
  max-width: 894px;
}
.about-banner > .bg > svg {
  width: 100%;
  height: 100%;
}

.about-banner-content {
  max-width: 1368px;
  padding: 60px 24px;
  margin: 0 auto;
}
.about-banner-content > .title {
  max-width: 820px;
}
.about-banner-content > .title > h5 {
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.about-banner-content > .title > h5::before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: white;
}
.about-banner-content > .grid {
  max-width: 664px;
  margin-left: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.about-banner-content > .grid > div {
  overflow: hidden;
}

@media screen and (width < 768px) {
  .about-banner-content > .grid {
    gap: 12px;
  }
}
.about-banner-card {
  padding: 24px;
  background-color: white;
  border-radius: 12px;
  height: 100%;
  transform: translateY(100%);
  transition: transform 1s ease-in-out;
}
.about-banner-card > div {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--color-secondary-light);
}
.about-banner-card > div > img {
  width: 60px;
}
.about-banner-card > p {
  padding: 8px 8px 0;
  color: var(--color-gray-3);
}
.about-banner-card.active {
  transform: translateY(0%);
}

@media screen and (width < 768px) {
  .about-banner-card {
    padding: 16px;
    border-radius: 8px;
  }
  .about-banner-card > div {
    gap: 16px;
  }
  .about-banner-card > div > img {
    width: 40px;
  }
}