.about-top-wrapper {
  background-image: url("../assets/about_top.png");
}

.about{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}

.about__info-wrapper {
  width: 600px;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.about__info-list {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  width: 100%;
}

.about__info-row {
  display: flex;
  align-items: flex-end;
  gap: 2.4rem;
}

.about__info-label-wrapper {
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border-bottom: 1.5px solid #C1E0FF;
  padding: 24px 0;
  
}

.about__info-label {
  font-size: 1rem;
  width: 100%;
  height: 100%;
  color: var(--primary-color);
}

.about__info-data {
  flex-grow: 1;
  font-size: 1rem;
  border-bottom: 1.5px solid #C1E0FF;
  padding: 24px 0;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {

  .about__info-wrapper{
    width: 90%;
  }

  .about__info-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .about__info-row {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .about__info-label-wrapper {
    height: auto;
    width: 100%;
    padding: 0;
    border-bottom: none;
  }

  .about__info-label {
    text-align: left;
  }

  .about__info-label,
  .about__info-data {
    font-size: 14px;
    width: 100%;
  }
}
