.section__hero__authors {
  position: relative;
  padding-top: 94px;
  padding-bottom: 130px;
  background-image: url(../img/hero_bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.section__hero__authors__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 1440px;
  max-height: 506px;
}
.section__hero__authors__bar {
  position: absolute;
  top: 280px;
  right: 65px;
  width: 100%;
  max-width: 500px;
  max-height: 330px;
}
.section__hero__authors__body {
  padding-top: 10px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.section__hero__authors__desc {
  color: gold;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  max-width: 670px;
  margin: 0 auto;
}
.section__hero__authors__title {
  color: #fff;
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 40px;
  font-weight: 900;
  line-height: normal;
  max-width: 670px;
  margin: 0 auto;
}
.section__hero__authors__text {
  color: #ccc;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  max-width: 670px;
  margin: 0 auto;
}
.section__experts {
  padding-top: 30px;
  background-color: #1c1c1c;
}
.section__experts.wave::before {
  background-color: #1c1c1c;
}
.section__experts__body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 70px;
}
.section__experts__title {
  color: gold;
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  line-height: normal;
}
.section__experts__items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.section__experts__item {
  height: 489px;
  border-radius: 20px;
  border: 1px solid gold;
  background: #e2ffe2;
  padding: 14px 14px 30px; 
  max-width: 340px;
}

.section__experts__item__inner { 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section__experts__item__img {
  border-radius: 20px;
  width: 100px;
  height: 100px;
}
.section__experts__item__name {
  color: #115310;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}
.section__experts__item__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
}
.section__experts__item__text a {
  text-decoration: underline;
}
.section__experts__item__link {
  margin-top: 12px;
  color: #715f00;
  text-align: center;
  font-weight: 800;
  line-height: normal;
  border-radius: 100px;
  background: gold;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25);
  padding: 20px 60px;
}
@media (max-width: 992px) {
  .section__hero__authors {
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .section__hero__authors__bar {
    display: none;
  }
  .section__hero__authors__container {
    padding: 0 35px;
  }
}
@media (max-width: 768px) {
  .section__hero__authors__bg {
    max-height: none;
  }
  .section__hero__authors__title {
    font-size: 30px;
  }
  .section__hero__authors__text {
    font-size: 16px;
  }
  .section__experts__title {
    font-size: 20px;
  }
}
