.tell-about {
  margin-top: clamp(28px, 3vw, 36px);
}
.tell-about__content {
  margin-bottom: clamp(28px, 4vw, 36px);
}
.tell-about__content p {
  font-size: clamp(16px, 3vw, 23px);
}
.tell-about__list {
  gap: 14px;
}
.tell-about__item {
  background-color: #F9FAFC;
  border-radius: 10px;
}
.tell-about__item.active {
  background-color: #F9FAFC;
}
.tell-about__item.active .tell-about__item-header svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.tell-about__item-header {
  padding: clamp(10px, 4vw, 22px) 30px clamp(10px, 4vw, 23px) clamp(18px, 4vw, 47px);
  cursor: pointer;
  gap: 10px;
}
.tell-about__item-header h2 {
  line-height: 1.5;
}
.tell-about__item-header svg {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media (max-width: 575px) {
  .tell-about__item-header svg {
    width: 12px;
  }
}
.tell-about__item-title {
  font-size: clamp(14px, 3vw, 23px) !important;
  color: #0E1122;
  font-weight: 400;
  margin-bottom: 0;
}
.tell-about__item-body {
  display: none;
  padding: 0px clamp(49px, 4vw, 170px) clamp(10px, 4vw, 23px) clamp(18px, 4vw, 47px);
}
.tell-about__item-body p, .tell-about__item-body li {
  font-size: clamp(14px, 3vw, 18px);
  line-height: 1.65;
}
.tell-about__item-body ol,
.tell-about__item-body ul {
  margin-bottom: 1rem;
  padding-left: 20px;
}
.tell-about__item-body ol li,
.tell-about__item-body ul li {
  list-style: auto;
}
.tell-about__item-body ol li li,
.tell-about__item-body ul li li {
  list-style: lower-alpha;
}
.tell-about__item-body ul li {
  list-style: disc;
}
.tell-about__item-body ul li li {
  list-style: lower-alpha;
}
.tell-about__item-body p:has(+ ul) {
  margin-bottom: 0;
}
.tell-about__item-body em {
  text-decoration: underline;
}