/*-------------------------------------------------------------- 
# Font Google
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/*-------------------------------------------------------------- 
# Root
--------------------------------------------------------------*/
:root {
    --primary-font: "Poppins",  sans-serif;
    --heading-font: "Raleway",  sans-serif;
    --default-color: #ffffff;
    --background-color: #ffffff;
    --primary-color: #010247;
    --accent-color: #d6a828;
    --heading-color: #2a2c39;
    --muted-color:#444;
    /* --nav-color: #ffffff;
    --nav-hover-color: #EB8317;
    --nav-mobile-background-color: #ffffff;
    --contrast-color: #ffffff; */
  }

:root {
    scroll-behavior: smooth;
  }

/* .light-background {
    --background-color: #f9f9f9;
    --surface-color: #ffffff;
} */
  
.dark-background {
    --heading-color:#ffffff;
    /* --background-color: #010247; */
    --background-color: linear-gradient(94deg, rgba(85,29,97,1) 0%, rgba(139,93,255,1) 100%);
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    color: var(--primary-color);
    background-color: var(--background-color);
    font-family: var(--primary-font);
  }
  
  a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
  }
  
  a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--heading-color);
  }

section,
.section {
  color: var(--primary-color);
  background: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 77px;
  overflow: clip;
}

.section-title {
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--primary-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  font-family: var(--heading-font);
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}
.section-title span {
  color: var(--accent-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(255, 255, 255, 0);
    --heading-color: #ffffff;
    color: var(--primary-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
  }
  
  .header .logo {
    line-height: 1;
  }
  
  .header .logo img {
    max-height: 32px;
    margin-right: 8px;
  }
  
  .header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
  }
  
  .scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  }
  
  /* Header on Scroll
  ------------------------------*/
  .scrolled .header {
    --background-color: rgba(1, 2, 71, .7);
  }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop */
@media (min-width: 1200px) {
    .navmenu {
      padding: 0;
    }
  
    .navmenu ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }
  
    .navmenu li {
      position: relative;
      margin-left: 5px;
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: var(--default-color);
      padding: 8px 20px;
      font-size: 14px;
      font-weight: 400;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
      border-radius: 50px;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      transition: 0.3s;
    }
  
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
      background-color: var(--accent-color);
    }
    .navmenu .dropdown ul {
      margin: 0;
      padding: 10px 0;
      background: linear-gradient(180deg, rgba(85,29,97,.7) 0%, rgba(139,93,255,.7) 100%);
      display: block;
      position: absolute;
      visibility: hidden;
      left: 0;
      top: 130%;
      opacity: 0;
      transition: 0.3s;
      border: 1px solid rgba(255, 255, 255, 0.125);
      border-radius: 15px;
      z-index: 99;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(7px) saturate(180%);
      -webkit-backdrop-filter: blur(7px) saturate(180%);
    }
  
    .navmenu .dropdown ul li {
      min-width: 200px;
      margin-left: 0;
    }
  
    .navmenu .dropdown ul a {
      padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      color: var(--default-color);
    }
  
    .navmenu .dropdown ul a i {
      font-size: 12px;
    }
  
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul li:hover>a {
      background-color: transparent;
      color: var(--accent-color);
    }
    .navmenu .dropdown ul .active:hover {
      background-color: var(--accent-color);
      color: var(--default-color);
    }
  
    .navmenu .dropdown:hover>ul {
      opacity: 1;
      top: 105%;
      visibility: visible;
    }
  
    .navmenu .dropdown .dropdown ul {
      top: 0;
      left: -90%;
      visibility: hidden;
    }
  
    .navmenu .dropdown .dropdown:hover>ul {
      opacity: 1;
      top: 0;
      left: -100%;
      visibility: visible;
    }
  
  }
  
  /* Mobile */
  @media (max-width: 1199px) {
    .navmenu a, .navmenu a:focus {
      padding: 10px 20px;
      font-size: 17px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
      color: var(--primary-color);
    }
    .navmenu .active, .navmenu .active:focus {
        color: var(--accent-color);
    }
    .navmenu a i, .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: 0.3s;
      background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }
    .navmenu .dropdown ul {
      position: static;
      display: none;
      z-index: 99;
      padding: 10px 0;
      margin: 10px 20px;
      background-color: var(--default-color);
      border: 1px solid color-mix(in srgb, var(--muted-color), transparent 90%);
      box-shadow: none;
      transition: all 0.5s ease-in-out;
    }
    .navmenu .dropdown>.dropdown-active {
      display: block;
      background-color: rgba(33, 37, 41, 0.03);
    }
    .mobile-nav-toggle {
      color: var(--default-color);
      font-size: 28px;
      line-height: 0;
      margin-right: 10px;
      cursor: pointer;
      transition: color 0.3s;
    }
  
    .navmenu {
      padding: 0;
      z-index: 9997;
    }
  
    .navmenu ul {
      display: none;
      list-style: none;
      position: absolute;
      inset: 60px 20px 20px 20px;
      padding: 10px 0;
      margin: 0;
      border-radius: 6px;
      background-color: var(--default-color);
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
  
    .mobile-nav-active {
      overflow: hidden;
    }
  
    .mobile-nav-active .mobile-nav-toggle {
      color: #fff;
      position: absolute;
      font-size: 32px;
      top: 15px;
      right: 15px;
      margin-right: 0;
      z-index: 9999;
    }
  
    .mobile-nav-active .navmenu {
      position: fixed;
      overflow: hidden;
      inset: 0;
      background: rgba(33, 37, 41, 0.8);
      transition: 0.3s;
    }
  
    .mobile-nav-active .navmenu>ul {
      display: block;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* PC */
.hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #010247 url(../img/bg-hero.png) no-repeat fixed bottom;
  background-size: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}
.hero .hero-img {
  position: absolute;
  bottom: -15%;
  left: 0;
}
.hero .hero-content {
  min-height: 75vh;
  padding-top: 7rem;
  justify-content: end;
}
.hero h4 {
  font-family: var(--heading-font);
  text-transform: uppercase;
  font-weight: 300;
}
.hero h2 {
  font-family: var(--heading-font);
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h2 span {
  color: var(--primary-color);
}

.hero p {
  max-width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  animation-delay: 0.8s;
  color: var(--default-color);
  background-color: var(--accent-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--default-color);
  text-decoration: none;
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/* Responsive */
@media (min-width: 1024px) {
  .hero p {
    max-width: 60%;
  }
}

@media (max-width: 768px) {
  .hero {
    background-position: center;
    background-size: cover;
  }
  .hero .carousel-container {
    min-height: 90vh;
  }
  .hero h2 {
    font-size: 26px;
  }
  .hero h4 {
    font-size: 1rem;
  }
  .hero-content {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# HowTo Section
--------------------------------------------------------------*/
/* PC */
.howto .howto-item {
  background-color: var(--default-color);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 10px 30px 10px 70px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  height: 100%;
  overflow: hidden;
}
.howto .howto-item .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 25px);
}
.howto .howto-item .icon i {
  font-size: 48px;
  line-height: 1;
  transition: 0.5s;
}
.howto .howto-item h5 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 16px;
  transition: ease-in-out 0.3s;
}
.howto .howto-item:hover {
  transform: translateY(-10px);
}
.howto .howto-item:hover h5 {
  color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
  #howto{
    padding-bottom: 0;
  }
}

/*--------------------------------------------------------------
# Paradikma Section
--------------------------------------------------------------*/
.paradikma.dark-background {
  background: #572067 url(../../assets/img/bg-hero.png);
}
.paradikma-title:after {
  content: "";
  border-bottom: 2px solid #fff;
  position: absolute;
  bottom: 0;
  width: 10%;
}
.paradikma ul {
  list-style: none;
  padding: 0;
}
.paradikma ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}
.paradikma ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}
.paradikma .icon-bg {
  position: absolute;
  bottom: -20%;
  right: -5%;
  transform: rotate(-35deg);
  opacity: .15;
}
.paradikma .icon-bg i {
  font-size: 9rem;
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Kendala Section
--------------------------------------------------------------*/
/* PC */
.kendala img.section-img {
  width: 100%;
  border-radius: 100px 7px;
  border: 3px dashed #572067;
  padding: .5rem;
}

/* Responsive */
@media (max-width: 768px) {
  #kendala {
    padding-bottom: 0;
  }
}

/*--------------------------------------------------------------
# Benefit Section
--------------------------------------------------------------*/
.benefit .icon-card {
  position: absolute;
  height: 70px;
  left: -5%;
  /* opacity: .3; */
}
.benefit .icon-card i {
  font-size: 70px;
  line-height: 35px;
}
.benefit .card {
  transition: all ease-in-out 0.3s;
}
.benefit .card:hover {
  transform: translateY(-10px);
}
.benefit .card:hover p {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimoni .testimonial-item {
  /* background-color: var(--default-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); */
  box-sizing: content-box;
  margin: 30px 0;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
}

.testimoni .testimonial-item .testimonial-img {
  width: 60%;
}

.testimoni .swiper-wrapper {
  height: auto;
}

.testimoni .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimoni .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--muted-color), transparent 85%);
  opacity: 1;
}

.testimoni .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimoni .testimonial-wrap {
    padding-left: 0;
  }

  .testimoni .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimoni .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Kontak Kami
--------------------------------------------------------------*/
/* PC */
#kontak img {
  top: 15%;
}
.kontak .kontak-title {
  text-align: center;
  font-family: 'Raleway', sans-serif;
}
.kontak .kontak-title h1 {
  font-size: 48px;
  font-weight: bold;
}
.kontak .card-body {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.contact-info {
  background: linear-gradient(215deg, #e056fd -9%, #4E2D8B 40%, #4E2D8B 70%, rgba(79, 172, 254, .1) 95%);
  padding: 4rem 2rem;
  border-radius: 25px;
  color: #fff;
}
.kontak .ci-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.kontak .ci-content .icon-ci {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
}
.ci-content .icon-ci i {
  color: #4e2d8b;
  font-size: 18px;
  line-height: 32px;
}
.contact-info .sosmed {
  display: flex;
  gap: 1.5rem;
  margin-top: 5rem;
  margin-left: 1rem;
}
.kontak input.form-control {
  border: 0;
  border-bottom: 1px solid #888;
  border-radius: 0;
  padding: 1.5rem 0;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width:768px) {
  .kontak .card-body {
    flex-direction: column;
  }
  #kontak img {
    top: 25%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    color: var(--primary-color);
    background-color: var(--background-color);
    font-size: 14px;
    text-align: center;
    padding: 30px 0;
    position: relative;
  }
  
  .footer h3 {
    font-size: 36px;
    font-weight: 700;
    position: relative;
    padding: 0;
    margin: 0 0 15px 0;
  }
  
  .footer p {
    font-size: 15;
    font-style: italic;
    padding: 0;
    margin: 0 0 30px 0;
  }
  
  .footer .social-links {
    margin: 0 0 30px 0;
  }
  
  .footer .social-links a {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: var(--default-color);
    line-height: 1;
    margin: 0 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }
  
  .footer .social-links a:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    text-decoration: none;
  }
  
  .footer .copyright {
    padding-top: 25px;
    border-top: 1px solid color-mix(in srgb, var(--primary-color), transparent 90%);
  }
  
  .footer .credits {
    font-size: 13px;
    padding-top: 5px;
  }
  
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
  #preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background-color);
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
  }
  
  #preloader:before,
  #preloader:after {
    content: "";
    position: absolute;
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  }
  
  #preloader:after {
    animation-delay: -0.5s;
  }
  
  @keyframes animate-preloader {
    0% {
      width: 10px;
      height: 10px;
      top: calc(50% - 5px);
      left: calc(50% - 5px);
      opacity: 1;
    }
  
    100% {
      width: 72px;
      height: 72px;
      top: calc(50% - 36px);
      left: calc(50% - 36px);
      opacity: 0;
    }
  }
  
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
  .scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
  }
  
  .scroll-top i {
    font-size: 24px;
    color: var(--default-color);
    line-height: 0;
  }
  
  .scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--default-color);
  }
  
  .scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
  }
