@font-face {
  font-family: 'General Sans';
  src: url('webfont.eot');
  /* IE9 Compat Modes */
  src: 
    url('../font/GeneralSans.ttf') format('truetype'),
}

:root{
  --utama:#000000;
  --primary: #09b4bd;
}


body {
  font-family: "General Sans", sans-serif;
  color: #444444;
}

.fz-22{
    font-size: 22px;
}

.p-cta{
    padding: 80px 60px;
}

@media (max-width: 768px) {
    .p-cta{
        padding: 60px 40px;
    }
}

.py-6{
    padding-top: 3.5rem!important;
    padding-bottom: 3.5rem!important;
}

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

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

.bg-black{
  background-color: black;
}

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

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

.text-hitam{
  color: black;
}

.text-white{
  color: white;
}

.text-putih {
  color: white;
}

.border-bottom-utama{
  border-bottom: 2px var(--utama) solid;
}

.border-bottom-utama-1{
  border-bottom: 1px var(--utama) solid;
}

.border-bottom-red-1{
  border-bottom: 1px var(--primary) solid;
}

.border-bottom-red{
  border-bottom: 2px red solid;
}

.scroll-mg{
    overflow: clip;
    scroll-margin-top: 50px;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th, td {
  text-align: left;
  padding: 16px;
}

tr:nth-child(even) {
  color: black;
  background-color: white;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: #30959a;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "General Sans", sans-serif;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

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

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

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

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--utama);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--primary);
  color: #fff;
}

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

#topbar {
  /* background: #fff; */
  height: 40px;
  font-size: 12px;
  transition: all 0.5s;
  z-index: 996;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #444444;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: var(--primary);
}

#topbar .contact-info i {
  color: white;
  padding-right: 4px;
  margin-left: 15px;
  line-height: 0;
}

#topbar .contact-info i:first-child {
  margin-left: 0;
}

#topbar .social-links a {
  color: white;
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: var(--primary);
}

#topbar .social-links a:first-child {
  border-left: 0;
}

#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  top: 40px;
  box-shadow: 0px 2px 15px rgba(230, 27, 51, 0.1);
}

#header.header-scrolled {
  top: 0;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: "General Sans", sans-serif;
}

#header .logo a {
  color: #000;
}

#header .logo img {
  max-height: 50px;
}

/*--------------------------------------------------------------
# Button Gradient
--------------------------------------------------------------*/
.btn-gradient {
  border-radius: 40px;
  background: -o-linear-gradient(357deg, #2BC9D1 -18.71%, #000 117.68%);
  background: linear-gradient(93deg, #2BC9D1 -18.71%, #000 117.68%);
  background-size: 100%;
  color: white;
  font-weight: 700;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* gap: 21px; */
  /* width: 300px; */
  height: 50px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none !important;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  z-index: 0;
}
.btn-gradient::before {
  border-radius: inherit;
  background: #FFF;
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in;
  -o-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
  z-index: -100;
}
.btn-gradient:hover, .btn-gradient:focus, .btn-gradient:active {
  color: var(--utama) !important;
  border: 1px solid var(--utama) !important;
  outline: 4px solid var(--utama) !important;
  outline-offset: 5px;
}
.btn-gradient:hover::before {
  opacity: 1;
}
/* @media (min-width: 576px) {
  .btn-gradient {
    width: 350px;
  }
} */
.btn-gradient .arrow-right-alt {
  display: none;
}

.btn-gradient2 {
  border-radius: 40px;
  background: -o-linear-gradient(357deg, #000 -18.71%, #000 117.68%);
  background: linear-gradient(93deg, #000 -18.71%, #000 117.68%);
  background-size: 100%;
  color: var(--primary);
  font-weight: 700;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* gap: 21px; */
  /* width: 300px; */
  height: 50px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none !important;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  z-index: 0;
}
.btn-gradient2::before {
  border-radius: inherit;
  background: var(--primary);
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in;
  -o-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
  z-index: -100;
}
.btn-gradient2:hover, .btn-gradient2:focus, .btn-gradient2:active {
  color: white !important;
  border: 1px solid black !important;
  outline: 4px solid black !important;
  outline-offset: 5px;
}
.btn-gradient2:hover::before {
  opacity: 1;
}
/* @media (min-width: 576px) {
  .btn-gradient {
    width: 350px;
  }
} */
.btn-gradient2 .arrow-right-alt {
  display: none;
}

.appointment-btn {
  margin-left: 25px;
  background: var(--utama);
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.appointment-btn:hover {
  background: black;
  color: #fff;
}

@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }

  #header {
    top: 0;
  }
}

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 20px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  color: #000;
  white-space: nowrap;
  transition: 0.3s;
  border-bottom: 2px solid #fff;
  padding: 5px 2px;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--primary);
  border-color: var(--primary);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 20px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #000;
  border: none;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: var(--primary);
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

.mobile-nav-toggle {
  color: #000;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(43,201,209, .9);
  /* background: linear-gradient(rgba(87, 113, 138, 0.9), rgba(255, 255, 255, .3)); */
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  border-radius: 10px;
  /*bottom: 15px;*/
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  /*background: linear-gradient(rgba(255,255,255,.8), rgba(255,255,255,.8)), url('../../../Logo.jpg') center;
  background-size: contain;
  background-repeat: no-repeat; */
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #000;
  border: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--primary);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: var(--primary);
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.carousel-home {
  height: 85vh;
  overflow: hidden;
}
.carousel-home .carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.carousel-home .carousel-inner .carousel-item {
  height: 100%;
  position: relative;
}
.carousel-home .carousel-inner .carousel-item .overlay {
  position: absolute;
  /* background-color: #000; */
  top: 0;
  bottom: 0;
  width: 100%;
  opacity: 0.5;
  z-index: 1;
}
.carousel-home .carousel-inner .carousel-caption {
  position: absolute;
  right: 15%;
  top: 0;
  bottom: 0;
  left: 15%;
  display: flex;
  flex-direction: column;
  padding-top: 1.25rem;
  justify-content: center;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: left;
  z-index: 2;
}
.carousel-home .carousel-inner .carousel-caption .caption-content {
  /*background: rgba(0, 0, 0, 0.5);*/
  /*padding: 20px 40px;*/
  border-radius: 1rem;
}
.carousel-home
  .carousel-inner
  .carousel-item
  .carousel-caption
  .carousel-caption-title {
  position: relative;
  width: fit-content;
}

.carousel-home .carousel-inner .carousel-item .carousel-caption h2 {
  font-family: "Syne", sans-serif;
  /* color: #fff; */
  font-size: 2.5rem;
  width: fit-content;
  margin: 0;
  position: relative;
  margin-bottom: 15px;
  font-weight: 600;
}

.carousel-home .carousel-control-next {
  /* background-color: var(--utama); */
  border: 2px var(--utama) solid;
  height: 50px;
  width: 50px;
  top: calc(50% - 50px);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.carousel-home .carousel-control-next:hover {
  background-color: black;
}

.carousel-home .carousel-control-prev {
  /* background-color: var(--utama); */
  border: 2px var(--utama) solid;
  height: 50px;
  width: 50px;
  top: calc(50% - 50px);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.carousel-home .carousel-control-prev:hover {
  background-color: black;
}

.carousel-home .carousel-control-next-icon{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2357718A'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-home .carousel-control-prev-icon{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2357718A'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-home .carousel-control-next-icon,
.carousel-home .carousel-control-prev-icon {
  width: 1.25rem;
  height: 1.25rem;
}

@media (max-width: 768px) {
    .carousel-home {
      height: 25vh;
      overflow: hidden;
    }
  .carousel-home .carousel-inner .carousel-item .carousel-caption h2 {
      font-size: 1.5rem;
  }
  .carousel-home .carousel-control-next {
      border: 1px var(--utama) solid;
      height: 35px;
      width: 35px;
      top: calc(65% - 50px);
      border-top-left-radius: 7px;
      border-bottom-left-radius: 7px;
  }
  .carousel-home .carousel-control-prev {
      border: 1px var(--utama) solid;
      height: 35px;
      width: 35px;
      top: calc(65% - 50px);
      border-top-right-radius: 7px;
      border-bottom-right-radius: 7px;
  }
}

.bg-zoom-anim img {
  animation: scale 30s linear infinite;
}

@keyframes scale {
  50% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
}

section {
  /* padding: 60px 0; */
  overflow: hidden;
}

.section-bg {
  background-color: #f7f7f7;
}

.section-title {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-bottom: 30px;
  align-items: center;
}

.section-title .section-name {
  color: white;
  font-family: "General Sans", sans-serif;
  font-size: 1rem;
  font-weight: 350;
  margin: 0;
  background: black;
  padding: 5px 30px;
  border-radius: 30px;
  margin-bottom: 15px;
  width: fit-content;
  font-weight: 500;
}

.section-title.bg-red .section-name {
  color: #fff;
  font-family: "General Sans", sans-serif;
  font-size: 1.25rem;
  margin: 0;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 30px;
  border-radius: 30px;
  margin-bottom: 15px;
  width: fit-content;
}

.section-title h2 {
  font-weight: 500;
  font-size: 22px;
}

.section-title.bg-red h2 {
  color: #fff;
}

.section-title p {
  margin-bottom: 0;
  width: 50%;
}

.section-title.bg-red p {
  color: #fff;
}

@media (max-width: 768px) {
  .section-title p {
    width: 90%;
    font-size: .9rem;
  }
  
  .section-title .section-name, .section-title.bg-red .section-name  {
      font-size: .8rem;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
    width: 90%;
  }
}

.breadcrumbs {
  padding: 20px 0;
  background-color: var(--utama);
  min-height: 40px;
  /* margin-top: 120px; */
}

@media (max-width: 992px) {
  .breadcrumbs {
    /*margin-top: 100px;*/
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: white;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

.about .title-1 {
  color: var(--primary);
  font-family: "General Sans", sans-serif;
  font-size: 1.25rem;
  margin: 0;
  background: rgba(0, 0, 0, 0.05);
  padding: 5px 30px;
  border-radius: 30px;
  margin-bottom: 15px;
  width: fit-content;
}

@media (max-width: 768px) {
  .about .title-1 {
      font-size: .8rem;
  }
}

.galeri-slider > .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
  filter: grayscale(0);
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
  filter: grayscale(1);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: var(--utama);
  float: left;
  width: 44px;
  height: 44px;
  background: #f7f7f7;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primary);
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.75);
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: var(--primary);
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: var(--utama);
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: var(--primary);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #1c84e3;
}

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: black;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: black;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "General Sans", sans-serif;
  color: #fff;
}

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

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 18px;
  line-height: normal;
}

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

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

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: normal;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--primary);
}

#footer .footer-newsletter {
  font-size: 15px;
}

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

#footer .footer-newsletter p {
  color: #fff;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #fff;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #1c84e3;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: var(--primary);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #fff;
  color: #fff;
  text-decoration: none;
}

.widget {
  padding: 30px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 5px;
  border: 2px solid rgba(43,201,209, 1);
}

ul.recent-post {
  margin-bottom: 0;
  padding: 0;
}
ul.recent-post li {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.5em;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
ul.recent-post li:last-child {
  border-bottom: none;
}
ul.recent-post li .thum {
  width: 75px;
  height: 75px;
  overflow: hidden;
  float: left;
  border-radius: 5px;
}

ul.recent-post li .thum img {
  object-fit: cover;
  object-position: center;
}

ul.recent-post li .title {
  display: block;
  margin-left: 90px;
  color: #000;
}

ul.recent-post li .title:hover {
  color: var(--primary);
}

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

.produk-home .produk-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;
  margin-right: 10px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: "General Sans", sans-serif;
  background: rgba(0, 0, 0, 0.05);
}

.produk-home .produk-filters li:hover,
.produk-home .produk-filters li.filter-active {
  color: #fff;
  background-color: var(--primary);
}

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

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

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

.produk-item {
  border: 2px solid black;
  border-radius: 1rem;
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  padding: 10px;
}

.produk-item:hover {
  border: 2px solid var(--primary);
  background-color: transparent;
  color: black;
  box-shadow: rgba(87, 113, 138, 0.2) 0px 8px 24px;
}

.produk-item small {
  font-size: 0.8rem;
}

.produk-item .meta {
  background: #f3f3f3;
  border-radius: 5px;
  padding: 5px;
  font-size: 1rem;
  display: flex;
  color: rgba(0, 0, 0, 0.75);
  font-weight: 600;
}

.produk-item:hover .meta {
  background: var(--primary);
  color: white;
}

.produk-item:hover img {
  transform: scale(1.15);
}

.produk-item .meta a {
  color: rgba(0, 0, 0, 0.5);
}

.produk-item .meta a:hover {
  /* color: rgba(230, 27, 51, 0.5); */
  color: white;
}

.promo-item {
  border: 2px solid transparent;
  border-radius: 1rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.promo-item:hover {
  border: 2px solid var(--utama);
  box-shadow: rgba(87, 113, 138, 0.2) 0px 8px 24px;
}

.promo-item a {
  color: #000;
}

.promo-item:hover a {
  color: #000;
}

.promo-item img {
  filter: grayscale(0);
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}

.promo-item:hover img {
  filter: grayscale(1);
  transform: scale(1);
}

.promo-item .meta {
  background: rgba(43,201,209, .95);
  border-radius: 5px;
  padding: 5px;
  font-size: 0.8rem;
  display: flex;
  color: white;
}

.promo-item .meta a {
  color: white;
}

.promo-item .meta a:hover {
  color: black;
}

/*******************************/
/******* Keunggulan ********/
/*******************************/
.mil-iconbox {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 1;
  overflow: hidden;
  padding: 30px;
  padding-right: 40px;
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  -webkit-box-shadow: 0px 4px 20px rgba(32, 79, 94, 0.05);
  box-shadow: 0px 4px 20px rgba(32, 79, 94, 0.05);
}

.mil-iconbox:hover {
  background-color: black;
}

.mil-iconbox:hover h4 {
  color: var(--primary);
}

.mil-iconbox:hover p {
  color: white;
}

.mil-iconbox .mil-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mil-iconbox .mil-icon.kontak {
  border-radius: 13px;
  width: 60px;
  height: 60px;
  margin-bottom: 40px;
  background-color: var(--abuColor);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mil-iconbox .mil-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mil-iconbox .mil-icon svg {
  width: 30px;
  height: 30px;
  color: rgb(9, 84, 159);
}

.mil-iconbox .mil-icon svg circle,
.mil-iconbox .mil-icon svg path,
.mil-iconbox .mil-icon svg polyline {
  stroke: rgb(9, 84, 159);
  fill: transparent;
}

.mil-iconbox .mil-icon.mil-icon-fix svg {
  width: 24px;
  height: 24px;
}

.mil-iconbox.mil-iconbox-sm {
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mil-iconbox.mil-iconbox-sm .mil-icon {
  margin: 0;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .mil-iconbox {
    padding: 20px;
  }

  .mil-iconbox.benefit {
    padding: 20px;
    flex-direction: row;
    align-items: center;
    gap: 0 25px;
  }

  .mil-iconbox.benefit .mil-icon {
    margin-bottom: 0;
  }

  .mil-iconbox .mil-icon {
    width: 300px;
    height: auto;
    margin-bottom: 20px;
  }
}

.keunggulan {
  position: relative;
}
.keunggulan:before {
  top: auto;
  bottom: 0;
  height: 45%;
  background: #fff;
}
.keunggulan:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 55%;
  width: 100%;
  /* background: var(--primary); */
  background: linear-gradient(rgba(87,113,138, 0.5), rgba(87,113,138, 0.5)), url('../../../images/bg-microsite.jpg') fixed center center;
  background-size: cover;
  z-index: 1;
}
.keunggulan .container {
  position: relative;
  z-index: 2;
}

.keunggulan .item {
  background: #fff;
  padding: 45px 20px 60px 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  line-height: normal;
  text-align: left;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 50px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 50px 1px rgba(0, 0, 0, 0.05);
  transition: background-color 300ms ease, transform 300ms ease,
    color 300ms ease;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .keunggulan .item {
      flex-direction: row;
      padding: 20px;
      height: 250px;
  }
}

@media (min-width: 992px) {
    .keunggulan .item {
        height: 400px;
    }
}

.keunggulan .item.active {
  background: var(--primary);
  -webkit-box-shadow: 0 10px 50px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 50px 1px rgba(0, 0, 0, 0.05);
}
.keunggulan .item:hover {
  background: var(--primary);
  -webkit-box-shadow: 0 10px 50px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 10px 50px 1px rgba(0, 0, 0, 0.3);

  transform: translate3d(0px, -15px, 0.01px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}
.keunggulan .item h5 {
  font-size: 24px;
  color: #101010;
  line-height: 1.25em;
}
.keunggulan .item.active h5 {
  color: #fff;
}
.keunggulan .item:hover h5 {
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.keunggulan .item p {
  color: #777;
  font-size: 16px;
  font-weight: 400;
}
.keunggulan .item.active p {
  color: #fff;
}

.keunggulan .item:hover p {
  color: #fff;
}

.keunggulan .item img {
  margin-bottom: 15px;
  display: inline-block;
  /* -webkit-transition: 0.5s; */
  /* transition: 0.5s; */
  filter: invert(17%) sepia(97%) saturate(4714%) hue-rotate(346deg)
    brightness(94%) contrast(92%);
}

@media (max-width: 768px) {
  .keunggulan .item img {
      width: 50px;
      margin-bottom: 0;
      margin-right: 15px;
  }
}

@media (min-width: 992px) {
  .keunggulan .item img {
      width: 100px;
  }
}

.keunggulan .item.active img {
  filter: invert(100%) sepia(6%) saturate(0%) hue-rotate(115deg)
    brightness(108%) contrast(108%);
}

.keunggulan .item:hover img {
  filter: invert(100%) sepia(6%) saturate(0%) hue-rotate(115deg)
    brightness(108%) contrast(108%);
}

.keunggulan .item .numb {
  font-size: 75px;
  font-weight: 700;
  position: absolute;
  bottom: -12px;
  right: -6px;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.3);
  opacity: 0.2;
}
.keunggulan .item.active .numb {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.9);
}
.keunggulan .item:hover .numb {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.9);
}

.post-content .meta {
  background: var(--utama);
  border-radius: 5px;
  padding: 5px;
  font-size: 0.8rem;
  display: flex;
  color: white;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .post-content .meta {
      border-radius: 0.75rem;
  }
}

.post-content .meta a {
  color: white;
}

.post-content .meta a:hover {
  color: var(--primary);
}

.post-share {
    background: var(--utama);
    padding: 10px;
    border-radius: 10px;
}

.post-share h4{
    color: var(--primary);
}

.cta-container {
  background: var(--primary);
  color: black;
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
}

.cta-container .bg-image {
  position: absolute;
  filter: grayscale(1);
  z-index: 0;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.cta-container .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(43,201,209, 0.9) 0%,
    rgba(43,201,209, 0.9) 50%,
    rgba(43,201,209, 0.5) 100%
  );
}

.cta-container .content {
  position: relative;
  z-index: 2;
}

.cta-container h2 {
  font-weight: 600;
}

.cta-container p {
  font-size: 0.9rem;
}

.link-custom-primary {
  border-radius: 30px;
  height: 48px;
  padding-right: 40px;
  color: var(--utama);
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: fit-content;
}

.link-custom-primary .link-text {
  font-size: 13px;
  font-weight: 600;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  z-index: 4;
  color: var(--utama);
}

.link-custom-primary .link-circle {
  -webkit-transition: width 200ms;
  -o-transition: width 200ms;
  transition: width 200ms;
  top: 0;
  right: 0;
  text-align: center;
  background: rgba(0, 0, 0, .1);
  /*mix-blend-mode: color-dodge;*/
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 30px;
  z-index: 2;
}

.link-custom-primary .link-circle i {
  position: absolute;
  right: 20px;
  top: 17px;
  font-size: 15px;
  color: var(--utama);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.link-custom-primary:hover {
  padding-left: 40px;
}

.link-custom-primary:hover .link-text {
  color: #fff !important;
}

.link-custom-primary:hover .link-text {
  -webkit-transform: translateX(-9px);
  -ms-transform: translateX(-9px);
  transform: translateX(-9px);
}

.link-custom-primary:hover .link-circle {
  width: 100%;
  background: var(--utama);
}

.link-custom-primary:hover .link-circle i {
  -webkit-transform: translateX(-9px);
  -ms-transform: translateX(-9px);
  transform: translateX(-9px);
  color: #fff;
}

.link-custom {
  border-radius: 30px;
  height: 48px;
  padding-right: 40px;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: fit-content;
}
.link-custom .link-text {
  font-size: 13px;
  font-weight: 600;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  z-index: 2;
}
.v-light:not(.no-light) .link-custom .link-text {
  color: #000;
}
.link-custom .link-circle {
  -webkit-transition: width 200ms;
  -o-transition: width 200ms;
  transition: width 200ms;
  top: 0;
  right: 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  mix-blend-mode: exclusion;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 30px;
  z-index: 2;
}
.v-light:not(.no-light) .link-custom .link-circle {
  background-color: #e6e6e6;
  z-index: 0;
}
.link-custom .link-circle i {
  position: absolute;
  right: 20px;
  top: 17px;
  font-size: 15px;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.link-custom:hover {
  padding-left: 40px;
}

.link-custom:hover .link-text {
  color: #fff;
}
.link-custom:hover .link-text {
  -webkit-transform: translateX(-9px);
  -ms-transform: translateX(-9px);
  transform: translateX(-9px);
}
.link-custom:hover .link-circle {
  width: 100%;
}
.link-custom:hover .link-circle i {
  -webkit-transform: translateX(-9px);
  -ms-transform: translateX(-9px);
  transform: translateX(-9px);
}
.link-custom.scroll-down i {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.link-custom.scroll-down:hover .link-text {
  -webkit-transform: translateX(-9px);
  -ms-transform: translateX(-9px);
  transform: translateX(-9px);
}
.link-custom.scroll-down:hover .link-circle i {
  -webkit-transform: translateX(-9px) translateY(2px) rotate(90deg);
  -ms-transform: translateX(-9px) translateY(2px) rotate(90deg);
  transform: translateX(-9px) translateY(2px) rotate(90deg);
}

.link-custom-red {
  border-radius: 30px;
  height: 48px;
  padding-right: 40px;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: fit-content;
}
.link-custom-red .link-text {
  font-size: 13px;
  font-weight: 600;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  z-index: 4;
  color: var(--primary);
}
.link-custom-red .link-circle {
  -webkit-transition: width 200ms;
  -o-transition: width 200ms;
  transition: width 200ms;
  top: 0;
  right: 0;
  text-align: center;
  background: rgba(0, 0, 0, .1);
  /*mix-blend-mode: color-dodge;*/
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 30px;
  z-index: 2;
}
.link-custom-red .link-circle i {
  position: absolute;
  right: 20px;
  top: 17px;
  font-size: 15px;
  color: var(--primary);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.link-custom-red:hover {
  padding-left: 40px;
}

.link-custom-red:hover .link-text {
  color: #fff !important;
}
.link-custom-red:hover .link-text {
  -webkit-transform: translateX(-9px);
  -ms-transform: translateX(-9px);
  transform: translateX(-9px);
}
.link-custom-red:hover .link-circle {
  width: 100%;
  background: var(--primary);
}
.link-custom-red:hover .link-circle i {
  -webkit-transform: translateX(-9px);
  -ms-transform: translateX(-9px);
  transform: translateX(-9px);
  color: #fff;
}

.link-custom-red2 {
  border-radius: 30px;
  height: 48px;
  padding-right: 40px;
  color: white;
  background: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: fit-content;
}
.link-custom-red2 .link-text {
  font-size: 13px;
  font-weight: 600;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  z-index: 4;
  color: white;
  margin-left: 15px;
}
.link-custom-red2 .link-circle {
  -webkit-transition: width 200ms;
  -o-transition: width 200ms;
  transition: width 200ms;
  top: 0;
  right: 0;
  text-align: center;
  background: var(--primary);
  /*mix-blend-mode: color-dodge;*/
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 30px;
  z-index: 2;
}
.link-custom-red2 .link-circle i {
  position: absolute;
  right: 20px;
  top: 17px;
  font-size: 15px;
  color: white;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.link-custom-red2:hover {
  padding-left: 20px;
}

.link-custom-red2:hover .link-text {
  color: var(--primary) !important;
}
.link-custom-red2:hover .link-text {
  -webkit-transform: translateX(9px);
  -ms-transform: translateX(9px);
  transform: translateX(9px);
}
.link-custom-red2:hover .link-circle {
  width: 100%;
  background: rgba(0, 0, 0, .95);
}
.link-custom-red2:hover .link-circle i {
  -webkit-transform: translateX(9px);
  -ms-transform: translateX(9px);
  transform: translateX(9px);
  color: var(--primary);
}

.contact-btn {
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 8;
}

.button-33 {
  background-color: #36b848;
  border-radius: 30px;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-family: CerebriSans-Regular, -apple-system, system-ui, Roboto, sans-serif;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 250ms;
  border: 0;
  font-size: 16px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  border: 2px solid white;
}

.button-33:hover {
  box-shadow: rgba(54, 184, 72, 0.35) 0 -25px 18px -14px inset,
    rgba(54, 184, 72, 0.25) 0 1px 2px, rgba(54, 184, 72, 0.25) 0 2px 4px,
    rgba(54, 184, 72, 0.25) 0 4px 8px, rgba(54, 184, 72, 0.25) 0 8px 16px,
    rgba(54, 184, 72, 0.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
  color: white;
}

.produk-details-nav {
    margin-bottom: 10px;
    border: none;
}

.produk-details-nav .nav-link {
    border: none;
    border-bottom: 10px solid rgba(0, 0, 0, .1);
    color: rgba(0, 0, 0, .5);
    margin: 0 5px;
    font-weight: 600;
}

.produk-details-nav .nav-link.active {
    color: var(--primary);
    border-color: var(--primary);
}

.produk-details-tab .tab-pane {
    padding: 20px;
    background: #f5f5f5;
}

.produk-details-tab .tab-pane .table>:not(caption)>*>* {
    background: transparent;
    padding: 10px 0;
    color: rgba(0, 0, 0, .5);
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 1);
    font-size: .9rem;
}

.produk-varian-slider .swiper-pagination {
  position: relative;
  bottom: 0;
}

.produk-varian-slider .swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0.75);
  transition: all 0.2s ease-in-out;
}

.produk-varian-slider .swiper-pagination-bullet-active {
  background-color: var(--primary);
  width: 25px;
  border-radius: 12.5px;
  transition: all 0.2s ease-in-out;
}

