.aboutSection {
  background-color: var(--lightgray-color);
  padding-bottom: 35px;
}
.aboutSection .content .imageList {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.aboutSection .content .imageList img {
  width: calc(25% - 15px);
  height: 300px;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutSection .content .cardList {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.aboutSection .content .cardList .item {
  width: calc(33.33% - 13.3333333333px - 60px);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  background-color: var(--totalwhite-color);
}
.aboutSection .content .cardList .item .title {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  background: var(--accent-color);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 800px) {
  .aboutSection {
    padding-bottom: 15px;
  }
  .aboutSection .content .imageList {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
  }
  .aboutSection .content .imageList img {
    width: calc(50% - 5px);
    height: auto;
    aspect-ratio: 162.5/150;
  }
  .aboutSection .content .cardList {
    display: flex;
    flex-direction: column;
  }
  .aboutSection .content .cardList .item {
    width: calc(100% - 40px);
    padding: 20px;
  }
  .aboutSection .content .cardList .item .title {
    font-size: 18px;
    line-height: 24px;
  }
}/*# sourceMappingURL=aboutSection.css.map */