body {
  font-family: agenda, -apple-system, Roboto, Helvetica, sans-serif;
  line-height: 1.4;
  color: #515861;
}

sup {
  font-size: 0.6em;
}

.main-container {
  display: flex;
  padding-top: 50px;
  flex-direction: column;
  align-items: stretch;
  position: relative;

  @media (max-width: 1023px) {
    padding-top: 20px;
  }
}

.container .home-top__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  padding: 80px 393px 100px;
}

p.isi-statement {
  padding: 0 0.5rem;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 40px;
  width: 100%;
  max-width: 1235px;

  @media (max-width: 1445px) {
    font-size: 1.15rem;
    width: 80%;
    margin: 0 auto;
  }

  @media (max-width: 1023px) {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .content-wrapper {
    max-width: 100%;
    margin-top: -200px;
    padding: 80px 20px 100px;
  }
}

.background-image {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.home-bg-wire {
  display: none;

  @media (min-width: 1024px) {
    display: block;
    position: absolute;
    top: 130px;
    left: 2%;
    bottom: 0;
    width: 219px;
    background-image: url("../images/vector-background/bg-wire-home-vert-v2-new.svg");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 100% auto;
    z-index: -1;
    pointer-events: none;
  }
  @media (min-width: 1690px) {
    left: 7%;
  }
  @media (min-width: 1880px) {
    left: calc(50vw - 805px);
  }

}
.home-bg-wire-side {
  display: none;

  @media (min-width: 1024px) {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 167px;
    height: 510px;
    background-image: url("../images/vector-background/bg-wire-home-side-new.svg");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 100% auto;
    z-index: -1;
    pointer-events: none;
  }
}
.hero-section {
  position: relative;
  z-index: 0;
  width: 100%;
}

@media (max-width: 1420px) {
  .hero-section {
    scale: 0.85;
  }
}

@media (max-width: 1023px) {
  .hero-section {
    max-width: 100%;
    scale: 1;
  }
}

.light-sign-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  border: 45px solid transparent;
  border-image-source: url("../images/vector-background/bg-wire-rectangle.svg");
  border-image-slice: 45 fill;
  border-image-repeat: stretch;
  background-repeat: no-repeat;
  background-size: 200% auto; /* stretches horizontally */
  background-position: center center;
  border-radius: 6rem;
  background-color: rgba(255, 255, 255, 1);
  width: 100%;
  max-width: 1235px;
  margin: 0 auto;
  background-clip: padding-box;
}

.hero-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: start;
  padding: 40px 65px;
}

@media (max-width: 1024px) {
  .light-sign-container {
    max-width: 100%;
    width: 100%;
  }
  .hero-content {
    padding: 10px;
  }
  .main-container {
    padding: 24px 24px 40px 20px;
  }
  .isi-statement {
    width: 100%;
    text-align: left;
  }
  .register-heading {
    color: var(--Dark-Coral, #c94808);

    /* H3 */
    font-family: var(--Font-H3, Agenda);
    font-size: var(--Size-H3, 24px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--Line-Height-H3, 30px); /* 125% */
  }
}

@media (max-width: 991px) {
  .hero-content {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .light-sign-container {
    border-radius: 3rem;
    border-image-slice: 67 fill;
  }
}

.title-section {
  align-self: center;
  display: flex;
  align-items: end;
  gap: 8px;
  font-family: "Tilt Neon", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 60px;
  color: #515861;
  font-weight: 400;
  line-height: 1;
  justify-content: start;
  flex-wrap: wrap;
}

@media (max-width: 1080px) {
  .title-section {
    flex-direction: column;
    justify-content: center;
    align-self: center;
    max-width: 100%;
    font-size: 40px;
    gap: 0;
  }
}

.now-approved-text {
  font-size: 72px;
  color: #000000;
  font-weight: 700;
  font-family: "Tilt Neon", -apple-system, Roboto, Helvetica, sans-serif;
  line-height: 1;
  text-align: center;
  margin-bottom: 16px;

  @media (max-width: 991px) {
    font-size: 40px;
  }
}

.now-approved-image {
  opacity: 0;
  animation: blinkThreeTimes 6s ease-in-out forwards;
}

@keyframes blinkThreeTimes {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  } /* Blink 1 */
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  } /* Blink 2 */
  50% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  } /* Blink 3 */
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  } /* Remain visible */
}

@media (max-width: 991px) {
  .now-approved-image {
    max-width: 100%;
  }
}

.for-hae-text {
  align-self: center;
  padding-bottom: 2px;
  gap: 10px;
}

@media (max-width: 991px) {
  .for-hae-text {
    font-size: 40px;
  }
}

.product-info {
  display: flex;
  margin-top: 24px;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: start;
}

@media (max-width: 991px) {
  .product-info {
    max-width: 100%;
  }
}

.product-logo-container {
  align-self: center;
  width: 100%;
  max-width: 550px;

  @media (max-width: 991px) {
    align-self: flex-start;
  }
}

.product-logo {
  width: 100%;
  max-width: 550px;
}

@media (max-width: 991px) {
  .product-logo {
    max-width: 100%;
  }
}

.product-description {
  color: #1d2d3a;
  font-family: agenda, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 36px;
  margin-top: 40px;

  sup {
    font-size: 22px;
    letter-spacing: 0.15em;
  }
}

@media (max-width: 991px) {
  .product-description {
    max-width: 100%;
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
  }
}

.event-section {
  max-width: 1235px;
  margin: 40px auto 0;
  position: relative;
  z-index: 0;
  width: 100%;
}

@media (max-width: 991px) {
  .event-section {
    width: 100%;
    margin-top: 40px;
  }
}

.event-content {
  width: 100%;
}

@media (max-width: 991px) {
  .event-content {
    max-width: 100%;
  }
}

.event-description {
  width: 100%;
  font-family: agenda, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 24px;
  color: #1d2d3a;
  font-weight: 400;
  line-height: 28px;
  margin-top: 0;
}

@media (max-width: 991px) {
  .event-description {
    max-width: 100%;
  }
}

.registration-section {
  display: flex;
  margin-top: 24px;
  width: 100%;
  align-items: center;
  gap: 40px 80px;
  justify-content: start;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .registration-section {
    max-width: 100%;
  }
}

.registration-info {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  margin: auto 0;
  flex-direction: column;
  align-items: stretch;
  justify-content: start;
}

@media (max-width: 991px) {
  .registration-info {
    max-width: 100%;
  }
}

.register-heading {
  color: #c94808;
  font-family: agenda, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}

@media (max-width: 991px) {
  .register-heading {
    max-width: 100%;
  }
}

.register-subtext {
  color: #000000;
  font-family: agenda, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  align-self: center;
  margin-top: 4px;
}

@media (max-width: 991px) {
  .register-subtext {
    max-width: 100%;
  }
}

.cards-section {
  max-width: 1235px;
  margin: 60px auto 100px;
  width: 100%;
  font-family: agenda, -apple-system, Roboto, Helvetica, sans-serif;
}

@media (max-width: 1445px) {
  .cards-section {
    width: 80%;
  }
  .event-section {
    width: 80%;
  }
}

@media (max-width: 991px) {
  .cards-section {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
    background-image: url("../images/vector-background/bg-wire-vert.svg");
    background-repeat: no-repeat;
    background-position: 80% 100px;
    background-size: auto 100%;
  }
}

.top-cards {
  display: flex;
  width: 100%;
  align-items: stretch;
  gap: 24px;
  justify-content: start;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .top-cards {
    max-width: 100%;
  }
}

.card {
  display: flex;
  min-width: 240px;
  flex-direction: column;
  align-items: stretch;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

@media (max-width: 991px) {
  .card {
    max-width: 100%;
  }
}

.card-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 120px;
  align-self: center;
  z-index: 10;
  margin-bottom: -60px;
  max-width: 100%;
}

.card-inner {
  border-radius: 32px;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0px 4px 24px -4px rgba(81, 88, 97, 0.16);
  display: flex;
  padding: 72px 32px 32px;
  align-items: stretch;
  gap: 24px;
  overflow: hidden;
  justify-content: start;
  flex: 1;
}

@media (max-width: 991px) {
  .card-inner {
    padding: 80px 32px 32px 32px;
  }
}

.card-content {
  width: 100%;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  z-index: 1;
}

@media (max-width: 991px) {
  .card-content {
    max-width: 100%;
  }
}

.card-title {
  color: #1d2d3a;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 991px) {
  .card-title {
    max-width: 100%;
  }
}

.card-body {
  display: flex;
  margin-top: 24px;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  font-size: 18px;
  justify-content: start;
}

@media (max-width: 991px) {
  .card-body {
    max-width: 100%;
  }
}

.card-description {
  width: 100%;
  color: #515861;
  font-weight: 400;
  line-height: 22px;
  margin-block-end: 24px;
}

@media (max-width: 991px) {
  .card-description {
    max-width: 100%;
  }
}

.support-card {
  border-radius: 32px;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0px 4px 24px -4px rgba(81, 88, 97, 0.16);
  display: flex;
  margin-top: 24px;
  width: 100%;
  padding: 32px 32px 32px 60px;
  align-items: center;
  gap: 40px 60px;
  overflow: hidden;
  justify-content: start;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .support-card {
    flex-direction: column;
    max-width: 100%;
    padding: 32px 32px 32px 32px;
    gap: 24px;
  }
}

.support-image {
  max-width: 350px;
  width: 100%;
  align-self: stretch;
  margin: auto 0;
}

.support-content {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  margin: auto 0;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  z-index: 1;
}

@media (max-width: 991px) {
  .support-content {
    max-width: 100%;
  }
}

.support-header {
  width: 100%;
  font-weight: 400;
}

@media (max-width: 991px) {
  .support-header {
    max-width: 100%;
  }
}

.support-title {
  color: #1d2d3a;
  font-family: agenda, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.support-description {
  color: #515861;
  font-size: 18px;
  line-height: 22px;
  margin-block: 24px;
}

@media (max-width: 991px) {
  .support-description {
    max-width: 100%;
  }
  .secondary-button {
    text-align: center;
  }
}

.info-section {
  background-color: #fff;
  padding: 40px 0;
  box-shadow: 0px -4px 20px -4px #51586129;

  @media (max-width: 991px) {
    padding: 24px 0;
  }
}

.info-content {
  display: grid;
  gap: 24px;
  font-size: 18px;
  line-height: 22px;
  color: #515861;
  p:not(:last-child) {
    margin-bottom: 16px;
  }
}
.info-item sup {
  position: relative;
  top: -6px;
  font-size: 0.6em;
}
.info-title {
  font-size: 24px;
  line-height: 28px;
  color: #f16b50;
  margin-bottom: 8px;
}
.info-subtitle {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 4px;
  color: #515861;
}

.references-section {
  background-color: #fff;
  padding: 40px 0 56px;

  @media (max-width: 991px) {
    padding: 24px 0 0px;
  }
}

.references-description {
  font-size: 16px;
}

/* annimation */
@keyframes flickerThenShow {
  0%,
  18%,
  25%,
  53%,
  57%,
  100% {
    opacity: 1;
  }
  20%,
  55% {
    opacity: 0;
  }
}
#isi-section.highlight {
  background-color: yellow;
  transition: background-color 0.5s ease;
}
#ot-pc-desc,
#ot-pc-title,
#ot-category-title {
  color: #a20067 !important;
}

.ot-pc-refuse-all-handler,
.save-preference-btn-handler {
  background-color: #a20067 !important;
  border-color: #a20067 !important;
}
