@font-face {
  font-family: "Bebas Neue Rounded";
  src: url("./BebasNeueRounded-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

a {
    text-decoration: none;
}

a:hover {
    color: #fff;
}

main {
    background: rgba(0, 76, 168, 1) url('images/bg.png') no-repeat center center;
    background-size: cover;
    min-height: 90vh;
    p {
      line-height: 120%;
    }
}

@media screen and (max-width: 512px) {
  main {
    background: rgba(0, 76, 168, 1) url('images/background.png') no-repeat top center;
    background-size: contain;
  }
}

.hero-section {
    padding: 32px 155px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.logo-container {
    flex-shrink: 0;
    margin: -2rem 0 -4rem;
}

@media (min-width: 768px) {
    .logo-container {
        margin: 0;
    }
}

.logo {
    position: relative;
    width: 480px;
    height: 249px;
}

.tagline {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.0375rem;
    text-align: center;
    color: #ffffff;
    max-width: 553px;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .tagline {
        font-size: 2rem;
        margin: 0;
    }
}

@media (max-width: 1200px) {
    .hero-section {
        padding: 32px 40px;
    }

    .hero-container {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 20px;
    }

    .logo {
        transform: scale(0.68);
        transform-origin: center;
        left: 1rem;
    }
}

.user {
  display: flex;
  flex-direction: column;
  gap: var(--rem-15-1.5rem, 1.5rem);
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}
.user__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.user__emoji-container {
  background: var(--primary-pale-blue, #dbedff);
  border-radius: 85.954375rem;
  padding: 0.859375rem;
  display: flex;
  flex-direction: row;
  gap: 0rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  position: relative;
}
.user__emoji {
  color: #ffffff;
  text-align: center;
  font-family: "Quicksand-Bold", sans-serif;
  font-size: 2.75053334236145rem;
  line-height: 2.750625rem;
  letter-spacing: -0.06em;
  font-weight: 700;
  position: relative;
}
.user__container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.user__greeting {
  color: var(--primary-white, #ffffff);
  text-align: center;
  font-family: var(--desktop-h3-font-family, "Quicksand-Bold", sans-serif);
  font-size: var(--desktop-h3-font-size, 3rem);
  line-height: var(--desktop-h3-line-height, 100%);
  letter-spacing: var(--desktop-h3-letter-spacing, -0.06em);
  font-weight: var(--desktop-h3-font-weight, 700);
  position: relative;
  align-self: stretch;
}
.user__description {
  color: #ffffff;
  text-align: center;
  font-family: "Quicksand-Bold", sans-serif;
  font-size: 1.25rem;
  line-height: 128%;
  letter-spacing: -0.05em;
  font-weight: 700;
  position: relative;
  align-self: stretch;
}
.user__cta-button {
  color: var(--color-blue-blue-80, #004da9);
  text-align: center;
  font-family: var(--button-font-family, "Quicksand-Bold", sans-serif);
  font-size: var(--button-font-size, 1.25rem);
  line-height: var(--button-line-height, 1.25rem);
  letter-spacing: var(--button-letter-spacing, -0.0375rem);
  font-weight: var(--button-font-weight, 700);
  position: relative;
}


.features-container {
    background-color: #003da6;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.features-left,
.features-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.puzzle-image {
    width: 100%;
    height: auto;
    max-width: 552px;
    object-fit: cover;
}

.expert-card {
    background-color: #dbedff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.expert-text {
    color: #004da9;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.48px;
    margin: 0;
    flex-grow: 1;
}

.expert-text .highlight {
    color: #f8ac1a;
}

.expert-image {
    width: 216px;
    height: 200px;
    object-fit: contain;
    flex-shrink: 0;
    margin: -24px 0;
}

.features-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.48px;
    text-align: center;
    margin: 0;
}

.topics-container {
    background-color: #004da9;
    border-radius: 16px;
    padding: 16px;
}

.topics-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.topic-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topic-icon {
    position: relative;
    width: 39px;
    height: 41px;
    flex-shrink: 0;
}

.topic-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    a {
        text-decoration: none;
        color: #fff;
    }
    a:hover {
        color: #fff;
        text-decoration: underline;
    }
}

.topic-label {
    color: #ffe8af;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.topic-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.actions-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    .btn {
        font-weight: 700;
        &:nth-child(2):hover {
            background-color: #004da9;
            color: #fff;
        }
    }
}

@media (max-width: 1200px) {
    .features-section {
        padding: 0 40px;
    }

    .features-container {
        flex-direction: column;
    }

    .features-left,
    .features-right {
        width: 100%;
        max-width: 552px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 0;
    }

    .features-container {
        padding: 20px;
    }

    .expert-card {
      padding: 1rem;
    }

    .expert-image {
        width: 50%;
        height: auto;
        margin: -1rem 0;
    }

    .expert-text {
      font-size: 1rem;
    }
    .features-title {
        font-size: 1.5rem;
    }

    .topic-title {
        font-size: 18px;
    }
    .actions-container {
        .btn {
            &:nth-child(2) {
                position: relative;
                top: 5rem;
                margin-top: -4rem;
                border: 1px solid #fff;
                width: 112%;
                left: -6%;
            }
        }
    }
}

#research-stats {
    color: #fff;
    padding: 80px 0;
  }
  .research-container {
    max-width: 1440px;
    margin: 0 auto;
    /* padding: 0 80px; */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 100px;
  }
  .research-title {
    font-size: 96px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.06em;
    margin: 0;
  }
  .cards-grid {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
  }
  @media screen and (max-width: 768px) {
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      transform: scale(.7) translateY(-200px);
      margin-top: 25px;
      justify-content: center;
    }
    
  }
  .stat-card {
    background-color: #004da9;
    border-radius: 40px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 70px;
    width: 302px;
    box-sizing: border-box;
  }
  .chart-wrapper {
    position: relative;
    width: 171px;
    height: 171px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .chart-visuals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .chart-visuals img {
    position: absolute;
  }
  .chart-svg-1, .chart-svg-2 {
    width: 171px;
    height: 171px;
    top: 0;
    left: 0;
  }
  .percentage-text {
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -0.06em;
    text-align: center;
    position: relative; /* To ensure it appears above the absolute positioned images */
    z-index: 1;
  }
  .card-description {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.03em;
    text-align: left;
    margin: 0;
    width: 100%;
    min-height: 96px; /* To align text blocks vertically */
  }

  /* Responsive Styles */
  @media (max-width: 1440px) {
    .research-container {
      padding: 0 80px;
    }
    .research-title {
      font-size: 72px;
    }
  }

  @media (max-width: 1200px) {
    .research-container {
      padding: 0 40px;
    }
    .research-title {
      font-size: 72px;
    }
  }

  @media (max-width: 1024px) {
    .cards-grid {
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }
    .stat-card {
      width: 100%;
      max-width: 350px;
    }
  }

  @media (max-width: 768px) {
    #research-stats {
      padding: 60px 0;
    }
    .research-container {
      padding: 70px 20px 0;
      gap: 60px;
    }
    .research-title {
      font-size: 2rem;
    }
    .stat-card {
      gap: 40px;
    }
    .stat-card:nth-child(2) {
      position: relative;
      top: 50%;
    }
    .stat-card:nth-child(3) {
      position: relative;
      top: 50%;
    }
    .card-description {
      position: relative;
      height: 125px;
      top: 176px;
      margin-top: -160px;
      width: 123%;
      letter-spacing: -0.96px;
    }
  }

  #discover {
    margin-bottom: 170px;
  }

  .discover-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
  }

  .discover-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  .discover-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -3.84px;
    color: #ffffff;
    margin: 0;
  }

  @media screen and (min-width: 768px) {
    .discover-title {
      font-size: 4rem;
    }
  }

  .discover-description {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.6px;
    color: #ffffff;
    margin: 0;
    max-width: 618px;
  }

  .discover-grid {
    width: 100%;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
    .card {
        height: 400px;
        border: 0;
        border-radius: 40px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    
    .card--content {
        justify-content: flex-end;
        padding: 2rem 1.25rem;
        background-size: cover;
        background-position: center;
        color: #ffffff;
        text-decoration: none;
    }
    .card--cta {
        background-color: #004da9;
        justify-content: center;
        align-items: center;
        gap: 24px;
        padding: 20px;
        text-align: center;
    }
  }

  .category-card__text {
    display: flex;
    flex-direction: column;
  }

  .category-card__title {
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
    letter-spacing: -1.92px;
    color: #014da9;
    margin: 0;
    text-transform: uppercase;
  }

  @media screen and (max-width: 500px) {
    .category-card__title {
      order: 2;
      font-size: .875rem;
      letter-spacing: -.012rem;
      text-transform: capitalize;
    }
  }

  .category-card__subtitle {
    font-weight: 500;
    font-size: 32px;
    line-height: 1;
    letter-spacing: -1.92px;
    color: #014da9;
    margin: 0;
  }

  @media screen and (max-width: 500px) {
    .category-card__subtitle {
      font-weight: 700;

    }
  }

  .category-card__number {
    font-family: 'Bebas Neue Rounded';
    font-size: 6rem;
    font-weight: 400;
    line-height: 0.75;
    letter-spacing: -5.76px;
    color: #004da9;
    text-align: right;
  }

  @media screen and (max-width: 500px) {
    .category-card__number {
      font-size: 4.5rem;
      font-weight: 500;
    }
  }

  @media screen and (max-width: 500px) {
    .discover-grid .card {
      border-radius: 1.25rem;
      padding: 1rem;
      height: 13rem;
    }
    .card>.content-card__title {
      font-size: 1rem;
      letter-spacing: .25px;
    }
  }

  .cta-card__title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.96px;
    color: #ffffff;
    margin: 0;
  }

  .cta-card__button {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    letter-spacing: -1.2px;
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 100px;
    padding: 16px 24px;
    transition: background-color 0.3s, color 0.3s;
    &:hover {
        background-color: #fff;
        color: #004da9;
        path {
            fill: #004da9;
        }
    }
  }

  @media (max-width: 1200px) {
    .discover-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .discover-container {
      padding: 80px 40px;
    }
  }

  @media (max-width: 768px) {
    .discover-grid {
      grid-template-columns: 1fr;
      .card--cta, .card--category-1, .card--category-2 {
        height: auto;
        width: 84%;
        gap: 0;
      }
      .card--category-1, .card--category-2 {
        flex-direction: row;
        align-items: center;
      }
    }
    .discover-container {
      padding: 12px 24px;
      gap: 60px;
    }
    .cta-card__wrapper {
      width: 100%;
      .cta-card__button {
        width: 100%;
        justify-content: center;
      }
    }
  }

.tips {
  padding: 0rem 5rem 0rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 6.25rem;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.tips__info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  max-width: 53rem;
  position: relative;
}
.tips__section-title {
  color: var(--primary-white, #ffffff);
  text-align: center;
  font-family: var(--desktop-h1-font-family, "Quicksand-Bold", sans-serif);
  font-size: var(--desktop-h1-font-size, 4rem);
  line-height: var(--desktop-h1-line-height, 100%);
  letter-spacing: var(--desktop-h1-letter-spacing, -0.06em);
  font-weight: var(--desktop-h1-font-weight, 700);
  position: relative;
  align-self: stretch;
}
.tips__section-description {
  color: #ffffff;
  text-align: center;
  font-family: var(--desktop-h4-font-family, "Quicksand", sans-serif);
  font-size: var(--desktop-h4-font-size, 2rem);
  line-height: var(--desktop-h4-line-height, 100%);
  letter-spacing: 0;
  font-weight: var(--desktop-h4-font-weight, 700);
  position: relative;
  align-self: stretch;
}

@media screen and (max-width: 768px) {
  .tips {
    padding: 0 1.85rem;
  }
  .tips__section-title {
    font-size: 2rem;
  }
  .tips__section-description {
    font-size: 1.25rem;
    font-weight: 600;
  }
}

.tips-container {
    max-width: 1440px;
    margin: 0 auto;
    border-radius: 80px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #004DA9;
  }

  .tips-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .content-column,
  .image-column {
    flex: 1 1 50%;
    min-width: 320px;
  }

  .content-column {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    color: #ffffff;
  }

  .content-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    max-width: 456px;
  }

  .title-main {
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.01rem;
    color: #ffffff;
  }

  @media screen and (min-width: 768px) {
    .title-main {
      font-size: 4rem;
    }
  }

  .title-gradient {
    font-family: 'Marydale', 'Quicksand', sans-serif;
    background: linear-gradient(90deg, #cbab64 0%, #ffed9c 31.45%, #f8e392 43.23%, #efd686 57.4%, #f0d894 73.7%, #bb9a56 87.05%, #f3d98c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }

  .description {
    margin: 0;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.01rem;
    max-width: 415px;
  }

  .btn {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border: 2px solid #ffffff;
    border-radius: 100px;
    text-decoration: none;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s, color 0.3s;
    align-self: flex-start;
  }

  .btn:hover {
    background-color: #ffffff;
    color: #004da9;
  }
  
  .btn:hover .btn-icon {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(180deg);
  }

  .btn-icon {
    width: 24px;
    height: 24px;
  }

  .btn-text {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: -0.01rem;
    text-transform: uppercase;
  }

  .image-column {
    height: 800px;
  }

  .feature-image {
    border-radius: 80px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  @media (max-width: 992px) {
    .feature-image,
    .tips-container {
      border-radius: 40px;
    }
    .tips-row {
      flex-direction: column;
    }
    /* Reverse order for the second row on mobile */
    .tips-row:nth-child(2) {
      flex-direction: column-reverse;
    }
    .content-column {
      padding: 40px 30px;
    }
    .content-inner {
      gap: 56px;
    }
    .btn {
      align-self: center;
    }
    .image-column {
      width: 100%;
      height: auto;
      max-height: 500px;
      padding: 1rem;
    }
  }

  /* Mobile styles */
  @media (max-width: 576px) {
    .content-column {
      padding: 40px 20px;
    }
  }

.floating {
    background: #fff;
    position: fixed;
    z-index: 4;
    bottom: -112px;
    left: 0;
    right: 0;
    margin: auto;
    transition: .5s bottom;
    a {
      text-decoration: none;
    }
}

@media (max-width: 768px) {
    .join {
        width: 327px;
        background: #FFF;
    }

    .join-now {
        color: var(--Primary-Lacto-Blue, #004DA9);
        text-align: center;
        font-family: "Quicksand-Bold";
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 20px;
        /* 100% */
        letter-spacing: -1.2px;
        text-transform: uppercase;
    }

    .floating {
        width: 100%;
        border-radius: 32px 32px 0px 0px;
        padding: 24px;
        z-index: 9999999999;
        flex-direction: column;
        align-items: center;
    }

    .floating .title .text-top-title {
      margin-bottom: 8px;
      color: #004DA9;
      font-size: 16px;
      font-weight: 500;
      line-height: 120%;
      letter-spacing: -0.48px;
    }

    .floating h3 {
        color: var(--Lactogen---Blue, #004DA9);
        font-family: "Quicksand-Bold";
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
        /* 100% */
        letter-spacing: -1.44px;
        max-width: 511px;
    }

    .floating .explore:hover {
      background-color: #003DA6;
      color: #FFFFFC;
    }

    .floating .title {
        display: block;
    }

    .join-sekarang-sticky {
        border-radius: 1000px;
        border: 2px solid var(--Primary-Lacto-Blue, #004DA9);
        background: var(--Primary-Lacto-Blue, #004DA9);
        display: flex;
        padding: 16px 24px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex: 1 0 0;
        color: #fff;
        text-align: center;
        font-family: "Quicksand-Bold";
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 20px;
        letter-spacing: -1.2px;
        width: 327px;
    }

    .explore {
        border: 2px solid #004DA9;
        width: 327px;
        font-family: "Quicksand";
        font-size: 20px;
        font-weight: 700;
        line-height: 20px;
        letter-spacing: -0.06em;
        text-align: center;
        color: #004DA9;
        display: flex;
        width: 327px;
        padding: 16px 24px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 100px;
        border: 2px solid var(--Primary-Lacto-Blue, #004DA9);
        flex-shrink: 0;
    }
}

@media (min-width: 768px) {
    .login {
        background: #FFF;
    }

    .masuk {
        color: var(--Primary-Lacto-Blue, #004DA9);
        text-align: center;
        font-family: "Quicksand-Bold";
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 20px;
        /* 100% */
        letter-spacing: -1.2px;
        text-transform: uppercase;
    }

    .floating {
        height: 112px;
        display: flex;
        width: 1062px;
        max-width: 100%;
        border-radius: 40px 40px 0px 0px;
        padding: 24px 102px
    }

    .floating .title .text-top-title {
      margin-bottom: 8px;
      color: #004DA9;
      font-size: 16px;
      font-weight: 500;
      line-height: 120%;
      letter-spacing: -0.48px;
    }

    .floating h3 {
        color: var(--Lactogen---Blue, #004DA9);
        font-family: "Quicksand-Bold";
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 32px;
        /* 100% */
        letter-spacing: 0.48px;
        max-width: 511px;
    }

    .floating .explore:hover {
      color: #004DA9;
      background-color: #FFFFFC;
    }

    .join-sekarang-sticky {
        border-radius: 1000px;
        border: 2px solid var(--Primary-Lacto-Blue, #004DA9);
        background: var(--Primary-Lacto-Blue, #004DA9);
        display: flex;
        padding: 16px 24px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        color: var(--Primary-White, #FFF);
        text-align: center;
        font-family: "Quicksand-Bold";
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 20px;
        letter-spacing: -1.2px;
        width: 327px;
    }

    .explore {
        background-color: #003DA6;
        color: #FFFFFC;
        border: 2px solid #004DA9;
        width: 327px;
        font-family: "Quicksand";
        font-size: 20px;
        font-weight: 700;
        line-height: 20px;
        letter-spacing: -0.06em;
        text-align: center;
        display: flex;
        width: 327px;
        padding: 16px 24px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 100px;
        flex-shrink: 0;
    }
}

/* swiper mobile */
.swiper.swipper-mobile {
    width: 88%;
    overflow: visible;
    margin-left: -.1rem;
    margin-right: -7rem;
    margin-bottom: 4rem;
    .card {
      width: 43vw;
      max-width: 43vw;
    }
    .swiper-pagination {
      bottom: -3.5rem;
      text-align: left;
    }
    .swiper-pagination-bullet {
      background-color: #fff;
      height: .625rem;
      width: .625rem;
    }
}
@media screen and (min-width: 768px) {
  .swipper-mobile {
    display: none!important;
  }
}

.card--category-1 {
  background-color: #acd18d;
  padding: 36px;
  justify-content: space-between;
}

.card--category-2 {
  background-color: #f3a8c1;
  padding: 36px;
  justify-content: space-between;
}

.card--category-3 {
  background-color: #F8AC1A;
  padding: 36px;
  justify-content: space-between;
}

.card--category-4 {
  background-color: #FEBBBB;
  padding: 36px;
  justify-content: space-between;
}

/* usabilla hide */
.usabilla_live_button_container {
    top: 50% !important;
    width: 10px !important;
    transition: .5s width;
}

.usabilla_live_button_container:hover {
    width: 40px !important
}

.swiper-button-prev,
.swiper-button-next {
  bottom: -4rem;
  top: auto;
  display: flex;
  width: 40px;
  height: 40px;
  padding: 12.5px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12.5px;
  border-radius: 5px;
  background: url("../parenting-journey-index/images/arrow-next.svg") no-repeat center center;

  svg {
    display: none;
  }
}

.swiper-button-prev {
  transform: rotate(180deg);
  right: 66px;
  left: auto;
}

.swiper-button-next {
  right: 16px;
  left: auto;
}
.swiper-button-next:after, .swiper-button-prev:after {
  display: none;
}

.swiper {
  width: 100%;
  height: 100%;
  padding: 56px 80px !important;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;

  .card--category-1,
  .card--category-2,
  .card--category-3,
  .card--category-4,
  .card--content {
    height: 100%;
    border: none;

    .category-card__text {
      text-align: left;
    }
  }

  .card--content {
    justify-content: flex-end;
    padding: 2rem 1.25rem;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-decoration: none;

    .content-card__title {
      font-weight: 700;
      font-size: 32px;
      line-height: 1;
      letter-spacing: -1.92px;
      margin: 0;
      text-align: left;
      height: auto;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      padding: 3px;
    }

    @media screen and (max-width: 512px) {
      .content-card__title {
        line-height: 18px;
        padding: 0 !important;
        font-size: 16px;
        letter-spacing: -0.96px;
      }
    }
  }
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tabs {
  text-align: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.6px;

  .tab {
    width: 320px;
    height: 60px;
    background-color: transparent;
    border-bottom: white solid;
    border-width: 0 0 1px;
    position: relative;
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFC;

    span {
      opacity: 0.4;
    }
  }
}

.tab-content {
  display: none !important;
}

.tab-content.active {
  display: block !important;
}

.tab.active span {
  color: #FFFFFC;
  opacity: 1;
}

.tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 8px;
  background-image: url('../parenting-journey-index/images/tab-line.png');
}


#tab1 .swiper-slide,
#tab2 .swiper-slide,
#tab3 .swiper-slide,
#tab4 .swiper-slide {
  width: 300px;
  height: 400px;
}

.swiper-pagination-bullet {
  background-color: #83CBF0 !important;
}

.swiper-pagination-bullet-active {
  background-color: #FFBB51 !important;
}

#tab1 .swiper-controls,
#tab2 .swiper-controls,
#tab3 .swiper-controls,
#tab4 .swiper-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 326px;
  margin: 16px auto;
}

#tab1 .swiper-pagination,
#tab2 .swiper-pagination,
#tab3 .swiper-pagination,
#tab4 .swiper-pagination {
  position: static;
  width: auto;
  flex: 1;
  text-align: center;
}

#tab1 .swiper-button-prev,
#tab1 .swiper-button-next,
#tab2 .swiper-button-prev,
#tab2 .swiper-button-next,
#tab3 .swiper-button-prev,
#tab3 .swiper-button-next,
#tab4 .swiper-button-prev,
#tab4 .swiper-button-next {
  position: static;
  margin: 0;
}

.cta-join {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;

  p {
    font-weight: 700;
    font-size: 32px;
    color: #FFF;
    margin: 0;
    line-height: 32px;
    letter-spacing: -1.92px;
  }

  a {
    .btn--primary {
      padding: 6px 70px;
      font-weight: 700;
      font-size: 20px;
      border-width: 3px;
      text-transform: uppercase;
    }
  }
}

@media screen and (max-width: 512px) {
  .card {
    flex-direction: unset;
  }

  .swiper {
    padding: 24px 0 0 !important;
    overflow: visible !important;
  }

  #tab1 .swiper-slide,
  #tab2 .swiper-slide,
  #tab3 .swiper-slide,
  #tab4 .swiper-slide {
    width: 150px;
    height: 207px;
  }

  .card--category-1,
  .card--category-2,
  .card--category-3,
  .card--category-4 {
    padding: 16px;
    border: none;
  }

  .discover-title {
    letter-spacing: -1.92px;
  }

  .card--content {
    align-items: flex-end;
  }
  
  .discover-header {
    gap: 40px;
    padding-bottom: 26px;
  }

  #tab1 .swiper-controls,
  #tab2 .swiper-controls,
  #tab3 .swiper-controls,
  #tab4 .swiper-controls  {
    max-width: unset;
    margin: 16px 0 0;
  }

  #tab1 .swiper-pagination,
  #tab2 .swiper-pagination,
  #tab3 .swiper-pagination,
  #tab4 .swiper-pagination {
    flex: unset;
  }

  .swiper-button-next {
    background: url("../parenting-journey-index/images/arrow-right-m.svg") no-repeat center center;
  }
  
  .swiper-button-prev {
    background: url("../parenting-journey-index/images/arrow-left-m.png") no-repeat center center;
    transform: none;
  }

  .swiper-pagination-bullet {
    background-color: #FFF !important;
    opacity: 0.5 !important;
  }

  .swiper-pagination-bullet-active {
    background-color: #FFF !important;
    opacity: 1 !important;
  }

  .cta-join {
    flex-direction: column;
    background-color: #004DA9;
    width: 100%;
    border-radius: 20px;
    padding: 24px;
    gap: 16px;

    p {
      font-size: 20px;
      letter-spacing: -0.6px;
    }

    a {
      width: 100%;

      button {
        width: 100%;
        padding: 16px 24px !important;
      }
    }
  }

  #discover {
    margin-bottom: 112px;
  }

  .card--content {
    padding: 2rem 1rem !important;
  }

  .custom-content-column {
    background-color: #015EB2;
    padding: 80px 20px 56px;
    border-radius: 40px 40px 0 0;
  }

  .custom-image-column {
    background-color: #015EB2;
    border-radius: 0 0 40px 40px;
    padding: 0 20px 60px;
  }

  .tips-row:nth-child(2) {
    margin-top: 40px;
  }

  .tips-container {
    background-color: unset;
  }
}