.bod {
  position: relative;
  overflow: hidden;
}
.bod-box {
  max-width: 59.5625rem;
  margin: 0 auto;
  row-gap: 2.5rem;
}
@media (min-width: 992px) {
  .bod-box {
    row-gap: 4.375rem;
  }
}
.bod-box h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.3125rem;
  border-bottom: 1px solid rgb(102, 102, 102);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}
.bod-box h4 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-bottom: 1px solid rgb(102, 102, 102);
  margin-bottom: 1.5rem;
  padding-bottom: 1.875rem;
}
.bod-box p {
  font-size: 1.125rem;
  font-weight: 400;
}
.bod-box-key {
  padding-bottom: 3rem;
}
.bod-box-key-item {
  background-color: rgb(21, 155, 161);
  color: var(--white);
  padding: 2.4375rem 1rem;
  border-radius: 0.375rem;
}
.bod-box-key-item p {
  margin-bottom: 0;
  font-size: 1rem;
}
.bod-box-key .swiper-pagination {
  bottom: 0;
}
.bod-box-key .swiper-pagination-bullet {
  width: 0.8125rem;
  height: 0.8125rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  opacity: 1 !important;
  background-color: rgb(237, 237, 237);
  margin: 0 0.5rem !important;
  cursor: pointer;
}
.bod-box-key .swiper-pagination-bullet-active {
  border: 1px solid var(--teal);
  background: transparent;
}
.bod-box-key .swiper-pagination-bullet:hover {
  border-color: var(--teal);
  background-color: transparent;
}
.bod-box-img {
  position: relative;
  overflow: hidden;
  padding-top: 101.048951049%;
}
.bod-box-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.bod-box-author {
  position: relative;
  overflow: hidden;
  display: block;
  padding-bottom: 2.5rem;
  height: 15.625rem;
}
.bod-box-author::before {
  content: "";
  background: linear-gradient(353.43deg, #FFFFFF 4.91%, rgba(255, 255, 255, 0) 94.64%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12.5rem;
  transition: all 0.3s ease;
}
.bod-box-author.active {
  height: auto;
}
.bod-box-author.active::before {
  height: 0;
}
.bod-box-more {
  position: absolute;
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 1.875rem;
  width: 100%;
  background: transparent;
  border: 0;
  outline: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  color: var(--teal);
  font-size: 1.125rem;
  font-weight: 400;
  transition: all 0.3s ease;
}
.bod-box-more svg {
  transition: all 0.3s ease;
}
.bod-box-more svg path {
  fill: var(--teal);
  transition: all 0.3s ease;
}
.bod-box-more:hover {
  color: var(--orange);
}
.bod-box-more:hover svg path {
  fill: var(--orange);
}
.bod-box-more.active svg {
  transform: rotate(180deg);
}