@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");

html {
  /* ====== Colors ====== */
  --blur-color-umi: #74acac;
  --solid-color-umi: #0c3c57;
  --first-color: #051923;
  --first-color-alt: #048654;
  --secondary-color: #003d57;
  --secondary-color-alt: #072331;
  --title-color: #fff;
  --text-gray: #555555;
  --text-color: #707070;
  --text-color-light: #a6a6a6;
  --body-color: #fbfefd;
  --container-color: #ffffff;

  /* ====== Font and typography ====== */
  --body-font: "Poppins", sans-serif;
  --biggest-font-size: 4rem;
  --h1-font-size: 3.375rem;
  --h2-font-size: 2.8rem;
  --h3-font-size: 1.7rem !important;
  --p-font-size: 1.525;
  --p-fontdate-size: 1.8;
  --p-fontprice-size: 2rem;
  /* --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem; */

  /* ====== Font weight ====== */
  --font-medium: 500;
  --font-semi-bold: 600;

  --footer: #121921 !important;
  --footage: #07090c !important;
}

.top-0 { top: 0 }
.top-45 { top: 45px }

@media screen and (min-width: 768px) {
  :root {
    --biggest-font-size: 3.375rem;
    --h1-font-size: 2.9rem;
    --h2-font-size: 2.2rem;
    --h3-font-size: 1.7rem;
    --p-font-size: 1rem;
    --p-fontdate-size: 1.4;
    --p-fontprice-size: 1.7rem;
  }
}

@media screen and (max-width: 767px) {
  :root {
    --biggest-font-size: 2.3rem;
    --h1-font-size: 2.2rem;
  }
}


@media screen and (max-width: 480px) {
  .hide {
    display: none;
  }
  :root {
    --biggest-font-size: 2.3rem;
    --h1-font-size: 2rem;
    --h2-font-size: 1rem;
    --h3-font-size: 1.2rem !important;
    --p-font-size: 0.8rem;
    --p-fontdate-size: 0.9;
    --p-fontprice-size: 1rem;
  }
}

/* ====== BASE ====== */
*,
::before,
::after {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}
body {
  background-color: var(--first-color);
  font-family: "Poppins", sans-serif;
  width: 100%;
}

main {
  background-color: transparent;
}

h1, h2, h3, h4, h5, h6 {
  color: #fff;
}

.container-fluid {
  padding: 0;
}

/* btn */
.btn {
  padding: 8px 20px;
  font-size: var(--p-font-size);
}
.btn-primary {
  background-color: #fff;
  color: #051923;
  border: none;
  transition: 0.3s;
  transform: translateY(1px);
}
.btn-primary:hover {
  background-color: #ffffff;
  transform: translateY(3px);
  color: #051923;
}

.btn-primary.disabled, .btn-primary:disabled {
  background-color: #fff;
}

/* Header */
.affix+.sub-header {
  padding-top: 70px;
}

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

/* Sub Header Style */

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

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

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

.sub-header ul.left-info li:last-child {
  border-right: 1px solid rgba(250, 250, 250, 0.3);
}

.sub-header ul.left-info li i {
  margin-right: 10px;
  font-size: 18px;
}

.sub-header ul.left-info li a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.sub-header ul.right-icons {
  float: right;
}

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

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

.sub-header ul.right-icons li a {
  color: #fff;
  transition: all 0.3s;
}

.sub-header ul.right-icons li a i {
  font-size: 18px;
}

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

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

@media screen and (max-width: 768px) {
  .hide-text {
    display: none;
  }
}

header {
  background-color: transparent;
  display: flex;
  justify-content: space-between;
}

header.header.sticky {
  background-color: #fff;
}

header.header .btn-custom {
  padding: 5px 25px !important;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  width: fit-content;
}

header.header.sticky .btn-custom {
  border-color: var(--gray);
  color: var(--gray);
}

header.header .btn-custom i {
  font-size: 15px;
}

@media (min-width: 991px) {
  .main-menu>ul>li span>a {
    padding: 0 8px 0 8px; 
  }
  .main-menu {
    top: 0;
  }
  .modal-link {
    display: inline-block;
  }
  #menu-logged-in {
    display: none;
  }
}

@media (max-width: 991.98px) {
  header.header #logo {
    height: 77px;
  }

  header.header #logo img {
    height: 35px;
    margin: 17px 0 0 0;
  }

  header.header.sticky #logo img {
    margin: 8px 0 0 0;
  }

  header.header #modal-link {
    display: none;
  }

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

/* Section */
section {
  padding: 60px 60px;
  /* min-height: 100vh; */
}
section.hero_in,
section.hero_single  {
  padding: 0;
}
/* .hero_in.tours_detail,
.hero_single.version_2 {
  background: url('https://storage.googleapis.com/muslimpergi/uploads/gallery/pict/5368/Blur_Header.webp') center bottom fixed no-repeat !important;
  height: 350px;
} */
.hero_in.tours_detail {
  margin-top: 0;
  height: 350px;
}
.hero_in.tours_detail:before,
.hero_single.version_2:before {
  background: var(--first-color);
}
section h1 {
  font-size: var(--h1-font-size);
  color: #fff;
}
section h2 {
  font-size: var(--h2-font-size);
}
section h3 {
  font-size: var(--h3-font-size);
}
section p {
  font-size: var(--p-font-size);
  font-weight: reguler;
  color: var(--title-color);
}
/* Akhir Section */

/* Home */
.bg-blur {
  width: 100%;
  height: 100%;
  position: absolute;
}

.bg-blur img {
  width: 100%;
  height: 100%;
}

#home {
  padding-top: 200px;
  margin-top: -50px;
}
#home .text {
  margin: 1px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#home .text p {
  text-align: center;
}
#home .carousel {
  width: 100%;
  height: 84vh;
  margin-top: 54px;
  border-radius: 15px;
  border: 7px solid #092d40;
  position: relative;
  overflow: hidden;
}

/* #home */
#home .carousel-inner {
  /* transition: 0.3s; */
  border-radius: 8px;
  height: 100%;
}
#home .carousel .carousel-control-next,
#home .carousel .carousel-control-prev {
  width: 8%;
}
#home .carousel .carousel-control-next i,
#home .carousel .carousel-control-prev i {
  font-size: 28px;
  border-radius: 6px;
  background-color: #051923a6;
}
/* Akhir Home */

/*  */
section#pilihanPaket {
  padding: 0px 60px;
  min-height: auto;
}
section#pilihanPaket .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section#pilihanPaket .paket-box {
  width: 100%;
  padding: 20px 30px;
  margin: 10px 0px;
  border-radius: 8px;
  background-color: #092d40;
}
#pilihanPaket h1 {
  text-align: center;
  font-size: var(--h1-font-size);
}
#pilihanPaket .paket-item-highlight img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px 4px 0px 0px;
}
#pilihanPaket .paket-item-highlight p {
  text-align: center;
  background-color: #ffffff31;
  color: #fff;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
  border-radius: 0px 0px 4px 4px;
}

#pilihanPaket .paket-item {
  background-color: transparent;
  padding: 0;
}
/*  */

/* About */

#about .about-image img {
  width: 100%;
  height: 25.64.06995230524642vh;
  border-radius: 8px;
  border: 7px solid #092d40;
  object-fit: cover;
  object-position: top;
}
/* Akhir About */



/* Sertifikasi */
#sertifikasi {
  /* background: url("https://storage.googleapis.com/muslimpergi-demo/uploads/gallery/pict/783/Blur_Sertif.png");
  background-size: cover;
  background-position: center; */
  min-height: auto;
  padding-top: 0px;
  padding-bottom: 60px;
}
#sertifikasi .container {
  background-color: #fff;
  border-radius: 8px;
}
#sertifikasi img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
/* Akhir Sertifikasi */

/* Owl Carousel Home Slider */
.owl-carousel.home-slider {
  position: relative;
  height: 650px;
  z-index: 0;
}

.owl-carouse.home-slider .owl-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform .6s ease-in-out;
}

.owl-carousel.home-slider .slider-item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 84vh;
  object-fit: cover;
  border-radius: 8px;
}
/* .owl-carousel.home-slider .slider-item .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  opacity: .4;
} */

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

#home .home-slider .owl-nav .owl-prev,
#home .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) {

  #home .home-slider .owl-nav .owl-prev,
  #home .home-slider .owl-nav .owl-next {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

#home .home-slider .owl-nav .owl-prev span:before,
#home .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) {

  #home .home-slider .owl-nav .owl-prev span:before,
  #home .home-slider .owl-nav .owl-next span:before {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

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

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

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

#home .home-slider .owl-nav button span {
  width: 35px;
  height: 35px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: none;
  font-size: 28px;
  border-radius: 6px;
  background-color: #051923a6;
}

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

#home .home-slider:hover .owl-nav .owl-prev {
  margin-left: 20px;
}

#home .home-slider:hover .owl-nav .owl-next {
  margin-right: 20px;
}

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

@media (max-width: 991px) {
  #home .home-slider .owl-nav .owl-prev {
    margin-left: 20px;
    opacity: 1;
  }
  
  #home .home-slider .owl-nav .owl-next {
    margin-right: 20px;
    opacity: 1;
  }
}

@media (max-width: 767.98px) {
  #home .home-slider .owl-dots {
    bottom: 5px;
  }
}

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

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

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

#home .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%;
}

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

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

#home .home-slider .owl-dots .owl-dot.active:after {
  border-color: #fff;
}

/* Paket */
.bg-blur-paket {
  background: url('https://storage.googleapis.com/muslimpergi/uploads/gallery/pict/5386/Blur_Paket__1_.webp');
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  background-position: bottom;
}
#paket {
  position: relative;
}
#paket .paket-text {
  text-align: center;
  margin-bottom: 40px;
}
#paket .paket-text p {
  padding: 0px 60px;
}
.paket-item {
  background-color: var(--secondary-color-alt);
  padding: 5px;
  border-radius: 8px;
}
.paket-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px 8px 0px 0px;
}
.paket-item h3 a {
  text-align: center;
  margin-top: 20px;
  color: var(--white);
  font-size: var(--h3-font-size);
  display: -webkit-box;
  max-width: 100%;
  height: 65px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.paket-item p.date {
  font-size: var(--p-fontdate-size);
  font-weight: bold;
  text-align: center;
}
.paket-item p.price {
  font-size: var(--p-fontprice-size);
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.paket-item .paket-item-text {
  padding: 0 10px 10px 10px;
  color: var(--title-color);
}
.paket-item .paket-detail {
  /* padding: 0px 25px; */
  margin: 0 0 15px 0;
}
.paket-item .flex-text {
  display: flex;
  flex-direction: row;
  margin: 2px 0px;
}
.paket-item .flex-text .flex-text-kiri {
  flex: 58%;
  display: flex;
  align-items: center;
}
.paket-item .flex-text .flex-text-kanan {
  flex: 42%;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.paket-item .flex-text .flex-text-kiri i {
  font-size: 24px;
}
.paket-item .flex-text .flex-text-kiri p {
  margin-bottom: 0;
  margin-left: 5px;
}

/* .paket-item .flex-text:last-child .flex-text-kanan {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
} */
.paket-item a {
  width: 100%;
}
#paket .owl-theme .owl-nav {
  display: none;
}
#paket .owl-theme .owl-dot {
  margin-top: 10px;
}
#paket .owl-theme .owl-dot span {
  background: #fff;
}
#paket .owl-theme .owl-dot.active span {
  background: #82c2e2;
}

.paket-item .overlay-booked {
  background: linear-gradient(to bottom, rgba(0, 0, 255, 0) 20%, #051d29) 80%;
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0;
  top: 0;
  position: absolute;
  border-radius: 8px;

}

.paket-item .paket-item-text .img-booked {
  width: auto;
  bottom: 45px;
  left: 0;
  right: 0;
  display: flex;
  position: absolute;
  justify-content: center;
  z-index: 2;
}

.paket-item .paket-item-text img.booked {
  height: auto;
  width: 270px;
  transform: rotate(355deg);
}

#paket .swiper-nav-listing {
  position: relative;
  bottom: 270px;
}

#paket .swiper-button-prev {
  top: 75%;
  left: -8%;
}

#paket .swiper-button-next {
  top: 75%;
  right: -8%;
}

@media (max-width: 600px) {
  #paket .swiper-button-prev {
    height: 30px;
  }
  
  #paket .swiper-button-next {
    height: 30px;
  }
}

#paket .swiper-dots {
  margin-top: 20px;
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#paket .swiper-dots .swiper-pagination-bullet {
  background: #fff;
  padding: 5px;
  margin: 0 5px;
}

#paket .swiper-dots .swiper-pagination-bullet-active {
  background: #007aff;
}

/* Akhir Paket */

/* Listings Package */
#reccomended .owl-item {
  opacity: 1;
}

#reccomended .item {
  margin: 0;
}

#reccomended .box_grid {
  overflow: hidden;
  margin: 10px 0;
  border-radius: 15px;
  box-shadow: 0px 0px 6px 0px rgb(0 0 0 / 27%);
}

@media (max-width: 990px) {
  #menu-logged-in {
    display: block;
  }
  #reccomended .box_grid {
    margin-bottom: 30px;
  }
}

#reccomended .box_grid a {
  font-weight: 500;
  margin: 0 auto;
  width: 90%;
  left: 0;
  bottom: 15px;
  right: 0;
  position: absolute;
}

#reccomended .box_grid figure {
  height: 165px;
  border-radius: 15px 15px 0 0;
}

#reccomended .box_grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
  position: static;
  transform: none;
}

#reccomended .box_grid figure small {
  background-color: #fff;
  color: #999;
  padding: 7px 13px;
  border-radius: 0 0 10px;

  left: -3px;
  top: 0;
  position: absolute;
}

#reccomended div.wrapper .box_grid {
  margin: 20px 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

#reccomended .box_grid .wrapper h3 {
  color: #2f42bf;
  font-weight: 600;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.owl-theme .owl-dots .owl-dot span {
  transition: .3s ease;
}

#reccomended div.wrapper {
  padding-bottom: 70px;
  min-height: auto;
  position: relative;
}

#reccomended div.wrapper div.price {
  background-color: #fff;
  padding: 7px 13px;
  border: 1px solid #fff;
  border-radius: 20px 0 0;
  display: block;
  overflow: hidden;

  top: -22px;
  right: 0;
  position: absolute;
}

#reccomended div.wrapper div.price ul {
  margin: 0;
  padding: 0;
  border: 0;
}

/* Detail Package */
table.details>tbody>tr {
  line-height: 2;
}

table.details>tbody>tr>td {
  padding: 0;
  font-size: 12px;
}

#reccomended table>tbody>tr>td:nth-child(2) {
  width: 50%;
}

#reccomended table>tbody>tr:nth-child(3)>td:nth-child(3)>span>i {
  font-size: 12px;
  color: #ff7f3a;
}

#reccomended table>tbody>tr:nth-child(3)>td:nth-child(3)>span>i.fa.empty {
  color: #d7d7d7;
}

div.rate-hotel div.rating span:first-child {
  color: #777;
}

div.rate-hotel div.rating strong {
  font-weight: 600;
  color: #777;
  display: block;
}

div.rate-hotel div.rating span i {
  font-size: 12px;
  color: #ff7f3a;
  padding: 0;
}

div.rate-hotel div.rating span i.fa.empty {
  color: #d7d7d7;
}

/* Alasan */
#alasan {
  color: #fff;
  /* background: url("https://storage.googleapis.com/muslimpergi/uploads/gallery/pict/5385/Blur_About__1_.webp"); */
  /* background-size: cover; */
  /* background-position: center; */
  /* background-repeat: no-repeat; */
}
#alasan .alasan-text h1 {
  padding-top: 0;
  margin-bottom: 20px;
}

#alasan .alasan-text p {
  margin: 0;
}
#alasan .alasan-box .box-item {
  background-color: #2b414c;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 40px;
  text-align: center;
  border-radius: 8px;
  height: 280px;
  transition: 0.3s;
}

#alasan .alasan-box .box-item:hover {
  transform: translateY(-15px);
}
#alasan .alasan-box .box-item p {
  color: #d5d9db;
  padding: 0;
  margin: 0;
}
#alasan .alasan-box .box-item img {
  width: 75px;
  height: 75px;
  /* background-color: #fff; */
  background: radial-gradient(
    ellipse farthest-corner at right bottom,
    #fedb37 0%,
    #fdb931 8%,
    #9f7928 30%,
    #8a6e2f 40%,
    transparent 80%
  ),
  radial-gradient(
    ellipse farthest-corner at left top,
    #ffffff 0%,
    #ffffac 8%,
    #d1b464 25%,
    #5d4a1f 62.5%,
    #5d4a1f 100%
  );
  border-radius: 50%;
  margin-bottom: 10px;
}
/* Akhir Alasan */

/* Testimonial Section */
.testi-slider {
  width: 100%;
  position: relative;
  transition: all 0.3s;
}

.testi-slider__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-slider__img {
  width: 100%;
  object-fit: cover;
  box-shadow: none;
  border-radius: 20px;
  overflow: hidden;
}

.testi-slider__img img {
  width: 90%;
  height: auto;
  object-fit: cover;
  display: block;
  opacity: 1;
  border-radius: 20px;
  transition: all 0.3s;
}

.testi-slider__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: unset;
  border-radius: 20px;
  opacity: 0.8;
}

.testi-slider__pagination {
  width: 11px !important;
  transform: rotate(90deg);
  text-align: center;
  margin: 0 auto;
}

.testi-nav {
  z-index: 11;
  width: 100%;
  display: flex;
  justify-content: space-between;

  top: 45%;
  position: absolute;
}

.testi-slider__next {
  background: var(--primary);
  border-radius: 50%;
}

.testi-slider__prev {
  background: var(--primary);
  border-radius: 50%;
}

.testi-slider__next i,
.testi-slider__prev i {
  padding: 10px;
  font-size: 20px;
  color: #fff;
}

.testi-slider__next:hover,
.testi-slider__prev:hover {
  cursor: pointer;
}

.testimonials {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 0;

  background-image: url('https://storage.googleapis.com/muslimpergi/uploads/gallery/pict/5236/background-texture.jpg');
}

.testimonials .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgb(86 114 226 / 85%) 0%, rgba(65, 85, 163, 1) 100%);
}

.testimonials .content {
  height: 100%;
  color: var(--white);
  position: relative;
}

.testimonials h2 {
  color: var(--white);
}

.testi-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.testi-slider .swiper-pagination-custom,
.testi-slider .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.testi-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 8px 0;
}

@media screen and (max-width: 768px) {
  .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }
}

.testi-slider__pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  display: block;
  border-radius: 10px;
  background: #004dda;
  opacity: 0.2;
  transition: all 0.3s;
}

.testi-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #66b5b3;
  height: 30px;
  box-shadow: none;
}


.grid div figure {
  position: relative;
  overflow: hidden;
  margin: -3px
}

.grid div figure img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out
}

.grid div figure:hover img,.grid div figure:focus img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1)
}

.grid div figure:hover figcaption,.grid div figure:focus figcaption {
  opacity: 1
}

.grid div figure:hover figcaption .caption-content,.grid div figure:focus figcaption .caption-content {
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px)
}

.grid div figcaption {
  position: absolute;
  top: 0;
  left: 0;
  padding: 15% 0;
  width: 100%;
  height: 100%;
  background-color: black;
  background-color: rgba(0,0,0,0.6);
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out
}

.grid div figcaption .caption-content {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -100px;
  width: 200px;
  -webkit-transform: translate(0px, 15px);
  transform: translate(0px, 15px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out
}

.grid div figcaption a {
  color: #fff
}

.grid div figcaption a:hover,.grid div figcaption a:focus {
  color: #fc5b62
}

.grid div figcaption i {
  font-size: 30px;
  font-size: 1.875rem
}

.grid div figcaption p {
  margin-bottom: 0;
  margin-top: 10px;
  text-transform: uppercase;
  font-weight: 400
}

.grid div figcaption a:hover, .grid div figcaption a:focus {
  color: var(--secondary-color);
}

.box-gallery {
  border: 5px solid #f5f5f5;
  background: linear-gradient(to top right, #fff 10%, #000 100%);
  text-align: center;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, .07);
  overflow: hidden;
  width: 100%;
  position: relative;
  margin: 0;
}

.box-gallery::before {
  content: "";
  width: 50%;
  height: 75%;
  border-top: 208px solid rgba(7, 0, 2, .3);
  border-left: 140px solid var(--primary-blur-color);
  border-bottom: 188px solid transparent;
  border-right: 160px solid transparent;
  position: absolute;
  top: 0;
  left: -230px;
  z-index: 1;
  transition: all .4s ease-in-out;
}

.box-gallery:hover:before {
  border-top: 325px solid var(--secondary-color);
  border-left: 422px solid var(--secondary-color);
  border-bottom: 218px solid transparent;
  border-right: 160px solid transparent;
  transform: rotate3d(0, 0, 1, 56deg) scale3d(1, 1, 1);
  top: 103px;
  left: -365px;
}

.box-gallery img {
  width: 100%;
  height: auto;
  transform: scale(1, 1);
  transition: all .3s ease-in-out;
}

.box-gallery:hover img {
  opacity: .7;
  transform: scale(1.1, 1.1);
}

.box-gallery .box-content {
  color: #fff;
  background-color: var(--secondary-color);
  width: 60%;
  padding: 10px 10px;
  transform: scale(0);
  position: absolute;
  top: 15px;
  right: 15px;
  transition: all .5s ease-in-out;
}

.box-gallery:hover .box-content {
  transform: scale(1);
}

.box-gallery .title {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}

.box-gallery .icon {
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 1;
  transition: all .5s ease-in-out;
}

.box-gallery .icon li {
  margin: 0 3px 0 0;
  display: inline-block;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.box-gallery:hover .icon li {
  opacity: 1;
}

.box-gallery:hover .icon li:nth-child(1) {
  transition-delay: .2s;
}

.box-gallery:hover .icon li:nth-child(2) {
  transition-delay: .3s;
}

.box-gallery .icon li a {
  color: var(--primary-color);
  background-color: #fff;
  font-size: 16px;
  line-height: 28px;
  height: 30px;
  width: 30px;
  border: 2px dotted transparent;
  border-radius: 50%;
  display: block;
  transform: rotate(0);
  transition: all 0.3s;
}

/* Akhir Testi */

/* App */
section#app {
  min-height: fit-content;
}
.bg-blur-footer {
  background: url('https://storage.googleapis.com/muslimpergi/uploads/gallery/pict/5368/Blur_Header.webp'), linear-gradient(to bottom, #001a23, #011820);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#app .downloadApp .swiper-wrapper {
  display: flex;
  align-items: center;
}

#app .downloadApp .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

#app .downloadApp .downloadApp__pagination {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

#app .downloadApp .downloadApp__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}

#app .app-kiri img {
  width: 400px;
  height: auto;
}
#app .app-kanan .logo-download {
  display: flex;
}
#app .app-kanan .logo-download img {
  width: 195px;
  height: auto;
}

#app .downloadApp .swiper-pagination-bullet {
  background-color: #004dda;
}

#app .downloadApp .swiper-pagination-bullet-active {
  background: #66b5b3;;
  width: 20px !important;
  border-radius: 10px !important;
}

#app .downloadApp .downloadApp__next {
  background: var(--secondary-color);
  color: var(--text-color-light);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  padding: 5px 0px;
  border-radius: 50%;

  position: absolute;
  top: 45%;
  right: 45px;
  z-index: 11111;
}

#app .downloadApp .downloadApp__prev {
  background: var(--secondary-color);
  color: var(--text-color-light);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  padding: 5px 0px;
  border-radius: 50%;

  position: absolute;
  top: 45%;
  left: 45px;
  z-index: 11111;
}

#app .downloadApp .downloadApp__next:hover,
#app .downloadApp .downloadApp__prev:hover {
  background-color: rgba(0,0,0,0.3);
  cursor: pointer;
}

/* Akhir App */

/* Footer */
#footage {
  background-color: rgba(0,0,0,0.6);
}

#footage span {
  color: #ffffff;
}

#footage span a {
  color: #fff;
}

footer {
  padding: 60px;
  background-color: #000;
  color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
}


footer img.logo {
  width: 100px;
  height: 28px;
  object-fit: cover;
  margin-bottom: 10px;
}

footer h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
footer p {
  color: #e5e5e5;
  font-size: 16px;
  text-align: justify;
}
footer .footer-item .box-footer {
  margin-bottom: 20px;
}
footer .footer-item .box-footer i {
  font-size: 18px;
  margin-right: 5px;
  padding: 5px;
  background-color: #fff;
  color: #000;
  border-radius: 6px;
}

footer .footer-item .box-footer img {
  background-color: #fff;
  padding: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
  height: 28px;
  border-radius: 6px;
}

footer .footer-item .box-footer a {
  padding: 0;
  margin-bottom: 15px;
  color: #e5e5e5;
}
/* Akhir Footer */

/* Gallery Page */
.grid ul li {
  background-color: transparent;
}
.grid ul li figure {
  margin: 10px;
  border-radius: 10px;
}

.page-link {
  background-color: var(--secondary-color-alt);
  border: none;
  color: var(--body-color);
}

.page-link:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.page-item.disabled .page-link {
  color: var(--white);
  background-color: #6c757d;
}

/* Sidebar Navigation Umroh Listings */
#filters_col {
  border: none;
  background: var(--secondary-color-alt);
  color: var(--white);
}

a#filters_col_bt {
  color: var(--white);
}

#filters_col label {
  color: var(--white);
}
/* End Sidebar Navigation */

/* 
  =========== ======================= ===========
  Custom Style : Detail Listing, Itenerary, Hotel
  =========== ======================= ===========
*/

.bg_color_1 {
  background-color: var(--first-color);
}

section#listing_nav_tab {
  padding: 0;
}

div.description.listing_description p {
  color: var(--white);
}

div.description.listing_description .st-all-guides {
  margin-bottom: 40px !important;
}

div.description.listing_description ul li {
  color: var(--white);
}

.listing-info .listing-info-wrap .listing-info-wrap-price .price-box h2,
.additional-detail .hotel-info-item .hotel-detail h5 {
  color: #ddd
}

.heading-detail h3,
.listing-info .listing-info-wrap .listing-info-wrap-price small,
.listing-info .listing-info-right-content-item .box-content h2,
.list-information-tour-guide li .box_content h3,
.direct-booking .direct-book .list-departure-participants .accordion .list-departure-participant-head h3,
.direct-booking .direct-book .list-departure-participants .accordion .list-departure-participant-head h3 button.btn-link {
  color: #eee;
}

/* Separator */
.main_title_2 span {
  background-color: var(--first-color-alt);
  height: 5px;
}

.main_title_2 span em {
  background-color: var(--secondary-color);
  height: 5px;
}
/* End Separator */

.cbp_tmtimeline>li .cbp_tmtime span:last-child {
  color: var(--white)
}

.cbp_tmtimeline>li .cbp_tmicon {
  background-color: var(--secondary-color);
  box-shadow: 0 0 0 2px var(--secondary-color-alt);
}

.cbp_tmtimeline:before,
.cbp_tmtimeline>li .cbp_tmlabel {
  background-color: var(--secondary-color-alt);
}

.cbp_tmtimeline>li .cbp_tmlabel ul li {
  color: var(--white);
}

@media (min-width: 768px) {
  .cbp_tmtimeline>li .cbp_tmlabel:after {
    border-right-color: var(--secondary-color-alt);
  }
}

figure.flight img.img-fluid {
  height: 300px;
  object-fit: cover;
}

section#listing_nav_tab .box_grid {
  background-color: var(--secondary-color);
  color: var(--white);
}

section#listing_nav_tab .box_grid .wrapper {
  background-color: var(--secondary-color-alt);
  color: var(--white);
}

section#listing_nav_tab .box_grid ul {
  border: none;
}

section#listing_nav_tab .box_grid ul li div.score {
  display: flex;
  align-items: self-start;
}

section#listing_nav_tab .box_grid ul li div.score span {
  top: 0;
  padding: 10px;
}

section#listing_nav_tab .box_grid ul li div.score strong {
  background-color: var(--secondary-color-alt);
}

.theiaStickySidebar .box_detail {
  background-color: var(--secondary-color-alt);
  border: none;
}

.theiaStickySidebar .box_detail .panel-heading {
  text-align: center;
  color: #fff;
}

.theiaStickySidebar .box_detail div.product-chooser div.product-chooser-item {
  background-color: var(--secondary-color) !important;
  text-align: center;
  color: var(--white) !important;
}

.theiaStickySidebar .box_detail div.product-chooser div.product-chooser-item h1 {
  font-size: 2rem;
  color: var(--white) !important;
}

.theiaStickySidebar .box_detail div.product-chooser div.product-chooser-item-other {
  background-color: var(--secondary-color) !important;
  color: #fff !important;
}

.theiaStickySidebar .box_detail div.product-chooser div.product-chooser-item-other h1 {
  display: none;
}

.theiaStickySidebar .box_detail div.product-chooser ul.comments-list h3 a {
  color: var(--white);
}

article.blog figure img {
  position: unset;
  width: 100%;
  height: 100%;
  transform: unset;
  object-fit: contain;
}

article.blog figure img:hover {
  transform: unset;
}

@media (max-width: 767px) {
  article.blog figure {
    height: 235px;
  }
}

article.blog {
  background-color: var(--secondary-color);
  border-radius: 10px;
}

article.blog .post_info h3 a,
article.blog .post_info p {
  color: var(--white);
}

article.blog .post_info h3 a:hover {
  color: var(--cyan);
}

article.blog .post_info p {
  margin: 0;
  
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.widget ul.comments-list h3 a {
  color: var(--white);
  display: -webkit-box;
  line-height: 1.6;
  height: 45px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.widget ul.comments-list li div.alignleft {
  width: 150px;
}

.widget ul.comments-list li div.alignleft img {
  width: 100%;
}

.singlepost {
  border-radius: 10px;
}

.singlepost h1,
.singlepost h2,
.singlepost h3,
.singlepost h4,
.singlepost h5,
.singlepost h6 {
  color: #333;
}

#description {
  margin-bottom: 1.5rem;
}

.listing_description p,
.post-content p {
  margin-top: 0;
  margin-bottom: 0;
}

.listing_description p br,
.post-content p br {
  /*display: none;*/
  content: "";
  display: block;
  margin-bottom: 1.5em;
}

.listing_description ol, .singlepost .post-content ol,
.listing_description ul, .singlepost .post-content ul {
  margin: 0 0 15px 0;
}

.listing_description ol, .singlepost .post-content ol {
  margin-left: 1em;
}

.listing_description ol li, .singlepost .post-content ol li {
  margin-left: 5px;
  padding-left: 10px;
  list-style: decimal !important;
}

/*
.listing_description ul li, .singlepost .post-content ul li {
  margin-left: 5px;
  padding-left: 10px;
  list-style: square !important;
}
*/

.listing_description .st-all-guides .st-title,
.listing_description .st-all-includes .st-title,
.listing_description .st-all-excludes .st-title,
.listing_description .st-all-benefit .st-title,
.listing_description .st-all-tnc .st-title {
  font-size: 1.5em;
  font-weight: 400;
}

.listing_description iframe,
.singlepost .post-content iframe {
  height: 420px;
}

@media (max-width: 769px) {
  .listing_description iframe,
  .singlepost .post-content iframe {
    height: 360px;
  }
}

/** Quill Editor Style */

.listing_description .ql-align-right, .singlepost .post-content .ql-align-right {
  text-align: right;
}

.listing_description .ql-align-center, .singlepost .post-content .ql-align-center {
  text-align: center;
}

.listing_description .ql-align-center img, .singlepost .post-content .ql-align-center img {
  display: block;
  margin: auto;
}

.listing_description .ql-align-left, .singlepost .post-content .ql-align-left {
  text-align: left;
}

.listing_description .ql-align-left, .singlepost .post-content .ql-align-justify {
  text-align: justify;
}

/** Itinerary */

#itineraries .cbp_tmlabel ul li {
  margin-left: 15px;
  padding-left: 5px;
  list-style: square !important;
}

#itineraries .cbp_tmlabel ol li {
  margin-left: 15px;
  padding-left: 5px;
  list-style: decimal !important;
}

#itineraries .cbp_tmtimeline>li .cbp_tmlabel p {
  margin-bottom: 0.75em;
}

#itineraries .cbp_tmtimeline>li .cbp_tmtime span:first-child {
  display: none;
}

#itineraries .cbp_tmtimeline>li .cbp_tmtime span:last-child {
  margin-top: 12px;
}

/** Sisa seat */

.panel-heading p {
  margin-bottom: 5px;
  text-align: center !important;
  font-weight: 500;
  color: #f15c59;
}

.product-chooser-item #base_price {
  text-align: center !important;
  font-size: 2rem;
}

/** Article Singlepost */

.singlepost .post-content ul li:before {
  font-style: normal;
  font-weight: normal;
  font-family: 'ElegantIcons';
  font-size: 14px;
  font-size: 0.875rem;
  content: "\5c";
  color: #ccc;
  position: relative;
  padding-right: 10px;
  left: 0;
  top: 0;
}

.description ul li {
  position: relative;
  padding-left: 0;
}

.description ul li:before {
  position: relative;
  padding-right: 10px;
}

/** Responsive image */

.singlepost .post-content img,
.listing_description .st-main-description img,
.listing_description figure img {
  max-width: 640px !important;
  height: auto;
  /*margin: auto;*/
  display: block;
}

@media (max-width: 480px) {
  .singlepost .post-content img,
  .listing_description .st-main-description img,
  .listing_description figure img {
    max-width: 280px !important;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .singlepost .post-content img,
  .listing_description .st-main-description img,
  .listing_description figure img {
    max-width: 360px !important;
  }
}

@media (min-width: 769px) {
  .singlepost .post-content img,
  .listing_description .st-main-description img,
  .listing_description figure img {
    max-width: 600px !important;
  }
}

/* 
  =========== ======================= ===========
  End Custom Style 
  =========== ======================= ===========
*/

#toTop {
  background: var(--secondary-color-alt);
  color: transparent;
  border: 2px solid var(--secondary-color);
  border-radius: 5px;
  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;
}

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

.modal-content {
  border-radius: 10px;
}

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

.modal-login a {
  color: var(--text-gray);
  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 {
  color: var(--text-gray);
}

.modal-login a:hover .card {
  background: var(--first-color);
  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 h5.card-title {
  color: var(--white);
}

/* Laptop */
@media screen and (min-width: 1099px) {
  #testimoni .testi-slider .grid div figure {
    height: 600px;
  }
}
/*  Notebook  */
@media screen and (max-width: 1000px) {
  #testimoni .testi-slider .grid div figure {
    height: 540px;
  }

  #app .downloadApp .downloadApp__next {
    right: 25px;
  }
  #app .downloadApp .downloadApp__prev {
    left: 15px;
  }
}

@media screen and (max-width: 992px) {
  #app .downloadApp .downloadApp__next {
    right: 15px;
  }
  #app .downloadApp .downloadApp__prev {
    left: 10px;
  }
}

@media screen and (max-width: 1301px) {
  .paket-item img {
    height: 200px;
  }
}

@media screen and (max-width: 1300px) {
  .paket-item img {
    height: 190px;
  }
}

@media screen and (max-width: 1199px) {
  .paket-item img {
    height: 170px;
  }
}

/* Large Tablet */
  @media screen and (max-width: 1100px) {
    .paket-item img {
      height: 160px;
    }
  }

  @media screen and (max-width: 1024px) {
    .paket-item img {
      height: 215px;
    }
  }

  @media screen and (max-width: 991px) {
    .paket-item img {
      height: 180px;
    }
  }

  @media screen and (max-width: 955px) {
    .paket-item img {
      height: 175px;
    }
  }

/* ==== Tablet ==== */
/* @media screen and (max-width: 768px) { */
  @media screen and (max-width: 840px) {
    /* section */
    section {
      min-height: auto;
      padding: 60px 60px;
    }
    /* akhir section */
  
    /*  Home  */
    #home .carousel {
      margin-top: 30px;
      height: 35vh;
    }
    .owl-carousel.home-slider .slider-item {
      height: 35vh;
    }
    /* Akhir Home */

    /* paket */
    .paket-item p {
      padding: 0px;
    }

    .paket-item .paket-detail {
      padding: 0;
    }

    .paket-item .flex-text .flex-text-kiri {
      flex: 65%;
    }

    .paket-item .flex-text .flex-text-kanan {
      flex: 35%;
    }
    /* Akhir paket */

    /* Alasan */

    #alasan .alasan-box .box-item {
      padding: 30px 25px;
    }
    /* Akhir Alasan */
  
    /* pilihanPaket */
  
    section#pilihanPaket {
      padding: 60px;
    }
    section#pilihanPaket .paket-box {
      width: 100%;
    }
    /* pilihanPaket */
  
    /* about */
    #about .about-image img {
      height: auto;
      width: 100%;
      object-fit: cover;
    }
    /* akhir about */
  
    /* sertifikat */
    #sertifikasi {
      padding-bottom: 0;
    }
    /* #sertifikasi img {
      height: 18vh;
    } */
    /* akhir sertifikat */
  
    /* Alasan */
  
    #alasan .alasan-box .box-item {
      padding: 30px 25px;
    }
    /* Akhir Alasan */
  
    /* Testimoni */
    #testimoni .testi-slider .grid div figure {
      height: 100%;
    }
    #testimoni .galeri-box {
      margin-top: 20px;
    }

    .testi-slider__pagination {
      display: none;
      /* position: absolute;
      z-index: 21;
      right: 30px;
      width: 11px !important;
      text-align: center;
      left: auto !important;
      top: 50%;
      bottom: auto !important;
      transform: translateY(-50%); */
    }

    /* Akhir Testimoni */
  
    /* App */
  
    #app .app-kiri img {
      padding: 0;
    }
  
    #app .app-kanan .logo-donwload img {
      width: 100px;
    }
    section#app h1 {
      font-size: 34px;
    }

    #app .downloadApp .swiper-wrapper {
      padding-top: 20px;
    }

    #app .downloadApp .downloadApp__pagination {
      z-index: 11111;
      margin: 0;
      height: 20px;
      top: 5px;
      position: absolute;
    }

    #app .downloadApp .downloadApp__next {
      right: 0;
      width: 35px;
      height: 35px;
    }
    #app .downloadApp .downloadApp__prev {
      left: 0;
      width: 35px;
      height: 35px;
    }
    /* Akhir App */
  }

  @media screen and (max-width: 780px) {
    .paket-item img {
      height: 165px;
    }
  }

  @media screen and (max-width: 768px) {
    .paket-item img {
      height: 340px;
    }
  }

  @media screen and (max-width: 700px) {
    .paket-item img {
      height: 280px;
    }
  }

  @media screen and (max-width: 650px) {
    .paket-item img {
      height: 250px;
    }
  }

  @media screen and (max-width: 600px) {
    .paket-item img {
      height: 245px;
    }
  }

  @media screen and (max-width: 575px) {
    .paket-item img {
      height: 230px;
    }
  }

  @media screen and (max-width: 550px) {
    .paket-item img {
      height: 220px;
    }
  }

  @media screen and (max-width: 525px) {
    .paket-item img {
      height: 190px;
    }
  }

  @media screen and (max-width: 500px) {
    .paket-item img {
      height: 180px;
    }
  }
  /* ==== Tablet ==== */

/* ==== Mobile ==== */
@media screen and (max-width: 480px) {
  /* section */
  section {
    min-height: auto;
    padding: 30px 20px;
  }
  /* akhir section */

  /* home */
  #home {
    background-size: cover;
    background-repeat: repeat-y;
  }
  #home .carousel {
    margin-top: 30px;
    height: 30vh;
  }
  .owl-carousel.home-slider .slider-item{
    height: 30vh;
  }
  #home .carousel .carousel-control-next,
  #home .carousel .carousel-control-prev {
    width: 15%;
  }
  /* akhirhome */

  /* Pilihan Paket */
  section#pilihanPaket {
    padding: 20px;
  }
  section#pilihanPaket .paket-box {
    width: 100%;
    padding: 10px 20px;
  }

  .paket-item img {
    height: 215px;
  }

  .paket-item .flex-text .flex-text-kiri {
    flex: 60%;
  }
  .paket-item .flex-text .flex-text-kanan {
    flex: 40%;
  }
  /* akhir paket */

  /* Alasan */
  #alasan {
    background-position: right;
  }

  #alasan .alasan-box .box-item {
    padding: 30px 15px;
    height: 265px;
  }
  #alasan .alasan-box h3 {
    font-size: 22px;
    margin-bottom: 5px;
    margin-top: 10px;
  }
  #alasan .alasan-box p {
    font-size: 17px;
  }
  /* Akhir Alasan */

  /* Gallery & Testimonial */
  .grid div figure img{
    height: 350px;
    object-fit: cover;
    object-position: center;
  }

  /* App */
  section#app {
    padding: 30px 20px 0;
  }
  section#app h1 {
    font-size: var(--h1-font-size);
  }
  #app {
    background-position: right;
  }
  #app .app-kanan {
    order: -1;
    margin-bottom: 20px;
    text-align: center;
  }
  #app .app-kanan .logo-donwload {
    justify-content: center;
  }

  #app .app-kiri img {
    height: 450px;
    padding: 0;
    position: relative;
    object-fit: cover;
    object-position: top;
  }
  /* Akhir App */

  /* Footer */
  footer {
    padding: 30px 20px;
  }
  /* End Footer */
}

@media screen and (max-width: 460px) {
  .paket-item img {
    height: 210px;
  }
}

@media screen and (max-width: 445px) {
  .paket-item img {
    height: 200px;
  }
}

@media screen and (max-width: 400px) {
  .paket-item img {
    height: 180px;
  }
}

@media screen and (max-width: 370px) {
  .paket-item img {
    height: 165px;
  }
}

/* Booking Route */
.heading-detail h4 {
  
}
/* End Booking Route */

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

#chatBtn {
  display: flex;
  padding: 5px 15px;
}

#whatsapp-chat {
  position: fixed;
  background: #fff;
  width: 360px;
  border-radius: 10px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, .28);
  bottom: 90px;
  left: 30px;
  overflow: hidden;
  z-index: 99999999;
  animation-name: showchat;
  animation-duration: 1s;
  transform: scale(1);
}

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

a.blantershow-chat div {
  margin-left: 10px;
  font-size: 14px;
}

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

.header-chat {
  background:#075e54;
  color: #fff;
  padding: 20px;
}

.header-chat .head-home {
  display: flex;
}

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

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

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

.header-chat .tagline {
  color: #fff;
  font-size: 10px;
}

.header-avatar, .info-avatar {
  position: relative;
}

.header-avatar img {
  border-radius: 10px;
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin: 0;
}

.info-avatar img {
  border-radius: 10px;
  width: 40px;
  float: left;
  margin: 0 10px 0 0;
}

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

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

.info-chat span {
  display: block;
}

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

.chat-nama {
  font-size: 15px;
  font-weight: 700;
  color: #222;
}

.home-chat {
  background: #fff;
}

.my-number {
  display: none;
}

.cs-list-footer,
.blanter-msg {
  color: #444;
  font-size: 12.5px;
  text-align: center;
  border-top: 1px solid #ddd;
}

.cs-list-footer .social-media {
  padding: 20px;
}

.cs-list-footer .social-media a {
  display: inline-block;
  margin: 0 5px;
}

.blanter-msg #chat-input {
  border: none;
  font-family: "Arial", sans-serif;
  width: 100%;
  height: 40px;
  outline: none;
  resize: none;
  padding: 7px 20px;
  font-size: 14px;
}

.blanter-msg #send-it {
  width: 40px;
  font-weight: 700;
  padding: 8px 10px 0;
  background: #eee;
  border-radius: 0;
}

.blanter-msg #send-it svg {
  fill: #a6a6a6;
  height: 24px;
  width: 24px;
}

.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 {
  display: flex;
}

#get-number {
  display: none;
}

#whatsapp-chat .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 only screen and (max-width: 991px) {
  .direct-book-listing {
    align-items: center;
  }
  .direct-book-listing .pax-info {
    box-shadow: none !important;
  }
  /* a.blantershow-chat {
    bottom: 150px;
  } */
  .direct-book-listing .right-side a.btn {
    background: var(--primary);
    color: var(--white);
  }
  .direct-book-listing .left-side .price-tag span {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 480px) {

  #whatsapp-chat {
    font-size: 80%;
    width: calc(100% - 30px);
    left: 15px;
    right: 15px;
    bottom: 60px;
  }

  #footage {
    padding-bottom: 55px !important;
  }

  #toTop {
    bottom: 55px;
    right: 20px;
  }

  /*#whatsapp-chat .home-chat {
    min-height: 100px;
    overflow: hidden;
  }*/
}

/*@media screen and (max-height: 700px) {
  #whatsapp-chat .home-chat {
    min-height: 100px;
    overflow: hidden;
  }
}*/

.home-chat .cs-list {
  max-height: 250px;
  overflow-y: scroll;
}

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

.show-custom {
  display: block;
  animation-name: showhide;
  animation-duration: 1.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.1s 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://storage.googleapis.com/muslimpergi/uploads/gallery/pict/1712/whatsapp_bg.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.1s 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;
}


.hero_in_content {
  margin-top: 35px;
}

.listing-info {
  background: var(--secondary-color-alt);
}

.listing-info .listing-info-title {
  color: #fff;
  margin-bottom: 10px;
}

.listing-info .listing-info-desc {
  color: var(--blur-color-umi);
}

.listing-info .listing-info-wrap {
  position: relative;
}

.listing-info .listing-info-wrap a.btn-primary {
  font-size: 16px;
  font-weight: 600;
  padding: 10px 25px;
}

.listing-info .listing-info-wrap a.btn-primary:focus {
  color: #051923;
}

.listing-info .listing-info-right-content-item .icon {
  background: var(--secondary-color);
}

.listing-info .listing-info-right-content-item .box-content h4 {
  color: var(--blur-color-umi);
  font-weight: 500;
}

.listing-info .listing-info-right-content-item .box-content-price {
  color: #fff;
}

.hotelrate-and-share {
  background-color: var(--secondary-color);
  border: none;
}

.hotelrate-and-share .hotelrate-and-share-content-rate span {
  color: #fff;
}

.hotelrate-and-share .hotelrate-and-share-content-share ul.social-media-share li a {
  background-color: #fff;
}

/* detail listing body */

.detail-listing {
  background-color: var(--secondary-color-alt);
}

.detail-listing .heading-detail {
  border-bottom: 3px solid var(--secondary-color);
}

.detail-listing .heading-detail i {
  color: #fff;
  background-color: var(--secondary-color);
}

.detail-listing .heading-detail h4 {
  color: #fff;
}

.additional-information .additional-detail .itinerary-item {
  background: var(--secondary-color);
  border: none;
}

.additional-information .additional-detail .itinerary-item-detail {
  color: #fff;
}

.additional-information .additional-detail .itinerary-item-list {
  border: none;
}

.additional-information .additional-detail .hotel-info-item,
.additional-information .additional-detail .flight-info .departure {
  border-bottom: 1px dashed #fff;
}

@media screen and (min-width: 768px) {
  .additional-information .additional-detail .hotel-info-item .hotel-image img {
    height: 300px;
  }
}

.additional-information .additional-detail .hotel-info-item .hotel-info-rate,
.additional-information .additional-detail .flight-info .departure .more-information, .additional-information .additional-detail .flight-info .arrival .more-information {
  background-color: #fff;
}

.additional-information .additional-detail .flight-info .departure .destination strong, .additional-information .additional-detail .flight-info .arrival .destination strong {
  color: #fff !important;
}

.additional-information .additional-detail .hotel-info-item .hotel-detail h4 {
  color: var(--blur-color-umi);
  font-weight: 500;
}

.additional-information .additional-detail .hotel-info-item .hotel-detail p {
  color: #fff;
  font-weight: 500;
}

/* End Detail listing body */

/* direct booking */
.direct-booking .card-booking {
  background: var(--secondary-color);
}

.direct-book.card-booking .heading-detail i {
  background: var(--primary);
}

.direct-book.card-booking .heading-detail,
.direct-booking .direct-book .list-departure-participants .accordion .list-departure-participant-head h3 {
  border-bottom-color: var(--primary);
}

.direct-booking .current-booking .title-listing h4,
.direct-booking .current-booking .desc-listing p,
.direct-booking .direct-book .booker-profile label,
.direct-booking .direct-book .list-departure-participants .accordion .list-departure-participant-head h3 button.btn-link,
.list-departure-participants .form-group label,
.direct-booking .direct-book .booking-note .booking-note-title h5 {
  color: var(--white);
}

.direct-booking .form-group .input-group .input-group-prepend .input-group-text {
  background: var(--white) !important;
}

.direct-booking .direct-book .list-departure-participants .accordion .list-departure-participant-body .variant .variant-list .form-check label.form-check-label .variant-list-title,
.direct-booking .direct-book .list-departure-participants .accordion .list-departure-participant-body .variant .variant-list .form-check label.form-check-label p {
  color: var(--secondary-color);
}

.direct-booking .direct-book .list-departure-participants .accordion .list-departure-participant-body .variant .variant-list .form-check.active,
.direct-booking .direct-book .list-departure-participants .accordion .list-departure-participant-body .variant .variant-list .form-check.active p,
.direct-booking .direct-book .booking-note .booking-note-title {
  background-color: var(--primary);
  border-color: var(--primary);
}

.direct-booking .direct-book .list-departure-participants .accordion .list-departure-participant-body .variant .variant-list .form-check.active label.form-check-label .variant-list-title, .direct-booking .direct-book .list-departure-participants .accordion .list-departure-participant-body .variant .variant-list .form-check.active label.form-check-label p,
.direct-booking .direct-book .booking-note .booking-note-area {
  color: var(--white);
}

.direct-booking .direct-book .direct-booking-action button.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.direct-booking .direct-book .direct-booking-action button.btn-primary:hover {
  background-color: var(--secondary-color-alt);
}

/* end direct booking */

.detail-listing .box_detail.box_white,
.box_detail.box_white {
  background: var(--secondary-color);
  border: none;
}

.theiaStickySidebar .box_detail,
.detail-listing .box_detail {
  background-color: transparent;
  border: 3px solid var(--secondary-color);
}

.detail-listing .box_detail .panel-heading h2.box_detail_title {
  text-align: left;
  border-bottom: 2px solid #E2DFEB;
}

.detail-listing .box_detail .panel-heading h2.box_detail_title::after {
  width: 4px;
  border-radius: 10px;
}

.list-information-tour-guide li .box_content h4 {
  color: var(--blur-color-umi);
}

.list-information-tour-guide li .box_content p {
  color: #fff;
}

.product-chooser-item #base_price {
  font-size: 25px;
}

.product-chooser .listings-item .listings-departure-at {
  color: #fff;
  font-weight: 500;
}

.additional-information .product-chooser .listings-item .listings-item-detail .listings-item-title a,
.product-chooser .listings-item .listings-item-detail .listings-item-title a {
  color: #fff;
}

.additional-information .product-chooser .listings-item .listings-item-detail .listings-item-title a:hover {
  color: var(--blur-color-umi);
}

.additional-information .product-chooser .listings-item .listings-item-detail .listings-item-price span:first-child,
.product-chooser .listings-item .listings-item-detail .listings-item-price span:first-child {
  color: #ddd;
}

iframe {
  height: unset;
  width: unset;
}

iframe#qontak-webchat-widget {
  height: 600px;
  width: 400px;
}