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

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

a:hover {
  color: #bf1529;
  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 #e61b33;
  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: #e61b33;
  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: #bf1529;
  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: #e61b33;
}

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

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

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

#topbar .social-links a:hover {
  color: #bf1529;
}

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

#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 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: "Syne", sans-serif;
}

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

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

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

.appointment-btn:hover {
  background: #bf1529;
  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: #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: #e61b33;
  border-color: #e61b33;
}

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

.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(230, 27, 51, 0.9);
  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;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  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: #e61b33;
}

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

.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;
}
@media (max-width: 768px) {
  .carousel-home .carousel-inner .carousel-item .carousel-caption h2 {
      font-size: 1.5rem;
  }
}
.carousel-home .carousel-control-next {
  background-color: #e61b33;
  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: #e61b33;
  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;
}

.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: #e61b33;
  font-family: "Barlow", 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;
  font-weight: 500;
}

.section-title.bg-red .section-name {
  color: #fff;
  font-family: "Barlow", 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-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: #f7f7f7;
  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: #6c757d;
  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: #e61b33;
  font-family: "Barlow", 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(1);
  transition: all ease-in-out 0.4s;
}

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

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

.contact .info i {
  font-size: 20px;
  color: #e61b33;
  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: #e61b33;
  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: #e61b33;
  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: #b81428;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #e61b33;
  box-shadow: 0px 2px 15px rgba(230, 27, 51, 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: #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: rgba(255, 255, 255, 0.5);
}

#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: #e61b33;
  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: #e61b33;
  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(230, 27, 51, 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: #e61b33;
}

.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: "Barlow", 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: #e61b33;
}

.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 transparent;
  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 #e61b33;
  box-shadow: rgba(230, 27, 51, 0.2) 0px 8px 24px;
}

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

.produk-item .meta {
  background: #f3f3f3;
  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(230, 27, 51, 0.5);
}

.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 #e61b33;
  box-shadow: rgba(230, 27, 51, 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(230, 27, 51, 0.5);
}

.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: #e61b33;
  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;
  gap: 20px;
  display: flex;
  flex-direction: row;
}
/*@media (max-width: 768px) {*/
/*  .keunggulan .item {*/
/*      flex-direction: row;*/
/*      padding: 30px;*/
/*  }*/
/*}*/
.keunggulan .item.active {
  background: #e61b33;
  -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: #e61b33;
  -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 {
  width: 100px;
  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 {
      margin-bottom: 0;
      margin-right: 15px;
  }
}
.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(230, 27, 51, 0.5);
}

.cta-container {
  background: #e61b33;
  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(230, 27, 51, 0.9) 0%,
    rgba(230, 27, 51, 0.9) 50%,
    rgba(230, 27, 51, 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 {
  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: #e61b33;
  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: #e61b33;
}
.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: #e61b33;
  -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: #e61b33;
}
.link-custom-red:hover .link-circle i {
  -webkit-transform: translateX(-9px);
  -ms-transform: translateX(-9px);
  transform: translateX(-9px);
  color: #fff;
}

.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: #e61b33;
    border-color: #e61b33;
}

.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: #e61b33;
  width: 25px;
  border-radius: 12.5px;
  transition: all 0.2s ease-in-out;
}
