@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Gilda+Display&display=swap');

/*  ======= Common Styles ======= */
:root {
  --yellow-color    :#FF5500;
  --main-color      : #A67C00;
  --second-color    : #FFDC73;
  --third-color     : #CDF5C2;
  --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: "Gilda Display", serif;
  --title-font-family: "Gilda Display", serif;
  --body-font-family: "Barlow", sans-serif;  
}

* {
  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: 5px;
  font-size: 18px;
  font-weight: 600;
  position: relative; 
}

.badge-title::after,
.badge-title::before {
  content: '';
  position: absolute;
  top: 50%; 
  width: 30%; 
  height: 2px; 
  background: var(--main-color);
}

.badge-title::before {
  left: -35%; 
}

.badge-title::after {
  right: -35%; 
}


.section-heading-rounded {
  font-size: 30px;
  color: #000;
  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-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-section1.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
}

@media (max-width: 768px) {
    .first-background-section::before {
      opacity: 0.5;
    }

}

.second-background-section {
  position: relative;
  z-index: 1;
  background-color: rgb(0, 0, 0, 0.9);
}

.second-background-section::before {
  content: '';
  position: absolute;
  background: 
    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;
  opacity: 0.2  ;
}


.cta-parallax-background {
  background: 
    linear-gradient(rgb(0, 0, 0, 0.7), rgb(0, 0, 0, 0.7)),
    url('../../assets/images/subscribe-background-section.webp');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}


.footer-background {
  position: relative;
  z-index: 1;
}

.footer-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  background: url(../../assets/images/footer-background.webp) no-repeat center center;
  background-size: cover;
  z-index: -1;
  opacity: 0.5;
}

.footer-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  background: rgb(0, 0, 0, 0.8); 
  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;
}



.swiper-wrapper .swiper-slide .slider-content-wrap a img, .swiper-wrapper .swiper-slide  .slider-content-wrap a source {
  width: 100% !important;
}


/* ======= 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, 220, 115, 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;
    /* width: 45px;
    height: 45px; */
  }
}





/*  ======= 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);
    }
}

.header-menu-wrap .btn-booking .icon{
  background-color: var(--main-color);
  padding: 15px;
  color: #fff;
  transition: background-color 0.3s ease-in-out;
}

.header-menu-wrap .btn-booking:hover .icon{
  background-color: #000;
  color: #fff;
}

.header-menu-wrap .btn-booking .icon i{
  font-size: 20px;
}


.header-menu-wrap .btn-booking span{
  font-size: 15px;
  font-weight: 700;
}






.btn-theme {
  background: var(--main-color);
  color: #fff;
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  text-align: center;
  font-weight: 700;
  z-index: 3;
  position: relative;
  transition: all 0.3s ease-out 0s;
  overflow: hidden;
}
.btn-theme::before {
  position: absolute;
  content: "";
  position: absolute;
  transition: all 0.5s ease-out 0s;
  top: 0;
  left: 0;
  background: #000;
  width: 0;
  height: 100%;
  z-index: -1;
  opacity: 0;
}
.btn-theme::after {
  position: absolute;
  content: "";
  position: absolute;
  transition: all 0.5s ease-out 0s;
  bottom: 0;
  right: 0;
  background: #000;
  width: 0;
  height: 100%;
  z-index: -1;
  opacity: 0;
}
.btn-theme:hover {
  color: #fff;
}
.btn-theme:hover::before {
  width: 50%;
  opacity: 1;
}
.btn-theme:hover::after {
  width: 50%;
  opacity: 1;
}
.btn-theme:focus {
  color: #fff;
}




/* v2 */
.btn-themev2 {
  background: transparent;
  color: var(--main-color);
  border: 2px solid var(--main-color);
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  text-align: center;
  font-weight: 700;
  z-index: 3;
  position: relative;
  transition: all 0.3s ease-out 0s;
  overflow: hidden;
}
.btn-themev2::before {
  position: absolute;
  content: "";
  position: absolute;
  transition: all 0.5s ease-out 0s;
  top: 0;
  left: 0;
  background: var(--main-color);
  width: 0;
  height: 100%;
  z-index: -1;
  opacity: 0;
}
.btn-themev2::after {
  position: absolute;
  content: "";
  position: absolute;
  transition: all 0.5s ease-out 0s;
  bottom: 0;
  right: 0;
  background: var(--main-color);
  width: 0;
  height: 100%;
  z-index: -1;
  opacity: 0;
}
.btn-themev2:hover {
  color: #fff;
}
.btn-themev2:hover::before {
  width: 50%;
  opacity: 1;
}
.btn-themev2:hover::after {
  width: 50%;
  opacity: 1;
}
.btn-themev2:focus {
  color: #fff;
}









.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: 450px;
    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 10px;
  height: 80px;
  line-height: 80px;
  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: 60px;
  bottom: 0;
  left: 0;
  background-color: var(--main-color);
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.header-menu-wrap ul li > a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px; 
  top: 65px;
  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);
  }
}
@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;
}

.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: #000;
  display: inline-block;
  margin: 0;
  padding: 7px 0;
}

.top-bar .top-social li {
  font-size: 15px;
}

@media (max-width: 768px) {
.top-bar .top-left li {
  font-size: 8px;
}
.top-bar .top-social li {
  font-size: 10px;
}
}

.top-bar .top-left li a {
  color: #fff;
  text-decoration: none;
  margin-left: 10px;
}

.top-bar .top-left .top-contact li i {
color: #fff;
background-color: var(--second-color);
padding: 5px;
border-radius: 50%;
}

.top-bar .top-social {
  padding: 7px 20px;
}

@media (max-width: 768px) {
  .top-bar .top-social {
    padding: 7px 0;
  }
}

.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;
}

/* Header 1 */
.viewport-sm .primary-header-one {
}
.primary-header-one .header-menu-wrap {
  margin-left: auto;
}


@media (max-width: 992px) {
  
  .header-2 .sticky-header .primary-header-inner {
    padding: 10px 0;
  }
  .primary-header-inner {
    padding: 10px 0;
  }
  .sticky-header .primary-header-inner {
  padding: 10px 0;
  }
  .header-1 .header-right a.header-btn {
    margin-left: 15px;
    margin-right: 0;
  }
}






/* 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;
  padding: 15px;
  background-color: var(--main-color);
}

@media (max-width: 768px) {
  .breadcumb {
    position: relative;
    padding: 10px;
  }
}

.breadcumb .row h3 {
  font-size: 25px;
}

@media (max-width: 768px) {
  .breadcumb .row h3 {
    font-size: 22px;
  }
}

.breadcumb .d-flex {
  gap: 10px;
}

.breadcumb .d-flex .line{
  font-weight: 400; 
  font-size: 20px;
  color: #fff;
}

@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);
}



.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: 30px;
}


.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-item.style-2 {
  background: var(--main-color);
  padding: 25px;
  position: relative;
  z-index: 1; 
  transition: 0.5s;
}

.kelebihan-item.style-2 img{
  width: 100%;
}

.kelebihan-item.style-2::before {
  content: '';
  position: absolute;
  background-color: #fff;
  width: 100%;
  height: 100%;
  top: 10px;
  left: 10px;
  z-index: -1; 
}


@media (max-width: 768px) {
  .kelebihan-item.style-2 {
    padding: 15px;
  }
  .kelebihan-item.style-2::before {
    top: 5px;
    left: 5px;
  }
  .kelebihan-item.style-2 .icon-content{
    text-align: center;
  }
}

.kelebihan-item.style-2:hover {
	transform: translateY(-10px);
} 

.kelebihan-item.style-2 .icon-content .dez-tilte {
  font-weight: 600;
  font-size: 18px;
}

.kelebihan-item.style-2 .icon-content p{
	font-weight: 400;
	font-size: 15px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .kelebihan-item.style-2 .icon-content .dez-tilte {
    font-size: 15px;
  }
  .kelebihan-item.style-2 .icon-content p{
    font-size: 14px;
    line-height: 1.3;
  }
}

.kelebihan-item.style-2 .icon-bx-sm {
  position: relative;
  width: 80px;
  height: 80px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
	margin-bottom: 16px;
  padding: 5px;
}

@media (max-width: 768px) {
  .kelebihan-item.style-2 .icon-bx-sm {
    width: 60px;
    height: 60px;
  }
}


.kelebihan-item.style-2 .icon-bx-sm img {
  width: 100%;
  height: auto;
  transition: filter 0.3s ease;
}










/* artikel */

.artikel {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.artikel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%; 
  background: url(../../assets/images/second-background-section.webp) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  z-index: -1;
}

.artikel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%; 
  background: rgb(0, 0, 0, 0.8); 
  z-index: -1;
}

.artikel .artikel-home .section-heading-rounded {
  text-align: center;
  margin: 0;
}

.artikel .artikel-home .section-welcome {
  font-family: var(--body-font-family);
}

@media (max-width: 768px) {
  .artikel .artikel-home .section-heading-rounded {
    margin: 0;
    padding: 0;
  }
  .artikel .artikel-home .section-welcome {
    margin-top: 0;
  }
}

.artikel .badge-title::before {
  display: none;
}

.artikel .item {
  margin-bottom: 15px;
}


.artikel .item .img {
  overflow: hidden;
  width: 100%;
  height: 250px;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .artikel .item .img {
    width: 100%;
    height: 300px;
  }
}

.artikel .item .img img {
  width: 100%;
  height: auto;
  border-radius: 3px 3px 0 0;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.artikel .item:hover .img img {
  -webkit-filter: none;
  filter: none;
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
.artikel .item .wrapper {
  background-color: #fff;
  padding: 0.1px 30px 40px 30px;
  margin: -30px 10px 0 10px;
  position: relative;
  z-index: 1;
  border-radius: 3px;
  transition: all ease 0.4s;
}
.artikel .item .wrapper .date {
  margin: -20px 0 20px 0;
}
.artikel .item .wrapper .date span {
  display: inline-block;
  font-size: 14px;
  padding: 10.5px 20px;
  line-height: 1;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 5px;
}
.artikel .item .wrapper .con {
  overflow: hidden;
  position: relative;
  transition: all ease 0.4s;
  padding-bottom: 0;
}
.artikel .item .wrapper .con .category {
  margin: 0 0 15px 0;
}
.artikel .item .wrapper .con .category a {
  color: #6f7b91;
  display: inline-block;
  font-size: 14px;
  margin-right: 10px;
}
.artikel .item .wrapper .con .category a i {
  transition: all ease 0.4s;
  color: var(--main-color);
  margin-right: 5px;
  font-size: 12px;
}
.artikel .item .wrapper .con .text {
  font-size: 17px;
  color: #061138;
  font-weight: 700;
  margin: 0;
  line-height: 1.3em;
}

.artikel .item .wrapper .con .text:hover a{
  color: var(--main-color);
}


.artikel .item .wrapper .con .icon-btn {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateX(60px);
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  border: none;
  padding: 0;
  width: 45px;
  height: 45px;
  line-height: 48px;
  font-size: 13px;
  background-color: var(--main-color);
  color: #fff;
  text-align: center;
  border-radius: 50%;
  transition: all ease 0.4s;
}
.artikel .item .wrapper .con .icon-btn:hover {
  background-color: transparent;
  border: 1px solid var(--main-color);
  color: var(--main-color);
}
.artikel .item:hover .wrapper {
  margin-top: -104px;
}
.artikel .item:hover .wrapper .con {
  padding-bottom: 70px;
}
.artikel .item:hover .wrapper .con .icon-btn {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}




.overlay-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.bg-stripped {
  background-color: var(--third-color);
}

/* 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;
  z-index: 1;
}

#tentang-kami .badge-title::before {
  display: none;
}

.about .section-heading-rounded {
  line-height: 1.2;
}


@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 {
  content: ''; 
  bottom: 60px;
  left: 0;
  width: 60%;
  height: 60%;
  position: absolute;
  background-color: var(--second-color);
}


@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;
  }
}


.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 .badge-title::before {
  display: none;
}

.layanan .item {
  position: relative;
  overflow: hidden;
}
.layanan .item .img-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 350px;
}
.layanan .item .img-container img{
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .layanan .item .img-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 350px;
  }
  .layanan .item .img-container img{
    width: 100%;
    height: auto;
  }
}

.layanan .item:hover .img-container  img {
  -webkit-filter: none;
  filter: none;
  -webkit-transform: scale(1.09, 1.09);
  transform: scale(1.09, 1.09);
  -webkit-filter: brightness(70%);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
.layanan .item:hover .con {
  bottom: 0;
}
.layanan .item img {
  -webkit-transition: all .5s;
  transition: all .5s;
}
.layanan .item .category {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
}
.layanan .item .category img {
  width: 50px;
}
.layanan .item .con {
  padding: 20px;
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-align: left;
  z-index: 20;
  height: auto;
  box-sizing: border-box;
  background: -moz-linear-gradient(top, transparent 0, rgba(0, 0, 0, .1) 2%, rgba(0, 0, 0, .75) 90%);
  background: -webkit-linear-gradient(top, transparent 0, rgba(0, 0, 0, .01) 2%, rgba(0, 0, 0, .75) 90%);
  background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, .01) 2%, rgba(0, 0, 0, .75) 90%);
}

.layanan .item .con h5,
.layanan .item .con h5 a {
  position: relative;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  margin-top: 5px;
  margin-bottom: 5px;
}

.layanan .item .line {
  text-align: center;
  height: 1px;
  width: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  margin: auto 0 30px;
}
.layanan .item:hover .line {
  width: 100%;
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: ease-in-out;
}

.layanan .item .con .booking .btn-theme {
  opacity: 0;
  transition: opacity .3s ease;
}

.layanan .item:hover .con .booking .btn-theme {
  opacity: 1;
  transition: opacity .3s ease;
}




.nb ul, .nb ol {
  padding-left: 20px;
  list-style-position: inside;
  list-style: circle;
}

.nb li {
  margin-bottom: 5px; 
}


/* .testimoni */

.testimoni {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.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);
  padding: 40px 40px 40px;
}

.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(--second-color);
}

.testimoni .testimonial-one__rating span+span {
  margin-left: 5px;
}

.testimoni .testimonial-one__text-2 {
  font-size: 16px;
  margin-top: 19px;
}

.testimoni .testimonial-one__single .testimonial-one__single-inner .posted-info {
  gap: 20px;
}

.testimoni .testimonial-one__single .testimonial-one__single-inner .posted-info .google-img {
  width: 40px;
  height: 40px;
} 

.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: 50px;
  height: 50px;
  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: 14px;
}

.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;
}



.gallery {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.gallery .section-heading-rounded {
  text-align: center;
  margin-bottom: 0;
}

.gallery .section-welcome {
  font-family: var(--body-font-family);
  text-align: center; 
  margin-top: 0;
}

@media (max-width: 768px) {
    .gallery .section-heading-rounded {
      padding: 0;
      margin: 0;
    }
    .gallery .section-welcome {
      text-align: center; 
      margin-top: 0 !important;
    }
}


.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;
  overflow: hidden;
}

.gallery-item .card {
  position: relative;
}

.gallery-item .card .image {
  position: relative;
  overflow: hidden;
}

.gallery-item .card .image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: height 0.3s ease-in-out;
}

.gallery-item .card .img-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.gallery-item .card .image img {
  transition: transform 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item .card .image .description {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 24px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 99;
}

.gallery-item .card .image .description .icon {
  font-size: 28px;
  color: white;
  z-index: 99;
}

.gallery-item:hover .card .image::after {
  height: 100%;
}

.gallery-item:hover .card .image .description {
  opacity: 1;
}

.gallery-item:hover .card .image img {
  transform: scale(1.1);
}


@media (max-width: 768px) {
  .gallery-item .card .img-container {
    width: 100%;
    height: 150px;
  }

  .gallery-item .card .image img {
    height: 100%;
    width: 100%;
  }
  
  .gallery-item .card .image .description .icon {
    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 style ======= */
.contact .item {
  background: #F7F7F7;
  padding: 45px 40px;
  border-radius: 3px;
}
.contact h2 {
  font-size: 27px;
  color: #000;
  margin-bottom: 25px;
}
.phone-call {
  display: flex;
  align-items: center;
}
.phone-call:last-child {
  border: none;
  padding: 0;
  margin: 0;
  
}
.phone-call .icon {
  position: relative;
  top: 5px;
  width: 50px;
  height: 50px;
  background: var(--main-color);
  line-height: 58px;
  text-align: center;
  border-radius: 100%;
  flex-shrink: 0;
}
.phone-call .icon span {
  font-size: 21px;
  color: #fff;
}
.phone-call .text {
  margin-left: 15px;
  font-size: 17px;
  font-weight: 600;
  color: #000;
}
.phone-call .text p {
  font-size: 15px;
  margin: 0;
  font-weight: 400;
  color: #6f7b91;
}
.phone-call .text a {
  font-size: 17px;
  font-weight: 600;
  color: #000;
}
.contact .line-dec {
  position: relative;
  height: 1px;
  background: rgba(30, 144, 255,0.15);
  margin-top: 30px;
  margin-bottom: 30px;
}























/* .blog-details__img {
  padding: 70px;
} */
.blog-details__img {
    position: relative;
    z-index: 2;
}

.blog-details__img img {
    position: relative;
    z-index: 1;
}

.blog-details__img::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    top: 10px;
    right: 10px;
    background-image: url(../../assets/images/icon-white.png);
    background-size: cover; 
    z-index: 10; 
}


@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;
}

/***

====================================================================
    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-title {
  color: white;
}


.footer-widget .logo img {
  max-width: 250px;
}

@media (max-width: 768px) {
    .footer-widget .logo img {
      max-width: 200px;
    }
}

/* Footer Widget  */
.footer-widget h4.widget-title {
  font-family: var(--body-font-family);
  color: #fff;
  font-size: 22px;
  margin-bottom: 28px;
}

.about-company-widget .footer-logo {
  margin-bottom: 33px;
}
.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: 45px;
  height: 45px;
  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;
}

.footer-widget .contact-info-box p i {
  color: var(--second-color);
}
.footer-widget .contact-info-box h4.title {
  font-family: var(--body-font-family);
  color: #fff;
  font-size: 22px;
  margin-bottom: 28px;
}
.footer-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;
}
.footer-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;
}
.footer-widget .contact-info-box p span, .footer-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;
}

.footer-default .footer-widget-area .footer-widget .contact-info-box h4 {
  padding-bottom: 10px;
}

.footer-default .footer-widget-area .social-link {
  gap: 20px;
}

.footer-default .footer-widget-area .social-link ul li {
  font-size: 20px;
}

.footer-default .footer-widget-area .footer-widget h4 {
  position: relative;
}

.footer-default .footer-widget-area .footer-widget h4::after {
  content: '';
  position: absolute;
  bottom: -5px; 
  left: 0;
  width: 100%;
  height: 2px; 
  background: var(--second-color);
}
.footer-default .footer-widget-area .footer-widget h4::before {
  content: '';
  position: absolute;
  bottom: -10px; 
  left: 0;
  width: 70%;
  height: 2px; 
  background: var(--second-color);
}

.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: 9px !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 #464444;
}
.footer-default .copyright-area .copyright-nav ul li a {
  color: #fff;
}

.testimonial-one__rating {
  font-size: 24px;
}

.testimonial-one__rating .fa-star.checked {
  color: #ffcc00; 
}



@-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-subscribe {
  background-position: center;
  padding: 50px 0;
  position: relative;
}

.bg-subscribe a.btn-theme{
  z-index: 19;
}

.bg-subscribe .btn-subs {
  text-align: right;
}

@media (max-width: 768px) {
  .bg-subscribe {
    padding: 20px 0;
  }
  .bg-subscribe .btn-subs {
    text-align: center;
  }
    .bg-subscribe a.btn-theme{
      font-size: 13px !important;
    }
}

.bg-subscribe-content {
  padding: 30px;
  background: 
    linear-gradient(rgb(0, 0, 0, 0.7), rgb(0, 0, 0, 0.7)),
    url('../../assets/images/subscribe-background-section.webp');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.transparent-bg{
  background-color: rgba(0, 0, 0, 0.3);
  padding: 25px;
}

.bg-subscribe .bg-subscribe-content1 h4{
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .bg-subscribe {
    text-align: center;
  }
  .bg-subscribe .bg-subscribe-content h2{
    font-size: 22px;
    line-height: 1.2;
  }
  .bg-subscribe .bg-subscribe-content h4{
    font-size: 13px;
  }
  .bg-subscribe-content {
    padding: 30px 10px;
  }
  .bg-subscribe .bg-subscribe-content1 h2{
    font-size: 22px;
    line-height: 1.2;
  }
  .bg-subscribe .bg-subscribe-content1 h4{
    font-size: 13px;
  }
}


.bg-overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-subscribe .subs-area {
  display: flex;
  align-items: center;
  justify-content: end;
}

@media (max-width: 768px) {
  .bg-subscribe .subs-area {
    justify-content: center;
  }
}


@keyframes changeLetter {
  0% {
    width: 10%;
  }
  100% {
    width: 80%;
  }
}


