.about {
  background-color: #F7F7F7;
  max-width: 1920px;
  margin: 0 auto;
}
.about .h3 {
  color: #333333;
  margin-bottom: 24px;
}
.about .h3 span {
  font-style: italic;
}

.about-wrap {
  max-width: 1484px;
  margin: 0 auto;
  padding: 100px 32px;
}

.about-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.about-left {
  max-width: 560px;
}

.about-right {
  max-width: 600px;
}
.about-right p {
  margin-bottom: 12px;
}
.about-right p:last-child {
  margin: 0;
}

.about-bottom {
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.about-bottom .tag {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #E0E1DD;
  padding: 13px;
  flex: 1 1 100%;
  border-radius: 30px;
  gap: 6px;
}

@media (max-width: 1330px) {
  .about-bottom {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .about-bottom .tag {
    width: fit-content;
    flex: unset;
  }
}
@media (max-width: 768px) {
  .about-wrap {
    padding: 48px 16px;
  }
  .about-top {
    gap: 32px;
  }
  .about-bottom {
    margin-top: 20px;
    gap: 8px;
  }
  .about-bottom .tag {
    padding: 6px 8px;
  }
  .about-bottom .tag svg {
    width: 16px;
    height: 16px;
  }
  .about-bottom .tag .tag-title {
    font-size: 14px;
  }
}