.about-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  padding: 16px;
  gap: 32px;
  background-color: var(--primary-300);
  z-index: 1;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/13334.jpg");
  background-position: center;
  background-size: cover;
  opacity: 4%;
  z-index: -1;
}

.about {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.photo-about {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: var(--primary-50);
  background-image: url('../images/ketlyn.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}

.about-content h2 {
  font-family: "Taviraj", serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
  color: var(--primary-50);
}

.about-content p {
  font-size: 12px;
  text-align: center;
  line-height: 150%;
  color: var(--dark-400);
  max-width: 500px;
}

.feed-back {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
}

.feed-cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}

.feed-card {
  display: flex;
  width: 288px;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border-radius: 32px;
  background-color: var(--primary-50);
}

.feed-card h4 {
  color: var(--dark-400);
  font-family: Taviraj;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

.feed-card p {
  color: var(--dark-400);
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
}

/* <- screens above 481px (BIGGER CELLPHONES) -> */

@media screen and (min-width: 481px) {
}

/* <- screens above 768px (TABLETS) -> */

@media screen and (min-width: 768px) {
  .about-section {
    padding: 32px;
    gap: 32px;
  }

  .about {
    gap: 24px;
  }

  .photo-about {
    width: 140px;
    height: 140px;
  }

  .about-content {
    gap: 24px;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-content p {
    font-size: 16px;
  }

  .feed-back {
    gap: 32px;
  }

  .feed-cards {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    row-gap: 16px;
    align-self: stretch;
    flex-wrap: wrap;
    width: 100%;
  }

  .feed-card {
    display: flex;
    width: 344px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .feed-card h4 {
    color: var(--dark-400);
    font-family: Taviraj;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
  }

  .feed-card p {
    color: var(--dark-400);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
  }
}

/* <- screens above 1024px (SMALL DESKTOP) -> */

@media screen and (min-width: 1024px) {
  .about-section {
    padding-right: 138px;
    padding-left: 138px;
    padding-top: 32px;
    padding-bottom: 32px;
    gap: 32px;
  }

  .about {
    gap: 32px;
  }

  .photo-about {
    width: 180px;
    height: 180px;
  }

  .about-content {
    gap: 32px;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-content p {
    font-size: 16px;
  }

  .feed-back {
    gap: 32px;
  }

  .feed-cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    row-gap: 16px;
    align-self: stretch;
    flex-wrap: wrap;
    width: 100%;
  }

  .feed-card {
    display: flex;
    width: 344px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .feed-card h4 {
    color: var(--dark-400);
    font-family: Taviraj;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
  }

  .feed-card p {
    color: var(--dark-400);
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
  }
}

/* <- screens above 12001px (BIGGER DESKTOP) -> */

@media screen and (min-width: 1201px) {
  .about {
    margin-top: 32px;
    padding-left: 138px;
    padding-right: 138px;
  }
}

/* <- screens above 1600px (ULTRA-WIDE) -> */

@media screen and (min-width: 1600px) {
}
