#about {
  margin-top: 3.5vw;padding: 0 8vw;
}
@media all and (max-width: 1440px) {
  #about {
    margin-top: 5vw;
  }
}
@media all and (max-width: 1000px) {
  #about {
    margin-top: 15vw;
  }
}

#about .top {
  width: 100%;
  height: 90vh;
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  border-bottom: 1px solid #999;
}
#about .top .txtwrap {
  width: 100%;
  margin-bottom: 5vw;
}
#about .top .txtwrap .title {
  font-family: "Rubik Mono One", monospace;
  font-weight: 400;
  font-style: normal;
  font-size: 6rem;
  line-height: 1;
  margin-bottom: 4vw;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
}
#about .top .txtwrap .title img {
  max-width: 400px;
  width: 60vw;
  padding-bottom: .3rem;
  margin-right: 1rem;
}
#about .top .txtwrap .title span {
  font-family: 'paperlogy';
  font-size: 10vw;
  font-weight: 800;
  font-size: 3.5rem;
}
#about .top .txtwrap .info {
  line-height: 1.4;
  width: 40vw;
  font-size: 1.4rem;
  font-weight: 400;
}

#about .top .cardImg {
  position: absolute;
  top: 50%;
  right: -8vw;
  height: 100%;
  width: 100vw;
  display: flex;
  justify-content: flex-end;
  transform: translateY(-50%);
  overflow: hidden;
  z-index: -1;
}
#about .top .cardImg img:nth-child(1) {
  rotate: -20deg;
  animation: fadeInLeft 1s ease forwards; /* 애니메이션 적용 */
  animation-delay: 0.5s; /* 0.3초 후 시작 */
}
#about .top .cardImg img:nth-child(2) {
  rotate: 20deg;
  animation: fadeInLeft 1s ease forwards;
  animation-delay: 1s; /* 0.5초 후 시작 */
}
#about .top .cardImg img:nth-child(3) {
  animation: fadeInLeft 1s ease forwards;
  animation-delay: 1.5s; /* 0.7초 후 시작 */
}
#about .top .cardImg img {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10vw;
  height: 70vw;
  width: auto;
  object-fit: contain;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateY(-50%) translateX(50%); /* 오른쪽에서 시작 */
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) translateX(0); /* 원래 위치로 */
  }
}

#about .bottom {
  height: 90vh;
  padding: 20vh 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#about .bottom .img {
  background-image: url(../img/about2-1.jpg);
  width: 40%;
  height: 100%;
  overflow: hidden;
  max-height: 50vh;
  min-height: 50vh;
  background-size: cover;
  background-position: center;
}
/* #about .bottom .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */
#about .bottom .info {
  text-align: end;
  width: 60%;
  height: 100%;
  min-width: 50.625rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#about .bottom .info .title {
  font-family: "Paperlogy";
  color: #EB0045;
  font-weight: 700;
}
#about .bottom .info .txtwrap {
  font-family: 'Paperlogy';
  font-weight: 500;
  line-height: 1.8;
  font-size: 1.5rem;
}
#about .title {
  font-size: 6rem;
  line-height: 1;
  margin-bottom: 4vw;
}
#about .txtwrap {}

