/* Start General */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Fira Sans", sans-serif;
}

body {
  padding-top: 70px;
  background: white;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

.text-red {
  color: red;
}

.text-grey {
  color: rgb(63, 63, 63);
}

.text-yellow {
  color: rgb(255, 234, 0);
}

.text-white {
  color: white;
}

.text-highlight-blue {
  color: #3a61a6;
  background-color: white;
  padding: 0 5px;
  border-radius: 10px;
}

.text-highlight-white {
  color: white;
  background-color: red;
  padding: 0 5px;
  border-radius: 10px;
}

.center-title {
  color: rgb(63, 63, 63);
  margin-bottom: 20px;
}

.center-description {
  margin-bottom: 20px;
}

.general-heading-wrapper {
  max-width: 70%;
  margin: 0 auto;
  text-align: center;
}

.left-title {
  color: rgb(63, 63, 63);
  margin-bottom: 20px;
}

.left-description {
  margin-bottom: 20px;
}

.general-left-heading-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

#tagline {
  padding: 10px 20px;
  background-color: red;
  text-transform: uppercase;
  max-width: 200px;
  text-align: center;
  color: white;
  border-radius: 10px;
  margin-bottom: 20px;
  font-weight: 500;
}

.cta-button,
.second-cta-button,
.second-cta-button-promo {
  padding: 15px 30px;
  background-color: transparent;
  border: 2px solid red;
  color: red;
  border-radius: 30px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cta-button:hover,
.second-cta-button:hover {
  transform: translateY(-5px) scale(1.01);
}

.general-title {
  font-size: 28px;
}

.general-subtitle {
  font-size: 20px;
}

.no-margin {
  margin: 0;
}

@media screen and (max-width: 600px) {
  .no-mob {
    display: none;
  }
}

@media (min-width: 803px) and (max-width: 1027px) {
  .general-title {
    font-size: 25px;
  }

  .general-subtitle {
    font-size: 20px;
  }
}

@media (min-width: 600px) and (max-width: 803px) {
  .general-title {
    font-size: 24px;
  }

  .general-subtitle {
    font-size: 18px;
  }
}

@media screen and (max-width: 600px) {
  .general-title {
    font-size: 22px;
  }

  .general-subtitle {
    font-size: 16px;
  }
}

@media (min-width: 608px) and (max-width: 708px) {
  #tagline {
    margin: 0 auto 20px auto;
  }
}

@media (min-width: 465px) and (max-width: 608px) {
  #tagline {
    margin: 0 auto 20px auto;
  }
}

@media screen and (max-width: 465px) {
  #tagline {
    margin: 0 auto 20px auto;
  }
}

@media (min-width: 480px) {
  .center-description,
  .left-description,
  p {
    font-size: 16px;
  }

  li {
    font-size: 15px;
  }

  .center-title,
  .left-title,
  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 25px;
  }

  h5 {
    font-size: 18px;
  }

  .no-margin {
    margin: 0;
  }
}

@media (min-width: 320px) and (max-width: 480px) {
  .center-description,
  .left-description,
  p {
    font-size: 15px;
  }

  li {
    font-size: 14px;
  }

  .center-title,
  .left-title,
  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 17px;
  }

  .no-margin {
    margin: 0;
  }

  .text-highlight-blue,
  .text-highlight-white {
    padding: 0px 3px;
  }
}

@media (min-width: 578px) and (max-width: 920px) {
  .general-heading-wrapper {
    max-width: 80%;
  }

  .center-description,
  .left-description {
    margin-bottom: 20px;
  }

  .center-title,
  .left-title {
    margin-bottom: 15px;
  }

  .no-margin {
    margin: 0;
  }
}

@media screen and (max-width: 578px) {
  .general-heading-wrapper {
    max-width: 90%;
  }

  .center-description,
  .left-description {
    margin-bottom: 25px;
  }

  .center-title,
  .left-title {
    margin-bottom: 15px;
  }

  .no-margin {
    margin: 0;
  }
}

@media (min-width: 1154px) and (max-width: 1390px) {
  .cta-button,
  .second-cta-button {
    padding: 10px 40px;
    font-size: 14px;
  }
}

@media (min-width: 924px) and (max-width: 1154px) {
  .cta-button,
  .second-cta-button {
    padding: 10px 40px;
    font-size: 14px;
  }
}

@media (min-width: 708px) and (max-width: 924px) {
  .cta-button,
  .second-cta-button {
    padding: 10px 40px;
    font-size: 14px;
  }
}

@media (min-width: 465px) and (max-width: 608px) {
  .cta-button,
  .second-cta-button {
    padding: 10px 40px;
    font-size: 14px;
  }
}

@media screen and (max-width: 465px) {
  .cta-button,
  .second-cta-button {
    padding: 10px 40px;
    font-size: 14px;
  }
}

/* End General */

/* Start Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: padding 0.3s ease-in-out;
}

.header .container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  transition: padding 0.3s ease-in-out;
  box-shadow: 0 8px 8px rgba(156, 156, 156, 0.2);
}

.header li {
  font-size: 15px;
}

.header.shrink .container {
  padding: 15px 20px;
}

.logo img {
  width: 69px;
  height: 50px;
}

.nav-menu {
  display: flex;
  list-style: none;
  text-align: center;
  align-items: center;
}

.nav-menu li {
  margin: 0 15px;
}

.nav-menu a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: red;
}

.nav-menu a.active {
  color: red;
  transform: scale(1.1);
}

.header .cta-button {
  padding: 10px 30px;
  font-size: 14px;
  color: white;
  background-color: red;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.header .cta-button:hover {
  transform: scale(1.1);
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  padding: 10px 20px;
}

.mobile-menu a {
  text-decoration: none;
  font-size: 16px;
}

.mobile-menu-btn {
  padding: 5px 20px 20px 20px;
}

.mobile-menu-btn .cta-button {
  padding: 8px 20px;
  font-size: 14px;
}

@media (max-width: 1112px) {
  .nav-menu {
    display: none;
  }

  .header .cta-button {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-menu.active {
    display: flex;
  }

  .header {
    box-shadow: none;
  }
}

/* End Header */

/* Start Hero Section */
.hero-section {
  background: url("https://on-c2-cmshub-public.s3.ap-southeast-3.amazonaws.com/hero_section_bg_2d44782d87.png");
  background-attachment: fixed;
  background-position: 75% 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.hero-content {
  margin: 23% 20%;
}

#hero-title {
  font-size: 60px;
  font-weight: 500;
  margin-bottom: 20px;
  font-weight: 700;
  color: rgb(63, 63, 63);
}

#hero-desc {
  font-size: 20px;
  margin-bottom: 7%;
}

.hero-btn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.hero-grid .cta-button {
  background-color: red;
  border: 3px solid red;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-grid .second-cta-button {
  background-color: transparent;
  border: 3px solid red;
  color: red;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-content {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-content.active {
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 1622px) {
  #hero-title {
    font-size: 70px;
  }

  .hero-content {
    margin: 20% 15%;
  }
}

@media (min-width: 1390px) and (max-width: 1622px) {
  #hero-title {
    font-size: 60px;
  }

  .hero-content {
    margin: 20% 15%;
  }
}

@media (min-width: 1154px) and (max-width: 1390px) {
  .hero-content {
    margin: 20% 15%;
  }

  #hero-title {
    font-size: 50px;
  }

  #hero-desc {
    font-size: 18px;
  }

  .hero-grid .cta-button {
    padding: 15px 30px;
  }

  .hero-grid .second-cta-button {
    padding: 15px 30px;
  }
}

@media (min-width: 924px) and (max-width: 1154px) {
  .hero-content {
    margin: 20% 15%;
  }

  #hero-title {
    font-size: 40px;
  }

  #hero-desc {
    font-size: 16px;
  }

  .hero-grid .cta-button {
    padding: 15px 20px;
  }

  .hero-grid .second-cta-button {
    padding: 15px 20px;
  }

  .hero-section {
    background-attachment: scroll;
    background-position: 65% 0;
  }

  .grid-item {
    height: 60vh;
  }
}

@media (min-width: 708px) and (max-width: 924px) {
  .hero-content {
    margin: 25% 10%;
  }

  #hero-title {
    font-size: 35px;
  }

  #hero-desc {
    font-size: 16px;
  }

  .hero-grid .cta-button {
    padding: 10px 20px;
    font-size: 12px;
  }

  .hero-grid .second-cta-button {
    padding: 10px 20px;
    font-size: 12px;
  }

  .hero-section {
    background-attachment: scroll;
    background-position: 65% 0;
  }

  .grid-item {
    height: 60vh;
  }
}

@media (min-width: 608px) and (max-width: 708px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-section {
    background: none;
  }

  .hero-grid .grid-item:nth-child(2) {
    background: url("https://on-c2-cmshub-public.s3.ap-southeast-3.amazonaws.com/hero_bg_mobile_94d0012e06.png")
      no-repeat;
    background-size: cover;
    background-position: center;
  }

  .grid-item {
    height: 60vh;
  }

  .grid-item:nth-child(2) {
    min-height: 300px;
  }

  .hero-content {
    margin: 15% 10%;
  }

  #hero-title {
    font-size: 45px;
  }

  #hero-desc {
    font-size: 18px;
  }

  .hero-grid .cta-button {
    padding: 10px 20px;
    font-size: 12px;
  }

  .hero-grid .second-cta-button {
    padding: 10px 20px;
    font-size: 12px;
  }
}

@media (min-width: 465px) and (max-width: 608px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-section {
    background: none;
  }

  .hero-grid .grid-item:nth-child(2) {
    background: url("https://on-c2-cmshub-public.s3.ap-southeast-3.amazonaws.com/hero_bg_mobile_94d0012e06.png")
      no-repeat;
    background-size: cover;
    background-position: center;
  }

  .grid-item {
    height: 60vh;
  }

  .grid-item:nth-child(2) {
    min-height: 300px;
  }

  .hero-content {
    margin: 15% 10%;
  }

  #hero-title {
    font-size: 45px;
  }

  #hero-desc {
    font-size: 18px;
  }

  .hero-grid .cta-button {
    padding: 10px 20px;
    font-size: 12px;
  }

  .hero-grid .second-cta-button {
    padding: 10px 20px;
    font-size: 12px;
  }
}

@media screen and (max-width: 465px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-section {
    background: none;
  }

  .hero-grid .grid-item:nth-child(2) {
    background: url("https://on-c2-cmshub-public.s3.ap-southeast-3.amazonaws.com/hero_bg_mobile_94d0012e06.png")
      no-repeat;
    background-size: cover;
    background-position: center;
  }

  .grid-item {
    height: 50vh;
  }

  .grid-item:nth-child(2) {
    min-height: 250px;
  }

  .hero-content {
    margin: 15% 10%;
  }

  #hero-title {
    font-size: 35px;
  }

  #hero-desc {
    font-size: 14px;
  }

  .hero-btn-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 80%;
    margin: 0 auto;
  }

  .hero-grid .cta-button {
    padding: 10px 20px;
    font-size: 12px;
  }

  .hero-grid .second-cta-button {
    padding: 10px 20px;
    font-size: 12px;
  }
}

/* End Hero Section */

/* Start Video Section */
.video-section {
  background-image: url("https://on-c2-cmshub-public.s3.ap-southeast-3.amazonaws.com/video_bg_fa66d654c8.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.video-content {
  padding: 100px 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.video-section iframe {
  width: 100%;
  height: 70vh;
  border-radius: 15px;
  margin-bottom: 40px;
}

.video-general-title-last {
  margin-bottom: 40px;
}

@media (min-width: 803px) and (max-width: 1027px) {
  .video-general-title-last {
    margin-bottom: 30px;
  }
}

@media (min-width: 600px) and (max-width: 803px) {
  .video-general-title-last {
    margin-bottom: 25px;
  }

  .video-content {
    padding: 50px 30px;
  }
}

@media screen and (max-width: 600px) {
  .video-general-title-last {
    margin-bottom: 25px;
  }

  .video-content {
    padding: 30px 20px;
  }

  .video-section iframe {
    width: 100%;
    margin-bottom: 30px;
    height: 50vh;
  }
}

/* End Video Section */

/* Start Yang Aman */
.yang-aman-section {
  padding: 100px 30px;
  background: linear-gradient(to right, #3a61a6 75%, transparent 50%);
}

.yang-aman-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.yang-aman-grid .yang-aman-image {
  opacity: 0;
  transform: translateY(-30px);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.yang-aman-grid .yang-aman-image.active {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInDown 0.6s ease-out forwards;
}

.yang-aman-image {
  display: flex;
  justify-content: end;
}

.yang-aman-image img {
  width: 80%;
  height: auto;
  border-radius: 10px;
}

#yang-aman-title {
  color: white;
  margin-bottom: 20px;
}

#yang-aman-subtitle {
  color: white;
  margin-bottom: 50px;
}

.yang-aman-description {
  display: grid;
  grid-template-rows: auto 1fr;
}

#yang-aman-list {
  margin-top: 5px;
  margin-left: 20px;
}

#yang-aman-list li {
  font-size: 15px;
}

.yang-aman-details {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.detail-item {
  display: flex;
  min-height: 125px;
  align-items: center;
  padding: 15px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: white;
  border-radius: 10px;
}

.text-content {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  align-items: center;
  gap: 20px;
  color: #4e4e4e;
  font-weight: 500;
}

.text-content img {
  width: 90px;
  border-radius: 10px;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.yang-aman-details .detail-item {
  opacity: 0;
  transform: translateX(30px);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.yang-aman-details .detail-item.active {
  opacity: 1;
  transform: translateX(0);
  animation: fadeInRight 0.6s ease-out forwards;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .yang-aman-grid {
    gap: 20px;
  }

  .yang-aman-image img {
    width: 100%;
  }

  .text-content h3 {
    margin-bottom: 5px;
  }
}

@media (min-width: 480px) and (max-width: 768px) {
  .yang-aman-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .yang-aman-section {
    background: none;
    background-color: #3a61a6;
  }

  .yang-aman-image img {
    width: 100%;
  }

  #yang-aman-title {
    text-align: center;
  }

  #yang-aman-subtitle {
    text-align: center;
  }

  .text-content h3 {
    margin-bottom: 5px;
  }
}

@media (max-width: 480px) {
  .text-content img {
    width: 70px;
    border-radius: 10px;
  }

  .yang-aman-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .yang-aman-section {
    background: none;
    background-color: #3a61a6;
  }

  .yang-aman-image img {
    width: 100%;
  }

  #yang-aman-title {
    text-align: center;
  }

  #yang-aman-subtitle {
    text-align: center;
  }

  .text-content h3 {
    margin-bottom: 5px;
  }
}

/* End Yang Aman */

/* Start Program */
.program-section {
  padding: 50px 30px;
  background-color: #f2f2f2;
}

.program-grid {
  display: grid;
  max-width: 1000px;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  grid-template-areas: "left right";
  margin-top: 30px;
  gap: 30px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.program-description,
.program-image {
  max-width: 700px;
  margin: auto;
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.program-description.active {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInDown 0.6s ease-out forwards;
}

.program-image.active {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease-out forwards;
}

#program-title {
  font-size: 20px;
  color: rgb(94, 94, 94);
  margin-bottom: 20px;
  font-weight: 600;
}

#program-title-2 {
  font-size: 18px;
  color: rgb(94, 94, 94);
  margin-bottom: 20px;
  font-weight: 600;
}

.program-section .second-cta-button {
  background-color: white;
  border-color: white;
}

.program-section .center-title {
  margin-bottom: 0;
}

.program-section .general-heading-wrapper {
  margin-bottom: 50px;
  max-width: 1000px;
  padding: 20px 30px 0 30px;
  border-radius: 15px;
  margin-bottom: 0;
}

.program-description {
  background-color: white;
  grid-area: left;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.program-below {
  padding: 0 20px 20px 20px;
}

.program-image {
  background-color: white;
  grid-area: right;
  border-radius: 15px;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.program-img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.text-center {
  text-align: center;
}

.program-highlight {
  padding: 10px 15px;
  background-color: red;
  color: white;
  border-radius: 10px;
  width: 100%;
  margin: auto;
  margin-bottom: 15px;
}

.program-highlight h5 {
  font-size: 20px;
}

.second-cta-button-program {
  padding: 5px 15px;
  border: 2px solid red;
  color: red;
  border-radius: 10px;
  cursor: pointer;
}

.program-image a,
.program-description a {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.program-image a:hover,
.program-description a {
  transform: scale(1.1);
}

@media (min-width: 468px) and (max-width: 991px) {
  .program-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "right";
  }

  .program-description {
    margin: 0 auto;
    text-align: center;
  }

  .program-image {
    justify-content: center;
  }
}

@media screen and (max-width: 468px) {
  .program-section {
    padding: 50px 30px 40px 30px;
    background-color: #f2f2f2;
  }

  .program-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "right"
      "left";
  }

  .program-description {
    margin: 0 auto;
    text-align: center;
  }

  .program-image {
    justify-content: center;
  }
}

/* End Program */

/* Start Promo */
.promo-section {
  padding: 100px 20px;
}

.promo-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 10px;
  gap: 20px;
}

.promo-content ul {
  margin: 20px 0 0 20px;
}

.promo-content ul li {
  margin-bottom: 15px;
}

.promo-content ul li:last-child {
  margin-bottom: 0;
}

.promo-content h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.promo-content p {
  margin-top: 10px;
}

.promo-content img {
  margin-bottom: 30px;
  width: 80%;
}

.promo-content-1,
.promo-content-2,
.promo-content-3,
.promo-content-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  background-color: rgb(255, 200, 98);
  color: white;
  border-radius: 15px;
}

.promo-content .big-promo-text {
  font-size: 35px;
}

.promo-content .second-cta-button-promo {
  background-color: #1faf56;
  border-color: #1faf56;
  color: white;
}

.promo-content img {
  border-radius: 10px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.promo-content > div {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.3s ease-in-out, opacity 0.5s ease-in-out;
}

.promo-content > div.active {
  opacity: 1;
  transform: translateY(0);
}

.promo-content > div.active.fade-in-down {
  animation: fadeInDown 0.6s ease-out forwards;
}

.promo-content > div.active.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

@media (min-width: 857px) and (max-width: 1160px) {
  .promo-content {
    grid-template-columns: 1fr 1fr;
  }

  .promo-content-1,
  .promo-content-2,
  .promo-content-3,
  .promo-content-4 {
    padding: 40px;
  }
}

@media (min-width: 500px) and (max-width: 857px) {
  .promo-content {
    grid-template-columns: 1fr;
  }

  .promo-content-1,
  .promo-content-2,
  .promo-content-3,
  .promo-content-4 {
    padding: 30px;
  }
}

@media screen and (max-width: 500px) {
  .promo-section {
    padding: 50px 0;
  }

  .promo-content {
    grid-template-columns: 1fr;
    margin: 0 20px;
  }

  .promo-content-1,
  .promo-content-2,
  .promo-content-3,
  .promo-content-4 {
    padding: 30px;
  }
}

/* End Promo */

/* Start Site Footer Section */
.site-footer-section {
  padding: 20px;
  background-color: #d32f2f;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.site-footer-content p {
  font-size: 14px;
  color: white;
}

@media screen and (max-width: 750px) {
  .video-section {
    padding: 70px 20px;
    width: 100%;
    height: auto;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer-content {
    text-align: center;
  }
}

/* End Site Footer Section */

/* Start Floating CTA */
#floating-cta {
  background-color: white;
  position: sticky;
  bottom: 0;
  padding: 15px;
  background-color: #ffffff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  text-align: center;
  z-index: 999;
}

#floating-cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#floating-cta-text {
  margin: 0 !important;
}

#container-floating-img-text {
  display: flex;
  align-items: center;
  font-weight: 500;
}

#floating-cta-img {
  max-width: 400px;
  margin-right: 20px;
}

#floating-cta-text {
  margin-right: 20px;
}

#floating-cta-btn {
  background-color: #c50000;
  color: #ffffff;
  border-radius: 15px;
  height: 40px;
  font-size: 14px;
  padding: 5px;
  width: 150px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  box-shadow: 0 4px 8px 0 rgba(53, 53, 53, 0.2),
    0 6px 20px 0 rgba(44, 44, 44, 0.19);
}

#floating-cta-btn:hover {
  transform: translateY(-10%);
}

@media screen and (max-width: 1150px) {
  .responsive-floating-cta {
    display: none;
  }
}

@media screen and (max-width: 735px) {
  #floating-cta-text {
    text-align: start;
  }
}

/* End Floating CTA */

/* Start Back to Top */
#back-to-top {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background-color: #d32f2f;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 1000;
}

#back-to-top:hover {
  background-color: #b71c1c;
  transform: scale(1.1);
}

#back-to-top i {
  font-size: 20px;
}

@media screen and (max-width: 750px) {
  #back-to-top {
    width: 40px;
    height: 40px;
  }
}

/* End Back to Top */

/* Start Yang Paham */
.yang-paham-section {
  text-align: center;
  padding: 100px 0;
  background-color: #3a61a6;
  background-image: url("https://on-c2-cmshub-public.s3.ap-southeast-3.amazonaws.com/yang_paham_bg_335b23853b.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.yang-paham-section .center-title {
  color: white;
}

.yang-paham-section .center-description {
  color: white;
}

.yang-paham-video {
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin: 0 auto 40px auto;
  padding: 0 30px;
}

.yang-paham-video .yang-paham-video-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  opacity: 0;
  padding-top: 5%;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.yang-paham-video iframe {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.yang-paham-video .yang-paham-video-content:first-child {
  transform: translateY(0);
}

.yang-paham-video .yang-paham-video-content:first-child.active {
  opacity: 1;
  transform: translateY(0);
}

.yang-paham-video .yang-paham-video-content:nth-child(2) {
  transform: translateY(0);
}

.yang-paham-video .yang-paham-video-content:nth-child(2).active {
  opacity: 1;
  transform: translateY(0);
}

.yang-paham-video .yang-paham-video-content:last-child {
  transform: translateY(0);
}

.yang-paham-video .yang-paham-video-content:last-child.active {
  opacity: 1;
  transform: translateY(0);
}

.yang-paham-video .yang-paham-video-content iframe {
  width: 100%;
  height: 250px;
  position: relative;
  transition: transform 0.3s ease;
}

.yang-paham-video .yang-paham-video-content iframe:hover {
  transform: scale(1.05);
}

.yang-paham-video .yang-paham-video-content:nth-child(2) {
  align-self: end;
}

.yang-paham-video .yang-paham-video-content:nth-child(2) iframe {
  height: 250px;
}

.other-video-button {
  padding: 15px 100px;
  background-color: rgb(255, 255, 255);
  text-transform: uppercase;
  border-radius: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 15px;
  cursor: pointer;
  border: none;
  color: #6095f0;
  transition: transform 0.3s ease;
  box-shadow: 5px 5px 5px #989898;
}

.other-video-button:hover {
  transform: translateY(-5px) scale(1.1);
}

@media screen and (max-width: 900px) {
  .yang-paham-section {
    text-align: center;
    padding: 70px 0;
  }

  .yang-paham-section {
    background-image: none;
  }

  .yang-paham-video {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 0 auto 50px auto;
  }

  .yang-paham-video .yang-paham-video-content {
    width: 100%;
    margin: 0;
  }

  .yang-paham-video .yang-paham-video-content iframe {
    height: 250px;
  }

  .yang-paham-video .yang-paham-video-content:nth-child(2) {
    margin-top: 0;
    align-self: center;
  }

  .other-video-button {
    padding: 15px 50px;
    background-color: yellow;
    text-transform: uppercase;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 18px;
    cursor: pointer;
    border: none;
    color: #3a61a6;
    transition: transform 0.3s ease;
  }
}

/* End Yang Paham */

/* Start Card Carousel */
.yang-pintar-card-section {
  padding: 100px 20px;
}

.yang-pintar-card-section .general-heading-wrapper {
  max-width: 75%;
}

.swiper {
  width: 100%;
  height: 270px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-button-div {
  width: 100%;
  text-align: center;
}

.card-button-div .cta-button {
  margin-top: 20px;
  padding: 15px 50px;
  background-color: red;
  text-transform: uppercase;
  border-radius: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 15px;
  cursor: pointer;
  border: none;
  color: white;
  transition: transform 0.3s ease;
  box-shadow: 5px 5px 5px #989898;
}

.card-button:hover {
  transform: scale(1.1);
}

/* End Card Carousel */

/* Start Yang Pintar */
.yang-pintar-section {
  padding: 100px 30px 0 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.yang-pintar-section a {
  text-decoration: underline;
}

.yang-pintar-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tab-slider--nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.tab-label {
  width: 80%;
}

.tab-slider--tabs {
  width: 60%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  list-style: none;
  padding: 0;
  position: relative;
  border-radius: 35px;
  background: #fff;
  height: 50px;
  user-select: none;
  overflow: hidden;
  background: rgb(243, 243, 243);
}

.tab-slider--tabs::after {
  content: "";
  width: 50%;
  background: red;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 250ms ease-in-out;
  border-radius: 35px;
}

.tab-slider--tabs.slide::after {
  left: 50%;
}

.tab-slider--trigger {
  flex: 1;
  line-height: 40px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 250ms ease-in-out;
}

.tab-slider--trigger.active {
  color: #fff;
}

.tab-slider--container {
  margin-top: 20px;
}

.tab-slider--body {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tab-content {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  align-items: center;
  background-color: rgb(243, 243, 243);
  padding: 0 20px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin: 0 auto;
}

.tab-content .ocbc-mobile-anak,
.tab-content .kartu-debit-anak {
  border-radius: 15px;
}

.tab-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
}

.tab-image img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  border-radius: 15px;
  margin: 0 auto;
}

.tab-slider--container ul {
  margin: 20px 0 0 20px;
}

.tab-slider--container ul li {
  margin-bottom: 15px;
}

.tab-slider--container ul li:last-child {
  margin-bottom: 0;
}

.tab-slider--container p {
  margin-bottom: 15px;
}

.tab-slider--container a {
  color: red;
}

.tab-slider--container a:hover {
  color: rgb(255, 76, 76);
}

@media screen and (max-width: 1204px) {
  .tab-slider--nav {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .tab-label {
    width: 100%;
    text-align: center;
  }

  .tab-slider--tabs {
    width: 100%;
    justify-content: center;
  }
}

@media screen and (max-width: 870px) {
  .yang-pintar-section {
    padding: 70px 30px;
  }

  .ocbc-mobile-anak,
  .kartu-debit-anak {
    padding: 10px 35px;
  }

  .yang-pintar-content h3 {
    text-align: center;
  }
}

@media (min-width: 377px) and (max-width: 576px) {
  .tab-slider--tabs li {
    font-size: 13px;
  }

  .yang-pintar-card-section {
    padding: 50px 20px;
  }
}

@media screen and (max-width: 377px) {
  .tab-slider--tabs li {
    font-size: 11px;
  }

  .yang-pintar-card-section {
    padding: 50px 20px;
  }
}

@media screen and (max-width: 700px) {
  .tab-content {
    grid-template-columns: 1fr;
    padding: 10px;
  }
}

/* End Yang Pintar */

/* Start Parallax Section */
.parallax-section {
  padding: 100px 0 0 0;
  background-color: #ebeff1;
}

.parallax-heading {
  text-align: center;
  padding: 0 30px 80px 30px;
  margin: 0 auto;
  max-width: 1000px;
}

.parallax-heading .general-subtitle {
  margin-bottom: 10px;
}

.parallax-heading p {
  font-weight: 500;
}

.content h2 {
  margin-bottom: 20px;
  color: white;
}

.content p {
  margin-bottom: 20px;
}

.content-mobile {
  display: none;
}

.parallax-1 {
  background-image: url("https://on-c2-cmshub-public.s3.ap-southeast-3.amazonaws.com/yang_paham_796697afa6.png");
  background-size: 30%;
  background-position: 75% 100%;
}

.parallax-2 {
  background-image: url("https://on-c2-cmshub-public.s3.ap-southeast-3.amazonaws.com/yang_pintar_45b874fd08.png");
  background-size: 30%;
  background-position: 25% 80%;
}

.parallax-3 {
  background-image: url("https://on-c2-cmshub-public.s3.ap-southeast-3.amazonaws.com/yang_aman_cf52516306.png");
  background-size: 30%;
  background-position: 75% 100%;
}

.parallax-1,
.parallax-2,
.parallax-3 {
  height: 90vh;
  background-attachment: fixed;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 80%;
}

.content {
  width: 60%;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  padding: 50px 40px;
  border-radius: 15px;
  color: white;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.content-1 {
  background-color: #d32f2f;
}

.content-2 {
  background-color: #3a61a6;
}

.content-3 {
  background-color: rgb(240, 70, 192);
}

.content.active {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 900px) and (max-width: 1300px) {
  .content {
    width: 90%;
  }

  .parallax-1 {
    background-size: 30%;
    background-position: 85% 80%;
  }

  .parallax-2 {
    background-size: 30%;
    background-position: 25% 80%;
  }

  .parallax-3 {
    background-size: 30%;
    background-position: 85% 80%;
  }
}

@media screen and (max-width: 900px) {
  .content {
    width: 100%;
  }

  .content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    width: 80%;
  }

  .parallax-section {
    padding: 100px 0;
    background-color: #ebeff1;
  }

  .parallax-1,
  .parallax-2,
  .parallax-3 {
    height: 100%;
    margin-bottom: 30px;
  }

  .content-empty {
    display: none;
  }

  .content-mobile {
    display: block;
    text-align: center;
  }

  .content-mobile img {
    width: 60%;
    height: auto;
    margin-bottom: 20px;
  }

  .parallax-1 {
    background-image: none;
  }

  .parallax-2 {
    background-image: none;
  }

  .parallax-3 {
    background-image: none;
  }
}

/* End Parallax Section */

/* Start OCBC Step */
.ocbc-step-section {
  padding: 100px 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.ocbc-step-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.zoom {
  transition: transform 0.2s;
  width: 100%;
  margin: 0 auto;
}

.zoom:hover {
  transform: scale(1.1);
}

.carousel {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: none;
}

.carousel img {
  width: 324px;
  height: 621px;
  object-fit: cover;
  border-radius: 10px;
  padding: 20px;
}

.monoline-steps {
  display: flex;
  flex-direction: column;
  padding: 20px;
  flex: 1;
}

.monoline-steps h1 {
  font-size: 20px;
}

.step {
  display: flex;
  align-items: center;
  margin: 20px 0;
  position: relative;
}

.step-circle {
  width: 20px;
  height: 20px;
  border: 2px solid #ff0000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  z-index: 1;
}

.step-circle span {
  font-size: 0.8rem;
  color: #ff0000;
}

.step-content {
  margin-left: 20px;
  flex: 1;
}

.step-content h3 {
  margin: 0 0 5px;
  font-size: 1.2rem;
  text-align: start;
}

.step-content p {
  margin: 0;
  line-height: 1.5;
  text-align: start;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.carousel-button {
  background-color: #d32f2f;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
}

.step.active {
  background-color: #d32f2f;
  color: white;
  border-radius: 5px;
  padding: 10px;
}

.carousel2 {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-width: 320px;
  margin: auto;
}

.carousel-track2 {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item2 {
  flex: 0 0 100%;
  position: relative;
}

.carousel-item2 img {
  width: 100%;
  height: auto;
}

.overlay2 {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  color: white;
  background-color: rgba(196, 0, 0, 0.8);
  border-radius: 0 0 10% 10%;
  padding: 10px;
  text-align: center;
}

.title2 {
  font-size: 18px;
  font-weight: bold;
}

.subtitle2 {
  font-size: 14px;
}

.carousel-buttons2 {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.carousel-button2 {
  background-color: #ff0000;
  border: none;
  color: white;
  font-size: 18px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-button2:hover {
  background-color: #cc0000;
}

.carousel-button2:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .NoDsp {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  .NoDsp {
    display: none;
  }
}

@media only screen and (max-width: 900px) {
  .NoDsp {
    display: none;
  }

  .txt-title {
    font-size: 1em;
    line-height: 120%;
    font-weight: bold;
  }
}

@media only screen and (min-width: 900px) {
  .NoMob {
    display: none;
  }

  .txt-title {
    font-size: 1.4em;
    line-height: 2em;
    text-align: center;
    font-weight: bold;
  }
}

/* End OCBC Step */

/* Start How to Video */
.how-to-video-section {
  padding: 0 30px 50px 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.how-to-video-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.how-to-video-wrapper {
  display: flex;
  justify-content: center;
}

.how-to-video-section iframe {
  width: 90%;
  height: 400px;
  border-radius: 15px;
  margin-bottom: 40px;
}

.how-to-video-two-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.how-to-video-two-grid iframe {
  width: 100%;
  height: 250px;
  border-radius: 15px;
  margin-bottom: 40px;
}

.how-to-video-two-grid h3 {
  color: #3f3f3f;
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 841px) {
  .how-to-video-two-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .how-to-video-section iframe {
    width: 100%;
    height: 300px;
  }

  .how-to-video-two-grid h3 {
    font-size: 18px;
  }
}
/* End How to Video */

/* Start FAQ */
.accordion-section {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.accordion-container h2 {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
}

.accordion-container {
  max-width: 1200px;
}

.accordion {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  width: 100%;
  padding: 15px;
  font-weight: normal;
  background-color: rgba(255, 255, 255, 0.4);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  border-top: none;
  border-left: none;
  border-right: none;
}

.accordion-header h5 {
  color: black;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 30px;
  transition: max-height 0.2s ease-out, padding 0.2s ease-out;
}

.accordion-content p {
  margin: 5px 0;
  font-size: 0.9rem;
  color: #333;
}

.accordion-content ul,
ol {
  padding-inline-start: 20px;
}

.accordion-content ul li {
  font-size: 16px;
}

.accordion-content a {
  color: red;
}

.accordion-content a:hover {
  color: rgb(255, 76, 76);
}

.accordion-icon {
  font-size: 1.5rem;
  color: #333;
}

.accordion-item.active .accordion-content {
  max-height: 100%;
  padding: 15px 30px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  transition: transform 0.2s;
}

.accordion-item.active {
  border-bottom: 1px solid #ddd;
}

.accordion-image {
  max-width: 20%;
}

@media (max-width: 768px) {
  .accordion-header {
    font-size: 0.9rem;
    padding: 10px;
  }

  .accordion-content p {
    font-size: 0.8rem;
  }

  .accordion-icon {
    font-size: 1.2rem;
  }
}

/* End FAQ */
