.about {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  gap: 10rem;
}

.about__container {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  width: 40%;
  font-family: var(--text-content);
}
.about__title {
  font-size: var(--subtitles);
}

.about__content {
  font-size: 1.5rem;
  line-height: normal;
  text-align: justify;
}
.about__img {
  width: 443px;
  border-radius: 100px 0 100px;
}
@media screen and (max-width: 768px) {
  .about {
    flex-direction: column;
    height: auto;
    gap: 3rem;
  }
  .about__container {
    width: 100%;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 4rem 2rem 0 2rem;
  }
  .about__title {
    text-align: center;
    margin-bottom: 18px;
  }
  .about__content {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .about__img {
    width: 224px;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #728394;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  height: 25px;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: var(--primary-color);
  line-height: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}

#about .content{
  width: 100%;
  line-height: 20px;
}