:root {
  --primary: #1464F4;
  --hitam: black;
  --putih: white;
}

body {
  font-family: "Mulish", sans-serif;
  color: #444444;
  background: #353535;
}

.fs-10 {
  font-size: 10px;
}

.fs-11 {
  font-size: 11px;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.fs-17 {
  font-size: 17px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

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

.fs-24 {
  font-size: 24px;
}

.fs-25 {
  font-size: 25px;
}

.fs-26 {
  font-size: 26px;
}

.fs-28 {
  font-size: 28px;
}

.fs-30 {
  font-size: 30px;
}

.fs-date-early {
    font-size: 35px;
}

.fs-title-early {
    font-size: 16px;
}

.w-logo-pt {
    width: 100%;
}

.me-90 {
    margin-left: 90px;
}

@media (max-width: 768px) {
    .fz-mobile{
        font-size: 13px;
    }
    table tbody{
        font-size: 12px;
    }
    table td {
        padding: 10px 5px;
    }
    .fs-date-early {
        font-size: 45px;
    }
    .fs-title-early {
        font-size: 20px;
    }
    .w-logo-pt {
        width: 50%;
    }
}

tr:nth-child(odd) {
    background-color: #e5e5e5;
    border-radius: 8px;
    clip-path: border-box;
}

.table {
  border-radius: 10px;
}

@media (min-width: 992px) {
  table td {
      padding: 10px 20px;
  }
}

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

.text-putih {
  color: white !important;
}

.text-hitam {
  color: black !important;
}

.bg-transparent {
    background: transparent;
}

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

.bg-hitam {
  background: var(--hitam);
}

.bg-putih {
  background: var(--putih);
}

.bg-welcome {
    background: linear-gradient(to right, rgba(255,255,255,.6), rgba(255,255,255,.85), rgba(255,255,255,.98), rgba(255,255,255,.9), rgba(255,255,255,.9)), url('../../../images/logo.jpg') right bottom no-repeat; 
    background-size: contain;
}

@media(max-width: 768px) {
    .bg-welcome {
        background: linear-gradient(rgba(255,255,255,.95), rgba(255,255,255,.98)), url('../../../images/logo.jpg') top center no-repeat;
        background: contain;
    }
}

.limit-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; 
          line-clamp: 2; 
  -webkit-box-orient: vertical;
}

.limit-text-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; 
          line-clamp: 3; 
  -webkit-box-orient: vertical;
}

.banner-header h6::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 8px;
  background-color: var(--primary);
  z-index: -1;
}

.btn-primary {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary)
}

.btn-primary:hover {
  color: #fff;
  background-color: #000;
  border-color: #000
}

.btn-white {
  color: var(--primary);
  background: white;
  border: 1px solid var(--primary);
}

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

.btn-check:focus+.btn-primary,
.btn-primary:focus {
  color: #fff;
  background-color: #000;
  border-color: #000;
  box-shadow: 0 0 0 .25rem rgba(190, 29, 45, 0.5)
}

.btn-check:checked+.btn-primary,
.btn-check:active+.btn-primary,
.btn-primary:active,
.btn-primary.active,
.show>.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.btn-check:checked+.btn-primary:focus,
.btn-check:active+.btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active:focus,
.show>.btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 .25rem rgba(190, 29, 45, 0.5)
}

.btn-primary:disabled,
.btn-primary.disabled {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary)
}

a {
  color: #000;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Syne", 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(--primary);
  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: 14px;
  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: var(--primary);
  padding-right: 4px;
  margin-left: 15px;
  line-height: 0;
}

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

#topbar .social-links a {
  color: var(--primary);
  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: transparent;*/
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  top: 40px;
  box-shadow: 0px 2px 15px rgba(20,100,244, 0.1);
}

#header.header-scrolled{
  background: var(--primary) !important;
  top:0;
  padding:10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

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

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

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

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

.appointment-btn:hover {
  background: var(--primary);
  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: 14px;
  color: white;
  white-space: nowrap;
  transition: 0.3s;
  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: white;
  border-bottom: 2px solid var(--putih);
}

.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: white;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: var(--hitam);
}

@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(20,100,244, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--putih);
  border-radius: 25px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background: #fff;
  overflow-y: auto;
  transition: 0.3s;
  border-radius: 15px;
}

.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: 100vh;
  overflow: hidden;
  margin-top: -80px;
  z-index: 1;
}

@media (max-width: 768px) {
    .carousel-home {
        height: 100vh;
    }
}

.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: 10% !important;
  top: 0;
  bottom: 0;
  left: 10% !important;
  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;
}
@media (max-width: 768px) {
  .carousel-home .carousel-inner .carousel-item .carousel-caption h2 {
      font-size: 1.5rem;
  }
  .carousel-home .carousel-inner .carousel-caption {
      top: -10%;
  }
}
.carousel-home .carousel-control-next {
  /* background-color: var(--primary); */
  height: 100px;
  width: 50px;
  top: calc(50% - 50px);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.carousel-home .carousel-control-prev {
  /* background-color: var(--primary); */
  height: 100px;
  width: 50px;
  top: calc(50% - 50px);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.carousel-home .carousel-control-next-icon,
.carousel-home .carousel-control-prev-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.carousel-produk .carousel-control-next {
  top: calc(50% - 50px);
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  border-radius: 20px;
}

.carousel-produk .carousel-control-prev {
  top: calc(50% - 50px);
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  border-radius: 20px;
}

.carousel-produk .carousel-control-next-icon,
.carousel-produk .carousel-control-prev-icon {
  color: var(--primary);
}

.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 style ======= */

.section-title span {
  color: var(--primary);
}

.section-title2 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  margin-bottom: 15px;
  display: inline-block;
}
.section-title2::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 8px;
  background-color: var(--primary);
  z-index: -1;
}
.section-title3 {
  font-size: 16px;
  line-height: 16px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--hitam);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  z-index: 1;
}
.section-title3.white {
  color: #fff;
}
.section-title3::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 8px;
  background-color: var(--primary);
  z-index: -1;
}
.section-title3.white::before {
  background-color: var(--primary);
}


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: var(--primary);
  font-family: "Mulish", sans-serif;
  font-size: 12px;
  margin: 0;
  background: rgba(0, 0, 0, 0.05); 
  padding: 5px 30px;
  border-radius: 30px;
  margin-bottom: 15px;
  width: fit-content;
  font-weight: 500;
}

.section-title .section-name::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 8px;
  background-color: var(--primary);
  z-index: -1;
}

.section-title .section-name2 {
  color: var(--primary);
  font-family: "Mulish", sans-serif;
  font-size: 12px;
  margin: 0;
  background: white;
  padding: 5px 30px;
  border-radius: 30px;
  margin-bottom: 15px;
  width: fit-content;
  font-weight: 500;
}

.section-title.bg-utama .section-name {
  color: #fff;
  font-family: "Mulish", 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: 700;
}

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

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

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

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

  .section-title h2 {
    font-size: 1.5rem;
    width: 90%;
  }
}

.breadcrumbs {
  padding: 20px 0;
  /* background-color: #f7f7f7; */
  background: linear-gradient(to right, #737373, var(--putih));
  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: var(--hitam);
  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: "Mulish", 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(--primary);
  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: #000;
}

.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: #ed3c0d;
  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: #353535;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  /* background: #282828; */
  box-shadow: 0px 2px 15px rgba(20,100,244, 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: "Syne", 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: var(--primary);
  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(20,100,244, 1);
}

.search form {
  position: relative;
}

.search form input {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  background: transparent;
  margin-bottom: 0;
  border: 2px solid var(--primary);
  color: #999;
}

.search form input::placeholder {
  color: #999;
}

.search form button {
  position: absolute;
  right: 6px;
  top: 6px;
  background-color: var(--primary);
  color: var(--putih);
  border: 0;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
}

.search form button:hover {
  background: var(--hitam);
}

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: "Mulish", 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 {
  /* background-image: url(../../../images/sayap-honda.png); */
  border: 1px solid #f5f5f5;
  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;
  background: linear-gradient(rgba(255,255,255), rgba(255,255,255), rgba(20, 100, 244, .1));
}

/* .produk-item :hover img {
  transform: scale(1.1);
  box-shadow: rgba(20,100,244, 0.2) 0px 8px 24px;
} */

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

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

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

.produk-item .meta a:hover {
  color: rgba(20,100,244, 0.5);
}

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

.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(--primary);
  box-shadow: rgba(20,100,244, 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: #f3f3f3; */
  border-radius: 0.8rem;
  /* padding: 5px; */
  font-size: 0.8rem;
  display: flex;
  color: rgba(0, 0, 0, 0.5);
}

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

.promo-item .meta a:hover {
  color: rgba(20,100,244, 0.5);
}

.blog-badges {
  position: relative;
  z-index: 9;
  padding-left: 20px;
  padding-bottom: 20px;
}

.card-unggulan {
  background-color: white;
  border-radius: 15px;
  height: 100%;
  padding: 10px;
}

.card-unggulan:hover {
  background-color: rgba(20, 100, 244, .1);
}

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

.keunggulan .item {
  background: #fff;
  padding: 20px 15px;
  -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: 200px;
      border: 1px solid var(--primary);
  }
}

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

.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: 16px;
  font-weight: 600;
  color: var(--primary);
  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: 14px;
  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(0%) 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: 80px;
  }
}

.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: #f3f3f3;
  border-radius: 0.8rem;
  padding: 5px;
  font-size: 0.8rem;
  display: flex;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 15px;
}

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

.post-content .meta a {
  color: rgba(0, 0, 0, 0.5);
}

.post-content .meta a:hover {
  color: rgba(20,100,244, 0.5);
}

.cta-container {
  background: var(--primary);
  color: white;
  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(20,100,244, 0.9) 0%,
    rgba(20,100,244, 0.9) 50%,
    rgba(20,100,244, 0.5) 100%
  );
}

.cta-container .overlay2 {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(190, 29, 45, 0.9) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

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

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

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

.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-utama {
  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-utama .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-utama .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-utama .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-utama:hover {
  padding-left: 40px;
}

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

.contact-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 99;
  display: flex;
  gap: 10px;
}
.btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 30px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
.btn-whatsapp-pulse:hover {
  color: white !important;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.75);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
.rise-shake {
  animation: jump-shaking 0.83s infinite;
}
@keyframes jump-shaking {
  0% {
    transform: translateX(0);
  }
  35% {
    transform: rotate(17deg);
  }
  55% {
    transform: rotate(-17deg);
  }
  65% {
    transform: rotate(17deg);
  }
  75% {
    transform: rotate(-17deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

.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 10px;
    background: var(--putih);
}

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

hr.double {
  background: 0 0;
  border-style: double;
  border-color: rgba(164, 174, 198, .2);
  border-top: 0
}

_:default:not(:root:root),
hr.double {
  border-bottom-width: 3px
}

.divider-icon {
  border: 0;
  position: relative;
  margin: 4.5rem 0
}

.divider-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  /* color: rgba(164, 174, 198, .2) */
}

.divider-icon:after,
.divider-icon:before {
  position: absolute;
  top: 50%;
  content: "";
  /* border-top: 1px solid rgba(164, 174, 198, .2); */
  width: calc(50% - 1.5rem)
}

.divider-icon:before {
  left: 0
}

.divider-icon:after {
  right: 0
}

.divider:after {
  content: "";
  width: 100%;
  height: 0px;
  background: currentColor;
  display: block;
  margin-top: -5px
}

.divider.divider-alt:after {
  margin-top: 0;
  margin-bottom: -5px
}

[class*=divider-v-] {
  position: relative;
  width: auto;
  height: 100%;
  overflow: hidden
}

[class*=divider-v-]>svg {
  height: 100%;
  width: auto;
  transform: scale(1.2);
  position: absolute
}

[class*=divider-v-]:after {
  display: none
}

[class*=divider-v-].divider-v-start>svg {
  top: 0;
  left: 0
}

[class*=divider-v-].divider-v-end>svg {
  top: 0;
  right: 0
}

.early-order-box{
    position:absolute;
    left:0;
    right:0;
    top:-45px;
    z-index:9;
    background: var(--primary);
    border-radius:16px;
    box-shadow:
    0 10px 30px rgba(0,0,0,.15);
    /* overflow:hidden; */
}



.item-box{
    border-right:
    1px solid rgba(255,255,255,.15);
}


.eo-item{
    display:flex;
    align-items:center;
    gap:14px;
    padding:22px 24px;
    color:#fff;
    min-height:100%;
}


.icon{
    width:42px;
    height:42px;
    border-radius:50%;
    background:
    rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}



.eo-item small{
    display:block;
    font-size:12px;
    opacity:.8;
    letter-spacing:.4px;
}

.eo-item h5,
.eo-item h6{
    margin:0;
    font-weight:600;
}

.section-two{
    padding-top:120px;
    padding-bottom:80px;
}

@media(max-width:991px){
    .early-order-box{
        position:relative;
        bottom:auto;
        margin-top:-40px;
    }

    .item-box{
        border-right:none;
        border-bottom:
        1px solid rgba(255,255,255,.1);
    }

    .section-two{
        padding-top:60px;
    }
}

.gallery-spek-section {
	background:#fff;
	overflow:hidden;
}
.galleryspekSwiper {
	padding-bottom:90px;
}
.gallery-spek-card {
	width:100%;
}
.gallery-spek-image {
	height:410px;
	overflow:hidden;
	background:#f2f2f2;
	border-radius: 15px;
}
.gallery-spek-image img {
    border-radius: 15px;
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
	transition:.4s;
}
.gallery-spek-card:hover img {
	transform:scale(1.03);
}
.gallery-spek-caption {
	font-size:18px;
	line-height:1.6;
	margin-top:20px;
	color:#444;
	font-weight:400;
}
.gallery-spek-navigation {
	display:flex;
	justify-content:center;
	gap:18px;
	margin-top:40px;
}
.gallery-spek-prev,.gallery-spek-next {
	width:45px;
	height:45px;
	border-radius:50%;
	display:flex;
	align-items:center;
	justify-content:center;
	cursor:pointer;
	font-size:20px;
	transition:.3s;
}
.gallery-spek-prev {
	background:black;
	color:white;
}
.gallery-spek-next {
	background:black;
	color:white;
}
.gallery-spek-prev:hover {
    transform:scale(1.05);
	background:#d8d8d8;
}
.gallery-spek-next:hover {
	transform:scale(1.05);
	background:#d8d8d8;
}
@media(max-width:991px) {
	.gallery-spek-image {
		height:400px;
	}
}
@media(max-width:768px) {
	.gallery-spek-caption {
		font-size:18px;
	}
	.gallery-spek-image {
		height: 350px;
	}
}