@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
/*  ======= Common Styles ======= */
:root {
  --yellow-color    :#FF5500;
  --main-color      : #fff;
  --second-color    : #000;
  --second-color-96: rgba(232, 197, 104, 0.04);
  --gray-color      : #6e7478;
  --green-color     :#1fac49;
  --text-color      : #020202;
  --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: "Noto Sans";
  --title-font-family: "Noto Sans";
  --body-font-family: "Work Sans", Helvetica, Arial, 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: #6c7171;
  font-weight: 400;
  letter-spacing: -0.2px;
  position: relative;
  overflow-x: hidden;
}

.parallax-background {
  background: url(../../assets/images/banner-bg.webp);
  background-attachment: fixed;
}

.layanan-parallax-background {
  background: url(../../assets/images/layananbg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}


.cta-parallax-background {
  background: 
  linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../../assets/images/cta-banner-new.webp'); background-size: cover; 
  background-attachment: fixed;
}


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);
  text-decoration: none;
}

p {
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 15px;
}
a,
a:hover {
  text-decoration: none;
  color: var(--text-color);
}
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-80 {
  padding-top: 80px;
}

/* ======= Preloader Styles ======= */
.loaded .site-preloader-wrap {
  opacity: 0;
  visibility: hidden;
}
.site-preloader-wrap {
  position: fixed;
  z-index: 999;
  height: 100%;
  width: 100%;
  background: #fff;
  top: 0;
  left: 0;
}

.site-preloader-wrap .spinner {
  background-color: var(--yellow-color);
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -20px;
  margin-top: -20px;
}

.spinner {
  width: 40px;
  height: 40px;

  border-radius: 100%;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
  animation: sk-scaleout 1s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

/* ======= 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;
}

/* ======= Scroll To Top ======= */
#scrollup {
  width: 45px;
  height: 45px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  overflow: hidden;
  z-index: 999;
}
.scroll-to-top {
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: var(--second-color);
  font-size: 40px;
  padding: 0;
  /* line-height: 40px; */
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transform: translateY(150%);
  transition: all 0.3s ease-in-out;
}
#scrollup.show {
  opacity: 1;
}
#scrollup.show .scroll-to-top {
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}
.scroll-to-top:hover {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}
.scroll-to-top:focus {
  outline: none;
}
/*  ======= Header Section ======= */
.header {
  background-color: var(--main-color);
  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: var(--main-color);
  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(--second-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);
}

.header-menu-wrap ul {
  margin: 0;
  padding: 0;
  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: 14px;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--second-color);
  padding: 0 15px;
  height: 80px;
  line-height: 80px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  text-transform: capitalize;
  position: relative;
}

@media (max-width: 768px) {
  .header-menu-wrap ul li > a {
    color: var(--second-color);
  }
}

.header-menu-wrap ul li > a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px; 
  top: 60px;
  bottom: 0;
  left: 0;
  background-color: var(--second-color);
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .header-menu-wrap ul li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px; 
    top: 40px;
    bottom: 0;
    left: 0;
    background-color: var(--second-color);
    visibility: hidden;
    transition: all 0.3s ease-in-out;
  }
}

/* .header-menu-wrap ul li:hover > a {
  color: var(--second-color);
} */

.header-menu-wrap ul li:hover a::after,
.header-menu-wrap ul li a.active::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; /* Membuat item layanan berada pada garis yang sama */
}

.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;
}

.btn-booking {
  display: inline-block;
  background-color: var(--main-color);
  color: white;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  margin-left: auto; /* Push the button to the right */
}

@media (max-width: 768px) {
    .btn-booking {
        margin: 10px 0;
    }
}

.btn-booking:hover {
  background-color: white;
  outline: 1px solid var(--main-color);
  color: var(--main-color);
}


/* 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: auto;
    padding: 0 20px;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 999;
  }

  /* .header-menu-wrap {
    position: fixed;
    top: 0;
    right: -100%; 
    height: 100%;
    width: 300px; 
    background-color: #fff;
    z-index: 1000;
    transition: right 0.3s ease; 
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding-top: 80px; 
  }
  // from side right
  .header-menu-wrap.menu-open {
    right: 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 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: 300px;
}
.viewport-lg .primary-header .header-menu-wrap {
  display: block !important;
}

/* Top Bar */
.top-bar {
  background-color: var(--second-color);
}
.top-bar-inner {
    font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--main-color);
}
.top-bar .top-left li {
  font-size: 12px;
  color: var(--main-color);
  display: inline-block;
  margin: 0;
  /*padding-top: 7px;*/
  /*padding-bottom: 7px;*/
}

.top-bar .top-left li a {
  color: var(--main-color);
  text-decoration: none;
  margin-left: 10px;
}
/*.top-bar .top-social {*/
/*  padding: 7px 20px;*/
/*}*/
.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: var(--main-color);
}
.top-bar .top-social li a:hover {
  color: var(--main-color);
}

/* 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: var(--main-color);
  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: transparent;
}
.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: 20px 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;
  }
}


/*@media (max-width: 768px) {*/
/*  .single-slide .slider-content-wrap img{*/
/*    min-height: 250px;*/
/*  }*/
/*}*/


@media (max-width: 767px) {
    .section-heading .namaweb {
        margin-top: 10px; 
    }

}

/* Dokumentasi */
@media (max-width: 768px) {
  .dokumentasi {
    margin: 30px 10px;
  }
}

.dokumentasi .dokumentasi-item {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgb(207, 205, 205);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  position: relative;
  padding: 0;
}

.dokumentasi .dokumentasi-item img {
  transition: transform 0.4s ease-in-out;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.dokumentasi .dokumentasi-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.dokumentasi .dokumentasi-item:hover img {
  transform: scale(1.1);
}

/* Blue corner lines (L-shaped) */
.dokumentasi .dokumentasi-item::before,
.dokumentasi .dokumentasi-item::after,
.dokumentasi .dokumentasi-item .corner-tl-horizontal,
.dokumentasi .dokumentasi-item .corner-tl-vertical,
.dokumentasi .dokumentasi-item .corner-br-horizontal,
.dokumentasi .dokumentasi-item .corner-br-vertical {
  content: "";
  position: absolute;
  background-color: var(--main-color); /* Color of the line */
  transition: 0.4s ease-in-out;
}

/* Top-left corner */
.dokumentasi .dokumentasi-item::before {
  width: 80px; /* Horizontal length */
  height: 8px; /* Horizontal height */
  top: 0;
  left: 0;
  transform: scaleX(0); /* Initial state: hidden */
  transform-origin: left;
}

.dokumentasi .dokumentasi-item .corner-tl-vertical {
  width: 8px; /* Vertical width */
  height: 80px; /* Vertical length */
  top: 0;
  left: 0;
  transform: scaleY(0); /* Initial state: hidden */
  transform-origin: top;
}

/* Bottom-right corner */
.dokumentasi .dokumentasi-item::after {
  width: 80px; /* Horizontal length */
  height: 8px; /* Horizontal height */
  bottom: 0;
  right: 0;
  transform: scaleX(0); /* Initial state: hidden */
  transform-origin: right;
}

.dokumentasi .dokumentasi-item .corner-br-vertical {
  width: 8px; 
  height: 80px; 
  bottom: 0;
  right: 0;
  transform: scaleY(0); 
  transform-origin: bottom;
}

/* Hover effects */
.dokumentasi .dokumentasi-item:hover::before {
  transform: scaleX(1); 
}

.dokumentasi .dokumentasi-item:hover .corner-tl-vertical {
  transform: scaleY(1); 
}

.dokumentasi .dokumentasi-item:hover::after {
  transform: scaleX(1); 
}

.dokumentasi .dokumentasi-item:hover .corner-br-vertical {
  transform: scaleY(1); 
}

.dokumentasi .dokumentasi-item .desc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: white; 
  text-align: center;
  padding: 10px;
  font-size: 16px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.dokumentasi .dokumentasi-item:hover .desc {
  opacity: 1;
}


/* 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; /* Mengurangi padding vertikal */
    min-height: 150px !important; /* Mengurangi tinggi minimum */
  }
}


.page-title .title-outer h1{
  font-size: 50px;
}

.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: 30px;
   }
  .breadcumb {
    font-size: 13px;
  }
}

.breadcumb {
  background-color: whitesmoke;
  border-bottom: 1px solid whitesmoke;
  position: relative;
}

@media (max-width: 768px) {
  .breadcumb {
    font-size: 13px;
  }
}

.breadcumb a {
  color: black;
  /*position: relative;*/
  /*z-index: 1;*/
  /*text-decoration: none;*/
  /*padding-top: 10px;*/
  /*padding-bottom: 10px;*/
  /*padding-right: 20px;*/
  display: inline-block; /* Make sure pseudo-element works correctly */
}



.breadcumb a:hover::before {
  color: var(--second-color);
}

.breadcumb a:hover {
  color: var(--second-color);
}


@media only screen and (max-width: 768px) {
  .page-title {
    padding: 110px 0 110px;
  }
}
.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 {
  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;
}


.slider-content-wrap {
    position: relative;
}

.slider-text-overlay h2{
    position: absolute;
    top: 185px;
    left: 150px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5); /* Optional: for better readability */
    padding: 10px;
    border-radius: 5px;
}

.slider-text-overlay p{
    position: absolute;
    top: 245px;
    left: 150px;
    color: white;
    font-size: 25px;
}

@media (max-width: 768px) {
    .slider-text-overlay {
       display: none;
    }
}

.keunggulan {
  position: relative;
  padding-top: 20%; 
}

.keunggulan .bg-over, .artikel .bg-over {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%; 
  z-index: 0;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url('../../assets/images/kelebihan-banner-new.webp'); background-size: cover; 
}

@media (max-width: 768px) {
    .keunggulan .bg-over, .artikel .bg-over {
        height: 65%;
    }
}

.kelebihan-home {
  position: relative;
  margin-top: 10px;
  padding: 20px;
  z-index: 1;
}

.kelebihan-home .section-heading-rounded {
  color: var(--main-color);
  margin-top: 0;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px; 
}

.kelebihan-home .section-heading-rounded::after {
  content: '';
  position: absolute;
  width: 30%;
  height: 2px; 
  top: 100%; 
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--main-color);
  transition: all 0.3s ease-in-out;
  opacity: 1; 
}



.kelebihan-home .card {
  flex-grow: 1;
  color: black;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.kelebihan-home .card:hover {
  background-color: var(--main-color);
  color: #000;
}

/* .kelebihan-home .card:hover .image img {
  filter: brightness(0) invert(1);
} */

/* .kelebihan-home .card#card-0 {
  transform: scale(1.05);
  background-color: red;
  color: white;
} */

/* .kelebihan-home .card#card-0 .image img {
  filter: brightness(0) invert(1);
} */

.kelebihan-home .fixed-size-image {
    width: 70px; 
    height: auto; 
}

.kelebihan-home .image-container {
    flex-shrink: 0; 
    margin-top: 1rem; 
    margin-bottom: 1rem; 
}

.kelebihan-home .card:hover {
  transform: scale(1.08);
}

.kelebihan-home .card .image img {
  transition: filter 0.3s ease-in-out;
}

.kelebihan-item {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .kelebihan-item {
      height: auto; 
  }

  /*.card-body {*/
  /*  display: flex;*/
  /*  flex-direction: column;*/
  /*  justify-content: center;*/
  /*  align-items: center;*/
  /*  text-align: center;*/
  /*  height: 100%;*/
  /*}*/
}



/* about */
.profile {
  background-color: var(--main-color);
  color: white;
  border-radius: 10px;
  font-size: 30px;
  padding: 10px 40px;
  z-index: 10;
}

.visi-circle {
    width: 60px; /* Adjust the size as needed */
    height: 60px; /* Adjust the size as needed */
    background-color: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visi-circle h3 {
    margin: 0;
    font-size: 1.25rem; /* Adjust the font size as needed */
    text-align: center;
}

.visi-text {
    display: flex;
    align-items: center;
}

.visi-text .ml-4 {
    margin-left: 10px; /* Adjust the margin as needed */
}



.overlay-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.bg-stripped {
  background-color: #F7F7F7;
}

/* About */

.section-full {
  position: relative;
}

.about .section-heading-rounded {
  margin-bottom: 0px;
}

.profil {
  position: relative;
}

.profil .section-heading-rounded {
  margin-bottom: 0px;
  position: relative;
  display: inline-block;
}

.profil .section-heading-rounded::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px; 
  top: 100%; 
  left: 45px;
  transform: translateX(-50%);
  background-color: var(--second-color);
  opacity: 1;
}

.layanan {
  position: relative;
}

 .layanan .layanan-page .section-heading-rounded {
  margin-bottom: 0px;
  position: relative;
  display: inline-block;
}

.layanan .layanan-page .section-heading-rounded::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px; 
  top: 100%; 
  left: 65px;
  transform: translateX(-50%);
  background-color: var(--second-color);
  opacity: 1;
}


.artikel {
  position: relative;
}

.artikel .artikel-page .section-heading-rounded {
  color: #000;
  margin-bottom: 0px;
  position: relative;
  display: inline-block;
}

.artikel .artikel-page .section-heading-rounded::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px; 
  top: 100%; 
  left: 105px;
  transform: translateX(-50%);
  background-color: var(--second-color);
  opacity: 1;
}


.welcome-text .image {
  margin-top: 30px;
  margin-bottom: 80px;
}

.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;
  align-items: center;
  height: 100%;
}

.content-about-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.text-overlay {
  position: relative;
  z-index: 2;
}

.poster-mobile {
    display: none;
}

.poster-desktop {
    display: block;
}

@media (max-width: 768px) {
    .poster-mobile {
        display: block;
        margin-bottom: 100px;
    }
    .poster-desktop {
        display: none;
    }
}

.about-icon img{
    width: 30px;
}
.about span {
    font-size: 20px;
}

@media (max-width: 768px) {
    .about-icon img{
        margin-top: 30px;
    }
    .about .section-heading-rounded {
        margin-top: 10px;
    }
}

.video-section-full-v2 {
  position: relative;
  padding: 0 10px;
  box-shadow: 5px 5px 5px 5px whitesmoke;
}

.video-section-full-v2 .video-section-full {
  position: relative;
  z-index: 1;
}

.video-section-full-v2 .video-section-full::after {
  content: '';
  position: absolute;
  top: -20px; 
  right: -20px; 
  bottom: 20px; 
  left: 20px; 
  border: 3px solid rgba(0, 0, 0, 0.5); /* Adjust border thickness and color */
  z-index: -1;
}

@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;
  }
  .video-section-full-v2 .video-section-full::after {
    display: none;
  }
}





/* layanan */
.layanan .layanan-home .section-heading-rounded, .layanan .layanan-home .section-welcome {
  text-align: center;
}

.layanan .layanan-home .section-heading-rounded {
  color: var(--second-color);
  margin: 0;
  position: relative;
}

.layanan .layanan-home .section-welcome {
  position: relative;
}

@media (max-width: 768px) {
  .layanan .layanan-home .section-heading-rounded {
      margin-top: 30px !important;
  }
  .layanan .layanan-home .section-welcome {
      margin-top: 0 !important;
  }
}

.layanan .layanan-item {
  background-color: white;
  transition: transform 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.layanan .layanan-item .card-body .card-description .layanan-btn {
  padding: 10px 15px;
  background-color: #000;
  transition: transform 0.3s ease-in-out;
  color: white;
}

.layanan .layanan-item .card-body .card-description .layanan-btn:hover {
  background-color: white;
  color: #000;
  outline: 1px solid #000;
}

.layanan .col-md-4 {
    position: relative;
    perspective: 1000px; 
}

.layanan .bg-translate {
    background-color: white;
    box-shadow: 2px 2px 2px 2px whitesmoke;
    border: 1px solid #dee2e6;
    position: absolute;
    top: 5px; /* Adjust top margin */
    right:5px; /* Adjust right margin */
    bottom: 0; /* Adjust bottom margin */
    left: 5px; /* Adjust left margin */
    width: calc(100% - 5px); /* Adjust width to account for margins */
    height: calc(100% - 5px); 
    transform: rotate(2.1deg);
    z-index: -1; 
    transition: transform 0.3s ease;
}

.layanan .card.layanan-item {
    position: relative;
    z-index: 1; 
}




.layanan-btn {
  margin-top: 10px;
  padding: 15px 40px;
  line-height: 1.6em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--second-color);
  background-color: white;
  color: var(--second-color);
  border-radius: 5px;
  transition: all 0.4s ease;
}

.layanan .layanan-item .ag-courses-item_bg {
  height: 128px;
  width: 128px;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
  position: absolute;
  top: -75px;
  right: -75px;
  border-radius: 50%;
  transition: all 0.5s ease;
}

.layanan .layanan-item:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
  /*border: 1px solid black;*/
  transform: scale(1.01);
}

.layanan .layanan-item:hover .ag-courses-item_bg {
  transform: scale(20);
}

.layanan .layanan-item .image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .layanan .layanan-item .image-container {
    height: 300px;
  }
}

.layanan .layanan-item .image-container-detail-produk {
  position: relative;
  height: 150px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .layanan .layanan-item .image-container-detail-produk {
    height: 100px;
  }
}

.layanan .layanan-item .image-container .image {
  width: 100%;
  height: auto;
  background-position: center;
  transition: transform 0.3s ease-in-out;
}

.layanan .layanan-item .image-container-detail-produk .image{
  width: 100%;
  height: auto;
  background-position: center;
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .layanan .layanan-item .image-container .image {
      height: auto;
  }
  .layanan .layanan-item .image-container-detail-produk .image{
    height: auto;
  }
}


/* artikel */
.artikel .section-heading-rounded {
  margin: 0;
  position: relative;
}

.artikel .section-welcome {
  position: relative;
  color: var(--main-color);
}

@media (max-width: 768px) {
  .artikel .section-heading-rounded {
      margin-top: 30px !important;
  }
  .artikel .section-welcome {
      margin-top:0 !important;
  }
}

.artikel {
  color: var(--second-color);
  position: relative;
}

.artikel .artikel-info {
  position: absolute;
  top: 15px;
  left: 0;
  gap: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  z-index: 10; 
}

.artikel .artikel-item {
  border-radius: 10px;
  background-color: white;
  transition: transform 0.3s ease-in-out;
  box-shadow: 2px 2px 2px 2px whitesmoke;
  will-change: transform; 
  overflow: hidden;
}

.artikel .artikel-item:hover {
  transform: scale(1.01); 
  outline: 1px solid var(--second-color);
  transform-origin: center;
}

.artikel .artikel-item .card-body h3{
  font-size: 18px;
}

@media (max-width: 768px) {
    .artikel .artikel-item {
      height: auto;
    }
}

.artikel .artikel-item .image {
  width: 100%;
  height: 200px;
  transition: transform 0.3s ease-in-out;
  --hover: 0;
}

.artikel .artikel-item .image:hover {
  --hover: 1;
  transform: translateX(-10px) scale(calc(1 + (var(--hover, 0) * 0.15))) rotate(calc(var(--hover, 0) * 0deg));
}


@media (max-width: 768px) {
    .artikel .artikel-item .image {
        height: auto;
    }
}





@media (max-width: 768px) {
  .gallery {
    margin-top: 30px;
  }
}

.gallery .bg-over {
  position: absolute;
  top: -5%; 
  left: 0;
  width: 100%;
  background-color: var(--second-color);
  height: 50%; 
  z-index: 1;
}



.gallery {
  position: relative;
}

@media (max-width: 768px) {
    .gallery .bg-over {
        height: 75%;
    }
    .gallery .gallery-block-left {
        margin: 0 10px;
    }
}


.gallery .gallery-icon {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .gallery .gallery-icon {
        margin-top: 20px;
        margin-bottom: 0 !important;
    }
    .gallery .section-heading-rounded {
        margin: 0 !important;
    }
    .gallery .section-welcome {
        margin: 0 !important;
    }
}


.gallery .gallery-block-left {
    z-index: 1;
    display: flex;
    flex-direction: column; 
    justify-content: space-between;
    background-color: white;
    position: relative;
}


@media (max-width: 768px) {
    .gallery .gallery-block-left {
        height: 200px !important;
    }
}

.gallery .gallery-block-left::before,
.gallery .gallery-block-left::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 5px; /* Adjust the height as needed */
    background-color: red;
}

.gallery .gallery-block-left::before {
    top: 0;
}

.gallery .gallery-block-left::after {
    bottom: 0;
}



.gallery .section-heading-rounded {
    color: black;
    font-size: 30px;
}

.gallery .section-welcome {
    font-size: 18px;
    font-family: var(--body-font-family);
}


.gallery .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;
}


.gallery .gallery-item  .image {
  position: relative;
}

.gallery .gallery-item  .image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark background */
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.gallery .gallery-item  .image img {
  transition: transform 0.3s ease-in-out;
  max-height: 200px; 
  min-height: 200px; 
  width: 100%;
}

.gallery .gallery-item  .image .description {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 16px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none; 
}

@media (max-width: 768px) {
    .gallery .gallery-item  .image .description {
      font-size: 13px;
    }
}

.gallery .gallery-item:hover {
  transform: translateY(-5px);
}

.gallery .gallery-item:hover  .image::after {
  opacity: 1;
}

.gallery .gallery-item:hover  .image img {
  transform: scale(1.1);
}

.gallery .gallery-item:hover  .image .description {
  opacity: 1;
}

@media (max-width: 768px) {
  .gallery .gallery-item  .image img {
    max-width: 300px; 
    min-width: 300px;
    max-height: 150px; 
    min-height: 150px;
    width: 100%;
  }
  .gallery .section-heading-rounded {
    margin: 30px 0;
  }
}


/* Mitra new page */
.mitrah {
  background-color: #F5F6F7;
}

@media (max-width: 768px) {
  .mitrah {
    margin-top: 20px;
  }
}

.mitrah .mitrah-item {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
  flex-grow: 1;
  box-shadow: 2px 2px 2px 2px whitesmoke;
}

.mitrah .mitrah-item:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .mitra .section-heading{
    padding-top: 30px;
  }
}

.blog-details__img .detail_img{
  padding: 10px;
  border: 1px solid rgb(188, 186, 186);
  border-radius: 10px;
}

@media (max-width: 768px) {
  .blog-details__img {
    padding: 0;
  }
}

.blog-details__left .vid_youtube {
  margin-top: 100px;
  padding: 50px 0;
  background-color: black;
} 

.blog-details__left .vid_youtube iframe{
  height: 400px;
} 

@media (max-width: 768px) {
    .blog-details__left .vid_youtube iframe{
      height: 200px;
    } 
}

@media (max-width: 768px) {
  .blog-details__left .vid_youtube {
    margin-top: 100px;
    padding: 10px 0;
    background-color: black;
  } 
}

/* Galeri in detail layanan */
.blog-details__left .gallery-layanan .gallery-item a img {
  width: 100%;
  height: 200px;
}

@media (max-width: 768px) {
  .blog-details__left .gallery-layanan .gallery-item .popup-img img {
    min-height: 100px;
  }
}





.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_btn.cs_style_1 {
  border: none;
  margin-top: 10px;
  padding: 10px 20px;
  line-height: 1.6em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background-color: var(--second-color);
  color: white;
  border-radius: 5px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .cs_btn.cs_style_1 {
    padding: 11px 25px;
  }
}
.cs_btn.cs_style_1.cs_radius_0 {
  border-radius: 0;
}
.cs_btn.cs_style_1:hover {
  background-color: transparent;
  outline: 2px solid var(--second-color);
  color: var(--second-color);
}


.about-btn {
  padding: 10px 20px;
  line-height: 1.6em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background-color: var(--second-color);
  color: var(--main-color);
  border-radius: 5px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 991px) {
  .about-btn {
    padding: 11px 25px;
  }
}
.about-btn.cs_radius_0 {
  border-radius: 0;
}
.about-btn:hover {
  border: 1px solid var(--second-color);
  background-color: var(--main-color);
  color: var(--second-color);
}







.cs_card.cs_style_3 {
  -webkit-box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.1);
  max-width: 515px;
  margin-left: auto;
  margin-right: auto;
}
.cs_card.cs_style_3:hover .cs_package_badge {
  background-color: var(--second-color);
  color: var(--white);
}
.cs_card.cs_style_3 .cs_package_badge {
  left: 20px;
  top: 20px;
  background-color: var(--white);
  padding: 17px 58px 17px 31px;
  -webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.cs_card.cs_style_3 .cs_card_content {
  width: 100%;
  padding: 22px 25px 30px 25px;
}
.cs_card.cs_style_3 .cs_card_title {
  margin-bottom: 10px;
  font-size:25px;
}
.cs_card.cs_style_3 .cs_card_subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.cs_card.cs_style_3 .cs_card_subtitle i {
  color: var(--second-color);
}
.cs_card.cs_style_3 hr {
  margin: 22px 0 20px;
}
.cs_card.cs_style_3 .cs_card_action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cs_card.cs_style_3 .cs_btn.cs_style_1 {
  background-color: var(--main-color);
  color: var(--white);
  padding: 10px 15px;
  font-size: 12px;
}
.cs_card.cs_style_3 .cs_btn.cs_style_1:hover {
  background-color: var(--second-color);
}


.cs_zoom {
  position: relative;
  overflow: hidden;
  display: block;
}
.cs_zoom .cs_zoom_in {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.cs_zoom:hover .cs_zoom_in {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}


.cs_gap_y_24 {
  gap: 24px 0;
}


/*** 



.th-btn.fw-btn {
    width: 100%;
}


.th-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
 
  text-align: center;
  background-color: var(--main-color);
  color: #fdd61f;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 21px 31px;
  border-radius: 0;
  border: none
}

.th-btn:before {
  content: "";
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  width: 200%;
  background-color: var(--second-color);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease
}

.th-btn>i {
  margin-left: 5px
}

.th-btn:hover,.th-btn.active {
  color: var(--white-color)
}

.th-btn:hover::before,.th-btn.active::before {
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1)
}




.theme-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.theme-btn .btn-title {
  position: relative;
}

/*Btn Style One*/
.btn-style-one {
  background-color: var(--main-color);
  border-radius: 0px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  color: var(--white-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 30px;
  overflow: hidden;
  padding: 1.2rem 3.7rem;
  position: relative;
 
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}
.btn-style-one:before {
  background-color: var(--second-color);
  content: "";
  height: 100%;
  opacity: 0.2;
  position: absolute;
  right: -15px;
  top: 0;
  width: 35px;
  z-index: -1;
  -webkit-transform: skewX(-22deg);
          transform: skewX(-22deg);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn-style-one:hover:before {
  opacity: 1;
  right: 0;
  -webkit-transform: skewX(0deg);
          transform: skewX(0deg);
  width: 100%;
}
.btn-style-one:hover {
  color: var(--white-color);
}


/*** 
====================================================================
    News Section
====================================================================
***/
.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 whitesmoke;
  border-radius: 20px;
  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);
}

.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 {
  position: sticky;
  top: 100px;
}
@media (max-width: 991px) {
  .sidebar {
    margin-top: 50px;
  }
}
.sidebar__single + .sidebar__single {
  margin-top: 30px;
}

.sidebar__title {
  margin: 0;
  font-size: 20px;
  margin-bottom: 5px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--main-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;
  border-radius: 10px;
  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 span a {
  color: #0e2207;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.sidebar__post .sidebar__post-list .sidebar__post-content h3 span a:hover {
  color: rgb(78, 77, 77) !important;
}

.sidebar__post .sidebar__post-list .sidebar__post-content-meta {
  font-size: 14px;
  font-weight: 500;
  color: var(--second-color) !important;
  -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: var(--second-color);
  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;
}




/*** 
====================================================================
    CTA Section
====================================================================
***/
.contact-banner-two {
    position: relative;
    padding: 88px 0 94px;
    background-color: var(--main-color);
    position: relative
}

@media(max-width: 575.98px) {
    .contact-banner-two {
        padding-bottom:80px
    }
}

.contact-banner-two::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/patter-con.png)
}

.contact-banner-two .outer-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media(max-width: 991.98px) {
    .contact-banner-two .outer-box {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center
    }
}

@media(max-width: 767.98px) {
    .contact-banner-two .outer-box {
        text-align:center
    }
}

.contact-banner-two .outer-box .title {
    color: var(--white-color);
    margin-bottom: 0;
    font-weight: 600;
    font-size:28px;
    line-height: 50px;
  
    max-width:700px;
}

@media(max-width: 991.98px) {
    .contact-banner-two .outer-box .title {
        margin-bottom:30px
    }
}

@media(max-width: 575.98px) {
    .contact-banner-two .outer-box .title {
        font-size:20px
    }
}

.theme-btn-v2 {
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.theme-btn-v2:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    -webkit-transform: scale(0,1);
    transform: scale(0,1);
    -webkit-transform-origin: right top;
    transform-origin: right top;
    background: #000;
    border-radius: inherit;
    transition: transform 500ms cubic-bezier(.86,0,.07,1) 0s,-webkit-transform 500ms 0s;
}


.theme-btn-v2:hover {
    color: #000
}

.theme-btn-v2:hover:before {
    background-color: #fff;
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left
}


.contact-banner-two .outer-box .theme-btn-v2 {
    color: var(--main-color);
    font-weight: 700;
    line-height: 26px;
 
    background-color: var(--white-color);
    padding: 20px 30px;
    display: inline-block
}

@media(max-width: 575.98px) {
    .contact-banner-two .outer-box .theme-btn-v2 {
        margin-bottom:20px
    }
}

.contact-banner-two .outer-box .theme-btn-v2 svg {
    position: relative;
    top: -2px;
    margin-left: 12px
}

.contact-banner-two .outer-box .theme-btn-v2:before {
    background-color: var(--second-color) !important;
}

.contact-banner-two .outer-box .theme-btn-v2:hover {
    color: var(--white-color)
}

.contact-banner-two .outer-box .theme-btn-v2:hover svg path {
    stroke: unset;
    fill: #fff
}

.contact-banner-two .outer-box .theme-btn-v2.two {
    background-color: unset;
    border: 1px solid var(--White,#FFF);
    color: var(--white-color);
    padding: 19px 30px;
    margin-left: 26px
}

@media(max-width: 575.98px) {
    .contact-banner-two .outer-box .theme-btn-v2.two {
        margin-left:0
    }
}

.contact-banner-two .outer-box .theme-btn-v2.two:hover {
    border-color: transparent
}


/***

==================================================================
    Main Footer
==================================================================

***/
.footer-title {
  color: white;
  
}

.footer-newsletter label {
  position: absolute;
  top: 23px;
  left: 30px;
}
.footer-newsletter .form_control {
  background-color: #fff;
  padding: 0 30px;
  padding-left: 65px;
  height: 73px;
  border-radius: 5px;
}
.footer-newsletter .main-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 16px 30px;
}

/* Footer Widget  */
.footer-widget h4.widget-title {
  color: white;
  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);
  color: #484848;
  font-size: 17px;
}
.about-company-widget ul.social-link li a:hover {
  background-color: #63AC45;
  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-newsletter-widget .newsletter-content p {
  margin-bottom: 32px;
}
.footer-newsletter-widget .newsletter-content form label {
  position: absolute;
  top: 8px;
  right: 0;
}
.footer-newsletter-widget .newsletter-content form label button {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: #63AC45;
  font-size: 13px;
  color: #fff;
}
.footer-newsletter-widget .newsletter-content form .form_control {
  background-color: transparent;
  padding: 0;
}
.contact-info-widget .contact-info-box p i {
  color: var(--main-color);
}
.contact-info-widget .contact-info-box h4.title {
  color: white;
  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: var(--white);
}
/* 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;
  /* text-transform: uppercase; */
  max-width: 700px;
}
.footer-default {
  background: black;
}
.footer-default .footer-newsletter {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-default .footer-newsletter .section-title span.thin {
  display: block;
}
.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 .about-company-widget ul.social-link li a {
  background-color: rgba(255, 255, 255, 0.1);
  color: #B1B6B3;
}
.footer-default .about-company-widget ul.social-link li a:hover {
  background-color: #63AC45;
  color: #fff;
}
.footer-default .copyright-area {
  border-top: 1px solid white;
}
.footer-default .copyright-area .copyright-nav ul li a {
  color: #e1e1e1;
}


@-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;
  /* margin-bottom: calc(50px - 12px); */
  position: relative;
  z-index: 2;
  /* margin-top: -0.4em; */
}

.sec-btn {
  margin-bottom: var(--section-title-space);
}

/* Kontak page */
.contact-section {
  position: relative;
}

.contact-section .section-heading-rounded {
  border-radius: 0;
  position: relative;
  display: inline-block;
}

.contact-section .section-heading-rounded::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px; 
  top: 100%; 
  left: 50px;
  transform: translateX(-50%);
  background-color: var(--second-color);
  opacity: 1;
}


.contact-info {
  background-color: var(--second-color);
}

.contact-block {
    padding: 30px 30px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    /* border: 2px solid var(--second-color); */
    border-radius: 10px;
}

@media (max-width: 768px) {
  .contact-block {
    padding: 10px 10px;
}
}

.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;
  background-color: var(--second-color); /* Optional: Set a background color */
  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;
}

@media (max-width: 768px) {
    .contact-block {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin-bottom: 10px;
    }

    .contact-details {
        margin-left: 0;
    }
}




.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: 55px 0;
  position: relative;
}

@media (max-width: 768px) {
    .bg-subscribe {
        padding-bottom: 0;
    }
}
.bg-subscribe-content {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url('../../assets/images/cta-first-banner-new.webp') no-repeat center center; 
  padding: 50px;
}

@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%;
}

.subscribe-btn {
  color: white;
  background-color: var(--second-color);
  border: none;
  transition: all 0.3s ease-in-out;
}

.subscribe-btn:hover {
  color: white;
  outline: 2px solid var(--main-color);
}

.produk-btn {
  color: white;
  background-color: var(--second-color);
  border: none;
  transition: all 0.3s ease-in-out;
}

.produk-btn:hover {
  border: 2px solid var(--second-color);
  color: var(--second-color);
  background-color: white;
}


@keyframes changeLetter {
  0% {
    width: 10%;
  }
  100% {
    width: 80%;
  }
}


.section-heading {
  font-size: 30px;
  color: var(--second-color);
}

.section-heading-rounded {
  font-size: 30px;
  color: black;
  margin-bottom: 10px;
  border-radius: 10px;
}

.section-welcome {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.3;
}

@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: 17px;
    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;
  }
}


