.about {
  width: 100%;
}

.about .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 30px;
  padding-right: 34px;
}

.about_row {
  width: 100%;
}

.about_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: calc(100% - (388px + 30px));
}

.about_content h2 {
  margin-bottom: 40px;
  order: 0;
}

.about_content p {
  font-size: 16px;
  order: 1;
}

.about_items {
  margin-top: 30px;
  display: flex;
  gap: 30px;
  order: 1;
}

.reverse .about_items {
  order: 0;
  gap: 16px;
  margin-top: 0;
  margin-bottom: 40px;
}

.reverse .about_item {
  min-height: 136px;
  padding: 24px 20px;
}

.about_item {
  width: 100%;
  padding: 10px 20px;
  border-radius: 20px;
  background: var(--Cultured);
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  line-height: 145%;
  min-height: 156px;
}

.about_item span {
  color: var(--Orange);
  font-size: 30px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.6px;
}

.about_wrap {
  width: 100%;
  position: relative;
  border-radius: 30px;
  background: var(--Cultured);
}

.about_img {
  position: absolute;
  left: 19px;
  top: 20px;
  border-radius: 30px;
}

@media (max-width: 1100px) {
  .about_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: calc(100% - (300px + 30px));
  }
  .about_wrap {
    width: 300px;
  }

  .about_items {
    margin-top: 24px;
    gap: 19px 24px;
  }

  .about_item {
    width: 100%;
    padding: 16px 14px;
    min-height: 134px;
  }
}

@media (max-width: 992px) {
  .about .container {
    padding-right: 15px;
  }
  .about_content {
    gap: 16px;
    width: 100%;
  }

  .about_content h2 {
    margin-bottom: 0;
  }

  .about_content p {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .about_wrap {
    display: none;
  }
}

@media (max-width: 768px) {
  .about_items {
    flex-wrap: wrap;
  }

  .about_item {
    width: calc(100% / 2 - (24px / 2));
  }

  .reverse .about_item {
    width: 100%;
    padding: 16px 60px 16px 24px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    min-height: auto;
  }
}
