@font-face {
  font-family: 'FontAwesome';
  src: url('webfonts/fontawesome-webfont.woff2') format('woff2'),
       url('webfonts/fontawesome-webfont.woff') format('woff');
  font-display: swap;
}

body {
  font-family: sans-serif;
}

h1 {
    font-family: sans-serif;
}

p {
    font-family: sans-serif;
}

a {
    cursor: pointer;
}

input:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

textarea:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

select:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

select {
    appearance: none;
    background: none;
    padding-right: 30px;
    position: relative;
}

.select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%; /* or as needed */
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #ffffff;
  padding-right: 30px;
  width: 100%;
  font-size: 16px;
}

.select-wrapper::after {
  content: "\f078";
  font-family: "FontAwesome";
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #333;
  font-size: 14px;
}


.hero-bg {
    background-image: linear-gradient(rgba(240, 119, 32, 0.47), rgba(251, 107, 4, 0.46));
    background-size: cover;
    background-position: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.testimonial-card {
    transition: all 0.3s ease;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 15px); }
    100%   { transform: translate(0, -0px); }   
}

/* Precise circular elements */
.bullet {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bullet-sm {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bullet-md {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bullet-lg {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bullet-xl {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-container {
    aspect-ratio: 4/3; /* Adjust based on your image ratio */
}
.carousel-slides {
    display: flex;
}
.carousel-slide {
    flex-shrink: 0;
}

#home {
  position: relative;
  width: 100%;
  height: 100vh; /* Memastikan tinggi penuh layar */
  overflow: hidden;
}

@media (max-width: 767px) {
    #home {
        height: 75vh !important;
    }
}
@media (min-width: 768px) {
    #home {
        height: 100vh !important;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
}

#bgVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* Memastikan video berada di belakang konten lain */
}

.relative.z-10 {
  position: relative;
  z-index: 10; /* Memastikan konten teks berada di atas video */
}

body {
  margin: 0;
}

.post {
  width: 220px;
  height: 100%;
  display: flex;
}

.post .avatar {
  float: left;
  width: 52px;
  height: 52px;
  background-color: #ccc;
  border-radius: 25%;
  margin: 8px;
  background-image: linear-gradient(90deg, #ddd 0px, #e8e8e8 40px, #ddd 80px);
  background-size: 600px;
  animation: shine-avatar 1.6s infinite linear;
}

.post .line {
  float: left;
  width: 100%;
  height: 16px;
  border-radius: 7px;
  background-image: linear-gradient(90deg, #ddd 0px, #e8e8e8 40px, #ddd 80px);
  background-size: 600px;
  animation: shine-lines 1.6s infinite linear;
}

.post .avatar + .line {
  margin-top: 11px;
  width: 100px;
}

.post .line ~ .line {
  background-color: #ddd;
}

/* Keyframes */
@keyframes shine-lines {
  0% {
    background-position: -100px;
  }
  40%, 100% {
    background-position: 140px;
  }
}

@keyframes shine-avatar {
  0% {
    background-position: -100px + 68px; /* 52 + 16 */
  }
  40%, 100% {
    background-position: 140px + 68px;
  }
}

.swiper-container {
    width: 100%;
    overflow: hidden;
}

.swiper-slide {
  width: auto; /* allow Swiper to override */
  flex-shrink: 0;
}

.swiper-pagination {
    justify-content: center;
    align-items: center;
}

.swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    display: block;
    border-radius: 10px;
    background: #062744;
    opacity: 0.2;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    background-color: #fb6b04;
    opacity: 1;
    width: 30px;
    box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
}

@media screen and (max-width: 768px) {
    .swiper-pagination-bullet-active {
		 height: 11px;
		 width: 30px;
	}
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #fb6b04;
    color: #fff;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: #fd3838;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px;
}

.blog-slider {
	 width: 95%;
	 position: relative;
	 max-width: 800px;
	 margin: auto;
	 background: #fff;
	 box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
	 padding: 25px;
	 border-radius: 25px;
	 height: 400px;
	 transition: all 0.3s;
}
 @media screen and (max-width: 992px) {
	 .blog-slider {
		 max-width: 680px;
		 height: 400px;
	}
}
 @media screen and (max-width: 768px) {
	 .blog-slider {
		 min-height: 500px;
		 height: auto;
		 margin-top: 180px;
	}
}
 @media screen and (max-height: 500px) and (min-width: 992px) {
	 .blog-slider {
		 height: 350px;
	}
}
.blog-slider2 {
	 width: 95%;
	 position: relative;
	 max-width: 800px;
	 margin: auto;
	 background: #fff;
	 box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
	 padding: 25px;
	 border-radius: 25px;
	 height: 400px;
	 transition: all 0.3s;
}
 @media screen and (max-width: 992px) {
	 .blog-slider2 {
		 max-width: 680px;
		 height: 400px;
	}
}
 @media screen and (max-width: 768px) {
	 .blog-slider2 {
		 min-height: 500px;
		 height: auto;
		 /* margin-top: 180px; */
	}
}
 @media screen and (max-height: 500px) and (min-width: 992px) {
	 .blog-slider2 {
		 height: 350px;
	}
}
 .blog-slider__item {
	 display: flex;
	 align-items: center;
}
 @media screen and (max-width: 768px) {
	 .blog-slider__item {
		 flex-direction: column;
	}
}
 .blog-slider__item.swiper-slide-active .blog-slider__img img {
	 opacity: 1;
	 transition-delay: 0.3s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > * {
	 opacity: 1;
	 transform: none;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
	 transition-delay: 0.3s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
	 transition-delay: 0.4s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
	 transition-delay: 0.5s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
	 transition-delay: 0.6s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(5) {
	 transition-delay: 0.7s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(6) {
	 transition-delay: 0.8s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(7) {
	 transition-delay: 0.9s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(8) {
	 transition-delay: 1s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(9) {
	 transition-delay: 1.1s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(10) {
	 transition-delay: 1.2s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(11) {
	 transition-delay: 1.3s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(12) {
	 transition-delay: 1.4s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(13) {
	 transition-delay: 1.5s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(14) {
	 transition-delay: 1.6s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(15) {
	 transition-delay: 1.7s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content2 > * {
	 opacity: 1;
	 transform: none;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content2 > *:nth-child(1) {
	 transition-delay: 0.3s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content2 > *:nth-child(2) {
	 transition-delay: 0.4s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content2 > *:nth-child(3) {
	 transition-delay: 0.5s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content2 > *:nth-child(4) {
	 transition-delay: 0.6s;
}
.blog-slider__img {
   width: 300px;
   flex-shrink: 0;
   height: 300px;
  background:
    url('../assets_b/logo/logo.webp') center center / 50% no-repeat;
   box-shadow: 5px 10px 26px -10px #fb6b04;
   border-radius: 20px;
   transform: translateX(-60px);
   overflow: hidden;
}
.slider__img2 {
    transform: translateX(0px) !important;
    flex-shrink: initial !important;
    width: 450px;
}
 /* .blog-slider__img:after {
	 content: '';
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
	 border-radius: 20px;
	 opacity: 0.8;
} */
 .blog-slider__img img {
	 width: 100%;
	 height: 100%;
	 object-fit: cover;
	 display: block;
	 opacity: 0;
	 border-radius: 20px;
	 transition: all 0.3s;
}
 @media screen and (max-width: 768px) {
	 .blog-slider__img {
		 transform: translateY(-50%);
		 width: 90%;
	}
}
 @media screen and (max-width: 576px) {
	 .blog-slider__img {
		 width: 95%;
	}
}
 @media screen and (max-height: 500px) and (min-width: 992px) {
	 .blog-slider__img {
		 height: 270px;
	}
}
 .blog-slider__content {
	 padding-right: 25px;
}
 @media screen and (max-width: 768px) {
	 .blog-slider__content {
		 margin-top: -80px;
		 text-align: center;
		 padding: 0 30px;
	}
}
 @media screen and (max-width: 576px) {
	 .blog-slider__content {
		 padding: 0;
	}
}
 .blog-slider__content > * {
	 opacity: 0;
	 transform: translateY(25px);
	 transition: all 0.4s;
}
.blog-slider__content2 > * {
	 opacity: 0;
	 transform: translateX(25px);
	 transition: all 0.4s;
}

.blog-slider__content2 {
	 padding-right: 25px;
}
 @media screen and (max-width: 768px) {
	 .blog-slider__content2 {
		 margin-top: -80px;
		 text-align: center;
		 padding: 0 30px;
	}
}
 @media screen and (max-width: 576px) {
	 .blog-slider__content2 {
		 padding: 0;
	}
}
 .blog-slider__content2 > * {
	 opacity: 0;
	 transform: translateX(25px);
	 transition: all 0.4s;
}

 .blog-slider__code {
	 color: #7b7992;
	 margin-bottom: 15px;
	 display: block;
	 font-weight: 500;
}
 .blog-slider__title {
	 font-size: 24px;
	 font-weight: 700;
	 color: #0d0925;
	 margin-bottom: 20px;
}
 .blog-slider__text {
	 color: #4e4a67;
	 margin-bottom: 30px;
	 line-height: 1.5em;
}
 .blog-slider__button {
	 display: inline-flex;
	 background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
	 padding: 15px 35px;
	 border-radius: 50px;
	 color: #fff;
	 box-shadow: 0px 14px 80px rgba(252, 56, 56, 0.4);
	 text-decoration: none;
	 font-weight: 500;
	 justify-content: center;
	 text-align: center;
	 letter-spacing: 1px;
}
 @media screen and (max-width: 576px) {
	 .blog-slider__button {
		 width: 100%;
	}
}
 .blog-slider .swiper-container-horizontal > .swiper-pagination-bullets, .blog-slider .swiper-pagination-custom, .blog-slider .swiper-pagination-fraction {
	 bottom: 10px;
	 left: 0;
	 width: 100%;
}
 .blog-slider__pagination {
	 position: absolute;
	 z-index: 21;
	 right: 20px;
	 width: 11px !important;
	 text-align: center;
	 top: 50% !important;
     left: auto !important;
	 bottom: auto !important;
	 transform: translateY(-50%);
}
 @media screen and (max-width: 768px) {
	 .blog-slider__pagination {
		 transform: translateY(-50%);
		 left: 0px !important;
		 top: 205px !important;
		 width: 100% !important;
		 display: flex;
		 justify-content: center;
		 align-items: center;
	}
}
 .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
	 margin: 8px 0;
}
 @media screen and (max-width: 768px) {
	 .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
		 margin: 0 5px;
	}
}
 .blog-slider__pagination .swiper-pagination-bullet {
	 width: 11px;
	 height: 11px;
	 display: block;
	 border-radius: 10px;
	 background: #062744;
	 opacity: 0.2;
	 transition: all 0.3s;
}
.blog-slider__pagination2 .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    display: block;
    border-radius: 10px;
    background: #062744;
    opacity: 0.2;
    transition: all 0.3s;
}
 .blog-slider__pagination .swiper-pagination-bullet-active {
	 opacity: 1;
	 background: #fd3838;
	 height: 30px;
	 box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
}
.blog-slider__pagination2 .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fd3838;
    width: 30px;
    box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
}
 @media screen and (max-width: 768px) {
	 .blog-slider__pagination .swiper-pagination-bullet-active {
		 height: 11px;
		 width: 30px;
	}
    .modal-content {
        /* left: 50% !important; */
        top: -15% !important;
        width: 95% !important;
    }
}
 

/*--------------------------------------------------------------
22. Post
----------------------------------------------------------------*/
.st-post.st-style3 a:hover {
  color: #fb6b04;
}

.st-post-footer a:hover {
    color: #FFFFFF !important;
}
.st-post.st-style3 .st-post-thumb {
  display: block;
  margin-bottom: 25px;
  overflow: hidden;
  position: relative;
}
.st-post.st-style3 .st-post-thumb:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #111;
  opacity: 0;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.st-post.st-style3 .st-post-thumb img {
  width: 100%;
}
.st-post.st-style3 .st-post-thumb:hover:after {
  opacity: 0.3;
}
.st-post.st-style3 .st-post-info {
  margin-bottom: 33px;
}
.st-post.st-style3 .st-post-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 9px;
}
.st-post.st-style3 .st-post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 16px;
}
.st-post.st-style3 .st-post-meta > span {
  position: relative;
  color: #b5b5b5;
}
.st-post.st-style3 .st-post-meta > span:not(:last-child) {
  padding-right: 15px;
  margin-right: 15px;
}
.st-post.st-style3 .st-post-meta > span:not(:last-child):after {
  content: "";
  position: absolute;
  height: 12px;
  width: 1px;
  background-color: #eaeaea;
  top: 6px;
  right: 0;
}
.st-post.st-style3.st-type1 {
  background-color: #f8f8fb;
  padding: 30px;
  border-radius: 8px;
  overflow: hidden;
}
.st-post.st-style3.st-type1 .st-post-thumb {
  overflow: hidden;
  margin: -30px;
  margin-bottom: 25px;
}
.st-post.st-style3.st-color1 .st-link-hover-wrap .st-link-hover {
  background-color: #27b1d9;
}
.st-post.st-style3.st-color1 .st-link-hover-wrap .st-link-hover i,
.st-post.st-style3.st-color1 a:not(.st-btn):hover {
  color: #27b1d9;
}
.st-post.st-style3.st-color2 .st-link-hover-wrap .st-link-hover {
  background-color: #ff375f;
}
.st-post.st-style3.st-color2 .st-link-hover-wrap .st-link-hover i,
.st-post.st-style3.st-color2 a:not(.st-btn):hover {
  color: #ff375f;
}

.st-post.st-style2 {
  -webkit-box-shadow: 0px 5px 10px 0px rgba(106, 106, 106, 0.15);
          box-shadow: 0px 5px 10px 0px rgba(106, 106, 106, 0.15);
  text-align: center;
  border-radius: 7px;
  overflow: hidden;
}
.st-post.st-style2 .st-post-thumb {
  overflow: hidden;
  display: block;
}
.st-post.st-style2 .st-post-thumb img {
  width: 100%;
}
.st-post.st-style2 .st-post-info {
  position: relative;
  padding: 66px 20px 25px 20px;
}
.st-post.st-style2 .st-post-avatar {
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50%;
  overflow: hidden;
  display: block;
}
.st-post.st-style2 .st-post-avatar .st-post-avatar-text {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-color: rgba(12, 184, 182, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  color: #fff;
  font-weight: 400;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.st-post.st-style2 .st-post-avatar .st-post-avatar-text:hover {
  opacity: 1;
}
.st-post.st-style2 .st-post-title {
  font-size: 18px;
  margin-bottom: 11px;
}
.st-post.st-style2 .st-post-title:hover a {
  color: #fb6b04;
}
.st-post.st-style2 .st-post-date {
  border-top: 1px solid #eaeaea;
  padding: 12px 20px;
}
.st-post.st-style2 .st-post-footer {
  position: relative;
  height: 49px;
}
.st-post.st-style2 .st-post-footer .st-post-btn {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 55px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  background-color: #fb6b04;
  color: #fff;
}
.st-post.st-style2 .st-post-footer .st-post-btn:hover {
  color: rgba(255, 255, 255, 0.8);
}
.st-post.st-style2:hover .st-post-btn {
  top: 0;
}
.st-post.st-style2.st-size-lg .st-post-title {
  font-size: 28px;
}

.st-post-widget-list > li:not(:last-child) {
  margin-bottom: 15px;
}

.st-post.st-style1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.st-post.st-style1 .st-post-thumb {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 10px;
  width: 70px;
}
.st-post.st-style1 .st-post-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}
.st-post.st-style1 .st-post-title a:hover {
  color: #fb6b04;
}
.st-post.st-style1 .st-post-date {
  font-size: 13px;
  line-height: 1.6em;
}
.st-post.st-style1.st-style1 .st-post-title a:hover {
  color: #27b1d9;
}
.st-post.st-style1.st-style1 .st-post-title a:hover {
  color: #ff375f;
}

.st-categories.st-style1 {
  margin-top: -4px;
}
.st-categories.st-style1 li {
  font-size: 14px;
  line-height: 1.6em;
  margin-bottom: -2px;
  color: #b5b5b5;
}
.st-categories.st-style1 li a:hover {
  color: #fb6b04;
}
.st-categories.st-style1.st-color1 li a:hover {
  color: #27b1d9;
}

.st-sidebar-widget .st-post-widget-list > li:not(:last-child) {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.st-sidebar-widget .st-post.st-style1 .st-post-thumb {
  width: 80px;
}

.st-post-pagination {
  margin: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.st-post-pagination .page-link {
  padding: 0.73rem 1.15rem;
  color: #666;
  background-color: #fff;
  border-color: #eaeaea;
}
.st-post-pagination .page-link:hover {
  background-color: #f9fafc;
  color: #111;
}
.st-post-pagination .page-item.disabled .page-link {
  color: #b5b5b5;
}
.st-post-pagination .page-item.active .page-link {
  color: #fff;
  background-color: #fb6b04;
  border-color: #fb6b04;
  position: relative;
  z-index: 1;
}
.st-post-pagination.st-color1 .page-item.active .page-link {
  background-color: #27b1d9;
  border-color: #27b1d9;
}
.st-post-pagination.st-color2 .page-item.active .page-link {
  background-color: #ff375f;
  border-color: #ff375f;
}

.st-link-hover-wrap .st-link-hover {
  position: absolute;
  z-index: 2;
  top: -100px;
  right: 20px;
  width: 50px;
  height: 120px;
  background: #fb6b04;
  border-radius: 0 0 40px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.st-link-hover-wrap .st-link-hover i {
  color: #fb6b04;
  background-color: #fff;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  margin-bottom: 5px;
  opacity: 0;
  -webkit-transform: scale(0.5) rotate(180deg);
          transform: scale(0.5) rotate(180deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.st-link-hover-wrap:hover .st-link-hover {
  opacity: 1;
  top: 0px;
}
.st-link-hover-wrap:hover .st-link-hover i {
  opacity: 1;
  -webkit-transform: scale(1) rotate(0deg);
          transform: scale(1) rotate(0deg);
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.st-zoom {
  position: relative;
  overflow: hidden;
}
.st-zoom .st-zoom-in {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.st-zoom:hover .st-zoom-in {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}

/* MODAL */

.btn {
  padding: 1em 3em;
  margin-bottom: 2rem;
  border: none;
  border-radius: 1.5em;
  background-color: var(--clr-main);
  font-family: inherit;
  color: var(--clr-light);
  transition: filter .15s ease-in-out;
  cursor: pointer;
}

.btn:hover {
 filter: brightness(1.1); 
}

.modal {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10%);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 1000;
}

.show-modal {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.modal-content {
  position: absolute;
  top: -50px;
  right: 10px;
  transform: scale(0.9);
  background-color: white;
  padding: 2rem 2.5rem;
  width: 30em;
  border-radius: 0.5rem;
  background-image: linear-gradient(0deg, #ffffff 0%, #fb6b04 200%);
}

@media (max-width: 768px) {
  .modal-content {
    transform: scale(0.95);
  }
}
.close-button {
  float: right;
  width: 1.5rem;
  font-size: 1.2em;
  line-height: 1;
  padding: 0 .2em .15em;
  text-align: center;
  cursor: pointer;
  border-radius: 0.25rem;
  background-color: var(--clr-neutral);
  color: var(--clr-dark);
  transition: color 0.12s ease-in-out;
}
.close-button:hover {
  color: var(--clr-main);
}

#appointmentForm .modal-form-group {
    display: none;
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#appointmentForm .active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(10%);
    }
    to {
        transform: translateX(0);
    }
}

.checkbox-wrapper-33 {
    --s-xsmall: 0.625em;
    --s-small: 1.2em;
    --border-width: 1px;
    --c-primary:#98c841;
    --c-primary-20-percent-opacity: rgb(152 200 65 / 20%);
    --c-primary-10-percent-opacity: rgb(152 200 65 / 10%);
    --t-base: 0.4s;
    --t-fast: 0.2s;
    --e-in: ease-in;
    --e-out: cubic-bezier(.11,.29,.18,.98);
  }

  .checkbox-wrapper-33 .visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  .checkbox-wrapper-33 .checkbox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .checkbox-wrapper-33 .checkbox + .checkbox {
    margin-top: var(--s-small);
  }
  .checkbox-wrapper-33 .checkbox__symbol {
    display: inline-block;
    display: flex;
    margin-right: calc(var(--s-small) * 0.7);
    border: var(--border-width) solid var(--c-primary);
    position: relative;
    border-radius: 0.1em;
    width: 2em;
    height: 1.7em;
    transition: box-shadow var(--t-base) var(--e-out), background-color var(--t-base);
    box-shadow: 0 0 0 0 var(--c-primary-10-percent-opacity);
    place-self: self-start;
  }
  .checkbox-wrapper-33 .checkbox__symbol:after {
    content: "";
    position: absolute;
    top: 0.5em;
    left: 0.5em;
    width: 0.25em;
    height: 0.25em;
    background-color: var(--c-primary-20-percent-opacity);
    opacity: 0;
    border-radius: 3em;
    transform: scale(1);
    transform-origin: 50% 50%;
  }
  .checkbox-wrapper-33 .checkbox .icon-checkbox {
    width: 1.5em;
    height: 1em;
    margin: auto;
    fill: none;
    stroke-width: 3;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
    color: var(--c-primary);
    display: inline-block;
  }
  .checkbox-wrapper-33 .checkbox .icon-checkbox path {
    transition: stroke-dashoffset var(--t-fast) var(--e-in);
    stroke-dasharray: 30px, 31px;
    stroke-dashoffset: 31px;
  }
  .checkbox-wrapper-33 .checkbox__textwrapper {
    margin: 0;
  }
  .checkbox-wrapper-33 .checkbox__trigger:checked + .checkbox__symbol:after {
    -webkit-animation: ripple-33 1.5s var(--e-out);
            animation: ripple-33 1.5s var(--e-out);
  }
  .checkbox-wrapper-33 .checkbox__trigger:checked + .checkbox__symbol .icon-checkbox path {
    transition: stroke-dashoffset var(--t-base) var(--e-out);
    stroke-dashoffset: 0px;
  }
  .checkbox-wrapper-33 .checkbox__trigger:focus + .checkbox__symbol {
    box-shadow: 0 0 0 0.25em var(--c-primary-20-percent-opacity);
  }

  @-webkit-keyframes ripple-33 {
    from {
      transform: scale(0);
      opacity: 1;
    }
    to {
      opacity: 0;
      transform: scale(20);
    }
  }

  @keyframes ripple-33 {
    from {
      transform: scale(0);
      opacity: 1;
    }
    to {
      opacity: 0;
      transform: scale(20);
    }
  }

  /*--------------------------------------------------------------
  16. Image Layer
----------------------------------------------------------------*/
.cs_image_layer.cs_style_1 .cs_image_layer_1_wrap {
  padding-right: 24%;
  padding-bottom: 20%;
}
.cs_image_layer.cs_style_1 .cs_image_layer_2_wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  padding-left: 30%;
}
.cs_image_layer.cs_style_1 .cs_image_layer_1,
.cs_image_layer.cs_style_1 .cs_image_layer_2 {
  position: relative;
}
.cs_image_layer.cs_style_1 .cs_image_layer_1::before,
.cs_image_layer.cs_style_1 .cs_image_layer_2::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  border: 1px solid #fff;
}

.cs_image_layer.cs_style_2 .cs_image_layer_1_wrap {
  padding-left: 30%;
}
.cs_image_layer.cs_style_2 .cs_image_layer_2_wrap {
  position: absolute;
  left: 0;
  bottom: 50px;
  padding-right: 42%;
}
.cs_image_layer.cs_style_2 .cs_image_layer_2 {
  border: 10px solid #fff;
}

.cs_image_layer.cs_style_3::before,
.cs_image_layer.cs_style_4::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  border: 1px solid #fff;
}
.cs_image_layer.cs_style_3.cs_type_1,
.cs_image_layer.cs_style_4.cs_type_1 {
  border-radius: 250px 0;
}
.cs_image_layer.cs_style_3.cs_type_1 img,
.cs_image_layer.cs_style_4.cs_type_1 img {
  border-radius: inherit;
}
.cs_image_layer.cs_style_3.cs_type_1::before,
.cs_image_layer.cs_style_4.cs_type_1::before {
  border-radius: 225px 0;
}

.cs_image_layer.cs_style_4 {
  min-height: 600px;
}
@media (max-width: 575px) {
  .cs_image_layer.cs_style_4 {
    min-height: 400px;
  }
}

.cs_image_layer.cs_style_5 .cs_image_layer_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 636px;
}
@media (max-width: 1400px) {
  .cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item {
    height: 550px;
  }
}
@media (max-width: 991px) {
  .cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item {
    height: 400px;
  }
}
@media (max-width: 575px) {
  .cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item {
    height: 350px;
  }
}
.cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item:first-child {
  padding: 80px 11% 80px 0;
}
@media (max-width: 1600px) {
  .cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item:first-child {
    padding: 80px 8% 80px 0;
  }
}
@media (max-width: 1400px) {
  .cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item:first-child {
    padding: 50px 6% 50px 0;
  }
}
@media (max-width: 991px) {
  .cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item:first-child {
    padding: 30px 24px 30px 0;
  }
}
@media (max-width: 991px) {
  .cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item:first-child {
    padding: 30px 10px 30px 0;
  }
}
.cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item:nth-child(2) {
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5;
          flex: 1.5;
  position: relative;
  z-index: 2;
}
.cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item:nth-child(3) {
  padding: 80px 0 80px 11%;
}
@media (max-width: 1600px) {
  .cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item:nth-child(3) {
    padding: 80px 0 80px 8%;
  }
}
@media (max-width: 1400px) {
  .cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item:nth-child(3) {
    padding: 50px 0 50px 6%;
  }
}
@media (max-width: 991px) {
  .cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item:nth-child(3) {
    padding: 30px 0 30px 24px;
  }
}
@media (max-width: 575px) {
  .cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item:nth-child(3) {
    padding: 30px 0 30px 10px;
  }
}
.cs_image_layer.cs_style_5 .cs_moving_text_wrap.cs_style_1 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 100%;
}

/* GALLERY */

.cs_grid_style_1,
.cs_grid_style_3 {
  display: grid;
  grid-gap: 0px;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
}

@media (max-width: 767px) {
  .cs_grid_style_1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cs_grid_style_1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cs_grid_style_1 .cs_grid_item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.cs_grid_style_1 .cs_grid_item:first-child .cs_gallery_item.cs_style_1 {
  height: 100%;
}
@media (max-width: 575px) {
  .cs_grid_style_1 .cs_grid_item:first-child {
    grid-column: initial;
    grid-row: initial;
  }
}
.cs_grid_style_1 .cs_grid_item:nth-child(2) {
  grid-row: span 2;
}
@media (max-width: 575px) {
  .cs_grid_style_1 .cs_grid_item:nth-child(2) {
    grid-row: initial;
  }
}
.cs_grid_style_1 .cs_grid_item:nth-child(2) .cs_gallery_item.cs_style_1 {
  height: 100%;
}

/* .animate-from-bottom {
    transform: translateY(100%);
    animation: slideUp 1.5s ease-out forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
} */

@media (max-width: 768px) {
    #navbarz > .absolute.top-0.right-0.h-full {
        display: none;
    }
}

.typewriter-cursor {
    display: inline-block;
    background: #fb6b04;
    opacity: 0.8;
    color: #fff !important;
    border-radius: 4px;
    padding: 0 4px;
    animation: blink-cursor 0.7s steps(1) infinite;
    font-weight: bold;
    transition: background 0.2s;
}
@keyframes blink-cursor {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.3; }
}

a.active {
  color: #fb6b04 !important;
}

/* TESTIMONIAL BG */

.bg-testimonials {
    background: url('../assets_b/facility/before-after-bg.jpg') center center / cover no-repeat;
    position: relative;
    background-size: cover;
    background-position: center;
    /* padding: 100px 0; */
}

.st-widget {
    border: 1px solid #eaeaea;
    border-radius: 7px;
    padding: 30px;
}
.st-widget .st-widget-title {
    font-size: 16px;
    position: relative;
    padding-bottom: 0 !important;
    margin-bottom: 17px !important;
    margin-top: -3px !important;
    overflow: hidden;
    clear: both;
    color: #111;
    padding: 0;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.st-widget-list {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-top: -16px;
    margin-bottom: -16px;
    font-size: 14px;
}

.st-widget-list li:not(:last-child) {
    border-bottom: 1px solid #eaeaea;
}

.st-widget-list a {
    display: block;
    padding: 10px 0;
}

.custom-swiper-btn {
    display:none;
}
@media (min-width: 768px) {
  /* Hide by default */
  .swiper-container .custom-swiper-btn {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
  }

  /* Show on hover */
  .swiper-container:hover .custom-swiper-btn {
    opacity: 1;
    pointer-events: auto;
  }

  /* Animation for prev: fade in from right */
  .swiper-container:hover .swiper-button-prev.custom-swiper-btn {
    display: flex;
    transform: translateX(30px);
    animation: fadeInPrevBtn 0.4s forwards;
  }
  /* Animation for next: fade in from left */
  .swiper-container:hover .swiper-button-next.custom-swiper-btn {
    display: flex;
    transform: translateX(-30px);
    animation: fadeInNextBtn 0.4s forwards;
  }

  .testimonial-swiper .custom-swiper-btn {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
  }

  /* Show on hover */
  .testimonial-swiper:hover .custom-swiper-btn {
    opacity: 1;
    pointer-events: auto;
  }

  /* Animation for prev: fade in from right */
  .testimonial-swiper:hover .swiper-button-prev.custom-swiper-btn {
    display: flex;
    transform: translateX(30px);
    animation: fadeInPrevBtn 0.4s forwards;
  }
  /* Animation for next: fade in from left */
  .testimonial-swiper:hover .swiper-button-next.custom-swiper-btn {
    display: flex;
    transform: translateX(-30px);
    animation: fadeInNextBtn 0.4s forwards;
  }

  @keyframes fadeInPrevBtn {
    from { opacity: 0; transform: translateX(30px);}
    to { opacity: 1; transform: translateX(0);}
  }

  @keyframes fadeInNextBtn {
    from { opacity: 0; transform: translateX(-30px);}
    to { opacity: 1; transform: translateX(0);}
  }

  /* Optional: Add hover effect on the button itself */
  .custom-swiper-btn:hover {
    background: rgba(251, 107, 4, 0.15);
    border-radius: 50%;
    transition: background 0.2s;
  }
}

/* Tambahkan/ubah ini di bagian bawah file CSS Anda */
#loadingScreen {
    position: fixed;
    inset: 0;
    z-index: 99999 !important;
    width: 100vw;
    height: 100vh;
    background: #ECEFE9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
}

.card-treat-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(251, 107, 4, 0.2);
}
.transition-all {
    transition: all 0.3s ease;
}
.card-treat-img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.btn-whatsapp-pulse {
	background: #25d366;
	color: white;
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 35px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

.btn-whatsapp-pulse-border {
	bottom: 40px;
	right: 40px;
	animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 25px;
	border: 5px solid #25d366;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse-border {
	0% {
		padding: 25px;
		opacity: 0.75;
	}
	75% {
		padding: 50px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
