@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

html {
  --dark-color: #241C26 !important;
  --primary: #109bc5 !important;
  --bg-black: #000;
  --bg-overlay: #000000b5 ;
  --bg-black-transparent: #000000f2;
  --text-grey: #736D75;
  --footer: #121921 !important;
}

.h1, h1{
  font-size: 2.5rem;
}

.gap-15 {
  gap: 15px;
}

.font-nunito {
  font-family: Nunito, sans-serif;
}

.btn-theme {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--primary);
  color: #fff;
  font-size: 16px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  padding: 20px 40px;
  line-height: 1;
  transition: 500ms;
  text-transform: capitalize;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn-theme::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  background-color: var(--primary);
  transition: 700ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.btn-theme.light::before {
  background-color: #fff;
}

.btn-theme::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  background-color: var(--dark-color);
  transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.btn-theme span {
  position: relative;
  color: inherit;
  z-index: 2;
  transition: 0s;
}

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

.btn-theme:hover::after {
  bottom: -50%;
}


.section-title {
  margin-bottom: 20px;
}

.section-title h5 {
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  color: var(--primary);
  line-height: 1.4;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 11px;
  font-weight: 700;
}

.section-title h2 {
  font-family: inherit;
  color: var(--dark-color);
  font-weight: 700;

  font-size: 40px;
  line-height: 1.25;
  margin-bottom: 0;
}

/* <!-- Top Header --> */

.affix+.header-top {
  padding-top: 70px;
}

#header-top,
#header {
  transition: top 0.3s;
}

.header-top {
  background-color: var(--dark-color);
  height: 46px;
  width: 100%;
  line-height: 46px;
  z-index: 2;
  top: 0;
  position: fixed;
}

.header-top ul li {
  display: inline-block;
}

.header-top ul.left-info li {
  /* border-left: 1px solid rgba(250, 250, 250, 0.3); */
  /* padding: 0px 20px; */
}

.header-top ul.left-info li:last-child a
.header-top ul.left-info li i {
  margin-right: 10px;
  font-size: 18px;
}

.header-top ul.left-info li a {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  border-right: 1px solid #fff;
  padding-right: 10px;
}

.header-top ul.left-info li:last-child a {
  border-right: none;
  padding: 0 0 0 10px;
}

.header-top ul.right-icons {
  height: 100%;
  float: right;
  display: flex;
  align-items: center;
}

.header-top ul.right-icons li {
  /* width: 46px; */
  width: auto;
  display: inline-block;
  text-align: center;
  /* border-right: 1px solid rgba(250, 250, 250, 0.3); */
}

/* .header-top ul.right-icons li:first-child {
  border-left: 1px solid rgba(250, 250, 250, 0.3);
} */

.header-top ul.right-icons li a {
  border-right: 1px solid #fff;
  height: 16px;
  font-size: 12px;
  padding: 0 10px;
  color: #fff;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.header-top ul.right-icons li:last-child a {
  border: none;
}

.header-top ul.right-icons li a i,
.header-top ul.right-icons li a img {
  margin-right: 5px;
}

.header-top ul.right-icons li a img {
  height: 12px;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.header-top ul.right-icons li a:hover {
  opacity: 0.75;
}

.header-top .hide-text {
  margin-left: 10px;
}

@media only screen and (max-width: 576px) {
  .header-top ul.right-icons li a span {
    display: none;
  }
  .header-top ul.right-icons li a {
    font-size: 20px;
    height: unset;
  }
}

@media (max-width: 359px) {
  .header-top ul.left-info li {
    border-left: none;
    padding: 0 10px;
  }

  .header-top ul.left-info li:last-child {
    border-right: none;
  }

  .header-top ul.left-info li i,
  .header-top ul.right-icons li i {
    font-size: 16px;
  }

  .header-top ul.right-icons li {
    margin-right: 0;
    width: auto;
    padding: 0 10px;
  }

  .header-top ul.right-icons li,
  .header-top ul.right-icons li:first-child {
    border: none;
  }
}

@media (max-width: 768px) {
  .header-top ul.right-icons {
    height: 46px;
  }

  .header-top .row .col-12.col-md-4 {
    display: flex;
    justify-content: center;
  }

  .hide-text {
    display: none;
  }
  
}
/* <!-- Header Navigation --> */

header.header {
  /*top: 45px;*/
  height: 60px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

header.header,
header.header.sticky {
  background: var(--white);
}

header.header .btn-custom {
  background-color: transparent;
  color: var(--dark-color);
  padding: 0 15px !important;
}

/* <!-- Button --> */
header.header.sticky .btn-custom {
  background-color: var(--primary);
  color: var(--white) !important;
  color: var(--white) !important;
  /* width: 140px; */
  padding: 0 15px !important;
}

.btn-custom:hover {
  background-color: var(--dark-color);
  color: var(--white) !important;
}


header.header.sticky {
  border-bottom: 4px solid red;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.05) !important;
}


header.header,
header.header.sticky {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0;
  border: none;
}

header.header .content-right {
  padding: 0 15px;
  display: flex;
  align-items: center;
  height: 100%;
  border-left: 1px solid #eee;

  z-index: 1111;
  position: relative;
}

header.header .content-right i {
  border-radius: 50%;
  background-color: #f0efe4;
  color: var(--dark-color);
  font-size: 16px;
  height: 35px;
  width: 35px;

  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.6s ease;
}


header.header .content-right:hover i {
  transform: rotateY(360deg); 
}

header.header .content-right p {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray);
}

header.header .content-right p:last-child {
  margin: 0;
  font-weight: 600;
  font-size: 12px;
}

@media only screen and (max-width: 560px) {
  header.header .content-right {
    border: none;
    padding: 0;
  }

  header.header .content-right i {
    font-size: 20px;
    width: 40px;
    height: 40px;
    margin: 0;
    border-radius: 10px;
  }

  header.header .content-right .d-block {
    display: none !important;
  }
}

header.header #logo {
  border-right: 1px solid #eee;
  height: 100%;
  padding: 0 15px 0px 20px;

  display: flex;
  align-items: center;
  position: relative;
}

header.header.sticky #logo {
  padding: 0 15px 5px 20px;
}

/* header.header #logo:after,
header.header.sticky #logo:after {
  content: "";
  position: absolute;
  right: -40px;
  top: 0;
  width: 0;
  height: 0;
  border-right: 40px solid transparent;
  border-left: 0 solid transparent;
  clear: both;
  border-top: 75px solid #fff;
} */

header.header #logo img {
  height: 40px;
}

header.header.sticky #logo img {
  height: 40px;
}

.main-menu ul li {
  position: relative;
  /* overflow: hidden; */
}

#menu ul li span a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  z-index: -1;
  transition: transform 0.3s ease;
  transform-origin: right;
  transform: scaleX(0);
}

#menu ul li:hover span a::before {
  transform-origin: left;
  transform: scaleX(1);
}

#menu ul li span a:hover {
  color: #fff;
  /* Ganti warna teks saat dihover jika diperlukan */
}

/* Penyesuaian gaya lainnya jika diperlukan */
#menu ul li {
  display: inline-block;
}


.main-menu>ul>li span>a {
  color: var(--white);
  font-weight: bold;
  text-transform: uppercase;
}

header .main-menu>ul>li span>a,
header.sticky .main-menu>ul>li span>a {
  color: var(--dark-color);
}

.main-menu ul ul:before {
  border-bottom-color: var(--primary);
}

.main-menu ul ul {
  text-align: left;
  display: inline-grid; 
  border: 1px solid var(--primary);
  box-shadow: 0px 0px 7px 0px var(--primary);
}

.main-menu ul ul li a,
.main-menu ul ul li span a {
  font-weight: bold !important;
}

.main-menu ul ul li:hover>a {
  background-color: var(--primary);
  color: #ffffff;
}

.main-menu ul ul li span a {
  color: #333;
}

.main-menu ul li:last-child ul {
  left: auto;
  right: 3px;
}

.main-menu ul li:last-child ul:before {
  left: auto;
  right: 15%;
}

header.header .main-menu>ul>li span>a {
  margin: 10px 5px;
  padding: 0 10px;
  height: 40px;
  display: flex;
  align-items: center;
}

header.header.sticky .main-menu>ul>li span>a {
  margin: 0;
  padding: 10px;
  height: 35px;
}

header.header .main-menu,
header.header.sticky .main-menu {
  top: 0px;
}

header .hamburger-inner,
header .hamburger-inner::before,
header .hamburger-inner::after,
header.sticky .hamburger-inner,
header.sticky .hamburger-inner::before,
header.sticky .hamburger-inner::after {
  background-color: var(--dark-color);
}

@media (max-width: 1024px) {

  header.header .main-menu>ul>li span>a,
  header.header.sticky .main-menu>ul>li span>a {
    font-size: 11px;
  }

  header.header div#logo:after,
  header.header.sticky div#logo:after {
    right: -40px;
    border-top: 70px solid #fff;
  }

  header.header .main-menu,
  header.header.sticky .main-menu {
    top: unset;
  }

  nav#menu.main-menu {
    text-align: right !important;
  }
}

@media only screen and (min-width: 991px) {

  header.header .main-menu,
  header.header.sticky .main-menu {
    top: 0;
    right: 0;
  }

  .modal-link {
    display: inline-block;
  }

  #menu-logged-in {
    display: none !important;
  }

  .main-menu>ul>li span:hover>a {
    opacity: 1;
  }
}

.modal-backdrop.show {
  display: none;
}

.modal-login {
  background: #0000007a;
  z-index: 99999999;
}

.modal-login a {
  color: var(--text-grey);
  display: flex;
  justify-content: center;
}

.modal-login .card {
  width: 90%;
  transition: background 0.4s ease-in-out;
  border-radius: 10px;
}

.modal-login .card .card-body {
  padding: 20px;
  display: flow-root;
  justify-content: center;
  align-items: center;
}

.modal-login a .card .card-body img {
  height: 100px;
  margin-bottom: 10px;
}

.modal-login a .card h5.card-title {
  font-size: 1rem;
  color: var(--text-gray);
}

.modal-login a:hover .card {
  background: var(--primary);
  color: var(--white);
}

.modal-login a:hover .card img {
  webkit-filter: grayscale(1) invert(1);
  filter: grayscale(1) invert(1);
  transition: .3s all ease-in-out;
  transition-property: filter;
}

.modal-login a:hover .card i,
.modal-login a:hover .card p.card-title {
  color: var(--white);
}


@media (max-width: 991px) {

  header.header,
  header.header.sticky {
    padding: 20px;
  }

  header.header #logo,
  header.header.sticky #logo {
    position: absolute;
    margin: 0;
    padding: 15px;

    display: flex;
    justify-content: center;
  }

  header.header div#logo a img,
  header.header.sticky div#logo a img {
    height: 30px;
    margin: 0;
  }

  .modal-link {
    display: none !important;
  }
}

@media (max-width: 500px) {

  header.header,
  header.header.sticky {
    padding: 15px 20px 10px;
  }
}

@media (max-width: 800px) {

  header.header,
  header.header.sticky {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
  }

  header.header #logo,
  header.header.sticky #logo {
    position: absolute;
    margin: 0;
  }
}

@media (max-width: 359px) {

  header.header,
  header.header.sticky {
    padding: 20px 20px 0;
  }

  header.header #logo,
  header.header.sticky #logo {
    padding: 10px;
  }
}

/* Banner Home */
/* <!-- Home Slider --> */

.owl-carousel.home-slider {
  position: relative;
  height: unset;

  margin-top: 100px;
  z-index: 0;
}

.owl-carousel.home-slider .slider-item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 650px;
  position: relative;
  z-index: 0;
  display: flex;
}

.owl-carousel.home-slider .slider-item .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  opacity: .4;
}

.owl-carousel.home-slider .slider-item .slider-text h1 {
  font-size: 74px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}

.owl-carousel.home-slider .slider-item .slider-text h2 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  color: white;
  color: #f5e4c3;
  display: inline-block;
  position: relative;
  letter-spacing: 4px;
}

.owl-carousel.home-slider .slider-item .slider-text {
  height: 100%;
  position: relative;
  padding: 120px 0;
}

@media (max-width: 768px) {
  .owl-carousel.home-slider,
  .owl-carousel.home-slider .slider-item,
  .owl-carousel.home-slider .slider-item .slider-text {
    height: 90vh;
  }
}

.owl-carousel.home-slider .slider-item .slider-text .text {
  z-index: 0;
  color: #fff;
}

.owl-carousel.home-slider .slider-item .slider-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  /*text-shadow: 3px 3px 10px rgba(0, 0, 0, 1);*/
}

.owl-carousel.home-slider .hero-description {
  font-size: 1.3125rem;
}

.owl-carousel.home-slider .slider-item .slider-text p {
  font-size: 1.3125rem;
  margin: 5px 0 0;
}

@media (max-width: 991px) {
  .owl-carousel.home-slider .slider-item .slider-text h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .owl-carousel.home-slider .slider-item .slider-text h2 {
    font-size: 2rem;
  }

  .owl-carousel.home-slider .slider-item .slider-text h3 {
    font-size: 1.5rem;
  }

  .owl-carousel.home-slider .slider-item .slider-text p {
    font-size: 1rem;
  }
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--primary-color) !important;
}

/* Slider Button */

.owl-carousel.home-slider .slider-item .slider-btn a {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: bold;
  border: 1px solid var(--primary-color);
  display: inline-block;
  padding: 15px 30px;
  text-transform: uppercase;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
}

.owl-carousel.home-slider .slider-item .slider-btn a:hover {
  background-color: var(--secondary-color);
  text-decoration: none;
  color: #fff;
  border: 1px solid var(--secondary-color);
}

.owl-carousel.home-slider .owl-item.active .slider-item .slider-btn {
  -webkit-animation: 1s .3s fadeInUp both;
  -moz-animation: 1s .3s fadeInUp both;
  animation: 1s .3s fadeInUp both;
}

@media (max-width: 768px) {
  .owl-carousel.home-slider .slider-item .slider-btn a {
    padding: 10px 20px;
  }
}

/* Slider Nav */

.owl-carousel.home-slider .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
}

.owl-carousel.home-slider .owl-nav .owl-prev,
.owl-carousel.home-slider .owl-nav .owl-next {
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  outline: none !important;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .owl-carousel.home-slider .owl-nav .owl-prev,
  .owl-carousel.home-slider .owl-nav .owl-next {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.owl-carousel.home-slider .owl-nav .owl-prev span:before,
.owl-carousel.home-slider .owl-nav .owl-next span:before {
  font-size: 30px;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  .owl-carousel.home-slider .owl-nav .owl-prev span:before,
  .owl-carousel.home-slider .owl-nav .owl-next span:before {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.owl-carousel.home-slider .owl-nav .owl-prev:hover span:before,
.owl-carousel.home-slider .owl-nav .owl-prev:focus span:before,
.owl-carousel.home-slider .owl-nav .owl-next:hover span:before,
.owl-carousel.home-slider .owl-nav .owl-next:focus span:before {
  color: #fff;
}

.owl-carousel.home-slider .owl-nav .owl-prev {
  left: 0;
  margin-left: 0;
}

.owl-carousel.home-slider .owl-nav .owl-next {
  right: 0;
  margin-right: 0;
}

.owl-carousel.home-slider:hover .owl-nav .owl-prev,
.owl-carousel.home-slider:hover .owl-nav .owl-next {
  opacity: 1;
}

.owl-carousel.home-slider:hover .owl-nav .owl-prev {
  margin-left: 50px;
}

.owl-carousel.home-slider:hover .owl-nav .owl-next {
  margin-right: 50px;
}

@media (max-width: 768px) {
  .owl-carousel.home-slider:hover .owl-nav .owl-prev {
    display: none;
    margin-left: 15px;
  }

  .owl-carousel.home-slider:hover .owl-nav .owl-next {
    display: none;
    margin-right: 15px;
  }
}

.owl-carousel.home-slider .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .owl-carousel.home-slider .owl-dots {
    bottom: 30px;
  }
}

.owl-carousel.home-slider .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  margin: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.owl-carousel.home-slider .owl-dots {
  text-align: center;
}

.owl-carousel.home-slider .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  margin: 5px;
  border-radius: 50%;
  background: #ccc;
  position: relative;
}

.owl-carousel.home-slider .owl-dots .owl-dot:after {
  position: absolute;
  top: -2px;
  left: -2px;
  right: 0;
  bottom: 0;
  width: 14px;
  height: 14px;
  content: '';
  border: 1px solid #ccc;
  border-radius: 50%;
}

.owl-carousel.home-slider .owl-dots .owl-dot:hover,
.owl-carousel.home-slider .owl-dots .owl-dot:focus {
  outline: none !important;
}

.owl-carousel.home-slider .owl-dots .owl-dot.active {
  background: #fff;
}

.owl-carousel.home-slider .owl-dots .owl-dot.active:after {
  border-color: #fff;
}
/* End Home Carousel */
.hero_single.version_2 {
  height: 750px;
}

#text-overlay {
  background-color: rgba(0, 0, 0, 0.739);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  height: 100%;
}

#text-overlay h1 {
  font-size: 74px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
}

#text-overlay p.sub-title {
  font-size: 18px;
}

#text-overlay div.content {
  padding-top: 50px;
  width: 100%;
}

/* About Section */
.about-section {
  position: relative;
  padding: 120px 0;
}

.about-section .about-content .section-heading {
  font-family: inherit;
  font-weight: 700;

  color: var(--dark-color);
  font-size: 20px;
  line-height: 30px;
  margin: 0 0 25px;
}

.about-section .about-content .section-content {
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  color: var(--text-grey);
  line-height: 1.8;
  font-weight: 700;
}

.about-section .about-image {
  position: relative;
  margin-left: 40px;
}

.about-section .about-image .about-image-big {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;

  border-radius: 20px;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.08);
}

.about-section .about-image .about-image-two {
  position: relative;
  margin-top: -150px;
  margin-bottom: 15px;
  margin-left: 75px;
  width: 100%;
}

.about-section .about-image .about-image-two .about-image-two-content {
  position: relative;
  border-radius: 20px;
  border: 1px solid #EBE6DE;
  background: #ffffff;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.06);
  max-width: 270px;
  transform: rotate(6.371deg);
  text-align: center;
  margin-left: auto;
  padding: 12px 14px;
}

.about-section .about-image .about-image-info {
  z-index: 2;
  display: inline-block;
  max-width: 210px;
  background-color: var(--primary);
  border-radius: 10px;
  text-align: center;
  padding: 0 20px 17px;
  position: absolute;
  left: -30px;
  bottom: 10px;
}

.about-section .about-image .about-image-info .about-image-info-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 5px solid #ffffff;
  background-color: var(--dark-color);
  font-size: 18px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -22px auto 18px;
}

.about-section .about-image .about-image-info .about-image-info-icon i {
  display: block;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.about-section .about-image .about-image-info:hover .about-image-info-icon i {
  transform: rotateY(360deg);
}

.about-section .about-image .about-image-info .about-image-info-title {
  font-family: "Nunito", sans-serif;
  font-weight: 700;

  color: #ffffff;
  font-size: 15.493px;
  line-height: 23.24px;
  margin: 0 0 15px;
}

.about-section .about-image .about-image-info .about-image-info-text {
  font-family: "Nunito", sans-serif;
  font-weight: 500;

  color: #ffffff;
  font-size: 12.395px;
  line-height: 1;
  margin: 0 0 4px;
}

.about-section .about-image .about-image-info .about-image-info-number {
  font-family: "Nunito", sans-serif;
  font-weight: 700;

  color: #ffffff;
  font-size: 18.592px;
  line-height: 22.781px;
  margin: 0;
}

.about-section .about-image .about-image-info .about-image-info-number a {
  font-size: clamp(14px, 2vw, 20px);
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: all 500ms ease;
}

.about-section .about-image .about-image-info:hover .about-image-info-number a {
  background-size: 100% 1px;
  color: var(--dark-color);
}

@media only screen and (max-width: 1024px) {
  .about-section .about-image {
    margin: 35px 0 0;
  }

  .about-section .about-image .about-image-big {
    width: 100%;
  }

  .about-section .about-image .about-image-two {
    margin-left: 20px;
  }
}

@media only screen and (max-width: 820px) {
  .about-section .about-image {
    padding-left: 25px;
  }
  .about-section .about-image .about-image-info .about-image-info-title {
    font-size: 14px; 
  }
  .about-section .about-image .about-image-info {
    left: 0;
    bottom: -70px;
    max-width: 175px;
  }
  .about-section .about-image .about-image-two,
  .about-section .about-image .about-image-info .about-image-info-text {
    display: none;
  }
}

/* New Listings Styling */
.bg-listings {
  background-color: #FAF5EE;
  position: relative;
}

.bg-listings .bg-overlay {
  background-image: url('https://storage.googleapis.com/muslimpergi/uploads/gallery/pict/7397/pattern-1.png');
  opacity: 0.05;
  height: 100%;
  width: 100%;
  top: 0;
  position: absolute;
}

.listings {
  background-color: #FAF5EE;

  position: relative;
  padding: 75px 0 80px;
}

.listing-card {
  background-color: #ffffff;
  margin-bottom: 30px;
  transition: all 500ms ease;
  
  border-radius: 10px;
  border: 1px solid #EBE6DE;

  position: relative;
}

.listing-card:hover {
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.06);
}

.listing-card .listing-card-image-box {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  z-index: 1;
  margin: -1px -1px 0;

  box-shadow: none;
  text-decoration: none;
}

.listing-card .listing-card-image-box img {
  display: block;
  height: 225px;
  width: 100%;
  object-fit: cover;
  object-position: top;

  border-radius: 10px 10px 0 0;
  border: 1px solid #EBE6DE;
}

.listing-card .listing-card-btn-group {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 11;
}

.listing-card .listing-card-btn-group .listing-card-btn-group-category {
  min-width: 66px;
  padding: 3px 5px;
  display: table;
  background-color: #ffffff;
  font-size: 12px;
  color: var(--primary);
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  border-radius: 5px;
}

.listing-card .listing-card-image-overlay {
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #000000d6;
  z-index: 1;
  border-radius: 10px 10px 0 0;
  transition: all 500ms ease;
}

.listing-card:hover .listing-card-image-overlay {
  top: 0;
  height: 100%;
}

.listing-card .listing-card-content {
  padding: 20px;
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  border-radius: 10px;
}

.listing-card .listing-card-content .listing-card-content-title {
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  height: 55px;
  margin-bottom: 1px;
  
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.listing-card .listing-card-content .listing-card-content-title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: all 500ms ease;
}

.listing-card:hover .listing-card-content .listing-card-content-title a {
  background-size: 100% 1px;
  color: var(--primary);
}

.listing-card .listing-card-content .listing-card-content-text {
  line-height: 24px;
  margin-bottom: 18px;
}

.listing-card .listing-card-content .listing-card-inner-content {
  position: relative;
  padding: 17px 20px 15px;
  margin-top: 18px;
  background-color: #FAF5EE;
  border-radius: 10px;
  transition: all 400ms ease-in-out;
  z-index: 1;
}

.listing-card .listing-card-content .listing-card-inner-content::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--primary);
  z-index: 1;
  border-radius: 10px 10px 0 0;
  transition: all 500ms ease;
  border-radius: 10px;
  z-index: -1;
}

.listing-card:hover .listing-card-content .listing-card-inner-content::after {
  top: 0;
  height: 100%;
}


.listing-card .listing-card-content .listing-card-inner-content .listing-card-inner-content-box {
  font-family: "Nunito", sans-serif;
  display: flex;
  margin-bottom: 5px;
}

.listing-card .listing-card-content .listing-card-inner-content .listing-card-inner-content-box i {
  color: var(--primary);
  font-size: 14px;
  width: 15px;
  display: flex;
  justify-content: center;
  margin-right: 5px;
  
  transition: all 0.4s ease-in-out;
  
  /* top: 4px; */
  /* position: relative; */
}

.listing-card .listing-card-content .listing-card-inner-content .listing-card-inner-content-box .listing-card-inner-content-review-text {
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}

.listing-card:hover .listing-card-content .listing-card-inner-content .listing-card-inner-content-box i,
.listing-card:hover .listing-card-content .listing-card-inner-content .listing-card-inner-content-box .listing-card-inner-content-review-text,
.listing-card:hover .listing-card-content .listing-card-inner-content .listing-card-inner-content-box .listing-card-inner-content-price-currency {
  color: #fff;
}


.listing-card .listing-card-content .listing-card-inner-content .listing-card-inner-content-box .listing-card-inner-content-price-currency {
  font-weight: bold;
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}

.listing-card .listing-card-content .listing-card-inner-content .listing-card-inner-content-divider {
  margin-top: 7px;
  margin-bottom: 13px;
  height: 1px;
  background-color: #EBE6DE;
  transition: all 0.4s ease-in-out;
}

.listing-card:hover .listing-card-content .listing-card-inner-content .listing-card-inner-content-divider {
  background-color: RGBA(250, 245, 238, 0.5);
}

@media only screen and (max-width: 576px) {
  .listing-card .listing-card-image-box img {
    object-fit: cover;
    object-position: top;
  }
}
/* End New Listings Styling */

/* Galleries */
.galleries {
  padding: 60px 0;
}
.galleries .gal-single-item {
  position: relative;
}

.galleries .gal-single-item .gal-single-item-box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.galleries .gal-single-item .gal-single-item-box img {
  display: block;
  width: 100%;
}

.galleries .gal-single-item .gal-single-item-box .gal-single-item-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 0%;
  left: 0;
  bottom: 0;
  z-index: 1;
  background-color: #000000a6;
  transition: all 0.5s ease;
  border-radius: 10px;
}


.galleries .gal-single-item .gal-single-item-box:hover .gal-single-item-overlay {
  top: 0;
  height: 100%;
}

.galleries .gal-single-item .gal-single-item-box .gal-single-item-overlay a {
  color: var(--white);
  padding: 0;
  background-color: var(--primary);
  transition: all 500ms ease;

  width: 58px;
  height: 58px;
  border-radius: 10px;
  font-size: 25px;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  text-align: center;
  z-index: 1;
  position: relative;
}

.galleries .gal-single-item .gal-single-item-box:hover .gal-single-item-overlay a {
  opacity: 1;
}

.galleries .gal-single-item .gal-single-item-box .gal-single-item-overlay a i {
  position: relative;
  color: inherit;
  z-index: 2;
  transition: 0s;
}

.galleries .gal-single-item .gal-single-item-box .gal-single-item-overlay a::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  background-color: var(--primary);
  transition: 700ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.galleries .gal-single-item .gal-single-item-box .gal-single-item-overlay a::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  background-color: var(--white);
  transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.galleries .gal-single-item .gal-single-item-box .gal-single-item-overlay a:hover::before {
  top: 100%;
}

.galleries .gal-single-item .gal-single-item-box .gal-single-item-overlay a:hover::after {
  bottom: -50%;
}

.galleries .gal-single-item .gal-single-item-box .gal-single-item-overlay a:hover i {
  color: var(--dark-color);
}

/* Why Choose Us */
.why-choose-us {
  background-color: #FAF5EE;
  padding: 60px 0 0;
  position: relative;
}

.why-choose-us .section-content {
  position: relative;
}

.why-choose-us .section-content a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: all 500ms ease;
}

.why-choose-us .section-content a.custom-link:hover {
  background-size: 100% 1px;
  color: var(--primary);
}

.why-choose-us .bg-overlay-why {
  background-image: url('https://storage.googleapis.com/muslimpergi/uploads/gallery/pict/7397/pattern-1.png');
  opacity: 0.05;
}

.why-choose-us .bg-overlay-why {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: left bottom;
  background-repeat: no-repeat;
  animation: zumpRight 3s infinite linear;
}

@keyframes zumpRight {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0);
  }
}

.why-list {
  margin-top: 30px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-right: -600px;
  gap: 30px;
}

.why-list .why-list-box {
  position: relative;
  border-radius: 13px;
  border: 1px solid #EBE6DE;
  background: #ffffff;
  box-shadow: 0px 16px 30px 0px rgba(0, 0, 0, 0.05);
  padding: 15px 17px 29px 28px;
  margin-top: 30px;
}

.why-list .why-list-box .why-list-box-icon {
  background-color: var(--primary);
  font-size: 40px;
  color: var(--white);
  width: 82px;
  height: 82px;
  margin: -45px 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  
  transition: 500ms;
  overflow: hidden;
  position: relative;
}

.why-list .why-list-box .why-list-box-icon i {
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0s;
  transition-delay: 0s;
  transition-delay: 0.1s;
  transform: scale(1);
}

.why-list .why-list-box .why-list-box-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  background-color: var(--primary);
  transition: 700ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.why-list .why-list-box .why-list-box-icon::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  background-color: var(--dark-color);
  transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.why-list .why-list-box:hover .why-list-box-icon i {
  transform: scale(0.95);
}

.why-list .why-list-box:hover .why-list-box-icon::after {
  bottom: -50%;
}

.why-list .why-list-box h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0 0 9px;
}

.why-list .why-list-box p {
  line-height: 1.8;
}

.bg-inside-column {
  margin-left: 0px;
  margin-right: -150px;
  height: 100%;
}

.bg-inside-column .why-image {
  position: relative;
  text-align: right;

  height: 100%;
  width: 100%;
  background: url('https://storage.googleapis.com/muslimpergi/uploads/site/background/277/background_ampuh_banner(2).jpeg');
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-inside-column .why-image img {
  border-radius: 50px 0px 0px 0px;
  max-width: 100%;
  height: auto;
  min-height: 750px;
  object-fit: cover;

  width: 100%;
  display: block;
}

@media only screen and (min-width: 1199px) {
  .why-choose-us {
    padding-top: 0;
    overflow: hidden;
  }
  .why-choose-us .container,
  .why-choose-us .container .col-xl-6:last-child {
    padding-right: 0;
  }

  .why-choose-us .container .col-xl-6:first-child {
    padding-top: 60px;
  }
}

@media only screen and (max-width: 1199px) {
  .why-choose-us .container .col-xl-6:last-child {
    display: none;
  }

  .why-list {
    margin-bottom: 60px;
    grid-template-columns: repeat(2, 1fr);
    margin-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .why-list {
    grid-template-columns: repeat(1, 1fr); 
  }
}



/* <!-- YT Gallery --> */

:root {
  --ytgallery-primary: #042b86;
  --ytgallery-secondary: #6c757d;
  --ytgallery-background: var(--primary);
  --ytgallery-hover: var(--dark-color);
  --ytgallery-contrast: #fff;
}

.testimoni.galleries {
  background-color: #FAF5EE;
  position: relative;
}

.testimoni .bg-overlay {
  background-image: url('https://storage.googleapis.com/muslimpergi/uploads/gallery/pict/7397/pattern-1.png');
  opacity: 0.05;
  height: 100%;
  width: 100%;
  top: 0;
  position: absolute;
}

.api-input {
  width: 100%;
  line-height: 3;
  background-color: var(--ytgallery-background);
  border: none;
  color: var(--ytgallery-contrast);
  outline: none;
  padding: 0 10px;
  margin-bottom: 10px;
}

.ytgallery-search {
  display: none;
  width: 100%;
  line-height: 3;
  background-color: var(--ytgallery-background);
  border: none;
  color: var(--ytgallery-contrast);
  outline: none;
  padding: 0 10px;
  margin: 10px 0;
}

.ytgallery-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  user-select: none;
  font-family: "Montserrat", "Helvetica", "Arial", sans-serif;
  color: var(--ytgallery-contrast)
}

.ytgallery-btn {
  background-color: var(--primary);
  padding: 15px;
  cursor: pointer;
  margin: 5px;
  transition: .2s;
  user-select: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 10px !important;
}

.ytgallery-info {
  color: var(--dark-color);
  padding-left: 10px;
  padding-right: 10px;
}

.ytgallery-btn:hover {
  background-color: var(--dark-color);
  filter: brightness(0.9);
}

.ytgallery-btn.disabled {
  filter: brightness(0.5);
  cursor: default;
}

.ytgallery-gallery {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.ytgallery-video-container {
  margin-top: 10px;
  width: 31%;
  margin-right: 1%;
  margin-left: 1%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  margin-bottom: 10px;
  transition: .2s;
  text-decoration: none;
  background-color: var(--ytgallery-background);
  color: var(--ytgallery-contrast);
  border-radius: 10px;
}

.ytgallery-video-container:focus {
  outline: none !important;
}

.ytgallery-video-container:hover {
  transform: scale(1.05);
  background-color: var(--ytgallery-hover);
  color: var(--white);
  font-weight: 700;
}

.ytgallery-thumbnail-container {
  display: block;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
  border-radius: 10px 10px 0 0;
}

.ytgallery-video-thumbnail {
  object-fit: cover;
  width: 100%;
}

.ytgallery-video-title {
  font-family: "Montserrat", "Helvetica", "Arial", sans-serif;
  font-weight: 700;
  height: 75px;
  padding: 15px;
  line-height: 1.5em;
  margin-bottom: 0px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;}

.ytgallery-meta-info {
  font-family: "Montserrat", "Helvetica", "Arial", sans-serif;
  margin: 0;
  padding-left: 5px;
  color: var(--white);
}

.ytgallery-video-duration {
  position: absolute;
  margin: 0;
  top: 5px;
  right: 5px;
  color: #fff;
  z-index: 99;
  text-shadow: 0 0 2px #000;
  background: rgba(0, 0, 0, .6);
  padding: 0 3px;
  font-size: 12px !important;
  font-family: "Montserrat", "Helvetica", "Arial", sans-serif;
}

.ytgallery-meta {
  font-weight: 700;
  padding: 15px 10px;
  display: flex;
  justify-content: space-between;
}

.ytgallery-meta div {
  display: flex;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
}

.ytgallery-meta-icon {
  height: 1.2rem;
  width: 1.2rem;
  fill: var(--white);
}

.ytgallery-error {
  text-align: center;
  color: var(--ytgallery-contrast);
  width: 100%;
  font-family: "Montserrat", "Helvetica", "Arial", sans-serif;
}

.ytgallery-loader {
  border: 16px solid var(--ytgallery-background);
  border-top: 16px solid var(--ytgallery-secondary);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: ytgallery-spin 2s linear infinite;
  margin-right: auto;
  margin-left: auto;
  margin-top: 30px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

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

/* Article */
.blog-section {
  position: relative;
  padding: 60px 0;
}

.blog-list .blog-item {
  background: #ffffff;
  padding: 29px;
  margin-bottom: 30px;
  
  box-shadow: 0px 16px 30px 0px rgba(0, 0, 0, 0.05);
  border-radius: 13px;
  border: 1px solid #EBE6DE;
}

.blog-list .blog-item .blog-content {
  position: relative;
}

.blog-list .blog-item .blog-content h3.blog-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin: 0 0 11px;

  height: 68px;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-list .blog-item .blog-content h3.blog-title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: all 500ms ease;
}

.blog-list .blog-item:hover .blog-content h3.blog-title a {
  background-size: 100% 1px;
  color: var(--primary);
}

.blog-list .blog-item .blog-content p.blog-text {
  opacity: 0.6;
  margin: 0 0 20px;

  height: 62px;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-list .blog-item .blog-content .blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f0eefa;
  border-radius: 10px;
  padding: 20px 20px 20px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .blog-list .blog-item .blog-content .blog-meta {
    margin-bottom: 20px;
  }
}

.blog-list .blog-item .blog-content .blog-meta .blog-author {
  position: relative;
  min-height: 35px;
  padding: 1px 0 0 45px;
  align-items: center;
  display: flex;
}

.blog-list .blog-item .blog-content .blog-meta .blog-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background-color: #ffffff;
  font-size: 12px;
  color: var(--primary);
  overflow: hidden;
}

.blog-list .blog-item:hover .blog-content .blog-meta .blog-link {
  background-color: var(--primary);
  color: #ffffff;
}

.blog-list .blog-item:hover .blog-content .blog-meta .blog-link i {
  animation: iconTranslateX 0.4s forwards;
}


@keyframes iconTranslateX {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}

.blog-list .blog-item .blog-content .blog-meta .blog-author img {
  width: 35px !important;
  height: 35px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}

.blog-list .blog-item .blog-content .blog-meta .blog-author h5.blog-author-name {
  line-height: 1;
  font-size: 16px;
  margin: 0;
}

.blog-list .blog-item a.blog-image {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.blog-list .blog-item a.blog-image img {
  height: 200px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  max-width: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.blog-list .blog-item a.blog-image .blog-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  position: absolute;
  width: 100%;
  height: 0%;
  left: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(45, 35, 48, 0.6);
  transition: all 0.5s ease;
  border-radius: 10px;
}


.blog-list .blog-item a.blog-image .blog-overlay i {
  font-size: clamp(35px, 2vw, 40px);
  color: #ffffff;
  display: inline-block;
  opacity: 0;
  transition: opacity 500ms ease;
}

.blog-list .blog-item .blog-image .blog-date {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: inline-block;
  background-color: var(--primary);
  text-align: center;
  line-height: 1;
  border-radius: 20px 0px 10px 0px;
  color:  #ffffff;
  font-size: 32px;
  font-weight: 700;
  padding: 7px 12px 13px;
}

.blog-list .blog-item .blog-image .blog-date i {
  margin-top: 1px;
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
}

.blog-list .blog-item:hover .blog-image .blog-overlay i {
  opacity: 1;
}

.blog-list .blog-item:hover .blog-image .blog-overlay {
  top: 0;
  height: 100%;
}

.blog-list .blog-item .blog-image .blog-date span {
  margin-top: 1px;
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
}

/* CTA */
.cta-download {
  /* background: url('https://storage.googleapis.com/muslimpergi/uploads/gallery/pict/6549/12067358_4882066.jpg') no-repeat bottom center / cover; */
  position: relative;
  width: 100%;
}

.cta-download::before {
  background: var(--primary);
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.cta-download .btn-theme {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 25px;
  border: 2px solid var(--dark-color);
}

.cta-download .download-txt {
  padding: 55px 0 50px;
}

@media (min-width: 1199px) {
  .cta-download .download-txt {
    padding: 80px 0 50px;
  }
}

.cta-download .download-txt h3 {
  font-size: 35px;
  font-weight: 700;
  color: var(--dark-color);
}

.cta-download .download-txt small,
.cta-download .download-txt p {
  color: var(--dark-color);
  z-index: 1;
}

.cta-download .download-txt .action-button ul {
  display: flex;
}

.cta-download .download-txt .action-button ul li:first-child {
  margin-right: 10px;
}

.cta-download .download-txt .action-button ul li a span {
  font-size: 20px;
  color: var(--dark-color);
}

.cta-download .download-txt .action-button ul li .btn-theme.light .download-text {
  z-index: 1;
}

.cta-download .download-txt .action-button ul li .btn-theme.light:hover .download-text small,
.cta-download .download-txt .action-button ul li .btn-theme.light:hover .download-text p {
  color: #fff;
}

.cta-download .download-txt .action-button ul li a:hover span {
  color: var(--white);
}

.cta-download img {
}

/* End CTA */

/* <!-- Footer --> */
footer {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center;
  position: relative;
  z-index: 0;
  background-image: url(https://storage.googleapis.com/muslimpergi/uploads/gallery/pict/5239/footer-bg2.f8010952.png) !important;
  background-color: var(--bg-black-transparent) !important;
}

footer .partner .partner-payment {
  display: flex;
  position: relative;
}

footer .partner .partner-payment img {
  margin: 10px 15px 2px 0;
  border-radius: 5px;
  width: 56px;
  height: 40px;
}

footer .partner .partner-payment p {
  padding-left: 20px;
}

footer .partner .partner-payment p::before {
  font-family: FontAwesome !important;
  content: "\f054";
  top: 20px;
  left: 70px;
  position: absolute;
}

footer ul.contacts li {
  display: flex;
}

footer ul.contacts li div.info {
  flex: 2;
}

footer ul.contacts li div.action {
  flex: 1;
}

footer ul.contacts li div.action {
  display: flex;
  justify-content: center;
}

footer ul.contacts li div.action a {
  margin: 10px 5px;
}

footer ul.contacts li div.action a img {
  height: 35px;
  border-radius: 10px;
}

ul#additional_links {
  float: unset;
  padding: 0;
}

ul#additional_links li span,
ul#additional_links li a {
  opacity: 1;
}

#footage {
  background: var(--dark-color);
  color: var(--footer-color);
}

ul#footer-selector li,
ul#footer-selector li:last-child {
  margin: 2px;
}

ul#footer-selector li img {
  border-radius: 5px;
}

#toTop {
  background: #042b86;
  color: transparent;
  transition: all 0.2s ease-in 0.2s;
  -webkit-transition: all 0.2s ease-in 0.2s;
  -moz-transition: all 0.2s ease-in 0.2s;
  -o-transition: all 0.2s ease-in 0.2s;
}

#toTop i {
  padding-top: 10px;
  color: #fff;
}

#toTop:hover {
  background: #ff7c00;
  color: #fff;
}

@media (min-width: 992px) {

  ul#footer-selector {
    float: right;
  }
}

@media (max-width: 800px) {

  #footer-selector {
    display: inline-block;
    text-align: center;
  }

  #additional_links {
    margin-top: 0;
    display: flex;
    justify-content: center;
  }
}


/* <!-- Single Whatsapp Chat --> */

.whatsapp-name {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 0.5;
}

#whatsapp-chat {
  box-sizing: border-box !important;
  outline: none !important;
  position: fixed;
  width: 350px;
  border-radius: 10px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
  bottom: 90px;
  left: 30px;
  overflow: hidden;
  z-index: 99;
  animation-name: showchat;
  animation-duration: 1s;
  transform: scale(1);
}

a.blantershow-chat {
  background: #fff;
  color: #404040;
  position: fixed;
  height: 45px;
  display: flex;
  font-weight: 400;
  justify-content: space-between;
  z-index: 98;
  bottom: 15px;
  left: 15px;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
}

a.blantershow-chat svg {
  transform: scale(1.2);
  margin: 0 10px 0 0;
}

.header-chat {
  /* background: linear-gradient(to right top, #6f96f3, #164ed2);
 */
  background: #009688;
  background: #095e54;
  color: #fff;
  padding: 20px;
}

.header-chat h3 {
  margin: 0 0 10px;
}

.header-chat p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.info-avatar {
  position: relative;
}

.info-avatar img {
  background-color: #fff;
  border-radius: 100%;
  width: 50px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  float: left;
  margin: 0 10px 0 0;
}

a.informasi {
  padding: 20px;
  display: block;
  overflow: hidden;
  animation-name: showhide;
  animation-duration: 0.5s;
}

a.informasi:hover {
  background: #f1f1f1;
}

.info-chat span {
  display: block;
}

#get-label,
span.chat-label {
  font-size: 12px;
  color: #888;
}

#get-nama,
span.chat-nama {
  margin: 5px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: #222;
}

#get-label,
#get-nama {
  color: #fff;
}

span.my-number {
  display: none;
}

/* .blanter-msg {
 color: #444;
 padding: 20px;
 font-size: 12.5px;
 text-align: center;
 border-top: 1px solid #ddd;
}
*/
textarea#chat-input {
  border: none;
  font-family: "Arial", sans-serif;
  width: 100%;
  height: 40px;
  outline: none;
  resize: none;
  padding: 7px 20px;
  font-size: 14px;
}

a#send-it {
  background: #095e54;
  color: #fff;
  font-weight: 700;
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

a#purchase-now {
  background-color: #eee;
  color: #333;
  font-weight: 700;
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 5px;
}

a#send-it i {
  font-size: 20px;
  margin-left: 5px;
}

.first-msg {
  background: transparent;
  padding: 30px;
  text-align: center;
}

.first-msg span {
  background: #e2e2e2;
  color: #333;
  font-size: 14.2px;
  line-height: 1.7;
  border-radius: 10px;
  padding: 15px 20px;
  display: inline-block;
}

.start-chat .blanter-msg {
  background-color: #fff;
  padding: 10px;
  display: block;
}

#get-number {
  display: none;
}

a.close-chat {
  position: absolute;
  top: 5px;
  right: 15px;
  color: #fff;
  font-size: 30px;
}

@keyframes ZpjSY {
  0% {
    background-color: #b6b5ba;
  }

  15% {
    background-color: #111;
  }

  25% {
    background-color: #b6b5ba;
  }
}

@keyframes hPhMsj {
  15% {
    background-color: #b6b5ba;
  }

  25% {
    background-color: #111;
  }

  35% {
    background-color: #b6b5ba;
  }
}

@keyframes iUMejp {
  25% {
    background-color: #b6b5ba;
  }

  35% {
    background-color: #111;
  }

  45% {
    background-color: #b6b5ba;
  }
}

@keyframes showhide {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
}

@keyframes showchat {
  from {
    transform: scale(0);
    opacity: 0;
  }
}

@media screen and (max-width: 480px) {
  #whatsapp-chat {
    width: auto;
    left: 5%;
    right: 5%;
    font-size: 80%;
  }
}

.hide {
  display: none;
  animation-name: showhide;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
}

.show {
  display: block;
  animation-name: showhide;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
}

.whatsapp-message-container {
  display: flex;
  z-index: 1;
}

.whatsapp-message {
  padding: 7px 14px 6px;
  background-color: #fff;
  border-radius: 0px 8px 8px;
  position: relative;
  transition: all 0.3s ease 0s;
  opacity: 0;
  transform-origin: center top 0px;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  margin-top: 4px;
  margin-left: -54px;
  max-width: calc(100% - 66px);
}

.whatsapp-chat-body {
  padding: 20px 20px 20px 10px;
  background-color: #e6ddd4;
  position: relative;
}

.whatsapp-chat-body::before {
  display: block;
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  z-index: 0;
  opacity: 0.08;
  background-image: url("https://elfsight.com/assets/chats/patterns/whatsapp.png");
}

.dAbFpq {
  display: flex;
  z-index: 1;
}

.eJJEeC {
  background-color: #fff;
  width: 52.5px;
  height: 32px;
  border-radius: 16px;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  margin-left: 10px;
  opacity: 0;
  transition: all 0.1s ease 0s;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
}

.hFENyl {
  position: relative;
  display: flex;
}

.ixsrax {
  height: 5px;
  width: 5px;
  margin: 0px 2px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  top: 0px;
  background-color: #9e9da2;
  animation-name: ZpjSY;
}

.dRvxoz {
  height: 5px;
  width: 5px;
  margin: 0px 2px;
  background-color: #b6b5ba;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  top: 0px;
  animation-name: hPhMsj;
}

.kAZgZq {
  padding: 7px 14px 6px;
  background-color: #fff;
  border-radius: 0px 8px 8px;
  position: relative;
  transition: all 0.3s ease 0s;
  opacity: 0;
  transform-origin: center top 0px;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  margin-top: 4px;
  margin-left: -54px;
  max-width: calc(100% - 66px);
}

.kAZgZq::before {
  position: absolute;
  background-image: url("data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf ///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  top: 0px;
  left: -12px;
  width: 12px;
  height: 19px;
}

.bMIBDo {
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.4);
}

.iSpIQi {
  font-size: 14px;
  line-height: 19px;
  margin-top: 4px;
  color: #111;
}

.iSpIQi {
  font-size: 14px;
  line-height: 19px;
  margin-top: 4px;
  color: #111;
}

.cqCDVm {
  text-align: right;
  margin-top: 4px;
  font-size: 12px;
  line-height: 16px;
  color: rgba(17, 17, 17, 0.5);
  margin-right: -8px;
  margin-bottom: -4px;
}
