@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Manrope:wght@200..800&family=Parisienne&display=swap');

/*  ======= Common Styles ======= */
:root {
  --yellow-color    :#FF5500;
  --main-color      : #800020;
  --second-color    : #FF5757;
  --second-color-96 : rgba(232, 197, 104, 0.04);
  --gray-color      : #6e7478;
  --green-color     :#1fac49;
  --text-color      : #535353;
  --black-color     : #17293e;
  --black-color-rgb : 23, 41, 62;
  --gray-bg         : #f2f3f5;
  --theme-bg-light  : #F9F9F9;
  --white-color     : #fff;
  --section-title-space: 60px;
  --border-info-color: rgba(0, 0, 0, 0.08);
  --box-shadow      : 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2     : 0 0 15px rgba(0, 0, 0, 0.17);
  --transition      : all 0.3s ease-in-out;
  --white-color-opacity: rgba(255, 255, 255, 0.8);
  --heading-font-family-main: "Libre Baskerville", serif;
  --title-font-family: "Libre Baskerville", serif;
  --body-font-family: "Manrope", sans-serif;  
  --third-color     : #b4f9ed;
}

* {
  padding: 0;
  margin: 0;
}
body {
  background-color: #fff;
  font-family: var(--body-font-family);
  font-size: 15px;
  line-height: 26px;
  color: #3e3f3f;
  font-weight: 400;
  letter-spacing: -0.2px;
  position: relative;
  overflow-x: hidden;
}


.badge-title {
  color: var(--second-color);
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  position: relative; 
}

.badge-title::after {
  content: url(../../assets/images/title-img.webp);
  position: absolute;
  top: 5px; 
  left: 0;
  width: 100px;
  height: 100px; 
  opacity: 0.4;
}



.section-heading {
  font-size: 30px;
  color: var(--second-color);
}

.section-heading-rounded {
  font-size: 30px;
  color: var(--main-color);
  margin-bottom: 10px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.section-welcome {
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.3;
  color: #000;
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 25px;
    margin-top: 20px;
  }

  .section-heading-rounded {
    font-size: 25px;
    margin-top: 20px;
  }

  .section-welcome {
    font-size: 16px;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}


.share-desktop {
  display: block;
}

.share-mobile {
  display: none;
}

@media (max-width: 768px) {
  .share-desktop {
    display: none;
  }

  .share-mobile {
    display: block;
  }
}



.first-background-section {
  position: relative;
  z-index: 1;
}

.first-background-section::before {
  content: '';
  position: absolute;
  background-image: url('../../assets/images/first-background-section.webp');
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.second-background-section {
  position: relative; 
  z-index: 1;
}

.second-background-section::before {
  content: '';
  position: absolute;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
    url('../../assets/images/second-background-section.webp'); 
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}



.cta-parallax-background {
  background: 
    linear-gradient(rgb(0, 0, 0, 0.7), rgb(0, 0, 0, 0.7)),
    url('../../assets/images/second-background-section.webp');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.kelebihan-background {
  background: 
    linear-gradient(rgb(36, 76, 149, 0.8), rgb(36, 76, 149, 0.8)),
    url('../../assets/images/kelebihan-background2.webp') center center / cover no-repeat;
    background-attachment: fixed;
    background-size: cover;
}


.footer-background {
  background-color: #27252A;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .footer-background {
    background-position: center;
    background-repeat: no-repeat;
  }
}




h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font-family-main);
  -webkit-font-smoothing: antialiased;
}
h1 {
  font-size: 45px;
  font-weight: 700;
  line-height: 55px;
  margin: 0 0 10px;
}
h2 {
  font-size: 32px;
  line-height: 38px;
  margin: 0 0 10px;
  font-weight: 600;
  letter-spacing: -1px;
}
h3,
h4 {
  margin: 0 0 10px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.5px;
}
h3 {
  font-size: 20px;
}
h4 {
  font-size: 16px;
}
h5,
h6 {
  font-size: 14px;
  margin: 0 0 10px;
}
img {
  border: none;
  outline: none;
  max-width: 100%;
}
ul {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  color: var(--text-color);
}

p {
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 15px;
}
a,
a:hover {
  text-decoration: none;
}
a:focus {
  outline: 0;
  text-decoration: none;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #ddd !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #ddd !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #ddd !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #ddd !important;
}
button {
  border: none;
  background: none;
}

/* ======= Scrollbar Style ======= */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: var(--second-color);
}
::selection {
  background-color: var(--black-color);
  color: #fff;
}
-webkit-::selection {
  background-color: var(--black-color);
  color: #fff;
}
::-moz-selection {
  background-color: var(--yellow-color);
  color: #fff;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* ======= Helper Class ======= */
.padding {
  padding: 100px 0;
}
.no-padding {
  padding: 0;
}
.padding-15 {
  padding: 15px;
}
.padding-20 {
  padding: 20px;
}
.box-padding {
  padding: 0 50px;
}

.bg-white {
  background-color: #fff;
}

.bg-smoke {
  background-color: #f3f3f3;
}
.bg-grey {
  /*background-color: #f9fafa;*/
  background-color: #f8f7f0;
}
.bg-dark {
  background-color: #242323 !important;
}
.bd-top {
  border-top: 1px solid #eeeeee;
}
.bd-bottom {
  border-bottom: 1px solid #eeeeee;
}

.mb-10 {
  margin-bottom: 10px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-35 {
  margin-bottom: 35px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-45 {
  margin-bottom: 45px;
}
.mb-50 {
  margin-bottom: 50px;
}
.ml-15 {
  margin-left: 15px;
}
.ml-20 {
  margin-left: 20px;
}
.ml-25 {
  margin-left: 25px;
}
.ml-30 {
  margin-left: 30px;
}
.ml-35 {
  margin-left: 35px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-50 {
  margin-top: 50px;
}
.fz-28 {
  font-size: 28px;
}
.fz-24 {
  font-size: 24px;
}
.fz-22 {
  font-size: 22px;
}
.fz-20 {
  font-size: 20px;
}
.fz-18 {
  font-size: 18px;
}
.fz-16 {
  font-size: 16px;
}
.pt-56 {
  padding-top: 56px;
}


/* ======= Default Button ======= */
.btn-group {
}
.btn-group a {
  margin: 5px;
}
.btn-group-left a {
  margin-right: 10px;
}
.default-btn {
  display: inline-block;
  background: var(--yellow-color);
  color: var(--yellow-color);
  font-family: var(--body-font-family);
  font-size: 15px;
  font-weight: 600;
  height: 45px;
  line-height: 45px;
  padding: 0 35px;
  letter-spacing: 0;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  transition: all ease 700ms;
  -moz-transition: all ease 700ms;
  -webkit-transition: all ease 700ms;
  -ms-transition: all ease 700ms;
  -o-transition: all ease 700ms;
  z-index: 1;
}
.default-btn:hover {
  color: #fff;
}
.default-btn span {
  background: var(--main-color) none repeat scroll 0 0;
  border-radius: 50%;
  display: block;
  height: 0;
  position: absolute;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transition: width 0.6s ease 0s, height 0.6s ease 0s;
  -moz-transition: width 0.6s ease 0s, height 0.6s ease 0s;
  -webkit-transition: width 0.6s ease 0s, height 0.6s ease 0s;
  -ms-transition: width 0.6s ease 0s, height 0.6s ease 0s;
  -o-transition: width 0.6s ease 0s, height 0.6s ease 0s;
  width: 0;
  z-index: -1;
}
.default-btn:hover span {
  height: 562.5px;
  width: 562.5px;
}

/* ======= Slick Controls ======= */
.slick-slide:focus {
  outline: none;
}
.nav-style .slick-arrow {
  border: 1px solid #8d9aa8;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  color: #8d9aa8;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
}
.nav-style .slick-arrow.right {
  left: auto;
  right: -40px;
}
.carousel-dots .owl-dots {
  text-align: center;
  margin-top: 30px;
}
.carousel-dots .owl-dots li {
  display: inline-block;
  margin: 0 4px;
}
.carousel-dots .owl-dots li button {
  display: inline-block;
  background-color: #8d9aa8;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  overflow: hidden;
  text-indent: -999px;
}
.carousel-dots .owl-dots li.slick-active button {
  background-color: var(--yellow-color);
}
.carousel-dots .owl-dots li button:focus {
  outline: none;
}



/* ======= Transition Effect ======= */
a,
a:hover,
img,
.form-control,
.form-control:hover,
button {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}


@keyframes spineer {
  0% {
    box-shadow: 0 0 0 0 rgb(255, 87, 87, 0.3);
  }
  100% {
      box-shadow: 0 0 0 25px rgb(159, 203, 34, .01);
  }
}



#back-to-top-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  background-color: var(--main-color);
  color: white;
  cursor: pointer;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  -webkit-animation: spineer 2s infinite;
  animation: spineer 2s infinite;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

#back-to-top-btn:focus {
  outline: none;
  border: none;
  box-shadow: none;
}


#back-to-top-btn::after {
  font-size: 18px;
  font-weight: 600;
  content: "\f062";
  line-height: 40px;
  color: #fff;
  font-family: "Font Awesome 5 free";
}

@media (max-width: 767px) {
  #back-to-top-btn {
    bottom: 30px;
    right: 30px;
    font-size: 16px;
  }
}


@media (max-width: 575px) {
  #back-to-top-btn {
    bottom: 20px;
    right: 20px;
    font-size: 15px;
  }
}







/*  ======= Header Section ======= */
.header {
  background-color: white;
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .header-logo {
    flex-wrap: nowrap; /* Mencegah elemen turun ke baris baru */
  }
  
  .header-logo .logo-title {
    white-space: nowrap; /* Mencegah teks turun ke baris baru */
    font-size: 16px;
  }
}


.header-logo a {
  display: flex;
  align-items: center;
}

.header-logo .logo-title {
  display: flex;
  margin-top: 6px;
  align-items: center;
  height: 100%; 
}


/* Headroom css */
.sticky-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  transform: translateY(-100%);
  z-index: 99;
}
.sticky-header .primary-header {
  background-color: white;
  box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.1);
}
.admin-bar .sticky-header {
  top: 32px;
}
.admin-bar .header {
  margin-top: 32px;
}
.admin-bar .header-three {
  margin-top: 0;
}
.sticky-header.sticky-fixed-top {
  transition: transform 0.25s ease-in-out;
  will-change: transform;
}
.sticky-header.sticky-fixed-top {
  transform: translateY(0);
}
.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Burger Menu */
.mobile-menu-icon {
  display: none;
}
.burger-menu {
  width: 20px;
  height: 17px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  -webkit-transition: transform 330ms ease-out;
  -moz-transition: transform 330ms ease-out;
  -o-transition: transform 330ms ease-out;
  transition: transform 330ms ease-out;
}
.burger-menu.menu-open {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.line-menu {
  background-color: var(--main-color);
  border-radius: 2px;
  width: 100%;
  height: 3px;
}
.line-menu.line-half {
  width: 50%;
}
.line-menu.first-line {
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transform-origin: right;
}
.menu-open .line-menu.first-line {
  -webkit-transform: rotate(-90deg) translateX(3px);
  -moz-transform: rotate(-90deg) translateX(3px);
  -o-transform: rotate(-90deg) translateX(3px);
  transform: rotate(-90deg) translateX(3px);
}
.line-menu.last-line {
  align-self: flex-end;
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transform-origin: left;
}
.menu-open .line-menu.last-line {
  -webkit-transform: rotate(-90deg) translateX(-3px);
  -moz-transform: rotate(-90deg) translateX(-3px);
  -o-transform: rotate(-90deg) translateX(-3px);
  transform: rotate(-90deg) translateX(-3px);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 98; 
}

body.menu-opened {
  overflow: hidden;
}

.header-menu-wrap .logo-mobile {
    background-color: white;
}

.header-menu-wrap .kontak-mobile {
    background-color: white;
}

.header-menu-wrap .header-logo {
    display: none;
}

.header-menu-wrap .kontak-detail {
    display: none;
    position: relative;
    bottom: 0;
}

.header-menu-wrap .kontak-detail ul li a{
    font-size: 18px;
}

@media (max-width: 992px) {
    .header-menu-wrap .header-logo {
        display: block;
    }
    .header-menu-wrap .kontak-detail {
        display: block;
    }
    .header-menu-wrap .kontak-detail span a{
        display: flex;
        font-size: 16px;
        color: var(--main-color);
        margin-left: 35px;
    }
    .header-menu-wrap .kontak-detail ul.sosmed {
        display: flex;
        padding-top: 0 !important;
        padding-bottom: 10px;
    }
    .header-menu-wrap .kontak-detail ul.sosmed li a:hover{
       color: var(--main-color);
    }
    .header-menu-wrap {
        background-color: var(--second-color);
    }
}

.btn-theme {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  background-color: var(--main-color);
  padding: 14px 30px 14px;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  overflow: hidden;
  letter-spacing: 0.2em;
  z-index: 1;
}

@media (max-width: 768px) {
  .btn-theme {
    padding: 10px 25px 10px;
  }
}

.btn-theme:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--second-color);
  width: 0%;
  transform: translateY(100%);
  transition: all 500ms ease;
  z-index: -1;
}

.btn-theme:hover:before {
  transform: translateY(0);
  width: 100%;
}

.btn-theme:hover {
  color: #fff;
  z-index: 1;
}


.header-menu-wrap ul {
  background-color: white;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 768px) {
  .header-menu-wrap ul {
    background-color: white;
    margin: 0;
    padding: 0;
    height: 470px;
    list-style: none;
  }
}

.header-menu-wrap ul li {
  display: inline-block;
  position: relative;
}

.header-menu-wrap ul li > a {
  display: block;
  font-family: var(--body-font-family);
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 600;
  color: #000;
  padding: 0 20px;
  height: 90px;
  line-height: 90px;
  text-decoration: none;
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.header-menu-wrap ul li > a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px; 
  top: 70px;
  bottom: 0;
  left: 0;
  background-color: var(--main-color);
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.header-menu-wrap ul li:hover a::after,
.header-menu-wrap ul li a.active::after {
  visibility: visible;
  width: 100%; 
}

@media (max-width: 992px) {
  .header-menu-wrap ul li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px; 
    top: 40px;
    bottom: 0;
    left: 0;
    background-color: var(--main-color);
    visibility: hidden;
    transition: all 0.3s ease-in-out;
  }
}

.header-menu-wrap ul li:hover > a {
  color: var(--main-color);
}

.header-menu-wrap ul li:hover > a::after {
  visibility: visible;
  width: 100%;
}


.header-menu-wrap li ul {
  background-color: #fff;
  display: block;
  width: 500px;
  padding: 30px 0;
  -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1),
    0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1),
    0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  position: absolute;
  left: -305px;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  -o-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.header-menu-wrap li:hover > ul {
  opacity: 1;
  visibility: visible;
  z-index: 99;
}

.header-menu-wrap li ul {
  column-count: 2;
}

.header-menu-wrap li li {
  display: block;
  padding: 0 25px;
  margin-bottom: 5px;
  text-align: left;
  position: relative;
}

.header-menu-wrap li li:last-child {
  margin: 0;
}

.header-menu-wrap li ul li {
  display: flex;
  align-items: center; 
}

.header-menu-wrap li ul li i {
  margin-right: 5px; 
}

.header-menu-wrap li li > a {
  /*text-transform: capitalize;*/
  font-family: var(--body-font-family);
  display: block;
  height: auto;
  line-height: inherit;
  color: var(--second-color);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  padding: 5px;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  text-transform: capitalize;
}


@media (max-width: 768px) {
    .header-menu-wrap li li > a {
      font-family: var(--body-font-family) !important;
      display: block !important;
      height: auto !important;
      line-height: inherit !important;
      color: var(--second-color) !important;
      font-weight: 500 !important;
      letter-spacing: 0 !important;
      line-height: 1.4 !important;
      padding: 5px !important;
      font-size: 13px !important;
      -webkit-font-smoothing: antialiased !important;
      text-transform: capitalize !important;
    }
}

.header-menu-wrap li li:hover > a {
  color: var(--second-color);
}

.header-menu-wrap li ul li ul {
  width: 250px;
  position: absolute;
  left: 100%;
  top: 0;
}

/* Media Query */
@media (min-width: 993px) {
  .header-menu-wrap li ul {
    display: block !important;
  }
}

@media (max-width: 992px) {
  #page.site {
    margin-top: 0 !important;
  }
  .headroom--top .header-menu-wrap,
  .headroom--unpinned .header-menu-wrap {
    display: none !important;
  }
  .dropdown-plus {
    width: 49px;
    height: 49px;
    line-height: 49px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
  }
  .dropdown-plus:before,
  .dropdown-plus:after {
    position: absolute;
    content: "";
    top: 21px;
    right: 10px;
    width: 13px;
    height: 1px;
    background-color: #222222;
  }
  .dropdown-plus:after {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .dropdown-plus.dropdown-open:after {
    display: none;
  }
  .mobile-menu-icon {
    display: block;
  }
  .header-menu-wrap {
    display: none;
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: fixed;
    left: -100%;
    top: 0;
    z-index: 999;
    transition: left 0.3s ease;
  }
  
  .header-menu-wrap.menu-open {
    left: 0;
  }
  
  .header-menu-wrap ul li {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding: 0;
    margin: 0;
  }
  .header-menu-wrap ul li:first-child {
    /*border-top: 1px solid rgba(0, 0, 0, 0.04);*/
  }
  .header-menu-wrap ul li > a {
    padding: 10px 15px;
    height: inherit;
    line-height: inherit;
  }
  .header-menu-wrap li li:hover > a {
    background-color: transparent;
  }
  .header-menu-wrap ul li ul li ul,
  .header-menu-wrap ul li ul {
    background-color: transparent;
    width: 100%;
    opacity: 1;
    padding: 0;
    visibility: visible;
    position: inherit;
    display: none;
    top: inherit;
    left: inherit;
    box-shadow: none;
    padding-top: 11px;
  }
  .header-menu-wrap li li {
    padding-left: 11px;
  }
  .header-menu-wrap li li:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .header-menu-wrap li li > a {
    color: black;
    font-size: 13px;
  }
  
  .header-menu-wrap li li:hover > a {
    color: var(--second-color);
  }
  .primary-header-two .header-right a.header-btn {
    margin: 0;
  }
  .header-two .mid-header .header-logo {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .header-menu-wrap {
    display: block;
    width: 300px; 
  }
  .header-menu-wrap ul {
    padding: 20px;
  }

  .header-menu-wrap ul li {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding: 0;
    margin: 0;
  }

  .header-menu-wrap ul li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.04);
  }

  .header-menu-wrap ul li > a {
    padding: 10px 15px;
    height: inherit;
    line-height: inherit;
  }

  .header-menu-wrap li li:hover > a {
    background-color: transparent;
  }
}

@media screen and (max-width: 782px) {
  .admin-bar .sticky-header {
    top: 0;
  }
  .admin-bar .header {
    margin-top: 0;
    padding-top: 46px;
  }
}

@media (max-width: 580px) {
  .header-right a.dl-btn {
    line-height: 40px;
    font-size: 10px;
    padding: 0 25px;
  }
  .primary-header .header-logo {
    max-width: 150px;
  }
  .top-bar .top-left li {
    font-size: 10px;
  }
  .top-bar-inner {
    font-size: 10px;
   }
}
.primary-header-inner .header-right {
  display: flex;
  align-items: center;
  line-height: 80px;
  margin-left: 20px;
}
.header-right .mobile-menu-icon {
  margin-left: 20px;
}
.header-right a.header-btn {
  display: inline-block;
  background: var(--yellow-color);
  color: var(--yellow-color);
  font-family: var(--body-font-family);
  font-size: 15px;
  font-weight: 600;
  height: 45px;
  line-height: 45px;
  padding: 0 35px;
  letter-spacing: 0;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  margin-left: 20px;
  transition: all ease 700ms;
  -moz-transition: all ease 700ms;
  -webkit-transition: all ease 700ms;
  -ms-transition: all ease 700ms;
  -o-transition: all ease 700ms;
  z-index: 1;
}
.header-right a.header-btn:hover {
  color: #fff;
}
.header-right a.header-btn span {
  background: var(--main-color) none repeat scroll 0 0;
  border-radius: 50%;
  display: block;
  height: 0;
  position: absolute;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transition: width 0.6s ease 0s, height 0.6s ease 0s;
  -moz-transition: width 0.6s ease 0s, height 0.6s ease 0s;
  -webkit-transition: width 0.6s ease 0s, height 0.6s ease 0s;
  -ms-transition: width 0.6s ease 0s, height 0.6s ease 0s;
  -o-transition: width 0.6s ease 0s, height 0.6s ease 0s;
  width: 0;
  z-index: -1;
}
.header-right a.header-btn:hover span {
  height: 562.5px;
  width: 562.5px;
}
.header-right .search-icon {
  color: var(--yellow-color);
  cursor: pointer;
}
.header-right .search-icon:hover {
  opacity: 0.8;
}
.primary-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.primary-header .header-logo {
  width: 200px;
}
.viewport-lg .primary-header .header-menu-wrap {
  display: block !important;
}

/* Top Bar */
.top-bar {
  background-color: var(--main-color);
}

.top-bar-inner {
    font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.top-bar .top-left li {
  font-size: 12px;
  color: #fff;
  display: inline-block;
  margin: 0;
  padding: 7px 0;
}

.top-bar .top-social {
  padding: 7px 20px;
}

.top-bar .top-social li {
  font-size: 15px;
}

.top-bar .top-left li a {
  color: #fff;
  text-decoration: none;
  margin-left: 10px;
}

.top-bar .top-social li {
  display: inline-block;
  margin-left: 13px;
}
.top-bar .top-social li:first-child {
  margin-left: 0;
}
.top-bar .top-social li a {
  margin-left: 10px;
  color: #fff;
}
.top-bar .top-social li a:hover {
  color: #ddd;
}

.top-bar .top-left .top-contact li i {
  color: #fff;
  background-color: var(--second-color);
  padding: 5px;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .top-bar .top-left li {
    font-size: 8px;
  }
  .top-bar .top-social li {
    font-size: 8px;
  }
  .top-bar .top-social {
      padding: 0;
  }
  .top-bar .top-left li a {
    color: #fff;
    text-decoration: none;
    margin-left: 5px;
  }
  .top-bar .top-social li {
      display: inline-block;
      margin-left: 6px;
    }
    .top-bar .top-social li a {
      margin-left: 5px;
      color: #fff;
    }
  .top-bar .top-left .top-contact li i {
      padding: 3px;
    }
}




/* Header 1 */
.viewport-sm .primary-header-one {
}
.primary-header-one .header-menu-wrap {
  margin-left: auto;
}
.header-cart-btn {
  margin-left: 10px;
}
.header-cart-btn a {
  color: var(--yellow-color);
  font-size: 18px;
  text-decoration: none;
  position: relative;
}
.header-cart-btn a .num {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--yellow-color);
  color: #fff;
  font-size: 11px;
  display: block;
  top: -8px;
  right: -9px;
  line-height: 16px;
  text-align: center;
}

/* Header 2 */
.header-two {
  border-bottom: 4px solid var(--yellow-color);
  position: relative;
}
.header-two .mid-header {
  padding: 30px 0 70px 0;
}
.header-two .mid-header {
  padding: 30px 0;
}
.header-two .mid-header .mid-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-two .mid-header .header-logo {
  max-width: 180px;
}
.header-two .mid-header ul {
}
.header-two .mid-header ul li {
  display: inline-block;
  padding-left: 50px;
  position: relative;
  line-height: 20px;
  font-family: var(--body-font-family);
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 600;
}
.header-two .mid-header ul li:not(:last-of-type) {
  margin-right: 40px;
}
.header-two .mid-header ul li .icon {
  color: var(--yellow-color);
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 35px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header-two .mid-header ul li span {
  display: block;
  font-family: var(--body-font-family);
  font-size: 16px;
  font-weight: 600;
  color: var(--yellow-color);
  text-transform: capitalize;
}
.header-two .mid-header ul li a {
  text-decoration: none;
}
.header-two .mid-header ul li a:hover {
  opacity: 0.9;
}
.header-two .primary-header {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(50%);
  z-index: 9;
}
.header-two .primary-header {
  background-color: var(--yellow-color);
  position: inherit;
  transform: translateY(0);
}
/* .header-two .primary-header-inner {
    background-color: var(--yellow-color);
    padding: 0 20px;
} */
.primary-header-two .header-menu-wrap ul li > a {
  color: #fff;
  padding-right: 30px;
  padding-left: 0;
}
.primary-header-two .header-menu-wrap ul li > a:hover {
  color: var(--yellow-color);
}
.primary-header-two .header-menu-wrap li li > a {
  color: var(--yellow-color);
}
.primary-header-two .header-menu-wrap li li:hover > a:hover {
  color: var(--yellow-color);
}
.primary-header-two .header-right .search-icon {
  color: #fff;
}
.primary-header-two .header-menu-wrap li ul {
  left: -20px;
}
.primary-header-two .header-menu-wrap li ul li ul {
  left: 100%;
}
.sticky-header .primary-header-two {
  box-shadow: none;
  background-color: white;
}
.header-2 .sticky-header {
  background-color: var(--yellow-color);
  -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1),
    0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1),
    0px -6px 0px 0px rgba(248, 99, 107, 0.004);
}
.primary-header-two .header-right .header-cart-btn a {
  color: #fff;
}
@media (max-width: 992px) {
  .header-two {
    border: none;
  }
  .header-two .primary-header {
    background-color: var(--yellow-color);
    position: inherit;
    transform: translateY(0);
  }
  .header-two .mid-header {
    padding: 20px 0;
  }
  .header-two .mid-header-right {
    display: none;
  }
  .header-two .primary-header-inner {
    padding: 20px 0;
  }
  .header-2 .sticky-header .primary-header-inner {
    padding: 10px 0;
  }
  .primary-header-inner {
    padding: 10px 0;
  }
  .sticky-header .primary-header-inner {
  padding: 10px 0;
  }
  .primary-header-two .primary-header-inner .header-right {
    margin-left: 0;
    justify-content: center;
    width: 100%;
  }
  .header-two .mid-header .mid-header-inner {
    justify-content: center;
  }
  .viewport-sm .primary-header-two .header-right .search-icon {
    display: inherit;
  }
  .cart-enable.primary-header-two .header-right .header-cart-btn,
  .primary-header-two .header-right .search-icon {
    margin-right: auto;
  }
  .cart-enable.primary-header-two .header-right .search-icon {
    margin-right: 0;
  }
  .primary-header-two .header-right .mobile-menu-icon {
    margin-left: auto;
  }
  .primary-header-two .header-right .line-menu {
    background-color: #fff;
  }
  .primary-header-two .header-menu-wrap ul li ul li ul,
  .primary-header-two .header-menu-wrap ul li ul {
    left: inherit;
  }
  .primary-header-two .header-menu-wrap li li:hover > a,
  .primary-header-two .header-menu-wrap li li > a,
  .primary-header-two .header-menu-wrap ul li > a {
    color: var(--yellow-color);
  }
  .header-1 .header-right a.header-btn {
    margin-left: 15px;
    margin-right: 0;
  }
}


.single-slide {
  position: relative;
  text-align: center;
}

.slide-animation {
  animation: fadezoom 15s infinite;
}

@keyframes fadezoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.single-slide img {
  transition: transform 15s ease-in-out;
}

.single-slide .slider-content-wrap {
  position: relative;
}

.single-slide .slider-content-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; 
  height: 100%; 
  background-color: rgb(0, 0, 0, 0.6);
  z-index: 1; 
}

.single-slide.active img {
  animation: fadezoom 15s infinite;
}

.parent-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-text {
  text-align: center;
  color: #fff; /* warna teks */
  z-index: 10;
  width: auto;
  max-width: 100%;
}

.slide-text .img-text img {
  margin: 0 auto;
  width: 50px;
  height: 50px;
  filter: invert(100%) brightness(200%);
}


.slide-text h2 {
  margin: 0; 
  font-size: 22px;
  font-family: var(--body-font-family);
  
}
.slide-text h3 {
  margin: 0; 
  font-size: 100px;
  font-family: "Parisienne", cursive;
}


@media (max-width: 768px) {
  .slide-text h2 {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 5px;
  }
  .slide-text h3 {
    font-size: 55px;
  }
}




/* Magnific Popup */
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}


.text-active {
  color: var(--second-color);
}


.text-center {
  text-align: center!important;
  
}

/* section title */
.sec-title-v4 {
  margin-bottom: 40px;
}

.sec-title-v4 h2 {
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 30px;
  margin: 20px 0;
  line-height: 1.2em;
}
.sec-title-v4 .icon-box {
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 80px;
  border-radius: 50%;
  border: 1px solid #e6e6e6;
  font-size: 37px;
  color: #b90053;
  margin: 0 auto 26px;
  background-color: #fce5e9;
  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-top: 10px;
}


.sec-title-v4 .sub-title {
  font-size: 16px;
  color: #000000;
  font-weight: 800;
  letter-spacing: 2.4px;
  display: inline-block;
  position: relative;
 
}

.sec-title-three h2 {
  color: var(--main-color);
  font-size: 60px;
    line-height: 65px;
    font-weight: 600;
}

section {
  padding: 100px 0 80px;
}


/*** 

====================================================================
Page Title
====================================================================

***/
@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.page-title {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 133px 0;
  min-height: 300px;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .page-title {
    padding: 40px 0 !important; 
    min-height: 150px !important;
  }
}


.page-title .title-outer h1 {
  font-size: 50px !important;
  padding: 10px;
}

.page-title .title-outer{
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
}


@media (max-width: 768px) {
   .page-title .title-outer h1{
      font-size: 23px !important;
   }
  .breadcumb {
    font-size: 13px;
  }
}

.breadcumb {
  position: relative;
  background-color: var(--main-color);
}

@media (max-width: 768px) {
  .breadcumb {
    font-size: 13px;
  }
}

.breadcumb a {
  color: white;
  display: inline-block; 
}


.breadcumb a:hover {
  color: var(--second-color);
}


.page-title:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #131313;
  opacity: 0.6;
  content: "";
}
.page-title .title-outer {
  position: relative;
}

.page-title .title-outer h1{
  font-size: 30px;
  font-family: var(--body-font-family);
}

@media (max-width: 768px) {
  .page-title .title-outer h1{
    font-size: 20px;
    line-height: 1.5;
  }
}

.page-title .title {
  color: var(--white);
  font-size: 34px;
  margin-bottom: 17px;
}
.page-title .text {
  color: var(--white);
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 26px;
  max-width: 520px;
  position: relative;
}

.page-breadcrumb {
  background-color: var(--main-color);
  display: inline-block;
  padding: 10px 20px 10px 20px;
  position: relative;
}
.page-breadcrumb li {
  color: var(--white);
  display: inline-block;
  font-weight: 400;
  margin-right: 12px;
  padding-right: 13px;
  position: relative;
  text-transform: capitalize;
}
.page-breadcrumb li:after {
  color: var(--second-color);
  content: "\f061";
  font-family: "FontAwesome";
  font-size: 12px;
  font-weight: 900;
  position: absolute;
  right: -6px;
  top: 0px;
}
.page-breadcrumb li:last-child {
  margin-right: 0px;
  padding-right: 0px;
}
.page-breadcrumb li:last-child::after {
  display: none;
}
.page-breadcrumb li a {
  color: var(--white);
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.page-breadcrumb li a:hover {
  color: var(--white);
}


/*** 
====================================================================
  About Section Three
====================================================================
***/

.bg-pattern-2 {
  background-image: url(../images/pattern-2.png);
  background-position: top;
}
.about-section-three {
  padding: 120px 0 70px;
  position: relative;
}
.about-section-three .content-column {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .about-section-three .content-column {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 1023px) {
  .about-section-three .content-column {
    margin-bottom: 20px;
  }
}
.about-section-three .content-column .inner-column {
  position: relative;
}
.about-section-three .content-column .sec-title {
  margin-bottom: 25px;
}
.about-section-three .content-column .text-block p {
  color: #6d8181;
  font-size: 14px;
  font-weight: 500;
}
.about-section-three .content-column .text-block a {
  color: var(--text-color);
  font-size: 20px;
  font-weight: 700;
}
.about-section-three .content-column .text-block .inner {
  margin-bottom: 30px;
  padding-top: 5px;
}
.about-section-three .content-column .text-block .icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F3F3F9;
  border-radius: 50%;
  color: var(--second-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 25px;
  height: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  outline: 2px solid var(--second-color);
  outline-offset: 4px;
  width: 60px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.about-section-three .content-column .text-block:hover .icon {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.about-section-three .image-column {
  margin-bottom: 50px;
  position: relative;
}
.about-section-three .image-column .inner-column {
  position: relative;
}
@media (max-width: 1199.98px) {
  .about-section-three .image-column .inner-column {
    max-width: 60%;
  }
}
@media (max-width: 767.98px) {
  .about-section-three .image-column .inner-column {
    max-width: 80%;
  }
}
@media (max-width: 575.98px) {
  .about-section-three .image-column .inner-column {
    max-width: 100%;
  }
}
.about-section-three .image-column .image-1 {
  position: relative;
  z-index: 1;
}
.about-section-three .image-column .image-1 .background-layer {
  background-color: var(--second-color);
  height: 500px;
  left: -20px;
  position: absolute;
  top: 20px;
  -webkit-transform: rotate(-7deg);
          transform: rotate(-7deg);
  width: 100px;
  z-index: -1;
}
@media (max-width: 575.98px) {
  .about-section-three .image-column .image-1 .background-layer {
    display: none;
  }
}

.sec-title {
  margin-bottom: 50px;
  position: relative;
  color: var(--second-color);
  font-weight: 700;
  font-family: var(--title-font-family);
  font-size: 60px;
}

.sec-title .sub-title {
  display: inline-block;
  color: var(--second-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1.6px;
  position: relative;
 
}

.sec-title .sub-title:before {
  background: var(--second-color);
  content: "";
  height: 2px;
  left: 100%;
  margin-left: 10px;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  width: 35px;
}

.sec-title h2 {
  position: relative;
  font-size: 48px;
  color: var(--text-color);
  font-weight: 700;;
  margin-bottom: 0;
  padding-bottom: 12px;
  line-height: 1.2em;
}


/*** 

====================================================================
Welcome Teks
====================================================================

***/

.section-full {
  position: relative;
}

.bg-gray {
  background-color:#f8f7f0;
  /*background-color: #eef1f2;*/
}

.about-home-3 {
  position: relative;
  z-index: 1;
  padding: 30px;
}


.kelebihan {
  position: relative;
  z-index: 1;
}

.kelebihan-home {
  margin-top: 60px;
}


.kelebihan .section-heading-rounded {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}

.kelebihan .section-welcome {
  position: relative;
  font-family: var(--body-font-family);
  text-align: center; 
  margin-top: 0;
  font-size: 16px;
  z-index: 2;
}

@media (max-width: 768px) {
    .kelebihan .section-welcome {
      text-align: center; 
        font-size: 15px;
      margin-top: 10px !important;
    }
}

.kelebihan__inner {
  position: relative;
  display: block;
}

.kelebihan__single {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 25px;
}

.kelebihan__img-box {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 150px; 
  height: 150px;
}

.kelebihan__img-box::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid var(--second-color);
  border-radius: 50%;
  background-color: #fff;
}

.kelebihan__img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
  z-index: 1;
}

.kelebihan__img:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  transform: scale(0);
  transition: all 500ms ease;
  z-index: 1;
}

.kelebihan__single:hover .kelebihan__img:before {
  transform: scale(1);
}

.kelebihan__img img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  border-radius: 50%;
  transition: all 500ms ease;
}

.kelebihan__single:hover .kelebihan__img img {
  transform: scale(1.2);
}

.kelebihan__title {
  font-size: 20px;
  line-height: 30px;
  margin-top: 34px;
  margin-bottom: 13px;
}









/* artikel */
.artikel {
  position: relative;
  z-index: 1;
}


.artikel .section-heading-rounded {
  text-align: center !important;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

.artikel .section-welcome {
  text-align: center; 
  margin-top: 0;
}


@media (max-width: 768px) {
  .artikel .artikel-home .section-heading-rounded {
      margin: 0;
  }
  .artikel .artikel-home .section-welcome {
      text-align: center; 
  }
}


.artikel .artikel-item {
  color: #000;
  border-radius: 10px;
  background-color: white;
  transition: transform 0.3s ease-in-out;
  will-change: transform; 
  overflow: hidden;
  position: relative;
}

.artikel .artikel-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 8px; 
  background-color: var(--second-color);
  transition: width 0.3s ease-in-out;
}

.artikel .artikel-item:hover::after {
  width: 100%;
}


.artikel .artikel-item:hover .image-container img {
  transform: scale(1.1);
}

.artikel .artikel-item .card-body h3 {
  position: relative;
  font-size: 18px;
  margin: 0;
  padding-bottom: 5px;
}

@media (max-width: 768px) {
    .artikel .artikel-item {
      height: auto;
    }
}

.artikel .artikel-item .image-container {
  position: relative; 
  width: 100%;
  height: 250px; 
  overflow: hidden;
}

.artikel .artikel-item .date {
  position: absolute;
  bottom: 0;
  right: 10px; 
  background-color: var(--main-color); 
  color: #fff;
  padding: 10px 20px;
  font-size: 14px; 
  border-radius: 5px; 
  z-index: 2;
}

.artikel .artikel-item .image-container::before,
.artikel .artikel-item .image-container::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.3); 
    z-index: 1;
    transition: height 0.3s ease;
}

.artikel .artikel-item:hover .image-container::before,
.artikel .artikel-item:hover .image-container::after {
    height: 50%; 
}

.artikel .artikel-item .image-container::before {
    top: 0;
}

.artikel .artikel-item .image-container::after {
    bottom: 0;
}


.artikel .artikel-item .image-container img {
  width: 100%;
  height: 250px;
}

@media (max-width: 992px) {
    .artikel .artikel-item .image-container {
      width: 100%;
      height: 200px;
      overflow: hidden;
    }
    
    .artikel .artikel-item .image-container img {
      width: 100%;
      height: 200px;
    }
}


@media (max-width: 768px) {
    .artikel .artikel-item .image-container {
      width: 100%;
      height: 250px;
    }
    .artikel .artikel-item .image-container img {
      width: 100%;
      height: 250px;
    }
}







.overlay-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.bg-stripped {
  background-color: #FAF3F3;
}

/* About */

.section-full {
  position: relative;
}

.content-wrapper {
  position: relative;
  z-index: 2;
  background-color: whitesmoke; 
  padding: 20px;
  max-width: 110%;
  right: -5%; 
  box-shadow: 2px 2px 2px 2px whitesmoke;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.content-about-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.text-overlay {
  position: relative;
  z-index: 2;
}

.condensed-spacing {
    line-height: 1.3;
    text-align: justify;
    margin-top: 0.5em; 
    margin-bottom: 0.5em; 
    padding: 0; 
    overflow-wrap: break-word; 
    word-spacing: -0.05em; 
}

@keyframes section-animation {
  0% {
    width: 0;
  }
  15% {
    width: 100%;
  }
  85% {
    opacity: 1;
  }
  90% {
    width: 100%;
    opacity: 0;
  }
  to {
    width: 0;
    opacity: 0;
  }
}



.poster-mobile {
    display: none;
}

.poster-desktop {
    display: block;
}

@media (max-width: 768px) {
    .poster-mobile {
        display: block;
        margin-bottom: 40px;
    }
    .poster-desktop {
        display: none;
    }
}



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

@keyframes updown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


#tentang-kami {
  position: relative;
}

.about .section-heading-rounded {
  line-height: 1;
  color: var(--main-color);
}


@media (max-width: 768px) {
  .about .section-heading-rounded {
      margin-top: 10px;
      font-size: 30px;
  }
}


.video-section-full-v2 {
  position: relative;
  padding: 50px;
  overflow-x: hidden;
}


.video-section-full-v2::before,
.video-section-full-v2::after {
  content: ''; 
  position: absolute;
  background-color: var(--main-color);
}

.video-section-full-v2::before {
  top: 30px;
  left: 0;
  height: 80%;
  width: 10px; 
}

.video-section-full-v2::after {
  top: 30px;
  left: 0;
  width: 80%;
  height: 10px; 
}


@media (max-width: 768px) {
    .video-section-full-v2 {
      padding: 0;
    }
    .video-section-full-v2::before {
      display: none;
    }
}

.video-section-full-v2 .video-section-full {
  position: relative;
  z-index: 1;
  margin-left: -7%; 
}

@media (max-width: 768px) {
  .content-wrapper {
    max-width: 100%;
    right: 0;
  }
  .video-section-full-v2 {
    padding: 0 5px;
  }
  .video-section-full-v2 .video-section-full {
    margin-left: 0;
  }
}


/* statistik bisnis */

.counter-one {
  position: relative;
  display: block;
  z-index: 1;
}


.counter-one__single {
  display: flex;
  align-items: center;
  flex-wrap: nowrap; 
}

.counter-one__icon {
  flex: 0 0 auto; 
}

.counter-one__icon img {
  width: 100px; 
  height: auto; 
  display: block; 
  opacity: 0.5;
}

.counter-one__content-box {
  flex: 1; 
}


.counter-one__icon img {
  width: 100px;
  position: relative;
  display: inline-block;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.counter-one__single:hover .counter-one__icon img {
  transform: scale(.9);
}

.counter-one__content-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.counter-one__count-box h2{
  font-size: 60px;
  margin-bottom: 20px;
  position: relative;
  display: block;
  color: #fff;
}

@media (max-width: 768px) {
  .counter-one__count-box h2 {
    font-size: 30px;
  }
}

.counter-one__text {
  margin-top: 1px;
  color: #fff;
}












.layanan {
  overflow: hidden;
}

.layanan .layanan-home .section-heading-rounded {
  text-align: center;
  margin: 0;
}


.layanan .layanan-home .section-welcome {
  font-family: var(--body-font-family);
}

@media (max-width: 768px) {
  .layanan .layanan-home .section-heading-rounded {
    margin: 0;
    padding: 0;
  }
  .layanan .layanan-home .section-welcome {
    margin-top: 0;
  }
}


.layanan .layanan-home .services-one__single {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  text-align: center;
  border: 1px solid transparent;
  margin-bottom: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.layanan .layanan-home .services-one__single-inner {
  position: relative;
  display: block;
  padding: 30px;
  overflow: hidden;
}


.layanan .layanan-home .services-one__single:hover {
  border: 1px solid var(--main-color);
}

.layanan .layanan-home .services-one__img-box {
  position: relative;
  display: block;
  width: 196px;
  margin: 0 auto;
}

.layanan .layanan-home .services-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  z-index: 1;
}

.layanan .layanan-home .services-one__img:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  background-color: rgb(0, 0, 0, 0.3);
  transform: scale(0);
  transition: all 500ms ease;
  z-index: 1;
}

.layanan .layanan-home .services-one__single:hover .services-one__img:before {
  transform: scale(1);
}

.layanan .layanan-home .services-one__img img {
  width: 100%;
  border-radius: 50%;
  transition: all 500ms ease;
}

.layanan .layanan-home .services-one__single:hover .services-one__img img {
  transform: scale(1.2)
}

.layanan .layanan-home .services-one__icon {
  position: absolute;
  bottom: -40px;
  width: 91px;
  left: 50%;
  right: 0;
  height: 91px;
  background-color: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  padding: 10px;
  z-index: 2;
}

.layanan .layanan-home .services-one__icon img {
  position: relative;
  display: inline-block;
  width: 100px;
  filter: brightness(0) invert(1);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.layanan .layanan-home .services-one__single:hover .services-one__icon img {
  transform: scale(.9);
}

.layanan .layanan-home .services-one__title {
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: 58px;
}

.layanan .layanan-home .services-one__title a {
  color: var(--text-color);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.layanan .layanan-home .services-one__title a:hover {
  color: var(--second-color);
}


.layanan .layanan-home .services-one__btn-box {
  position: relative;
  display: block;
  padding-top: 20px;
  border-top: 1px solid var(--second-color);
}

.layanan .layanan-home .services-one__btn {
  font-size: 16px;
  font-weight: 600;
  line-height: 12px;
  text-transform: uppercase;
  color: var(--text-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.layanan .layanan-home .services-one__btn:hover {
  color: var(--second-color);
}

.layanan .layanan-home .services-one__btn i {
  position: relative;
  margin-left: 10px;
  font-size: 16px;
}





.nb ul, .nb ol {
  padding-left: 20px;
  list-style-position: inside;
  list-style: circle;
}

.nb li {
  margin-bottom: 5px; 
}






.testimoni {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(to bottom, #FAF3F3 50%, #FFFFFF 50%);
}


.testimoni .section-heading-rounded {
  text-align: center;
  margin-bottom: 0;
}


.testimoni .section-welcome {
  font-family: var(--body-font-family);
  text-align: center; 
  margin-top: 0;
}

@media (max-width: 768px) {
    .testimoni .section-heading-rounded {
      padding: 0;
      margin: 0;
    }
    .testimoni .section-welcome {
      text-align: center; 
      margin-top: 0 !important;
    }
}

.testimoni .testimonial-one__single {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 2px 2px 2px 2px whitesmoke;
  padding: 40px 40px 40px;
}

.testimoni .testimonial-one__icon-quote {
  position: absolute;
  top: 52px;
  right: 60px;
}

.testimoni .testimonial-one__icon-quote img {
  width: auto;
}

.testimoni .testimonial-one__single-inner {
  position: relative;
  display: block;
}

.testimoni .testimonial-one__rating {
  position: relative;
  display: flex;
  align-items: center;
}

.testimoni .testimonial-one__rating span {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--main-color);
}

.testimoni .testimonial-one__rating span+span {
  margin-left: 5px;
}

.testimoni .testimonial-one__text-2 {
  font-size: 16px;
  line-height: 34px;
  margin-top: 19px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--second-color);
  margin-bottom: 30px;
}

.testimoni .testimonial-one__client-info {
  position: relative;
  display: flex;
  align-items: center;
}

.testimoni .testimonial-one__client-img {
  position: relative;
  display: block;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  overflow: hidden;
}

.testimoni .testimonial-one__client-img img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.testimoni .testimonial-one__content {
  position: relative;
  display: block;
  margin-left: 20px;
}

.testimoni .testimonial-one__client-name {
  font-size: 16px;
  line-height: 25px;
}

.testimoni .testimonial-one__client-sub-title {
  font-size: 12px;
  line-height: 22px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.testimoni .testimonial-one__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimoni .testimonial-one__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.testimoni .testimonial-one__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}






.subs-center {
  position: relative;
  display: block;
  padding: 30px 0 30px;
  z-index: 1;
}

.subs-center__inner {
  position: relative;
  display: block;
  border: 3px solid #807f7f;
  padding: 20px 0 20px;
  max-width: 1795px;
  margin: 0 auto;
}

.subs-center__content {
  position: relative;
  display: block;
}

.subs-center__img {  
  position: relative;
  display: block;
  width: 100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .subs-center__img {  
    width: 70px;
  }
}

.subs-center__img img {
  width: 100%;
  filter: brightness(0) invert(1);
}

.subs-center__title {
  font-size: 30px;
  line-height: 1.4;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 35px;
}


@media (max-width: 768px) {
  .subs-center__title {
    font-size: 20px;
  }
}











.blog-details__content .gallery-item {
  position: relative;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
  flex-grow: 1;
  overflow: hidden;
}


.blog-details__content .gallery-item .card .image {
  position: relative;
  overflow: hidden;
}

.blog-details__content .gallery-item .card .image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.blog-details__content .gallery-item .card .image img {
  transition: transform 0.3s ease-in-out;
}

.blog-details__content .gallery-item .card .image .description {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

    .blog-details__content .gallery-item .card .image .description .text{
        font-size: 12px;
    }

.blog-details__content .gallery-item .card .image .description .btn{
  background-color: rgb(8, 165, 209, 0.4);;
}

.blog-details__content .gallery-item:hover {
  transform: translateY(-5px);
}

.blog-details__content .gallery-item:hover .card .image::after {
  opacity: 1;
}

.blog-details__content .gallery-item:hover .card .image img {
  transform: scale(1.1);
}

.blog-details__content .gallery-item:hover .card .image .description {
  opacity: 1;
  z-index: 9999;
}



















/* contact */
.contact .contact-home .section-heading-rounded {
  display: flex;
  justify-content: start;
  font-size: 35px;
  text-align: start;
  margin-bottom: 0;
}

.contact .contact-home .contact-maps {
  z-index: 10;
}

.contact .contact-home .contact-maps .mapouter {
    padding: 10px;
}

@media(max-width: 768px) {
    .contact .contact-home .section-heading-rounded {
      margin: 0 !important;
      padding: 0 !important;
    }
    .contact .contact-home .contact-maps .mapouter{
      padding: 0;
    }
}

.contact .contact-home .contact-maps::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 45px;
  left: 40px;
  width: 90%;
  height: 90%;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 10%, var(--second-color) 10%, transparent 15%),
    radial-gradient(circle at 90% 90%, var(--second-color) 10%, transparent 15%);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); /* Efek bayangan 3D */
} 

@media (max-width: 768px) {
  .contact .contact-home .contact-maps iframe{
    height: 300px;
  } 
  .contact .contact-home .contact-maps::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 55px;
    left: 55px;
    width: 85%;
    height: 85%;
    z-index: -1;
    background:
      radial-gradient(circle at 10% 10%, var(--second-color) 10%, transparent 15%),
      radial-gradient(circle at 90% 90%, var(--second-color) 10%, transparent 15%);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); /* Efek bayangan 3D */
  } 
}

@media (max-width: 768px) {
    .contact .contact-home .section-heading-rounded {
      margin-top: 30px;
      font-size: 30px;
    }
    .contact .contact-home span {
      margin-top: 20px;
    }
}

.contact .contact-home .contact-content {
  /* border: 1px solid var(--second-color); */
  /* box-shadow: 2px 2px 2px 2px grey; */
  border-radius: 10px;
  position: relative; /* Ensure the container is positioned relative for the pseudo-elements */
}

.contact-block {
  padding: 30px 30px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  /* background-color: var(--main-color); */
  border-radius: 10px;
  color: black;
  box-shadow: 2px 2px 2px 2px grey;
}


.contact-icon i:before {
  font-size: 36px;
  color: var(--second-color);
  padding: 10px;
  border-radius: 20px;
}

.contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px; /* Make sure the container is square */
  height: 64px; /* Make sure the container is square */
  border-radius: 50%; /* Create a circular shape */
  font-size: 24px;
  color: black; /* Ensure the icon color is visible */
}

.contact-icon i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; /* Full width of the container */
  height: 100%; /* Full height of the container */
  border-radius: 50%; /* Create a circular shape */
  background-color: white; /* Optional: Background color for the icon area */
  font-size: 36px;
  color: var(--second-color);
  border: 2px solid var(--second-color);
}


.contact-details {
  margin-left: 30px;
}

.contact-details h3{
  font-family: var(--body-font-family);
}

@media (max-width: 768px) {
  .contact-block {
      flex-direction: column;
      text-align: center;
  }

  .contact-icon {
      margin-bottom: 10px;
  }

  .contact-details {
      margin-left: 0;
  }
}




.contact-btn {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 10rem;
  color: #fff;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  border-radius: 10rem;
  z-index: -2;
}

.contact-btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: black; 
  transition: all .3s;
  border-radius: 10rem;
  z-index: -1;
}

.contact-btn:hover {
  color: #fff;
}

.contact-btn:hover::before {
  width: 100%;
}












/* .blog-details__img {
  padding: 70px;
} */

@media (max-width: 768px) {
  .blog-details__img {
    padding: 0;
  }
}

.blog-details__content h3 {
  font-family: var(--body-font-family);
}



.m-b30 {
  margin-bottom: 30px;
}
.bg-white {
  background-color: #fff!important;
}
.sx-tilte {
  position:relative;
  color: var(--main-color);
  font-weight: 700;
  font-size: 45px;
  font-family: var(--title-font-family);
}

.cs_gap_y_24 {
  gap: 24px 0;
}

.news-section {
  overflow: hidden;
  position: relative;
}

.news-block {
  margin-bottom: 30px;
  position: relative;
}
.news-block .inner-box {
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.news-block .inner-box:hover .image-box .image a:after {
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.news-block .inner-box:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.news-block .inner-box:hover .read-more {
  width: 100%;
  left: 0%;
  opacity: 1;
}
.news-block .image-box {
  position: relative;
}
.news-block .image-box .image {
  border-radius: 10px 10px 0 0;
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
}
.news-block .image-box .image img {
  border-radius: 10px 10px 0 0;
  display: block;
  width: 100%;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.news-block .image-box .image a:after {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  right: 51%;
  top: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.news-block .image-box .date {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--main-color);
  color: var(--white-color);
  font-size: 16px;
  font-weight: 700;
  height: 60px;
  letter-spacing: 0.1em;
  line-height: 16px;
  position: absolute;
  right: 20px;
  top: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 60px;
  z-index: 1;
}
.news-block .image-box .date span.month {
  font-size: 12px;
  font-weight: 400;
}
.news-block .image-box .date b {
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: 700;
}
.news-block .image-box .date:before {
  border-top: 10px solid transparent;
  border-right: 10px solid var(--second-color);
  content: "";
  left: -10px;
  position: absolute;
  top: 0;
}
.news-block .image-box .date:after {
  border-top: 10px solid transparent;
  border-left: 10px solid var(--second-color);
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
}
.news-block .lower-content {
  border-radius: 0 0 10px 10px;
  padding: 25px 40px 35px;
  position: relative;
}
.news-block .post-info {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
}
.news-block .post-info li {
  color: #767676;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  margin-right: 14px;
  position: relative;
}
.news-block .post-info li i {
  color: var(--main-color);
  font-size: 14px;
  margin-right: 5px;
}
.news-block .title {
  margin-bottom: 0;
  display: block;
  position: relative;
}
.news-block .title a {
  display: inline-block;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color:var(--text-color);
}
.news-block .title a:hover {
  color: var(--main-color);
}
.news-block .read-more {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--second-color);
  border-radius: 0 0 10px 10px;
  bottom: -20px;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  left: 50%;
  line-height: 20px;
  opacity: 0;
  padding: 10px 40px;
  position: absolute;
  width: 0%;
  white-space: nowrap;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

/***

====================================================================
    Blog Details
====================================================================

***/
.blog-details {
  display: block;
  position: relative;
}

.blog-details__left {
  display: block;
  position: relative;
  border: 1px solid whitesmoke;
  box-shadow: 2px 2px 2px 2px #F8F8F8;
  padding: 20px;
}

.blog-details__text-2 {
  text-align: justify;
}

.blog-details__meta li + li {
  margin-left: 18px;
}
.blog-details__meta li a {
  color: #777;
  font-size: 15px;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.blog-details__meta li a:hover {
  color: var(--second-color);
}
.blog-details__meta li a i {
  color: var(--second-color);
  margin-right: 6px;
}

.blog-details__title {
  font-size: 30px;
  line-height: 40px;
  margin-top: 5px;
  margin-bottom: 21px;
  color:var(--text-color);
}


@media (max-width: 768px) {
    .blog-details__title {
        font-size: 22px;
        line-height: 1.3;
    }
}

.blog-details__bottom {
  /* border-top: 1px solid #ece9e0; */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* margin-top: 49px; */
  padding-top: 10px;
}
@media only screen and (max-width: 767px) {
  .blog-details__bottom {
    gap: 30px;
  }
}
.blog-details__bottom p {
  margin: 0;
}

.blog-details__tags span {
  color: #0e2207;
  font-size: 20px;
  margin-right: 14px;
  font-weight: var(--body-font-weight-bold);
}
.blog-details__tags a {
  background-color: var(--second-color);
  border-radius: 35px;
  color: var(--text-color-bg-theme-color1);
  display: inline-block;
  font-size: 12px;
  font-weight: var(--body-font-weight-bold);
  padding: 5px 30px 5px;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.blog-details__tags a:hover {
  background-color: var(--second-color);
  color:var(--second-color);
  text-decoration: none;
}
.blog-details__tags a + a {
  margin-left: 6px;
}

.blog-details__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 10;
}
.blog-details__social-list a {
  position: relative;
  height: 43px;
  width: 43px;
  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;
  text-align: center;
  color: var(--white-color);
  background-color: var(--second-color);
  font-size: 15px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}
.blog-details__social-list a:hover {
  color:var(--second-color);
  background-color: transparent;
}
.blog-details__social-list a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
.blog-details__social-list a:after {
  background-color: var(--second-color);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}
.blog-details__social-list a + a {
  margin-left: 10px;
}

.blog-details__pagenation-box {
  display: block;
  margin-bottom: 53px;
  overflow: hidden;
  position: relative;
}

.blog-details__pagenation {
  position: relative;
  display: block;
}
.blog-details__pagenation li {
  position: relative;
  float: left;
  font-size: 20px;
  background-color: var(--gray);
  border-radius: 10px;
  color: #0e2207;
  color: var(--text-color);
  font-weight: var(--body-font-weight-bold);
  line-height: 30px;
  max-width: 370px;
  padding-bottom: 52px;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 52px;
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.blog-details__pagenation li:hover {
  background-color: var(--second-color);
  color:var(--second-color);
}
.blog-details__pagenation li + li {
  margin-left: 30px;
}

/*** 

====================================================================
Sidebar
====================================================================

***/
.sidebar {
  background-color: #F7F7F7;
  position: sticky;
  top: 100px;
}
@media (max-width: 991px) {
  .sidebar {
    margin-top: 50px;
  }
}
.sidebar__single + .sidebar__single {
  margin-top: 30px;
}

.sidebar__title {
  font-family: var(--body-font-family);
  margin: 0;
  font-size: 20px;
  margin-bottom: 5px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--second-color);
}

.sidebar__post {
  position: relative;
  display: block;
  padding-top: 30px;
  color: var(--text-color);
  border: 1px solid whitesmoke;
  box-shadow: 3px 3px 3px 3px whitesmoke;
  overflow: hidden;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .sidebar__post {
    padding: 30px;
  }
}
.sidebar__post .sidebar__title {
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  .sidebar__post .sidebar__title {
    margin-left: 0;
  }
}
.sidebar__post .sidebar__post-list {
  margin: 0;
}
.sidebar__post .sidebar__post-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 20px 17px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media only screen and (max-width: 767px) {
  .sidebar__post .sidebar__post-list li {
    padding: 16px 0;
  }
}
.sidebar__post .sidebar__post-list li:hover {
  background-color: #ffffff;
  border-radius: 10px;
}
.sidebar__post .sidebar__post-list .sidebar__post-image {
  margin-right: 20px;
  -webkit-box-flex: 70px;
      -ms-flex: 70px 0 0px;
          flex: 70px 0 0;
}
.sidebar__post .sidebar__post-list .sidebar__post-image > img {
  width: 80px;
  border-radius: 10px;
}
.sidebar__post .sidebar__post-list .sidebar__post-content {
  position: relative;
  top: -3px;
}
.sidebar__post .sidebar__post-list .sidebar__post-content h3 {
  font-family: var(--body-font-family);
}
.sidebar__post .sidebar__post-list .sidebar__post-content h3 a {
  color: #0e2207;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
.sidebar__post .sidebar__post-list .sidebar__post-content-meta {
  font-size: 14px;
  font-weight: 500;
  color: grey;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
/* 
.sidebar__post .sidebar__post-list .sidebar__post-content-meta a{
  color: var(--second-color) !important;
} */

.sidebar__post .sidebar__post-list .sidebar__post-content-meta i {
  color: grey;
  font-size: 13px;
  padding-right: 5px;
}
.sidebar__tags {
  position: relative;
  display: block;
  color: var(--text-color);
  background-color: var(--gray);
  padding: 46px 45px 50px;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .sidebar__tags {
    padding: 30px;
  }
}
.sidebar__tags .sidebar__title {
  margin-left: 5px;
  margin-bottom: 25px;
}

.sidebar__tags-list {
  margin-top: -10px;
}
.sidebar__tags-list a {
  font-size: 14px;
  color: #0e2207;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: #ffffff;
  display: inline-block;
  padding: 5px 28px 5px;
  margin-left: 5px;
  border-radius: 30px;
}
.sidebar__tags-list a:hover {
  color: var(--text-color-bg-theme-color1);
  background: var(--second-color);
}
.sidebar__tags-list a + a {
  margin-left: 5px;
  margin-top: 10px;
}



/***

==================================================================
    Main Footer
==================================================================

***/
.footer-widget .logo img {
  max-width: 200px;
}

@media (max-width: 768px) {
    .footer-widget .logo img {
      max-width: 200px;
    }
}

.about-company-widget > p {
  margin-bottom: 30px;
}
.about-company-widget ul.social-link li {
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}
.about-company-widget ul.social-link li a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: var(--main-color);
  color: var(--white-color);
  font-size: 17px;
}
.about-company-widget ul.social-link li a:hover {
  background-color: var(--second-color);
  color: #fff;
  border-color: transparent;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .footer-nav-widget.pl-lg-20 {
    padding-left: 0px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .footer-nav-widget.pl-lg-55 {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-nav-widget.pl-lg-55 {
    padding-left: 55px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .footer-nav-widget.pl-lg-70 {
    padding-left: 50px;
  }
}
.footer-nav-widget .footer-nav-content ul.footer-nav li {
  font-weight: 400;
}
.footer-nav-widget .footer-nav-content ul.footer-nav li a {
  color: var(--white);
}
.footer-nav-widget .footer-nav-content ul.footer-nav li:not(:last-child) {
  margin-bottom: 15px;
}

.contact-info-widget .contact-info-box p i {
  color: #fff;
}
.contact-info-widget .contact-info-box h4.title {
  font-family: var(--body-font-family);
  color: #fff;
  font-size: 22px;
  margin-bottom: 28px;
}
.contact-info-widget .contact-info-box p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 20px;
}
.contact-info-widget .contact-info-box p i {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 15px;
  -webkit-margin-end: 12px;
          margin-inline-end: 12px;
}
.contact-info-widget .contact-info-box p span, .contact-info-widget .contact-info-box p a {
  margin-top: -5px;
  line-height: 26px;
  color: #fff;
}
/* Copyright Area */
.copyright-area {
  padding: 20px 0;
  text-align: center;
}

.copyright-text p {
    font-size:10px;
}

@media (max-width: 991px) {
  .copyright-area .copyright-nav, .copyright-area .copyright-text {
    text-align: center;
  }

}

/* Footer Default  */
.section-title {
  color: var(--white-color);
  margin-bottom: 0;
  font-weight: 600;
  font-size: 65px;
  font-family: var(--title-font-family);
  line-height: 60px;
  max-width: 700px;
}

.footer-default {
  position: relative;
  overflow: hidden;
}

@keyframes float-bob-x {
  0% {
    transform: translateX(-30px);
  }

  50% {
      transform: translateX(-10px);
  }
}

.footer-default::after {
  position: absolute;
  content: url(../../assets/images/footer-ornament1.webp);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.3;
  animation: float-bob-x 6s infinite;
}

.footer-default::before {
  position: absolute;
  content: url(../../assets/images/footer-ornament2.webp);
  width: auto; 
  height: 100%;
  top: 0;
  right: 0; 
  z-index: -1;
  opacity: 0.3;
  animation: updown 6s infinite;
}

@media (max-width: 768px) {
  .footer-default::after {
    content: url(../../assets/images/footer-ornament1.webp);
    top: 0;
    left: 0;
  }
  
  .footer-default::before {
    display: none;
  }
}



.footer-default .contact a,  .footer-default .contact i, .footer-default .contact {
  color: #fff;
}

.footer-default .nav-bottom li a {
  font-size: 16px;
  z-index: 2;
  position: relative; 
  color: #fff;
}

@media (max-width: 768px) {
    .footer-default .nav-bottom li a{
        font-size: 12px !important;
    }
}

.footer-default .about-company-widget ul.social-link li {
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}
.about-company-widget ul.social-link li a  {
  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;

}

ul.social-link li {
  display: inline-block;
}
.footer-default .copyright-area {
  color: #fff;
  border-top: 1px solid rgb(70, 68, 68);
}
.footer-default .copyright-area .copyright-nav ul li a {
  color: #fff;
}


@-webkit-keyframes float-bob-x {
  0% {
    transform: translateX(-30px);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(-30px);
  }
}
@keyframes float-bob-x {
  0% {
    transform: translateX(-30px);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(-30px);
  }
}
.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    transform: translateY(-30px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    transform: translateY(-30px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-30px);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}



.title-area {
  margin-bottom: calc(var(--section-title-space) - 10px);
  position: relative;
  z-index: 2;
}

.shadow-title {

  font-size: 74px;
  font-weight: 900;
  line-height: 1;
  /* background-image: -webkit-linear-gradient(top, rgba(226,232,250,0.7) 0%, rgba(226,232,250,0) 88.54%);
  background-image: linear-gradient(180deg, rgba(226,232,250,0.7) 0%, rgba(226,232,250,0) 88.54%); */
  background-image: -webkit-linear-gradient(top, rgba(0,128,105,0.7) 0%, rgba(0,128,105,0) 88.54%);
  background-image: linear-gradient(180deg, rgba(0,128,105,0.7) 0%, rgba(0,128,105,0) 88.54%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin: -0.55em 0 -0.45em -0.25em;
}

.sub-title:has(img) {
  margin-top: 0;
}

.sub-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--main-color);
  margin-bottom: 30px;
  line-height: 24px;
  margin-top: -0.34em;
  text-transform:uppercase;
  font-family: "Libre Baskerville", serif;
}

.icon-masking {
  position: relative;
  display: inline-block;
  height: auto;
  width: auto;
}
.me-2 {
  margin-right: 0.5rem!important;
}

.icon-masking .mask-icon {
  position: absolute;
  height: 100%;
  width: 100%;
  mix-blend-mode: hue;
  /* background: var(--second-color); */
  top: 0;
}


.sec-title-2 {
  margin-bottom: calc(var(--section-title-space) - 10px);
  text-transform: capitalize;
  color: var(--text-color);
  font-size: 70px;
    font-family: var(--title-font-family);
  font-weight: 700; 
}

.text-theme {
  color: var(--main-color) !important;
}


.bg-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.text-left {
  text-align: left !important;
  position: relative;
  z-index: 2;
}

.sec-btn {
  margin-bottom: var(--section-title-space);
}





.mrb-0 {
  margin-bottom: 0;
}


.faq-title {
    font-size: 54px;
    line-height: 1.2;
    color:var(--text-color);
    font-weight:700;
}
.mrb-30 {
    margin-bottom: 30px;
}
.mrb-30 {
    margin-bottom: 30px;
}

/*========================================*/
/*----------- [_Social_List] -------------*/
/*========================================*/
.social-list li {
  display: inline;
  margin-right: 5px;
}
.social-list li a {
  background: #323c5b;
  height: 42px;
  width: 42px;
  display: inline-block;
  color: var(--white-color);
  text-align: center;
  border-radius: 50%;
  line-height: 42px;
  font-size: 16px;
}
.social-list li a:hover {
  background: var(--main-color);
}
.social-list.list-primary-color li a {
  background: var(--main-color);
}
.social-list.list-primary-color li a:hover {
  background: var(--second-color);
}
.social-list.list-flat li a {
  border-radius: 0;
}
.social-list.list-lg li a {
  height: 48px;
  width: 48px;
  font-size: 18px;
  line-height: 48px;
}
.social-list.list-sm li {
  margin-right: 10px;
  height: 34px;
  width: 34px;
  font-size: 14px;
  line-height: 34px;
}
.social-list.list-sm li a {
  height: 34px;
  width: 34px;
  font-size: 14px;
  line-height: 34px;
}
.mrb-80 {
  margin-bottom: 80px;
}

.mrb-30 {
  margin-bottom: 30px;
}
.mrb-35 {
  margin-bottom: 35px;
}
.faq-title {
  font-size: 54px;
  line-height: 1.2;
}

ul, ol {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

.bg-overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



@keyframes changeLetter {
  0% {
    width: 10%;
  }
  100% {
    width: 80%;
  }
}


