/* HERO SECTION */

#homepage #hero {
  background: #05102c;
  color: #fff;
  overflow: hidden;
}

#homepage #hero * {
  box-sizing: border-box;
}

/* Disclaimer */
#homepage #hero .disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

#homepage #hero .disclaimer p {
  margin: 0;
  color: inherit;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
}

#homepage #hero .disclaimer p a {
  color: inherit;
  text-decoration: underline;
}

#homepage #hero .disclaimer .close {
  display: none;
}

/* Container */
#homepage #hero .container {
  position: relative;
  /* width: min(100%, 1200px); */
  margin: 0 auto;
}

#homepage #hero .navigation {
  position: absolute;
  top: 28px;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

#homepage #hero .navigation a,
#homepage #hero .navigation .breadCrumbs-icon {
  color: inherit;
}

/* Call to Action */
#homepage #hero .container .call-to-action {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}

#homepage #hero .container .call-to-action h1 {
  max-width: 592px !important;
  margin: 0;
  color: #d1f801;
  font-family: "Montserrat", sans-serif;
  font-size: 48px !important;
  font-weight: 900;
  line-height: 1.08 !important;
  letter-spacing: 0;
  text-align: left;
}

#homepage #hero .container .call-to-action p {
  max-width: 604px !important;
  margin: 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-align: left !important;
}

#homepage #hero .container .call-to-action .hero-subtitle {
  max-width: 650px !important;
  margin-top: 14px;
  font-size: 34px !important;
  font-weight: 500;
  line-height: 1.2;
}

#homepage #hero .container .call-to-action .hero-copy {
  max-width: 510px !important;
  margin-top: 18px;
  font-size: 21px !important;
  font-weight: 500;
  line-height: 1.2;
}

/* Hero Image Area */
#homepage #hero .container .hero {
  position: relative;
  z-index: 1;
  display: block;
  overflow: visible;
}


#homepage #hero .container .hero::after {
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #233df2;
  opacity: 0.78;
}

#homepage #hero .container .hero .hero-image {
  position: absolute;
  z-index: 2;
  display: block;
  max-width: none;
  height: auto;
}

/* ========================= */
/* MOBILE (≤1023px) */
/* ========================= */

@media (max-width: 1023px) {
  #homepage {
    --mobile-section-gutter: 20px;
  }

  #homepage #hero {
    min-height: 620px;
  }

  #homepage #hero .disclaimer.pc {
    display: none !important;
  }

  #homepage #hero .container {
    min-height: 620px;
    padding: 12px var(--mobile-section-gutter) 0;
  }

  #homepage #hero .disclaimer.mobile {
    position: relative;
    z-index: 3;
    display: flex !important;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    padding: 6px 28px 7px 9px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.58);
  }

  #homepage #hero .disclaimer.mobile p {
    font-size: 8px;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
  }

  #homepage #hero .disclaimer.mobile p a {
    color: #05102c;
  }

  #homepage #hero .disclaimer.mobile .close {
    position: absolute;
    top: 9px;
    right: 8px;
    display: block;
    width: 9px;
    height: 9px;
    cursor: pointer;
  }

  #homepage #hero .disclaimer.mobile .close img {
    display: block;
    width: 100%;
    height: 100%;
  }

  #homepage #hero .container .call-to-action {
    align-items: center !important;
    margin-top: 70px;
    text-align: center;
  }

  #homepage #hero .container .call-to-action h1 {
    max-width: 330px !important;
    font-size: 24px !important;
    line-height: 1.07 !important;
    text-align: center;
  }

  #homepage #hero .container .call-to-action p {
    max-width: 318px !important;
    margin-top: 9px;
    font-weight: 500;
    line-height: 1.08;
    text-align: center !important;
  }

  #homepage #hero .container .call-to-action .hero-subtitle {
    font-size: 22px !important;
    line-height: 1.18;
  }

  #homepage #hero .container .call-to-action .hero-copy {
    max-width: 330px !important;
    margin-top: 14px;
    font-size: 13px !important;
    line-height: 1.2;
  }

  #homepage #hero .container .hero {
    /* height: 250px; */
    margin: 28px auto 0;
  }

  #homepage #hero .container .hero .hero-image {
    top: 0;
    right: 50%;
    width: 340px;
    transform: translateX(50%);
  }

}

@media (max-width: 280px) {
  #homepage {
    --mobile-section-gutter: 12px;
  }

  #homepage #hero .container {
    padding-right: var(--mobile-section-gutter);
    padding-left: var(--mobile-section-gutter);
  }

  #homepage #hero .container .call-to-action {
    margin-top: 37px;
  }

  #homepage #hero .container .call-to-action h1 {
    font-size: 25px !important;
  }

  #homepage #hero .container .call-to-action p {
    max-width: 230px !important;
    font-size: 11px !important;
  }

  #homepage #hero .container .hero {
    width: 250px;
    height: 190px;
  }

  #homepage #hero .container .hero .hero-image {
    width: 260px;
  }
}

/* ========================= */
/* DESKTOP (≥1024px) */
/* ========================= */

@media (min-width: 1024px) {
  #homepage #hero {
    min-height: 615px;
    max-height: 615px;
  }

  #homepage #hero .disclaimer.pc {
    height: 20px;
  }

  #homepage #hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    column-gap: 28px;
    align-items: center;
    min-height: 455px;
    padding: 28px 0 0;
  }

  #homepage #hero .container .call-to-action {
    grid-column: 1;
    padding-top: 34px;
  }

  #homepage #hero .container .hero {
    grid-column: 2;
    width: 520px;
    height: 405px;
    margin-top: 20px;
  }

  #homepage #hero .container .hero .hero-image {
    top: -8px;
    right: -5px;
    width: 520px;
  }
}

@media (min-width: 1024px) and (max-width: 1239px) {
  #homepage #hero .container {
    grid-template-columns: minmax(0, 1fr) 450px;
    column-gap: 20px;
  }

  #homepage #hero .container .call-to-action h1 {
    font-size: 42px !important;
  }

  #homepage #hero .container .call-to-action .hero-subtitle {
    font-size: 29px !important;
  }

  #homepage #hero .container .call-to-action .hero-copy {
    font-size: 18px !important;
  }

  #homepage #hero .container .hero {
    width: 450px;
  }

  #homepage #hero .container .hero .hero-image {
    right: -10px;
    width: 450px;
  }

}