.ax-intro {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 100px 0 !important;
}

.ax-intro .col>.col-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ax-intro-meta: ban đầu translate Y nằm ở dưới 30px, khi active translate về 0 */
.ax-intro-meta .col-inner {
  transform: translateY(50px);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.ax-intro.is-active .ax-intro-meta .col-inner {
  transform: translateY(0);
}

.ax-intro__content h5 {
  color: #0C5563;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.ax-intro__content h2 {
  color: #000000;
  text-transform: uppercase;
  font-size: 30px;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 500;
}

.ax-link a {
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
}

.ax-link span {
  margin-left: 10px;
  vertical-align: middle;
}

.ax-intro__slider {
  margin-top: 0;
}

/* Slider ảnh: ban đầu / khi qua thì hạ position xuống (center bottom), khi scroll tới thì chuyển position lên (center top) */
.ax-intro__slider .img-inner img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center bottom !important;
  aspect-ratio: auto !important;
  max-height: none !important;
  transition: object-position 0.9s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: object-position;
}

.ax-intro.is-active .ax-intro__slider .img-inner img,
.ax-intro:hover .ax-intro__slider .img-inner img {
  object-position: center top !important;
}

.ax-intro__slider .flickity-prev-next-button {
  width: 36px;
  height: 36px;
  top: auto;
  bottom: 30px;
  background-color: transparent !important;
}

.ax-intro__slider .flickity-prev-next-button.previous {
  left: calc(50% - 60px);
}

.ax-intro__slider .flickity-prev-next-button.next {
  right: calc(50% - 60px);
}

.ax-intro__slider .flickity-page-dots {
  bottom: 30px;
}

.ax-intro__slider .flickity-page-dots .dot {
  background: #ffffff;
  opacity: 0.5;
  width: 8px;
  height: 8px;
}

.ax-intro__slider .flickity-page-dots .dot.is-selected {
  opacity: 1;
}

@media (max-width: 849px) {
  .ax-intro {
    padding: 80px 20px;
  }

  .ax-intro__content {
    padding: 0;
    top: 0;
    margin-bottom: 0;
  }

  .ax-intro__slider .img-inner {
    aspect-ratio: 16/9 !important;
  }

  .ax-intro__slider .flickity-prev-next-button {
    display: none;
  }

  .ax-intro__content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 559px) {
  .ax-intro {
    padding: 60px 0 !important;
  }

  .ax-intro__content {
    text-align: center;
  }

  .ax-intro .ax-link,
  .ax-intro .ax-link a {
    align-self: center;
  }

  .ax-intro__content h2 {
    font-size: 1.25rem;
  }
}