/*Heroes Talk*/

.heroes-talk {
  padding-bottom: 7em;
}

.heroes-talk__title {
  text-align: left;
  margin-bottom: 3em;
}

.heroes-talk__title :where(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 0.35em;
}

.heroes-talk__title p {
  font-weight: 600;
}

.heroes-talk-slide {
  border-radius: 0.8em;
  padding: 1.5em 1em 1em;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.2em;
}

.heroes-talk-slide.swiper-slide {
  height: auto;
}

.heroes-talk-slide__img img {
  max-height: 6em;
}

.heroes-talk-slide__img {
  margin-bottom: 0.9em;
}

.heroes-talk-slide__text-box {
  background-color: var(--color-warm-dark);
  border-radius: 0.4em;
}

.heroes-talk-slide__text :where(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 0.45em;
}

.heroes-talk-slide__text * {
  color: var(--color-warm-white);
}

.heroes-talk-slide__text p {
  font-weight: 600;
  font-size: 0.85em;
}

.heroes-talk-slide__text-box {
  padding: 10px 12px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.heroes-talk-slide__text-box p {
  font-weight: 600;
  font-size: 0.75em;
}

@media only screen and (max-width: 1199px) {
  .heroes-talk-slide__img img {
    max-height: 10em;
  }

  .heroes-talk-slide__text p {
    font-size: 1em;
  }

  .heroes-talk-slide__text-box p {
    font-size: 0.95em;
  }

  .slider__pagination {
    text-align: center;
    margin-top: 2.5em;
  }

  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    display: inline-block;
    background: var(--color-red-dark);
    opacity: 0.5;
    margin: 0 5px;
    border-radius: 20px;
    -webkit-transition: opacity 0.3s, background-color 0.3s, width 0.3s;
    -o-transition: opacity 0.3s, background-color 0.3s, width 0.3s;
    transition: opacity 0.3s, background-color 0.3s, width 0.3s;
    -webkit-transition-delay: 0.3s, 0.3s, 0s;
    -o-transition-delay: 0.3s, 0.3s, 0s;
    transition-delay: 0.3s, 0.3s, 0s;
  }
  .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
  }

  .slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--color-red-dark);
    width: 80px;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
  }
}

@media only screen and (max-width: 575px) {
  .heroes-talk-slide {
    padding: 30px 12px 12px;
	gap: 4em;
  }

}