/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #151515;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2696f1;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #312f2f;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --paper-color: #eee8cf;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.905);
  /* The default color of the main navmenu links */
  --nav-hover-color: #51c8ff;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */

  --nav-dropdown-background-color: rgba(255, 255, 255, 0.8);
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #000000;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2597cc;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --background-color-box: #ffffff;
  --default-color: #ffffff;
  --default-color-slogan: #65bdf0;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #2a2727;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-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);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0.8);
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 10px;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  color: #f9f9f9;
  font-size: 14px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 14px;
  padding: 8px 30px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--default-color);
  background: var(--accent-color);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  /* old
  --background-color: rgba(0, 0, 0, 0); */
  --background-color: rgba(04, 51, 78, 0.6);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: rgba(04, 51, 78, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - 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;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    background-color: var(--nav-dropdown-hover-color);
    color: #ffffff;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    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;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-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(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .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), white 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: color-mix(in srgb, var(--accent-color), white 90%);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    background-color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .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;
  }


}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: rgba(04, 51, 78, 0.9);

  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding: 50px 0;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 10%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 10px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-left: 5px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  margin-top: -5px;
  margin-left: 26px;
  font-size: 13px;
  font-family: var(--heading-font);
  color: #cecece;
}

.footer .footer-about h5 {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  color: #00d9ff;
}

.footer .footer-contact span {
  color: #ffffff;
  margin-left: 10px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--heading-font);
}


.footer .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--default-color) 5%, white 10%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  font-size: 30px;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 4px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 30px 0;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #000;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 22px;
  bottom: 75px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable Scrol Top on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
  .scroll-top.active {
    visibility: hidden;
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}


.page-title .heading {
  padding: 40px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}



/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 80px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 58px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 18px;
  font-weight: 500;
  padding: 0px 0px 0px 4px;
  line-height: 1px;
  margin-left: -10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2 {
  position: relative;
  /* Dibutuhkan untuk posisi elemen pseudo */
  display: inline-block;
  /* Supaya elemen sesuai ukuran teks */
}

.section-title h2::before,
.section-title h2::after {
  content: "";
  position: absolute;
  height: 1px;
  background: var(--accent-color);
  box-shadow: -9px -8px 10px -5px rgba(0, 0, 0, 1);
  border-radius: 5px;
  /* Efek melengkung */
}

/* Garis atas */
.section-title h2::before {
  top: -20px;
  /* Posisikan di atas teks */
  left: -15px;
  width: 150%;
  /* Lebar penuh elemen teks */
}

/* Garis samping */
.section-title h2::after {
  top: -20px;
  /* Posisikan di tengah teks */
  left: -15px;
  /* Jarak ke kiri */
  height: 75px;
  /* Panjang garis samping */
  width: 1px;
}

.section-title p {
  color: var(--heading-color);
  margin-left: -10px;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);

}

.content h4 {
  font-size: 1.4rem;
  overflow: hidden;
}

.content h4::after {
  content: "";
  display: inline-block;
  height: 0.5em;
  vertical-align: bottom;
  width: 100%;
  margin-right: -100%;
  margin-left: 10px;
  border-top: 1px solid rgb(189, 189, 189);
}

.content h4::before {
  content: "";
  display: inline-block;
  height: 0.5em;
  vertical-align: bottom;
  width: 100%;
  margin-right: -100%;
  margin-left: 0px;
  border-right: 2px solid rgb(189, 189, 189);
}


.content p {
  text-align: justify;
  padding-right: 10px;

}





/* Start Mobile Device */
@media (max-width: 768px) {
  .section-title {
    padding-bottom: 20px;
    position: relative;
  }

  .section-title h2 {
    font-size: 12px;
    font-weight: 700;

  }

  .section-title h2::after {
    content: "";
    width: 10%;
    height: 1px;
    display: inline-block;
    background: var(--paper-color);
    margin: 4px 10px;
  }

  .section-title h2::before,
  .section-title h2::after {
    content: "";
    position: absolute;
    height: 1px;
    background: #999;
    box-shadow: -9px -8px 10px -5px rgba(0, 0, 0, 1);
    border-radius: 5px;
    /* Efek melengkung */
  }

  /* Garis atas */
  .section-title h2::before {
    top: -20px;
    /* Posisikan di atas teks */
    left: -8px;
    width: 120%;
    /* Lebar penuh elemen teks */
  }

  /* Garis samping */
  .section-title h2::after {
    top: -23px;
    /* Posisikan di tengah teks */
    left: -18px;
    /* Jarak ke kiri */
    height: 25px;
    /* Panjang garis samping */
    width: 1px;
  }

  .section-title p {
    font-size: 22px;
    text-transform: uppercase;
  }
}

/* End Mobile Device */


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 3;

}

.hero .video {
  background-size: 100% auto;
  object-fit: cover;
  z-index: 1;
  position: absolute;
  background-position: center top;
  opacity: 100%;

}


/* Audio Control Start */
#audio-control i {
  cursor: pointer;
  padding: 10px 20px;
  color: #fff;
  border-radius: 4px;
  display: inline-block;
  position: absolute;
  z-index: 2;
  left: 0%;
  bottom: 1%;
  zoom: 1.2;
}

#volume-control {
  width: 70px;
  zoom: 0.8;
  margin-left: 10px;
  cursor: pointer;
  padding: 10px 0px;
  color: #fff;
  border-radius: 4px;
  display: inline-block;
  position: absolute;
  z-index: 2;
  left: 3%;
  bottom: 1.7%;
}

.audio-volume p i {
  width: 100px;
  position: absolute;
  font-size: 9px;
  font-style: normal;
  z-index: 3;
  color: #ffffff;
  left: 3.5%;
  bottom: 0.8%;
  overflow: hidden;
}

.audio-text p i {
  width: 100px;
  position: absolute;
  font-size: 11px;
  font-style: normal;
  z-index: 3;
  color: #ffffff;
  left: 1%;
  bottom: 4.2%;
  overflow: hidden;
}

@keyframes blinker {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.blink {
  text-decoration: blink;
  animation-name: blinker;
  animation-duration: 0.6s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}



/* Neon Teks Satisfaction Start */

@font-face {
  font-family: 'neon';
  src: url('../font/Lefestin.ttf') format('truetype');
}

#neon {
  margin: auto;
  margin-top: 15px;
  top: 0;
  left: 0;
  right: 0;
  height: 1vh;
  line-height: 1vh;
  text-align: center;
  font-size: 2vh;
  font-family: neon;
  color: rgb(216, 241, 255);
  text-shadow: 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 1vh var(--lights);
  animation: flicker 7s infinite;
  filter: brightness(1);
}

@keyframes flicker {
  9% {
    text-shadow: 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 1vh var(--lights);
    ;
    filter: brightness(1)
  }

  10% {
    text-shadow: none;
    filter: brightness(.4);
  }

  11% {
    text-shadow: 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 1vh var(--lights);
    ;
    filter: brightness(1)
  }

  12% {
    text-shadow: none;
    filter: brightness(.4);
  }

  13% {
    text-shadow: 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 1vh var(--lights);
    ;
    filter: brightness(1)
  }

  66% {
    text-shadow: 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 1vh var(--lights);
    ;
    filter: brightness(1)
  }

  67% {
    text-shadow: none;
    filter: brightness(.4);
  }

  75% {
    text-shadow: none;
    filter: brightness(.4);
  }

  76% {
    text-shadow: 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 1vh var(--lights);
    ;
    filter: brightness(1)
  }
}

/* Neon Teks Satisfaction End */








.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  background-size: cover !important;

}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(0, 147, 233, 0, 5);
  background-image: linear-gradient(180deg, rgba(0, 162, 255, 0.4) 0%, rgba(128, 208, 199, 0) 30%, rgba(128, 208, 199, 0) 70%, rgba(0, 0, 0, 1) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  margin: 0;
}

.hero .company h2 {
  margin: 0;
  font-size: 2.6vw;
  font-weight: 700;
  font-family: var(--nav-font);
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}


/* Efek Kilau Teks Start */
.hero .shine {
  color: #ffffff;
  background: linear-gradient(115deg, #ffffff 0, #ccefff 6%, #ff3b3b 10%, #ffffff 12%, #ffffff 100%);
  background-position: 170%;
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 10s infinite linear;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

@keyframes shine {
  0% {
    background-position: 100%;
  }

  65% {
    background-position: 80%;
  }

  100% {
    background-position: -100%;
  }
}


/* Efek Kilau Teks End */


.hero h2 span {
  color: var(--accent-color);
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color-slogan), transparent 30%);
}


.hero .box-menu {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 1px;
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  overflow: hidden;
  margin-bottom: 3%;
}


.hero .box-menu .icon-box {
  padding: 10px 20px;
  /* Jarak internal (padding) */
  height: 100%;
  /* Sesuaikan tinggi elemen dengan container */
  text-align: center;
  /* Pusatkan teks */
  display: flex;
  /* Gunakan Flexbox untuk tata letak */
  flex-direction: column;
  /* Susun elemen dalam kolom */
  align-items: center;
  /* Pusatkan elemen secara horizontal */
  justify-content: center;
  /* Pusatkan elemen secara vertikal */
  /* Efek blur kaca */
  background: rgba(255, 255, 255, 0.2);
  /* Latar belakang semi-transparan */
  border-radius: 10px;
  /* Sudut membulat */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  /* Bayangan halus */
  backdrop-filter: blur(20px);
  /* Efek blur kaca */
  -webkit-backdrop-filter: blur(10px);
  /* Efek blur untuk Safari */
  border: 1px solid rgba(255, 255, 255, 0.3);
  /* Garis luar semi-transparan */
  overflow: hidden;
  margin-bottom: 5px;
  margin-top: 5px;
}

.hero .box-menu .icon-box i {
  line-height: 1;
  color: var(--accent-color);
}

.hero .box-menu .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 15px;
  line-height: 26px;
  transition: 0.3s;
}

.hero .box-menu .icon-box:hover {
  border: 1px solid rgba(255, 255, 255);
  background: color-mix(in srgb, var(--background-color-box), transparent 80%);
  box-shadow: 1px 1px 7px 1px rgba(159, 216, 255, 0.904);
  box-shadow: 0 0 2px 2px rgba(104, 180, 252, 0.904), 0 0 4px 4px rgba(255, 45, 45, 0.904);
  transition: ease-in-out 0.3s;
}

/* Start Effect SHine Hover Box-menu */
.icon-box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.4), transparent);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
  transition: all 0.1s ease-in-out;
}

.icon-box:hover:after {
  width: 120%;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* End Effect SHine Hover Box-menu */


.hero .box-menu .icon-box:hover h3 {
  font-size: 14px;
  transition: ease-in-out 0.3s;
}

.hero .box-menu .icon-box img {
  position: relative;
  opacity: 1;
  transition: 0.3s;
  display: block;
  /* Mengubah gambar menjadi elemen block-level */
  margin-left: auto;
  /* Memberikan margin otomatis di sebelah kiri */
  margin-right: auto;
  /* Memberikan margin otomatis di sebelah kanan */
  width: auto;

  /* Agar gambar tidak lebih lebar dari kontainer */
}

.hero .box-menu .icon-box:hover img {
  transform: scale(1.1);
  /* Zoom-in effect */
  filter: brightness(1.2);
}


.hero .avatar {
  width: 120px;
  height: 122px;
  background-size: cover;
  background-repeat: no-repeat;
  margin: auto;
  margin-bottom: 30px;
  border-radius: 17px;
  margin-top: -5%;
}


#logo {
  position: absolute;
  margin: auto;
  align-items: center;
  width: 120px;
  height: 122px;
  overflow: hidden;


}

#logo img {
  width: 120px;
  height: 122px;
  padding: 0px;
}

#logo:before {
  z-index: 3;
  content: '';
  position: absolute;
  top: 0;
  left: -100px;
  width: 70px;
  height: 122px;
  background: rgba(0, 0, 0, 0.3);
  transform: skewX(-25deg);
  animation-name: slide;
  animation-duration: 10s;
  animation-timing-function: ease-in-out;
  animation-delay: 4s;
  animation-iteration-count: infinite;

}

@keyframes slide {
  0% {
    left: -120px;
    top: 0;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0.0) 0%,
        rgba(255, 255, 255, 0.13) 45%,
        rgba(255, 255, 255, 0.3) 82%,
        rgba(255, 255, 255, 0.0) 100%);
    transition: all 0.2s ease-in-out;

  }

  30% {
    left: 1200px;
    top: 0px;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0.0) 0%,
        rgba(255, 255, 255, 0.13) 65%,
        rgba(255, 255, 255, .5) 90%,
        rgba(255, 255, 255, 0.0) 100%);

  }

  100% {
    left: 2220px;
    top: 0px;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0.0) 0%,
        rgba(255, 255, 255, 0) 75%,
        rgba(255, 255, 255, 0) 82%,
        rgba(255, 255, 255, 0.0) 100%);
    animation-duration: 20s;


  }
}



.hero .container .addres {
  top: 100%;
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-content: center;
  padding: 10px;
  column-gap: 30px;
}


.addres1 {
  background-repeat: no-repeat;
  align-items: flex-start;
  text-align: right;
}

.addres1 h6 {
  margin-bottom: -6px;
  margin-top: 10px;
  font-size: 15px;
  font-weight: bold;
}

.addres1 h5 {
  font-size: 14px;
  font-weight: bold;
}

.addres1 p {
  font-size: 13px;
  color: #a2f4f7;
}

.addres2 {
  background-repeat: no-repeat;
  align-items: flex-start;
  text-align: left;
}

.addres2 h6 {
  margin-bottom: -6px;
  margin-top: 10px;
  font-size: 15px;
  font-weight: bold;
}

.addres2 p {
  font-size: 13px;
  color: #a2f4f7;
}




@media (max-width: 768px) {

  .hero .company h2 {
    font-size: 3vh;
  }

  .hero .company p {
    font-size: 14px;
  }

  .hero .icon-box img {
    opacity: 1;
    transition: 0.3s;
    display: block;
    /* Mengubah gambar menjadi elemen block-level */
    margin-left: auto;
    /* Memberikan margin otomatis di sebelah kiri */
    margin-right: auto;
    /* Memberikan margin otomatis di sebelah kanan */
    width: auto;
    /* Agar gambar tidak lebih lebar dari kontainer */
  }

  .hero .avatar {
    width: 90px;
    height: 92px;
    background-size: cover;
    background-repeat: no-repeat;
    margin: auto;
    margin-bottom: 30px;
    border-radius: 17px;
  }

  #logo {
    position: absolute;
    margin: auto;
    align-items: center;
    width: 90px;
    height: 92px;
    overflow: hidden;
  }

  #logo img {
    width: 90px;
    height: 92px;
    padding: 0px;
  }

}

/* Untuk perangkat dengan lebar minimal 768px (tablet dan di atasnya) */
@media screen and (min-width: 768px) and (max-width:884px) {
  .hero .video {
    background-size: 100% auto;
    object-fit: cover;
    z-index: 1;
    position: absolute;
    background-position: center top;
    opacity: 100%;
    zoom: .7;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Audio Control Start */
  #audio-control i {
    left: 0%;
    bottom: 1.9%;
    zoom: 1.1;
  }

  #volume-control {
    zoom: 0.8;
    left: 5.1%;
    bottom: 2.6%;
  }

  .audio-volume p i {
    font-size: 8px;
    left: 6.1%;
    bottom: 2%;
  }

  .audio-text p i {
    font-size: 9px;
    left: 2%;
    bottom: 5%;
  }

  .hero .company h2 {
    font-size: 3vh;
  }
}


/* Untuk perangkat dengan lebar minimal 1024px (desktop dan di atasnya)- (Macbook Air) (Microsoft Surface)*/
@media screen and (min-width: 1281px) and (max-width:1366px) {
   .hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 110px 0 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0%;
  }
  
  .hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 110px 0 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0%;

  }

  .hero .avatar {
    width: 90px;
    height: 92px;
    background-size: cover;
    background-repeat: no-repeat;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 17px;
  }

  #logo {
    position: absolute;
    margin: auto;
    align-items: center;
    width: 90px;
    height: 92px;
    overflow: hidden;
  }

  #logo img {
    width: 90px;
    height: 92px;
    padding: 0px;
  }

  /* Alamat */
  .hero .container .addres {
    top: 100%;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    row-gap: 20px;
  }

  .hero .container .addres p {
    font-size: 10px;
    color: #a2f4f7;
  }

  .hero .container .addres h6 {
    font-size: 11px;
    color: #ffffff;
  }

  .hero .container .addres h5 {
    font-size: 12px;
    color: #0385ff;
    font-weight: bold;
  }

  .hero .container .addres1 {
    background-repeat: no-repeat;
    text-align: right;
  }

  .hero .container .addres2 {
    background-repeat: no-repeat;
    text-align: left;
  }

  .hero .box-menu .icon-box {
    padding: 20px 20px;
    margin-bottom: 5px;
    margin-top: 5px;
  }
}


/* Untuk perangkat dengan lebar minimal 1024px (desktop dan di atasnya)- (Macbook Air) (Microsoft Surface)*/
@media screen and (min-width: 1114px) and (max-width:1280px) {
   .hero .video {
    background-size: 100% auto;
    object-fit: cover;
    z-index: 1;
    position: absolute;
    background-position: center top;
    opacity: 100%;
    top: 0;
    zoom: .74;
  }
  
  /* Audio Control Start */
  #audio-control i {
    left: -0.5%;
    bottom: 1%;
    zoom: 1.1;
  }

  #volume-control {
    zoom: 0.8;
  }

  .audio-volume p i {
    font-size: 7.5px;
    left: 3.7%;
  }

  .audio-text p i {
    font-size: 9px;
    left: 1%;
    bottom: 5%;
  }


  .hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 110px 0 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

  }

  .hero .company h2 {
    font-size: 4.5vh;
  }

  .hero .avatar {
    width: 90px;
    height: 92px;
    background-size: cover;
    background-repeat: no-repeat;
    margin: auto;
    margin-bottom: 10px;
    border-radius: 17px;
  }

  #logo {
    position: absolute;
    margin: auto;
    align-items: center;
    width: 90px;
    height: 92px;
    overflow: hidden;
  }

  #logo img {
    width: 90px;
    height: 92px;
    padding: 0px;
  }


.hero .icon-box {
  padding: 30px 15px;
  /* Jarak internal (padding) */
  height: 100%;
  /* Sesuaikan tinggi elemen dengan container */
  text-align: center;
  /* Pusatkan teks */
  display: flex;
  /* Gunakan Flexbox untuk tata letak */
  flex-direction: column;
  /* Susun elemen dalam kolom */
  align-items: center;
  /* Pusatkan elemen secara horizontal */
  justify-content: center;
  /* Pusatkan elemen secara vertikal */

  /* Efek blur kaca */
  background: rgba(255, 255, 255, 0.2);
  /* Latar belakang semi-transparan */
  border-radius: 10px;
  /* Sudut membulat */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  /* Bayangan halus */
  backdrop-filter: blur(10px);
  /* Efek blur kaca */
  -webkit-backdrop-filter: blur(10px);
  /* Efek blur untuk Safari */
  border: 1px solid rgba(255, 255, 255, 0.3);
  /* Garis luar semi-transparan */
}

.hero .box-menu {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 1px;
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  overflow: hidden;
  margin-bottom: 3%;
}


.hero .box-menu .icon-box {
  padding: 10px 20px;
  /* Jarak internal (padding) */
  height: 100%;
  /* Sesuaikan tinggi elemen dengan container */
  text-align: center;
  /* Pusatkan teks */
  display: flex;
  /* Gunakan Flexbox untuk tata letak */
  flex-direction: column;
  /* Susun elemen dalam kolom */
  align-items: center;
  /* Pusatkan elemen secara horizontal */
  justify-content: center;
  /* Pusatkan elemen secara vertikal */
  /* Efek blur kaca */
  background: rgba(255, 255, 255, 0.2);
  /* Latar belakang semi-transparan */
  border-radius: 10px;
  /* Sudut membulat */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  /* Bayangan halus */
  backdrop-filter: blur(20px);
  /* Efek blur kaca */
  -webkit-backdrop-filter: blur(10px);
  /* Efek blur untuk Safari */
  border: 1px solid rgba(255, 255, 255, 0.3);
  /* Garis luar semi-transparan */
  overflow: hidden;
  margin-bottom: 5px;
  margin-top: 5px;
}
}

/* Untuk perangkat dengan lebar lebih kecil dari 480px (smartphone portrait) */
@media (max-width: 360px) {
    .hero .box-menu {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 5px;
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    overflow: hidden;
    margin-bottom: 3%;
  }

  .box-menu .icon-box {
    padding: 0px 0px;
    width: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    margin: auto;
  }

  .hero .box-menu .icon-box img {
    position: relative;
    opacity: 1;
    transition: 0.3s;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
  }

  .hero .box-menu .icon-box:hover img {
    transform: scale(1.1);
    /* Zoom-in effect */
    filter: brightness(1.2);
  }

  .hero .box-menu .icon-box h3 {
    font-weight: 700;
    margin: 10px 0 0 0;
    padding: 0;
    line-height: 1;
    font-size: 12px;
    line-height: 5px;
    transition: 0.3s;
  }

    
 .hero .video {
    background-size: 100% auto;
    object-fit: cover;
    z-index: 1;
    position: absolute;
    background-position: center top;
    opacity: 100%;
    top: 0;
  }
  
  /* Audio Control Start */
  #audio-control i {
    left: 0%;
    bottom: 0.3%;
    zoom: 1;
  }

  #volume-control {
    zoom: 0.6;
    left: 10%;
    bottom: 0.8%;
  }

  .audio-volume p i {
    font-size: 6px;
    left: 12%;
    bottom: 0.4%;
  }

  .audio-text p i {
    font-size: 7px;
    left: 5.9%;
    bottom: 2.9%;
  }

  .hero .avatar {
    margin-top: 15%;
  }

  #neon {
    margin-bottom: 7%;
  }

  .hero .company h2 {
    font-size: 2.7vh;
  }

  /* Alamat */
  .hero .container .addres {
    top: 100%;
    width: 100%;
    height: fit-content;
    display: block;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    row-gap: 20px;
  }

  .hero .container .addres p {
    font-size: 10px;
    color: #a2f4f7;
  }

  .hero .container .addres h6 {
    font-size: 11px;
    color: #ffffff;
  }

  .hero .container .addres h5 {
    font-size: 12px;
    color: #0385ff;
    font-weight: bold;
  }

  .hero .container .addres1 {
    background-repeat: no-repeat;
    text-align: center;
  }

  .hero .container .addres2 {
    background-repeat: no-repeat;
    text-align: center;
  }
}

/* Untuk perangkat dengan lebar lebih kecil dari 480px (smartphone IPHONE portrait) */
@media screen and (min-width: 361px) and (max-width:428px) {
    
    .hero .box-menu {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 5px;
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    overflow: hidden;
    margin-bottom: 3%;
  }

  .box-menu .icon-box {
    padding: 0px 0px;
    width: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    margin: auto;
  }

  .hero .box-menu .icon-box img {
    position: relative;
    opacity: 1;
    transition: 0.3s;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
  }

  .hero .box-menu .icon-box:hover img {
    transform: scale(1.1);
    /* Zoom-in effect */
    filter: brightness(1.2);
  }

  .hero .box-menu .icon-box h3 {
    font-weight: 700;
    margin: 10px 0 0 0;
    padding: 0;
    line-height: 1;
    font-size: 12px;
    line-height: 5px;
    transition: 0.3s;
  }
    
    
    
 .hero .video {
    background-size: 100% auto;
    object-fit: cover;
    z-index: 1;
    position: absolute;
    background-position: center top;
    opacity: 100%;
    top: 0;
  }
  
  /* Audio Control Start */
  #audio-control i {
    left: 0%;
    bottom: 0.3%;
    zoom: 1;
  }

  #volume-control {
    zoom: 0.6;
    left: 10%;
    bottom: 0.8%;
  }

  .audio-volume p i {
    font-size: 8px;
    left: 12%;
    bottom: 0.4%;
  }

  .audio-text p i {
    font-size: 9px;
    left: 4%;
    bottom: 2.8%;
  }
   .hero .avatar {
    margin-top: 15%;
  }

  #neon {
    margin-bottom: 7%;
  }

  
  .hero .company h2 {
    font-size: 2.9vh;
  }

  /* Alamat */
  .hero .container .addres {
    top: 100%;
    width: 100%;
    height: fit-content;
    display: block;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    row-gap: 20px;
  }

  .hero .container .addres p {
    font-size: 13px;
    color: #a2f4f7;
  }

  .hero .container .addres h6 {
    font-size: 14px;
    color: #ffffff;
  }

  .hero .container .addres h5 {
    font-size: 13px;
    color: #0385ff;
    font-weight: bold;
  }

  .hero .container .addres1 {
    background-repeat: no-repeat;
    text-align: center;
  }

  .hero .container .addres2 {
    background-repeat: no-repeat;
    text-align: center;
  }
}




/*--------------------------------------------------------------
# End Hero Section
--------------------------------------------------------------*/





/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background-color: #e8f7ff;
  background-image: url("../img/bg/light-mesh.png");
  /* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
}

.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about img {
  padding: 20px;
}


/*--------------------------------------------------------------
# Certificate 
--------------------------------------------------------------*/

.no-right-click {
  pointer-events: none;
  /* Mencegah interaksi pengguna */
  user-select: none;
  /* Mencegah penyeleksian teks */
}

/* Start Kertas */
.kertas {
  position: relative;
  display: inline-block;
}

.kertas:before,
.kertas:after {
  content: "";
  position: absolute;
  bottom: 40px;
  /* Posisi bayangan di bawah elemen */
  left: 50%;
  /* Pusatkan bayangan */
  transform: translateX(-50%) rotate(-6deg);
  /* Pastikan bayangan tetap di tengah */
  width: 85%;
  /* Ukuran bayangan dinamis, berdasarkan elemen induk */
  height: 20px;
  /* Tinggi bayangan */
  max-width: 97%;
  /* Batas maksimum untuk bayangan */
  background: #777;
  box-shadow: 0 15px 10px #777;
  z-index: -1;
  /* Tetap di belakang elemen utama */
  border-radius: 50%;
  /* Memberikan efek bayangan lembut */
}

.kertas:after {
  bottom: 40px;
  transform: translateX(-50%) rotate(6deg);
  /* Pastikan bayangan tetap di tengah */


}

.img-pita {
  position: absolute;
  top: -20px;
  right: -23px;
  z-index: 3;
}

.img-logoatmpaper {
  position: absolute;
  bottom: -80px;
  right: -20px;
  z-index: 3;
  opacity: 0.7;
}

.img-brandpaper {
  position: absolute;
  bottom: -80px;
  left: -20px;
  z-index: 3;
  opacity: 0.7;
}


.align-center {
  display: flex;
  justify-content: center;
  /* Untuk menyusun elemen secara horizontal */
  align-items: center;
  /* Untuk menyusun elemen secara vertikal */
  height: 10vh;
  /* Menggunakan tinggi penuh viewport */
  text-align: center;
  /* Untuk teks di dalam h4 agar tetap tengah */
}

.certificate-title {
  font-size: 2rem;
  /* Opsional, menyesuaikan ukuran font */
  margin: 0;
  /* Menghapus margin default jika ada */
}

.certificate-item {
  background: linear-gradient(to bottom, var(--paper-color), transparent 50%);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--paper-color), transparent 40%);
  padding-bottom: 30px;
  height: auto;
  box-shadow: 3px 3px 6px 2px rgba(0, 0, 0, 0.1);
  /*background-image:
    linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.2)),
    url("../img/bg/cardboard.png");*/
  background-color: #ffffff;
  background-image: url("../img/bg/cardboard.png");
  transition: all ease-in-out 0.3s;
}


.certificate-item .icon {
  position: relative;
  color: var(--contrast-color);
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 15px;
  transition: ease-in-out 0.3s;
}

.certificate-item h3 {
  color: rgba(107, 107, 107, 0.9);
  font-weight: 700;
  margin-top: -15px;
  font-size: 16px;
  text-shadow: -2px -2px 2px rgba(255, 255, 255, 0.6),
    2px 2px 4px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.certificate-item:hover {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  transition: 0.3s;
}


/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;

}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}


/*--------------------------------------------------------------
# Start Product Section
--------------------------------------------------------------*/

.product-container {
  position: relative;
  margin: auto;
  width: 100%;
  text-align: center;
}

.product-container a {
  color: #ffffff;
}

.wrapper {
  padding-top: 10px;
  padding-bottom: 40px;
}

.wrapper:focus {
  outline: 1;
}

.product-card {
  background: rgb(250, 250, 250);
  width: 85%;
  display: inline-block;
  margin: auto;
  border-radius: 19px;
  position: relative;
  text-align: center;
  box-shadow: -1px 15px 10px -12px black;
  transition: 0.3s ease;
}

.product-card:hover {
  transform: perspective(800px) rotateX(10deg);
}

.product-card .product-card__image {
  background-size: cover;
  transform: none;
  position: relative;
  height: 230px;
  margin-bottom: 35px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  z-index: 1;
}

.product-card__level span {
  font-size: 14px;
  color: #9e9e9e;
}


/* Start Balon */
.product-card__image--balon {
  width: auto;
  background: url("../img/product/balon/card-index/balon-bg-card.webp");
}

.product-card__image--balon img {
  width: 100%;
  position: absolute;
  top: -55px;
  left: 0px;
  transition: 0.3s;
}

.product-card:hover .product-card__image--balon img {
  transform: perspective(600px) rotateX(-8deg);
  top: -55px;
  scale: 1.1;
  transition: 0.3s;
}


.product-card__unit-stats--balon {
  background: #c70707;
}



/* End Balon */


/* Start Murphy */
.product-card__image--murphy {
  width: auto;
  background: url("../img/product/murphy/card-index/murphy-bg-card.webp");


}

.product-card__image--murphy img {
  width: 100%;
  position: absolute;
  top: -55px;
  left: 0px;
  transition: 0.3s;
}

.product-card:hover .product-card__image--murphy img {
  transform: perspective(600px) rotateX(-8deg);
  top: -55px;
  scale: 1.1;
  transition: 0.3s;
}

.product-card__unit-stats--murphy {
  background: #a72a2a;
}


/* End Murphy */

/* Start EGA */
.product-card__image--ega {
  display: flex;
  width: auto;
  background: url("../img/product/egamaster/card-index/ega_bg_card.webp");
}

.product-card__image--ega img {
  width: 100%;
  position: absolute;
  top: -55px;
  left: 0px;
  transition: 0.3s;
}

.product-card:hover .product-card__image--ega img {
  transform: perspective(600px) rotateX(-8deg);
  top: -55px;
  scale: 1.1;
  transition: 0.3s;
}

.product-card__unit-stats--ega {
  background: rgb(207, 165, 80);
}


/* End EGA */

/* Start FAIST */
.product-card__image--faist {
  display: flex;
  width: auto;
  background: url("../img/product/faist/card-index/faist-bg-card.webp");
}

.product-card__image--faist img {
  width: 100%;
  position: absolute;
  top: -55px;
  left: 0px;
  transition: 0.3s;
}

.product-card:hover .product-card__image--faist img {
  transform: perspective(600px) rotateX(-8deg);
  top: -55px;
  scale: 1.1;
  transition: 0.3s;
}

.product-card__unit-stats--faist {
  background: rgb(202, 24, 24);
}


/* End FAIST */

/* Start ROCHEM */
.product-card__image--rochem {
  display: flex;
  width: auto;
  background: url("../img/product/rochem/card-index/rochem-bg-card.webp");
}

.product-card__image--rochem img {
  width: 100%;
  position: absolute;
  top: -55px;
  left: 0px;
  transition: 0.3s;
}

.product-card:hover .product-card__image--rochem img {
  transform: perspective(600px) rotateX(-8deg);
  top: -55px;
  scale: 1.1;
  transition: 0.3s;
}

.product-card__unit-stats--rochem {
  background: rgb(0, 94, 184);
}


/* End ROCHEM */


.product-card__level {
  margin-top: 30px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 3px;
}



.product-card__unit-name {
  font-size: 26px;
  color: black;
  font-weight: 900;
}

.product-card__unit-description {
  padding: 10px;

}

.product-card__unit-description p {
  padding-top: 10px;
  font-size: 12px;
}




.product-card__unit-stats {
  color: white;
  font-weight: 700;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;

}

.product-card__unit-stats .one-third {
  color: white;
  width: 33%;
  float: left;
  padding: 20px 15px;
  border-right: 1px solid #b8b6b6;
}

.product-card__unit-stats .one-third:hover a {
  color: rgb(0, 195, 255);
}

.product-card__unit-stats sup {
  position: absolute;
  margin-top: 5px;
  font-size: 45%;
  margin-left: 2px;
}

.product-card__unit-stats .stat {
  position: relative;
  font-size: 24px;
  top: 5px;
}

.product-card__unit-stats .stat-value {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 12px;
}

.product-card__unit-stats .no-border {
  border-right: none;
}

.product-card__unit-stats .no-border:hover a {
  color: rgb(0, 195, 255);
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}



@media (max-width: 768px) {
  .product-card {
    background: rgb(250, 250, 250);
    width: 100%;
    display: inline-block;
    margin: auto;
    border-radius: 19px;
    position: relative;
    text-align: center;
    box-shadow: -1px 15px 10px -12px black;
    transition: 0.3s ease;
  }

  .product-card .product-card__image {
    transform: none;
    position: relative;
    height: 130px;
    margin-bottom: 35px;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    z-index: 1;
  }

  .product-card__level {
    margin-top: 5px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 3px;
  }

  .product-card__unit-stats .stat {
    position: relative;
    font-size: 16px;
    top: 5px;
  }

  .product-card__unit-stats .stat-value {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 10px;
  }

}


/*--------------------------------------------------------------
# End Product Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  background-color: #ffffff;
  background-image: url("../img/bg/dark-dotted-2.png");
}

.services .service-item {
  position: relative;

  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 20px 20px;
  height: 100%;
  transition: all ease-in-out 0.3s;
}

.services .service-item .icon {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.services .service-item .icon img {
  -webkit-filter: grayscale(50%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(50%);
  opacity: 50%;
  transition: 0.3s;
}

.services .service-item .icon i {
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  text-align: left;
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 18px;
  transition: 0.3s;
}

.services .service-item p {
  text-align: justify;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: #000000;
}

.services .service-item:hover {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
  transition: 0.3s;
}

.services .service-item:hover img {
  opacity: 100%;
  transition: 0.3s;
}






/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 84px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: linear-gradient(to right, rgba(4, 162, 253, 0.7), rgba(0, 119, 255, 0.7));
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  color: var(--background-color);
  border: 2px solid var(--nav-hover-color);
}

/*--------------------------------------------------------------
# Start Our Project Section
--------------------------------------------------------------*/

.project .project-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.project .project-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.project .project-filters li:hover,
.project .project-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.project .project-filters li:first-child {
  margin-left: 0;
}

.project .project-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .project .project-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.project .project-item {
  position: relative;
  overflow: hidden;
}

.project .project-item .project-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.project .project-item .project-info h5 {
  font-size: 14px;
  font-weight: 600;
  padding-right: 50px;
}
.project .project-item .project-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.project .project-item .project-info i {
  color: #2696f1;
  margin-bottom: 0;
  margin-left: 10px;
  position: absolute;
}

.project .project-item .project-info .preview-link,
.project .project-item .project-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.project .project-item .project-info .preview-link:hover,
.project .project-item .project-info .details-link:hover {
  color: var(--accent-color);
}

.project .project-item .project-info .details-link {
  right: 14px;
  font-size: 28px;
}

.project .project-item:hover .project-info {
  opacity: 1;
  bottom: 0;
}


/*--------------------------------------------------------------
# End Our Project Section
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  background-color: #FFFFFF;
  background-image: linear-gradient(180deg, #FFFFFF 0%, #ece9e9 57%, #ece9e9 71%, #d9dadc 73%, #eaeaea 81%, #e1ebf2 100%);

}

.stats .stats-item {
  padding: 10px;
}

.stats .stats-item i {
  font-size: 44px;
  color: var(--accent-color);
  line-height: 0;
  margin-right: 15px;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 40px;
  display: block;
  font-weight: 700;
  line-height: 40px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 14px;
}



/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 40px 0;
  position: relative;
  align-items: center;
  display: flex;
  justify-content: center;
  align-content: center center;
  background-position: center center;

}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(-45deg, #b647f7, #011fa3, #ffffff, #006cfa);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  height: 100vh;
  opacity: 20%;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.testimonials::after {
  background-color: rgba(0, 147, 233, 0.2);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 30%, rgba(128, 208, 199, 0) 70%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 3;
  position: absolute;
  inset: 0;
  opacity: none;
  background-repeat: no-repeat;
  background-size: cover;
}


.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 25%;
  margin-right: 25%;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  background: rgba(0, 0, 0, 0.29);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(8px);
  padding: 20px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 3px solid color-mix(in srgb, var(--background-color-box), transparent 10%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: -10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-size: 14px;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}


.team .container h4 {
  padding-bottom: 30px;
}

.team .container .project h4 {
  padding-top: 50px;
  padding-bottom: 30px;
}


.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--background-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h3 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .team-member .member-info h5 {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.team .team-member .member-info span {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.team .team-member .member-info i {
  font-size: 16px;
  font-weight: 400;
  color: #2696f1;
}


.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  position: relative;
}

.contact .container {
  position: relative;
  z-index: 4;
}

.contact .info-item {
  margin-left: 30px;
  margin-bottom: 20px;
}

.contact:before {
  content: "";
  background: linear-gradient(to bottom, rgba(189, 240, 255, 0.2), rgba(178, 227, 250, 0.5));
  position: absolute;
  inset: 0;
  z-index: 2;
}

.contact .contact-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 40%;

}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}



/* Add WA floating button CSS */

/*Whatsapp Pulse*/

.fab-icon {
  transition: transform .2s;
  /* Animation */
}

.fab-icon:hover {
  transform: scale(1.2);
}

.wapulse {
  background-color: #f7f7f7;
  position: relative;
  overflow: hidden;
}

/**di position silakan nanti ganti dengan fixed agar bisa tampil di pojok kanan bawah website**/
.wapulse .btn-whatsapp-pulse {
  z-index: 101;
  background: #25d366;
  color: white;
  position: fixed;
  bottom: 14px;
  right: 16px;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 25px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

























/*--------------------------------------------------------------
# Start Hero Product Detail Section
--------------------------------------------------------------*/

.hero_product {
  width: 100%;

}

#header-product {
  width: 100%;
  padding: 120px 0 70px 0;
  height: 35vh;
  -webkit-background-size: 100% auto;
  -moz-background-size: 100% auto;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-box-shadow: rgba(0, 0, 0, 0.20) 0 10px 10px;
  -moz-box-shadow: rgba(0, 0, 0, 0.20) 0 10px 10px;
  box-shadow: rgba(0, 0, 0, 0.20) 0 10px 10px;
}

.header-balon-image {
  background-image: url("../img/product/balon/bg-product-index/bg_balon_product_index.webp");
}

.header-murphy-image {
  background-image: url("../img/product/murphy/bg-product-index/bg_murphy_product_index.webp");
}

.header-egamaster-image {
  background-image: url("../img/product/egamaster/bg-product-index/bg_egamaster_product_index.webp");
}

.header-faist-image {
  background-image: url("../img/product/faist/bg-product-index/bg_faist_product_index.webp");
}

.header-rochem-image {
  background-image: url("../img/product/rochem/bg-product-index/bg_rochem_product_index.webp");
}




/* Neon Teks Satisfaction Start */

@font-face {
  font-family: 'neon';
  src: url('../font/Lefestin.ttf') format('truetype');
}

#neon_product {
  margin: auto;
  margin-top: 15px;
  top: 0;
  left: 0;
  right: 0;
  height: 1vh;
  line-height: 1vh;
  text-align: left;
  font-size: 1.5vh;
  font-family: neon;
  color: rgb(216, 241, 255);
  text-shadow: 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 1vh var(--lights);
  animation: flicker 7s infinite;
  filter: brightness(1);
}

@keyframes flicker {
  9% {
    text-shadow: 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 1vh var(--lights);
    ;
    filter: brightness(1)
  }

  10% {
    text-shadow: none;
    filter: brightness(.4);
  }

  11% {
    text-shadow: 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 1vh var(--lights);
    ;
    filter: brightness(1)
  }

  12% {
    text-shadow: none;
    filter: brightness(.4);
  }

  13% {
    text-shadow: 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 1vh var(--lights);
    ;
    filter: brightness(1)
  }

  66% {
    text-shadow: 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 1vh var(--lights);
    ;
    filter: brightness(1)
  }

  67% {
    text-shadow: none;
    filter: brightness(.4);
  }

  75% {
    text-shadow: none;
    filter: brightness(.4);
  }

  76% {
    text-shadow: 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 .5vh var(--lights), 0 0 1vh var(--lights);
    ;
    filter: brightness(1)
  }
}

/* Neon Teks Satisfaction End */



.hero_product img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 30vh;
  object-fit: cover;
  z-index: 1;
}

.hero_product:before {
  content: "";
  /*
  background: color-mix(in srgb, var(--background-color), transparent 90%);
  */
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero_product::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Warna dasar transparan untuk fallback */
  background-color: rgba(0, 147, 233, 0, 5);
  /* Transparansi 50% */

  /* Gradasi linear dengan transparansi */
  background-image: linear-gradient(180deg,
      rgba(0, 162, 255, 0.8) 0%,
      /* Warna biru dengan transparansi 50% */
      rgba(128, 208, 199, 0) 60%
      /* Warna hijau kebiruan dengan transparansi 50% */
    );

  /* Pastikan background mencakup seluruh elemen */
  background-size: cover;
  background-repeat: no-repeat;

  /* Sesuaikan elemen */
  height: 30vh;
  margin: 0;
}

.hero_product {
  position: relative;
  z-index: 3;
}

.container .product h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 200;
  font-family: var(--nav-font);
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.container .product h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 700;
  font-family: var(--nav-font);
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

/* Efek Kilau Teks Start */
.shine {
  color: #ffffff;
  background: linear-gradient(115deg, #ffffff 0, #ccefff 6%, #ff3b3b 10%, #ffffff 12%, #ffffff 100%);
  background-position: 170%;
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 10s infinite linear;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

@keyframes shine {
  0% {
    background-position: 100%;
  }

  65% {
    background-position: 100%;
  }

  100% {
    background-position: -100%;
  }
}
/* Efek Kilau Teks End */


.hero_product h2 span {
  color: var(--accent-color);
}

.hero_product p {
  margin: 10px 0 0 0;
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color-slogan), transparent 30%);
}

.page-title .container h1 {
  font-size: 20px;
}

.page-title .container p {
  font-size: 14px;
}

/* Untuk perangkat dengan lebar lebih kecil dari 768px (smartphone portrait) */
@media (max-width: 768px) {
  .container .product h2 {
    font-size: 18px;

  }

  .container .product h3 {
    color: #ffffff;
    font-size: 16px;

  }

  .hero p {
    font-size: 14px;
  }

}


/* Untuk perangkat dengan lebar lebih kecil dari 480px (smartphone portrait) */
@media (max-width: 480px) {
  #header-product {
    width: 100%;
    padding: 120px 0 70px 0;
    height: 30vh;
    -webkit-background-size: 100% auto;
    -moz-background-size: 100% auto;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-box-shadow: rgba(0, 0, 0, 0.20) 0 10px 10px;
    -moz-box-shadow: rgba(0, 0, 0, 0.20) 0 10px 10px;
    box-shadow: rgba(0, 0, 0, 0.20) 0 10px 10px;
  }
}



/*--------------------------------------------------------------
# End Hero Product Detail Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Product Details Section
--------------------------------------------------------------*/


.product-details .product-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);

}

.product-details .product-box+.product-box {
  margin-top: 30px;
}

.product-details .product-box h4 {
  font-size: 15px;
  font-weight: 700;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 5px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* Start Balon List Menu */
.product-details .balon .product-box h4 {
  border-left: solid 8px #ff0000;
  padding-left: 10px;
  background-image: url("../img/clients/balonlogo.png");
  background-size: 25%;
  background-position: right top;
  background-repeat: no-repeat;
  overflow: hidden;
  }

.product-details .balon .product-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: #ff0000;
  transition: all 0.2s ease-in-out;
}

.product-details .balon .product-list a:hover i {
  color: #ffffff;
  scale: 1.1;
  padding-right: 10px;
  transition: all 0.2s ease-in-out;
}

.product-details .balon .product-list a:hover {
  font-weight: 500;
  color: #ff0000;
  background: rgba(173, 173, 173, 1);
  background: -moz-linear-gradient(left, rgba(173, 173, 173, 1) 0%, rgba(255, 255, 255, 1) 1%, rgba(255, 0, 0, 1) 2%, rgba(255, 0, 0, 1) 9%, rgba(255, 255, 255, 1) 12%, rgba(255, 255, 255, 1) 16%, rgba(252, 242, 242, 1) 97%, rgba(255, 255, 255, 1) 99%, rgba(252, 194, 194, 1) 100%, rgba(255, 255, 255, 1) 100%);
  background: -webkit-linear-gradient(left, rgba(173, 173, 173, 1) 0%, rgba(255, 255, 255, 1) 1%, rgba(255, 0, 0, 1) 2%, rgba(255, 0, 0, 1) 9%, rgba(255, 255, 255, 1) 12%, rgba(255, 255, 255, 1) 16%, rgba(252, 242, 242, 1) 97%, rgba(255, 255, 255, 1) 99%, rgba(252, 194, 194, 1) 100%, rgba(255, 255, 255, 1) 100%);
  background: -o-linear-gradient(left, rgba(173, 173, 173, 1) 0%, rgba(255, 255, 255, 1) 1%, rgba(255, 0, 0, 1) 2%, rgba(255, 0, 0, 1) 9%, rgba(255, 255, 255, 1) 12%, rgba(255, 255, 255, 1) 16%, rgba(252, 242, 242, 1) 97%, rgba(255, 255, 255, 1) 99%, rgba(252, 194, 194, 1) 100%, rgba(255, 255, 255, 1) 100%);
}

.product-details .balon .download-catalog a:hover {
  color: #ff0000;
}

/* End Balon List Menu */


/* Start Murphy List Menu */
.product-details .murphy .product-box h4 {
  border-left: solid 8px #aa0000;
  padding-left: 10px;
  background-image: url("../img/clients/fwmurphylogo.png");
  background-size: 30%;
  background-position: right top;
  background-repeat: no-repeat;
  overflow: hidden;
}

.product-details .murphy .product-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: #aa0000;
  transition: all 0.2s ease-in-out;
}

.product-details .murphy .product-list a:hover i {
  color: #ffffff;
  scale: 1.1;
  padding-right: 10px;
  transition: all 0.2s ease-in-out;
}

.product-details .murphy .product-list a:hover {
  font-weight: 500;
  color: #aa0000;
  background: rgba(173, 173, 173, 1);
  background: -moz-linear-gradient(left, rgba(173, 173, 173, 1) 0%, rgba(255, 255, 255, 1) 1%, rgb(192, 2, 2) 2%, rgb(192, 2, 2) 9%, rgba(255, 255, 255, 1) 12%, rgba(255, 255, 255, 1) 16%, rgb(224, 224, 224) 97%, rgba(255, 255, 255, 1) 99%, rgb(71, 71, 71) 100%, rgba(255, 255, 255, 1) 100%);
  background: -webkit-linear-gradient(left, rgba(173, 173, 173, 1) 0%, rgba(255, 255, 255, 1) 1%, rgb(192, 2, 2) 2%, rgb(192, 2, 2) 9%, rgba(255, 255, 255, 1) 12%, rgba(255, 255, 255, 1) 16%, rgb(224, 224, 224) 97%, rgba(255, 255, 255, 1) 99%, rgb(71, 71, 71) 100%, rgba(255, 255, 255, 1) 100%);
  background: -o-linear-gradient(left, rgba(173, 173, 173, 1) 0%, rgba(255, 255, 255, 1) 1%, rgb(192, 2, 2) 2%, rgb(192, 2, 2) 9%, rgba(255, 255, 255, 1) 12%, rgba(255, 255, 255, 1) 16%, rgb(224, 224, 224) 97%, rgba(255, 255, 255, 1) 99%, rgb(71, 71, 71) 100%, rgba(255, 255, 255, 1) 100%);
}

.product-details .murphy .download-catalog a:hover {
  color: #aa0000;
}

/* End Murphy List Menu */

/* Start EGA MasterList Menu */
.product-details .egamaster .product-box h4 {
  border-left: solid 8px #deb86c;
  padding-left: 10px;
  background-image: url("../img/clients/egamasterlogo.png");
  background-size: 30%;
  background-position: right top;
  background-repeat: no-repeat;
  overflow: hidden;
}

.product-details .egamaster .product-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: #deb86c;
  transition: all 0.2s ease-in-out;
}

.product-details .egamaster .product-list a:hover i {
  color: #000000;
  scale: 1.1;
  padding-right: 10px;
  transition: all 0.2s ease-in-out;
}

.product-details .egamaster .product-list a:hover {
  font-weight: 500;
  color: #deb86c;
  background: rgba(173, 173, 173, 1);
  background: -moz-linear-gradient(left, rgba(173, 173, 173, 1) 0%, rgba(255, 255, 255, 1) 1%, rgb(207, 166, 80) 2%, rgb(207, 166, 80) 9%, rgba(255, 255, 255, 1) 12%, rgba(255, 255, 255, 1) 16%, rgb(252, 240, 216) 97%, rgba(255, 255, 255, 1) 99%, rgb(237, 28, 36) 100%, rgba(255, 255, 255, 1) 100%);
  background: -webkit-linear-gradient(left, rgba(173, 173, 173, 1) 0%, rgba(255, 255, 255, 1) 1%, rgb(207, 166, 80) 2%, rgb(207, 166, 80) 9%, rgba(255, 255, 255, 1) 12%, rgba(255, 255, 255, 1) 16%, rgb(252, 240, 216) 97%, rgba(255, 255, 255, 1) 99%, rgb(237, 28, 36) 100%, rgba(255, 255, 255, 1) 100%);
  background: -o-linear-gradient(left, rgba(173, 173, 173, 1) 0%, rgba(255, 255, 255, 1) 1%, rgb(207, 166, 80) 2%, rgb(207, 166, 80) 9%, rgba(255, 255, 255, 1) 12%, rgba(255, 255, 255, 1) 16%, rgb(252, 240, 216) 97%, rgba(255, 255, 255, 1) 99%, rgb(237, 28, 36) 100%, rgba(255, 255, 255, 1) 100%);
}

.product-details .egamaster .download-catalog a:hover {
  color: #deb86c;
}

/* End EGA Master List Menu */

/* Start FAIST List Menu */
.product-details .faist .product-box h4 {
  border-left: solid 8px #000000;
  padding-left: 10px;
  background-image: url("../img/clients/faistfilterlogo_box.png");
  background-size: 5%;
  background-position: right top;
  background-repeat: no-repeat;
  overflow: hidden;
}

.product-details .faist .product-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: #000000;
  transition: all 0.2s ease-in-out;
}

.product-details .faist .product-list a:hover i {
  color: #ffffff;
  scale: 1.1;
  padding-right: 10px;
  transition: all 0.2s ease-in-out;
}

.product-details .faist .product-list a:hover {
  font-weight: 500;
  color: #000000;
  background: rgba(173, 173, 173, 1);
  background: -moz-linear-gradient(left, rgba(173, 173, 173, 1) 0%, rgba(255, 255, 255, 1) 1%, rgb(0, 0, 0) 2%, rgb(3, 0, 0) 9%, rgba(255, 255, 255, 1) 12%, rgba(255, 255, 255, 1) 16%, rgb(255, 208, 208) 97%, rgba(255, 255, 255, 1) 99%, rgb(237, 28, 36) 100%, rgba(255, 255, 255, 1) 100%);
  background: -webkit-linear-gradient(left, rgba(173, 173, 173, 1) 0%, rgba(255, 255, 255, 1) 1%, rgb(0, 0, 0) 2%, rgb(0, 0, 0) 9%, rgba(255, 255, 255, 1) 12%, rgba(255, 255, 255, 1) 16%, rgb(255, 208, 208) 97%, rgba(255, 255, 255, 1) 99%, rgb(237, 28, 36) 100%, rgba(255, 255, 255, 1) 100%);
  background: -o-linear-gradient(left, rgba(173, 173, 173, 1) 0%, rgba(255, 255, 255, 1) 1%, rgb(0, 0, 0) 2%, rgb(0, 0, 0) 9%, rgba(255, 255, 255, 1) 12%, rgba(255, 255, 255, 1) 16%, rgb(255, 208, 208) 97%, rgba(255, 255, 255, 1) 99%, rgb(237, 28, 36) 100%, rgba(255, 255, 255, 1) 100%);
}

.product-details .faist .download-catalog a:hover {
  color: #3a3a3a;
}

/* End FAIST List Menu */

/* Start Rochem List Menu */
.product-details .rochem .product-box h4 {
  border-left: solid 8px #005eb8;
  padding-left: 10px;
  background-image: url("../img/clients/rochemfw_logo.png");
  background-size: 25%;
  background-position: right top;
  background-repeat: no-repeat;
  overflow: hidden;
}

.product-details .rochem .product-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: #005eb8;
  transition: all 0.2s ease-in-out;
}

.product-details .rochem .product-list a:hover i {
  color: #ffffff;
  scale: 1.1;
  padding-right: 10px;
  transition: all 0.2s ease-in-out;
}

.product-details .rochem .product-list a:hover {
  font-weight: 500;
  color: #005eb8;
  background: rgba(173, 173, 173, 1);
  background: -moz-linear-gradient(left, rgba(173, 173, 173, 1) 0%, rgba(255, 255, 255, 1) 1%, rgb(0, 94, 184) 2%, rgb(0, 94, 184) 9%, rgba(255, 255, 255, 1) 12%, rgba(255, 255, 255, 1) 16%, rgb(174, 215, 253) 97%, rgba(255, 255, 255, 1) 99%, rgb(0, 94, 184) 100%, rgba(255, 255, 255, 1) 100%);
  background: -webkit-linear-gradient(left, rgba(173, 173, 173, 1) 0%, rgba(255, 255, 255, 1) 1%, rgb(0, 94, 184) 2%, rgb(0, 94, 184) 9%, rgba(255, 255, 255, 1) 12%, rgba(255, 255, 255, 1) 16%, rgb(174, 215, 253) 97%, rgba(255, 255, 255, 1) 99%, rgb(0, 94, 184) 100%, rgba(255, 255, 255, 1) 100%);
  background: -o-linear-gradient(left, rgba(173, 173, 173, 1) 0%, rgba(255, 255, 255, 1) 1%, rgb(0, 94, 184) 2%, rgb(0, 94, 184) 9%, rgba(255, 255, 255, 1) 12%, rgba(255, 255, 255, 1) 16%, rgb(174, 215, 253) 97%, rgba(255, 255, 255, 1) 99%, rgb(0, 94, 184) 100%, rgba(255, 255, 255, 1) 100%);
}

.product-details .rochem .download-catalog a:hover {
  color: #005eb8;
}

/* End Rochem List Menu */



.product-details .product-list {
  background-color: var(--surface-color);
}

.product-details .product-list a {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  display: flex;
  align-items: center;
  padding: 4px 15px;
  margin-top: 0px;
  transition: 0.3s;

}

.product-details .product-list a:first-child {
  margin-top: 0;
}


.product-details .product-list a.active {
  margin-left: 10px;
  border-left: solid 2px #bdbebe;
  padding-left: 10px;
  font-weight: 600;
  color: var(--contrast-color);
  background: rgba(255, 255, 255, 1);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(219, 219, 219, 0.99) 92%, rgba(209, 209, 209, 0.99) 97%, rgba(254, 254, 254, 0.99) 100%);
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(219, 219, 219, 0.99) 92%, rgba(209, 209, 209, 0.99) 97%, rgba(254, 254, 254, 0.99) 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(219, 219, 219, 0.99) 92%, rgba(209, 209, 209, 0.99) 97%, rgba(254, 254, 254, 0.99) 100%);
  background-image: url("../img/clients/arrow-right.png");
  background-size: 50%;
  background-position: right center;
  background-repeat: no-repeat;
  overflow: hidden;

}

.product-details .product-list a.active i {
  color: var(--contrast-color);
}


.product-details .download-catalog a {
  font-size: 14px;
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.product-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.product-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
  transition: all 0.2s ease-in-out;
}

.product-details .download-catalog a:hover i {
  font-size: 24px;
  margin-right: 8px;
  padding-right: 6px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;

}


.product-details .help-box {
  background-image: url("../img/services/callcenter.webp");
  background-color: rgba(14, 111, 167, 0.9);
  background-blend-mode: multiply;
  color: #ffffff;
  margin-top: 30px;
  padding: 30px 15px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}

.product-details .help-box .help-icon {
  font-size: 48px;
}

.product-details .help-box h5,
.product-details .help-box a {
  color: #ffffff;
}

.product-details .product-img {
  width: 200px;
  margin-bottom: 20px;
}

.product-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.product-details p {
  text-align: justify;
  font-size: 14px;
}

.product-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.product-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.product-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}


@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* Untuk perangkat dengan lebar minimal 1024px (desktop dan di atasnya) */
@media (min-width: 1024px) {
  
  .product-details .balon .product-box h4,
  .product-details .murphy .product-box h4,
  .product-details .egamaster .product-box h4,
  .product-details .faist .product-box h4,
  .product-details .rochem .product-box h4 {
    font-size: 15px;
 
    background-position: right top;
  }
  .product-details .balon .product-box span,
  .product-details .murphy .product-box span,
  .product-details .egamaster .product-box span,
  .product-details .faist .product-box span,
  .product-details .rochem .product-box span {
    font-size: 15px;
  }
 
  .product-details .product-box a.hover span{
    font-size: 40px;
  }

}


/* Untuk perangkat dengan lebar minimal 768px (tablet dan di atasnya) */
@media (min-width: 768px) {

  .product-details .balon .product-box h4,
  .product-details .murphy .product-box h4,
  .product-details .egamaster .product-box h4,
  .product-details .faist .product-box h4,
  .product-details .rochem .product-box h4 {
    font-size: 15px;
    background-size: 15%;
    background-position: right top;
  }
  .product-details .balon .product-box span,
  .product-details .murphy .product-box span,
  .product-details .egamaster .product-box span,
  .product-details .faist .product-box span,
  .product-details .rochem .product-box span {
    font-size: 14px;
  }
  .product-details .balon .product-list a:hover i,
  .product-details .murphy .product-list a:hover i,
  .product-details .egamaster .product-list a:hover i,
  .product-details .faist .product-list a:hover i,
  .product-details .rochem .product-list a:hover i {
       scale: 1.1;
    margin-left: 1%;
    padding-right: 5%;
    transition: all 0.2s ease-in-out;
  }
}

/* Untuk perangkat dengan lebar kurang dari 768px (smartphone dan tablet kecil) */
@media (max-width: 767px) {

  .product-details .balon .product-box h4,
  .product-details .murphy .product-box h4,
  .product-details .egamaster .product-box h4,
  .product-details .faist .product-box h4,
  .product-details .rochem .product-box h4 {
    font-size: 15px;
    /* Ukuran font untuk tablet dan phablet */
  }
  .product-details .balon .product-box span,
  .product-details .murphy .product-box span,
  .product-details .egamaster .product-box span,
  .product-details .faist .product-box span,
  .product-details .rochem .product-box span {
    font-size: 12px;
  }
  .product-details .balon .product-list a:hover i,
  .product-details .murphy .product-list a:hover i,
  .product-details .egamaster .product-list a:hover i,
  .product-details .faist .product-list a:hover i,
  .product-details .rochem .product-list a:hover i {
    color: #ffffff;
    scale: 1.1;
    margin-left: 0%;
    padding-right: 2%;
    transition: all 0.2s ease-in-out;
  }
}

/* Untuk perangkat dengan lebar lebih kecil dari 480px (smartphone portrait) */
@media (max-width: 480px) {

  .product-details .balon .product-box h4,
  .product-details .murphy .product-box h4,
  .product-details .egamaster .product-box h4,
  .product-details .faist .product-box h4,
  .product-details .rochem .product-box h4 {
    font-size: 15px;
    /* Ukuran font untuk tablet dan phablet */
  }
}


/*--------------------------------------------------------------
# Start Form Login Section
--------------------------------------------------------------*/
.container .form-login {
  padding-top: 150px;
}

/*--------------------------------------------------------------
# Start Product Item Detail Section
--------------------------------------------------------------*/
.product-details .container .detail-deskription .list {
    list-style-position: outside;
     }
  

 
.product-details .container .detail-deskription ul li:before {
    content: "🔵";
    font-family: var(--default-font);
    color: #000;
    font-size: 6px;
    padding-right: 0.4em;
   
vertical-align:middle;

}


.product-details .container .detail-deskription ul li {
    font-size: 12px;
    padding: 0;
       
  display:block;
  align-items: center;
   list-style-position: outside;
}

.product-details .container .detail-deskription tr td {
  vertical-align: top;
}


.product-details .container .detail-deskription a {
color:#000000;
font-size: 11px;
padding-right: 0.3em;
}
.product-details .container .detail-deskription a:hover {
color:#f80000;
}


/*--------------------------------------------------------------
# Start Our Custumer
--------------------------------------------------------------*/
#our-customers {
  align-items: flex-start;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
  background-image: url("../img/bg/white-texture.png");
}

#our-customers .content {
  margin-top: 20px;
}

#our-customers .content ul {
  list-style: none;
  padding: 0;
  font-size: 13px;
}

#our-customers .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

#our-customers .content ul i {
  color: #696969;
  margin-right: 0.5rem;
  line-height: 1px;
  font-size: 1rem;
}

/* Egamaster Costumer */
#our-customers .container .slider-title-egamaster {
  margin-right: 0px;
  margin-bottom: -15px;
  justify-items: flex-end;
}

#our-customers .container .slider-title-egamaster h5 {
  background-color: rgb(207, 165, 80);
  background-image: linear-gradient(180deg, #cfa550 0%, #cfa550 70%, #4e380c 100%);
  border-radius: 10px 10px 0 0;
  padding: 10px 15px 25px 15px;
  font-size: 15px;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgb(255, 255, 255);
}


@-webkit-keyframes scroll-ega {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 13));
  }
}

@keyframes scroll-ega {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 13));
  }
}

.slider-egamaster {
  background: white;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 15px 20px -26px, rgba(0, 0, 0, 0.45) 0px -15px 20px -26px;
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider-egamaster::before,
.slider-egamaster::after {
  background: linear-gradient(to right, white 10%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.slider-egamaster::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider-egamaster::before {
  left: 0;
  top: 0;
}

.slider-egamaster .slide-track-egamaster {
  -webkit-animation: scroll-ega 30s linear infinite;
  animation: scroll-ega 30s linear infinite;
  display: flex;
  width: calc(250px * 26);
}

.slider-egamaster .slide-egamaster {
  height: 100px;
  width: 250px;
}

.slider-egamaster .slide-track-egamaster:hover {
  animation-play-state: paused;
}


/* Rochem Costumers */
#our-customers .container .slider-title-rochem {
  margin-right: 0px;
  margin-bottom: -15px;
  justify-items: flex-end;
}

#our-customers .container .slider-title-rochem h5 {
  background-color: rgb(0, 94, 184);
  background-image: linear-gradient(180deg, #005eb8 0%, #005eb8 70%, #083b6b 100%);
  border-radius: 10px 10px 0 0;
  padding: 10px 15px 25px 15px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgb(131, 131, 131);
}


@-webkit-keyframes scroll-rochem {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 35));
  }
}

@keyframes scroll-rochem {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 35));
  }
}

.slider-rochem {
  background: white;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 15px 20px -26px, rgba(0, 0, 0, 0.45) 0px -15px 20px -26px;
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider-rochem::before,
.slider-rochem::after {
  background: linear-gradient(to right, white 10%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.slider-rochem::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider-rochem::before {
  left: 0;
  top: 0;
}

.slider-rochem .slide-track-rochem {
  -webkit-animation: scroll-rochem 40s linear infinite;
  animation: scroll-rochem 40s linear infinite;
  display: flex;
  width: calc(250px * 70);
}

.slider-rochem .slide-rochem {
  height: 100px;
  width: 250px;
}

.slider-rochem .slide-track-rochem:hover {
  animation-play-state: paused;
}

/* FAIST Costumers */
#our-customers .container .slider-title-faist {
  margin-right: 0px;
  margin-bottom: -15px;
  justify-items: flex-end;
}

#our-customers .container .slider-title-faist h5 {
  background-color: rgb(202, 24, 24);
  background-image: linear-gradient(180deg, #ca1818 0%, #ca1818 70%, #770b0b 100%);
  border-radius: 10px 10px 0 0;
  padding: 10px 15px 25px 15px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgb(131, 131, 131);
}


@-webkit-keyframes scroll-faist {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 5));
  }
}

@keyframes scroll-faist {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 5));
  }
}

.slider-faist {
  background: white;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 15px 20px -26px, rgba(0, 0, 0, 0.45) 0px -15px 20px -26px;
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider-faist::before,
.slider-faist::after {
  background: linear-gradient(to right, white 10%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.slider-faist::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider-faist::before {
  left: 0;
  top: 0;
}

.slider-faist .slide-track-faist {
  -webkit-animation: scroll-faist 40s linear infinite;
  animation: scroll-faist 40s linear infinite;
  display: flex;
  width: calc(250px * 10);
}

.slider-faist .slide-faist {
  height: 100px;
  width: 250px;
}

.slider-faist .slide-track-faist:hover {
  animation-play-state: paused;
}


@font-face {
    font-family: EgamasterIconografia;
    src: url("/assets/fonts/Egamaster-Iconografia.woff")
}

@font-face {
    font-family: EgamasterIconografiaAmp;
    src: url("/assets/fonts/Egamaster-Iconografia-Amp.woff")
}

.node-header-text {
    font-family: EgamasterIconografia, sans-serif;
    font-size: 2em;
    height: 34px;
    padding: 0 !important;
    font-weight: normal !important
}

.node-header-text {
    font-family: EgamasterIconografiaAmp, sans-serif;
    font-size: 2em;
    padding: 0 !important;
    font-weight: normal !important
}

