/*
 * Author: Encik Sepi
 * Project name: Sihat.my
 * URL: http://sihat.my
 * Version: 1.0
 */

/* General */ 


/* Include */

@import url("animation.css");
@import url("dark-mode.css");
@import url("navbar.css");
@import url("page.css");
@import url("about-us.css");
@import url("plasto-fonts.css"); /* / PlastoLight / Plasto (normal / bold) / PlastoMed / PlastoSembd / PlastoBlack */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap'); /* font-family: 'Inter', sans-serif;*/
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap'); /* font-family: 'Space Mono', monospace; */



body {
  background-color: var(--beige-100);
  color: #141414;
  font-family: 'Plasto', sans-serif;
/*  padding: 0 1rem;*/
}

@media (max-width: 576px) {
  body {
/*    padding: 0 0.5rem;*/
  }
}

::-moz-selection { background-color: var(--yellow-400);}
::selection { background-color: var(--yellow-400); }


h1,h2,h3,h4,h5,h6 {
  font-family: 'Inter', sans-serif;
}

a {
  text-decoration: none;
}


textarea:focus, 
textarea.form-control:focus, 
input.form-control:focus, 
input[type=text]:focus, 
input[type=password]:focus, 
input[type=email]:focus, 
input[type=number]:focus, 
[type=text].form-control:focus, 
[type=password].form-control:focus, 
[type=email].form-control:focus, 
[type=tel].form-control:focus, 
[contenteditable].form-control:focus {
  box-shadow: inset 0 -1px 0 #ddd;
}

.mw-1200 {
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
}

.mw-1024 {
  margin-right: auto;
  margin-left: auto;
/*  max-width: 1200px;*/
  max-width: 1024px;
}

.p-lr {
  padding: 7rem 5rem;
} 

@media (max-width:920px) {
  .p-lr {
    padding: 5rem 3rem;
  } 
}

@media (max-width:576px) {
  .p-lr {
    padding: 4rem 1rem;
  } 
}

@media (max-width:320px) {
  .p-lr {
    padding: 3rem 0.5rem;
  } 
}

.box-shadow {
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 2.65546px 95px rgba(0,0,0,.1);
}

#features, #pricing {
  scroll-margin-top: 80px; /* Adjust the gap as needed */
}


/* Color */

:root {

  --primary-blue:#2d59e6;
  --primary-yellow:#FFDB00;
  --primary-grey: #f1f0ef;

  /* Blue */
  --blue-50: #eff5ff;
  --blue-100: #dce8fd;
  --blue-200: #c1d7fc;
  --blue-300: #96bdfa;
  --blue-400: #649af6;
  --blue-500: #4076f1;
  --blue-600: #2d59e6;
  --blue-700: #2243d3;
  --blue-800: #2238ab;
  --blue-900: #213387;
  --blue-950: #192252;

  /* Grey */
/*  --grey-50: #f7f6f5;
  --grey-100: #f1f0ef;
  --grey-200: #d7d4d1;
  --grey-300: #bdb8b4;
  --grey-400: #a29a95;
  --grey-500: #8f8580;
  --grey-600: #827874;
  --grey-700: #6d6361;
  --grey-800: #5b5351;
  --grey-900: #4b4443;
  --grey-950: #272423;*/


  /* Dark Mode */

  --darkmode-600: #444444; 
  --darkmode-700: #333333; 
  --darkmode-800: #222222;
  --darkmode-900: #111111;
  --darkmode-950: #000000;


  /* NEW */

  /* BEIGE */

  --beige-primary: #F7F2E2;
  --beige-50:  #fdfbf7;
  --beige-100: #fbf8ef;
  --beige-200: #f5f1df;
  --beige-300: #ede9cb;
  --beige-400: #e1dab1;
  --beige-500: #d5c992;
  --beige-600: #c1b170;
  --beige-700: #a99650;
  --beige-800: #8f7d37;
  --beige-900: #6f5f23;
  --beige-950: #493f15;


  /* YELLOW */

  --yellow-primary: #FED600;
  --yellow-50:  #fffee6;
  --yellow-100: #fffcc4;
  --yellow-200: #fff78a;
  --yellow-300: #fef041;
  --yellow-400: #fce317;
  --yellow-500: #fed600; /* Base color */
  --yellow-600: #e4b600;
  --yellow-700: #b38e00;
  --yellow-800: #8a6d00;
  --yellow-900: #705500;
  --yellow-950: #473500;


  /* GREY */

  --grey-primary: #222222; /* Base color */
  --grey-50: #f8f8f8; /* Very light grey */
  --grey-100: #e1e1e1;
  --grey-200: #cfcfcf;
  --grey-300: #b1b1b1;
  --grey-400: #9e9e9e;
  --grey-500: #7e7e7e; /* Neutral grey */
  --grey-600: #626262;
  --grey-700: #4b4b4b;
  --grey-800: #333333; /* Dark grey */
  --grey-900: #1e1e1e;
  --grey-950: #111111; /* Almost black */

}


/* Button */

.btn-sihat {
  font-family: 'Inter', sans-serif;
  background-color: var(--primary-blue);
  color: var(--yellow-50);
  padding:0.5rem 1rem;
  transition: all 0.3s ease;
  border: 0;
  padding: 0.8rem 3rem;
}

.btn-sihat-o {
  font-family: 'Inter', sans-serif;
  background-color: var(--primary-yellow);
  color: #000;
  padding:0.5rem 1rem;
  transition: all 0.3s ease;
  border: 0;
  padding: 0.8rem 3rem;
}


.btn-bcl {
  font-family: 'Inter', sans-serif;
  background-color: var(--primary-yellow);
  color: var(--grey-950);
  padding:0.5rem 1.25rem;
  transition: all 0.3s ease;
  border: 1px solid var(--primary-yellow);
  padding: 0.8rem 3rem;
}

.btn-bcl:hover {
  background-color: var(--primary-yellow);
  color: var(--grey-950);
  border: 1px solid var(--primary-yellow);
}

.btn-bcl-o {
  font-family: 'Inter', sans-serif;
  background-color: transparent;
  color: var(--grey-950);
  border: 2px solid var(--grey-950);
  padding:0.5rem 1.25rem;
  transition: all 0.3s ease;
  padding: 0.8rem 3rem;
}

.btn-bcl-o:hover {
  background-color: var(--primary-yellow);
  color: var(--grey-950);
}

/* Standard Heading */

.standard-heading h1 {
  font-weight: 800;
  font-size: 64px;
  color: #222;
}

.standard-heading h2 {
  font-family: 'Plasto', sans-serif;
  font-size: 22px;
  line-height: 1.5em;
  margin-bottom: 5rem;
  color: #555;
}

@media (max-width: 920px) {
  .standard-heading h1 {
    font-size: 48px;
  }
  .standard-heading h2 {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .standard-heading h1 {
    font-size: 32px;
  }

  .standard-heading h2 {
    font-size: 16px;
  }
}

/* Footer */

#footer {
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;

  padding: 1.5rem 2rem;
  border-radius: 24px;
  box-shadow: -5px -5px 7px rgba(226,221,215,.2);
  position: relative;
  z-index: 1;
/*  margin-bottom: 40px;*/
}

#footer .monomark {
  height: 32px;
}

#footer .logo {
  height: 24px;
  margin-left: 4px;
  margin-top: 2px;
}

#footer ul {
  margin-bottom: 0;
  padding-bottom: 0;
  font-family: 'PlastoMed', sans-serif;
}

#footer ul li {
  line-height: 2em;
  font-size: 16px;
  padding: 0;
  margin: 0;
}

#footer ul li a {
  font-weight: normal;
  text-decoration: none;
  color: var(--grey-950);
  padding: 8px 12px;
  border-radius: 40px;
  transition: all 0.4s ease-in-out;
}

#footer ul li a:hover {
  background-color: transparent;
  color: var(--yellow-primary);
}

/* Footer > Social Media */

#footer ul.social-media {
  text-align: right;
}

#footer ul.social-media li a {
  padding: 0 4px;
  font-weight: normal;
  color:var(--grey-950);
}

#footer ul.social-media li a:hover {
  background-color: transparent;
  color: var(--yellow-primary);
}

#footer ul.social-media i {
  font-size: 24px;
  vertical-align: middle;
  margin-top: -2px;
}

/* Footer > Copyright */

#footer .copyright {
  font-size: 13px;
  line-height: 32px;
  /*margin-right: 16px;*/
  position: absolute;
/*  right: 190px;*/
  right: 164px;
  text-transform: uppercase;
}

#footer .copyright small {
  font-size: 11px;
  color: #999;
}

@media (max-width: 768px) {
  #footer {
/*    margin-bottom: 32px;*/
  }
  #footer ul {
    text-align: center;
  }
  #footer ul.social-media {
    text-align: center;
    margin-bottom: 8px;
  }
  #footer .copyright {
    position: relative;
    right: 0;
    text-align: center;
  }
}

@media (max-width: 576px) {
  #footer {
   /* margin-bottom: 24px; */
  }
  #footer ul {
    list-style-type: circle;
  }
}

/* Footer > Company */

.company-footer {
  margin-top: 1rem;
  margin-bottom: 40px;
  font-size: 0.75rem;
  color: #777;
}

@media (max-width: 768px) {
  .company-footer {
    margin-bottom: 32px;
  }
}

@media (max-width: 576px) {
  .company-footer { 
    margin-bottom: 24px; 
  }
}

/* Main Index */


#begin {
  margin-top: -10rem;
  padding-top: 16rem;
  padding-bottom: 8rem;
  background: linear-gradient(to bottom, var(--yellow-200), var(--beige-100));
  text-align: center;
}

#begin h1 {
  font-weight: 800;
  font-size: 96px;
  color: #222;
  margin-bottom: 1rem;
}

#begin h2 {
  font-family: 'Plasto', sans-serif;
  font-size: 24px;
  line-height: 1.5em;
/*  width: 85%;*/
  margin-left: auto;
  margin-right: auto;
  color: #333;
}

#begin .btn-bcl {
  margin-top: 2rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 24px;
}

#begin .btn-bcl:hover {
  transform: scale(1.05);
}

#begin .btn-bcl i {
  font-size: 24px;
  vertical-align: middle;
}

#begin .remark {
  font-size: 12px;
  margin-top: 0.75rem;
  color: #555;
  font-style: italic;
}

@media (max-width: 920px) {
  #begin {
/*    padding: 5rem 2rem;*/
  }
  #begin h1 {
    font-size: 72px;
  }
  #begin h2 {
    width: 90%;
    font-size: 22px;
  }
  #begin .btn-bcl {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  #begin {
    margin-top: -10rem;
    padding-top: 13rem;
    padding-bottom: 4rem;
  }
  #begin h1 {
    font-size: 42px;
  }
  #begin h2 {
    width: 100%;
    font-size:18px;
  }
  #begin .btn-bcl {
    margin-top: 1rem;
    font-size: 18px;
    padding: 0.8rem 2rem;
  }
}


/* Phone Conversation Container */
#phone-conversation {
  padding: 0rem 0rem 8rem;
/*  background: linear-gradient(to bottom, var(--beige-100), var(--beige-100));*/
  background: rgb(254,247,140);
  background: radial-gradient(circle, rgba(254,247,140,1) 0%, rgba(251,248,239,1) 32%);
  text-align: center;
  position: relative;
}

/* Message Boxes */
#phone-conversation .msg-box {
  color: #333;
  padding: 1rem 1.5rem;
  font-size: 14px;
  text-align: left;
  width: 300px;
  margin: 0 auto;
  border-radius: 24px;
  position: absolute;
  opacity: 0; /* Initially hidden */
  transition: opacity 0.5s ease-in-out;
}

/* First Message */
#phone-conversation .msg-box.first {
  background-color: var(--yellow-200);
  z-index: 3;
  left: 0;
  right: 10%;
}

/* Second Message */
#phone-conversation .msg-box.second {
  background-color: var(--beige-200);
  top: 15%;
  left: 10%;
  right: 0;
  z-index: 3;
}

/* Third Message */
#phone-conversation .msg-box.third {
  background-color: var(--beige-200);
  top: 30%;
  left: 10%;
  right: 0;
  z-index: 3;
}

/* Message Box Triangles */
#phone-conversation .triangle-1,
#phone-conversation .triangle-2 {
  width: 0;
  height: 0;
  position: absolute;
  bottom: -14px;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
}

#phone-conversation .triangle-1 {
  border-bottom: 20px solid var(--yellow-200);
  transform: rotate(200deg);
}

#phone-conversation .triangle-2 {
  border-bottom: 20px solid var(--beige-200);
  transform: rotate(-200deg);
  right: 32px;
}

@media (max-width: 920px) {
  #phone-conversation {
    background: rgb(254,247,140);
    background: radial-gradient(circle, rgba(254,247,140,1) 0%, rgba(251,248,239,1) 80%);
  }
}

@media (max-width: 576px) {
  #phone-conversation .msg-box {
    font-size: 12px;
    width: 280px;
    padding: 1rem;
  }
  #phone-conversation .msg-box.first {
    right: 20%;
    top: 0;
  }
  #phone-conversation .msg-box.second {
    left: 20%;
    top: 15%;
  }
  #phone-conversation .msg-box.third {
    top: 30%;
    left: 20%;
  }
}

/* Phone Frame */


#phone-conversation .phone-frame {
  border: 4px solid #222;
  border-radius: 24px;
  width: 280px;
  margin: 0 auto;
  background-color: #222;
  position: relative;
  z-index: 2;
  transform: rotate(-5deg);
}

#phone-conversation .phone-frame .top {
  background-color: #222;
  height: 32px;
  border-radius: 24px 24px 0 0;
  border-bottom: 4px solid #222;
}

#phone-conversation .phone-frame .top i {
  color: white;
  font-size: 32px;
  margin-top: 0.2rem;
}

#phone-conversation .phone-frame .mid {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  height: 476px;
  border-radius: 16px;
  border: 6px solid #222;
}

#phone-conversation .phone-frame .bottom {
  background-color: #222;
  height: 64px;
  border-radius: 0 0 24px 24px;
  border-top: 4px solid #222;
}

#phone-conversation .phone-frame .bottom i {
  color: white;
  font-size: 48px;
}

@media (max-width: 576px) {
  #phone-conversation .phone-frame {
    width: 200px;
  }
  #phone-conversation .phone-frame .mid {
    height: 320px;
  }
}

/* Logo Bank */
#phone-conversation .logo-bank {
  background-color: white;
  padding: 1rem;
  border-radius: 16px;
  width: fit-content;
  margin: 0 auto;
  box-shadow: 5px 5px 7px rgba(226, 221, 215, 0.05);
  opacity: 1;
  transform: scale(1);
}

/* Logo Bank List */
#phone-conversation .logo-bank ul {
  margin: 0;
  padding: 0;
}

#phone-conversation .logo-bank ul li {
  padding: 0 8px;
  margin: 0;
}

#phone-conversation .logo-bank img {
  height: 44px;
}

#phone-conversation .right-1,
#phone-conversation .left-1,
#phone-conversation .right-2 {
  position: absolute;
  z-index: 1;
}

/* Right 1 */
#phone-conversation .right-1 {
  right: 0;
  left: 2%;
  bottom: 56%;
  transform: rotate(-2deg);
}

/* Left 1 */
#phone-conversation .left-1 {
  right: 2%;
  left: 0;
  bottom: 40%;
  transform: rotate(2deg);
}

#phone-conversation .logo-bank.right-1 img,
#phone-conversation .logo-bank.left-1 img {
  height: 36px;
}

/* Right 2 */
#phone-conversation .right-2 {
  right: 0;
  left: 0%;
  bottom: 24%;
  z-index: 2;
}

@media (max-width: 576px) {
  #phone-conversation {
    overflow-x: hidden;
    padding-top: 0.5rem;
  }
  #phone-conversation .logo-bank {
    padding: 0.75rem;
  }
  #phone-conversation .logo-bank.right-1 img,
  #phone-conversation .logo-bank.left-1 img,
  #phone-conversation .logo-bank img {
    height: 24px;
  }
  #phone-conversation .logo-bank ul li {
    padding: 4px;
    margin: 0;
  }
  #phone-conversation .right-1 {
    bottom: 64%;
  }
  #phone-conversation .left-1 {
    bottom: 48%;
  }
  #phone-conversation .right-2 {
    width: 400px;
    bottom: 32%;
    left: -2.5%;
  }
}

@media (max-width: 320px) {
  #phone-conversation .logo-bank.right-1 img,
  #phone-conversation .logo-bank.left-1 img,
  #phone-conversation .logo-bank img {
    height: 20px;
  }
  #phone-conversation .right-2 {
    left: -12.5%;
  }
}

/* WHO USE */

#who-use {}

#who-use.p-lr {
  padding-top: 0;
}

#who-use .title {
  font-family: 'Inter', sans-serif;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.1rem;
  color: #222;
}

#who-use ul {
  margin: 0;
  padding: 0;
}

#who-use ul li {
  margin: 0;
  padding: 0;
  padding-left: 20px;
  padding-right: 20px;
}

#who-use img {
  height: 40px;
  opacity: 0.95;
}

#who-use img.extra {
  height: 56px;
}

@media (max-width: 920px) {
  #who-use ul li {
    padding: 8px 16px;
  }
}

@media (max-width: 576px) {
  #who-use .title {
    font-size: 12px;
    margin-bottom: 1rem;
  }
  #who-use img {
    height: 32px;
  }
  #who-use img.extra {
    height: 40px;
  }
  #who-use ul li {
    padding:8px 4px;
  }
}


/* HOW IT WORKS */

#how-it-works {}

#how-it-works .standard-heading {
  margin-bottom: 7rem;
}

#how-it-works .box {
  background-color: white;
  padding: 1rem;
  border-radius: 24px;
}

#how-it-works .box.third {
  transform: rotate(3deg);
  filter: drop-shadow(0 18px 38px rgba(93, 56, 0, 0.1));
}

#how-it-works .box .image {
  text-align: center;
  padding: 2rem;
  position: relative;
  height: 100px;
}

#how-it-works .box .image img {
  height: 120px;
  position: absolute;
  top: -40px;
  left: 24px;
  opacity: 0.9;
}

#how-it-works .box .image img.one {
  animation: scaleUp 2s infinite alternate;
}

#how-it-works .box .image img.two {
  animation: scaleUp 2s infinite alternate;
  animation-delay: 2s;
}

#how-it-works .box .image img.three {
  animation: scaleUp 2s infinite alternate;
  animation-delay: 4s;
}

#how-it-works .box .feed {
  padding: 1rem 1rem 2rem;
}

#how-it-works .box .feed .title {
  font-weight: 600;
  font-size: 19px;
  display: flex;
  align-items: center; /* Align items vertically in the center */
  margin-bottom: 0.75rem;
}

#how-it-works .box .feed .title .number {
  font-size: 90%;
  text-align: center;
  height: 32px;
  width: 32px;
  line-height: 30px;
  margin-right: 0.75rem;
  position: relative;
  z-index:1; /* Ensure it's above the :before element */
  background-color: transparent;
}

#how-it-works .box .feed .title .number::after {
  content: '';
  border: 2px solid #222;
  border-radius: 50%;
  height: 32px;
  width: 32px;
  text-align: center;
  position: absolute;
  z-index:2;
  top: 0;
  left: 0;
}

#how-it-works .box .feed .title .number::before {
  content: '';
  background-color: var(--yellow-primary); /* Matches background of .number */
  height: 30px;
  width: 30px;
  position: absolute;
  border-radius: 50%;
  left: 5px;
  bottom: 2px;
  z-index: -1; /* Ensure it's below the .number border */
}

#how-it-works .box .feed .explain {
  color: #777;
}

/*#how-it-works .box.shariah {
  margin-top: 1rem;
  display: flex;
  align-items: center; 
  padding: 1rem 2rem;
}

#how-it-works .box.shariah .image {
  padding: 0.5rem 1rem;
}

#how-it-works .box.shariah .image img {
  position: relative;
  top: 0;
  left: 0;
  height: 80px;
  min-width: 100%;
}

#how-it-works .box.shariah .feed {
  padding: 1rem 2rem;
}

#how-it-works .box.shariah .feed .title {
  font-size: 16px;
  margin-bottom: 0.2rem;
}

#how-it-works .box.shariah .feed .explain {
  font-size: 15px;
}*/

@media (max-width: 920px) {
  #how-it-works .box {
    margin-bottom: 2rem;
  }
  #how-it-works .box.third {
    transform: rotate(1deg);
  }
  #how-it-works .box.statistic {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  #how-it-works .standard-heading {
    margin-bottom: 2rem;
  }
  #how-it-works .box {
    text-align: center;
  }
  #how-it-works .box .image img {
    height: 100px;
    top: -24px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
  }
  #how-it-works .box .feed .title {
    font-size: 18px;
    justify-content: center
  }
  #how-it-works .box .feed .title .number {
    height: 28px;
    width: 28px;
    line-height: 26px;
    margin-right: 0.5rem;
  }
  #how-it-works .box .feed .title .number::after {
    height: 28px;
    width: 28px;
  }

  #how-it-works .box .feed .title .number::before {
    height: 26px;
    width: 26px;
  }
}


/* How It Works > Statistic */

#how-it-works .box.statistic {
  margin-top: 1rem;
  display: flex;
  align-items: center; /* Align items vertically in the center */
  padding: 1rem 2rem 0.5rem;
  justify-content: space-evenly;
}

#how-it-works .box.statistic .image {
  padding: 0.5rem 1rem;
}

#how-it-works .box.statistic .image img {
  position: relative;
  top: 0;
  left: 0;
  height: 80px;
  min-width: 100%;
  animation: scaleUp 2s infinite alternate;
}

#how-it-works .box.statistic .feed {
  padding: 1rem 2rem;
}

#how-it-works .box.statistic .feed .title {
  font-size: 17px;
  margin-bottom: 0.5rem;
  border-bottom: 3px solid #222;
  width: fit-content;
  position: relative;
  z-index: 1;
  /*margin-left: auto;
  margin-right: auto;*/
}

#how-it-works .box.statistic .feed .title.deg {
  transform: rotate(-1deg);
}

#how-it-works .box.statistic .feed .title::before {
  content: '';
  background: linear-gradient(to right, var(--yellow-primary), transparent);
  width: 100%;
  height: 22px;
  border-radius: 16px 0 0 6px;
  position: absolute;
  z-index: -1;
  top: 0px;
  left: -6px;
}

#how-it-works .box.statistic .feed .revenue {
  font-size: 48px;
  font-weight: 600;
  line-height: 4rem;
}

@media (max-width: 576px) {
  #how-it-works .box.statistic {
    margin-top: 0rem;
  }
  #how-it-works .box.statistic .feed .title {
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  #how-it-works .box.statistic .feed .revenue {
    font-size: 32px;
  }
}

/* FEATURES LIST */

#features-list {
}


#features-list .box {
  background-color: white;
  padding: 3rem;
  border-radius: 24px;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  position: relative;
  transition: all 0.25s ease-in-out;
  width: 100%;
}

#features-list .box:hover {
  transform: scale(1.025);
}

#features-list .box .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 2rem;
  margin-bottom: 0.5rem;
}

#features-list .box .title.big {
  font-size: 250%;
  line-height: 3.2rem;
}

#features-list .box .explain {
  color: #777;
  font-size: 15px;
}

#features-list .box .creative {
  min-height: 120px;
}

#features-list .box.one {
  position: relative;
}

#features-list .box.one .creative {
  margin-bottom: 2rem;
}

#features-list .box.one .creative .logo-bank {
  margin-top: 0;
  margin-bottom: 1.2rem;
}

#features-list .box.one .creative .logo-bank img {
  height: 40px;
}

#features-list .box.one .creative .logo-bank ul {
  margin: 0;
  padding: 0;
}

#features-list .box.one .creative .logo-bank ul li {
  padding:8px 4px;
}

#features-list .box.one .creative .logo-bank.highlight {
  background: linear-gradient(to right, var(--beige-50), white);
  padding: 1rem 2rem;
  width: fit-content;
  border-radius: 16px;
  position: absolute;
  top: -1%;
  left: -1%;
  filter: drop-shadow(0 18px 38px rgba(93, 56, 0, 0.1));
  margin-bottom: 0;
  transform: rotate(0deg);
}

#features-list .box.one .creative .logo-bank.highlight img {
  height: 56px;
}


@media (max-width: 920px) {
  #features-list .box {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  #features-list .box {
    padding: 2.5rem;
  }
  #features-list .box .title {
    font-size: 21px;
    line-height: 1.8rem;
  }
  #features-list .box.one .creative .logo-bank ul li {
    padding:4px 2px;
  }
  #features-list .box.one .creative .logo-bank img {
    height: 32px;
  }
}

/* BOX TWO FEATURES */

#features-list .box.two {
  position: relative;
}

#features-list .box.two .creative {
  height: 120px;
}

#features-list .box.two .creative .cc-mockup {
  position: absolute;
  bottom: -32px;
  right: -32px;
  z-index: 0;
}

#features-list .box.two .creative .cc-mockup img {
  height: 220px;
}

#features-list .box.two .creative .logo-bank {
  text-align: center;
  width: fit-content;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-top: 1rem;
}

#features-list .box.two .creative .logo-bank ul {
  margin: 0;
  padding: 0;
}

#features-list .box.two .creative .logo-bank ul li {
  padding-left: 0px;
  padding-right: 0px;
}

#features-list .box.two .creative .logo-bank img {
  height: 40px;
}

@media (max-width: 920px) {
  #features-list .box.two .creative .cc-mockup img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  #features-list .box.two .creative {
    height: 100px;
  }
  #features-list .box.two .creative .cc-mockup {
    bottom: -16px;
    right: -16px;
  }
  #features-list .box.two .creative .cc-mockup img {
    height: 180px;
  }
  #features-list .box.two .creative .logo-bank img {
    height: 32px;
  }
}


/* BOX THREE FEATURES */

#features-list .box.three {
  padding-bottom: 0;
  position: relative;
}

#features-list .box.three .creative {
  
  bottom: 0px;
}

#features-list .box.three .creative .bnpl-logo {
  position: absolute;
  background-color: white;
  padding: 0.5rem;
  border-radius:8px;
  filter: drop-shadow(0 18px 38px rgba(93, 56, 0, 0.1));
  z-index: 1;
}

#features-list .box.three .creative .bnpl-logo.one {
  left: -16px;
  bottom: 10%;
}

#features-list .box.three .creative .bnpl-logo.two {
  bottom: 40%;
  right: 24px;
}

#features-list .box.three .creative .bnpl-logo img {
  height: 24px;
}

#features-list .box.three .creative .bnpl {

  position: absolute;
  bottom: 0;
  z-index: 0;
}

#features-list .box.three .creative .bnpl img {
  width: 80%;
}

@media (max-width: 920px) {
  #features-list .box.three .creative .bnpl-logo.one {
    left: -8px;
    bottom: 40%;
  }
}

@media (max-width: 576px) {
  #features-list .box.three .creative {
    height: 200px;
  }
}

/* BOX FOURTH FEATURES */

#features-list .box.fourth {
  padding-bottom: 0;
  position: relative;
  filter: drop-shadow(0 18px 38px rgba(93, 56, 0, 0.1));
}

#features-list .box.fourth .creative {
  position: absolute;
  right: 0;
  bottom: 0px;
}

#features-list .box.fourth .creative .qr {
  margin-top: 2rem;
  border: 2px solid #EB3E68;
  border-right: 0;
  border-bottom: 0;
  background-color: #EB3E68;
  border-radius: 32px 0 0 0;
}

#features-list .box.fourth .creative .qr img {
  height: 160px;
  border-radius: 32px 0 0 0;
}

@media (max-width: 576px) {
  #features-list .box.fourth .creative {
    position: relative;
    height: 150px;
  }
  #features-list .box.fourth .creative .qr {
    margin-top: 0;
    position: absolute;
    right: -2.5rem;
    bottom: 0;
  }
  #features-list .box.fourth .creative .qr img {
    height: 140px;
  }
}


/* BOX Fifth FEATURES */

#features-list .box.fifth {
  position: relative;
}

#features-list .box.fifth .creative {
  padding: 1rem 0 0;
  position: relative;
}

#features-list .box.fifth .creative .logo-bank {
  background-color: white;
}

#features-list .box.fifth .creative .logo-bank ul {
  padding: 0;
  margin: 0;
}

#features-list .box.fifth .creative .logo-bank ul li {
  padding:0px 2px 8px;
}

#features-list .box.fifth .creative .logo-bank img {
  height: 40px;
}


#features-list .box.fifth .creative .nation {
  background-color: white;
  padding:0.5rem 1rem;
  border-radius: 8px;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #777;
  position: absolute;
  right: 0;
}

#features-list .box.fifth .creative .nation img {
  height: 16px;
  margin-right: 0.2rem;
}

#features-list .box.fifth .creative .nation.thailand {
  filter: drop-shadow(0 18px 38px rgba(93, 56, 0, 0.1));
  bottom: 4rem;
  right: -3.5rem;
}

#features-list .box.fifth .creative .nation.singapore {
  bottom: 1rem;
  right: -2rem;
}

#features-list .box.fifth .creative .nation.indonesia {
  filter: drop-shadow(0 18px 38px rgba(93, 56, 0, 0.1));
  bottom: -2rem;
}

@media (max-width: 920px) {
  #features-list .box.fifth .creative .nation.indonesia {
    bottom: -2rem;
  }
}

@media (max-width: 320px) {
  #features-list .box.fifth .creative .logo-bank img {
    height: 32px;
  }
  #features-list .box.fifth .creative .nation.thailand {
    right: -2.5rem;
  }
}

/* BOX SIXTH FEATURES */

#features-list .box.sixth {
  position: relative;
  padding-bottom: 0;
}

#features-list .box.sixth .creative {
  margin-top: 2rem; 
  height: 150px;
}

#features-list .box.sixth .creative .installments {
  background-color: white;
  border: 3px solid white;
  border-radius: 16px;
  padding:10px 8px;

  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 90%;
  filter: drop-shadow(0 18px 38px rgba(93, 56, 0, 0.1));
}

#features-list .box.sixth .creative .installments img {
  border-radius: 16px;
}

@media (max-width: 920px) {
  #features-list .box.sixth .creative .installments {
    width: 300px;
    left: auto;
    right: -40px;
  }
}

@media (max-width: 576px) {
  #features-list .box.sixth .creative .installments {
    width: 280px;
    left: auto;
    right:-8px;
  }
}

/* BOX SEVENTH FEATURES */

#features-list .box.seventh {
  position: relative;
  padding-bottom: 0;
}

#features-list .box.seventh .creative {
  margin-top: 2rem; 
  position: relative;
}

#features-list .box.seventh .creative .web {
  width: 55%;
  border-radius: 24px 24px 0 0;
  margin-right: auto;
  margin-left: auto;
}

#features-list .box.seventh .creative .web img {
  border-radius: 24px 24px 0 0;
}

#features-list .box.seventh .creative .msg {
  padding: 0.75rem 1rem;
  border-radius: 16px;
  width: 220px;

  font-size: 13px;
  position: absolute;
}

#features-list .box.seventh .creative .msg.one {
  right: -5rem;
  bottom: 2rem;
  background-color: var(--yellow-100);
  filter: drop-shadow(0 18px 38px rgba(93, 56, 0, 0.1));
}

#features-list .box.seventh .creative .msg.two {
  left: -2rem;
  bottom: 5rem;
  background-color: var(--yellow-50);
}

#features-list .box.seventh .first-div {
  animation: fadeInOut 4s ease-in-out infinite; /* 4s total cycle, infinite looping */
}

#features-list .box.seventh .second-div {
  animation: fadeInOut 4s ease-in-out 2s infinite; /* 2s delay, so it starts after the first div */
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1; /* Fully visible */
  }
  50% {
    opacity: 1; /* Stay visible */
  }
  75% {
    opacity: 0; /* Start fading out */
  }
  100% {
    opacity: 0; /* Fully hidden */
  }
}

@media (max-width: 576px) {
  #features-list .box.seventh .creative .web {
    width: 100%;
  }
  #features-list .box.seventh .creative .msg {
    font-size: 12px;
  }
  #features-list .box.seventh .creative .msg.one {
    right: -2rem;
    bottom: 1rem;
  }

  #features-list .box.seventh .creative .msg.two {
    left: -2rem;
    bottom: 6rem;
  }
}

#features-list .box.willcome {
  padding: 1.5rem;
  margin-top: 4rem;
  background: linear-gradient(to right, var(--yellow-50), var(--beige-50));
  text-align: center;
}

#features-list .box.willcome .title {
  font-weight: normal;
  margin-bottom: 0;
}

@media (max-width: 920px) {
  #features-list .box.willcome {
    margin-top: 3rem;
  }
}

@media (max-width: 576px) {
  #features-list .box.willcome {
    margin-top: 2rem;
  }
}


/* Feedback */

#general-feedback {
  padding: 7rem 0;
  margin-top: 7rem;
}

#general-feedback h1 {
}

#general-feedback h2 {
  color: #555;
}

#general-feedback .box {
  padding:3rem;
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 400;
  color: #222;
  border-radius: 24px;
  background-color: white;
  position: relative;
  text-align: center;
}

#general-feedback .box span {
  background: linear-gradient(to right, var(--yellow-100), transparent);
  font-size: 105%;
  font-weight: 600;
}

#general-feedback .box.short {
  font-size: 32px;
  filter: drop-shadow(0 18px 38px rgba(93, 56, 0, 0.05));
  transform: rotate(0.5deg);
  margin-top: -1rem;
}

#general-feedback .box .person {
  font-size: 16px;
  line-height: 1.2rem;
  margin-top: 2rem;
  color: var(--grey-900);
  font-weight: normal;
}

#general-feedback .box .person .avatar {
  border-radius: 50%;
  height: 64px;
  width: 64px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

#general-feedback .box .person .avatar img {
  border-radius: 50%;
}

#general-feedback .box .person .name {
  margin-top: 0.5rem;
  font-weight: 500;
}

#general-feedback .box .person .company {
  font-size: 80%;
  color: var(--grey-500);
}

/*#general-feedback .box .name {
  font-family: 'PlastoMed', sans-serif;
  font-size: 15px;
  margin-top: 1rem;
  color: #222;
}*/

#general-feedback .box .rating {
  margin-bottom: 8px;
  padding-left: 8px;
}

#general-feedback .box .rating i {
  font-size: 22px;
  color: var(--yellow-500);
  margin-left: -4px;
}

.course-feedback-carousel {
  width: 100%;
}

.course-feedback-carousel .carousel-cell {
  width: 24%;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.course-feedback-carousel .flickity-page-dots {
  bottom: -40px;
}

.course-feedback-carousel .flickity-page-dots .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 3px;
    background: var(--yellow-primary);
    border-radius: 50%;
    opacity: .25;
    cursor: pointer;
}

.course-feedback-carousel .flickity-page-dots .dot.is-selected {
  opacity: 1;
}

@media (max-width: 920px) {
  #general-feedback {
    padding-left: 0;
    padding-right: 0;
    margin-top: 0;
  }
  .course-feedback-carousel .carousel-cell {
    width: 65%;
  }
}

@media (max-width: 576px) {
  #general-feedback {
    padding-left: 0;
    padding-right: 0;
    padding: 4rem 0;
  }
  #general-feedback .box {
    padding: 2rem;
    font-size: 16px;
  }
  #general-feedback .box.short {
    font-size: 20px;
  }
  #general-feedback .box .rating i {
    font-size: 18px;
  }
  #general-feedback .box .person {
    margin-top: 1rem;
  }
  #general-feedback .box .name {
    font-size: 13px;
  }
  .course-feedback-carousel .carousel-cell {
    width: 95%;
  }
  .course-feedback-carousel .flickity-page-dots{
    bottom: 0;
  }
}

@media (max-width: 320px) {
  #general-feedback {
    padding-left: 0;
    padding-right: 0;
  }
  .course-feedback-carousel .carousel-cell {
    width: 95%;
  }
}


/* PRICING */

#pricing {
  background: linear-gradient(to right, var(--yellow-50), var(--yellow-200));
  border-radius: 40px;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

#pricing .box {
  background-color: white;
  filter: drop-shadow(0 18px 38px rgba(93, 56, 0, 0.025));
}

#pricing .box.border-radius-top {
  border-radius: 24px 24px 0 0;
}

#pricing .box.border-radius-bottom {
  border-radius: 0 0 24px 24px;
}

#pricing .box .information,
#pricing .box .price {
  padding:2rem 2rem;
}

#pricing .box .highlight {
  font-size: 19px;
  font-weight: 600;
}

#pricing .box .information .sub {
  color: #777;
  font-size: 15px;
  line-height: 1.5rem;
}
#pricing .box .price .sub {
  color: #777;
  font-size: 14px;
  line-height: 1rem;
}

#pricing .box .bl {
  border-left: 3px solid var(--yellow-200);
}

#pricing .box .bb {
  border-bottom: 3px solid var(--yellow-200);
}

#pricing .box .information ul {
  padding: 0;
  margin: 0;
  margin-top: 0.5rem;
}

#pricing .box .information ul li {
  padding: 0;
  margin: 0;
}

#pricing .box .information img {
  height: 20px;
  opacity: 0.9;
}

#pricing .box .information i {
  color: var(--yellow-primary);
  margin-top: 8px;
}

#pricing .remark {
  font-size: 15px;
  margin-top: 2rem;
  text-align: center;
  color: #555;
}

#pricing .remark span {
  color: #C51E3A;
  font-size: 130%;
}

@media (max-width: 920px) {
  #pricing {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

@media (max-width: 576px) {
  #pricing {
    margin: 4rem 0.5rem;
    text-align: center;
  }
  #pricing .standard-heading {
    margin-bottom: 2rem;
  }
  #pricing .box .highlight {
    font-size: 18px;
  }
  #pricing .box .information .sub {
    font-size: 15px;
  }
  #pricing .box .bl,
  #pricing .box .bb {
    border: 0;
  }
  #pricing .box .bl.bb {
    border-bottom: 3px solid var(--yellow-200);
  }
  #pricing .box .information,
  #pricing .box .price {
    width: 100%;
  }
  #pricing .box .information {
    padding-bottom: 0;
  }
  #pricing .box .price {
    padding-top: 1rem;
  }
  #pricing .remark {
    margin-top: 1rem;
    font-size: 14px;
  }
  #pricing .box .price {
    background: linear-gradient(to right, white, var(--beige-100));
    margin-top: 1rem;
  }
  #pricing .box .price.border-radius-bottom-mobile {
    border-radius: 0 0 24px 24px;
  }
}

/* FAQ */

#faq {
/*  padding: 7rem 5rem;*/
}

#faq .box {
  font-family: 'Inter', sans-serif;
  background: white;
  padding:1.5rem 2rem;
  font-size: 18px;
  line-height: 1.6em;
  font-weight: 500;
  position: relative;
  border-radius: 16px;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

#faq .box.question:hover {
/*  color: var(--yellow-primary);*/
}

#faq .box.question:hover span {
  background: linear-gradient(to top, var(--yellow-primary) 40%, transparent 0%);
}

#faq .box.question.open {
/*  border: 2px solid var(--blue-500);*/
/*  color:var(--yellow-primary) ;*/
}

#faq .box.question i {
  font-size:20px;
  position: absolute;
  right: 2rem;
  transition: transform 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
  color: #222;
  z-index: 1;
}

#faq .box.question i::before {
  border: 2px solid #222;
  border-radius: 50%;
  padding: 4px;
}

#faq .box.question i::after {
  content: '';
  background-color: var(--yellow-primary);
  position: absolute;
  top: -6px;
  right: -3px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  z-index: -1;
}

#faq .box.question.open i {
  transform: translateY(-50%) rotate(45deg);
  color: #222;
}

#faq .box.question.open span {
  background: linear-gradient(to top, var(--yellow-primary) 40%, transparent 0%);
}

#faq .box.answered {
  margin-top: 8px;
  margin-bottom: 32px;
  background: var(--beige-50);
  padding: 2rem;
  font-size: 18px;
  font-weight: 400;
}

@media (max-width: 920px) {
  #faq .box {
    padding:1.5rem 8rem 1.5rem 2rem;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  #faq {
/*    padding:5rem 1rem;*/
  }
  #faq h1 {
    font-size: 24px;
  }
  #faq p {
    font-size: 16px;
    margin-bottom: 1.5rem;
  }
  #faq .box {
    margin-bottom: 0.5rem;
    padding:1.5rem 4rem 1.5rem 1.5rem;
  }
  #faq .box.question i {
    font-size:18px;
    right:1.5rem;
  }
  #faq .box.question.open i {
    transform: translateY(-50%) rotate(45deg);
  }
  #faq .box.question i::after {
    height: 28px;
    width: 28px;
  }
}

@media (max-width: 320px) {
  #faq {
  }
}