:root {
  --color-white-prymary: #ffffff;
  --color-black-prymary: #111111;
  --color-black-secondary: #202020;
  --color-black-tertiary: #303030;
  --color-black-quaternary: #323232;
  --background-gold: linear-gradient(90deg, #f7df89 0%, #a17338 33.33%, #f7df89 67.71%, #cfa250 85.94%, #a17338 100%);
  --background-black: linear-gradient(90deg, #202020 0%, #141414 0.01%, #414141 42.19%, #101010 72.4%, #303030 100%);
  --background-red: #ff133f;
  --background-black-transparent: rgba(0, 0, 0, 0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

body {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  color: var(--color-white-prymary);
  background-color: var(--color-black-prymary);
}

/* scroll */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

::-webkit-scrollbar-track {
  background: white; 
}
 
::-webkit-scrollbar-thumb {
  background: #202020; 
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #202020; 
  border-radius: 10px;
}

.section_six .background .content .row .right .desktop {
  display: block;
}

.section_six .background .content .row .right .mobile {
  display: none;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-black-prymary);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-screen .image {
  animation: loading 1s infinite;
  transition: all 0.3s ease-in-out;
}

@keyframes loading {
  0% {
    transform: scale(1);
    transition: all 0.3s ease-in-out;
  }
  100% {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
  }
}

@media screen and (max-width: 767px) {
  .mobile {
    display: block;
  }

  .desktop {
    display: none;
  }

  /* Hero Section Start */
  .hero {
    background-image: url(/assets/images/png/hero_section/bg_hero_section-mobile.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    z-index: 1;
    width: 100%;
  }

  .hero .content {
    margin: auto;
    width: 80%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 2rem;
    padding-bottom: 4rem;
  }

  .hero .content .image {
    width: 35%;
    margin: 0px auto;
  }

  .tagline h4 {
    margin-top: 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: "Exo", sans-serif;
    line-height: 2.763rem;
  }

  .tagline h4 span {
    font-style: italic;
  }

  .tagline .primary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 1.2rem;
    padding-bottom: 2.4rem;
  }

  .tagline .primary h1 {
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 700;
    font-family: "Exo", sans-serif;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--background-gold);
  }

  .tagline .primary h1 span {
    font-style: italic;
  }

  .tagline a {
    display: inline-block;
    padding: 1rem 1.5rem;
    background-color: var(--background-red);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    font-family: "Exo", sans-serif;
    color: var(--color-white-prymary);
    font-style: italic;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
  }

  .tagline a:hover {
    color: var(--color-black-secondary);
    background-image: var(--background-gold);
    scale: 1.01;
    transition: all 0.3s ease-in-out;
  }
  
  .power_by {
    position: absolute;
    bottom: 3rem;
  }

  .power_by h1 {
    font-size: 0.8rem;
    font-weight: 500;
    font-family: "Exo", sans-serif;
    font-style: italic;
    margin-bottom: 1rem;
    margin-top: 10rem;
  }

  .power_by .power_by_icon {
    margin-top: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
  }

  .power_by .power_by_icon img {
    width: 40%;
    padding: 0rem 0.2rem;
  }
  /* Hero Section End */

  /* Section Two Start */
  .section_two {
    background-image: url(/assets/images/png/section_two/bg_slice.png);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-color: var(--color-black-prymary);
    position: relative;
    z-index: 0;
    width: 100%;
    height: 120vh;
  }

  .section_two .row {
    margin: auto;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    column-gap: 1rem;
  }

  .section_two .row .description {
    flex: 1 1 0rem;
    margin-bottom: 2rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .section_two .row .video {
    flex: 1 1 45rem;
    width: 100%;
    height: 100%;
  }

  .section_two .row .video .bg_youtube {
    margin-top: 1rem;
    margin-left: 1rem;
    width: 80%;
    height: 111rem;
    /* background-image: var(--background-gold); */
    position: absolute;
    border-radius: 1rem;
    z-index: -1;
  }

  .section_two .row .video .youtube {
    height: 25%;
    position: relative;
    width: 100%; 
    border-radius: 1rem;
    box-shadow: 0.7rem 0.7rem #cfa250, 0rem 0rem #ccc;
    background-image: var(--background-gold);
  }
  

  .section_two .row .description h1 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 4.5rem;
    color: var(--color-white-prymary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_two .row .description .ringkasan {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    row-gap: 1.5rem;
    font-size: 1rem;
  }

  .section_two .row .description .ringkasan a {
    padding: 1rem 1.5rem;
    background-color: var(--background-red);
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: "Exo", sans-serif;
    color: var(--color-white-prymary);
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;  
    transition: all 0.3s ease-in-out;
  }

  .section_two .row .description .ringkasan a:hover {
    color: var(--color-black-secondary);
    background-image: var(--background-gold);
    scale: 1.01;
    transition: all 0.3s ease-in-out;
  }

  .section_two .row .description .ringkasan p span {
    font-weight: 700;
  }

  .section_two .row .description .underline_image {
    margin-top: -1.2rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    padding-right: 15%;
    margin-bottom: 2rem;
  }

  .section_two .row .description .underline_image img {
    width: 50%;
  }
  /* Section Two End */

  /* Section Three Start */
  .section_three {
    background-color: var(--color-white-prymary);
    position: relative;
    z-index: 0;
    width: 100%;
  }

  .section_three .content {
    margin: auto;
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5rem;
  }

  .section_three .content .title h1 {
    margin-top: 2rem;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 700;
    line-height: 2.5rem;
    color: var(--color-black-secondary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_three .content .title .underline_image {
    margin-top: -0.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-right: 0%;
    margin-bottom: 2rem;
  }

  .section_three .content .title .underline_image img {
    width: 40%;
  }

  .section_three .content .card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .section_three .content .footer {
    background-color: var(--color-black-secondary);
    width: 100%;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    padding-block: 3rem;
    margin-bottom: 1rem;
  }

  .section_three .content .footer h1 {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--background-gold);
  }

  .section_three .content .footer .description {
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--background-gold);
    text-align: center;
  }

  .section_three .content .footer .mobile {
    display: block;
  }
  
  .section_three .content .footer .desktop {
    display: none;
  }

  .section_three .content .footer .description p {
    text-align: center;
    width: 80%;
  }

  .section_three .content .card img {
    filter: grayscale(300%);
  }

  .section_three .content .card img:hover {
    filter: none;
  }

  /* Section Three End */

  /* Section Four Start */
  .section_four {
    background-color: var(--color-white-prymary);
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
  }

  .section_four .background {
    width: 100%;
    height: 100%;
    background-color: var(--color-black-secondary);
    z-index: -1;
    border-top-left-radius: 1.2rem;
    border-top-right-radius: 1.2rem;
    padding: 3rem 0rem;
  }

  .section_four .content {
    margin: auto;
    margin-top: 3rem;
    height: 100%;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_four .content .title {
    width: 100%;
  }

  .section_four .content .title h1 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2.5rem;
    text-align: center;
    color: var(--color-white-prymary);
    display: block;
    justify-content: center;
    align-items: center;
  }

  .section_four .content .title h1 span {
    font-style: italic;
  }


  .section_four .content .title .underline_image {
    margin-top: -3rem;
    margin-bottom: 3rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-right: 0%;
  }

  .section_four .content .title .underline_image .image {
    width: 50%;
  }

  .section_four .content .description {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8rem;
    color: var(--color-white-prymary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 1rem;
  }

  .section_four .content .card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    column-gap: 2rem;
    row-gap: 0rem;
  }

  .section_four .content .card .card_item {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    row-gap: 1rem;
    background-color: #303030;
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .section_four .content .card .card_item h1 {
    font-size: 1.1rem;
    line-height: 150%;
  }

  .section_four .content .card .card_item p {
    font-size: 0.8rem;
    text-align: justify;
    line-height: 150%;
  }

  .section_four .content .card .card_item .image {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .section_four .content .card .card_item .app_logo img {
    width: 40%;
  }

  .section_four .content .footer {
    margin-top: 4rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    column-gap: 2rem;
    background-image: var(--background-gold);
    padding-inline: 1rem;
    padding-block: 1rem;
    border-radius: 1rem;
  }

  .section_four .content .footer h1 {
    flex: 1 1 100%;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--color-black-secondary);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .section_four .content .footer h1 span{
    font-size: 2rem;
  }

  .section_four .content .footer .button_footer {
    flex: 1 1 35%;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
  }

  .section_four .content .footer .button_footer a {
    width: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    background-color: var(--color-black-secondary);
    padding-inline: 1rem;
    padding-block: 1rem;
    border-radius: 0.5rem;
    color: var(--color-white-prymary);
    font-style: italic;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    font-size: 0.7rem;
  }
  .section_four .content .footer .button_footer a:hover {
    background-color: var(--color-white-prymary);
    color: var(--color-black-secondary);
    font-weight: 500;
    scale: 1.01;
    transition: all 0.3s ease-in-out;
  }
  /* Section Four End */

  /* Section Five Start */
  .section_five {
    background-color: var(--color-black-secondary);
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100vh;
    display: flex;
  }

  .section_five .background {
    width: 100%;
    height: 100%;
    background-image: url(/assets/images/png/section_five/section_five_background_mobile.png);
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .section_five .content {
    margin: auto;
    width: 80%;
    height: 100%;
    display: flex;
    margin-top: -5rem;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    row-gap: 1rem;
  }

  .section_five .content h1 {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Exo';
    color: var(--color-white-prymary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  /* Section Five End */

  /* Section Six Start */
  .section_six {
    background-color: var(--color-black-prymary);
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
  }

  .section_six .background {
    width: 100%;
    height: 100%;
    background-color: var(--color-black-secondary);
    z-index: -1;
  }

  .section_six .background .content {
    margin: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_six .background .content .title .underline_image {
    margin-top: -2.5rem;
    margin-bottom: 1.5rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-right: 0%;
  }

  .section_six .background .content .title h1 {
    display: flex;
    flex-direction: row;
    text-align: center;
    width: 80%;
    justify-content: center;
    font-size: 1.5rem;
    margin: auto;
  }

  .section_six .background .content .title .underline_image .image {
    width: 40%;
    margin-left: 7rem;
  }

  .section_six .background .content .row {
    margin: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 2rem;
    column-gap: 2rem;
    
  }

  .section_six .background .content .row .left {
    width: 80%;
    margin: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_six .background .content .row .right {
    margin-top: 2rem;
    width: 100%;
    border: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_six .background .content .row .right .desktop {
    display: none;
  }
  
  .section_six .background .content .row .right .mobile {
    display: block;
    margin: auto;
    padding-bottom: 1rem;
  }

  .section_six .background .content .row .right .image {
    width: 95%;
  }


  .section_seven {
    background-color: var(--color-black-prymary);
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 5rem;
  }

  .section_seven .content {
    margin: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_seven .content .title .underline_image {
    margin-top: -2.5rem;
    margin-bottom: 2.5rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-right: 0%;
  }

  .section_seven .content .title h1 {
    font-size: 1.5rem;
    display: flex;
    flex-direction: row;
    text-align: center;
  }

  .section_seven .content .title .underline_image .image {
    width: 30%;
  }

  .section_seven .content .row {
    margin-top: 2rem;
    width: 100%;
  }

  .section_seven .content .row .mobile {
    display: block;
  }

  .section_seven .content .row .desktop {
    display: none;
  }
  
  .section_seven .content .row .image {
    width: 100%;
  }

  .section_eight {
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
    background: white;
    flex-direction: column;
  }

  .section_eight .content {
    margin: auto;
    width: 90%;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 5rem;
  }

  
  .section_eight .content .title h1 {
    color: var(--color-black-tertiary);
    font-size: 1.5rem;
    text-align: center;
  }

  .section_eight .content .description p {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
    color: var(--color-black-tertiary);
  }

  .section_eight .content .title .underline_image {
    margin-top: -0.2rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-right: 0%;
  }

  .section_eight .content .title .underline_image .image {
    z-index: 9;
    width: 40%;
  }

  .section_eight .content .row {
    margin-top: 2rem;
    width: 80%;
    display: none;
    justify-content: center;
    align-items: center;
  }

  .section_eight .content .rows {
    margin-top: 2rem;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .section_eight .content .rows .image-mobile {
    width: 100%;
  }
  
  .section_eight .content .row .image {
    width: 100px;
    filter: grayscale(100%);
  }
  
  .section_nine {
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .section_nine .content {
    margin: auto;
    width: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 5rem;
  }

  .section_nine .content .title h1 {
    font-size: 1.5rem;
    text-align: center;
    color: var(--color-black-tertiary);
  }

  .section_nine .content .title .underline_image {
    margin-top: -0.2rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding-right: 5%;
  }

  .section_nine .content .title .underline_image .image {
    width: 50%;
  }

  .section_nine .content .row {
    padding-top: 7rem;
    padding-bottom: 1rem;
    width: 80%;
    overflow: auto;
  }

  .section_nine .content .testimonials {
    width: fit-content;
    display: flex;
    gap: 1rem;
    z-index: 99;
  }

  .section_nine .content .row .testimonials .card {
    width: 250px;
    height: 380px;
    background: #303030;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section_nine .content .row .testimonials .card h1 {
    color: white;
    margin-top: 0.5rem;
    font-size: 1.2rem;
  }

  .section_nine .content .row .testimonials .card p {
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--background-gold);
  }

  .section_nine .content .row .testimonials .card span {
    color: white;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    text-align: center;
    padding: 1.5rem;
  }

  .section_nine .content .row .testimonials .card .image {
    width: 110px;
    margin-top: -4rem;
    z-index: 99;
  }

  .section_nine .content .arrow{
    width: 80%;
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    padding: 1.5rem 0rem;
  }

  .section_nine .content  .arrow .left {
    cursor: pointer;
    width: auto;
  }

  .section_nine .content .arrow .right {
    width: auto;
    cursor: pointer;
  }

  .section_ten {
    padding: 5rem 0rem;
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
    background: white;
    flex-direction: column;
  }

  .section_ten .content {
    margin: auto;
    width: 80%;
    background: linear-gradient(90deg, #202020 0%, #141414 0.01%, #414141 42.19%, #101010 72.4%, #303030 100%);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
    height: auto;
    padding: 2rem 0rem;
    margin-bottom: 5rem;
  }

  .section_ten .content .left {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    justify-content: left;
    padding-left: 1.4rem;
    align-items: flex-start;
  }

  .section_ten .content .left .title h1 {
    font-weight: 700;
    display: flex;
    font-size: 1.8rem;
    font-style: italic;
    flex-direction: column;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--background-gold);
  }
  
  .section_ten .content .left .title h2 {
    font-weight: 500;
    display: flex;
    font-size: 1.5rem;
    font-style: italic;
    flex-direction: column;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--background-gold);
  }

  .section_ten .content .right {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 1.4rem;
  }

  .section_ten .content .right .button {
    margin-top: 1.5rem;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0.4rem 1rem;
    background: linear-gradient(90deg, #F7DF89 0%, #A17338 33.33%, #F7DF89 67.71%, #CFA250 85.94%, #A17338 100%);font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
    line-height: 250%;
    color: #202020;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
  }

  .section_ten .content .right .button:hover {
    background: white;
    scale: 1.01;
    transition: all 0.3s ease-in-out;
  }

  .footer {
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--color-black-primary);
    padding: 3rem 0rem;
  }

  .footer .header {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .footer .header .image {
    width: 45%;
    margin: auto;
    padding-bottom: 1rem;
  }

  .footer .header .address h5 {
    font-weight: 600;
    font-size: 1rem;
    line-height: 150%;
    margin-top: 0.5rem;
    text-align: center;
  }

  .footer .header .address p {
    font-weight: 400;
    font-size: 0.7rem;
    line-height: 150%;
    color: #AEAEAE;
    text-align: center;
  }

  .footer .header .kominfo {
    margin-top: 2.5rem;
    gap: 1.5rem;
    justify-content: center;
    flex-direction: column;
    display: flex;
    align-items: center;
  }

  .footer .header .kominfo .social-media {
    margin-top: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  .footer .header .kominfo .social-media .image {
    width: fit-content;
    height: fit-content;

  }

  .footer .header .kominfo h5 {
    font-weight: 400;
    font-size: 0.8rem;
    line-height: 150%;
    color: #AEAEAE;
    margin-top: 0.5rem;
    text-align: center;
  }

  .footer .disclaimer {
    width: 80%;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #FFFFFF;
  }

  .footer .disclaimer h5 {
    font-style: italic;
    font-size: 0.8rem;
  }

  .footer .disclaimer p {
    color: #AEAEAE;
    font-size: 0.8rem;
  }

  .footer .copyright {
    display: flex;
    justify-content: left;
    width: 80%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-style: italic;
  }

  .footer .copyright h5 {
    font-weight: 400;
    color: #AEAEAE;
    font-size: 0.8rem;
  }
}

@media screen and (min-width: 768px) {
  .mobile {
    display: none;
  }

  .desktop {
    display: block;
  }

  /* Hero Section Start */
  .hero {
    background-image: url(/assets/images/png/hero_section/bg_hero_section.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    z-index: 1;
    width: 100%;
  }

  .hero .content {
    margin: auto;
    width: 80%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 2rem;
    padding-bottom: 4rem;
  }

  .hero .content .image {
    width: max-content;
    margin: 0px;
  }

  .tagline h4 {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: "Exo", sans-serif;
    line-height: 2.763rem;
  }

  .tagline h4 span {
    font-style: italic;
  }

  .tagline .primary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 1.2rem;
    padding-bottom: 2.4rem;
  }

  .tagline .primary h1 {
    font-size: 2.5rem;
    line-height: 3rem;
    font-weight: 700;
    font-family: "Exo", sans-serif;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--background-gold);
  }

  .tagline .primary h1 span {
    font-style: italic;
  }

  .tagline a {
    display: inline-block;
    padding: 1rem 1.5rem;
    background-color: var(--background-red);
    border-radius: 0.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: "Exo", sans-serif;
    color: var(--color-white-prymary);
    font-style: italic;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
  }

  .tagline a:hover {
    color: var(--color-black-secondary);
    background-image: var(--background-gold);
    scale: 1.01;
    transition: all 0.3s ease-in-out;
  }

  .power_by h1 {
    font-size: 1rem;
    font-weight: 500;
    font-family: "Exo", sans-serif;
    font-style: italic;
    margin-bottom: 1rem;
  }

  .power_by .power_by_icon {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
  }

  .power_by .power_by_icon img {
    width: 40%;
  }
  /* Hero Section End */


  /* Section Two Start */
  .section_two {
    background-image: url(/assets/images/png/section_two/bg_slice.png);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-color: var(--color-black-prymary);
    position: relative;
    z-index: 0;
    width: 100%;
  }

  .section_two .row {
    margin: auto;
    width: 80%;
    height: 120vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 8rem;
    column-gap: 2rem;
  }

  .section_two .row .description {
    flex: 1 1 45rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .section_two .row .video {
    flex: 1 1 45rem;
    width: 100%;
    height: 100%;
  }

  .section_two .row .video .bg_youtube {
    margin-top: 1rem;
    margin-left: 1rem;
    width: 80.3%;
    height: 31%;
    /* background-image: var(--background-gold); */
    position: absolute;
    border-radius: 1rem;
    z-index: -1;
  }

  .section_two .row .video .youtube {
    height: 60%;
    position: relative;
    width: 100%; 
    border-radius: 1rem;
    box-shadow: 0.7rem 0.7rem #cfa250, 0rem 0rem #ccc;
    background-image: var(--background-gold);
  }

  .section_two .row .description h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 4.5rem;
    color: var(--color-white-prymary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_two .row .description .ringkasan {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    row-gap: 1.5rem;
    font-size: 1.2rem;
  }

  .section_two .row .description .ringkasan a {
    padding: 1rem 1.5rem;
    background-color: var(--background-red);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    font-family: "Exo", sans-serif;
    color: var(--color-white-prymary);
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
  }

  .section_two .row .description .ringkasan a:hover {
    color: var(--color-black-secondary);
    background-image: var(--background-gold);
    scale: 1.01;
    transition: all 0.3s ease-in-out;
  }

  .section_two .row .description .ringkasan p span {
    font-weight: 700;
  }

  .section_two .row .description .underline_image {
    margin-top: -0.5rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    padding-right: 15%;
    margin-bottom: 2rem;
  }

  .section_two .row .description .underline_image img {
    width: 50%;
  }
  /* Section Two End */

  /* Section Three Start */
  .section_three {
    background-color: var(--color-white-prymary);
    position: relative;
    z-index: 0;
    width: 100%;
  }

  .section_three .content {
    margin: auto;
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5rem;
  }

  .section_three .content .title h1 {
    margin-top: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 4.5rem;
    color: var(--color-black-secondary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_three .content .title .underline_image {
    margin-top: -0.5rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    padding-right: 0%;
    margin-bottom: 2rem;
  }

  .section_three .content .title .underline_image img {
    width: 60%;
  }

  .section_three .content .card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .section_three .content .footer {
    background-color: var(--color-black-secondary);
    width: 90%;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    padding-block: 1.5rem;
    margin-bottom: 1rem;
  }

  .section_three .content .footer h1 {
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--background-gold);
  }

  .section_three .content .footer .description {
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--background-gold);
  }
  
  .section_three .content .footer .desktop {
    display: block;
  }
  
  .section_three .content .footer .mobile {
    display: none;
  }

  .section_three .content .card img {
    filter: grayscale(300%);
  }

  .section_three .content .card img:hover {
    filter: none;
  }

  /* Section Three End */

  /* Section Four Start */
  .section_four {
    background-color: var(--color-white-prymary);
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
  }

  .section_four .background {
    width: 100%;
    height: 100%;
    background-color: var(--color-black-secondary);
    z-index: -1;
    border-top-left-radius: 1.2rem;
    border-top-right-radius: 1.2rem;
    padding: 3rem 0rem;
  }

  .section_four .content {
    margin: auto;
    margin-top: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_four .content .title h1 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 4.5rem;
    color: var(--color-white-prymary);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .section_four .content .title h1 span {
    font-style: italic;
  }


  .section_four .content .title .underline_image {
    margin-top: -1rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-right: 0%;
  }

  .section_four .content .description {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 2.5rem;
    color: var(--color-white-prymary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
  }

  .section_four .content .card {
    width: 100%;
    height: 350px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 2rem;
    row-gap: 2rem;
  }

  .section_four .content .card .card_item {
    margin-top: 2rem;
    width: 45%;
    height: 23rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    row-gap: 1rem;
    background-color: #303030;
    padding: 2rem;
    border-radius: 1rem;
  }

  .section_four .content .card .card_item h1 {
    font-size: 1.2rem;
    line-height: 150%;
  }

  .section_four .content .card .card_item p {
    font-size: 0.8rem;
    line-height: 150%;
  }

  .section_four .content .card .card_item .image {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .section_four .content .footer {
    margin-top: 4rem;
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    column-gap: 2rem;
    background-image: var(--background-gold);
    padding-inline: 3rem;
    padding-block: 2rem;
    border-radius: 1rem;
  }

  .section_four .content .footer h1 {
    flex: 1 1 60%;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-black-secondary);
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
  }

  .section_four .content .footer h1 span{
    font-size: 1.5rem;
  }

  .section_four .content .footer .button_footer {
    flex: 1 1 40%;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
  }

  .section_four .content .footer .button_footer a {
    width: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: var(--color-black-secondary);
    padding-inline: 1rem;
    padding-block: 0.5rem;
    border-radius: 0.5rem;
    color: var(--color-white-prymary);
    font-style: italic;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    font-size: 0.8rem;
  }
  .section_four .content .footer .button_footer a:hover {
    background-color: var(--color-white-prymary);
    color: var(--color-black-secondary);
    font-weight: 500;
    scale: 1.01;
    transition: all 0.3s ease-in-out;
    /* animation */
  }
  /* Section Four End */

  /* Section Five Start */
  .section_five {
    background-color: var(--color-black-secondary);
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100vh;
    display: flex;
  }

  .section_five .background {
    width: 100%;
    height: 100%;
    background-image: url(/assets/images/png/section_five/section_five_background_mobile.png);
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .section_five .content {
    margin: auto;
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    row-gap: 1rem;
  }

  .section_five .content h1 {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Exo';
    color: var(--color-white-prymary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  /* Section Five End */

  /* Section Six Start */
  .section_six {
    background-color: var(--color-black-prymary);
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
  }

  .section_six .background {
    width: 100%;
    height: 100%;
    background-color: var(--color-black-secondary);
    z-index: -1;
  }

  .section_six .background .content {
    margin: auto;
    margin-top: 3rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_six .background .content .title .underline_image {
    margin-top: -0.2rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-right: 0%;
  }

  .section_six .background .content .title h1 {
    font-size: 2rem;
  }

  .section_six .background .content .title .underline_image .image {
    width: 30%;
    margin-left: 7rem;
  }

  .section_six .background .content .row {
    margin: auto;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 2rem;
    column-gap: 2rem;
    
  }

  .section_six .background .content .row .left {
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .section_six .background .content .row .right {
    margin-top: 2rem;
    width: 100%;
    border: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_six .background .content .row .right .desktop {
    display: none;
  }
  
  .section_six .background .content .row .right .mobile {
    display: block;
  }

  .section_six .background .content .row .right .image {
    width: 100%;
  }

  .section_six .background .content .row .right .mobile{
    display: none;
  }

  .section_six .background .content .row .right .desktop{
    display: flex;
  }

  .section_seven {
    background-color: var(--color-black-prymary);
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 5rem;
  }

  .section_seven .content {
    margin: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_seven .content .title .underline_image {
    margin-top: -0.2rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-right: 0%;
  }

  .section_seven .content .title h1 {
    font-size: 1.8rem;
  }

  .section_seven .content .title .underline_image .image {
    width: 30%;
  }

  .section_seven .content .row {
    margin-top: 2rem;
    width: 100%;
  }

  .section_seven .content .row .mobile {
    display: block;
  }

  .section_seven .content .row .desktop {
    display: none;
  }
  
  .section_seven .content .row .image {
    width: 100%;
  }

  .section_eight {
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .section_eight .content {
    margin: auto;
    width: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 10rem;
  }

  
  .section_eight .content .title h1 {
    color: var(--color-black-tertiary);
    font-size: 2rem;
  }

  .section_eight .content .description p {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
    color: var(--color-black-tertiary);
  }

  .section_eight .content .title .underline_image {
    margin-top: -0.2rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding-right: 0%;
  }

  .section_eight .content .title .underline_image .image {
    z-index: 9;
    width: 40%;
  }

  .section_eight .content .row {
    margin-top: 2rem;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .section_eight .content .rows {
    display:none;
  }
  
  .section_eight .content .row .image {
    width: 100px;
    filter: grayscale(100%);
  }
  
  .section_nine {
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .section_nine .content {
    margin: auto;
    width: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 10rem;
  }

  .section_nine .content .title h1 {
    font-size: 2.3rem;
    color: var(--color-black-tertiary);
  }

  .section_nine .content .title .underline_image {
    margin-top: -0.2rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding-right: 5%;
  }

  .section_nine .content .title .underline_image .image {
    width: 50%;
  }

  .section_nine .content .row {
    padding-top: 8rem;
    padding-bottom: 1rem;
    width: 80%;
    overflow: auto;
  }

  .section_nine .content .testimonials {
    width: fit-content;
    display: flex;
    gap: 1rem;
    z-index: 99;
  }

  .section_nine .content .row .testimonials .card {
    width: 300px;
    height: 480px;
    background: #303030;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section_nine .content .row .testimonials .card h1 {
    color: white;
    margin-top: 1rem;
    font-size: 1.2rem;
  }

  .section_nine .content .row .testimonials .card p {
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--background-gold);
  }

  .section_nine .content .row .testimonials .card span {
    color: white;
    margin-top: 0.5rem;
    text-align: center;
    padding: 1.5rem;
  }

  .section_nine .content .row .testimonials .card .image {
    width: 110px;
    margin-top: -4rem;
    z-index: 99;
  }

  .section_nine .content .arrow{
    width: 80%;
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    padding: 1.5rem 0rem;
  }

  .section_nine .content  .arrow .left {
    cursor: pointer;
    width: auto;
  }

  .section_nine .content .arrow .right {
    width: auto;
    cursor: pointer;
  }

  .section_ten {
    padding: 5rem 0rem;
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
    background: white;
    flex-direction: column;
  }

  .section_ten .content {
    margin: auto;
    width: 80%;
    background: linear-gradient(90deg, #202020 0%, #141414 0.01%, #414141 42.19%, #101010 72.4%, #303030 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    height: 255px;
    margin-bottom: 5rem;
  }

  .section_ten .content .left {
    width: 70%;
    display: flex;
    gap: 1.6rem;
    justify-content: left;
    padding-left: 1.4rem;
    align-items: center;
  }

  .section_ten .content .left .title h1 {
    font-weight: 700;
    display: flex;
    font-size: 1.4rem;
    font-style: italic;
    flex-direction: column;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--background-gold);
  }
  
  .section_ten .content .left .title h2 {
    font-weight: 500;
    display: flex;
    font-size: 1.2rem;
    font-style: italic;
    flex-direction: column;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--background-gold);
  }

  .section_ten .content .right {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_ten .content .right .button {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0.4rem 1.5rem;
    height: 70px;
    background: linear-gradient(90deg, #F7DF89 0%, #A17338 33.33%, #F7DF89 67.71%, #CFA250 85.94%, #A17338 100%);font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
    line-height: 250%;
    color: #202020;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
  }

  .section_ten .content .right .button:hover {
    background: white;
    scale: 1.01;
    transition: all 0.3s ease-in-out;
  }

  .footer {
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--color-black-primary);
    padding: 3rem 0rem;
  }

  .footer .header {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .footer .header .image {
    width: 45%;
    margin: auto;
  }

  .footer .header .address h5 {
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 150%;
    margin-top: 0.5rem;
  }

  .footer .header .address p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    color: #AEAEAE;
  }

  .footer .header .kominfo {
    margin-top: 2rem;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: center;
  }

  .footer .header .kominfo .social-media {
    margin-top: 1rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }

  .footer .header .kominfo .social-media .image {
    width: fit-content;
    height: fit-content;
  }

  .footer .header .kominfo h5 {
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    color: #AEAEAE;
    margin-top: 0.5rem;
  }

  .footer .disclaimer {
    width: 80%;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #FFFFFF;
  }

  .footer .disclaimer h5 {
    font-style: italic;
    font-size: 1rem;
  }

  .footer .disclaimer p {
    color: #AEAEAE;
    font-size: 1rem;
  }

  .footer .copyright {
    display: flex;
    justify-content: left;
    width: 80%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-style: italic;
  }

  .footer .copyright h5 {
    font-weight: 400;
    color: #AEAEAE;
    font-size: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .mobile {
    display: none;
  }

  .desktop {
    display: block;
  }

  /* Hero Section Start */
  .hero {
    background-image: url(/assets/images/png/hero_section/bg_hero_section.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    z-index: 1;
    width: 100%;
  }

  .hero .content {
    margin: auto;
    width: 80%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 2rem;
    padding-bottom: 4rem;
  }

  .hero .content .image {
    width: 14%;
    margin: 0px;
  }

  .tagline h4 {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: "Exo", sans-serif;
    line-height: 2.763rem;
  }

  .tagline h4 span {
    font-style: italic;
  }

  .tagline .primary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 1.2rem;
    padding-bottom: 2.4rem;
  }

  .tagline .primary h1 {
    font-size: 2.7rem;
    line-height: 3rem;
    font-weight: 700;
    font-family: "Exo", sans-serif;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--background-gold);
  }

  .tagline .primary h1 span {
    font-style: italic;
  }

  .tagline a {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--background-red);
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: "Exo", sans-serif;
    color: var(--color-white-prymary);
    font-style: italic;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
  }

  .tagline a:hover {
    color: var(--color-black-secondary);
    background-image: var(--background-gold);
    scale: 1.01;
    transition: all 0.3s ease-in-out;
  }

  .power_by h1 {
    font-size: 0.7rem;
    font-weight: 500;
    font-family: "Exo", sans-serif;
    font-style: italic;
    margin-bottom: 1rem;
  }

  .power_by .power_by_icon {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
  }

  .power_by .power_by_icon img {
    width: 30%;
  }
  /* Hero Section End */

  /* Section Two Start */
  .section_two {
    background-image: url(/assets/images/png/section_two/bg_slice.png);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-color: var(--color-black-prymary);
    position: relative;
    z-index: 0;
    width: 100%;
  }

  .section_two .row {
    margin: auto;
    width: 80%;
    height: 110vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 8rem;
    column-gap: 2rem;
  }

  .section_two .row .description {
    flex: 1 1 45rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .section_two .row .video {
    flex: 1 1 45rem;
    width: 100%;
    height: 100%;
  }

  .section_two .row .video .bg_youtube {
    margin-top: 1rem;
    margin-left: 1rem;
    width: 39.5%;
    height: 48.2%;
    /* background-image: var(--background-gold); */
    position: absolute;
    border-radius: 1rem;
    z-index: -1;
  }

  .section_two .row .video .youtube {
    height: 42%;
    position: relative;
    width: 100%; 
    border-radius: 1rem;
    box-shadow: 0.7rem 0.7rem #cfa250, 0rem 0rem #ccc;
    background-image: var(--background-gold);
  }

  .section_two .row .description h1 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 4.5rem;
    color: var(--color-white-prymary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_two .row .description .ringkasan {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    row-gap: 1.5rem;
    font-size: 0.8rem;
  }

  .section_two .row .description .ringkasan a {
    padding: 0.8rem 1.5rem;
    background-color: var(--background-red);
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: "Exo", sans-serif;
    color: var(--color-white-prymary);
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
  }

  .section_two .row .description .ringkasan a:hover {
    color: var(--color-black-secondary);
    background-image: var(--background-gold);
    scale: 1.01;
    transition: all 0.3s ease-in-out;
  }

  .section_two .row .description .ringkasan p span {
    font-weight: 700;
  }

  .section_two .row .description .underline_image {
    margin-top: -1rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    padding-right: 15%;
    margin-bottom: 2rem;
  }

  .section_two .row .description .underline_image img {
    width: 50%;
  }
  /* Section Two End */

  /* Section Three Start */
  .section_three {
    background-color: var(--color-white-prymary);
    position: relative;
    z-index: 0;
    width: 100%;
  }

  .section_three .content {
    margin: auto;
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5rem;
  }

  .section_three .content .title h1 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 4.5rem;
    color: var(--color-black-secondary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_three .content .title .underline_image {
    margin-top: -1rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    padding-right: 0%;
    margin-bottom: 2rem;
  }

  .section_three .content .title .underline_image img {
    width: 60%;
  }

  .section_three .content .card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .section_three .content .footer {
    background-color: var(--color-black-secondary);
    width: 90%;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    padding-block: 1.2rem;
    margin-bottom: 5rem;
  }

  .section_three .content .footer h1 {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--background-gold);
  }

  .section_three .content .footer .description {
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--background-gold);
  }

  .section_three .content .footer .desktop {
    display: block;
  }
  
  .section_three .content .footer .mobile {
    display: none;
  }

  .section_three .content .card img {
    filter: grayscale(300%);
  }

  .section_three .content .card img:hover {
    filter: none;
  }

  /* Section Three End */

  /* Section Four Start */
  .section_four {
    background-color: var(--color-white-prymary);
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
  }

  .section_four .background {
    width: 100%;
    height: 100%;
    background-color: var(--color-black-secondary);
    z-index: -1;
    border-top-left-radius: 1.2rem;
    border-top-right-radius: 1.2rem;
    padding: 3rem 0rem;
  }

  .section_four .content {
    margin: auto;
    margin-top: 0rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_four .content .title h1 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 4.5rem;
    color: var(--color-white-prymary);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .section_four .content .title h1 span {
    font-style: italic;
  }


  .section_four .content .title .underline_image {
    margin-top: -1rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-right: 0%;
  }

  .section_four .content .title .underline_image img {
    width: 30%;
  } 

  .section_four .content .description {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2.5rem;
    color: var(--color-white-prymary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
  }

  .section_four .content .card {
    width: 100%;
    height: 350px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 2rem;
    row-gap: 2rem;
  }

  .section_four .content .card .card_item {
    margin-top: 2rem;
    width: 45%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 1rem;
    background-color: #303030;
    padding: 2rem;
    border-radius: 1rem;
  }  
  
  .section_four .content .card .card_item h1 {
    font-size: 1.2rem;
    line-height: 150%;
  }

  .section_four .content .card .card_item p {
    font-size: 0.9rem;
    line-height: 150%;
  }

  .section_four .content .card .card_item .image {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .section_four .content .footer {
    margin-top: 4rem;
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    column-gap: 2rem;
    background-image: var(--background-gold);
    padding-inline: 3rem;
    padding-block: 2rem;
    border-radius: 1rem;
  }

  .section_four .content .footer h1 {
    flex: 1 1 70%;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-black-secondary);
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
  }

  .section_four .content .footer h1 span{
    font-size: 2rem;
  }

  .section_four .content .footer .button_footer {
    flex: 1 1 35%;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
  }

  .section_four .content .footer .button_footer a {
    width: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: var(--color-black-secondary);
    padding-inline: 1rem;
    padding-block: 0.5rem;
    border-radius: 0.5rem;
    color: var(--color-white-prymary);
    font-style: italic;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    font-size: 0.8rem;
  }
  .section_four .content .footer .button_footer a:hover {
    background-color: var(--color-white-prymary);
    color: var(--color-black-secondary);
    font-weight: 500;
    scale: 1.01;
    transition: all 0.3s ease-in-out;
  }
  /* Section Four End */

  /* Section Five Start */
  .section_five {
    background-color: var(--color-black-secondary);
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100vh;
    display: flex;
  }

  .section_five .background {
    width: 100%;
    height: 100%;
    background-image: url(/assets/images/png/section_five/section_five_background.png);
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .section_five .content {
    margin: auto;
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    row-gap: 1rem;
  }

  .section_five .content h1 {
    font-size: 1.6rem;
    font-weight: 600;
    font-family: 'Exo';
    color: var(--color-white-prymary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  /* Section Five End */

  /* Section Six Start */
  .section_six {
    background-color: var(--color-black-prymary);
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
  }

  .section_six .background {
    width: 100%;
    height: 100%;
    background-color: var(--color-black-prymary);
    z-index: -1;
  }

  .section_six .background .content {
    margin: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_six .background .content .title .underline_image {
    margin-top: -0.2rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-right: 0%;
  }

  .section_six .background .content .title h1 {
    font-size: 1.8rem;
  }

  .section_six .background .content .title .underline_image .image {
    width: 30%;
    margin-left: 7rem;
  }

  .section_six .background .content .row {
    margin: auto;
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 2rem;
    column-gap: 2rem;
    
  }

  .section_six .background .content .row .left {
    width: 40%;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .section_six .background .content .row .right {
    width: 60%;
    border: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_six .background .content .row .right .image {
    width: 100%;
  }

  .section_six .background .content .row .right .mobile{
    display: none;
  }

  .section_six .background .content .row .right .desktop{
    display: flex;
  }


  .section_seven {
    background-color: var(--color-black-prymary);
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 5rem;
  }

  .section_seven .content {
    margin: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_seven .content .title .underline_image {
    margin-top: -0.2rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-right: 0%;
  }

  .section_seven .content .title h1 {
    font-size: 1.8rem;
  }

  .section_seven .content .title .underline_image .image {
    width: 30%;
  }

  .section_seven .content .row {
    margin-top: 2rem;
    width: 100%;
  }
  
  .section_seven .content .row .mobile {
    display: none;
  }
  
  .section_seven .content .row .desktop {
    display: block;
  }

  .section_seven .content .row .image {
    width: 100%;
  }

  .section_eight {
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .section_eight .content {
    margin: auto;
    width: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 10rem;
  }

  
  .section_eight .content .title h1 {
    color: var(--color-black-tertiary);
    font-size: 1.8rem;
  }

  .section_eight .content .description p {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 500 !important;
    text-align: center;
    color: var(--color-black-tertiary);
  }

  .section_eight .content .title .underline_image {
    margin-top: -0.2rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding-right: 0%;
  }

  .section_eight .content .title .underline_image .image {
    z-index: 9;
    width: 40%;
  }

  .section_eight .content .row {
    margin-top: 1rem;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .section_eight .content .rows {
    display:none;
  }
  
  .section_eight .content .row .image {
    width: 130px;
    filter: grayscale(100%);
  }
  
  .section_nine {
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .section_nine .content {
    margin: auto;
    width: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 10rem;
  }

  .section_nine .content .title h1 {
    font-size: 1.8rem;
    color: var(--color-black-tertiary);
  }

  .section_nine .content .title .underline_image {
    margin-top: -0.2rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding-right: 5%;
  }

  .section_nine .content .title .underline_image .image {
    width: 50%;
  }

  .section_nine .content .row {
    padding-top: 8rem;
    padding-bottom: 1rem;
    width: 80%;
    overflow: auto;
  }

  .section_nine .content .testimonials {
    width: fit-content;
    display: flex;
    gap: 1rem;
    z-index: 99;
  }

  .section_nine .content .row .testimonials .card {
    width: 300px;
    height: 400px;
    background: #303030;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section_nine .content .row .testimonials .card h1 {
    color: white;
    margin-top: 1rem;
    font-size: 1rem;
  }

  .section_nine .content .row .testimonials .card p {
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--background-gold);
  }

  .section_nine .content .row .testimonials .card span {
    color: white;
    margin-top: 0.5rem;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
  }

  .section_nine .content .row .testimonials .card .image {
    width: 110px;
    margin-top: -4rem;
    z-index: 99;
  }

  .section_nine .content .arrow{
    width: 80%;
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    padding: 1.5rem 0rem;
  }

  .section_nine .content  .arrow .left {
    cursor: pointer;
    width: auto;
  }

  .section_nine .content .arrow .right {
    width: auto;
    cursor: pointer;
  }

  .section_ten {
    padding: 5rem 0rem;
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
    background: white;
    flex-direction: column;
  }

  .section_ten .content {
    margin: auto;
    width: 80%;
    background: linear-gradient(90deg, #202020 0%, #141414 0.01%, #414141 42.19%, #101010 72.4%, #303030 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    height: 255px;
    margin-bottom: 5rem;
  }

  .section_ten .content .left {
    width: 70%;
    display: flex;
    gap: 1.6rem;
    justify-content: left;
    padding-left: 4rem;
    align-items: center;
  }

  .section_ten .content .left .title h1 {
    font-weight: 700;
    display: flex;
    font-size: 1.6rem;
    font-style: italic;
    flex-direction: column;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--background-gold);
  }
  
  .section_ten .content .left .title h2 {
    font-weight: 500;
    display: flex;
    font-size: 1.3rem;
    font-style: italic;
    flex-direction: column;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--background-gold);
  }

  .section_ten .content .right {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_ten .content .right .button {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0.7rem 2rem;
    height: 50px;
    background: linear-gradient(90deg, #F7DF89 0%, #A17338 33.33%, #F7DF89 67.71%, #CFA250 85.94%, #A17338 100%);font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 250%;
    color: #202020;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
  }

  .section_ten .content .right .button:hover {
    background: white;
    scale: 1.01;
    transition: all 0.3s ease-in-out;
  }

  .footer {
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--color-black-primary);
    padding: 3rem 0rem;
  }

  .footer .header {
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer .header .image {
    width: 15%;
    margin: 0;
  }

  .footer .header .address h5 {
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 150%;
    margin-top: 0.5rem;
  }

  .footer .header .address p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    color: #AEAEAE;
  }

  .footer .header .kominfo {
    gap: 1.5rem;
    justify-content: space-between;
    align-items: center;
  }

    .footer .header .kominfo .social-media {
    margin-top: 1rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }

  .footer .header .kominfo .social-media .image {
    width: fit-content;
    height: fit-content;
  }

  .footer .header .kominfo h5 {
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    color: #AEAEAE;
    margin-top: 0.5rem;
  }

  .footer .disclaimer {
    width: 80%;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #FFFFFF;
  }

  .footer .disclaimer h5 {
    font-style: italic;
    font-size: 1rem;
  }

  .footer .disclaimer p {
    color: #AEAEAE;
    font-size: 1rem;
  }

  .footer .copyright {
    display: flex;
    justify-content: left;
    width: 80%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-style: italic;
  }

  .footer .copyright h5 {
    font-weight: 400;
    color: #AEAEAE;
    font-size: 1rem;
  }
}

@media screen and (min-width: 1280px) {
    .mobile {
      display: none;
    }

    .desktop {
      display: block;
    }
    /* Hero Section Start */
    .hero {
      background-image: url(/assets/images/png/hero_section/bg_hero_section.png);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: scroll;
      position: relative;
      z-index: 1;
      width: 100%;
    }

    .hero .content {
      margin: auto;
      width: 80%;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-start;
      padding-top: 2rem;
      padding-bottom: 4rem;
    }

    .hero .content .image {
      width: 15%;
      margin: 0px;
    }

    .tagline h4 {
      font-size: 1.5rem;
      font-weight: 700;
      font-family: "Exo", sans-serif;
      line-height: 2.763rem;
    }

    .tagline h4 span {
      font-style: italic;
    }

    .tagline .primary {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding-top: 1.2rem;
      padding-bottom: 2.4rem;
    }

    .tagline .primary h1 {
      font-size: 3rem;
      line-height: 3.5rem;
      font-weight: 700;
      font-family: "Exo", sans-serif;
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-image: var(--background-gold);
    }

    .tagline .primary h1 span {
      font-style: italic;
    }

    .tagline a {
      display: inline-block;
      padding: 1rem 1.5rem;
      background-color: var(--background-red);
      border-radius: 0.5rem;
      font-size: 1rem;
      font-weight: 500;
      font-family: "Exo", sans-serif;
      color: var(--color-white-prymary);
      font-style: italic;
      text-transform: uppercase;
      transition: all 0.3s ease-in-out;
    }

    .tagline a:hover {
      color: var(--color-black-secondary);
      background-image: var(--background-gold);
      scale: 1.01;
      transition: all 0.3s ease-in-out;
    }

    .power_by h1 {
      font-size: 0.7rem;
      font-weight: 500;
      font-family: "Exo", sans-serif;
      font-style: italic;
      margin-bottom: 1rem;
    }

    .power_by .power_by_icon {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      gap: 2rem;
    }

    .power_by .power_by_icon img {
      width: 35%;
    }
    /* Hero Section End */
    /* Section Two Start */
    .section_two {
      background-image: url(/assets/images/png/section_two/bg_slice.png);
      background-size: contain;
      background-position: bottom;
      background-repeat: no-repeat;
      background-attachment: scroll;
      background-color: var(--color-black-prymary);
      position: relative;
      z-index: 0;
      width: 100%;
    }
  
    .section_two .row {
      margin: auto;
      width: 80%;
      height: 110vh;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
      padding-top: 8rem;
      column-gap: 2rem;
    }
  
    .section_two .row .description {
      flex: 1 1 45rem;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-start;
    }
  
    .section_two .row .video {
      flex: 1 1 45rem;
      width: 100%;
      height: 100%;
    }
  
    .section_two .row .video .bg_youtube {
      margin-top: 1rem;
      margin-left: 1rem;
      width: 39%;
      height: 35%;
      /* background-image: var(--background-gold); */
      position: absolute;
      border-radius: 1rem;
      z-index: -1;
    }
  
    .section_two .row .video .youtube {
      height: 48%;
      position: relative;
      width: 100%; 
      border-radius: 1rem;
      box-shadow: 0.7rem 0.7rem #cfa250, 0rem 0rem #ccc;
      background-image: var(--background-gold);
    }
  
    .section_two .row .description h1 {
      font-size: 2rem;
      font-weight: 700;
      line-height: 4.5rem;
      color: var(--color-white-prymary);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
  
    .section_two .row .description .ringkasan {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      row-gap: 1.5rem;
      font-size: 0.9rem;
    }
  
    .section_two .row .description .ringkasan a {
      padding: 1rem 1.5rem;
      background-color: var(--background-red);
      border-radius: 0.5rem;
      font-size: 0.8rem;
      font-weight: 500;
      font-family: "Exo", sans-serif;
      color: var(--color-white-prymary);
      text-transform: uppercase;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      transition: all 0.3s ease-in-out;
    }
  
    .section_two .row .description .ringkasan a:hover {
      color: var(--color-black-secondary);
      background-image: var(--background-gold);
      scale: 1.01;
      transition: all 0.3s ease-in-out;
    }
  
    .section_two .row .description .ringkasan p span {
      font-weight: 700;
    }
  
    .section_two .row .description .underline_image {
      margin-top: -1rem;
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: end;
      align-items: center;
      padding-right: 15%;
      margin-bottom: 2rem;
    }
  
    .section_two .row .description .underline_image img {
      width: 40%;
    }
    /* Section Two End */
  
    /* Section Three Start */
    .section_three {
      background-color: var(--color-white-prymary);
      position: relative;
      z-index: 0;
      width: 100%;
    }
  
    .section_three .content {
      margin: auto;
      width: 80%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 5rem;
    }
  
    .section_three .content .title h1 {
      font-size: 2rem;
      font-weight: 700;
      line-height: 4.5rem;
      color: var(--color-black-secondary);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
  
    .section_three .content .title .underline_image {
      margin-top: -1rem;
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: end;
      align-items: center;
      padding-right: 0%;
      margin-bottom: 2rem;
    }
  
    .section_three .content .title .underline_image img {
      width: 60%;
    }
  
    .section_three .content .card {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }
  
    .section_three .content .footer {
      background-color: var(--color-black-secondary);
      width: 100%;
      border-radius: 1rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin-top: 3rem;
      padding-block: 2rem;
      margin-bottom: 5rem;
    }
  
    .section_three .content .footer h1 {
      font-size: 2rem;
      font-weight: 700;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-image: var(--background-gold);
    }
  
    .section_three .content .footer .description {
      font-size: 1rem;
      font-weight: 700;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-image: var(--background-gold);
    }

    .section_three .content .footer .desktop {
      display: block;
    }
    
    .section_three .content .footer .mobile {
      display: none;
    }

    .section_three .content .card img {
      filter: grayscale(300%);
    }
  
    .section_three .content .card img:hover {
      filter: none;
    }
  
    /* Section Three End */
  
    /* Section Four Start */
    .section_four {
      background-color: var(--color-white-prymary);
      position: relative;
      z-index: 0;
      width: 100%;
      display: flex;
    }
  
    .section_four .background {
      width: 100%;
      height: 100%;
      background-color: var(--color-black-secondary);
      z-index: -1;
      border-top-left-radius: 1.2rem;
      border-top-right-radius: 1.2rem;
      padding: 3rem 0rem;
    }
  
    .section_four .content {
      margin: auto;
      width: 80%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
  
    .section_four .content .title h1 {
      font-size: 2rem;
      font-weight: 700;
      line-height: 4.5rem;
      color: var(--color-white-prymary);
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    .section_four .content .title h1 span {
      font-style: italic;
    }
  
  
    .section_four .content .title .underline_image {
      margin-top: -1rem;
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding-right: 0%;
    }
  
    .section_four .content .description {
      font-size: 1.2rem;
      font-weight: 400;
      line-height: 2.5rem;
      color: var(--color-white-prymary);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin-top: 1.2rem;
    }
  
    .section_four .content .card {
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      column-gap: 2rem;
      row-gap: 2rem;
    }
  
    .section_four .content .card .card_item {
      margin-top: 2rem;
      width: 45%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: start;
      row-gap: 1rem;
      background-color: #303030;
      padding: 2rem;
      border-radius: 1rem;
    }
  
    .section_four .content .card .card_item .image {
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
    }
  
    .section_four .content .footer {
      margin-top: 4rem;
      width: 90%;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      column-gap: 2rem;
      background-image: var(--background-gold);
      padding-inline: 3rem;
      padding-block: 2rem;
      border-radius: 1rem;
    }
  
    .section_four .content .footer h1 {
      flex: 1 1 70%;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-black-secondary);
      display: flex;
      flex-direction: row;
      justify-content: start;
      align-items: center;
    }

    .section_four .content .footer h1 span{
      font-size: 2.5rem;
    }
  
    .section_four .content .footer .button_footer {
      flex: 1 1 35%;
      display: flex;
      flex-direction: row;
      justify-content: end;
      align-items: center;
    }
  
    .section_four .content .footer .button_footer a {
      width: auto;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      background-color: var(--color-black-secondary);
      padding-inline: 1rem;
      padding-block: 0.5rem;
      border-radius: 0.5rem;
      color: var(--color-white-prymary);
      font-style: italic;
      font-weight: 500;
      transition: all 0.3s ease-in-out;
      font-size: 0.9rem;
    }
    .section_four .content .footer .button_footer a:hover {
      background-color: var(--color-white-prymary);
      color: var(--color-black-secondary);
      font-weight: 500;
      scale: 1.01;
      transition: all 0.3s ease-in-out;
    }
    /* Section Four End */
  
    /* Section Five Start */
    .section_five {
      background-color: var(--color-black-secondary);
      position: relative;
      z-index: 0;
      width: 100%;
      height: 100vh;
      display: flex;
    }
  
    .section_five .background {
      width: 100%;
      height: 100%;
      background-image: url(/assets/images/png/section_five/section_five_background.png);
      z-index: -1;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
  
    .section_five .content {
      margin: auto;
      width: 80%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      row-gap: 1rem;
    }
  
    .section_five .content h1 {
      font-size: 1.6rem;
      font-weight: 600;
      font-family: 'Exo';
      color: var(--color-white-prymary);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    /* Section Five End */
  
    /* Section Six Start */
    .section_six {
      background-color: var(--color-black-prymary);
      position: relative;
      z-index: 0;
      width: 100%;
      display: flex;
    }
  
    .section_six .background {
      width: 100%;
      height: 100%;
      background-color: var(--color-black-prymary);
      z-index: -1;
    }
  
    .section_six .background .content {
      margin: auto;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
  
    .section_six .background .content .title .underline_image {
      margin-top: -0.2rem;
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      padding-right: 0%;
    }
  
    .section_six .background .content .title h1 {
      font-size: 2rem;
    }
  
    .section_six .background .content .title .underline_image .image {
      width: 30%;
      margin-left: 7rem;
    }
  
    .section_six .background .content .row {
      margin: auto;
      width: 80%;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
      padding-top: 2rem;
      column-gap: 2rem;
      
    }
  
    .section_six .background .content .row .left {
      width: 50%;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-start;
    }
  
    .section_six .background .content .row .right {
      width: 50%;
      border: white;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
  
    .section_six .background .content .row .right .image {
      width: 110%;
    }
  
    .section_six .background .content .row .right .mobile{
      display: none;
    }
  
    .section_six .background .content .row .right .desktop{
      display: flex;
    }
  
    .section_seven {
      background-color: var(--color-black-prymary);
      position: relative;
      z-index: 0;
      width: 100%;
      display: flex;
      flex-direction: column;
      margin-top: 5rem;
    }
  
    .section_seven .content {
      margin: auto;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
  
    .section_seven .content .title .underline_image {
      margin-top: -0.2rem;
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      padding-right: 0%;
    }
  
    .section_seven .content .title h1 {
      font-size: 2rem;
    }
  
    .section_seven .content .title .underline_image .image {
      width: 30%;
    }
  
    .section_seven .content .row {
      margin-top: 2rem;
      width: 100%;
    }

    .section_seven .content .row .mobile {
      display: none;
    }
    
    .section_seven .content .row .desktop {
      display: block;
    }
    
    .section_seven .content .row .image {
      width: 100%;
    }
  
    .section_eight {
      position: relative;
      z-index: 0;
      width: 100%;
      display: flex;
      flex-direction: column;
    }
  
    .section_eight .content {
      margin: auto;
      width: 100%;
      background: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding-top: 10rem;
    }
  
    
    .section_eight .content .title h1 {
      color: var(--color-black-tertiary);
      font-size: 1.8rem;
    }
  
    .section_eight .content .description p {
      margin-top: 1rem;
      font-size: 1.17rem;
      text-align: center;
      color: var(--color-black-tertiary);
    }
  
    .section_eight .content .title .underline_image {
      margin-top: -0.2rem;
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: flex-end;
      align-items: center;
      padding-right: 0%;
    }
  
    .section_eight .content .title .underline_image .image {
      z-index: 9;
      width: 40%;
    }
  
    .section_eight .content .row {
      margin-top: 2rem;
      width: 80%;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .section_eight .content .rows {
      display:none;
    }
    
    .section_eight .content .row .image {
      width: 150px;
      filter: grayscale(100%);
    }
    
    .section_nine {
      position: relative;
      z-index: 0;
      width: 100%;
      display: flex;
      flex-direction: column;
    }
  
    .section_nine .content {
      margin: auto;
      width: 100%;
      background: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding-top: 10rem;
    }
  
    .section_nine .content .title h1 {
      font-size: 1.8rem;
      color: var(--color-black-tertiary);
    }
  
    .section_nine .content .title .underline_image {
      margin-top: -0.2rem;
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: flex-end;
      align-items: center;
      padding-right: 5%;
    }
  
    .section_nine .content .title .underline_image .image {
      width: 50%;
    }
  
    .section_nine .content .row {
      padding-top: 8rem;
      padding-bottom: 1rem;
      width: 80%;
      overflow: auto;
    }
  
    .section_nine .content .testimonials {
      width: fit-content;
      display: flex;
      gap: 1rem;
      z-index: 99;
    }
  
    .section_nine .content .row .testimonials .card {
      width: 300px;
      height: 400px;
      background: #303030;
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .section_nine .content .row .testimonials .card h1 {
      color: white;
      margin-top: 1rem;
      font-size: 1.2rem;
    }
  
    .section_nine .content .row .testimonials .card p {
      font-weight: 700;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-image: var(--background-gold);
    }
  
    .section_nine .content .row .testimonials .card span {
      color: white;
      margin-top: 0.5rem;
      text-align: center;
      padding: 1.5rem;
      font-size: 0.9rem;
    }
  
    .section_nine .content .row .testimonials .card .image {
      width: 110px;
      margin-top: -4rem;
      z-index: 99;
    }
  
    .section_nine .content .arrow{
      width: 80%;
      display: flex;
      gap: 1rem;
      justify-content: flex-start;
      align-items: center;
      padding: 1.5rem 0rem;
    }
  
    .section_nine .content  .arrow .left {
      cursor: pointer;
      width: auto;
    }
  
    .section_nine .content .arrow .right {
      width: auto;
      cursor: pointer;
    }
  
    .section_ten {
      padding: 5rem 0rem;
      position: relative;
      z-index: 0;
      width: 100%;
      display: flex;
      background: white;
      flex-direction: column;
    }
  
    .section_ten .content {
      margin: auto;
      width: 80%;
      background: linear-gradient(90deg, #202020 0%, #141414 0.01%, #414141 42.19%, #101010 72.4%, #303030 100%);
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 20px;
      height: 255px;
      margin-bottom: 5rem;
    }
  
    .section_ten .content .left {
      width: 70%;
      display: flex;
      gap: 1.6rem;
      justify-content: left;
      padding-left: 4rem;
      align-items: center;
    }
  
    .section_ten .content .left .title h1 {
      font-weight: 700;
      display: flex;
      font-size: 2rem;
      font-style: italic;
      flex-direction: column;
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-image: var(--background-gold);
    }
    
    .section_ten .content .left .title h2 {
      font-weight: 500;
      display: flex;
      font-size: 1.8rem;
      font-style: italic;
      flex-direction: column;
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-image: var(--background-gold);
    }
  
    .section_ten .content .right {
      width: 30%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
  
    .section_ten .content .right .button {
      cursor: pointer;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 0.5rem 2rem;
      height: 60px;
      background: linear-gradient(90deg, #F7DF89 0%, #A17338 33.33%, #F7DF89 67.71%, #CFA250 85.94%, #A17338 100%);font-family: 'Poppins';
      font-style: normal;
      font-weight: 600;
      font-size: 1rem;
      line-height: 250%;
      color: #202020;
      border-radius: 6px;
      transition: all 0.3s ease-in-out;
    }
  
    .section_ten .content .right .button:hover {
      background: white;
      scale: 1.01;
      transition: all 0.3s ease-in-out;
    }
  
    .footer {
      position: relative;
      z-index: 0;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background: var(--color-black-primary);
      padding: 3rem 0rem;
    }
  
    .footer .header {
      width: 80%;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }
  
    .footer .header .image {
      width: 15%;
      margin: 0;
    }
  
    .footer .header .address h5 {
      font-weight: 600;
      font-size: 1.2rem;
      line-height: 150%;
      margin-top: 0.5rem;
    }
  
    .footer .header .address p {
      font-weight: 400;
      font-size: 1rem;
      line-height: 150%;
      color: #AEAEAE;
    }
  
    .footer .header .kominfo {
      gap: 1.5rem;
      justify-content: space-between;
      align-items: center;
    }

    .footer .header .kominfo .social-media {
      margin-top: 1rem;
      display: flex;
      flex-direction: row;
      gap: 1rem;
    }
  
    .footer .header .kominfo .social-media .image {
      width: fit-content;
      height: fit-content;
    }
  
    .footer .header .kominfo h5 {
      font-weight: 400;
      font-size: 1rem;
      line-height: 150%;
      color: #AEAEAE;
      margin-top: 0.5rem;
    }
  
    .footer .disclaimer {
      width: 80%;
      align-items: center;
      padding-top: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid #FFFFFF;
    }
  
    .footer .disclaimer h5 {
      font-style: italic;
      font-size: 1rem;
    }
  
    .footer .disclaimer p {
      color: #AEAEAE;
      font-size: 1rem;
    }
  
    .footer .copyright {
      display: flex;
      justify-content: left;
      width: 80%;
      padding-top: 1rem;
      padding-bottom: 1rem;
      font-style: italic;
    }
  
    .footer .copyright h5 {
      font-weight: 400;
      color: #AEAEAE;
      font-size: 1rem;
    }
}

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

  .mobile {
    display: none;
  }

  .desktop {
    display: block;
  }

  .hero .content .image {
    width: max-content;
    margin: 0px;
  }
  
  /* Hero Section Start */
  .hero {
    background-image: url(/assets/images/png/hero_section/bg_hero_section.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    z-index: 1;
    width: 100%;
  }

  .hero .content {
    margin: auto;
    width: 80%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 2rem;
    padding-bottom: 4rem;
  }

  .tagline h4 {
    font-size: 2.125rem;
    font-weight: 700;
    font-family: "Exo", sans-serif;
    line-height: 2.763rem;
  }

  .tagline h4 span {
    font-style: italic;
  }

  .tagline .primary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 1.2rem;
    padding-bottom: 2.4rem;
  }

  .tagline .primary h1 {
    font-size: 4rem;
    line-height: 4rem;
    font-weight: 700;
    font-family: "Exo", sans-serif;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--background-gold);
  }

  .tagline .primary h1 span {
    font-style: italic;
  }

  .tagline a {
    display: inline-block;
    padding: 1rem 1.5rem;
    background-color: var(--background-red);
    border-radius: 0.5rem;
    font-size: 1.3rem;
    font-weight: 500;
    font-family: "Exo", sans-serif;
    color: var(--color-white-prymary);
    font-style: italic;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
  }

  .tagline a:hover {
    color: var(--color-black-secondary);
    background-image: var(--background-gold);
    scale: 1.01;
    transition: all 0.3s ease-in-out;
  }

  .power_by h1 {
    font-size: 1rem;
    font-weight: 500;
    font-family: "Exo", sans-serif;
    font-style: italic;
    margin-bottom: 1rem;
  }

  .power_by .power_by_icon {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
  }

  .power_by .power_by_icon img {
    width: 40%;
  }
  /* Hero Section End */

  /* Section Two Start */
  .section_two {
    background-image: url(/assets/images/png/section_two/bg_slice.png);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-color: var(--color-black-prymary);
    position: relative;
    z-index: 0;
    width: 100%;
  }

  .section_two .row {
    margin: auto;
    width: 80%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 8rem;
    column-gap: 2rem;
  }

  .section_two .row .description {
    flex: 1 1 45rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .section_two .row .video {
    flex: 1 1 45rem;
    width: 100%;
    height: 100%;
  }

  .section_two .row .video .bg_youtube {
    margin-top: 1rem;
    margin-left: 1rem;
    width: 39.5%;
    height: 46%;
    /* background-image: var(--background-gold); */
    position: absolute;
    border-radius: 1rem;
    z-index: -1;
  }

  .section_two .row .video .youtube {
    height: 53%;
    position: relative;
    width: 100%; 
    border-radius: 1rem;
    box-shadow: 1rem 1rem #cfa250, 0rem 0rem #ccc;
    background-image: var(--background-gold);
  }

  .section_two .row .description h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 4.5rem;
    color: var(--color-white-prymary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_two .row .description .ringkasan {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    row-gap: 1.5rem;
    font-size: 1.2rem;
  }

  .section_two .row .description .ringkasan a {
    padding: 1rem 1.5rem;
    background-color: var(--background-red);
    border-radius: 0.5rem;
    font-size: 1.5rem;
    font-weight: 500;
    font-family: "Exo", sans-serif;
    color: var(--color-white-prymary);
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
  }

  .section_two .row .description .ringkasan a:hover {
    color: var(--color-black-secondary);
    background-image: var(--background-gold);
    scale: 1.01;
    transition: all 0.3s ease-in-out;
  }

  .section_two .row .description .ringkasan p span {
    font-weight: 700;
  }

  .section_two .row .description .underline_image {
    margin-top: -0.5rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    padding-right: 15%;
    margin-bottom: 2rem;
  }

  .section_two .row .description .underline_image img {
    width: 33%;
  }
  /* Section Two End */

  /* Section Three Start */
  .section_three {
    background-color: var(--color-white-prymary);
    position: relative;
    z-index: 0;
    width: 100%;
  }

  .section_three .content {
    margin: auto;
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5rem;
  }

  .section_three .content .title h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 4.5rem;
    color: var(--color-black-secondary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_three .content .title .underline_image {
    margin-top: -0.5rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    padding-right: 0%;
    margin-bottom: 2rem;
  }

  .section_three .content .title .underline_image img {
    width: 60%;
  }

  .section_three .content .card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 2rem;
  }

  .section_three .content .footer {
    background-color: var(--color-black-secondary);
    width: 70%;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    padding-block: 2rem;
    margin-bottom: 5rem;
  }

  .section_three .content .footer h1 {
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--background-gold);
  }

  .section_three .content .footer .description {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--background-gold);
  }
  
  .section_three .content .footer .desktop {
    display: block;
  }
  
  .section_three .content .footer .mobile {
    display: none;
  }

  .section_three .content .card img {
    filter: grayscale(300%);
  }

  .section_three .content .card img:hover {
    filter: none;
  }

  /* Section Three End */

  /* Section Four Start */
  .section_four {
    background-color: var(--color-white-prymary);
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
  }

  .section_four .background {
    width: 100%;
    height: 100%;
    background-color: var(--color-black-secondary);
    z-index: -1;
    border-top-left-radius: 1.2rem;
    border-top-right-radius: 1.2rem;
    padding: 3rem 0rem;
  }

  .section_four .content {
    margin: auto;
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 2rem;
  }

  .section_four .content .title h1 {
    margin-top: 0rem;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 4.5rem;
    color: var(--color-white-prymary);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .section_four .content .title h1 span {
    font-style: italic;
  }


  .section_four .content .title .underline_image {
    margin-top: -0.5rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-right: 0%;
  }

  .section_four .content .description {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2.5rem;
    color: var(--color-white-prymary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_four .content .card {
    width: 100%;
    height: 350px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 2rem;
    row-gap: 1rem;
  }

  .section_four .content .card .card_item {
    width: 35%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    row-gap: 1rem;
    background-color: #303030;
    padding: 2rem 2rem;
    border-radius: 1rem;
  }

  .section_four .content .card .card_item .image {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .section_four .content .footer {
    width: 70%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    column-gap: 2rem;
    background-image: var(--background-gold);
    padding-inline: 3rem;
    padding-block: 2rem;
    border-radius: 1rem;
  }

  .section_four .content .footer h1 {
    flex: 1 1 70%;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-black-secondary);
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
  }

  .section_four .content .footer h1 span{
    font-size: 2.5rem;
  }

  .section_four .content .footer .button_footer {
    flex: 1 1 35%;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
  }

  .section_four .content .footer .button_footer a {
    width: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: var(--color-black-secondary);
    padding-inline: 1rem;
    padding-block: 0.5rem;
    border-radius: 0.5rem;
    color: var(--color-white-prymary);
    font-style: italic;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    font-size: 1rem;
  }

  .section_four .content .footer .button_footer a:hover {
    background-color: var(--color-white-prymary);
    color: var(--color-black-secondary);
    font-weight: 500;
    scale: 1.01;
    transition: all 0.3s ease-in-out;
  }
  /* Section Four End */

  /* Section Five Start */
  .section_five {
    background-color: var(--color-black-secondary);
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100vh;
    display: flex;
  }

  .section_five .background {
    width: 100%;
    height: 100%;
    background-image: url(/assets/images/png/section_five/section_five_background.png);
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .section_five .content {
    margin: auto;
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    row-gap: 1rem;
  }

  .section_five .content h1 {
    font-size: 2.25rem;
    font-weight: 600;
    font-family: 'Exo';
    color: var(--color-white-prymary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  /* Section Five End */

  /* Section Six Start */
  .section_six {
    background-color: var(--color-black-prymary);
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
  }

  .section_six .background {
    width: 100%;
    height: 100%;
    background-color: var(--color-black-prymary);
    z-index: -1;
  }

  .section_six .background .content {
    margin: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_six .background .content .title .underline_image {
    margin-top: -0.2rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-right: 0%;
  }

  .section_six .background .content .title h1 {
    font-size: 2.3rem;
  }

  .section_six .background .content .title .underline_image .image {
    width: 30%;
    margin-left: 7rem;
  }

  .section_six .background .content .row {
    margin: auto;
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 2rem;
    column-gap: 2rem;
    
  }

  .section_six .background .content .row .left {
    width: 50%;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2%;
  }

  .section_six .background .content .row .right {
    width: 50%;
    border: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_six .background .content .row .right .image {
    width: 110%;
  }

  .section_six .background .content .row .right .mobile{
    display: none;
  }

  .section_six .background .content .row .right .desktop{
    display: flex;
  }

  .section_seven {
    background-color: var(--color-black-prymary);
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 5rem;
  }

  .section_seven .content {
    margin: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_seven .content .title .underline_image {
    margin-top: -0.2rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-right: 0%;
  }

  .section_seven .content .title h1 {
    font-size: 2.3rem;
  }

  .section_seven .content .title .underline_image .image {
    width: 30%;
  }

  .section_seven .content .row {
    margin-top: 2rem;
    width: 100%;
  }
  
  .section_seven .content .row .image {
    width: 100%;
  }

  .section_eight {
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .section_eight .content {
    margin: auto;
    width: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 10rem;
  }

  
  .section_eight .content .title h1 {
    color: var(--color-black-tertiary);
    font-size: 2.5rem;
  }

  .section_eight .content .description p {
    margin-top: 1rem;
    font-size: 1.5rem;
    text-align: center;
    color: var(--color-black-tertiary);
  }

  .section_eight .content .title .underline_image {
    margin-top: -0.2rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding-right: 0%;
  }

  .section_eight .content .title .underline_image .image {
    z-index: 9;
    width: 40%;
  }

  .section_eight .content .row {
    margin-top: 2rem;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .section_eight .content .rows {
    display:none;
  }
  
  .section_eight .content .row .image {
    width: 230px;
    filter: grayscale(100%);
  }
  
  .section_nine {
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .section_nine .content {
    margin: auto;
    width: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 10rem;
  }

  .section_nine .content .title h1 {
    font-size: 2.3rem;
    color: var(--color-black-tertiary);
  }

  .section_nine .content .title .underline_image {
    margin-top: -0.2rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding-right: 5%;
  }

  .section_nine .content .title .underline_image .image {
    width: 50%;
  }

  .section_nine .content .row {
    padding-top: 10rem;
    padding-bottom: 1rem;
    width: 80%;
    overflow: auto;
  }

  .section_nine .content .testimonials {
    width: fit-content;
    display: flex;
    gap: 1rem;
    z-index: 99;
  }

  .section_nine .content .row .testimonials .card {
    width: 355px;
    height: 485px;
    background: #303030;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section_nine .content .row .testimonials .card h1 {
    color: white;
    margin-top: 1rem;
    font-size: 1.8rem;
  }

  .section_nine .content .row .testimonials .card p {
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--background-gold);
  }

  .section_nine .content .row .testimonials .card span {
    color: white;
    margin-top: 1rem;
    text-align: center;
    padding: 1.5rem;
    font-size: 1rem;
  }

  .section_nine .content .row .testimonials .card .image {
    width: max-content;
    margin-top: -5rem;
    z-index: 99;
  }

  .section_nine .content .arrow{
    width: 80%;
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    padding: 1.5rem 0rem;
  }

  .section_nine .content  .arrow .left {
    cursor: pointer;
    width: auto;
  }

  .section_nine .content .arrow .right {
    width: auto;
    cursor: pointer;
  }

  .section_ten {
    padding: 5rem 0rem;
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
    background: white;
    flex-direction: column;
  }

  .section_ten .content {
    margin: auto;
    width: 80%;
    background: linear-gradient(90deg, #202020 0%, #141414 0.01%, #414141 42.19%, #101010 72.4%, #303030 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    height: 255px;
    margin-bottom: 5rem;
  }

  .section_ten .content .left {
    width: 70%;
    display: flex;
    gap: 2rem;
    justify-content: left;
    padding-left: 10rem;
    align-items: center;
  }

  .section_ten .content .left .title h1 {
    font-weight: 700;
    display: flex;
    font-size: 2.8rem;
    font-style: italic;
    flex-direction: column;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--background-gold);
  }
  
  .section_ten .content .left .title h2 {
    font-weight: 500;
    display: flex;
    font-size: 1.8rem;
    font-style: italic;
    flex-direction: column;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--background-gold);
  }

  .section_ten .content .right {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_ten .content .right .button {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0.7rem 2rem;
    height: 80px;
    background: linear-gradient(90deg, #F7DF89 0%, #A17338 33.33%, #F7DF89 67.71%, #CFA250 85.94%, #A17338 100%);font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 250%;
    color: #202020;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
  }

  .section_ten .content .right .button:hover {
    background: white;
    scale: 1.01;
    transition: all 0.3s ease-in-out;
    
  }

  .footer {
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--color-black-primary);
    padding: 3rem 0rem;
  }

  .footer .header {
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer .header .image {
    width: 15%;
    margin: 0;
  }

  .footer .header .address h5 {
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 150%;
    margin-top: 0.5rem;
  }

  .footer .header .address p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    color: #AEAEAE;
  }

  .footer .header .kominfo {
    gap: 1.5rem;
    justify-content: space-between;
    align-items: center;
  }

  .footer .header .kominfo .social-media {
    margin-top: 1rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }

  .footer .header .kominfo .social-media .image {
    width: fit-content;
    height: fit-content;
  }

  .footer .header .kominfo h5 {
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    color: #AEAEAE;
    margin-top: 0.5rem;
  }

  .footer .disclaimer {
    width: 80%;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #FFFFFF;
  }

  .footer .disclaimer h5 {
    font-style: italic;
    font-size: 1rem;
  }

  .footer .disclaimer p {
    color: #AEAEAE;
    font-size: 1rem;
  }

  .footer .copyright {
    display: flex;
    justify-content: left;
    width: 80%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-style: italic;
  }

  .footer .copyright h5 {
    font-weight: 400;
    color: #AEAEAE;
    font-size: 1rem;
  }
}





