:root {
  --mouseX: 50%;
  --mouseY: 50%;
}

html {
  scroll-behavior: smooth;
  --primary-color: #990000 !important;
  --secondary-color: #8c8b90 !important;
  --footer-color: #121921 !important;
}

.green-text {
  color: var(--primary-color) !important;
}

.green-bg {
  background: var(--primary-color) !important;
}

.yellow-text {
  color: var(--secondary-color) !important;
}

.yellow-bg {
  background: var(--secondary-color) !important;
}

/* Animate Custom */
@keyframes flickerAnimation {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fill {
  0% {
    width: 0%;
    height: 1px;
  }

  50% {
    width: 100%;
    height: 1px;
  }

  100% {
    width: 100%;
    height: 100%;
    background: #333;
  }
}

.animate-flicker {
  -webkit-animation: flickerAnimation 2s infinite;
  -moz-animation: flickerAnimation 2s infinite;
  -o-animation: flickerAnimation 2s infinite;
  animation: flickerAnimation 2s infinite;
}

header {
  background: #fff !important;
  border-bottom: none;
}

header.header.sticky {
  /* border-bottom: none; */
}

a.btn_1,
.btn_1 {
  background: var(--primary-color) !important;
  color: #ffc107;
}

a.btn_1:hover,
.btn_1:hover {
  background: var(--secondary-color) !important;
  color: var(--primary-color) !important;
}

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

div.paket-travel p {
  padding-bottom: 35px;
  margin-bottom: 45px;
}

div.paket-travel div.button-action {
  bottom: 0;
  position: absolute;
}

div.paket-travel ul.button-detail {
  margin-bottom: 0;
  position: relative;
}

div.paket-travel ul.button-detail li:last-child {
  float: right;
}

div.btn-hover a {
  border: 4px solid #fff;
  color: #fff;
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  line-height: 24px;
  margin: auto;
  padding: 12px 20px 12px 50px;
  position: relative;
  text-decoration: none;
}

div.btn-hover.body-btn a {
  font-size: 12px;
  border: none;
  color: var(--primary-color);
  padding: 12px 10px 12px 35px;
}

div.btn-hover.body-btn a .icon-arrow.before {
  left: 5px;
}

div.btn-hover a .label,
div.btn-hover a .icon-arrow {
  backface-visibility: hidden;
  transform: translateZ(0);
  perspective: 1000;
}

div.btn-hover a .label {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}

div.btn-hover a .icon-arrow {
  fill: #fff;
  height: 15px;
  top: 16px;
  transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1),
    opacity 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  width: 25px;
}

div.btn-hover.body-btn a .icon-arrow {
  fill: var(--primary-color);
}

div.btn-hover a .icon-arrow.before {
  left: 15px;
  margin-right: 15px;
  position: absolute;
  transform-origin: left center;
}

div.btn-hover a .icon-arrow.after {
  margin-left: 15px;
  opacity: 0;
  position: absolute;
  right: 20px;
  transform: translateX(75%) scaleX(0.1);
  transform-origin: right center;
}

div.btn-hover a:hover .label {
  transform: translateX(-38px);
  color: gold;
}

div.btn-hover a:hover .icon-arrow.before {
  opacity: 0;
  transform: translateX(-75%) scaleX(0.1);
}

div.btn-hover a:hover .icon-arrow.after {
  fill: gold;
  opacity: 1;
  transform: translateX(0) scaleX(1);
}

div.btn-hover a:active {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

div.btn-hover a:active .icon-arrow {
  fill: var(--primary-color);
}

div.btn-hover a:hover {
  border: 4px solid gold;
}

div.btn-hover.body-btn a:hover {
  border: none;
}

/* Header Custom */
nav ul li a {
  text-decoration: none;
  color: #aaa;
  /*font-weight: 800;*/
}

nav ul li a,
nav ul li a:after,
nav ul li a:before {
  transition: all 0.5s;
}

nav ul li a:hover {
  color: var(--secondary-color);
}

nav.stroke ul li a {
  position: relative;
}

nav.stroke ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: ".";
  color: transparent;
  background: var(--primary-color);
  height: 3px;
}

nav.stroke ul li a:hover:after {
  width: 100%;
}

.main-menu > ul > li span > a {
  color: var(--primary-color);
  padding: 0 8px 10px 8px;
}

/**
header.sticky .main-menu > ul > li span:hover > a {
  color: var(--primary-color);
}
*/

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

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

@media only screen and (min-width: 992px) {
  .main-menu ul ul {
    left: unset;
    right: 0;
  }

  .main-menu ul ul:before {
    display: none;
    left: unset;
    right: 10%;
  }
  
  .main-menu ul ul li a {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
  }
  
  .main-menu ul ul li:hover a {
    color: var(--secondary-color);
  }
}

/* Banner Home */
div.banner-header {
  height: 100vh;
  display: flow-root;
}

div.banner-header .owl-carousel.owl-loaded {
  display: flow-root;
}

div.banner-header .item {
  height: 100vh;
  position: relative;
}

div.banner-header .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

div.banner-header .item img.logo-travel {
  width: auto;
  height: 100px;
  margin: 0 auto;
}

div.banner-header .item .cover {
  padding: 75px 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
}

div.banner-header .item .cover .header-content {
  position: relative;
  padding: 30px 50px 40px;
  overflow: hidden;
}

div.banner-header .item .cover .header-content .line {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  border-top: 9px solid #fff;
  border-bottom: 9px solid #fff;

  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

div.banner-header .item .cover .header-content h1 {
  font-size: 45px;
  font-weight: 600;
  margin: 5px 0 20px;
  word-spacing: 3px;
  color: #fff;
}

div.banner-header .item .cover .header-content h2 {
  font-weight: 400;
  font-size: 35px;
  color: #fff;
}

div.banner-header .item .cover .header-content h4 {
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  color: #fff;
}

div.banner-header .item .cover .header-content span,
div.banner-header .item .cover .header-content p {
  font-size: 20px;
  color: #fff;
  margin-bottom: 0px;
}

div.banner-header .owl-item.active img.logo-travel {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}

div.banner-header .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}

div.banner-header .owl-item.active h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}

div.banner-header .owl-item.active h4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}

div.banner-header .owl-item.active span {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeIn;
  animation-delay: 0.7s;
}

div.banner-header .owl-item.active .line {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}

div.banner-header .owl-nav .owl-prev {
  position: absolute;
  left: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: #990000 !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}

div.banner-header .owl-nav .owl-prev span {
  font-size: 1.5rem;
  color: #fff;
}

div.banner-header .owl-nav .owl-prev:focus {
  outline: 0;
}

div.banner-header .owl-nav .owl-prev:hover {
  background: #000 !important;
}

div.banner-header .owl-nav .owl-next {
  position: absolute;
  right: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: #990000 !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}

div.banner-header .owl-nav .owl-next span {
  font-size: 1.5rem;
  color: #fff;
}

div.banner-header .owl-nav .owl-next:focus {
  outline: 0;
}

div.banner-header .owl-nav .owl-next:hover {
  background: #000 !important;
}

div.banner-header:hover .owl-prev {
  left: 0px;
  opacity: 1;
}

div.banner-header:hover .owl-next {
  right: 0px;
  opacity: 1;
}

div.banner-header .owl-theme .owl-nav {
  margin: 0;
}

.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
  background-color: #990000;
}

.banner {
  height: 90vh;
}

.banner img {
  width: 250px;
}

.banner h1 {
  font-size: 60px !important;
  font-weight: bold;
}

.banner h3 {
  font-weight: bold;
}

.banner span {
  width: auto;
  height: auto;
  background: none;
  animation-duration: 3s;
}

.banner ul li {
  display: inline-block;
}

/* Banner Wrap ONH */
div.banner-wrap {
  width: 100%;
  position: relative;
}

div.banner-parallax {
  min-height: auto;
  background-size: 120% 160%;
  background-position: var(--mouseX) var(--mouseY);
  background-repeat: no-repeat;
  background-image: none;
}

div.banner-overlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: " ";
  z-index: 2;
  backface-visibility: hidden;
}

.banner-wrap .banner-parallax h1 {
  font-size: 40px !important;
}

.banner-wrap .banner-parallax p {
  font-size: 20px !important;
  margin-bottom: 10px;
}

ul.button-detail li {
  display: inline-block;
}

ul.button-detail li:first-child {
  margin-right: 15px;
}

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

@media (max-width: 500px) {
  .banner h1 {
    font-size: 35px !important;
  }

  div.banner-parallax {
    background-size: cover;
    background-position: center;
  }
}

/* Listings */
/* Grid Box */
.box_grid .wrapper {
  padding: 20px;
}

/* Package */

.listing-packages {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .listing-packages {
    margin-top: 0;
  }
}

.listing-packages .item {
  margin: 0 15px;
}

.listing-packages .owl-item {
  opacity: 0.5;
  -webkit-transform: scale(0.85);
  transform: scale(0.85);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(0.85, 0.85);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  overflow: hidden;
}

.listing-packages .owl-item.active.center {
  opacity: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
  transform: scale(1);
}

.listing-packages .owl-item.active.center .item .title h4,
.listing-packages .owl-item.active.center .item .views {
  opacity: 1;
}

#reccomended .box_grid,
.listing-packages .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) {
  #reccomended .box_grid,
  .listing-packages .box_grid {
    margin-bottom: 30px;
  }
}

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

#reccomended .box_grid figure,
.listing-packages .box_grid figure {
  height: 260px;
  border-radius: 15px 15px 0 0;
}

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

#reccomended .box_grid figure small,
.listing-packages .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,
.listing-packages div.wrapper .box_grid {
  margin: 20px 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

#reccomended .box_grid .wrapper h3,
.listing-packages .box_grid .wrapper h3 {
  color: var(--primary-color);
  font-weight: 600;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

#reccomended div.wrapper div.price,
.listing-packages 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,
.listing-packages div.wrapper div.price ul {
  margin: 0;
  padding: 0;
  border: 0;
}

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


/* 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),
.listing-packages table > tbody > tr > td:nth-child(2) {
  width: 50%;
}

#reccomended table > tbody > tr:nth-child(3) > td:nth-child(3) > span > i,
.listing-packages 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,
.listing-packages 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;
}

/* Fitur Unggulan */
.fitur-mpabha .fitur-item {
  text-align: center;
}

.fitur-mpabha div.btn-hover.body-btn a {
  border: 4px solid #606060;
  color: #606060;
}

.fitur-mpabha div.btn-hover a .icon-arrow.before,
.fitur-mpabha div.btn-hover.body-btn a .icon-arrow {
  height: 8px;
  fill: #606060;
  top: 20px;
}

.fitur-mpabha div.btn-hover a:hover .label {
  transform: translateX(-30px);
  color: #606060;
}

.fitur-mpabha div.btn-hover a .icon-arrow.after {
  right: 10px;
}

.fitur-mpabha .download-app li {
  display: inline-block;
}

@media (max-width: 768px) {
  .fitur-mpabha .download-app li:first-child {
    margin-right: 10px;
  }

  .fitur-mpabha .download-app li img {
    height: 40px;
    margin: 0 !important;
  }
}

@media (max-width: 500px) {
  div.fiturImg {
    margin-bottom: 20px;
  }
}

.owl-theme .owl-dots .owl-dot span {
  background: var(--secondary-color);
}

div.fiturImg div.owl-dots {
  margin-top: 15px !important;
}

div.fiturImg .item img {
  height: 500px;
  width: auto;
  margin: 0 auto;
  border: 2px solid #2e2c2d;
  border-radius: 10px;
}

.wrap {
  display: table;
  position: relative;
  font-size: 18px;
  table-layout: fixed;
  border-collapse: collapse;
}

.column {
  padding: 20px 100px 20px 30px;
  display: table-cell;
  vertical-align: top;
  width: 50%;
}

.column p {
  position: relative;
  z-index: 2;
}

.column1 {
  background: #e81c4c;
  color: #000;
  width: 50%;
}

.column2 {
  background: #fff;
  padding: 20px 30px 20px 100px;
  width: 50%;
}

.wrap:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 10%;
  width: 44%;
  background: #e81c4c;
  -webkit-transform: skewX(-3deg);
  transform: skewX(-3deg);
}

/* wrapper fitur */
.wrapper-tour div.row {
  overflow: hidden;
}

.wrapper-tour.tour-1 div.image-tour {
  background: linear-gradient(to right, #000000a6, #000000a6),
    url(https://cdn.muslimpergi.com/uploads/gallery/pict/563/minaret-3338030_1920.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.wrapper-tour.tour-2 div.image-tour {
  background: linear-gradient(to right, #000000a6, #000000a6),
    url(https://cdn.muslimpergi.com/uploads/gallery/pict/582/people-gathering-near-kaaba-mecca-saudi-arabia-2895295.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.wrapper-tour.tour-3 div.image-tour {
  background: linear-gradient(to right, #000000a6, #000000a6),
    url(https://cdn.muslimpergi.com/uploads/gallery/pict/600/adalaj-step-well-1514747_1920.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.wrapper-tour div.wrap-content {
  background: #fff;
}

.wrapper-tour div.wrap-content .content-tour {
  /* transform: skewX(12deg); */
  padding: 0 60px;
  position: inherit;
  z-index: 3;
}

.wrapper-tour div.wrap-content .content-tour h3 {
  font-size: 40px;
}

.wrapper-tour div.wrap-content:after {
  content: "";
  width: 100%;
  background: #fff;
  -webkit-transform: skewX(-10deg);
  transform: skewX(-15deg);
}

.wrapper-tour.tour-1 div.wrap-content:after {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: -50px;
}

.wrapper-tour.tour-2 div.wrap-content:after {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 50px;
}

.wrapper-tour.tour-3 div.wrap-content:after {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: -50px;
}

/* LA */
div.module.parallax-1 {
  background: linear-gradient(to right, #000000a6, #000000a6),
    url(https://cdn.muslimpergi.com/uploads/gallery/pict/2933/tentang-mpabha-edit.jpg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

#page
  > main
  > div.paket-travel.bg-white
  > div.bg-white.module.parallax.parallax-1
  > div
  > div
  > div
  > div
  > ul
  > li:nth-child(2) {
  float: none;
}

/* Partner Kami */
.partner-mpabha p {
  font-size: 1.2rem;
}

.partner-mpabha div.carousel-partner div.item img {
  height: 120px;
  width: auto;
  margin: 0 auto;
}

@media (max-width: 425px) {
  .partner-mpabha h1 {
    font-size: 20px !important;
  }

  .partner-mpabha p {
    font-size: 12px !important;
    padding: 0 20px;
  }

  .partner-mpabha img {
  }
}

/* footer timework */
footer .timework p {
  padding-left: 15px;
}

footer .alamat p a {
  color: var(--secondary-color);
}

footer .alamat p a:hover {
  color: var(--primary-color);
}

ul#additional_links {
  float: none;
}

@media (max-width: 1024px) {
  .wrapper-tour div.wrap-content .content-tour {
    padding: 0 15px;
  }

  .wrapper-tour.tour-1 div.wrap-content:after {
    left: -65px;
  }

  .wrapper-tour.tour-2 div.wrap-content:after {
    left: 65px;
  }

  .wrapper-tour.tour-3 div.wrap-content:after {
    left: -65px;
  }
}

@media (max-width: 992px) {
}

@media (max-width: 830px) {
  div.btn-hover a {
    font-size: 12px;
  }

  .banner-wrap .banner-parallax h1 {
    font-size: 26px !important;
  }

  .banner-wrap .banner-parallax p {
    font-size: 16px !important;
  }

  .banner-wrap .banner-parallax div.button-action div.btn-hover a {
    font-size: 9px;
    border: none;
    padding: 0px 20px 0px 30px;
  }

  .banner-wrap .banner-parallax div.button-action div.btn-hover a .icon-arrow {
    height: 7px;
    top: 9px;
  }

  .banner-wrap
    .banner-parallax
    div.button-action
    div.btn-hover
    a
    .icon-arrow.before {
    left: 5px;
    top: 10px;
  }
}

@media (max-width: 795px) {
  .banner-wrap .banner-parallax h1 {
    font-size: 26px !important;
  }

  .banner-wrap .banner-parallax p {
    font-size: 16px !important;
  }

  .banner-wrap .banner-parallax div.button-action div.btn-hover a {
    font-size: 9px;
    border: none;
    padding: 0px 20px 0px 30px;
  }

  .banner-wrap .banner-parallax div.button-action div.btn-hover a .icon-arrow {
    height: 7px;
  }

  .banner-wrap
    .banner-parallax
    div.button-action
    div.btn-hover
    a
    .icon-arrow.before {
    left: 5px;
    top: 10px;
  }
}

@media (min-width: 768px) {
}

@media (max-width: 767px) {
  div.fitur-mpabha h1 {
    font-size: 24px !important;
  }
}

@media (max-width: 600px) {
}

@media (max-width: 425px) {
  div.banner-header .item .cover .header-content h1 {
    font-size: 30px;
  }

  div.banner-header .item .cover .header-content h4 {
    font-size: 14px;
    line-height: 25px;
  }

  div.banner-header .item .cover .header-content span {
    font-size: 14px;
  }

  div.banner-header .item .cover .header-content {
    padding: 20px 30px 35px;
  }

  div.banner-header .item img.logo-travel {
    height: 100px;
  }

  div.banner-header .item .cover .header-content .line {
    clip-path: polygon(10% 0, 90% 0, 90% 100%, 10% 100%);
    border-top: 5px solid #fff;
    border-bottom: 5px solid #fff;
  }

  div.banner-wrap h1 {
    font-size: 26px !important;
  }

  div.banner-wrap p.text-white {
    font-size: 14px !important;
  }

  div.banner-wrap ul.button-detail div.btn-hover a {
    padding: 5px 20px 5px 50px;
  }

  div.btn-hover a .icon-arrow {
    top: 10px;
  }

  div.banner-wrap iframe {
    height: 250px !important;
  }

  div.btn-hover a .icon-arrow {
    top: 15px !important;
  }

  .banner-wrap .banner-parallax div.button-action div.btn-hover a {
    font-size: 12px;
    padding: 0px 20px 0px 40px;
  }

  .banner-wrap
    .banner-parallax
    div.button-action
    div.btn-hover
    a
    .icon-arrow.before {
    height: 12px;
    top: 8px !important;
  }

  .banner-wrap .banner-parallax div.button-action div.btn-hover a .icon-arrow {
    height: 12px;
    top: 7px !important;
  }

  /* Wrapper Tour */
  .wrapper-tour div.wrap-content:after {
    transform: skewX(0deg);
  }

  .wrapper-tour.tour-1 div.wrap-content:after {
    left: 0;
    background: linear-gradient(to right, #000000a6, #000000a6),
      url(https://cdn.muslimpergi.com/uploads/gallery/pict/563/minaret-3338030_1920.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .wrapper-tour.tour-2 div.wrap-content:after {
    left: 0;
    background: linear-gradient(to right, #000000a6, #000000a6),
      url(https://cdn.muslimpergi.com/uploads/gallery/pict/582/people-gathering-near-kaaba-mecca-saudi-arabia-2895295.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .wrapper-tour.tour-3 div.wrap-content:after {
    left: 0;
    background: linear-gradient(to right, #000000a6, #000000a6),
      url(https://cdn.muslimpergi.com/uploads/gallery/pict/600/adalaj-step-well-1514747_1920.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .wrapper-tour div.wrap-content .content-tour h3,
  .wrapper-tour div.wrap-content .content-tour p,
  .wrapper-tour
    div.wrap-content
    div.button-action
    ul.button-detail
    div.btn-hover.body-btn
    a,
  .wrapper-tour
    div.wrap-content
    div.button-action
    ul.button-detail
    div.btn-hover
    a:hover,
  .wrapper-tour
    div.wrap-content
    div.button-action
    ul.button-detail
    div.btn-hover
    a:hover
    .icon-arrow.after,
  .wrapper-tour
    div.wrap-content
    div.button-action
    ul.button-detail
    div.btn-hover.body-btn
    a
    .icon-arrow.before {
    color: #fff !important;
    fill: #fff !important;
  }

  .wrapper-tour
    div.wrap-content
    div.button-action
    ul.button-detail
    div.btn-hover
    a:hover
    .icon-arrow.after,
  .wrapper-tour
    div.wrap-content
    div.button-action
    ul.button-detail
    div.btn-hover.body-btn
    a
    .icon-arrow.before {
    top: 17px !important;
  }

  .wrapper-tour
    div.wrap-content
    div.button-action
    ul.button-detail
    li:last-child {
    float: right;
  }

  #listings div.btn-hover a .icon-arrow.before,
  #listings div.btn-hover.body-btn a .icon-arrow {
    top: 20px !important;
  }

  /* Abha LA */
  .mpabha-la h1,
  .sahabat-mpabha h1 {
    font-size: 20px !important;
  }

  .mpabha-la p,
  .sahabat-mpabha p {
    font-weight: normal !important;
  }

  .mpabha-la div.btn-hover a,
  .mpabha-la div.btn-hover a:hover,
  .sahabat-mpabha div.btn-hover a,
  .sahabat-mpabha div.btn-hover a:hover {
    font-size: 12px;
    border: none;
    padding: 0px 0px 0px 50px;
  }

  .mpabha-la div.btn-hover a .icon-arrow.before,
  .mpabha-la div.btn-hover a .icon-arrow.after,
  .sahabat-mpabha div.btn-hover a .icon-arrow.before,
  .sahabat-mpabha div.btn-hover a .icon-arrow.after {
    top: 5px !important;
  }

  .mpabha-la div.btn-hover a .icon-arrow.after,
  .sahabat-mpabha div.btn-hover a .icon-arrow.after {
    right: 0;
  }

  .fitur-mpabha div.btn-hover a .icon-arrow.before,
  .fitur-mpabha div.btn-hover.body-btn a .icon-arrow {
    top: 20px !important;
  }

  .fitur-mpabha .container .row h5 {
    margin-top: 15px;
  }
}

@media (max-width: 415px) {
  div.banner-wrap ul.button-detail li:first-child {
    margin-right: 10px;
  }
}

.main_title_2 span {
  background-color: var(--secondary-color);
  border-radius: 20px;
  height: 5px;
}

.main_title_2 span em {
  background-color: var(--primary-color);
  height: 5px;
}

.example_d {
  color: var(--primary-color) !important;
  font-weight: bold;
  text-transform: capitalize;
  background: #ffffff;
  padding: 10px 15px;
  border: 4px solid var(--primary-color) !important;
  border-radius: 6px;
  display: inline-block;
  transition: all 0.3s ease 0s;
}

.example_d:hover {
  color: #494949 !important;
  border-radius: 50px;
  border-color: #494949 !important;
  transition: all 0.3s ease 0s;
}

.credit {
  background: #fff;
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 20px;
}


/* <!-- Single Listing --> */

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


/** <!-- To Top Button --> */

#toTop {
  background: var(--primary-color);
  color: var(--white);
  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;
  bottom: 15px;
  right: 15px;
}

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

#toTop:hover {
  background: var(--secondary-color);
  color: #fff;
}


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

#chatBtn {
  display: none;
}

#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: #fff;
  color: #404040;
  position: fixed;
  height: 45px;
  display: flex;
  font-weight: 400;
  justify-content: space-between;
  z-index: 9999;
  bottom: 25px;
  left: 30px;
  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;
}

.header-chat {
  background: rgb(106 175 79);
  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 screen and (max-width: 480px) {
  #whatsapp-chat {
    width: auto;
    left: 5%;
    right: 5%;
    font-size: 80%;
  }

  /*#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://cdn.muslimpergi.com/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;
}