/* ePuskesmas - overrides for ePuskesmas */
:root{
  --tg-theme-primary: var(--ep-primary);
  --tg-theme-secondary: var(--ep-secondary);
  --tg-body-color: var(--ep-body);
  --tg-heading-color: var(--ep-heading);
  --tg-color-gradient: linear-gradient(90deg, rgba(15,157,88,0.22) 0%, var(--ep-primary) 100%);
}

body.epuskesmas{
  background: var(--ep-bg);
  color: var(--ep-body);
}

/* Prevent horizontal scroll caused by decorative shapes / absolute elements */
html, body{ overflow-x: hidden; }

/* Make sure main wrappers don't overflow */
.slider__area-two,
.services__area-six,
.cta__area-four,
.blog-post-area,
.team__area-six{
  overflow: hidden;
}

/* WP Admin bar + sticky header */
.admin-bar .sticky-menu{
  top: 32px;
}
@media (max-width: 782px){
  .admin-bar .sticky-menu{ top: 46px; }
}

/* Mobile menu */
.ep-mobile-menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(1,2,46,0.55);
  opacity: 0;
  visibility: hidden;
  transition: all .25s ease;
  z-index: 9998;
}
.ep-mobile-menu{
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  padding: 24px;
  overflow-y: auto;
  transition: all .25s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}
.ep-mobile-menu.is-open{ right: 0; }
.ep-mobile-menu-overlay.is-open{ opacity: 1; visibility: visible; }
.ep-mobile-menu .ep-mobile-close{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(15,157,88,0.25);
  color: var(--ep-primary);
  background: rgba(15,157,88,0.08);
}
.ep-mobile-menu .navigation{
  display: block;
}
.ep-mobile-menu .navigation li{
  margin: 0;
  border-bottom: 1px solid rgba(15,157,88,0.12);
}
.ep-mobile-menu .navigation li a{
  display: flex;
  padding: 12px 0;
  color: var(--ep-heading);
  font-weight: 600;
}

/* Simple alert */
.ep-alert{
  margin: 18px 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(15,157,88,0.08);
  border: 1px solid rgba(15,157,88,0.22);
  color: var(--ep-heading);
}
.ep-alert.success{
  background: rgba(15,157,88,0.10);
  border-color: rgba(15,157,88,0.28);
}
.ep-alert.error{
  background: rgba(220,38,38,0.10);
  border-color: rgba(220,38,38,0.28);
  color: #991b1b;
}

/* WP content defaults */
.ep-content{ padding: 80px 0; }
.ep-content .entry-content p{ margin-bottom: 1rem; }
.ep-content .entry-content h1, .ep-content .entry-content h2, .ep-content .entry-content h3{ color: var(--ep-heading); }

/* Forms */
.ep-form .form-grp input,
.ep-form .form-grp textarea{
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(15,157,88,0.18);
  padding: 14px 16px;
  outline: none;
}
.ep-form .form-grp textarea{ min-height: 140px; }
.ep-form .form-grp input:focus,
.ep-form .form-grp textarea:focus{
  border-color: rgba(15,157,88,0.55);
  box-shadow: 0 0 0 4px rgba(15,157,88,0.12);
}

/* Scroll top */
.ep-scroll-top{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--ep-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all .25s ease;
}
.ep-scroll-top.is-visible{ opacity: 1; visibility: visible; }

/* Auth pages */
.ep-auth{
  padding: 80px 0;
  background: #f8f9fb;
}
.ep-auth-page .ep-auth{
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
}
.ep-auth-page .tg-header__top{ display: none !important; }
.ep-auth-wrap{
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}
.ep-auth-card{
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 30px 70px rgba(0,0,0,.08);
  border: 1px solid rgba(15,157,88,0.14);
}

@media (max-width: 767.98px){
  .ep-auth{ padding: 42px 0; }
  .ep-auth-page .ep-auth{ min-height: calc(100vh - 120px); }
  .ep-auth-card{ padding: 22px 18px; border-radius: 18px; }
}

/* Footer spacing */
.footer__area{ margin-top: 0; }

/* Simplify footer on auth pages (remove large widgets/logo so mobile doesn't look "kepanjangan") */
.ep-auth-page .footer__top{ display: none; }
.ep-auth-page .footer__bottom{ padding: 12px 0; }

/* WP login form styling */
#ep-loginform p{margin-bottom:14px;}
#ep-loginform label{display:block;font-weight:600;margin-bottom:6px;}
#ep-loginform input[type="text"],
#ep-loginform input[type="password"]{width:100%;height:52px;border:1px solid #dbe7df;border-radius:14px;padding:0 16px;}
#ep-loginform input[type="text"]:focus,
#ep-loginform input[type="password"]:focus{outline:none;border-color:var(--ep-primary);box-shadow:0 0 0 4px rgba(15,157,88,.12);}
#ep-loginform p.forgetmenot,
#ep-loginform .login-remember{display:flex;align-items:center;justify-content:flex-start !important;gap:10px;margin:10px 0 16px;}
#ep-loginform p.forgetmenot label,
#ep-loginform .login-remember label{display:inline-flex;align-items:center;gap:10px;font-weight:500;margin:0;}
#ep-loginform input[type="checkbox"]{
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  min-height: 18px;
  padding: 0 !important;
  border: 1px solid #dbe7df;
  border-radius: 6px;
  background: #fff;
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  position: relative;
}
#ep-loginform input[type="checkbox"]:checked{
  border-color: var(--ep-primary);
  background: var(--ep-primary);
}
#ep-loginform input[type="checkbox"]:checked::after{
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}
#ep-loginform p.submit{margin: 0;}
#ep-loginform input[type="submit"]{width:100%;border:0;border-radius:999px;padding:14px 18px;background:var(--ep-primary);color:#fff;font-weight:700;}
#ep-loginform input[type="submit"]:hover{opacity:.95;}

/* Register / Reset forms should match the same input/button style */
.ep-auth-card .form-control{
  height: 52px;
  border: 1px solid #dbe7df;
  border-radius: 14px;
  padding: 0 16px;
}
.ep-auth-card .form-control:focus{
  outline: none;
  border-color: var(--ep-primary);
  box-shadow: 0 0 0 4px rgba(15,157,88,.12);
}
.ep-auth-card textarea.form-control{
  height: auto;
  padding: 14px 16px;
}
.ep-auth-card .tg-btn,
.ep-auth-card .btn{
  border-radius: 999px;
  padding: 14px 18px;
}

/* Spacing between fields on Register/Reset (mobile & desktop) */
.ep-auth-card .ep-form .form-grp{margin:0 0 14px;}
.ep-auth-card .ep-form .form-grp:last-of-type{margin-bottom:14px;}

@media (max-width: 575px){
  .ep-auth-card .ep-form .form-grp{margin-bottom:16px;}
}

/* =============================
   QUICK "RAPI" FIXES (Home)
   ============================= */

/* Decorative shapes sometimes overlap / look weird in WP contexts */
.slider__bg-two .shape,
.cta__shape-five{ display:none !important; }

/* Header background + menu color consistency */
#sticky-header,
.tg-header__area.sticky-menu{ background:#fff; }
.tgmenu__navbar-wrap > ul > li > a{ color: var(--ep-heading); }
.tgmenu__navbar-wrap > ul > li.active > a,
.tgmenu__navbar-wrap > ul > li:hover > a{ color: var(--ep-primary); }

/* Services section: ensure readable contrast even if bg image changes */
.services__area-six{
  background-color:#f7faf8;
}
.services__area-six .section__title .title,
.services__area-six .section__title p{
  color: var(--ep-heading);
}

/* =========================================================
   Services cards (match ePuskesmas "insurance" style)
   ========================================================= */
.ep-service-card{
  background: #fff;
  border: 1px solid #E8EBF5;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all .25s ease;
}
.ep-service-card:hover{
  box-shadow: 0 25px 60px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.ep-service-thumb{
  position: relative;
  margin-bottom: 34px;
}
.ep-service-thumb img{
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 18px;
}
@media (max-width: 767.98px){
  .ep-service-thumb img{ height: auto; }
}
.ep-service-icon{
  position: absolute;
  left: 22px;
  bottom: -26px;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: var(--tg-theme-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  border: 6px solid #fff;
  box-shadow: 0 18px 45px rgba(15,157,88,.22);
}
.ep-service-content .title{
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 700;
}
.ep-service-content p{
  margin-bottom: 22px;
}
.ep-service-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 14px;
  background: #F4F6FB;
  color: var(--tg-theme-primary);
  font-weight: 700;
}
.ep-service-btn i{
  transition: transform .2s ease;
}
.ep-service-btn:hover{
  background: var(--tg-theme-primary);
  color: #fff;
}
.ep-service-btn:hover i{
  transform: translateX(3px);
}
.ep-service-card .ep-service-btn{ margin-top: auto; }

/* Service cards: consistent thumbnails */
.services__item-three .services__thumb-two img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius: 20px;
}

/* Blog cards: prevent weird image stretching */
.blog__post-two .blog__post-thumb-two img,
.blog-post-item .thumb img{
  width:100%;
  height:220px;
  object-fit:cover;
}

/* CTA section: keep it clean */
.cta__area-four{ overflow:hidden; }

/* =========================================================
   Blog cards (match ePuskesmas index-8 style)
========================================================= */
.ep-blog-card .blog__post-thumb-four img,
.ep-blog-card img.ep-blog-thumb{
  display:block;
  width:100%;
  height:258px;
  object-fit:cover;
}
@media (max-width: 1199.98px){
  .ep-blog-card .blog__post-thumb-four img,
  .ep-blog-card img.ep-blog-thumb{ height:auto; }
}

.ep-blog-card .blog__post-author img{
  width:44px;
  height:44px;
  border-radius:50%;
  object-fit:cover;
}

.ep-meta-ico{
  width:18px;
  height:18px;
  display:inline-block;
  vertical-align:middle;
  margin-right:8px;
}

/* =========================================================
   Simple hero slider (no external JS lib)
========================================================= */
.ep-slider{ position:relative; }
.ep-slider .ep-slide{ display:none; }
.ep-slider .ep-slide.is-active{ display:flex; }
.ep-slider .slider__pagination span{ cursor:pointer; }

/* Make ePuskesmas's blue hero accents follow primary color */
.slider__bg-two::before{ background: var(--tg-theme-primary) !important; opacity: .6; }
.slider__bg-three::before{ background: var(--tg-theme-primary) !important; opacity: .55; }
.slider__bg-three::after{ background: var(--tg-theme-primary) !important; opacity: .85; }

/* =========================================================
   Blog details (match ePuskesmas blog-details.html)
========================================================= */
.blog__details-thumb{
  overflow:hidden;
  border-radius: 20px;
  margin-bottom: 30px;
}
.blog__details-thumb img,
.blog__details-thumb .wp-post-image{
  width:100%;
  height:auto;
  display:block;
}
.blog__details-content .title{
  font-size: 36px;
  line-height: 1.25;
}
@media (max-width: 767.98px){
  .blog__details-content .title{ font-size: 28px; }
}

/* Sidebar widgets as "cards" like ePuskesmas */
.blog__sidebar-two .sidebar__widget,
.blog__sidebar .sidebar__widget{
  background: #fff;
  border: 1px solid #E8EBF5;
  border-radius: 15px;
  padding: 25px;
}
.blog__search{ position: relative; }
.blog__search button{ position: absolute; }

/* Recent posts thumbnail size */
.rc-post-item .thumb img{
  width: 80px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}

/* Make WP content images nicely rounded inside blog details */
.blog__details-wrap .entry-content img{
  border-radius: 16px;
}

/* ------------------------------------------------------------
   Buttons - ensure ePuskesmas buttons render correctly in WP (text visible, centered)
------------------------------------------------------------ */
.tg-btn,
.tg-btn-five{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 26px;
  border-radius:14px;
  font-weight:700;
  line-height:1.1;
  background: var(--tg-theme-primary);
  color:#fff !important;
  border: none;
}
.tg-btn i,
.tg-btn-five i{ font-size:14px; }
.tg-btn:hover,
.tg-btn-five:hover{
  color:#fff !important;
  filter: brightness(.96);
}

/* ------------------------------------------------------------
   About page (ePuskesmas-like layout)
------------------------------------------------------------ */

.ep-about-page.about__area-three::before{
  background: var(--tg-theme-primary);
  opacity: 0.08;
}

/* left collage */
.ep-about-page .about__img-wrap-four img{
  border-radius: 24px;
  display: block;
  max-width: 100%;
  height: auto;
}
.ep-about-page .about__img-wrap-four img:nth-child(1){
  width: 100%;
  position: relative;
  z-index: 1;
}

/* gambar 2: kecilkan supaya jadi overlay (tidak menutupi gambar utama) */
.ep-about-page .about__img-wrap-four img:nth-child(2){
  border-radius: 22px;
  width: 72%;
  max-width: 560px;
  height: auto;
  object-fit: cover;
  z-index: 2;
}

/* Mobile/tablet: jangan overlap, susun vertikal */
@media (max-width: 767.98px){
  .ep-about-page .about__img-wrap-four{
    padding-bottom: 0 !important;
    padding-right: 0 !important;
    text-align: center;
  }
  .ep-about-page .about__img-wrap-four img:nth-child(2){
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    border: 0 !important;
    width: 100% !important;
    max-width: none !important;
    margin-top: 16px !important;
    display: block !important;
  }
}


/* Fix: kolom hijau (accent bar) harus tampil di depan overlay image */
.ep-about-page .about__img-wrap-four::before{
  z-index: 5 !important;
}
/* badges positions to match reference */
.ep-about-page .experience__wrap-five{
  top: 52%;
  transform: translateY(-50%);
  right: -10px;
}
.ep-about-page .profit__wrap{
  bottom: 32%;
  left: -35px;
}
.ep-about-page .profit__wrap .icon{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,157,88,0.14);
  color: var(--tg-theme-primary);
  font-size: 22px;
}

/*
  Fix: About Image 2 tertutup/ketiban gambar di atasnya setelah ganti gambar.
  Layout default theme menaruh gambar ke-2 sebagai elemen absolute (overlap).
  Untuk layar tablet/mobile kita buat jadi STACK (berurutan) agar rapi dan aman
  untuk berbagai rasio gambar.
*/
@media (max-width: 991.98px) {
  .ep-about-page .about__img-wrap-four {
    padding-bottom: 0;
    padding-right: 0;
    margin-right: 0;
  }
  .ep-about-page .about__img-wrap-four::before{
    display:none;
  }
  .ep-about-page .about__img-wrap-four img{
    width: 100%;
    height: auto;
    display: block;
  }
  .ep-about-page .about__img-wrap-four img:nth-child(2){
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    margin-top: 18px !important;
    display: block !important;
  }
}

@media (max-width: 767.98px) {
  /* Override rule main.css yang menyembunyikan gambar ke-2 di mobile */
  .ep-about-page .about__img-wrap-four img:nth-child(2){
    display: block !important;
  }
}

/* right content */
.ep-about-page .ep-about-desc p{margin-bottom: 10px;}
.ep-about-page .about__inner-wrap-two{
  border-color: rgba(15,157,88,0.16);
}
.ep-about-page .about__list-box-item{
  background: #F4F6FB;
}

.ep-about-page .about__content-bottom{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  align-items:center;
  justify-content: space-between;
  margin-top: 22px;
}
.ep-about-page .author__wrap{
  gap: 14px;
}
.ep-about-page .author__wrap .thumb img{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
}
.ep-about-page .author__wrap .content img{
  max-width: 140px;
  height: auto;
}

@media (max-width: 991px){
  .ep-about-page .about__content-bottom{justify-content:flex-start;}
  .ep-about-page .experience__wrap-five{right: 0;}
  .ep-about-page .profit__wrap{left: 0;}
}

.ep-about-team .ep-section-desc{
  max-width:520px;
  margin-left:auto;
}

/* About CTA: keep phone number on one line (avoid awkward wrapping) */
.cta__area-two .cta__contact .content a{
  white-space: nowrap;
}

/* About Team cards: harden ePuskesmas card style in WP context */
.ep-about-team .team__thumb-three{
  width: 180px;
  height: 180px;
}
.ep-about-team .team__thumb-three img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 !important;
}
.ep-about-team .team__social-three{
  margin-top: 16px;
}
.ep-about-team .team__social-three .list-wrap{
  gap: 18px;
}

/* Empty states (e.g., no team/service yet) */
.ep-empty-state{
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  background: #F4F6FB;
  border: 1px dashed rgba(15,157,88,0.38);
  color: var(--tg-heading-color);
  font-weight: 600;
  text-align: center;
}

/* Testimonial avatars (avoid broken look) */
.testimonial__author-wrap img{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

/* Fix: ikon share (team__social) sempat “melayang” karena parent card tidak punya positioning */
.team__item-three{ position: relative; }
.team__social{ z-index: 3; }


/* Single Service (Service Details) – green skin for sidebar widgets */
.sidebar__contact{ background: linear-gradient(135deg, rgba(15,157,88,1) 0%, rgba(10,110,62,1) 100%); }
.sidebar__contact .tg-btn{ width:100%; justify-content:center; }
.sidebar__cat-list .list-wrap li.active a{
  background: var(--tg-theme-primary);
  border-color: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}
.sidebar__cat-list .list-wrap li.active a span{ color: var(--tg-theme-primary); }


/* === Fix: gambar memanjang di mobile (Single Service/Content images) === */
.services__details-thumb,
.services__details-thumb img,
.services__details-content-top img,
.services__details-content img,
.entry-content img,
.ep-content img,
.wp-block-image img,
.post-thumbnail img,
.single-layanan .wp-post-image,
.single-layanan img.wp-post-image,
.single-service .wp-post-image,
.single-service img.wp-post-image{
  width: 100%;
  max-width: 100%;
  height: auto !important;
  display: block;
}

@media (max-width: 767.98px){
  /* pastikan tidak ada height paksa dari template */
  .services__details-thumb,
  .services__details-thumb img{
    height: auto !important;
  }
}



/* === Contact Page layout (match ePuskesmas contact, keep green skin) === */
.ep-contact-page{ padding: 110px 0 0; }
@media (max-width: 991.98px){ .ep-contact-page{ padding-top: 70px; } }

.ep-contact-page .contact-map{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #DEE0EE;
  box-shadow: 0 22px 50px rgba(0,0,0,.07);
}

/* Contact intro text */
.ep-contact-page .ep-contact-intro .entry-content p{
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 0;
}

/* Make the left cards look like ePuskesmas location cards (subtle circles) */
.ep-contact-page .contact__info-item.ep-contact-card{
  position: relative;
}
.ep-contact-page .contact__info-item.ep-contact-card:before,
.ep-contact-page .contact__info-item.ep-contact-card:after{
  content:'';
  position:absolute;
  right:-60px;
  top:50%;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(244,246,251,.9);
  z-index:-1;
}
.ep-contact-page .contact__info-item.ep-contact-card:after{
  right:-110px;
  width: 260px;
  height: 260px;
  opacity: .55;
}

/* Form title spacing */
.ep-contact-page .contact__form-wrap .title{
  margin-bottom: 18px;
}

/* Add breathing room before CTA section like ePuskesmas */
.ep-contact-page .cta__area-four{
  margin-top: 90px;
}
@media (max-width: 991.98px){
  .ep-contact-page .cta__area-four{ margin-top: 60px; }
}


/* Footer logo size control */
.footer__logo img{
  max-width: 180px;
  height: auto;
}
/* Header logo size control */
.header__logo img, .logo img{
  max-width: 190px;
  height: auto;
}


/* Force default primary buttons to theme green */
.epuskesmas .btn-primary,
.epuskesmas a.btn-primary,
.epuskesmas button.btn-primary{
  background: var(--ep-primary) !important;
  border-color: var(--ep-primary) !important;
  color: #fff !important;
}
.epuskesmas .btn-primary:hover,
.epuskesmas .btn-primary:focus{
  background: var(--ep-secondary) !important;
  border-color: var(--ep-secondary) !important;
  color: #fff !important;
}

/* Konsultasi Dok (hero) */
.ep-konsultasi-page{ padding: 0; margin: 0; }
.ep-konsultasi-page > p{ margin: 0; }
.ep-consult-hero{
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  min-height: 520px;
  display: flex;
  align-items: center;
  border-radius: 0;
  overflow: hidden;
}
@media (max-width: 991px){
  .ep-consult-hero{ padding: 90px 0; min-height: 480px; }
}
@media (max-width: 575px){
  .ep-consult-hero{ padding: 72px 0; min-height: 420px; }
}
.ep-consult-overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,1);
  pointer-events:none;
}
.ep-consult-wrap{ position: relative; z-index: 2; }
.ep-consult-title{
  margin:0 0 12px;
  color:#fff !important;
  font-weight: 900;
  letter-spacing: -0.6px;
  line-height: 1.06;
  font-size: clamp(34px, 4vw, 56px);
  text-shadow: 0 14px 40px rgba(0,0,0,.35);
}
.ep-consult-desc{
  color: rgba(255,255,255,.88) !important;
  font-size: 16px;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 0 22px;
}
.ep-btn.ep-btn-wa{
  display: inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 36px;
  border-radius: 14px;
  font-weight: 800;
  background: var(--ep-primary) !important;
  border: 1px solid var(--ep-primary) !important;
  color: #fff !important;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.ep-btn.ep-btn-wa:hover{
  background: var(--ep-secondary) !important;
  border-color: var(--ep-secondary) !important;
  color: #fff !important;
}

/* Ensure Aduan tabs stay green even if other CSS overrides */
.epao .epao-tab.is-active{
  background: var(--ep-primary) !important;
  border-color: var(--ep-primary) !important;
  color: #fff !important;
}

/* =============================
 * ABOUT (Collage fixes)
 * ============================= */

/*
  PERBAIKAN UTAMA (HOME + ABOUT):
  - Gambar ke-2 sering ikut ukuran asli (besar) sehingga menutupi gambar utama.
  - Kita paksa jadi overlay kecil (mirip referensi ePuskesmas).
  - Bar hijau/shape harus terlihat (tidak ketutup).
*/
.about__img-wrap-four{
  position: relative;
  padding-right: 70px !important;
  padding-bottom: 120px !important;
  margin-right: 0 !important;
  z-index: 1;
}
.about__img-wrap-four img{
  max-width: 100% !important;
  height: auto !important;
  display: block;
}
.about__img-wrap-four img:nth-child(1){
  position: relative;
  z-index: 2;
}
.about__img-wrap-four img:nth-child(2){
  position: absolute;
  z-index: 3;
  right: 0 !important;
  bottom: 0 !important;
  width: 72% !important;
  max-width: 520px !important;
  border-radius: 14px;
  box-shadow: 0 16px 50px rgba(0,0,0,.12);
}
/* Bar/kolom hijau wajib terlihat (di depan overlay) */
.about__img-wrap-four::before{
  z-index: 10 !important;
  pointer-events: none;
}

/* Tablet & mobile: amanin jadi STACK biar gak saling ketiban */
@media (max-width: 991.98px){
  .about__img-wrap-four{
    padding-right: 0 !important;
    padding-bottom: 0 !important;
    text-align: left;
  }
  .about__img-wrap-four::before{
    display:none !important;
  }
  .about__img-wrap-four img:nth-child(2){
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 18px !important;
    right: auto !important;
    bottom: auto !important;
    display: block !important;
  }
}

/* About page – ePuskesmas style collage */
.ep-about-page .ep-about-collage{
  position: relative;
  padding-right: 70px;
  padding-bottom: 120px;
}
.ep-about-page .ep-about-collage .ep-about-img-1{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}
.ep-about-page .ep-about-collage .ep-about-img-2{
  position: absolute;
  right: 0;
  bottom: 0;
  width: 76%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 8px solid #fff;
  box-shadow: 0 16px 50px rgba(0,0,0,.12);
}

/* Move the experience badge to center-right (like ePuskesmas screenshot) */
.ep-about-page .ep-about-collage .experience__wrap-five{
  top: 52%;
  right: 10px;
  transform: translateY(-50%);
}

/* Keep profit card visible and not clipped */
.ep-about-page .ep-about-collage .profit__wrap{
  bottom: 82px;
  left: -30px;
}

@media (max-width: 991.98px){
  .ep-about-page .ep-about-collage{
    padding-right: 0;
    padding-bottom: 0;
    margin-bottom: 30px;
  }
  .ep-about-page .ep-about-collage .ep-about-img-2{
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
    border-width: 0;
    box-shadow: none;
  }
  .ep-about-page .ep-about-collage .experience__wrap-five,
  .ep-about-page .ep-about-collage .profit__wrap{
    position: relative;
    inset: auto;
    transform: none;
    margin-top: 14px;
  }
}

/* =============================
   FULL BEEKO HOME (ePuskesmas)
   Version 1.0.12
   ============================= */
.ep-home-full{background:#fff;overflow:hidden}
.ep-home-full .section__title .sub-title{color:var(--ep-primary)}
.ep-home-full .tg-btn-seven{background:var(--ep-primary);border-color:var(--ep-primary)}
.ep-home-full .tg-btn-seven:hover{background:var(--ep-secondary);border-color:var(--ep-secondary)}

/* Hero: preserve the original Beeko insurance layout */
.ep-home-full .slider__area-two{position:relative;overflow:hidden}
.ep-home-full .slider-active-two{position:relative;width:100%;min-height:680px}
.ep-home-full .ep-slide{position:absolute;inset:0;display:flex;align-items:center;width:100%;min-height:680px;padding:120px 0;background-size:cover;background-position:center;opacity:0;visibility:hidden;pointer-events:none;transition:opacity .7s ease,visibility .7s ease}
.ep-home-full .ep-slide.is-active{position:relative;opacity:1;visibility:visible;pointer-events:auto;z-index:2}
.ep-home-full .slider__bg-three{background-size:cover;background-position:center}
.ep-home-full .slider__content-two{position:relative;z-index:5;padding:0}
.ep-home-full .slider__content-two .sub-title{color:var(--ep-primary)}
.ep-home-full .slider__content-two .title{font-size:clamp(46px,5vw,72px);line-height:1.03;letter-spacing:-2.4px;max-width:650px}
.ep-home-full .slider__content-two p{max-width:590px;font-size:17px;line-height:1.7}
.ep-home-full .slider__bg-two .shape{display:block!important}
.ep-home-full .slider__pagination{position:absolute;z-index:10;left:max(calc((100% - 1290px)/2),24px);bottom:42px;display:flex;align-items:center;gap:8px;transform:none}
.ep-home-full .slider__pagination .swiper-pagination-bullet{display:block;width:9px;height:9px;border-radius:999px;background:rgba(1,2,46,.26);border:0;opacity:1;cursor:pointer;transition:.25s}
.ep-home-full .slider__pagination .swiper-pagination-bullet-active{width:30px;background:var(--ep-primary)}

/* About */
.ep-home-about .about__img-six>img{display:block;width:100%;min-height:520px;object-fit:cover;border-radius:24px}
.ep-home-about .about__inner-box .icon{color:var(--ep-primary)}
.ep-home-rating{max-width:320px}
.ep-home-rating img{width:104px;flex:0 0 auto}
.ep-home-rating p{margin:0;font-size:14px;line-height:1.55}

/* Partner/brand strip – same footprint as Beeko */
.ep-home-brand{padding:5px 0 70px;background:#fff}
.ep-home-brand .brand-item-wrap-two{border-top:1px solid #e8ebee;border-bottom:1px solid #e8ebee;padding:30px 0}
.ep-brand-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:28px;align-items:center}
.ep-home-brand .brand-item{display:flex;align-items:center;justify-content:center;min-height:48px;opacity:.68;filter:grayscale(1);transition:.25s}
.ep-home-brand .brand-item:hover{opacity:1;filter:grayscale(0)}
.ep-home-brand .brand-item img{display:block;max-width:135px;max-height:42px;width:auto;height:auto;object-fit:contain}

/* Services */
.ep-home-services{background-color:#f7f8fb;background-size:cover}
.ep-home-services .services__item-six{height:100%;display:flex;flex-direction:column}
.ep-home-service-card .services__thumb-six{overflow:hidden}
.ep-home-service-card .services__thumb-six img{display:block;width:100%;height:220px;object-fit:cover}
.ep-home-service-card .services__content-six{display:flex;flex-direction:column;flex:1}
.ep-home-service-card .services__content-six p{min-height:78px}
.ep-home-service-card .services__content-six .tg-btn{margin-top:auto}
.ep-home-services .services__icon-six{background:var(--ep-primary)}
.ep-home-services .services__bottom-content a{color:var(--ep-primary)}

/* Why choose us */
.ep-home-choose{position:relative;background-color:#020638;background-size:cover}
.ep-home-choose:before{background:rgba(1,2,46,.84)}
.ep-home-choose .choose__img-wrap-three>img:first-child{width:78%;border-radius:24px;object-fit:cover}
.ep-home-choose .choose__img-wrap-three>img:nth-child(2){width:49%;border-radius:18px;object-fit:cover}
.ep-home-choose .choose__content-three>p{color:rgba(255,255,255,.78)}
.ep-choose-list{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px 20px;margin-bottom:26px!important}
.ep-choose-list li{display:flex!important;align-items:center;gap:10px;color:#fff!important;margin:0!important}
.ep-choose-list .icon{display:inline-flex!important;align-items:center;justify-content:center;flex:0 0 24px;width:24px;height:24px;border-radius:50%;background:var(--ep-primary);color:#fff}
.ep-satisfaction-badge .content h3,.ep-satisfaction-badge .content p{color:#fff}
.ep-home-choose .white-btn-two{background:#fff!important;border-color:#fff!important;color:var(--ep-primary)!important}
.ep-home-choose .white-btn-two:hover{background:var(--ep-primary)!important;border-color:var(--ep-primary)!important;color:#fff!important}

/* CTA */
.ep-home-cta{position:relative;background:var(--ep-primary)!important;padding:46px 0;overflow:hidden}
.ep-home-cta .title{margin:0}
.ep-home-cta .cta__shape-five{display:block!important}
.ep-home-cta .white-btn-two{background:#fff!important;border-color:#fff!important;color:var(--ep-primary)!important}
.ep-home-cta .white-btn-two:hover{background:#020638!important;border-color:#020638!important;color:#fff!important}

/* Work process */
.ep-home-work .work__item-wrap-two{position:relative}
.ep-work-line{position:absolute;z-index:0;left:14%;right:14%;top:55px;height:2px;border-top:2px dashed rgba(15,157,88,.28)}
.ep-home-work .work__item-two{position:relative;z-index:1;padding:0 24px}
.ep-home-work .work__icon-two{margin-left:auto;margin-right:auto;background:#fff;color:var(--ep-primary);border:1px solid rgba(15,157,88,.18);box-shadow:0 16px 40px rgba(15,157,88,.12)}
.ep-home-work .work__icon-two:before{background:rgba(15,157,88,.09)}
.ep-home-work .work__step{color:var(--ep-primary)}

/* Video */
.ep-home-video{position:relative;overflow:hidden}
.ep-home-video .video__bg-four{min-height:650px;background-size:cover;background-position:center}
.ep-home-video .play__btn-three{color:var(--ep-primary)}
.ep-home-video .play__btn-three:before,.ep-home-video .play__btn-three:after{border-color:#fff}

/* Service access/estimate */
.ep-home-estimate{overflow:hidden}
.ep-home-estimate .estimate__img img{max-height:620px;object-fit:contain}
.ep-home-estimate .estimate__contact .icon{background:var(--ep-primary)}
.ep-home-estimate .estimate__contact a{color:var(--ep-primary)}
.ep-home-tabs{position:relative;z-index:5}
.ep-home-tabs .estimate__tab-inner{padding:30px}
.ep-home-tabs .nav-tabs{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:7px;border:0;margin-bottom:24px}
.ep-home-tabs .nav-item{margin:0}
.ep-home-tabs .nav-link{width:100%;border:1px solid #e5e8ee!important;border-radius:10px!important;padding:12px 8px!important;background:#f7f8fb!important;color:#1f2937!important;font-weight:700;font-size:13px}
.ep-home-tabs .nav-link.active{background:var(--ep-primary)!important;border-color:var(--ep-primary)!important;color:#fff!important}
.ep-home-tabs .tab-pane{display:none}
.ep-home-tabs .tab-pane.show.active{display:block}
.ep-service-tab-panel{min-height:310px;display:flex;flex-direction:column;align-items:flex-start;justify-content:center;padding:24px 8px 10px}
.ep-service-tab-icon{display:inline-flex;align-items:center;justify-content:center;width:66px;height:66px;border-radius:18px;background:rgba(15,157,88,.11);color:var(--ep-primary);font-size:27px;margin-bottom:20px}
.ep-service-tab-panel h3{font-size:26px;margin-bottom:12px}
.ep-service-tab-panel p{margin-bottom:26px;max-width:410px}

/* Team */
.ep-home-team{background:#020638!important}
.ep-home-team .team__item-six{height:100%}
.ep-home-team .team__thumb-six{background:#eef4f1;overflow:hidden}
.ep-home-team .team__thumb-six img{display:block;width:100%;height:350px;object-fit:cover;object-position:top center}
.ep-home-team .team__content-six{background:var(--ep-primary)}
.ep-home-team .team__bottom-content p{color:rgba(255,255,255,.75)}
.ep-home-team .team__bottom-content a{color:#fff}
.ep-home-team .team__social .social-toggle-icon{color:var(--ep-primary)}

/* Testimonials */
.ep-home-testimonial{position:relative}
.ep-home-testimonial .testimonial__nav-six button{display:inline-flex;align-items:center;justify-content:center}
.ep-testimonial-slider{overflow:hidden;width:100%}
.ep-testimonial-track{display:flex;gap:24px;transition:transform .45s ease;will-change:transform}
.ep-testimonial-slide{flex:0 0 calc((100% - 24px)/2);min-width:0}
.ep-home-testimonial .testimonial__item-six{height:100%;min-height:330px}
.ep-home-testimonial .testimonial__author-two .thumb img{width:58px;height:58px;border-radius:50%;object-fit:cover}
.ep-home-testimonial .rating i{color:#f7b731}

/* Marquee: original Beeko structure with stable fallback */
.ep-home-marquee{position:relative;overflow:hidden;background:var(--ep-primary)!important;padding:14px 0}
.ep-home-marquee .slider__marquee{overflow:hidden}
.ep-home-marquee .ep-marquee-track{display:flex!important;align-items:center;width:max-content;animation:epMarquee 34s linear infinite;transform:translate3d(0,0,0)}
.ep-home-marquee .marquee__item{display:block;flex:0 0 auto;margin:0!important;padding:0 25px!important;white-space:nowrap}
.ep-home-marquee .marquee__item a{display:flex;align-items:center;gap:11px;color:#fff!important;font-size:17px;font-weight:800;text-transform:uppercase;line-height:1.2}
.ep-home-marquee .marquee__item img{width:15px;height:15px;filter:brightness(0) invert(1)}
@keyframes epMarquee{from{transform:translate3d(0,0,0)}to{transform:translate3d(-50%,0,0)}}

/* Blog */
.ep-home-blog{background:#f7f8fb}
.ep-home-blog .blog__post-item-four{height:100%}
.ep-home-blog .blog__post-thumb-four img{width:100%;height:250px;object-fit:cover}
.ep-home-blog .blog__post-content-four{min-height:225px}
.ep-home-blog .blog__post-tag-two{background:var(--ep-primary)}

/* FAQ */
.ep-home-faq{position:relative;background:#fff}
.ep-faq-accordion .accordion-item{border:0;border-bottom:1px solid #e8ece9;background:transparent}
.ep-faq-accordion .accordion-button{position:relative;width:100%;padding:21px 50px 21px 0;text-align:left;border:0;box-shadow:none!important;background:transparent!important;color:var(--ep-heading)!important;font-size:17px;font-weight:700}
.ep-faq-accordion .accordion-button:after{content:'+';position:absolute;right:0;top:50%;display:flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:50%;transform:translateY(-50%);background:rgba(15,157,88,.1);color:var(--ep-primary);font-size:20px;line-height:1}
.ep-faq-accordion .accordion-item.is-open .accordion-button:after{content:'−';background:var(--ep-primary);color:#fff}
.ep-faq-accordion .accordion-collapse{display:none}
.ep-faq-accordion .accordion-collapse.show{display:block}
.ep-faq-accordion .accordion-body{padding:0 50px 20px 0}
.ep-faq-accordion .accordion-body p{margin:0}

/* Footer matching the Beeko index-6 layout */
.ep-footer-beeko{background:#02032f;color:rgba(255,255,255,.75)}
.ep-footer-beeko .footer__widget-title-two,.ep-footer-beeko .footer__widget-link-two a,.ep-footer-beeko .footer__contact a,.ep-footer-beeko .footer__contact li{color:#fff}
.ep-footer-beeko .footer__widget-link-two a:hover,.ep-footer-beeko .footer__contact a:hover{color:var(--ep-primary)}
.ep-footer-beeko .footer__contact i{color:var(--ep-primary)}
.ep-footer-beeko .footer__bottom-logo-two img{max-width:190px;max-height:58px;object-fit:contain}
.ep-footer-beeko .footer__social-two ul{justify-content:flex-end}
.ep-footer-beeko .footer__social-two a{background:rgba(255,255,255,.1);color:#fff}
.ep-footer-beeko .footer__social-two a:hover{background:var(--ep-primary)}
.ep-footer-beeko .copyright__content-two p{color:rgba(255,255,255,.75)}
.ep-footer-beeko .footer__hours-two p{color:rgba(255,255,255,.75)}

@media(max-width:1199.98px){
  .ep-home-full .slider-active-two,.ep-home-full .ep-slide{min-height:620px}
  .ep-brand-grid{grid-template-columns:repeat(3,minmax(0,1fr));row-gap:30px}
  .ep-home-service-card .services__content-six p{min-height:auto}
}
@media(max-width:991.98px){
  .ep-home-full .slider-active-two,.ep-home-full .ep-slide{min-height:570px}
  .ep-home-full .ep-slide{padding:100px 0}
  .ep-home-full .slider__bg-three{opacity:.42}
  .ep-home-full .slider__pagination{left:24px}
  .ep-home-about .about__img-six{margin-bottom:42px}
  .ep-home-about .about__img-six>img{min-height:430px}
  .ep-choose-list{grid-template-columns:1fr}
  .ep-work-line{display:none}
  .ep-home-video .video__bg-four{min-height:500px}
  .ep-home-estimate .estimate__img{opacity:.13}
  .ep-home-cta .cta__btn-three{text-align:left!important;margin-top:24px}
  .ep-testimonial-slider{margin-top:35px}
  .ep-footer-beeko .footer__social-two ul{justify-content:center}
  .ep-footer-beeko .footer__bottom-logo-two,.ep-footer-beeko .copyright__content-two{text-align:center;margin-bottom:20px}
}
@media(max-width:767.98px){
  .section-py-130{padding-top:80px;padding-bottom:80px}
  .ep-home-full .slider-active-two,.ep-home-full .ep-slide{min-height:540px}
  .ep-home-full .slider__content-two .title{font-size:42px;letter-spacing:-1.2px}
  .ep-home-about .about__img-six>img{min-height:360px}
  .ep-brand-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .ep-home-video .video__bg-four{min-height:420px}
  .ep-home-tabs .nav-tabs{grid-template-columns:repeat(2,minmax(0,1fr))}
  .ep-testimonial-slide{flex-basis:100%}
  .ep-home-team .team__thumb-six img{height:410px}
}
@media(max-width:575.98px){
  .ep-home-full .slider-active-two,.ep-home-full .ep-slide{min-height:520px}
  .ep-home-full .ep-slide{padding:84px 0}
  .ep-home-full .slider__content-two .title{font-size:36px}
  .ep-home-full .slider__content-two p{font-size:15px}
  .ep-home-about .about__img-six>img{min-height:300px}
  .ep-home-service-card .services__thumb-six img{height:auto}
  .ep-home-choose .choose__img-wrap-three>img:first-child{width:100%}
  .ep-home-choose .choose__img-wrap-three>img:nth-child(2){width:64%}
  .ep-home-video .video__bg-four{min-height:340px}
  .ep-home-tabs .estimate__tab-inner{padding:20px}
  .ep-home-tabs .nav-link{font-size:12px;padding:10px 5px!important}
  .ep-service-tab-panel{min-height:300px}
  .ep-home-team .team__thumb-six img{height:auto;min-height:320px}
  .ep-home-marquee .marquee__item{padding:0 18px!important}
  .ep-home-marquee .marquee__item a{font-size:15px}
}
@media(prefers-reduced-motion:reduce){.ep-home-marquee .ep-marquee-track{animation-duration:55s!important;-webkit-animation-duration:55s!important}.ep-testimonial-track,.ep-home-full .ep-slide{transition:none}}



/* v1.0.13 — FAQ icon and homepage CTA decorative image fixes */
.ep-home-faq .ep-faq-accordion .accordion-button::after{
  content:none!important;
  display:none!important;
  width:0!important;
  height:0!important;
  background:none!important;
  background-image:none!important;
  transform:none!important;
}
.ep-home-faq .ep-faq-accordion .accordion-button::before{
  content:'+'!important;
  position:absolute!important;
  right:0!important;
  top:50%!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  width:30px!important;
  height:30px!important;
  margin:0!important;
  padding:0!important;
  border:0!important;
  border-radius:50%!important;
  background:rgba(15,157,88,.10)!important;
  color:var(--ep-primary)!important;
  font-family:Arial,Helvetica,sans-serif!important;
  font-size:22px!important;
  font-style:normal!important;
  font-weight:400!important;
  line-height:30px!important;
  text-align:center!important;
  transform:translateY(-50%)!important;
  box-sizing:border-box!important;
}
.ep-home-faq .ep-faq-accordion .accordion-item.is-open .accordion-button::before,
.ep-home-faq .ep-faq-accordion .accordion-button:not(.collapsed)::before{
  content:'−'!important;
  background:var(--ep-primary)!important;
  color:#fff!important;
  font-size:20px!important;
}
.ep-home-faq .ep-faq-accordion .accordion-button{
  min-height:72px;
  overflow:visible!important;
}

.ep-home-cta{
  isolation:isolate;
}
.ep-home-cta>.container{
  position:relative;
  z-index:2;
}
.ep-home-cta .cta__shape-five{
  position:absolute;
  inset:0;
  z-index:1;
  overflow:hidden;
  pointer-events:none;
}
.ep-home-cta .cta__shape-five img{
  position:absolute!important;
  right:35%!important;
  top:50%!important;
  bottom:auto!important;
  width:138px!important;
  height:auto!important;
  max-width:138px!important;
  opacity:.18!important;
  filter:brightness(0) invert(1)!important;
  transform:translateY(-50%)!important;
  object-fit:contain!important;
  z-index:0!important;
}
@media(max-width:1199.98px){
  .ep-home-cta .cta__shape-five img{right:28%!important;width:124px!important;max-width:124px!important}
}
@media(max-width:991.98px){
  .ep-home-cta .cta__shape-five img{right:7%!important;width:112px!important;max-width:112px!important;opacity:.14!important}
}
@media(max-width:767.98px){
  .ep-home-cta .cta__shape-five{display:none!important}
  .ep-home-faq .ep-faq-accordion .accordion-button{padding-right:44px!important;font-size:16px}
}

/* v1.0.16 - Tim medis: hilangkan ruang kosong di atas foto dan samakan ukuran semua foto */
.ep-home-team .team__thumb-six{
  padding:0!important;
  overflow:hidden!important;
  aspect-ratio:288 / 340;
  background:#f3f6f5;
}
.ep-home-team .team__thumb-six>a{
  display:block;
  width:100%;
  height:100%;
}
.ep-home-team .team__thumb-six img{
  display:block!important;
  width:100%!important;
  height:100%!important;
  max-width:none!important;
  margin:0!important;
  object-fit:cover!important;
  object-position:center top!important;
}

/* =========================================================
   Mobile navigation – struktur dan ukuran asli Beeko (v1.0.18)
   ========================================================= */
.tgmobile__menu,
.tgmobile__menu-backdrop{
  display:none;
}

@media (max-width:991.98px){
  .tgmobile__menu,
  .tgmobile__menu-backdrop{
    display:block;
  }

  /* Tombol header dibuat sebagai button asli agar area sentuh stabil di iOS/Android. */
  .tg-header__area .mobile-nav-toggler{
    position:relative!important;
    z-index:50!important;
    display:flex!important;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
    width:46px;
    height:46px;
    margin-left:20px!important;
    padding:0!important;
    border:0!important;
    border-radius:0!important;
    background:transparent!important;
    color:var(--ep-primary)!important;
    font-size:30px;
    line-height:1;
    cursor:pointer;
    pointer-events:auto!important;
    touch-action:manipulation;
    -webkit-tap-highlight-color:transparent;
  }
  .tg-header__area .mobile-nav-toggler i{
    display:block;
    line-height:1;
    pointer-events:none;
  }

  .tgmobile__menu{
    position:fixed;
    right:0;
    top:0;
    width:300px;
    max-width:100%;
    height:100%;
    padding-right:30px;
    z-index:10001;
    transform:translateX(101%);
    transition:transform .3s cubic-bezier(.785,.135,.15,.86);
    pointer-events:none;
  }
  body.mobile-menu-visible .tgmobile__menu{
    transform:translateX(0);
    pointer-events:auto;
  }

  .tgmobile__menu-box{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    max-height:100%;
    overflow-y:auto;
    overflow-x:hidden;
    padding:0;
    background:#fff;
    z-index:5;
    box-shadow:-9px 0 14px rgba(0,0,0,.06);
    -webkit-overflow-scrolling:touch;
  }

  .tgmobile__menu .nav-logo{
    position:relative;
    min-height:98px;
    padding:30px 56px 30px 25px;
    display:flex;
    align-items:center;
    text-align:left;
  }
  .tgmobile__menu .nav-logo img{
    display:block;
    width:auto;
    max-width:190px;
    max-height:52px;
    object-fit:contain;
  }

  .tgmobile__menu .close-btn{
    position:absolute;
    right:15px;
    top:28px;
    z-index:10;
    width:35px;
    height:35px;
    padding:8px;
    border:0;
    background:transparent;
    color:var(--ep-primary);
    font-size:14px;
    line-height:19px;
    text-align:center;
    cursor:pointer;
    touch-action:manipulation;
    -webkit-tap-highlight-color:transparent;
  }

  .tgmobile__search{
    padding:0 20px 25px 25px;
  }
  .tgmobile__search form{position:relative}
  .tgmobile__search input{
    display:block;
    width:100%;
    height:45px;
    padding:10px 45px 10px 20px;
    border:0;
    border-radius:10px;
    background:#f7f8fc;
    color:var(--ep-heading);
    font-size:15px;
  }
  .tgmobile__search button{
    position:absolute;
    right:20px;
    top:50%;
    z-index:2;
    padding:0;
    border:0;
    background:transparent;
    color:var(--ep-secondary);
    line-height:1;
    transform:translateY(-50%);
  }

  .tgmobile__menu .navigation,
  .tgmobile__menu .navigation ul{
    position:relative;
    display:block;
    width:100%;
    float:none;
    margin:0;
    padding:0;
    list-style:none!important;
  }
  .tgmobile__menu .navigation li{
    position:relative;
    display:block;
    margin:0;
    border-top:1px solid rgba(0,0,0,.10);
  }
  .tgmobile__menu .navigation:last-child{
    border-bottom:1px solid rgba(0,0,0,.10);
  }
  .tgmobile__menu .navigation li > a{
    position:relative;
    display:block;
    padding:10px 55px 10px 20px;
    border:0;
    color:var(--ep-heading);
    font-size:15px;
    font-weight:600;
    line-height:26px;
    text-transform:uppercase;
    transition:color .35s ease;
  }
  .tgmobile__menu .navigation li > a::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:2px;
    height:0;
    background:var(--ep-primary);
    transition:height .35s ease;
    pointer-events:none;
  }
  .tgmobile__menu .navigation > li.active > a{
    color:var(--ep-primary);
  }
  .tgmobile__menu .navigation > li.active > a::before{
    height:100%;
  }

  .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn{
    position:absolute;
    right:20px;
    top:6px;
    z-index:5;
    display:flex;
    align-items:center;
    justify-content:center;
    width:32px;
    height:32px;
    padding:0;
    border:0;
    border-radius:5px;
    background:#f7f8fc;
    color:var(--ep-secondary);
    cursor:pointer;
    touch-action:manipulation;
    -webkit-tap-highlight-color:transparent;
    transition:background-color .35s ease;
  }
  .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn::after{
    content:'';
    position:absolute;
    right:-20px;
    top:-6px;
    width:300px;
    height:46px;
  }
  .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line{
    position:absolute;
    left:50%;
    top:50%;
    width:12px;
    height:2px;
    border-radius:10px;
    background:var(--ep-secondary);
    transform:translate(-50%,-50%);
    transition:background-color .35s ease;
    pointer-events:none;
  }
  .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line::after{
    content:'';
    position:absolute;
    left:50%;
    top:50%;
    width:2px;
    height:12px;
    border-radius:10px;
    background:var(--ep-secondary);
    transform:translate(-50%,-50%);
    pointer-events:none;
  }
  .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open{
    background:var(--ep-primary);
  }
  .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line{
    background:#fff;
  }
  .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line::after{
    display:none;
  }

  .tgmobile__menu .navigation li > ul{
    display:none;
    margin:0;
    padding:0;
    background:#fbfcfd;
  }
  .tgmobile__menu .navigation li ul li > a{
    margin-left:20px;
    padding:10px 55px 10px 20px;
    font-size:15px;
    font-weight:600;
    text-transform:capitalize;
  }

  .tgmobile__menu .social-links ul{
    display:flex;
    position:relative;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    margin:0;
    padding:30px 20px 20px;
    list-style:none;
  }
  .tgmobile__menu .social-links ul:empty{display:none}
  .tgmobile__menu .social-links ul li{
    position:relative;
    display:inline-block;
    margin:0 6px 10px;
  }
  .tgmobile__menu .social-links ul li a{
    display:flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    border:1px solid #efefef;
    border-radius:5px;
    color:var(--ep-secondary);
    font-size:16px;
    line-height:32px;
  }

  .tgmobile__menu-backdrop{
    position:fixed;
    right:0;
    top:0;
    width:100%;
    height:100%;
    z-index:10000;
    opacity:0;
    visibility:hidden;
    background:rgba(0,0,0,.50);
    transition:opacity .35s ease,visibility .35s ease;
    pointer-events:none;
  }
  body.mobile-menu-visible .tgmobile__menu-backdrop{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }
  body.mobile-menu-visible{
    overflow:hidden;
  }
}



/* =========================================================
   v1.0.19 - Blog/Single Post memakai struktur asli Beeko
========================================================= */
.ep-home-blog .ep-blog-col,
.ep-blog-archive .ep-blog-col{
  display:flex;
}
.ep-home-blog .blog__post-item-four,
.ep-blog-archive .blog__post-item-four{
  width:100%;
  height:auto;
  min-height:0;
  display:flex;
  flex-direction:column;
}
.ep-home-blog .blog__post-thumb-four,
.ep-blog-archive .blog__post-thumb-four{
  flex:0 0 auto;
  margin-bottom:22px;
}
.ep-home-blog .blog__post-thumb-four img,
.ep-blog-archive .blog__post-thumb-four img{
  width:100%;
  height:258px;
  object-fit:cover;
  border-radius:8px;
}
.ep-home-blog .blog__post-content-four,
.ep-blog-archive .blog__post-content-four{
  min-height:0;
  height:auto;
  display:flex;
  flex:1 1 auto;
  flex-direction:column;
}
.ep-home-blog .blog__post-content-four .title,
.ep-blog-archive .blog__post-content-four .title{
  display:-webkit-box;
  min-height:55px;
  overflow:hidden;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
}
.ep-home-blog .blog__post-content-four .blog__post-meta,
.ep-blog-archive .blog__post-content-four .blog__post-meta{
  margin-top:auto;
}
.ep-home-blog .blog__post-author img,
.ep-blog-archive .blog__post-author img{
  width:36px;
  height:36px;
  object-fit:cover;
}

/* Original Beeko single post proportions: 70.7% content and 29.3% sidebar. */
.ep-beeko-single .blog__post-thumb-five.blog__details-thumb{
  overflow:visible;
  border-radius:0;
  margin-bottom:30px;
}
.ep-beeko-single .blog__post-thumb-five.blog__details-thumb img{
  display:block;
  width:100%;
  height:452px;
  object-fit:cover;
  border-radius:20px;
}
.ep-beeko-single .blog__details-content .blog__post-meta{
  margin-bottom:10px;
}
.ep-beeko-single .blog__details-content .title{
  margin-bottom:15px;
  font-size:36px;
  line-height:1.25;
  font-weight:600;
  text-transform:capitalize;
}
.ep-beeko-single .ep-post-lead{
  margin-bottom:15px;
  font-size:16px;
  line-height:1.75;
}
.ep-beeko-entry > *:last-child{margin-bottom:0}
.ep-beeko-entry p{margin-bottom:15px}
.ep-beeko-entry h2,
.ep-beeko-entry h3,
.ep-beeko-entry h4{
  margin-top:30px;
  margin-bottom:12px;
  font-weight:600;
  text-transform:capitalize;
}
.ep-beeko-entry h2{font-size:30px}
.ep-beeko-entry h3{font-size:26px}
.ep-beeko-entry h4{font-size:22px}
.ep-beeko-entry blockquote{
  margin:40px 50px;
}
.ep-beeko-entry img{
  width:100%;
  height:auto;
  border-radius:10px;
}
.ep-beeko-entry ul,
.ep-beeko-entry ol{
  margin:0 0 22px;
  padding-left:22px;
}
.ep-beeko-entry ul{list-style:disc}
.ep-beeko-entry ol{list-style:decimal}
.ep-beeko-single .blog__avatar-wrap{
  margin-top:0;
}

/* Hapus kartu custom lama pada sidebar dan kembalikan ke sidebar asli Beeko. */
.ep-beeko-sidebar.blog__sidebar,
.ep-beeko-sidebar.blog__sidebar-two{
  margin-right:0;
  margin-left:26px;
}
.ep-beeko-sidebar .sidebar__widget{
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
}
.ep-beeko-sidebar .ep-sidebar-search-widget{
  margin-bottom:40px;
}
.ep-beeko-sidebar .blog__search{
  position:relative;
}
.ep-beeko-sidebar .blog__search input{
  width:100%;
  height:60px;
  padding:15px 64px 15px 18px!important;
  border:1px solid #E6EEFF;
  border-radius:5px;
  background:#fff;
}
.ep-beeko-sidebar .blog__search button{
  position:absolute;
  right:6px!important;
  top:5px;
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:5px;
  background:var(--tg-theme-primary)!important;
  color:#fff!important;
}
.ep-beeko-sidebar .rc-post-item{
  gap:24px;
  margin-bottom:30px;
}
.ep-beeko-sidebar .rc-post-item .thumb{
  width:90px;
}
.ep-beeko-sidebar .rc-post-item .thumb img{
  width:90px;
  height:90px;
}
.ep-beeko-sidebar .rc-post-item .content .date{
  margin-bottom:14px;
}
.ep-beeko-sidebar .rc-post-item .content .title{
  font-size:18px;
  line-height:1.35;
}
.ep-beeko-sidebar .sidebar__contact .tg-btn{
  padding:13px 18px;
  border-radius:6px;
  font-size:14px;
}

@media (max-width:1199.98px){
  .ep-home-blog .blog__post-thumb-four img,
  .ep-blog-archive .blog__post-thumb-four img{height:230px}
  .ep-beeko-single .blog__post-thumb-five.blog__details-thumb img{height:360px}
  .ep-beeko-sidebar.blog__sidebar-two{margin-left:0}
}
@media (max-width:991.98px){
  .ep-beeko-sidebar.blog__sidebar,
  .ep-beeko-sidebar.blog__sidebar-two{
    margin-top:80px;
    margin-left:0;
  }
}
@media (max-width:767.98px){
  .ep-home-blog .blog__post-thumb-four img,
  .ep-blog-archive .blog__post-thumb-four img{height:250px}
  .ep-home-blog .blog__post-content-four .title,
  .ep-blog-archive .blog__post-content-four .title{min-height:0}
  .ep-beeko-single .blog__post-thumb-five.blog__details-thumb img{height:320px}
  .ep-beeko-single .blog__details-content .title{font-size:28px}
  .ep-beeko-entry blockquote{margin:30px 0}
  .ep-beeko-single .blog__details-bottom .post-share{margin-top:30px}
}

/* v1.0.21 — Video homepage decorative shapes follow global theme colors */
.ep-home-video.video__area-four::before{
  background:var(--ep-secondary)!important;
  opacity:.90;
}
.ep-home-video .video__bg-four::before{
  background:var(--ep-primary)!important;
  opacity:.90;
}
.ep-home-video .video__bg-four::after{
  background:var(--ep-secondary)!important;
  opacity:.90;
}


/* v1.0.22 — Running text tetap bergerak pada Safari/iOS dan perangkat mobile */
.ep-home-marquee .ep-marquee-track{
  -webkit-animation:epMarquee 34s linear infinite;
  animation:epMarquee 34s linear infinite;
  -webkit-transform:translate3d(0,0,0);
  transform:translate3d(0,0,0);
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
  will-change:transform;
  flex-wrap:nowrap!important;
  min-width:max-content;
}
@-webkit-keyframes epMarquee{
  from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
  to{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}
}
@media(max-width:767.98px){
  .ep-home-marquee .slider__marquee{
    width:100%;
    overflow:hidden!important;
    -webkit-overflow-scrolling:auto;
    touch-action:pan-y;
  }
  .ep-home-marquee .ep-marquee-track{
    -webkit-animation:epMarqueeMobile 25s linear infinite!important;
    animation:epMarqueeMobile 25s linear infinite!important;
    -webkit-animation-play-state:running!important;
    animation-play-state:running!important;
  }
}
@-webkit-keyframes epMarqueeMobile{
  from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
  to{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}
}
@keyframes epMarqueeMobile{
  from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
  to{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}
}


/* v1.0.23 — CTA mobile center, clean hero pagination, and site icon preview */
.ep-home-full .slider__pagination .swiper-pagination-bullet{
  position:relative!important;
  display:block!important;
  flex:0 0 auto!important;
  width:11px!important;
  height:11px!important;
  min-width:11px!important;
  min-height:11px!important;
  margin:0!important;
  padding:0!important;
  border:0!important;
  border-radius:999px!important;
  background:#b8bbc6!important;
  box-shadow:none!important;
  opacity:1!important;
  transform:none!important;
  overflow:hidden!important;
  transition:width .25s ease,background-color .25s ease!important;
}
.ep-home-full .slider__pagination .swiper-pagination-bullet::before,
.ep-home-full .slider__pagination .swiper-pagination-bullet::after{
  content:none!important;
  display:none!important;
}
.ep-home-full .slider__pagination .swiper-pagination-bullet-active{
  width:34px!important;
  min-width:34px!important;
  height:11px!important;
  background:var(--ep-primary)!important;
  border-radius:999px!important;
}

@media(max-width:991.98px){
  .ep-home-full .slider__pagination{
    left:50%!important;
    right:auto!important;
    bottom:34px!important;
    transform:translateX(-50%)!important;
    justify-content:center!important;
    gap:10px!important;
  }
  .ep-home-cta .row{
    justify-content:center!important;
    text-align:center!important;
  }
  .ep-home-cta .cta__content-four,
  .ep-home-cta .section__title,
  .ep-home-cta .section__title .title{
    text-align:center!important;
  }
  .ep-home-cta .cta__btn-three{
    display:flex!important;
    justify-content:center!important;
    text-align:center!important;
    margin-top:28px!important;
  }
  .ep-home-cta .cta__btn-three .tg-btn{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:auto!important;
    min-width:220px!important;
    margin:0 auto!important;
  }
}

.ep-site-icon-preview{
  max-width:150px;
  aspect-ratio:1/1;
}
.ep-site-icon-preview img{
  width:100%!important;
  height:100%!important;
  object-fit:contain!important;
}

/* ============================================================
   About page — struktur asli Beeko, ePuskesmas v1.0.25
   ============================================================ */
.ep-about-page-beeko{overflow:hidden;background:#fff}
.ep-about-page-beeko .ep-about-main{background:#fff;position:relative;z-index:1}
.ep-about-page-beeko .about__img-wrap{margin-right:45px;min-height:590px}
.ep-about-page-beeko .about__images{padding-right:30px;text-align:right}
.ep-about-page-beeko .about__images img{display:block;max-width:100%;object-fit:cover;border-radius:15px}
.ep-about-page-beeko .about__images img:first-child{width:76%;height:305px;margin-left:auto}
.ep-about-page-beeko .about__images img:nth-child(2){width:76%;height:305px;margin:24px 0 0 auto;border-radius:15px 20px 0 15px}
.ep-about-page-beeko .experience__wrap{position:absolute;right:0;top:37%;z-index:4;background:var(--tg-theme-primary);color:#fff;border-radius:18px;padding:25px 25px;min-width:205px;box-shadow:0 18px 40px rgba(0,0,0,.12)}
.ep-about-page-beeko .experience__wrap .count{color:#fff;font-size:58px;line-height:.9;margin:0 0 10px}
.ep-about-page-beeko .experience__wrap span{display:block;color:#fff;font-weight:600;line-height:1.35}
.ep-about-page-beeko .profit__wrap{position:absolute;left:-18px;bottom:35px;z-index:5;display:flex;align-items:center;gap:12px;background:#fff;border:1px solid #dfe1ed;border-radius:15px;padding:14px 18px;box-shadow:0 18px 45px rgba(10,24,58,.12)}
.ep-about-page-beeko .profit__wrap .thumb{width:55px;height:55px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:color-mix(in srgb,var(--tg-theme-primary) 12%,#fff)}
.ep-about-page-beeko .profit__wrap .thumb img{width:38px;height:38px;object-fit:contain}
.ep-about-page-beeko .profit__wrap .content .title{font-size:17px;margin-bottom:2px;color:var(--tg-heading-color)}
.ep-about-page-beeko .profit__wrap .content span{font-size:13px;color:var(--tg-body-color)}
.ep-about-page-beeko .about__img-wrap .shape img:first-child{left:-6%;top:42%;z-index:2;filter:hue-rotate(120deg)}
.ep-about-page-beeko .about__img-wrap .shape img:nth-child(2){left:18%;bottom:-4%;opacity:.65}
.ep-about-page-beeko .about__content>.section__title .sub-title{text-transform:uppercase;color:var(--tg-theme-primary)}
.ep-about-page-beeko .about__content>.section__title .title{font-size:clamp(34px,3.2vw,52px);line-height:1.08;letter-spacing:-1.2px}
.ep-about-page-beeko .about__content>p{width:100%;font-size:16px;line-height:1.75}
.ep-about-page-beeko .about__inner-wrap{display:grid;grid-template-columns:minmax(210px,.88fr) minmax(0,1.12fr);gap:22px;margin:30px 0 0}
.ep-about-page-beeko .about__list-box{display:grid;gap:14px}
.ep-about-page-beeko .about__list-box-item{display:flex;align-items:center;gap:14px;background:#f3f5fb;border-radius:12px;padding:17px 18px;border:0}
.ep-about-page-beeko .about__list-box-item .icon{width:50px;height:50px;border-radius:10px;display:flex;align-items:center;justify-content:center;color:var(--tg-theme-primary);background:#fff;font-size:28px;flex:0 0 auto}
.ep-about-page-beeko .about__list-box-item .title{font-size:18px;line-height:1.25;margin:0}
.ep-about-page-beeko .about__inner-content>p{font-size:15px;line-height:1.7;margin-bottom:15px}
.ep-about-page-beeko .about__list-item{display:grid;gap:9px}
.ep-about-page-beeko .about__list-item li{display:flex;align-items:center;gap:9px;color:var(--tg-heading-color);font-weight:500}
.ep-about-page-beeko .about__list-item li .icon{width:22px;height:22px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:color-mix(in srgb,var(--tg-theme-primary) 11%,#fff);color:var(--tg-theme-primary);flex:0 0 auto}
.ep-about-page-beeko .about__content-bottom{margin-top:30px;display:flex;align-items:center;justify-content:space-between;gap:22px}
.ep-about-page-beeko .author__wrap{display:flex;align-items:center;gap:14px}
.ep-about-page-beeko .author__wrap .thumb{width:56px;height:56px;border-radius:50%;overflow:hidden;flex:0 0 auto}
.ep-about-page-beeko .author__wrap .thumb img{width:100%;height:100%;object-fit:cover}
.ep-about-page-beeko .author__wrap .content>img{display:block;max-width:125px;max-height:38px;object-fit:contain;margin-bottom:3px}
.ep-about-page-beeko .author__wrap .title{font-size:15px;margin:0}
.ep-about-page-beeko .author__wrap .title span{font-weight:400;color:var(--tg-body-color)}
.ep-about-page-beeko .about__content-bottom .tg-btn{border-radius:999px;padding:16px 24px}

.ep-about-page-beeko .ep-about-cta{padding:0 0 130px}
.ep-about-page-beeko .cta__inner-wrap-two{background:var(--tg-theme-primary);border-radius:18px;padding:43px 50px;position:relative;overflow:hidden}
.ep-about-page-beeko .cta__content-three .title{color:#fff;font-size:clamp(26px,2.6vw,38px);line-height:1.14;margin:0;max-width:510px}
.ep-about-page-beeko .cta__content-right{display:flex;align-items:center;justify-content:flex-end;gap:30px;position:relative;z-index:2}
.ep-about-page-beeko .cta__contact{display:flex;align-items:center;gap:13px}
.ep-about-page-beeko .cta__contact .icon{font-size:44px;color:#fff;line-height:1}
.ep-about-page-beeko .cta__contact .content span{display:block;color:rgba(255,255,255,.78);font-size:13px}
.ep-about-page-beeko .cta__contact .content a{color:#fff;font-size:22px;font-weight:700;white-space:nowrap}
.ep-about-page-beeko .cta__content-right .tg-border-btn{border:1px solid rgba(255,255,255,.7);background:transparent;color:#fff!important;border-radius:999px;white-space:nowrap}
.ep-about-page-beeko .cta__content-right .tg-border-btn:hover{background:#fff;color:var(--tg-theme-primary)!important}
.ep-about-page-beeko .cta__shape-three img{filter:hue-rotate(105deg) saturate(.85)}

.ep-about-page-beeko .ep-about-team{position:relative;padding-top:0}
.ep-about-page-beeko .ep-about-team .section__content{max-width:520px;margin-left:auto}
.ep-about-page-beeko .ep-about-team .section__content p{font-size:16px;line-height:1.75;margin:0}
.ep-about-page-beeko .team__item-three{padding:34px 20px 30px;border-radius:18px}
.ep-about-page-beeko .team__thumb-three{width:200px;height:200px;margin-bottom:20px;background:#f2f4f9}
.ep-about-page-beeko .team__thumb-three a{display:block;width:100%;height:100%}
.ep-about-page-beeko .team__thumb-three img{width:100%;height:100%;margin:0!important;object-fit:cover;object-position:top center;filter:grayscale(1);transition:.3s}
.ep-about-page-beeko .team__item-three:hover .team__thumb-three img{filter:grayscale(0)}
.ep-about-page-beeko .team__content-three .title{font-size:21px;margin-bottom:5px}
.ep-about-page-beeko .team__social-three .list-wrap{display:flex;align-items:center;justify-content:center;gap:17px;margin-top:17px}
.ep-about-page-beeko .team__social-three a{color:var(--tg-theme-primary)}

.ep-about-page-beeko .ep-about-testimonial{position:relative;background:#f4f6fd;overflow:hidden}
.ep-about-page-beeko .ep-about-testimonial .testimonial__wrap{min-height:440px}
.ep-about-page-beeko .ep-about-testimonial-slides{position:relative;z-index:3;min-height:330px}
.ep-about-page-beeko .ep-about-testimonial-slide{display:none;opacity:0;transform:translateY(12px);transition:opacity .35s ease,transform .35s ease}
.ep-about-page-beeko .ep-about-testimonial-slide.is-active{display:block;opacity:1;transform:none}
.ep-about-page-beeko .testimonial__icon img{width:38px;height:38px;object-fit:contain}
.ep-about-page-beeko .testimonial__content>p{max-width:850px;margin:0 auto 24px;font-size:20px;line-height:1.65;font-style:italic;text-transform:none}
.ep-about-page-beeko .testimonial__rating{display:flex;justify-content:center;gap:4px;color:#ffb321;margin-bottom:15px}
.ep-about-page-beeko .ep-about-testimonial-nav{display:flex;justify-content:center;align-items:center;gap:8px;position:relative;z-index:4;margin-top:20px}
.ep-about-page-beeko .ep-about-testimonial-nav button{width:48px;height:48px;padding:0;border:3px solid transparent;border-radius:50%;overflow:hidden;background:#fff;opacity:.65;transition:.25s}
.ep-about-page-beeko .ep-about-testimonial-nav button.is-active{border-color:var(--tg-theme-primary);opacity:1;transform:scale(1.08)}
.ep-about-page-beeko .ep-about-testimonial-nav button img{width:100%;height:100%;object-fit:cover}
.ep-about-page-beeko .testimonial__nav-two{position:absolute;inset:50% 0 auto;transform:translateY(-50%);display:flex;justify-content:space-between;pointer-events:none;z-index:5}
.ep-about-page-beeko .testimonial__nav-two button{pointer-events:auto;width:48px;height:48px;border-radius:50%;border:1px solid #dfe2ed;background:#fff;color:var(--tg-theme-primary);display:flex;align-items:center;justify-content:center;box-shadow:0 10px 28px rgba(0,0,0,.07)}
.ep-about-page-beeko .testimonial__nav-two button:hover{background:var(--tg-theme-primary);color:#fff}
.ep-about-page-beeko .testimonial__shape-wrap img{pointer-events:none}
.ep-about-page-beeko .testimonial__shape-wrap .big-shape{opacity:.45}

.ep-about-page-beeko .ep-about-brands{padding:45px 0;border-top:1px solid #eceef5;background:#fff}
.ep-about-page-beeko .ep-about-brand-track{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:28px;align-items:center}
.ep-about-page-beeko .ep-about-brand-track .brand-item{display:flex;align-items:center;justify-content:center;min-height:58px}
.ep-about-page-beeko .ep-about-brand-track img{max-width:145px;max-height:48px;object-fit:contain;filter:grayscale(1);opacity:.65;transition:.25s}
.ep-about-page-beeko .ep-about-brand-track .brand-item:hover img{filter:none;opacity:1}

@media (max-width:1199.98px){
  .ep-about-page-beeko .about__img-wrap{margin-right:10px}
  .ep-about-page-beeko .about__images img:first-child,.ep-about-page-beeko .about__images img:nth-child(2){height:275px}
  .ep-about-page-beeko .experience__wrap{right:-5px;min-width:180px;padding:21px}
  .ep-about-page-beeko .experience__wrap .count{font-size:48px}
  .ep-about-page-beeko .about__inner-wrap{grid-template-columns:1fr;gap:18px}
  .ep-about-page-beeko .cta__inner-wrap-two{padding:38px 36px}
  .ep-about-page-beeko .cta__content-right{gap:18px}
  .ep-about-page-beeko .cta__contact .content a{font-size:18px}
}
@media (max-width:991.98px){
  .ep-about-page-beeko .about__img-wrap{margin:0 auto 70px;max-width:650px;min-height:590px}
  .ep-about-page-beeko .about__content-bottom{justify-content:flex-start}
  .ep-about-page-beeko .cta__content-right{justify-content:flex-start;margin-top:25px}
  .ep-about-page-beeko .ep-about-team .section__content{margin-left:0}
  .ep-about-page-beeko .ep-about-brand-track{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media (max-width:767.98px){
  .ep-about-page-beeko .ep-about-main{padding:85px 0}
  .ep-about-page-beeko .about__img-wrap{min-height:auto;margin-bottom:55px;padding:0 0 115px}
  .ep-about-page-beeko .about__images{padding:0}
  .ep-about-page-beeko .about__images img:first-child,.ep-about-page-beeko .about__images img:nth-child(2){width:88%;height:225px}
  .ep-about-page-beeko .about__images img:first-child{margin:0 auto 0 0}
  .ep-about-page-beeko .about__images img:nth-child(2){margin:18px 0 0 auto}
  .ep-about-page-beeko .experience__wrap{right:0;top:35%;min-width:145px;padding:15px;border-radius:13px}
  .ep-about-page-beeko .experience__wrap .count{font-size:38px;margin-bottom:5px}
  .ep-about-page-beeko .experience__wrap span{font-size:12px}
  .ep-about-page-beeko .profit__wrap{left:0;bottom:25px;padding:11px 13px}
  .ep-about-page-beeko .profit__wrap .thumb{width:46px;height:46px}
  .ep-about-page-beeko .about__img-wrap .shape{display:none}
  .ep-about-page-beeko .about__content>.section__title .title{font-size:34px}
  .ep-about-page-beeko .about__inner-wrap{display:block}
  .ep-about-page-beeko .about__inner-content{margin-top:20px}
  .ep-about-page-beeko .about__content-bottom{display:block}
  .ep-about-page-beeko .about__content-bottom .tg-btn{margin-top:22px}
  .ep-about-page-beeko .ep-about-cta{padding-bottom:90px}
  .ep-about-page-beeko .cta__inner-wrap-two{text-align:center;padding:34px 22px}
  .ep-about-page-beeko .cta__content-three .title{font-size:27px}
  .ep-about-page-beeko .cta__content-right{flex-direction:column;justify-content:center;gap:20px}
  .ep-about-page-beeko .cta__contact{text-align:left}
  .ep-about-page-beeko .team__thumb-three{width:180px;height:180px}
  .ep-about-page-beeko .ep-about-testimonial .testimonial__wrap{padding:0;min-height:470px}
  .ep-about-page-beeko .ep-about-testimonial-slides{min-height:360px}
  .ep-about-page-beeko .testimonial__content>p{font-size:17px;line-height:1.7}
  .ep-about-page-beeko .testimonial__nav-two{position:relative;transform:none;justify-content:center;gap:14px;margin-top:22px}
  .ep-about-page-beeko .testimonial__shape-wrap{opacity:.35}
  .ep-about-page-beeko .ep-about-brand-track{grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}
}


/* ============================================================
   About page exact-layout correction — ePuskesmas v1.0.26
   Mengikuti ukuran dan komposisi AboutArea asli Beeko.
   ============================================================ */
@media (min-width:1200px){
  .ep-about-page-beeko .ep-about-main>.container{max-width:1320px!important}
}
.ep-about-page-beeko .ep-about-main .about__img-wrap{
  position:relative!important;
  min-height:590px!important;
  margin-right:45px!important;
}
.ep-about-page-beeko .ep-about-main .about__images{
  padding-right:30px!important;
  text-align:right!important;
}
.ep-about-page-beeko .ep-about-main .about__images img{
  display:block!important;
  height:auto!important;
  object-fit:cover!important;
  border-radius:15px!important;
}
.ep-about-page-beeko .ep-about-main .about__images img:first-child{
  width:min(100%,511px)!important;
  max-width:511px!important;
  margin:0 0 0 auto!important;
}
.ep-about-page-beeko .ep-about-main .about__images img:nth-child(2){
  position:relative!important;
  z-index:1!important;
  width:min(70%,357px)!important;
  max-width:357px!important;
  margin:24px 0 0 auto!important;
  border-radius:15px 20px 0 15px!important;
}
.ep-about-page-beeko .ep-about-main .experience__wrap{
  position:absolute!important;
  right:0!important;
  bottom:0!important;
  top:auto!important;
  z-index:3!important;
  min-width:0!important;
  padding:38px 43px 246px!important;
  border-radius:94px 16px 13px 13px!important;
  color:#fff!important;
  background:var(--tg-theme-primary)!important;
  box-shadow:none!important;
}
.ep-about-page-beeko .ep-about-main .experience__wrap .count{
  margin:0 0 5px!important;
  color:#fff!important;
  font-size:64px!important;
  line-height:.8!important;
}
.ep-about-page-beeko .ep-about-main .experience__wrap span{
  display:block!important;
  color:#fff!important;
  font-size:18px!important;
  font-weight:500!important;
  line-height:1.5!important;
}
.ep-about-page-beeko .ep-about-main .profit__wrap{
  position:absolute!important;
  left:-35px!important;
  bottom:14%!important;
  z-index:5!important;
  display:flex!important;
  align-items:center!important;
  gap:12px!important;
  padding:17px 22px!important;
  border:1px solid var(--tg-border-3,#dfe1ed)!important;
  border-radius:10px 30px!important;
  background:#fff!important;
  box-shadow:11px 11px 0 rgba(0,0,0,.27)!important;
}
.ep-about-page-beeko .ep-about-main .profit__wrap .thumb{
  position:relative!important;
  width:60px!important;
  height:60px!important;
  flex:0 0 60px!important;
  border-radius:50%!important;
  background:color-mix(in srgb,var(--tg-theme-primary) 12%,#fff)!important;
}
.ep-about-page-beeko .ep-about-main .profit__wrap .thumb img{opacity:0!important}
.ep-about-page-beeko .ep-about-main .profit__wrap .thumb::after{
  content:"";
  position:absolute;
  inset:8px;
  background:var(--tg-theme-primary);
  -webkit-mask:url('../img/images/profit_grap.svg') center/contain no-repeat;
  mask:url('../img/images/profit_grap.svg') center/contain no-repeat;
}
.ep-about-page-beeko .ep-about-main .profit__wrap .content .title{
  margin:0!important;
  font-size:20px!important;
  font-weight:600!important;
}
.ep-about-page-beeko .ep-about-main .profit__wrap .content span{
  display:block!important;
  font-size:13px!important;
  font-weight:500!important;
}
/* Hilangkan warna bawaan merah/biru SVG dan gambar ulang mengikuti warna utama. */
.ep-about-page-beeko .ep-about-main .about__img-wrap>.shape img{display:none!important}
.ep-about-page-beeko .ep-about-main .about__img-wrap>.shape::before,
.ep-about-page-beeko .ep-about-main .about__img-wrap>.shape::after{
  content:"";
  position:absolute;
  pointer-events:none;
}
.ep-about-page-beeko .ep-about-main .about__img-wrap>.shape::before{
  left:-6%;
  top:42%;
  z-index:2;
  width:111px;
  height:124px;
  background:var(--tg-theme-primary);
  -webkit-mask:url('../img/images/about_shape01.svg') center/contain no-repeat;
  mask:url('../img/images/about_shape01.svg') center/contain no-repeat;
}
.ep-about-page-beeko .ep-about-main .about__img-wrap>.shape::after{
  left:20%;
  bottom:-6%;
  z-index:0;
  width:98px;
  height:84px;
  opacity:.42;
  background:var(--tg-theme-primary);
  -webkit-mask:url('../img/images/about_shape02.svg') center/contain no-repeat;
  mask:url('../img/images/about_shape02.svg') center/contain no-repeat;
}
.ep-about-page-beeko .ep-about-main .about__content{padding-left:8px!important}
.ep-about-page-beeko .ep-about-main .about__content>.section__title .sub-title{
  margin-bottom:15px!important;
  color:var(--tg-theme-primary)!important;
  font-size:15px!important;
  font-weight:600!important;
  text-transform:uppercase!important;
}
.ep-about-page-beeko .ep-about-main .about__content>.section__title .title{
  max-width:650px!important;
  margin-bottom:0!important;
  font-size:48px!important;
  font-weight:700!important;
  line-height:1.16!important;
  letter-spacing:-.8px!important;
}
.ep-about-page-beeko .ep-about-main .about__content>p{
  width:95%!important;
  margin-bottom:25px!important;
  font-size:16px!important;
  line-height:1.65!important;
}
.ep-about-page-beeko .ep-about-main .about__inner-wrap{
  display:flex!important;
  align-items:center!important;
  gap:30px!important;
  margin:0 0 35px!important;
}
.ep-about-page-beeko .ep-about-main .about__list-box{
  display:block!important;
  width:44.4%!important;
  flex:0 0 44.4%!important;
}
.ep-about-page-beeko .ep-about-main .about__list-box-item{
  display:flex!important;
  align-items:center!important;
  gap:17px!important;
  min-height:0!important;
  margin-bottom:15px!important;
  padding:24px!important;
  border:0!important;
  border-radius:15px!important;
  background:var(--tg-color-gray-1,#f3f5fb)!important;
}
.ep-about-page-beeko .ep-about-main .about__list-box-item:last-child{margin-bottom:0!important}
.ep-about-page-beeko .ep-about-main .about__list-box-item .icon{
  width:auto!important;
  height:auto!important;
  flex:0 0 auto!important;
  padding:0!important;
  border-radius:0!important;
  color:var(--tg-theme-primary)!important;
  background:transparent!important;
  font-size:50px!important;
  line-height:0!important;
}
.ep-about-page-beeko .ep-about-main .about__list-box-item .title{
  margin:0!important;
  font-size:17px!important;
  font-weight:600!important;
  line-height:1.25!important;
}
.ep-about-page-beeko .ep-about-main .about__inner-content{min-width:0!important}
.ep-about-page-beeko .ep-about-main .about__inner-content>p{
  margin-bottom:18px!important;
  font-size:16px!important;
  line-height:1.65!important;
}
.ep-about-page-beeko .ep-about-main .about__list-item{display:block!important}
.ep-about-page-beeko .ep-about-main .about__list-item li{
  display:flex!important;
  align-items:center!important;
  gap:8px!important;
  margin-bottom:10px!important;
  font-size:16px!important;
  font-weight:500!important;
}
.ep-about-page-beeko .ep-about-main .about__list-item li .icon{
  width:24px!important;
  height:24px!important;
  border:1px solid var(--tg-theme-primary)!important;
  background:transparent!important;
}
.ep-about-page-beeko .ep-about-main .about__content-bottom{
  display:flex!important;
  align-items:center!important;
  justify-content:flex-start!important;
  flex-wrap:wrap!important;
  gap:30px 70px!important;
  margin-top:0!important;
}
.ep-about-page-beeko .ep-about-main .author__wrap .thumb{width:62px!important;height:62px!important}
.ep-about-page-beeko .ep-about-main .author__wrap .content>img{max-width:145px!important;max-height:44px!important}
.ep-about-page-beeko .ep-about-main .author__wrap .title{font-size:16px!important}
.ep-about-page-beeko .ep-about-main .about__content-bottom .tg-btn{
  padding:17px 28px!important;
  border-radius:999px!important;
}
/* Ornamen CTA asli Beeko dibuat netral-putih agar tidak menyisakan warna biru. */
.ep-about-page-beeko .ep-about-cta .cta__shape-three img{
  filter:brightness(0) invert(1)!important;
  opacity:.18!important;
}

@media (max-width:1199.98px){
  .ep-about-page-beeko .ep-about-main .about__img-wrap{margin-right:0!important}
  .ep-about-page-beeko .ep-about-main .experience__wrap{padding:34px 32px 225px!important}
  .ep-about-page-beeko .ep-about-main .experience__wrap .count{font-size:50px!important}
  .ep-about-page-beeko .ep-about-main .about__content>.section__title .title{font-size:41px!important}
  .ep-about-page-beeko .ep-about-main .about__inner-wrap{gap:20px!important}
  .ep-about-page-beeko .ep-about-main .about__list-box-item{padding:22px 18px!important;gap:12px!important}
  .ep-about-page-beeko .ep-about-main .about__content-bottom{gap:30px!important}
}
@media (max-width:991.98px){
  .ep-about-page-beeko .ep-about-main .about__img-wrap{max-width:590px!important;margin:0 auto 60px!important}
  .ep-about-page-beeko .ep-about-main .about__content{padding-left:0!important}
  .ep-about-page-beeko .ep-about-main .about__content>.section__title .title{max-width:760px!important}
}
@media (max-width:767.98px){
  .ep-about-page-beeko .ep-about-main{padding:75px 0!important}
  .ep-about-page-beeko .ep-about-main .about__img-wrap{min-height:475px!important;padding:0!important;margin-bottom:55px!important}
  .ep-about-page-beeko .ep-about-main .about__images{padding-right:18px!important}
  .ep-about-page-beeko .ep-about-main .about__images img:first-child{width:88%!important;height:auto!important}
  .ep-about-page-beeko .ep-about-main .about__images img:nth-child(2){width:65%!important;height:auto!important;margin-top:18px!important}
  .ep-about-page-beeko .ep-about-main .experience__wrap{
    right:0!important;
    bottom:0!important;
    padding:22px 22px 145px!important;
    border-radius:65px 14px 12px 12px!important;
  }
  .ep-about-page-beeko .ep-about-main .experience__wrap .count{font-size:39px!important}
  .ep-about-page-beeko .ep-about-main .experience__wrap span{font-size:12px!important}
  .ep-about-page-beeko .ep-about-main .profit__wrap{left:0!important;bottom:6%!important;padding:10px 12px!important;box-shadow:7px 7px 0 rgba(0,0,0,.2)!important}
  .ep-about-page-beeko .ep-about-main .profit__wrap .thumb{width:44px!important;height:44px!important;flex-basis:44px!important}
  .ep-about-page-beeko .ep-about-main .profit__wrap .content .title{font-size:14px!important}
  .ep-about-page-beeko .ep-about-main .profit__wrap .content span{font-size:10px!important}
  .ep-about-page-beeko .ep-about-main .about__img-wrap>.shape::before{display:none!important}
  .ep-about-page-beeko .ep-about-main .about__img-wrap>.shape::after{left:8%!important;bottom:-3%!important}
  .ep-about-page-beeko .ep-about-main .about__content>.section__title .title{font-size:34px!important;line-height:1.18!important}
  .ep-about-page-beeko .ep-about-main .about__content>p{width:100%!important}
  .ep-about-page-beeko .ep-about-main .about__inner-wrap{display:block!important;margin-bottom:28px!important}
  .ep-about-page-beeko .ep-about-main .about__list-box{width:100%!important;margin-bottom:20px!important}
  .ep-about-page-beeko .ep-about-main .about__content-bottom{display:block!important}
  .ep-about-page-beeko .ep-about-main .about__content-bottom .tg-btn{margin-top:22px!important}
}

/* ============================================================
   About page fidelity + theme-shape correction — v1.0.27
   Susunan mengikuti AboutArea Beeko; badge berada di belakang foto.
   ============================================================ */
.ep-about-page-beeko .ep-about-main .about__img-wrap{
  overflow:visible!important;
  isolation:isolate!important;
}
.ep-about-page-beeko .ep-about-main .about__images{
  position:relative!important;
  z-index:2!important;
}
.ep-about-page-beeko .ep-about-main .about__images img:first-child{
  position:relative!important;
  z-index:2!important;
}
.ep-about-page-beeko .ep-about-main .about__images img:nth-child(2){
  position:relative!important;
  z-index:4!important;
}
/* Pada template asli, kartu pengalaman berada di belakang foto kedua. */
.ep-about-page-beeko .ep-about-main .experience__wrap{
  z-index:3!important;
}
.ep-about-page-beeko .ep-about-main .profit__wrap{
  z-index:6!important;
}

/* Ganti grafik SVG biru dengan mask yang selalu mengikuti warna tema. */
.ep-about-page-beeko .ep-profit-graph{
  display:block!important;
  width:44px!important;
  height:44px!important;
  background:var(--tg-theme-primary)!important;
  -webkit-mask:url('../img/images/profit_grap.svg') center/contain no-repeat!important;
  mask:url('../img/images/profit_grap.svg') center/contain no-repeat!important;
}
.ep-about-page-beeko .ep-about-main .profit__wrap .thumb::after{display:none!important}
.ep-about-page-beeko .ep-about-main .profit__wrap .thumb img{display:none!important}

/* Ornamen bagian foto: tidak memakai warna bawaan SVG. */
.ep-about-page-beeko .ep-about-theme-shapes{
  position:absolute!important;
  inset:0!important;
  pointer-events:none!important;
  z-index:1!important;
}
.ep-about-page-beeko .ep-about-theme-shapes::before,
.ep-about-page-beeko .ep-about-theme-shapes::after{display:none!important}
.ep-about-page-beeko .ep-about-shape{
  position:absolute!important;
  display:block!important;
  background:var(--tg-theme-primary)!important;
  pointer-events:none!important;
}
.ep-about-page-beeko .ep-about-shape-one{
  left:-6%!important;
  top:42%!important;
  width:111px!important;
  height:124px!important;
  z-index:1!important;
  -webkit-mask:url('../img/images/about_shape01.svg') center/contain no-repeat!important;
  mask:url('../img/images/about_shape01.svg') center/contain no-repeat!important;
}
.ep-about-page-beeko .ep-about-shape-two{
  left:20%!important;
  bottom:-6%!important;
  width:98px!important;
  height:84px!important;
  z-index:0!important;
  opacity:.28!important;
  -webkit-mask:url('../img/images/about_shape02.svg') center/contain no-repeat!important;
  mask:url('../img/images/about_shape02.svg') center/contain no-repeat!important;
}

/* Testimoni: pertahankan posisi ornamen asli, hilangkan semua biru bawaan. */
.ep-about-page-beeko .ep-about-testimonial-shapes{
  position:absolute!important;
  inset:0!important;
  pointer-events:none!important;
  z-index:-1!important;
}
.ep-about-page-beeko .ep-about-testimonial-shapes .ep-testi-shape{
  position:absolute!important;
  display:block!important;
  pointer-events:none!important;
}
.ep-about-page-beeko .ep-testi-shape-one{
  left:0!important;top:0!important;width:322px!important;height:466px!important;
  background:#dfe3ee!important;
  -webkit-mask:url('../img/images/testi_shape01.svg') center/contain no-repeat!important;
  mask:url('../img/images/testi_shape01.svg') center/contain no-repeat!important;
}
.ep-about-page-beeko .ep-testi-shape-two{
  left:10%!important;top:0!important;width:294px!important;height:150px!important;
  background:#dfe3ee!important;
  -webkit-mask:url('../img/images/testi_shape02.svg') center/contain no-repeat!important;
  mask:url('../img/images/testi_shape02.svg') center/contain no-repeat!important;
}
.ep-about-page-beeko .ep-testi-shape-three{
  left:0!important;bottom:0!important;width:257px!important;height:214px!important;
  background:var(--tg-theme-primary)!important;
  -webkit-mask:url('../img/images/testi_shape03.svg') center/contain no-repeat!important;
  mask:url('../img/images/testi_shape03.svg') center/contain no-repeat!important;
}
.ep-about-page-beeko .ep-testi-shape-four{
  right:0!important;bottom:0!important;width:423px!important;height:326px!important;
  background:#dfe3ee!important;
  -webkit-mask:url('../img/images/testi_shape04.svg') center/contain no-repeat!important;
  mask:url('../img/images/testi_shape04.svg') center/contain no-repeat!important;
}
.ep-about-page-beeko .ep-testi-shape-five{
  right:0!important;bottom:26%!important;width:147px!important;height:287px!important;
  background:#dfe3ee!important;
  -webkit-mask:url('../img/images/testi_shape05.svg') center/contain no-repeat!important;
  mask:url('../img/images/testi_shape05.svg') center/contain no-repeat!important;
}
.ep-about-page-beeko .ep-about-testimonial-shapes .big-shape{
  position:absolute!important;
  left:50%!important;
  bottom:10%!important;
  transform:translateX(-50%)!important;
  opacity:.35!important;
  z-index:-1!important;
}

@media (max-width:1199.98px){
  .ep-about-page-beeko .ep-about-shape-one{width:90px!important;height:101px!important}
  .ep-about-page-beeko .ep-testi-shape-one{width:230px!important;height:333px!important}
  .ep-about-page-beeko .ep-testi-shape-four{width:350px!important;height:270px!important}
  .ep-about-page-beeko .ep-testi-shape-five{width:130px!important;height:254px!important}
}
@media (max-width:991.98px){
  .ep-about-page-beeko .ep-testi-shape-three{width:180px!important;height:150px!important}
  .ep-about-page-beeko .ep-testi-shape-four{width:250px!important;height:193px!important}
  .ep-about-page-beeko .ep-testi-shape-five{width:90px!important;height:176px!important;bottom:13%!important}
}
@media (max-width:767.98px){
  .ep-about-page-beeko .ep-about-shape-one{display:none!important}
  .ep-about-page-beeko .ep-about-shape-two{left:1%!important}
  .ep-about-page-beeko .ep-testi-shape-one{width:160px!important;height:232px!important}
  .ep-about-page-beeko .ep-testi-shape-three{width:140px!important;height:117px!important}
  .ep-about-page-beeko .ep-testi-shape-four{width:160px!important;height:123px!important}
  .ep-about-page-beeko .ep-testi-shape-five{width:60px!important;height:117px!important;bottom:8%!important}
}
