#pk_flex_content .flex_layout.hero_home {
  max-width: 100%;
}
.hero-section {
  padding: 0 10px;
}

.hero_home .hero-inner__wrapper {
  border-radius: 16px;
  background: var(--orange);
  overflow: hidden;
}

/* hero cta */
.hero_home .title-text__bottom .hero-cta__button {
  display: none;
}

/* HERO TOP LAYER */
.hero_home .hero-top__layer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 25px 20px 16px 20px;
  padding-top: 85px;
}

.hero_home .title-text__top {
  display: block;
  color: var(--white);
}

.hero_home .title-text__bottom {
  color: var(--white);
  display: flex;
  align-items: center;
}

/* HERO BOTTOM LAYER */
.hero-bottom__layer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  width: 100%;
}

.hero-bottom__layer .hero-image__wrapper {
  max-width: 100%;
  width: 100%;
  padding-right: 40px;
}

.hero-bottom__layer .hero-image__wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content__wrapper {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.hero-content__wrapper .hero-text {
  max-width: 640px;
  color: var(--white);
  padding: 0 20px;
}

.hero-content__wrapper .is-mobile.hero-cta__button {
  margin: 40px 0 55px 0;
}

.scroll-down__wrapper {
  display: none;
  padding: 20px;
  color: var(--white);
  background: var(--black);
}

.scroll-down__wrapper span {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.scroll-down__wrapper span:hover {
  opacity: 0.5;
}
.scroll-down__wrapper span::after {
  content: '\e5db';
  font-family: 'Material Symbols Rounded';
  font-weight: 200;
  font-size: 24px;
  color: var(--white);
  line-height: 1;
  transition: transform 0.5s ease;
  animation: scrollDown 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@keyframes scrollDown {
  50% {
    transform: translateY(-3px);
  }
}

/* .hero-bottom__layer */
@media screen and (min-width: 768px) {
  .hero_home .hero-inner__wrapper {
    border-radius: 10px;
    overflow: hidden;
  }
  .hero_home .hero-top__layer {
    padding-bottom: 45px;
  }
  .hero_home .title-text__top {
    display: block;
    color: var(--white);
  }
}

@media screen and (min-width: 990px) {
  .hero-section {
    padding: 0 20px;
  }

  .hero_home .title-text__bottom {
    column-gap: 35px;
  }

  /* HERO TOP LAYER */
  .hero_home .hero-top__layer {
    padding-top: 175px;
    padding-bottom: 75px;
  }
  .hero_home .heading-container {
    margin: 0 auto;
  }
  .hero_home .title-text__bottom .hero-cta__button {
    display: flex;
  }

  /* HERO BOTTOM LAYER */
  .hero-bottom__layer {
    flex-direction: row;
  }
  .hero-bottom__layer .hero-image__wrapper {
    max-width: 65%;
    padding-right: 0;
  }
  .hero-content__wrapper {
    max-width: 35%;
    flex-direction: column;
    justify-content: flex-end;
  }

  .hero-content__wrapper .hero-text .hero-cta__button {
    display: none;
  }

  .scroll-down__wrapper {
    display: block;
  }

  .hero-content__wrapper .hero-text {
    padding: 50px 55px;
  }
  .scroll-down__wrapper {
    padding: 35px 55px;
  }
}

@media screen and (min-width: 1199px) {
  .hero_home .hero-top__layer {
    padding-bottom: 115px;
  }
}

@media screen and (min-width: 1401px) {
}

@media screen and (max-width: 1400px) {
}
