.o-hero-banner {
  position: relative;
  overflow: hidden;
  height: calc(100vh - var(--announcement-height, 0rem));
}
@media (max-width: 767px) {
  .o-hero-banner {
    --announcement-height: 0.6rem;
    height: auto;
    min-height: calc(100vh - var(--announcement-height, 0rem));
  }
}
.o-hero-banner.swiper {
  overflow: hidden;
  height: calc(100vh - var(--announcement-height, 0rem));
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .o-hero-banner.swiper {
    --announcement-height: 0.6rem;
    height: auto;
    min-height: calc(100vh - var(--announcement-height, 0rem) - 4rem);
  }
}
.o-hero-banner__inner {
  display: flex;
  flex-direction: column;
}
.o-hero-banner.swiper .o-hero-banner__inner {
  flex-direction: row;
  flex-wrap: nowrap;
  flex: 1 1 auto;
  height: calc(100vh - var(--announcement-height, 0rem) - 4rem);
}
@media (max-width: 767px) {
  .o-hero-banner.swiper .o-hero-banner__inner {
    --announcement-height: 0.6rem;
    height: auto;
    min-height: calc(100vh - var(--announcement-height, 0rem) - 4rem);
  }
}
.o-hero-banner__slide.swiper-slide {
  width: 100%;
  flex-shrink: 0;
  height: auto;
}
@media (max-width: 767px) {
  .o-hero-banner__slide--has-mobile-image {
    background-image: none !important;
  }
}
.o-hero-banner__slide-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}
@media (min-width: 768px) {
  .o-hero-banner__slide-inner {
    flex-direction: row;
    gap: 3rem;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .o-hero-banner__content--order-mobile-3 {
    order: 3;
  }
  .o-hero-banner__pagination-mobile--order-2 {
    order: 2;
  }
  .o-hero-banner__media--order-mobile-1 {
    order: 1;
  }
}
.o-hero-banner__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  box-sizing: border-box;
  align-items: flex-start;
  padding: 90px 0 63px var(--layout-site-padding);
  flex: 1;
}
@media (max-width: 767px) {
  .o-hero-banner__content {
    padding: 10px var(--layout-site-padding) 20px;
    height: auto;
    align-items: center;
  }
}
.o-hero-banner__green-dot {
  padding-top: 0;
  padding-bottom: 20px;
}
.o-hero-banner__green-dot .green-dot-header__text__row__text {
  color: var(--hero-banner-title-color, var(--color-secondary-body));
}
@media (max-width: 767px) {
  .o-hero-banner__green-dot {
    display: none;
  }
  .o-hero-banner__green-dot .green-dot-header__text__row__text {
    color: var(--hero-banner-mobile-title-color, var(--hero-banner-title-color, var(--color-secondary-body)));
  }
}
.o-hero-banner__content-image {
  margin-top: auto;
}
@media (max-width: 767px) {
  .o-hero-banner__content-image {
    margin-top: 0;
    max-width: var(--hero-banner-content-image-max-width-mobile) !important;
  }
}
.o-hero-banner__content-image img {
  width: 100%;
  height: auto;
  display: block;
}
.o-hero-banner__heading {
  font-size: var(--h4-fs, 1.5rem);
  line-height: 1.2;
  margin: 2.5rem 0 15px;
  color: var(--hero-banner-heading-color);
}
@media (max-width: 767px) {
  .o-hero-banner__heading {
    text-align: center;
    color: var(--hero-banner-mobile-heading-color, var(--hero-banner-heading-color));
    margin: 0;
    font-size: 18px;
  }
}
.o-hero-banner__heading p {
  margin: 0;
}
.o-hero-banner__heading strong {
  font-weight: 600;
}
.o-hero-banner__text {
  font-size: var(--body-fs-sm, 1rem);
  line-height: 1.5;
  margin: 0 0 15px;
  color: var(--hero-banner-text-color);
}
@media (max-width: 767px) {
  .o-hero-banner__text {
    text-align: center;
    color: var(--hero-banner-mobile-text-color, var(--hero-banner-text-color));
    margin: 0;
    font-size: 12px;
  }
}
.o-hero-banner__text p {
  margin: 0 0 0.5em;
}
.o-hero-banner__text p:last-child {
  margin-bottom: 0;
}
.o-hero-banner__text strong {
  font-weight: 600;
}
.o-hero-banner__btn {
  margin-top: 0.5rem;
  background-color: var(--hero-banner-btn-bg);
  color: var(--hero-banner-btn-text);
}
@media (max-width: 767px) {
  .o-hero-banner__btn {
    --btn-fs: var(--body-fs-xs, 0.8rem);
    background-color: var(--hero-banner-mobile-btn-bg, var(--hero-banner-btn-bg));
    color: var(--hero-banner-mobile-btn-text, var(--hero-banner-btn-text));
    margin-top: 0;
  }
}
.o-hero-banner__pagination-mobile {
  display: none;
  justify-content: center;
  padding: 1rem 0;
}
@media (max-width: 767px) {
  .o-hero-banner__pagination-mobile {
    display: flex;
    width: 100%;
    justify-content: flex-start;
  }
}
.o-hero-banner__pagination-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .o-hero-banner__pagination-inner {
    flex-wrap: nowrap;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
    justify-content: flex-start;
    padding: 0 var(--layout-site-padding);
  }
  .o-hero-banner__pagination-inner::-webkit-scrollbar {
    display: none;
  }
}
.o-hero-banner__pagination-btn {
  background: none;
  border: none;
  padding: 0 0 9px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: black;
  cursor: pointer;
  border-bottom: 1px solid #E0E0E0;
  transition: color 0.2s, border-color 0.2s;
  flex: 1;
}
.o-hero-banner__pagination-btn.is-active {
  border-bottom-color: var(--color-quaternary-body);
}
@media (max-width: 767px) {
  .o-hero-banner__pagination-btn {
    white-space: nowrap;
    min-width: 140px;
  }
}
.o-hero-banner__pagination {
  flex-shrink: 0;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.o-hero-banner__media {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
  flex: 1;
}
@media (max-width: 767px) {
  .o-hero-banner__media {
    max-height: 47vh;
  }
}
.o-hero-banner__media-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
}
@media (min-width: 768px) {
  .o-hero-banner__media-image-wrap {
    width: 100%;
    max-width: 100%;
  }
}
.o-hero-banner__image {
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 0;
}
.o-hero-banner__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.o-hero-banner__image--desktop {
  display: none;
}
@media (min-width: 768px) {
  .o-hero-banner__image--desktop {
    display: block;
  }
}
.o-hero-banner__image--mobile {
  display: block;
}
@media (min-width: 768px) {
  .o-hero-banner__image--mobile {
    display: none;
  }
}
.o-hero-banner__image--placeholder {
  min-height: 100%;
}
.o-hero-banner__tags {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  position: absolute;
  right: var(--layout-site-padding);
  bottom: var(--layout-site-padding);
  max-width: 85%;
}
@media (max-width: 767px) {
  .o-hero-banner__tags {
    max-width: max-content;
    align-items: center;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    bottom: 0.5rem;
  }
}
.o-hero-banner__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: var(--body-fs-xs, 0.8rem);
  white-space: nowrap;
  border: 1px solid transparent;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
}
.o-hero-banner__tag .o-hero-banner__tag-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .o-hero-banner__tag {
    padding: 4px 8px;
    font-size: 0.9rem;
  }
}
.o-hero-banner__tag-text {
  line-height: 1.2;
}
.o-hero-banner__tag-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .o-hero-banner__tag-icon {
    width: 12px;
    height: 12px;
  }
}
