/* Table of Contents:
1. Import Statements
2. Keyframes and Property Animations    
3. Custom Properties
4. Global Styles
5. Typography Styles
6. Heading and Subheadings
7. Form and Inputs
8. Maps Elements
9. Header and Navbar
10. Section and Container
11. Background and Setting Color
12. Swiper Setting
13. Button and Links
14. Overlay
15. Utility Classes
16. Social and Contact Setting
17. Breadcrumb
18. Spesific Media Queries
19. Card Setting
20. Progress and Rating 
21. Accordion
*/

/* ---------------------------- */
/* Import Statements            */
/* ---------------------------- */
@import url("../css/vendor/fonts.css");
@import url("../css/vendor/");
@import url("../css/vendor/bootstrap.min.css");
@import url("../css/vendor/fontawesome.css");
@import url("../css/vendor/brands.css");
@import url("../css/vendor/regular.css");
@import url("../css/vendor/solid.css");
@import url("../css/vendor/swiper-bundle.min.css");
@import url("../css/vendor/rtmicons.css");
@import url("../css/vendor/poppins/stylesheet.css");
@import url("../css/vendor/inter/stylesheet.css");

/* ---------------------------- */
/* Keyframes and Property Animations            */
/* ---------------------------- */
@property --progress {
  syntax: "<integer>";
  inherits: true;
  initial-value: 0;
}

@keyframes load {
  to {
    --progress: var(--value);
  }
}

@keyframes background_animation {
  from {
    background-size: 100%;
  }

  to {
    background-size: 110%;
  }
}

@keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(1, 1, 1);
    transform-origin: center;
    border-width: 0px;
  }

  to {
    opacity: 0;
    transform: scale3d(1.7, 1.7, 1.8);
    transform-origin: center;
    border-width: 13px;
  }
}

/* ---------------------------- */
/*  Custom Properties            */
/* ---------------------------- */
:root {
  --primary: #0b0d0f;
  --text-color: #f9fafb;
  --text-color-2: #b5b5b5;
  --background-color: #0b0d0f;
  --accent-color: #2563eb;
  --accent-color-2: #101315;
  --accent-color-3: #66707c;
  --accent-color-4: #e6e7e9;
  --accent-color-5: #2083ff;
  --accent-color-6: #5cd47e;
  --accent-color-7: #e7f9ec;
  --accent-color-8: #e4eef9;
  --outline-color: #383838;
  --linear-gradient: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(37, 99, 235, 1) 50%,
    rgba(249, 250, 251, 1) 100%
  );
  --linear-gradient-2: linear-gradient(
    rgba(37, 99, 235, 1) 0%,
    rgba(21, 56, 133, 1) 100%
  );
  --linear-gradient-3: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.2),
      transparent
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(56, 56, 56, 1) 0%,
      rgba(11, 15, 14, 1) 100%
    );
  --font-1: "Poppins", sans-serif;
  --font-2: "Inter", sans-serif;
}

/* ---------------------------- */
/* Global Styles                */
/* ---------------------------- */
body {
  font-family: var(--font-1);
  color: var(--text-color);
  background-color: var(--primary);
}

/* ---------------------------- */
/* Typography                   */
/* ---------------------------- */
h1 {
  font-size: 64px;
  font-weight: 600;
}

h2 {
  font-size: 56px;
  font-weight: 600;
}

h3 {
  font-size: 48px;
  font-weight: 600;
}

h4 {
  font-size: 36px;
  font-weight: 500;
}

h5 {
  font-size: 24px;
  font-weight: 500;
}

h6 {
  font-size: 20px;
  font-weight: 400;
}

button,
a {
  font-size: 16px;
}

p {
  font-size: 16px;
  font-family: var(--font-2);
  color: var(--text-color-2);
}

.small-text {
  font-size: 14px;
  font-family: var(--font-2);
}

.nano-text {
  font-size: 11px;
  font-family: var(--font-2);
}

.list-circle {
  list-style: disc var(--accent-color);
}

li {
  font-size: 16px;
}

img {
  object-fit: cover;
}

hr {
  width: 100%;
  border: none;
  height: 2px;
  background-color: var(--outline-color);
  margin: 0;
}

.text-accent {
  background: linear-gradient(
    50deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(37, 99, 235, 1) 50%,
    rgba(21, 56, 133, 1) 75%,
    rgba(255, 255, 255, 1) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: moveGradient 5s linear infinite;
}

.text-accent-2 {
  background: linear-gradient(
    rgba(37, 99, 235, 1) 0%,
    rgba(21, 56, 133, 1) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-footer {
  position: relative;
  z-index: -1;
  display: flex;
  justify-content: center;
  font-family: var(--font-1);
  font-weight: 600;
  font-size: 280px;
  background: linear-gradient(
    90deg,
    rgba(16, 19, 21, 1) 0%,
    rgba(56, 56, 56, 1) 50%,
    rgba(16, 19, 21, 1) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-text-stroke: 2px var(--outline-color);
  animation: moveGradient 5s linear infinite;
}

.text-404 {
  font-size: 520px;
  font-weight: 600;
}

.text-copyright {
  color: rgba(179, 184, 196, 0.5);
  margin: 0;
}

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

/* ---------------------------- */
/* Headings and Subheadings      */
/* ---------------------------- */
.banner-heading {
  font-size: 5.5rem;
}

.sub-heading {
  color: var(--accent-color);
}

.text-color {
  color: var(--text-color);
}

.text-color-2 {
  color: var(--text-color-2);
}

.p-banner {
  color: var(--primary);
}

/* ---------------------------- */
/* Forms and Inputs             */
/* ---------------------------- */
.form-control {
  padding: 15px 24px;
  border: none;
}

.form.search {
  background-color: var(--accent-color-2);
  display: flex;
  align-items: center;
  padding: 1rem;
  border-radius: 40px;
}

.form.contact {
  background-color: var(--accent-color-2);
  border-radius: 16px;
  padding: 40px 24px;
}

.form input,
.form select,
.form textarea {
  background-color: #161a1c;
  padding: 20px;
  border-radius: 8px;
  color: var(--text-color-2);
}

.form.search input {
  border: none;
  padding: 8px;
  width: 100%;
  background-color: transparent;
  color: var(--outline-color);
}

.form.contact input,
.form.contact select,
.form.contact textarea {
  color: var(--text-color);
  background-color: var(--background-color);
  border: 1px solid transparent;
  transition: all 0.5s ease;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  background-color: #161a1c;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 20px;
  border-radius: 8px;
  color: var(--text-color-2);
  font-family: var(--font-2);
}

.form.search input:focus {
  border: none;
  outline: none;
  padding: 8px;
  width: 100%;
  background-color: transparent;
  color: var(--outline-color);
}

.form.contact input:focus,
.form.contact textarea:focus,
.form.contact select:focus {
  color: var(--text-color);
  background-color: var(--background-color);
  border: 1px solid var(--outline-color) !important;
}

.form input:autofill,
.form input:autofill:focus {
  color: var(--text-color-2);
  transition: background-color 5000s ease-in-out;
  -webkit-text-fill-color: var(--text-color-2);
  font-family: var(--font-2);
}

.form.search input:autofill,
.form.search input:autofill:focus {
  border: none;
  padding: 8px;
  width: 100%;
  background-color: transparent;
  color: var(--outline-color);
}

.form.contact input:autofill,
.form.contact input:autofill:focus {
  color: var(--outline-color);
  background-color: var(--background-color);
  border: 1px solid var(--outline-color);
}

.form input::placeholder,
.form textarea::placeholder {
  color: var(--text-color-2);
  font-family: var(--font-2);
}

.form.search input::placeholder {
  border: none;
  padding: 8px;
  width: 100%;
  background-color: transparent;
  color: var(--outline-color);
}

.form.contact input::placeholder,
.form.contact textarea::placeholder {
  color: var(--outline-color);
  border: 1px solid transparent;
}

.form .form-select {
  color: var(--text-color-2);
}

.form option {
  background-color: var(--primary);
}

.form-check-input:checked[type="checkbox"] {
  --bs-form-check-bg-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="blue" class="bi bi-check-xl" viewBox="0 0 16 16"><path d="M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z"/></svg>');
}

.form input.form-check-input {
  background-color: transparent;
  border: 1px solid gray;
}

.form input.form-check-input:checked {
  border: 1px solid blue;
  color: blue;
}

.submit_form-subscribe {
  padding-inline: 2rem;
  padding-block: 0.7rem;
  padding: 16px 32px;
  text-decoration: none;
  transition: all 0.5s;
  color: white;
  background-color: transparent;
  border-radius: 8px;
}

.submit_form-subscribe:hover {
  background-color: transparent;
  color: white;
  filter: none;
}

/* ---------------------------- */
/* Map Elements       */
/* ---------------------------- */
.maps {
  width: 100%;
  height: 700px;
  transition: filter 0.5s;
  display: block;
}

/* ---------------------------- */
/* Header and Navbar       */
/* ---------------------------- */
#header {
  background-color: var(--background-color);
  transition: all 0.5s ease;
}

.logo-container {
  max-width: 216px;
}

.logo-footer {
  max-width: 200px;
}

.index-partners {
  position: relative;
  z-index: 2;
}

.index-partners p {
  margin: 0;
  color: var(--outline-color);
}

.logo-partner {
  filter: brightness(200%) contrast(0%) saturate(0%) blur(0px) hue-rotate(0deg);
  transition-duration: 0.5s;
}

.logo-partner:hover {
  filter: none;
}

.offcanvas {
  background-color: var(--primary);
}

.offcanvas-header {
  color: var(--text-color);
}

.navbar {
  margin: 24px 0;
}

.navbar-nav .nav-link:focus {
  color: var(--accent-color);
  text-align: center;
}

.navbar-nav .nav-link.show {
  color: var(--accent-color);
}

.nav-link {
  font-size: 18px;
  font-family: var(--font-2);
  padding-block: 1.2rem;
  color: var(--text-color);
  text-align: center;
}

.nav-link:hover {
  color: var(--accent-color);
  text-align: center;
}

.nav-link.active {
  color: var(--accent-color) !important;
  text-align: center;
}

.navbar-toggler {
  border: none;
  color: var(--text-color);
}

.navbar-toggler:focus {
  box-shadow: none;
  background-color: transparent;
  color: var(--accent-color);
}

.nav-tabs {
  border-bottom: none;
}

.nav-tabs .nav-link {
  background-color: transparent;
  color: var(--text-color-2);
  border: none;
  position: relative;
}

.nav-tabs .nav-link:hover {
  border: none;
  color: white;
}

.nav-tabs .nav-link.active {
  background-color: transparent;
  border: none;
}

.nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text-color-2);
}

.dropdown-menu {
  border-radius: 0;
  border: none;
  padding: 0;
  width: max-content;
  -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
  min-width: max-content;
}

.dropdown-item {
  padding-block: 0.75rem;
  color: var(--text-color);
  font-family: var(--font-1);
  font-size: 0.95rem;
  font-weight: 400;
  padding-inline: 2rem;
  text-align: start;
  background-color: var(--background-color);
}

.dropdown-item.active {
  color: var(--text-color);
  background-color: var(--accent-color);
}

.dropdown-item:hover {
  background-color: var(--accent-color);
  color: var(--text-color);
}

.dropdown-item:focus {
  color: var(--text-color-2);
}

/* ---------------------------- */
/* Section and Container       */
/* ---------------------------- */
.section {
  padding: 6em 2em 6em 2em;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.section.marquee {
  padding: 6em 0 6em 0;
}

.r-container {
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}

/* ---------------------------- */
/* Background and Setting Color      */
/* ---------------------------- */
.bg-accent-primary {
  background-color: var(--primary);
}

.bg-accent-color {
  background-color: var(--accent-color);
}

.bg-accent-color-2 {
  background-color: var(--accent-color-2);
}

.bg-accent-color-3 {
  background-color: var(--accent-color-3);
}

.bg-accent-color-4 {
  background-color: var(--accent-color-4);
}

.bg-accent-color-5 {
  background-color: var(--accent-color-5);
}

.bg-accent-color-6 {
  background-color: var(--accent-color-6);
}

.bg-accent-color-7 {
  background-color: var(--accent-color-7);
}

.bg-accent-color-8 {
  background-color: var(--accent-color-8);
}

.bg-accent {
  background-color: var(--background-color);
}

.bg-text-color {
  background-color: var(--text-color);
}

.bg-text-color-2 {
  background-color: var(--text-color-2);
}

.bg-dark-transparent {
  background-color: #232323b7;
}

.text-color {
  color: var(--text-color);
}

.text-color-2 {
  color: var(--text-color-2);
}

.accent-color-primary {
  color: var(--primary);
}

.accent-color {
  color: var(--accent-color);
}

.accent-color-2 {
  color: var(--accent-color-2);
}

.accent-color-3 {
  color: var(--accent-color-3);
}

.accent-color-4 {
  color: var(--accent-color-4);
}

.accent-color-5 {
  color: var(--accent-color-5);
}

.accent-color-6 {
  color: var(--accent-color-6);
}

.accent-color-7 {
  color: var(--accent-color-7);
}

.accent-color-8 {
  color: var(--accent-color-8);
}

.accent {
  color: var(--background-color);
}

.outline-color {
  color: var(--outline-color);
}

.border-accent {
  border-color: var(--accent-color) !important;
}

.border-accent-2 {
  border-color: var(--accent-color-2) !important;
}

.border-text-color {
  border-color: var(--text-color) !important;
}

.border-testimonial {
  border-right: 5px solid var(--accent-color-2);
}

.border-bottom-hover:hover {
  border-bottom: 2px solid var(--accent-color);
}

.border-accent-color {
  border: 1px solid var(--accent-color);
}

.custom-border {
  padding: 2rem 3rem;
  border-radius: 1rem;
}

.custom-border:hover {
  box-shadow: 0px 5px 6px rgba(1, 199, 243, 0.26);
}

.outline {
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--accent-color);
}

.text-gray {
  color: grey !important;
}

/* ---------------------------- */
/* Swiper Setting              */
/* ---------------------------- */
.text-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.text-marquee-content {
  display: inline-block;
  animation: text-marquee 70s linear infinite;
  font-size: 100px;
  padding-right: 50%;
}

@keyframes text-marquee {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-100%);
  }
}

.wrapper-marquee-gallery {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.marquee-container {
  overflow: hidden;
  /* white-space: nowrap; */
  width: 100%;
  display: flex;
  flex-direction: row;
  margin: auto 0;
  --gap: 1rem;
  --speed: 20;
  /* gap: var(--gap); */
}

.marquee-container.image-gallery {
  --gap: 0.5rem;
}

.marquee {
  animation: marquee calc(500s / var(--speed)) infinite linear;
}

.reverse .marquee {
  animation-direction: reverse;
}

.marquee-content {
  display: inline-flex;
}

.marquee-item:hover img {
  filter: var(--accent-color);
}

.marquee-item {
  text-wrap: nowrap;
  padding-inline: var(--gap);
  margin-right: 1rem;
  width: max-content;
}

.marquee-item.accent {
  color: var(--accent-color);
}

@keyframes marquee {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(calc(-100% - 1rem));
  }
}

.marquee-vertical-container {
  overflow: hidden;
  height: 800px;
  display: flex;
  flex-direction: column;
  --gap: 1rem;
  --speed: 20;
  position: relative;
}

.marquee-vertical {
  display: flex;
  flex-direction: column;
  animation: marquee-vertical calc(500s / var(--speed)) infinite linear;
}

.reverse-vertical .marquee-vertical {
  animation-direction: reverse;
}

.marquee-vertical-content {
  display: inline-flex;
  flex-direction: column;
}

.marquee-vertical-item {
  padding-block: var(--gap);
  width: 100%;
}

.marquee-vertical-item img {
  display: block;
  height: auto;
  border-radius: 10px;
}

@keyframes marquee-vertical {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.service-scroll {
  height: 610px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 3rem;
}

/* width */
.service-scroll::-webkit-scrollbar {
  width: 6px;
}

/* Track */
.service-scroll::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 10px;
}

/* Handle */
.service-scroll::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 10px;
}

/* Handle on hover */
.service-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color-2);
}

.swiper-wrapper {
  height: max-content;
}

.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
  background: none;
  box-shadow: none;
}

.swiperTestimonials {
  position: relative;
  padding-top: 0.5rem;
}

.swiperTestimonials .swiper-slide-active .card-testimonial {
  border: 1px solid var(--outline-color);
}

.swiperTestimonials2 {
  position: relative;
  padding-top: 0.5rem;
}

.swiperTestimonials2 .swiper-slide-active .card-testimonial {
  border: 1px solid var(--outline-color);
}

.swiperTestimonials3 {
  position: relative;
  padding-top: 0.5rem;
}

.swiperTestimonials3 .swiper-slide-active .card-testimonial {
  border: 1px solid var(--outline-color);
}

.wrapper-testimonials {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.wrapper-testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(11, 13, 15, 1) 0%,
    rgba(11, 13, 15, 0) 27%,
    rgba(11, 13, 15, 0) 51%,
    rgba(11, 13, 15, 0) 74%,
    rgba(11, 13, 15, 1) 100%
  );
  pointer-events: none;
  z-index: 9;
}

.swiperImage {
  position: relative;
  padding-top: 5rem;
  padding-inline: 5rem;
  height: 45rem;
  width: 100%;
}

.swiperImage .swiper-slide {
  transition: transform all 0.5s ease !important;
}

.swiperImage .swiper-slide-active {
  position: relative !important;
  transform: scale(1.2) !important;
  z-index: 10 !important;
}

.swiperImage .swiper-slide {
  opacity: 0;
}

.swiperImage .swiper-slide-active,
.swiperImage .swiper-slide-prev,
.swiperImage .swiper-slide-next {
  opacity: 1;
}

.card-swiper {
  background-color: rgba(16, 19, 21, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 16px;
  border: 1px solid var(--outline-color);
  padding: 16px 16px 56px 16px;
  backdrop-filter: blur(30px);
  transition: all 0.5s ease;
}

.content-top-swiper {
  position: relative;
  overflow: hidden;
  background-color: var(--accent-color-2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--outline-color);
  border-radius: 8px;
  min-height: 250px;
}

.content-top-swiper svg {
  position: relative;
  z-index: 2;
}

.content-top-swiper.features-detail {
  padding: 50px 100px;
  border: transparent;
  height: 100%;
}

.content-top-swiper .customer-container {
  position: absolute;
  background: rgba(16, 19, 21, 0.2);
  padding: 12px 16px;
  backdrop-filter: blur(20px);
  border-radius: 8px;
  top: 62%;
  left: 55%;
  z-index: 2;
}

.content-top-swiper .customer-container.features {
  top: 67%;
}

.content-top-swiper .float {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 75%;
  left: 10%;
}

.content-top-swiper .float.features {
  left: 20%;
}

.content-top-swiper-2 {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--accent-color-2);
  border: 1px solid var(--outline-color);
  border-radius: 8px;
  min-height: 250px;
}

.content-top-swiper-2 .item-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 12px 24px 12px 12px;
  border-radius: 8px;
  background: rgba(16, 19, 21, 0.2);
  backdrop-filter: blur(20px);
  position: absolute;
}

.content-top-swiper-2 .item-top.float {
  top: 20%;
  left: 25%;
  z-index: 2;
}

.content-top-swiper-2 .item-top.float2 {
  top: 35%;
  left: 7%;
  z-index: 1;
}

.content-top-swiper-2 .item-top.float3 {
  top: 50%;
  left: 45%;
  z-index: 2;
}

.content-top-swiper-2 .item-top.float4 {
  top: 65%;
  left: 25%;
  z-index: 2;
}

.content-top-swiper-3 {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: var(--accent-color-2);
  border: 1px solid var(--outline-color);
  border-radius: 8px;
  min-height: 250px;
}

.content-top-swiper-3 .card-top {
  background-color: var(--accent-color-2);
  position: relative;
  padding: 16px;
  border-radius: 8px;
  z-index: 2;
}

.content-top-swiper-3 .card .img-card-top {
  /* style="padding: 8px; border-radius: 6px; background-color: #202A40;" */
  padding: 8px;
  border-radius: 6px;
  background-color: #202a40;
}

.content-bottom-swiper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.content-bottom-swiper p {
  max-width: 350px;
}

.link-swiper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--text-color);
}

.link-swiper a {
  color: var(--text-color);
}

.wrapper-testimonials {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.wrapper-testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(11, 15, 14, 1) 0%,
    rgba(11, 15, 14, 0) 27%,
    rgba(11, 15, 14, 0) 51%,
    rgba(11, 15, 14, 0) 74%,
    rgba(11, 15, 14, 1) 100%
  );
  pointer-events: none;
  z-index: 9;
}

.swiperStep .swiper-slide.swiper-slide-thumb-active h4 {
  color: var(--accent-color);
}

.swiperStep {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.swiperStep2 .swiper-slide img {
  display: block;
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.swiperStep2 .swiper-slide {
  background-size: cover;
  background-position: center;
}

.swiperStep {
  width: 100%;
  height: 100%;
}

.swiperStep .swiper-slide img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.swiperStep {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.swiperStep .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.swiperStep .swiper-slide-thumb-active {
  opacity: 1;
}

.mySwiper {
  position: relative;
  padding-bottom: 150px;
}

.swiper-pagination {
  margin-block: 1rem;
  position: relative;
}

.swiper-slide {
  padding: 0.5rem;
}

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

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

.swiperImage .swiper-slide.swiper-slide-next .link-swiper,
.swiperImage .swiper-slide.swiper-slide-prev .link-swiper {
  display: none;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 27px;
}

.swiperStep2 .swiper-button-next::after,
.swiperStep2 .swiper-button-prev::after {
  font-size: 45px;
}

.swiperStep2 .swiper-button-next,
.swiperStep2 .swiper-button-prev {
  right: -1rem;
  top: 15rem;
  width: 95px;
  height: 95px;
  border: 6px solid var(--primary);
  background: linear-gradient(180deg, #050505 -77.42%, #01c7f3 100%);
  color: var(--text-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

/* Center the buttons horizontally */
.swiperStep2 .swiper-button-next {
  right: 0;
  transform: translateY(20px);
}

.swiperStep2 .swiper-button-prev {
  left: 0;
  transform: translateY(20px);
}

.mySwiper .swiper-button-next,
.mySwiper .swiper-button-prev {
  right: -1rem;
  top: 35rem;
  width: 50px;
  height: 50px;
  border: 2px solid var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

/* Center the buttons horizontally */
.mySwiper .swiper-button-next {
  right: 0;
  transform: translateY(20px);
}

.mySwiper .swiper-button-prev {
  left: 90%;
  transform: translateY(20px);
}

/* Center the buttons horizontally */
.swiper-button-next.service {
  right: -9%;
  /* Gerakkan tombol next ke kanan dari tengah */
  transform: translateY(20px);
}

.swiper-button-prev.service {
  left: -7%;
  /* Gerakkan tombol prev ke kiri dari tengah */
  transform: translateY(20px);
}

/* Style for both next and prev buttons */
.swiperImage .swiper-button-next,
.swiperImage .swiper-button-prev {
  bottom: 10px;
  /* Posisikan tombol di bagian bawah */
  width: 50px;
  height: 50px;
  border: 1px solid var(--accent-color);
  background-color: var(--background-color);
  /* Warna background semi-transparan */
  color: var(--accent-color);
  border-radius: 50%;
  /* Membuat tombol bulat */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

/* Center the buttons horizontally */
.swiperImage .swiper-button-next {
  top: 50%;
  right: 0%;
  /* Gerakkan tombol next ke kanan dari tengah */
  transform: translateY(20px);
}

.swiperImage .swiper-button-prev {
  top: 50%;
  left: 0%;
  /* Gerakkan tombol prev ke kiri dari tengah */
  transform: translateY(20px);
}

/* Ukuran icon panah */
.swiperImage .swiper-button-next::after,
.swiperImage .swiper-button-prev::after {
  content: "";
}

.swiperImage .swiper-button-next i,
.swiperImage .swiper-button-prev i {
  font-size: 24px;
  font-weight: 600;
}

/* Hover effect */
.swiperImage .swiper-button-next:hover,
.swiperImage .swiper-button-prev:hover {
  background-color: var(--accent-color);
  color: var(--primary);
  /* Background lebih gelap saat hover */
}

.custom-swiper {
  width: 100%;
  height: 600px;
  padding-right: 3rem;
}

.custom-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-scrollbar {
  width: 6px;
  position: absolute;
  right: 10px;
  top: 0px;
  margin-top: 150px;
  bottom: 0;
  background: #e0e0e0;
  border-radius: 10px;
  z-index: 9999;
}

.swiper-scrollbar.swiper-scrollbar-vertical {
  height: 300px;
}

.custom-scrollbar .swiper-scrollbar-drag {
  background: #ff9800;
  border-radius: 10px;
}

/* ---------------------------- */
/* Buttons & Links              */
/* ---------------------------- */
button {
  padding-inline: 1rem;
  padding-block: 0.5rem;
  text-decoration: none;
  transition: all 0.5s;
}

button:hover {
  color: var(--text-color);
}

a {
  text-decoration: none;
}

.w-max-content {
  width: max-content;
}

.read-more {
  color: var(--accent-color);
  transition: all 0.5s;
}

.read-more:hover {
  color: var(--text-color);
}

.tags {
  padding: 12px 16px;
  font-family: var(--font-2);
  color: var(--primary);
  transition: all 0.5s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  background: rgba(11, 15, 14, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 70px;
  color: var(--text-color);
}

.btn {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-1);
  padding: 16px 32px;
}

.btn-close {
  color: var(--text-color);
}

.btn-close:hover {
  color: var(--text-color);
}

.btn-accent {
  border: 1px solid transparent;
  outline: none;
  background-color: var(--accent-color);
  color: var(--text-color);
  padding: 16px 32px;
  font-weight: 400;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition: all 0.5s;
  width: max-content;
  gap: 0.5rem;
  z-index: 1;
}

.btn-accent:hover {
  color: var(--text-color);
}

.btn-accent.primary {
  color: var(--text-color);
  border: 1px solid var(--text-color);
  background-color: transparent;
  z-index: 1;
}

.btn-accent:hover.primary {
  border: 1px solid transparent;
}

.btn-accent::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--text-color);
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: inherit;
  transition: all 0.5s;
}

.btn-accent.blue::before {
  background: var(--accent-color);
}

.btn-accent.primary::before {
  background: transparent;
}

.btn-accent.primary.active::before {
  background: var(--accent-color);
}

.btn-accent:hover::before {
  background: var(--primary);
}

.btn-accent.blue:hover::before {
  background: var(--primary);
}

.btn-accent.primary:hover::before {
  background: var(--accent-color);
}

.gradient-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  z-index: -2;
  filter: blur(10px);
  transition: all 0.5s;
}

.gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 125%;
  aspect-ratio: 1;
  border-radius: 100%;
  transition: all 0.5s;
  background-image: linear-gradient(
    90deg,
    rgba(11, 15, 14, 1) 0%,
    rgba(37, 99, 235, 1) 100%
  );
  animation: rotate 2s linear infinite;
  filter: blur(10px);
}

.button:hover .gradient-container {
  transform: translate(-50%, -50%) scale(1.2);
  filter: blur(5px);
}

.button:hover .gradient {
  filter: blur(5px);
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.btn-accent.white {
  background: none;
  background-color: var(--text-color);
  border-color: var(--primary);
}

.btn-accent i {
  font-weight: 600;
}

.btn-accent-2 {
  background: transparent;
  transition: all 0.5s;
  border: 1px solid var(--text-color-2);
  display: flex;
  flex-direction: row;
  gap: 1rem;
  border-radius: 12px;
  transition: all 0.5s ease;
  color: var(--text-color);
}

.btn-accent-2:hover {
  background: var(--linear-gradient-3);
  border: 1px solid var(--text-color-2);
  color: var(--primary);
}

.btn-accent-2 i {
  font-weight: 600;
}

.btn-accent-outline {
  background-color: transparent;
  border: 1px solid var(--text-color);
  color: var(--text-color);
}

.btn-accent-outline:hover {
  background-color: var(--text-color);
  color: var(--primary);
}

.btn-toggler-accent {
  background-color: transparent;
  border: 1px solid var(--text-color);
  color: var(--text-color);
  aspect-ratio: 1/1;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.btn-toggler-accent:hover {
  background-color: var(--text-color);
  color: var(--primary);
}

.btn-white-outline {
  background-color: transparent;
  border-color: white;
  color: white;
  border-width: 3px;
}

.btn-white-outline-hover:hover {
  background-color: transparent;
  border-color: white;
  color: white;
}

.btn-white-outline:hover {
  background-color: white;
  color: var(--accent-color);
}

.card .link {
  color: var(--accent-color);
  transition: color 0.5s;
}

.card .link:hover {
  color: var(--primary);
}

.link.accent-color {
  color: var(--accent-color);
  transition: color 0.5s;
}

.link.accent-color:hover {
  color: var(--dark-bg);
}

.link {
  color: var(--text-color-2);
  transition: all 0.5s ease;
  cursor: pointer;
}

.link:hover {
  color: var(--accent-color);
}

.link.active {
  color: var(--accent-color);
}

.link-white {
  color: white;
}

.link-white:hover {
  color: var(--accent-color);
}

/* ---------------------------- */
/* Overlay                      */
/* ---------------------------- */
.blog-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 69, 81, 0.6) 100%
  );
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.error-overlay {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  text-align: center;
  padding: 32px;
  border-radius: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(16, 19, 21, 0.65);
  backdrop-filter: blur(16px);
}

.error-overlay p {
  color: var(--text-color);
  max-width: 300px;
}

.image-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: absolute;
  background-color: rgba(16, 19, 21, 0.4);
  border-radius: 8px;
  backdrop-filter: blur(16px);
  top: 95%;
  left: 50%;
  transform: translate(-50%, -95%);
  padding: 12px;
  width: 90%;
  z-index: 1;
}

.overlay {
  color: var(--accent-color-2);
  opacity: 0.3;
}

.bg-overlay {
  background: linear-gradient(180deg, #050505 0%, #01c7f3 382.16%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.bg-overlay-2 {
  background: linear-gradient(
    0deg,
    rgba(1, 137, 142, 0.28),
    rgba(1, 137, 142, 0.28)
  );
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.testimonial-overlay {
  background: linear-gradient(
    0deg,
    rgba(255, 239, 225, 0.96),
    rgba(255, 239, 225, 0.96)
  );
  position: absolute;
  width: 75%;
  height: 100%;
  top: 0;
  right: 0;
}

.bg-accent-opacity {
  background: linear-gradient(
    0deg,
    rgba(43, 43, 43, 0.86),
    rgba(43, 43, 43, 0.86)
  );
}

.circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  background-color: var(--accent-color);
  width: 50%;
  height: 50%;
  left: -80%;
  top: 50%;
  transform: translate(80%, -50%);
}

.circle.benefit {
  width: 30%;
  height: 30%;
  left: -50%;
  top: 40%;
}

.circle.benefit-2 {
  width: 30%;
  height: 30%;
  top: 70%;
  left: 70%;
}

.circle.faq {
  width: 30%;
  height: 30%;
  top: 55%;
  left: 70%;
}

.circle.faq-2 {
  width: 30%;
  height: 30%;
  top: 70%;
  left: 70%;
}

.circle.marquee {
  width: 30%;
  height: 30%;
  top: 40%;
  left: 70%;
}

.circle-features {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  background-color: var(--accent-color);
  width: 50%;
  height: 50%;
  right: -30%;
  top: 80%;
  transform: translate(30%, -80%);
}

.circle-bg-features {
  background: url(../image/bg-circle.png) no-repeat 150% 80% / contain;
  background-size: 50%;
}

.circle-bg-faq {
  width: 100%;
  height: 100%;
  background: url(../image/bg-circle.png) no-repeat center/cover;
  z-index: -1;
}

.circle-pricing {
  position: absolute;
  border-radius: 50%;
  background-color: var(--accent-color);
  filter: blur(200px);
  width: 70%;
  height: 40%;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180%;
  height: 120px;
  background: radial-gradient(
    circle at center,
    rgba(37, 99, 235, 0.6) 0%,
    rgba(37, 99, 235, 0.6) 0%,
    rgba(37, 99, 235, 0.6) 0%,
    rgba(37, 99, 235, 0.6) 0%,
    rgba(37, 99, 235, 0.2) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  filter: blur(40px);
  z-index: 0;
  animation: glowRotate 8s linear infinite;
  transform-origin: center center;
}

.glow.team {
  left: 50%;
  top: 30%;
  width: 180%;
  height: 120px;
  transform: translate(-50%, -30%);
}

@keyframes glowRotate {
  0% {
    transform: translateX(-50%) rotate(0deg) scale(1);
  }
  50% {
    transform: translateX(-50%) rotate(180deg) scale(1.2);
  }
  100% {
    transform: translateX(-50%) rotate(360deg) scale(1);
  }
}

@keyframes colorShift-1 {
  0% {
    background-color: var(--text-color);
  }
  25% {
    background-color: #7be8a9;
  }
  50% {
    background-color: var(--text-color);
  }
  75% {
    background-color: #7be8a9;
  }
  100% {
    background-color: var(--text-color);
  }
}

@keyframes colorShift-2 {
  0% {
    background-color: #7be8a9;
  }
  25% {
    background-color: var(--text-color);
  }
  50% {
    background-color: #7be8a9;
  }
  75% {
    background-color: var(--text-color);
  }
  100% {
    background-color: #7be8a9;
  }
}

@keyframes colorShift-3 {
  0% {
    background: radial-gradient(
      circle,
      rgba(151, 221, 181, 1) 0%,
      rgba(151, 221, 181, 1) 100%
    );
  }
  25% {
    background: var(--text-color);
  }
  50% {
    background: radial-gradient(
      circle,
      rgba(151, 221, 181, 1) 0%,
      rgba(151, 221, 181, 1) 100%
    );
  }
  75% {
    background: var(--text-color);
  }
  100% {
    background: radial-gradient(
      circle,
      rgba(151, 221, 181, 1) 0%,
      rgba(151, 221, 181, 1) 100%
    );
  }
}

@keyframes moveEllipse {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-30px);
  }
}

.rectangle {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60%;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(11, 13, 15, 0) 0%,
    rgba(11, 13, 15, 1) 75%
  );
}

.rectangle-2 {
  position: absolute;
  bottom: 0%;
  left: 0%;
  margin-right: -5px;
  width: 100%;
  height: 60%;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(11, 13, 15, 0) 0%,
    rgba(11, 13, 15, 1) 75%
  );
}

.rectangle-3 {
  position: absolute;
  right: 0;
  margin-right: -5px;
  width: 320px;
  height: 100%;
  z-index: 10;
  background: linear-gradient(to right, rgba(11, 15, 14, 0) 0%, #0b0f0e 100%);
}

.rectangle-cta {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 30%;
  z-index: 10;
  background: linear-gradient(
    180deg,
    rgba(11, 13, 15, 0) 0%,
    rgba(11, 13, 15, 0) 27%,
    rgba(11, 13, 15, 0) 51%,
    rgba(11, 13, 15, 0) 74%,
    rgba(11, 13, 15, 1) 100%
  );
}

.rectangle-cta-2 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 82%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(11, 13, 15, 0) 0%,
    rgba(11, 13, 15, 1) 75%
  );
}

.rectangle-testi {
  position: absolute;
  left: 0;
  margin-left: -5px;
  width: 120px;
  height: 100%;
  z-index: 10;
  background: linear-gradient(to right, #0b0f0e 0%, rgba(11, 13, 15, 0) 100%);
}

.rectangle-testi-2 {
  position: absolute;
  right: 0;
  margin-right: -5px;
  width: 120px;
  height: 100%;
  z-index: 10;
  background: linear-gradient(to right, rgba(11, 13, 15, 0) 0%, #0b0f0e 100%);
}

.line {
  height: 100%;
  margin: 0 auto;
  width: 2px;
  background: var(--outline-color);
}

.glow-bg {
  width: 500px;
  height: 180px;
  background: radial-gradient(
    circle at center,
    rgba(37, 99, 235, 0.8) 0%,
    rgba(37, 99, 235, 0.3) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  filter: blur(40px);
  border-radius: 12px;
}

.bg-blur {
  border-radius: 20px;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    140.72deg,
    rgba(30, 30, 30, 0.7) -67.01%,
    rgba(5, 5, 5, 0.7) 100.85%
  );
  z-index: -1;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12.4px);
  -webkit-backdrop-filter: blur(2px);
}

.linear-gradient {
  padding: 14px 42px;
  background-color: var(--accent-color-2);
  border-radius: 50px;
  width: max-content;
}

.cta-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 20.5%,
    rgba(1, 199, 243, 0.2) 100%
  );
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.contact-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 27.06%,
    rgba(1, 199, 243, 0.61) 100%
  );
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.video-overlay {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(
    180deg,
    rgba(4, 56, 63, 0.144) 0%,
    rgba(4, 56, 63, 0.72) 100%
  );
  opacity: 0.5;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

/* ---------------------------- */
/* Utility Classes              */
/* ---------------------------- */
.hover-transform:hover {
  transform: translateY(-10px);
}

.font-1 {
  font-family: var(--font-1);
}

.font-2 {
  font-family: var(--font-2);
}

.font-3 {
  font-family: var(--font-3);
}

.ls-2 {
  letter-spacing: 2px;
}

.fs-7 {
  font-size: 0.8rem !important;
}

.fs-very-large {
  font-size: 4.125rem;
}

.fw-black {
  font-weight: 900 !important;
}

.divider {
  display: flex;
  align-items: center;
}

.divider::after {
  display: block;
  content: "";
  border-bottom: 0;
  flex-grow: 1;
  border-top: 3px solid #8692af;
  max-width: 30px;
  min-width: 30px;
}

.divider-element {
  letter-spacing: 2px;
  flex-shrink: 0;
  flex-grow: 1;
  margin: 0;
  margin-left: 1rem;
  font-weight: 400;
}

.image-infinite-bg {
  height: 90vh;
}

.animation-bg {
  animation: background_animation 10s forwards;
}

.image-container {
  position: relative;
  display: inline-block;
}

.hotspot {
  position: absolute;
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.top-tooltip {
  position: absolute;
  top: -200%;
  background: linear-gradient(
    180deg,
    rgba(46, 49, 48, 1) 0%,
    rgba(46, 49, 48, 0) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tooltip {
  position: absolute;
  bottom: -275%;
  left: 50%;
  width: max-content;
  transform: translateX(-50%) translateY(10px);
  color: var(--text-color);
  padding: 6px 12px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.tooltip h5 {
  margin: 0;
}

.tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: var(--primary) transparent transparent transparent;
}

.hotspot:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.hotspot.active .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.tooltip img {
  width: 20px;
  height: auto;
  border-radius: 3px;
}

.bg-banner {
  position: relative;
  min-height: 100vh;
  background: url(../image/bg-banner-2.png) no-repeat center bottom,
    url(../image/bg-banner.png) no-repeat center center;
  background-size: auto auto, 2100px auto;
  margin-top: 7rem;
}

.container-banner {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  max-width: 1770px;
  overflow: hidden;
  height: 78vh;
}

.custom-contain {
  margin-bottom: 12em;
}

.image-banner {
  border-radius: 16px 16px 0 0;
  margin-top: 3rem;
}

.bg-banner-2 {
  background: url(../image/bg-banner-4.png) no-repeat center bottom,
    url(../image/bg-banner-3.png) no-repeat center 100%;
  background-size: auto auto, 2100px auto;
  height: 83vh;
}

.bg-who-we-are {
  height: 100%;
  position: relative;
  background-image: url(../image/bg-who-we-are.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  min-height: 50vh;
}

.bg-who-we-are img {
  position: absolute;
  width: 250px;
}

.floating-map {
  margin: 0 3rem;
  margin-inline: 3rem;
  padding: 0;
  margin-top: -15rem;
  border-radius: 20px;
  filter: grayscale(100%);
}

.float-img-who {
  top: 20%;
  left: 10%;
  transform: translate(-20%, -10%);
}

.float-img-who-2 {
  top: 70%;
  left: 35%;
  transform: translate(-70%, -35%);
}

.float-img-who-3 {
  top: 60%;
  left: 75%;
  transform: translate(-60%, -75%);
}

.bg-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px;
  gap: 3rem;
  text-align: center;
  background-image: url(../image/bg-cta.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  border-radius: 8px;
  margin-top: 6em;
}

.bg-cta .image-cta {
  margin-top: -20rem;
}

.component {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  position: absolute;
  top: 10%;
  left: -30%;
  background-color: rgba(11, 13, 15, 0.5);
  padding: 16px;
  border-radius: 12px;
  backdrop-filter: blur(50px);
  border: 1px solid var(--outline-color);
}

.component-svg {
  padding: 8px;
  border-radius: 6px;
  background-color: #202a40;
}

.component-2 {
  background-color: rgba(11, 13, 15, 0.5);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  border: 1px solid var(--outline-color);
  padding: 16px;
  position: absolute;
  top: -35%;
  left: -15%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.component-2 p {
  margin: 0;
}

.component-2 .icon-cta {
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 50%;
}

.component-2 .bottom-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.component-2 .bottom-content h3 {
  font-size: 24px;
  margin: 0;
}

.component-2 .bottom-content p {
  margin: 0;
}

.component-2 .bottom-content .icon-green {
  background-color: #5cd47e;
  border-radius: 50rem;
  padding: 5px;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.component-2 .bottom-content .icon-green i {
  font-size: 11px;
}

.component-3 {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 10%;
  right: -20%;
  z-index: 2;
}

.component-3 .top-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  background-color: rgba(11, 13, 15, 0.5);
  backdrop-filter: blur(20px);
  border-radius: 12px 12px 0 0;
  border: 1px solid var(--outline-color);
  border-bottom: none;
  padding: 16px;
}

.component-3 .bottom-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  background-color: rgba(30, 38, 36, 0.5);
  backdrop-filter: blur(20px);
  border-radius: 0 0 12px 12px;
  border: 1px solid var(--outline-color);
  border-top: none;
  padding: 12px 20px;
}

.component-4 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: #0d0f11;
  position: absolute;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--outline-color);
  top: 35%;
  right: -20%;
}

.bg-footer {
  background-color: var(--accent-color-2);
  border-radius: 16px;
  margin-top: -6.9rem;
  padding: 64px 32px 32px 32px;
}

.bg-404 {
  display: flex;
  align-items: center;
  background: url(../image/bg-404.png);
  background-position: left center;
  background-size: cover !important;
  background-repeat: no-repeat;
  height: 100vh;
}

.bg-cooming-soon {
  display: flex;
  align-items: center;
  background: url(../image/bg-cooming-soon.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
}

.card-title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-title h3 {
  margin: 0;
}

.card-title p {
  margin: 0;
  margin-top: 1rem;
  max-width: 450px;
}

.card-title.middle {
  align-items: center;
  text-align: center;
}

.card-title.middle p {
  max-width: 380px;
}

.title-banner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  border-radius: 50px;
  border: 1px solid #4b4b4b;
  padding: 8px 20px;
}

.title-banner p {
  margin: 0;
  color: var(--text-color);
}

.title {
  background: rgba(37, 99, 235, 0.1);
  padding: 8px 20px;
  border-radius: 50px;
  width: max-content;
}

.title p {
  margin: 0;
}

.bg-attach-fixed {
  background-attachment: fixed;
  background-position: center;
  width: 100%;
  height: 100%;
}

.bg-attach-cover {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}

.social-container {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.social-container.column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.character-img {
  position: relative;
  z-index: 2;
}

.w-70 {
  width: 70%;
}

.stock-img {
  position: relative;
  z-index: 20;
}

.customer-item {
  border-radius: 50%;
  aspect-ratio: 1/1;
  font-size: 19px;
  width: 3.25rem;
  height: 3.25rem;
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--text-color);
  margin-left: -6px;
  overflow: hidden;
}

.customer-item.features {
  border-radius: 50%;
  aspect-ratio: 1/1;
  font-size: 19px;
  width: 2rem;
  height: 2rem;
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--text-color);
  margin-left: -6px;
  overflow: hidden;
}

.customer-custom {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  font-size: 19px;
  width: 3.25rem;
  height: 3.25rem;
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -15px;
  overflow: hidden;
  background-color: var(--accent-color);
  z-index: 10;
  color: var(--primary);
  padding: 13px 0;
}

.customer-custom h5 {
  margin: 0;
  color: var(--text-color);
}

.testimonial-item {
  border-radius: 50%;
  aspect-ratio: 1/1;
  font-size: 19px;
  width: 5rem;
  height: 5rem;
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  margin-left: -6px;
  overflow: hidden;
}

.icon-image {
  background-color: var(--accent-color-2);
  width: max-content;
  padding: 24px;
  border-radius: 100px;
}

.icon-image img {
  width: 30px;
  height: 30px;
}

.bg-box {
  bottom: 0;
  right: 0;
  height: 60%;
  width: 50%;
  border: solid 3px var(--accent-color-2);
}

.icon-box {
  display: flex;
  justify-content: center;
  background: var(--linear-gradient-2);
  font-size: 28px;
  font-weight: 600;
  align-items: center;
  text-align: center;
  aspect-ratio: 1/1;
  transition: all 0.5s;
  border-radius: 50%;
  color: var(--primary);
  padding: 16px;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.6), 0 0 40px rgba(21, 56, 133, 0.4);
  width: max-content;
  height: max-content;
  animation: glowPulse 3s infinite ease-in-out;
}

.icon-box i {
  color: var(--text-color);
  font-weight: 600;
}

.icon-box.small {
  padding: 8px;
}

.icon-box.features-detail {
  width: 18px;
  height: 18px;
  font-size: 15px;
}

button.icon-box.search {
  border: none;
  outline: none;
}

button.icon-box.search i {
  color: var(--text-color);
}

@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.4), 0 0 20px rgba(21, 56, 133, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.8), 0 0 40px rgba(21, 56, 133, 0.6);
    transform: scale(1.05); /* sedikit membesar */
  }
}

.icon-box.link {
  display: flex;
  justify-content: center;
  font-size: 30px;
  align-items: center;
  text-align: center;
  aspect-ratio: 1/1;
  transition: all 0.8s;
  border-radius: 50%;
  color: var(--text-color);
  padding: 30px;
  width: max-content;
  height: max-content;
  background: linear-gradient(90deg, #050505 -83.93%, #01c7f3 127.68%);
}

.icon-box.link:hover {
  background: var(--primary);
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
}

.icon-box-2 {
  display: flex;
  font-size: 60px;
  justify-content: center;
  align-items: center;
  text-align: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  height: max-content;
  width: max-content;
  padding: 10px;
  transition: all 0.5s;
}

.icon-box.social {
  width: 56px;
  height: 56px;
  font-size: 24px;
  border-radius: 8px;
  background: var(--linear-gradient-3);
  color: var(--primary);
  box-shadow: none;
}

.download .icon-box {
  font-size: 15px;
  font-weight: 600;
  width: 30px;
  height: 30px;
  background-color: var(--accent-color-2);
  box-shadow: none;
  color: var(--text-color-2);
}

.download:hover .icon-box {
  background-color: var(--text-color-2);
  color: var(--primary);
}

.author-box {
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 15rem;
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -6px;
  overflow: hidden;
}

.post-button {
  background-color: transparent;
  color: var(--accent-color) !important;
  border: none !important;
}

.post-button:hover {
  background-color: transparent !important;
  color: var(--accent-color) !important;
  transform: scale(1.15);
}

.position-xl-absolute {
  position: absolute;
}

.w-60 {
  width: 60% !important;
}

.shadow-double {
  box-shadow: 40px -40px 0px -4px var(--accent-color),
    -54px 44px 0px -3px var(--text-color-2);
}

.shadow-single-left {
  box-shadow: -54px 44px 0px -3px var(--accent-color);
}

.shadow-single-right {
  box-shadow: 40px -40px 0px -4px var(--accent-color);
}

.shadow-accent-2 {
  -webkit-box-shadow: -90px -23px 0px 0px var(--accent-color);
  -moz-box-shadow: -90px -23px 0px 0px var(--accent-color);
  box-shadow: -90px -23px 0px 0px var(--accent-color);
}

.rounded-end {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.swiperImage.floating-left {
  margin-left: 16rem;
}

.float-title {
  max-width: 380px;
  margin: auto 0 0 auto;
}

.d-inline-block {
  display: inline-block;
}

.position-responsive {
  position: absolute;
}

.list .icon-box {
  width: 4.3rem;
  height: 4.3rem;
}

.list-flush-horizontal {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 1rem;
}

.list-flush-horizontal .list-item:first-child,
.list-flush-horizontal .list-item {
  border-right: 1px solid white;
}

.list-flush-horizontal .list-item:last-child {
  border-left: 1px solid white;
  border-right: none;
}

.list-flush-horizontal .list-item:nth-last-child(2) {
  border: none;
}

.list-group-item {
  background-color: transparent;
}

.list-group .list-group-item .link {
  background-color: var(--accent-color-2);
  color: var(--text-color);
  transition: all 0.5s;
  font-size: 16px;
  font-family: var(--font-1);
  font-weight: 600;
  padding: 12px 24px;
  margin-bottom: 1rem;
  border-radius: 8px;
}

.list-group .list-group-item .link:hover {
  background-color: var(--text-color-2);
  color: var(--primary);
  transform: translateY(-3px);
}

.list-group .list-group-item .link.active {
  background-color: var(--text-color-2);
  color: var(--primary);
}

.list-group .list-group-item.list-group-item-action:hover {
  background-color: var(--accent-color-2);
  color: white;
}

.list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  padding-inline: 0.5rem;
}

.list .link {
  font-weight: 400;
  text-wrap: nowrap;
}

.list li {
  padding: 0;
  font-size: 16px;
  font-family: var(--font-2);
}

.list li .link {
  transition: all 0.5s;
  color: var(--text-color-2);
}

.list li i {
  transition: all 0.5s;
  color: var(--accent-color);
}

.list.text-black i {
  color: #131313;
}

.list li .link:hover,
.list li .link:hover i {
  color: var(--accent-color);
}

.countdown {
  display: flex;
  gap: 20px;
}

.countdown-box {
  background-color: var(--accent-color);
  color: white;
  text-align: center;
  padding: 30px;
  width: 200px;
  border-radius: 8px;
}

.countdown-box h2 {
  margin: 0;
  font-size: 2em;
}

.countdown-box p {
  margin: 0;
  font-size: 1.2em;
}

/* ---------------------------- */
/* Social and Contact Setting   */
/* ---------------------------- */
.customer-container {
  display: inline-flex;
  align-items: center;
}

.customer-item {
  background-color: var(--text-color);
  margin-left: -25px;
}

.customer-item img {
  object-fit: cover;
  aspect-ratio: 1/1;
  z-index: 9;
}

.customer-item:nth-child(1) {
  margin: 0;
  z-index: 1;
}

.customer-item:nth-child(2) {
  z-index: 2;
}

.customer-item:nth-child(3) {
  z-index: 3;
}

.customer-item:nth-child(4) {
  z-index: 4;
}

.subscribe-container {
  box-sizing: border-box;
  margin-bottom: -8em;
}

.contact-item {
  border-radius: 50%;
  aspect-ratio: 1/1;
  font-size: 40px;
  height: 2rem;
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.social-item {
  border-radius: 50rem;
  aspect-ratio: 1/1;
  width: 3rem;
  height: 3rem;
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-color);
  border: 1px solid transparent;
  background: radial-gradient(
    circle at center,
    rgba(37, 99, 235, 1) 0%,
    rgba(21, 56, 133, 1) 100%
  );
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.6), 0 0 40px rgba(21, 56, 133, 0.4);
  animation: glowPulse 3s infinite ease-in-out;
}

.social-item:hover {
  background: transparent;
  border: solid 1px var(--text-color-2);
}

.social-item i {
  font-size: 18px;
}

.social-item.primary {
  background: transparent;
  border: 1px solid var(--text-color);
}

.social-item.primary:hover {
  background: radial-gradient(
    circle at center,
    rgba(37, 99, 235, 1) 0%,
    rgba(21, 56, 133, 1) 100%
  );
  border: 1px solid transparent;
}

.social-item.team {
  width: 2.65rem;
  height: 2.65rem;
}

.social-item.single-post {
  border: none;
  background: transparent;
  animation: none;
  box-shadow: unset;
  width: 1.5rem;
  height: 1.5rem;
}

.social-item.single-post:hover {
  color: var(--accent-color);
}

.social-item.single-post.active {
  color: var(--accent-color);
}

.social-container.accent .social-item {
  background-color: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

.social-container.accent .social-item:hover {
  background-color: var(--accent-color);
  color: white;
}

.social-container.share .social-item {
  background-color: var(--accent-color);
  color: white;
}

.social-container.share .social-item:hover {
  background-color: var(--accent-color);
  color: white;
  border: 1px solid var(--accent-color);
}

.social-container.team .social-item {
  width: 1.8rem;
  height: 1.8rem;
  font-size: 16px;
}

.social-container .share-button {
  background-color: var(--accent-color-1);
  aspect-ratio: 1/1;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.share-button:hover {
  background-color: var(--accent-color-2);
}

/* ---------------------------- */
/* Breadcrumb    */
/* ---------------------------- */
.breadcrumb {
  align-items: center;
  font-family: var(--font-1);
  color: var(--text-color);
  font-size: 20px;
  gap: 1rem;
}

.breadcrumb-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50px;
  border: 1px solid transparent;
  padding: 8px 20px !important;
}

.breadcrumb-item p {
  margin: 0;
  color: var(--text-color);
}

.breadcrumb-item i {
  font-weight: 600;
  color: var(--text-color);
}

.breadcrumb .breadcrumb-item > a {
  color: var(--text-color);
  text-decoration: none;
}

.breadcrumb .breadcrumb-item.active {
  border: 1px solid #4b4b4b;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: none;
  color: var(--text-color-2);
}

/* ---------------------------- */
/* Specific Media Queries       */
/* ---------------------------- */
.video-e119 {
  width: 60%;
  margin-bottom: -3rem;
  margin-left: -3rem;
}

.ifr-video {
  aspect-ratio: 16/9;
  width: 100%;
}

.video-container {
  aspect-ratio: 3/2;
  background-size: cover;
  background-position: center;
  position: relative;
  border: 5px solid white;
  border-radius: 10px;
}

.video-iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.video-btn {
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 4rem;
  background-color: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-size: 2rem;
  color: white;
  border: none;
  opacity: 0.7;
}

.video-btn:hover {
  opacity: 1;
  color: white;
}

.request-loader {
  position: absolute;
  height: 80px;
  width: 80px;
  border-radius: 50% !important;
  background-color: var(--primary);
  border: solid 2px var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-color-2);
  font-size: 25px;
  aspect-ratio: 1/1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}

.request-loader:hover {
  color: var(--text-color);
}

.request-loader i {
  font-size: 28px;
}

.request-loader::after,
.request-loader::before {
  opacity: 0.2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  color: var(--primary);
  border: 4px solid currentColor;
  border-radius: 50%;
  animation-name: ripple;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: 0;
}

.request-loader::after {
  animation-delay: 0.5s;
  animation-duration: 3s;
}

.request-loader::before {
  animation-delay: 0.2s;
  animation-duration: 3s;
}

/* ---------------------------- */
/* card Setting       */
/* ---------------------------- */
.card {
  border: none;
  border-radius: 10px;
  transition: all 0.5s;
  background-color: var(--primary);
}

.card-accent {
  color: var(--accent-color);
  position: relative;
  background-size: cover;
  background-position: center;
  border-width: 1px;
  border-style: solid;
  border-radius: 10px;
  border-image: linear-gradient(to left, #a502a8, #2f4a9d) 1;
}

.card-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
  height: 100%;
}

.card-banner p {
  max-width: 380px;
}

.card-benefit {
  background-color: var(--accent-color-2);
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 5rem;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid transparent;
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
}

.card-benefit:hover {
  border: 1px solid var(--outline-color);
  transform: translateY(-10px);
}

.card-benefit.active {
  border: 1px solid var(--outline-color);
}

.card-benefit .title {
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.04);
  width: max-content;
  border-radius: 50px;
}

.card-benefit.small {
  gap: 1.5rem;
}

.card-benefit h5,
.card-benefit p {
  margin: 0;
}

.card-benefit.services {
  gap: 1.5rem;
  color: var(--text-color);
}

.card-number {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-number .title-number {
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
}

.card-number .title-number h2 {
  margin: 0;
}

.card-number .title-number h4 {
  margin: 0;
  align-self: self-start;
}

.card-number h6 {
  margin: 0;
  margin-top: 0.5rem;
}

.card-who-we-are {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  width: 55%;
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 32px 8px 8px;
  border-radius: 50px;
}

.card-who-we-are p {
  margin: 0;
  color: var(--text-color);
}

.card-team {
  background-color: var(--accent-color-2);
  position: relative;
  border-radius: 16px;
  border: 1px solid transparent;
  overflow: hidden;
  text-align: center;
  transition: all 0.5s ease;
}

.card-team:hover {
  border: 1px solid var(--outline-color);
  transform: translateY(-10px);
}

.card-team .glow {
  opacity: 0;
  animation: none;
}

.card-team:hover .glow.team {
  opacity: 1;
  animation: glowRotate 8s linear infinite;
}

.card-team.active .glow {
  opacity: 1;
  animation: glowRotate 8s linear infinite;
}

.card-team img {
  position: relative;
  z-index: 1;
}

.card-team .text-team {
  display: flex;
  color: var(--text-color);
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.card-team .text-team h5 {
  margin: 0;
}

.team-detail-text {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.team-detail-text ul,
.team-detail-text p {
  margin: 0;
}

.team-detail-text li {
  color: var(--text-color-2);
}

.card-services {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--text-color);
  padding: 32px;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 16px;
  transition: all 0.5s ease;
}

.card-services .title-services,
.card-services p {
  position: relative;
  z-index: 2;
}

.card-services .glow {
  opacity: 0;
  animation: none;
  transition: all 0.5s ease;
  z-index: 0;
}

.card-services:hover {
  background-color: var(--accent-color-2);
  border: 1px solid var(--outline-color);
}

.card-services:hover .glow {
  opacity: 1;
  animation: glowRotate 8s linear infinite;
}

.card-services.active {
  background-color: var(--accent-color-2);
  border: 1px solid var(--outline-color);
}

.card-services.active .glow {
  opacity: 1;
  animation: glowRotate 8s linear infinite;
}

.card-services p {
  max-width: 300px;
}

.card-services .title-services {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.card-services .title-services h5 {
  margin: 0;
}

.image-services {
  background-color: var(--accent-color-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  padding: 30px 190px 0 190px;
}

.component-2.services {
  top: 70%;
  background-color: var(--background-color);
}

.component-3.services {
  top: 30%;
  background-color: var(--background-color);
}

.text-service-detail {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-color);
  transition: all 0.5s ease;
}

.text-service-detail:hover {
  color: var(--accent-color);
}

.text-service-detail.active {
  color: var(--accent-color);
}

.text-service-detail h6 {
  margin: 0;
}

.text-service-detail i {
  font-size: 20px;
  font-weight: 600;
  transition: all 0.5s ease;
}

.text-service-detail:hover i {
  transform: rotate(-45deg);
}

.text-service-detail.active i {
  transform: rotate(-45deg);
}

.card-tags {
  background-color: var(--accent-color-2);
  padding: 12px 20px;
  border-radius: 50px;
  transition: all 0.5s ease;
}

.card-tags:hover {
  background-color: var(--accent-color);
}

.card-tags.active {
  background-color: var(--accent-color);
}

.card-tags p {
  margin: 0;
  color: var(--text-color);
}

.choose-services {
  padding-left: 20px;
}

.choose-services-item {
  font-size: 20px;
  font-weight: 400;
}
.choose-services-item p {
  margin-left: -20px;
}

.perfect-services {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--accent-color-2);
  padding: 32px;
  border-radius: 16px;
}

.card-features-detail {
  background-color: var(--accent-color-2);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 32px;
  border-radius: 16px;
}

.collab-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.collab-item p {
  margin: 0;
  color: var(--text-color);
}

.card-download {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--text-color);
  max-width: max-content;
  color: var(--text-color);
}

.card-download p {
  margin: 0;
}

.card-blog {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  background-color: var(--accent-color-2);
  padding: 16px 16px 32px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.5s ease;
}

.card-blog:hover {
  border: 1px solid var(--outline-color);
  transform: translateY(-10px);
}

.card-blog.active {
  border: 1px solid var(--outline-color);
}

.card-blog.active .content h5 {
  color: var(--accent-color);
}

.card-blog .img-blog {
  overflow: hidden;
  border-radius: 8px;
}

.card-blog img {
  aspect-ratio: 3/2;
  width: 100%;
  max-height: 350px;
  transition: all 0.5s ease;
}

.card-blog:hover img {
  transform: scale(1.1);
}

.card-blog .content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text-color);
}

.card-blog .content .date {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  color: var(--outline-color);
}

.card-blog .content .date p {
  margin: 0;
  color: var(--outline-color);
}

.card-blog:hover .content h5 {
  color: var(--accent-color-5);
}

.card-coming {
  position: relative;
  z-index: 9;
  display: flex;
  flex-direction: column;
  padding: 24px 48px;
  border-radius: 16px;
  background-color: var(--accent-color-2);
}

.card-coming h3 {
  color: var(--accent-color);
  margin: 0;
}

.card-coming p {
  color: var(--accent-color-4);
  margin: 0;
}

.card-single-post {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--accent-color-2);
  padding: 32px;
  border-radius: 16px;
}

.recent-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.5s ease;
}

.recent-item:hover {
  color: var(--accent-color);
}

.recent-item.active {
  color: var(--accent-color);
}

.recent-item h5 {
  max-width: 75%;
}

.single-post-date {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.single-post-date i,
.single-post-date p {
  color: #383838;
  margin: 0;
}

.card-single-post.help {
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url(../image/bg-circle.png);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.card-single-post h4 {
  position: relative;
  z-index: 2;
}

.card-single-post.help p {
  max-width: 70%;
  position: relative;
  z-index: 2;
}

.card-content-single-post {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card-content-single-post img {
  border-radius: 8px;
}

.card-content-single-post p {
  margin: 0;
}

.card-get-in-touch {
  background-color: var(--accent-color-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
  color: var(--text-color);
  padding: 32px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.5s ease;
}

.content-get-in-touch {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-get-in-touch:hover {
  border: 1px solid var(--outline-color);
  transform: translateY(-10px);
}

.card-get-in-touch.active {
  border: 1px solid var(--outline-color);
}

.content-get-in-touch h6,
.content-get-in-touch p {
  margin: 0;
}

.card .icon-box.bg-accent-color {
  background-color: var(--accent-color);
  color: var(--accent-color);
}

.card .icon-box.accent-color-2 {
  color: var(--accent-color-2);
  font-size: 4rem;
}

.card:hover .icon-box.accent-color-2 {
  color: var(--accent-color-2);
}

.card:hover {
  transform: translateY(-5px);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.card-pricing {
  background-color: rgba(16, 19, 21, 0.2);
  backdrop-filter: blur(32px);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid transparent;
  transition: all 0.5s ease;
}

.card-pricing.middle {
  border: 1px solid var(--outline-color);
}

.card-pricing:hover {
  transform: translateY(-5px);
  border: 1px solid var(--outline-color);
}

.card-pricing-title {
  background: rgba(255, 255, 255, 0.04);
  max-width: max-content;
  padding: 8px 20px;
  border-radius: 50px;
}

.card-pricing-detail {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
}

.card-pricing-detail i {
  color: var(--text-color);
}

.card-pricing a {
  width: 100%;
}

.card-testimonial {
  background-color: var(--accent-color-2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 32px;
  border-radius: 16px;
}

.card-testimonial img {
  width: 3.25rem;
  height: 3.25rem;
  aspect-ratio: 1/1;
  border-radius: 50rem;
}

.card-testimonial h6 {
  color: var(--text-color);
}

.card.blog {
  background-color: var(--background-color);
}

.card.blog:hover {
  border: solid 1px var(--accent-color-2);
  border-radius: 10px;
}

.card.card-outline-hover:hover .btn-accent {
  background-color: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
}

.card-overlay .card-body {
  position: absolute;
  width: 100%;
  bottom: 0;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: all 0.5s;
}

.card-overlay:hover .card-body {
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0) 21.11%,
    rgba(1, 199, 243, 0.6) 96.52%
  );
  transform: scaleY(1);
  opacity: 1;
  padding: 0;
}

.card:hover .icon-box.bg-accent-color {
  background-color: white;
  color: var(--accent-color);
}

.card:hover p {
  transition: all 0.5s;
}

.card.with-border-bottom {
  border-bottom: 5px solid var(--accent-color) !important;
}

.card-about {
  background-color: var(--accent-color-3);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 12px 12px 0 12px;
  transition: all 0.5s ease;
}

.card-about:hover {
  transform: translateY(-10px);
}

.card-about .text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 32px;
  max-width: 500px;
}

.card-about .text p {
  color: var(--accent-color);
}

.card-about-row {
  background-color: var(--accent-color-3);
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 12px 12px 0 12px;
  transition: all 0.5s ease;
}

.card-about-row:hover {
  transform: translateY(-10px);
}

.card-about-row .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 32px;
}

.card-about-row .text .top {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  gap: 0.5rem;
}

.card-about-row .text p {
  color: var(--accent-color);
}

.testimonial-container {
  position: relative;
  overflow: hidden;
  background-color: var(--accent-color-3);
  padding: 20px;
  backdrop-filter: blur(12.4px);
  border-radius: 20px;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
}

.testimonial-container i {
  font-size: 2.5rem;
  color: var(--text-color-2);
}

.testimonial-container:hover {
  height: 100%;
  transition: all 0.5s;
  backdrop-filter: blur(12.4px);
}

.testimonial-container .icon-hover {
  color: var(--accent-color-3);
  font-size: 84px;
  transition: all 0.5s;
}

.testimonial-container:hover .icon-hover {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--accent-color-2);
  font-size: 37px;
  margin-top: 1rem;
  margin-right: 2rem;
}

.services-container {
  background-color: transparent;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
}

.features-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

.feature-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--accent-color);
  color: var(--primary);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.feature-box-middle {
  transform: scaleY(1.15) scaleX(1.05);
}

.feature-box-middle h3,
.feature-box-middle p {
  position: relative;
  transform: none;
  will-change: contents;
}

/* Class Cards */
.class-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1300px;
}

.class-course {
  display: none;
}

.class-course.active {
  display: block;
}

.class-card:hover {
  transform: translateY(-10px);
  transition: all 0.5s;
}

.class-card.active {
  display: block;
  /* Show active cards */
}

.class-info {
  color: var(--primary);
  margin: 20px;
  font-family: var(--font-2);
  font-size: 12px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.class-speakers {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.class-price {
  font-size: 1.2em;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-self: flex-end;
  width: max-content;
}

.class-link {
  color: #ff3b3b;
  font-weight: bold;
  margin-top: 10px;
  text-align: left;
  display: inline-block;
}

/* Tab Navigation */
.tab-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.tabs {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  width: max-content;
  cursor: pointer;
}

.tab {
  padding: 12px 20px;
  border-radius: 50px;
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color-2);
  cursor: pointer;
  transition: all 0.5s;
}

.tab.active {
  color: var(--text-color);
  background-color: var(--accent-color);
}

.tab:hover {
  padding: 12px 20px;
  border-radius: 50px;
  color: var(--text-color);
  background-color: var(--accent-color);
}

.tab-content {
  width: 100%;
  padding: 10px;
  background-color: transparent;
  border-radius: 16px;
}

.content {
  display: none;
  transition: all 0.5s;
}

.content.active {
  display: block;
  position: relative;
  overflow: hidden;
}

.content img {
  border-radius: 16px;
  aspect-ratio: 1/1;
  max-height: 540px;
  height: 100%;
  width: 100%;
}

/* ---------------------------- */
/* Progress and Rating       */
/* ---------------------------- */
.r-progress {
  --value: 17;
  --progress-color: var(--text-color);
  --secondary-progress-color: var(--accent-color-2);
  --animation-duration: 2000;
}

.r-progress-bar {
  position: relative;
  height: 8px;
  background-color: var(--secondary-progress-color);
  display: flex;
  border-radius: 3px;
  /* overflow: hidden; */
}

.r-progress-bar .progress-value {
  height: 100%;
  width: calc(var(--progress) * 1%);
  background-color: var(--progress-color);
  position: relative;
  border-radius: 3px;
  animation: load;
  animation-fill-mode: forwards;
  animation-duration: calc(var(--animation-duration) * 1ms);
  animation-timing-function: linear;
  animation-delay: 500ms;
  color: black;
}

.r-progress-bar.percentage-label::after {
  counter-reset: percentage var(--progress);
  content: counter(percentage) "%";
  display: block;
  position: absolute;
  left: calc((var(--progress) * 1%));
  animation: load;
  animation-fill-mode: forwards;
  animation-duration: calc(var(--animation-duration) * 1ms);
  animation-timing-function: linear;
  animation-delay: 500ms;
  font-size: 18px;
  line-height: 1.2;
  /* font-weight: 700; */
  font-family: var(--font-1);
  bottom: calc(100% + 0.5rem);
}

.rating {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.rating li {
  color: #f1c644;
}

.rating li.inactive {
  color: #d9d9d9;
}

.glass-effect {
  background: var(--background-color);
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
}

/* ---------------------------- */
/* Accordion                    */
/* ---------------------------- */
.accordion {
  --bs-accordion-bg: transparent;
}

.accordion .accordion-item {
  background-color: transparent;
  border: none;
  color: var(--text-color-2);
  outline: none;
  border-radius: 10px;
}

.accordion .accordion-item.faq {
  background-color: var(--accent-color-3);
  border: none;
  color: var(--text-color-2);
  outline: none;
  border-radius: 20px;
  padding: 24px;
  border-radius: 20px;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion .accordion-button {
  background-color: transparent;
  outline: none;
  border: none;
  font-family: var(--font-1);
  font-size: 20px;
  font-weight: 400;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: start;
  padding-block: 1.2rem;
  padding: 0;
  color: var(--text-color);
}

.accordion-header {
  padding: 24px;
  border-radius: 35px;
  background-color: var(--accent-color-2);
  border: 1px solid transparent;
  transition: all 0.5s ease;
}

.accordion-header:has(.accordion-button:not(.collapsed)) {
  border-color: var(--outline-color);
}

.accordion-button::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23F9FAFB" class="bi bi-arrow-right" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8"/></svg>');
}

.accordion-button:not(.collapsed)::after {
  transform: unset;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23F9FAFB" class="bi bi-arrow-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1"/></svg>');
}

.accordion .accordion-button:not(.collapsed) {
  border: none;
  background-color: transparent;
  color: var(--text-color);
  outline: none;
  box-shadow: none;
}

.accordion .accordion-body {
  background-color: transparent;
  font-size: 16px;
  color: var(--text-color-2);
  padding: 20px 56px 0 24px;
}

@media only screen and (max-width: 1024px) {
  /* ---------------------------- */
  /* Typography                   */
  /* ---------------------------- */
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 14px;
  }

  p,
  button,
  a {
    font-size: 13px;
  }

  /* ---------------------------- */
  /* Button and Links Setting     */
  /* ---------------------------- */
  .btn {
    font-size: 13px;
  }

  /* ---------------------------- */
  /* Header and Navigation Setting  */
  /* ---------------------------- */
  .logo-container {
    max-width: 100px;
  }

  .logo-footer {
    max-width: 300px;
  }

  .nav-link {
    padding-block: 0.2rem;
    text-align: center;
  }

  #header {
    background: var(--background-color);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
  }

  /* ---------------------------- */
  /* Utility Classes              */
  /* ---------------------------- */
  .p-banner {
    color: var(--text-color);
  }

  .w-max-content {
    width: max-content;
  }

  .section {
    padding: 4em 2em 4em 2em;
  }

  .divider {
    width: 330px;
  }

  .fs-very-large {
    font-size: 3.125rem;
  }

  .text-footer {
    font-size: 150px;
  }

  .text-404 {
    font-size: 340px;
    line-height: 0.8;
  }

  .bg-footer {
    margin-top: -3.5rem;
  }

  .image-absolute-1 {
    left: 45%;
    top: 35%;
  }

  .image-infinite-bg {
    background-size: cover !important;
  }

  .border-custom {
    border-width: 0px 0px 1px 0px;
  }

  .outer-margin {
    margin-right: 0;
  }

  .banner-image {
    margin: 0;
    transform: none;
  }

  .testimonial-img {
    margin: 0;
    margin-bottom: 1rem;
  }

  .dropdown-menu {
    width: 100%;
    box-shadow: none;
  }

  .video-e119 {
    width: 85%;
    margin-left: -1.5rem;
  }

  .dropdown-item {
    padding-block: 0.35rem;
  }

  .floating-single-post {
    margin-top: 4em;
  }

  .floating-image {
    position: inherit;
  }

  .floating-price {
    top: -2.5rem;
    right: -7.5rem;
  }

  .floating-heading {
    margin-left: 0;
  }

  .floating-banner {
    top: 0;
    left: 0;
    right: 0;
    margin-right: 1rem;
    margin-left: 1rem;
    margin-top: -10rem;
  }

  .floating-top {
    position: relative;
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 0;
  }

  .floating-testi {
    margin-bottom: 1rem;
    margin-top: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .floating-services {
    position: relative;
    z-index: 9999;
    margin-top: 3rem;
    margin-bottom: 1rem;
  }

  .floating-services-2 {
    margin-left: 0;
  }

  .floating-services-2 .padding {
    padding-left: 3rem;
  }

  .floating-services-3 {
    position: relative;
    margin-top: 1rem;
    margin-bottom: -3rem;
  }

  .floating-services-3 .padding {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .floating-bottom {
    position: initial;
    top: 0;
    left: 0;
  }

  .floating-bottom-1 {
    position: initial;
    bottom: 0;
    right: 0;
    left: 0;
  }

  .floating-bottom-2 {
    position: initial;
    bottom: 0;
    right: 0;
    left: 0;
    margin-top: 1rem;
  }

  .floating-counter {
    position: relative;
    margin-top: -5rem;
    z-index: 9999;
  }

  .floating-blog {
    margin-top: 0;
  }

  .border-testimonial {
    border-right: none;
  }

  .service-container {
    background-color: transparent;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
    height: 100%;
  }

  .appointment-box {
    top: -2rem;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
  }

  .w-md-70 {
    width: 70%;
  }

  .w-md-60 {
    width: 60%;
  }

  .position-responsive {
    position: relative;
  }

  .form-appointment-container {
    position: relative;
    transform: translateY(0);
  }

  .list-flush-horizontal {
    flex-direction: column;
  }

  .list-flush-horizontal .list-item:first-child,
  .list-flush-horizontal .list-item {
    border-right: none;
    border-bottom: 1px solid white;
  }

  .list-flush-horizontal .list-item:last-child {
    border-left: none;
    border-bottom: none;
    border-top: 1px solid white;
  }

  .position-xl-absolute {
    position: static;
  }

  .banner-heading {
    font-size: 2.5rem;
  }

  .class-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  footer .d-flex.flex-column {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 0 0 0;
  }

  footer .link.d-flex.flex-row {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  footer .list {
    padding: 0 0 0 0;
  }

  .footer-img {
    position: relative;
  }

  .custom-contain {
    margin-bottom: 8em;
  }

  .features-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .testimonial-container {
    background-color: transparent;
    padding: 1rem;
    border-radius: 10px;
  }

  .swiperImage {
    padding: 0;
  }

  /* Center the buttons horizontally */
  .swiperImage .swiper-button-next {
    top: 70%;
    right: 0%;
    /* Gerakkan tombol next ke kanan dari tengah */
    transform: translateY(20px);
  }

  .swiperImage .swiper-button-prev {
    top: 70%;
    left: 0%;
    /* Gerakkan tombol prev ke kiri dari tengah */
    transform: translateY(20px);
  }

  .swiperImage .swiper-slide-active {
    position: relative !important;
    transform: scale(1) !important;
    z-index: 10 !important;
  }

  .swiper-testimonials {
    margin: 20px;
  }

  .service-scroll {
    padding-right: 1rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    top: 15rem;
    height: 80px;
    width: 80px;
    border: 5px solid var(--primary);
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 24px;
  }

  .mySwiper .swiper-button-next,
  .mySwiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  /* Center the buttons horizontally */
  .mySwiper .swiper-button-next {
    right: 0;
    transform: translateY(20px);
  }

  .mySwiper .swiper-button-prev {
    left: 70%;
    transform: translateY(20px);
  }

  .swiperStep2 .swiper-button-next::after,
  .swiperStep2 .swiper-button-prev::after {
    font-size: 16px;
  }

  .swiperStep2 .swiper-button-next,
  .swiperStep2 .swiper-button-prev {
    width: 50px;
    height: 50px;
    border: 3px solid var(--primary);
  }

  /* Center the buttons horizontally */
  .swiperStep2 .swiper-button-next {
    right: 7%;
    transform: translateY(20px);
  }

  .swiperStep2 .swiper-button-prev {
    left: 7%;
    transform: translateY(20px);
  }

  .icon-box.link {
    font-size: 25px;
    padding: 25px;
  }

  .top-tooltip {
    top: -100%;
  }

  .tooltip {
    bottom: -100%;
  }

  .tooltip p {
    display: none;
  }

  .card-coming {
    padding: 12px 24px;
  }

  .card-coming h3 {
    font-size: 28px;
  }

  .bg-banner {
    position: relative;
    min-height: 100vh;
    background: url(../image/bg-banner-2.png) no-repeat center bottom,
      url(../image/bg-banner.png) no-repeat center center;
    background-size: auto auto, 2100px auto;
    margin-top: 7rem;
  }

  .image-banner {
    width: 900px;
  }

  .image-services .component-2 {
    top: 55%;
    left: -45%;
  }

  .image-services .component-4 {
    top: 30%;
    right: -50%;
  }

  .bg-cta .image-cta {
    margin-top: -8rem;
    width: 450px;
  }

  .card-title {
    align-items: center;
    text-align: center;
  }

  .card-number {
    align-items: center;
    text-align: center;
  }

  .card-pricing {
    align-items: center;
    text-align: center;
  }

  .card-pricing a {
    width: max-content;
  }

  .card-blog .content {
    align-items: center;
    text-align: center;
  }

  .card-blog .content .date {
    justify-content: center;
  }

  .tabs {
    flex-direction: column;
  }

  .card-blog img {
    max-height: none;
  }
}

@media only screen and (max-width: 599px) {
  /* ---------------------------- */
  /* Typography                   */
  /* ---------------------------- */
  .text-footer {
    font-size: 75px;
  }

  .text-404 {
    font-size: 180px;
  }

  /* ---------------------------- */
  /* card Setting       */
  /* ---------------------------- */
  .bg-who-we-are {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: inherit;
  }

  .bg-who-we-are img {
    position: relative;
  }

  .card-who-we-are {
    width: 100%;
  }

  .bg-cta img {
    margin-top: -8rem;
    width: 250px;
  }

  .bg-footer {
    margin-top: -2rem;
  }

  /* ---------------------------- */
  /* Button and Links Setting     */
  /* ---------------------------- */
  .btn-accent {
    max-width: 100%;
    width: 100%;
  }

  /* /* ---------------------------- */
  /* Utility Classes              */
  /* ---------------------------- */
  */ .image-banner {
    width: 300px;
  }

  .image-services {
    padding: 20px 20px 0 20px;
  }

  .float-title {
    margin: 0;
  }

  .float-img-who {
    top: 50%;
    left: 35%;
    transform: translate(-50%);
  }

  .float-img-who-2 {
    top: 50%;
    left: 35%;
    transform: translate(-50%);
  }

  .float-img-who-3 {
    top: 50%;
    left: 35%;
    transform: translate(-50%);
  }

  .component,
  .component-2,
  .component-3,
  .component-4 {
    display: none;
  }

  .circle-bg-features {
    background-size: 100%;
  }

  .content-top-swiper .customer-container.features {
    top: 51%;
    left: 45%;
  }

  .content-top-swiper .float.features {
    top: 70%;
    left: 20%;
  }

  .error-overlay {
    padding: 10px;
  }
}
