/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap'); */
@font-face {
  font-family: 'Helvetica Bold';
  src: url('../fonts/Helvetica-Bold.woff2') format('woff2'),
    url('../fonts/Helvetica-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica';
  src: url('../fonts/Helvetica.woff2') format('woff2'),
    url('../fonts/Helvetica.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-black: 0, 0, 0;
  --color-white: 255, 255, 255;
  --color-dark: 34, 34, 34;
  --color-blue: 0, 93, 154;
  --color-orange: 255, 117, 0;
  --color-default: 82, 87, 92;
  --color-gray: 160, 164, 168;
}

::-moz-selection {
  background: #bfdbec;
  text-shadow: none;
}

::selection {
  background: #bfdbec;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  background-color: transparent;
  border-top: 1px solid #EBEBEB;
  margin: 10px 0;
  padding: 0;
  opacity: 1;
}

hr.dashed {
  border-top: 1px dashed #EBEBEB;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

a {
  color: rgb(var(--color-blue));
  text-decoration: none;
  transition: all 150ms ease-in-out;
}

a:hover,
a:focus {
  text-decoration: none;
  color: rgb(var(--color-orange));
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body {
  font-family: 'Helvetica';
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  color: rgba(var(--color-default));
  padding-top: 71px;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== Typography ========== */

h1 {
  font-size: 64px;
  line-height: 77px;
}

h2 {
  font-size: 48px;
  line-height: 60px;
}

h3 {
  font-size: 40px;
  line-height: 50px;
}

h4 {
  font-size: 36px;
  line-height: 44px;
}

h5 {
  font-size: 28px;
  line-height: 34px;
}

.text-3xs {
  font-size: 10px;
  line-height: 18px;
}

.text-xxs {
  font-size: 12px;
  line-height: 18px;
}

.text-xs {
  font-size: 14px;
  line-height: 23px;
}

.text-base {
  font-size: 16px;
  line-height: 24px;
}

.text-md {
  font-size: 18px;
  line-height: 30px;
}

.text-lg {
  font-size: 20px;
  line-height: 20px;
}

.text-xl {
  font-size: 24px;
  line-height: 32px;
}

.text-xxl {
  font-size: 30px;
  line-height: 40px;
}

.text-xxxl {
  font-size: 36px;
  line-height: 48px;
}

.lh-auto {
  line-height: normal;
}

.text-13 {
  font-size: 13px;
  line-height: 24px;
}

.spacing-1 {
  letter-spacing: 0.08em;
}

.spacing-2 {
  letter-spacing: 0.2em;
}

/* ========== Colors ========== */
.color-black {
  color: rgb(var(--color-black));
}

.color-dark {
  color: rgb(var(--color-dark));
}

.color-default {
  color: rgba(var(--color-default));
}

.color-white {
  color: rgb(var(--color-white));
}

.color-blue {
  color: rgb(var(--color-blue));
}

.color-orange {
  color: rgb(var(--color-orange));
}

.color-gray {
  color: rgb(var(--color-gray));
}

.bg-gray {
  background-color: #F6F8FB;
}

/* ========== Forms & Input ========== */

.form-control {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 400;
  color: rgb(var(--color-default));
  background-clip: padding-box;
  background-color: rgb(var(--color-white));
  border-radius: 4px;
  border: 1px solid #E7E7E7;
}

.form-control::placeholder {
  color: rgba(51, 62, 66, 0.6);
}

.form-select {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 400;
  background-clip: padding-box;
  border: 1px solid #EDEEED;
  border-radius: 4px;
}

.form-control:focus,
.form-select:focus {
  color: rgb(var(--color-dark));
  background-color: rgb(var(--color-white));
  border-color: #dfdfdf;
  outline: 0;
  box-shadow: none;
}

.form-control:disabled {
  background-color: #FFFFFF;
  border: 1px solid #E9E7EC;
}


/* ========== Button ========== */
.btn {
  font-size: 14px;
  line-height: 20px;
  padding: 8px 20px;
  border-radius: 50px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.btn:hover {
  color: rgb(var(--color-white));
}

.btn:active {
  outline: 0;
}

.btn-primary {
  background-color: rgb(var(--color-blue));
  border-color: rgb(var(--color-blue));
}

.btn-primary:hover {
  background-color: rgb(var(--color-orange));
  border-color: rgb(var(--color-orange));
}

.btn-secondary {
  background-color: rgb(var(--color-white));
  border-color: rgb(var(--color-white));
  color: rgb(var(--color-blue));
}

.btn-secondary:hover {
  background-color: rgb(var(--color-orange));
  border-color: rgb(var(--color-orange));
  color: rgb(var(--color-white));
}

.btn-blur {
  background-color: rgb(var(--color-white));
  border-color: rgba(255, 255, 255, 0.1);
  color: rgb(var(--color-white));
  background: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  line-height: 24px;
}

.btn-blur:hover {
  background-color: rgb(var(--color-orange));
  border-color: rgb(var(--color-orange));
  color: rgb(var(--color-white));
}

.btn-util {
  border-color: rgb(var(--color-blue));
  background: transparent;
  color: rgb(var(--color-blue));
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 15px;
}

.btn-util:hover,
.btn-util:focus,
.btn-util:first-child:active {
  border-color: rgb(var(--color-blue));
  background: transparent;
  color: rgb(var(--color-blue));
}

.btn-util::before {
  font-family: 'icomoon';
}

.btn-util.sort::before {
  content: "\e91e";
}

.btn-util.month::before {
  content: "\e902";
}

.sort.filtered::before,
.filter.filtered::before,
.month.filtered::before {
  content: "\e90d";
  color: orange;
}

.btn-outline-primary {
  color: rgb(var(--color-blue));
  border-color: rgb(var(--color-blue));
}

.btn-outline-primary:hover {
  color: rgb(var(--color-white));
  border-color: rgb(var(--color-blue));
  background-color: rgb(var(--color-blue));
}

.btn-outline-secondary {
  color: rgb(var(--color-white));
  border-color: rgb(var(--color-white));
}

.btn-outline-secondary:hover {
  color: rgb(var(--color-white));
  border-color: rgb(var(--color-orange));
  background-color: rgb(var(--color-orange));
}

.btn-green {
  background: #25A05E;
  color: rgb(var(--color-white));
}

.btn-green:hover {
  background: rgb(var(--color-orange));
  color: rgb(var(--color-white));
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1049;
  width: 100%;
  transition: all 150ms ease-in-out;
  background: #FFFFFF;
  box-shadow: 0px 4px 12px rgba(34, 34, 34, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  padding: 15px 0;
  transition: all 150ms ease-in-out;
}

.smaller .header-inner {
  padding: 8px 0;
}

.header-left,
.header-right {
  width: 250px;
}

.header-center {
  width: calc(100% - 500px);
}

.main-menu,
.right-nav {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.right-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.main-menu {
  justify-content: center;
  display: flex;
  gap: 35px;
}

.main-menu .menu-link {
  font-family: 400;
  font-size: 14px;
  line-height: 24px;
  color: rgb(var(--color-dark));
}

.main-menu .menu-link:hover,
.main-menu .menu-link.active {
  color: rgb(var(--color-blue));
}

.btn-search {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 93, 154, .2);
  color: rgb(var(--color-dark));
}

.btn-search:hover {
  color: rgb(var(--color-dark));
  border: 1px solid rgba(0, 93, 154, .2);
}

.logo {
  display: inline-block;
  max-width: 176px;
}

.title-docs {
  font-size: 16px;
  color: #0077cc;
  font-weight: 600;
}

/* ========== Menu Mobile ========== */
.mobile-nav {
  max-width: 350px;
  height: 100vh;
  background-color: rgb(var(--color-white));
  position: fixed;
  left: -350px;
  top: 0;
  z-index: 190;
  width: 100%;
  padding: 30px;
  transition: all 150ms ease-in-out;
  box-shadow: 0px 0px 8px 0px rgba(106, 78, 38, 0.24);
}

.mobile-nav.show {
  left: 0;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: all 150ms ease-in-out;
}

.overlay.show {
  visibility: visible;
  opacity: 1;
}

.btn-toggle {
  padding: 0;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
}

.nav-header {
  display: flex;
  justify-content: space-between;
}

.social-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding-left: 0;
}

.link-social {
  width: 38px;
  height: 38px;
  background-color: rgb(var(--color-blue));
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: rgb(var(--color-white));
}

.menu-mobile {
  list-style: none;
  padding-left: 0;
}

.menu-mobile li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
}

.menu-mobile .link-mobile {
  display: inline-block;
  font-family: 400;
  color: rgb(var(--color-dark));
  padding: 6px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.menu-mobile .link-mobile:hover,
.menu-mobile .link-mobile.active {
  color: rgb(var(--color-blue));
}

/* ========== Content ========== */
.hero-inner {
  background-size: cover;
  background-position: center;
  width: 100%;
  aspect-ratio: 11/3;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
}

.hero-inner.tour {
  aspect-ratio: 11/2;
}

.slider-hero .swiper-slide {
  background-size: cover;
  background-position: center;
  width: 100%;
  aspect-ratio: 11/4;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
}

.slider-hero .swiper-slide::before,
.hero-inner::before {
  content: '';
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #005D9A -108.15%, rgba(0, 93, 154, 0.4) 24.03%);
  width: 100%;
  /* z-index: -1; */
}

.slider-hero .swiper-slide .container {
  margin-top: -5%;
}

.hero {
  position: relative;
}

.slider-hero .swiper-slide .container .spacing {
  letter-spacing: 0.4em;
}

.slider-hero .swiper-slide .container h5 {
  letter-spacing: 0.05em;
}

.australi {
  position: absolute;
  transform: rotate(-10deg);
  top: -20px;
}

.form-destination {
  position: relative;
  z-index: 10;
  margin-top: -31px;
}

.destination-wrapper {
  background: rgb(var(--color-white));
  box-shadow: 0px 4px 12px rgba(34, 34, 34, 0.06);
  border-radius: 80px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.select-wrapper {
  width: calc(50% - 20px);
}

.ico-dest {
  width: 40px;
  text-align: center;
}


.custom-select-wrapper,
.custom-select-wrapper2 {
  position: relative;
  display: block;
  user-select: none;
}

.custom-select-wrapper select,
.custom-select-wrapper2 select {
  display: none;
}

.custom-select,
.custom-select-bottom {
  position: relative;
  display: block;
  width: 100%;
}

.custom-select-trigger,
.custom-select-trigger2 {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  font-size: 13px;
  line-height: 18px;
  font-weight: 300;
  color: rgb(var(--color-default));
  border-radius: 0;
  cursor: pointer;
}

.custom-options,
.custom-options2 {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  max-width: 210px;
  width: 100%;
  margin: 10px 0;
  border-radius: 12px;
  box-sizing: border-box;
  background: #fff;
  transition: all .4s ease-in-out;
  opacity: 0;
  z-index: 10;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
  box-shadow: 0px 2px 12px rgba(34, 34, 34, 0.06);
  max-height: 285px;
  overflow-y: auto;
  overflow-x: hidden;
}

.custom-options2 {
  top: auto;
  left: 0;
  bottom: 100%;
}

.custom-select.opened .custom-options,
.custom-select-bottom.opened .custom-options2 {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.custom-option,
.custom-option2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 15px;
  font-size: 13px;
  border-bottom: 1px solid #E8E8E8;
  color: rgb(var(--color-dark));
  cursor: pointer;
  transition: all .4s ease-in-out;
}

.custom-option:first-of-type,
.custom-option2:first-of-type {
  border-radius: 4px 4px 0 0;
}

.custom-option:last-of-type,
.custom-option2:last-of-type {
  border-bottom: 0;
  border-radius: 0 0 4px 4px;
}

.custom-option:hover,
.custom-option.selection,
.custom-option2:hover,
.custom-option2.selection {
  background: #E1F6FD;
}

.custom-option.selection::after,
.custom-option2.selection::after {
  content: "\e90c";
  font-family: 'icomoon';
  color: rgb(var(--color-blue));
}


.button-wrapper {
  width: 40px;
}

.btn-search-submit {
  background: rgb(var(--color-blue));
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: rgb(var(--color-white));
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-search-submit:hover {
  background: rgb(var(--color-orange));
  color: rgb(var(--color-white));
}

.main-section {
  padding: 50px 0;
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  margin-top: 0;
  color: rgb(var(--color-white));
  border: 1px solid rgb(var(--color-white));
  border-radius: 50%;
}

#mice.swiper-button-next,
#mice.swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  margin-top: 0;
  color: rgb(var(--color-blue));
  border: 1px solid rgb(var(--color-white));
  border-radius: 50%;
  background-color: rgba(0, 93, 154, 0.1);
}

.tour-items {
  background: rgb(var(--color-white));
  box-shadow: 0px 2px 12px rgba(34, 34, 34, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 200ms ease-in-out;
  cursor: pointer;
  height: 100%;
  position: relative;
}

.tour-items:hover {
  transform: translate(0, -10px);
  box-shadow: 0px 4px 24px rgba(0, 93, 154, 0.16);
}

.image-tour {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.image-tour img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.tour-meta {
  padding: 15px 15px 0;
}

.tour-price {
  padding: 0 15px 15px;
  height: 70px;
  width: 100%;
  display: block;
  opacity: 1;
  visibility: visible;
}

.tp-inner {
  width: calc(100% - 30px);
  position: absolute;
  bottom: 15px;
  display: block;
  opacity: 1;
  visibility: visible;
}

.featured-tour .swiper-slide {
  height: auto;
}

.featured-tour {
  overflow: visible;
}

.tm-top {
  min-height: 100px;
}

.nav-content {
  margin-top: 40px;
}

.ico-mobile {
  width: 40px;
}

.title-tour {
  font-family: 'Helvetica Bold';
  font-size: 16px;
  line-height: 24px;
  color: rgb(var(--color-dark));
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.arrow-link {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  color: rgb(var(--color-blue));
  background: rgba(0, 93, 154, 0.1);
}

.tour-items:hover .arrow-link {
  color: rgb(var(--color-white));
  background: rgba(0, 93, 154, 1);
}

.cate-home {
  background-size: cover;
  background-position: center;
  aspect-ratio: 3.5/6;
  transition: all 150ms ease-in-out;
  position: relative;
  display: block;
}

.cate-home::before {
  content: '';
  background: rgba(34, 34, 34, 0.01);
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 150ms ease-in-out;
}

.destinations .swiper-slide {
  aspect-ratio: 4/6;
  overflow: hidden;
}

.destinations .swiper-slide:hover .cate-home {
  transform: scale(1.1);
  transition: all 150ms ease-in-out;
}

.destinations .swiper-slide:hover .cate-home::before {
  background: rgba(34, 34, 34, 0.5);
}

.cate-name {
  position: absolute;
  left: 30px;
  bottom: -20px;
  transition: all 150ms ease-in-out;
}

.destinations .swiper-slide:hover .cate-name {
  bottom: 20px;
}

.link-cate {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: rgb(var(--color-white));
}

.why-img {
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 30px;
}

.why-img img {
  width: 100%;
}

.why-meta {
  position: relative;
  padding-top: 20px;
}

.line-why {
  width: 100%;
  height: 1px;
  background: rgba(0, 93, 154, .2);
  position: absolute;
  top: 300px;
  left: 0;
}

.dot-why {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding-left: 0;
  margin-top: -5px;
  z-index: 3;
}

.dot-why li {
  width: 10px;
  height: 10px;
  background: rgb(var(--color-blue));
  border-radius: 50%;
}

.dot-why li:nth-child(2) {
  margin-left: 0px;
}

.dot-why li:nth-child(3) {
  margin-left: 20px;
}

.news-image {
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 12px;
}

.news-image a figure {
  aspect-ratio: 4/3;
  overflow: hidden;
  transition: all 150ms ease-in-out;
}

.news-image a figure img {
  height: 100%;
  transition: all 150ms ease-in-out;
}

.news-image a:hover figure img {
  transform: scale(1.1);
}

.news-excert {
  font-size: 14px;
  line-height: 24px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-title {
  font-family: 'Helvetica Bold';
  font-size: 16px;
  line-height: 28px;
  color: rgb(var(--color-dark));
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 10px 0;
}

.ico-link {
  font-family: 400;
  font-size: 14px;
  line-height: 20px;
  color: #005D9A;
  display: flex;
  align-items: center;
  transition: all 100ms ease-in-out;
}

.news-items:hover .ico-link {
  color: rgb(var(--color-orange));
}

.ico-link::after {
  content: "\e915";
  font-family: 'icomoon';
  padding-left: 5px;
  transition: all 100ms ease-in-out;
}

.news-items:hover .ico-link::after {
  transform: translateX(5px);
  color: rgb(var(--color-orange));
}

.partner-list {
  padding: 50px 0 130px;
}

.partner-row {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 10px;
}

.partner-item {
  width: calc(20% - 10px);
  aspect-ratio: 4/2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(var(--color-white));
  border: 1px solid #E8E8E8;
  border-radius: 12px;
}
.partner-items {
  width: calc(25% - 10px);
  aspect-ratio: 4/2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(var(--color-white));
  border: 1px solid #E8E8E8;
  border-radius: 12px;
}

.partner-item img {
  max-width: 80%;
}

.partner-item:hover,
.partner-items:hover {
  border: 1px solid #018ECF;
  filter: drop-shadow(0px 2px 12px rgba(0, 93, 154, 0.16));
}

.moving {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.moving .lists {
  width: calc(21% - 15px);
  height: 400px;
  background-size: cover;
  background-position: left;
  border-radius: 12px;
  height: 400px;
  display: flex;
  transition: all 500ms ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 2;
  cursor: pointer;
}

.moving .lists.current {
  width: calc(59% - 15px);
  background-position: left;
  height: 400px;
}

.moving .lists::after {
  content: '';
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(34, 34, 34, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.lists-image::after {
  content: '';
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(34, 34, 34, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.lists .moving-meta {
  position: absolute;
  left: 30px;
  right: -130px;
  bottom: 90px;
  transform: rotate(-90deg);
  transition: all 500ms ease-in-out;
}

.lists.current .moving-meta {
  position: absolute;
  left: 30px;
  bottom: 30px;
  right: 0;
  transform: none;
  transition: all 400ms ease-in-out;
}

.inner-cate {
  display: block;
  aspect-ratio: 5/3;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

.bg-inner-cate {
  background-size: cover;
  height: 100%;
  position: relative;
  width: 100%;
  transition: all 150ms ease-in-out;
}

.bg-inner-cate::before {
  content: '';
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 56.22%, #000000 121.58%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.inner-cate:hover .bg-inner-cate {
  transform: scale(1.15);
}

.ic-meta {
  position: absolute;
  z-index: 10;
  bottom: 20px;
  left: 20px;
  transform: translateY(35px);
  transition: all 250ms ease-in-out;
}

.ic-meta .text-xxs {
  visibility: hidden;
  opacity: 0;
  transition: all 250ms ease-in-out;
}

.inner-cate:hover .ic-meta {
  transform: none;
}

.inner-cate:hover .ic-meta .text-xxs {
  visibility: visible;
  opacity: 1;
}


.pagination {
  gap: 5px;
  display: flex;
  padding-left: 0;
}

.page-link {
  position: relative;
  font-size: 14px;
  border-radius: 5px;
  color: #A6A7AA;
  text-decoration: none;
  background-color: transparent;
  border: 0;
  width: 35px;
  height: 35px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.pagination.blue .page-link {
  border-radius: 5px;
}

.page-link:hover,
.page-link.active {
  color: #fff;
  background-color: rgb(var(--color-blue));
}

.drop-filter::before {
  content: '';
  position: fixed;
  z-index: 100;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.dropdown-menu.urutkan {
  min-width: 220px;
  padding: 5px 15px;
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid #E8E8E8;
  border-radius: 16px;
  z-index: 1001;
}

.urutkan li {
  border-bottom: var(--bs-dropdown-border-width) solid #E8E8E8;
}

.urutkan li:last-child {
  border-bottom: 0;
}

.urutkan li {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: rgb(var(--color-dark));
}

.urutkan li.active::after {
  content: "\e90d";
  font-family: 'icomoon';
  color: rgb(var(--color-blue));
  font-size: 16px;
}

.hero-inner.tour {
  margin-top: -50px;
}

.breadcrumb {
  margin-bottom: 50px;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li::after {
  content: '/';
  margin: 0 12px;
}

.breadcrumb li:last-child:after {
  display: none;
}

.breadcrumb li,
.breadcrumb li a {
  font-size: 14px;
  line-height: 28px;
  color: rgb(var(--color-white));
}

.breadcrumb.artikel li,
.breadcrumb.artikel li a {
  font-size: 14px;
  line-height: 28px;
  color: rgb(var(--color-blue));
}

.breadcrumb.artikel li {
  color: rgb(var(--color-gray));
}

.slider-tabs .swiper-slide {
  width: max-content;
}

.slider-tabs .nav-link {
  display: flex;
  align-items: center;
  padding: 5px 15px 5px 5px;
  box-sizing: border-box;
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 10px;
  gap: 10px;
  font-size: 16px;
  line-height: 19px;
  color: #52575C;
}

.img-tabs {
  width: 42px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
}

.slider-tabs .nav-item.show .nav-link,
.slider-tabs .nav-link.active {
  color: rgb(var(--color-blue));
  background-color: #E1F6FD;
  border-color: rgb(var(--color-blue));
  font-family: 400;
  border-width: 2px;
}

.img-about {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 16px;
}

.img-about img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.bg-quote {
  background: #F6F8FB;
  border-radius: 12px;
  padding: 30px;
  font-style: italic;
  font-family: 'Helvetica Bold';
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: rgb(var(--color-blue));
}

.bg-quote.artikel {
  background: #F6F8FB;
  font-family: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: rgb(var(--color-dark));
}

.counter {
  background-size: cover;
  background-position: center;
  padding: 130px 0;
}

.row-counter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.counter-items {
  text-align: center;
  color: rgb(var(--color-white));
  max-width: 250px;
  width: 100%;
}

.counter-items .big-number {
  font-family: 'Helvetica Bold';
  font-size: 72px;
  line-height: 80px;
  text-align: center;
}

.counter-items p {
  font-family: 400;
}

.img-artikel-detail {
  aspect-ratio: 11/3;
  width: 100%;
  overflow: hidden;
}

.img-artikel-detail img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.share {
  display: flex;
  justify-content: center;
  padding-left: 0;
  list-style: none;
  align-items: center;
  gap: 30px;
}

.share li a {
  font-size: 19px;
}

.box-contact-inner {
  position: relative;
  margin-top: -120px;
}

.label-form {
  font-size: 14px;
  line-height: 20px;
  color: rgb(var(--color-gray));
}

.label-form.required::after {
  content: '*';
  color: #EC2726;
  padding-left: 4px;
}

.form-contact input,
.form-contact textarea {
  border: 0;
  background: #F6F8FB;
  border-radius: 6px;
  color: rgb(var(--color-dark));
}

.form-contact input:focus,
.form-contact textarea:focus {
  background: #F6F8FB;
}

.gm-style-iw-chr button {
  display: none !important;
}

#map-location {
  height: 100%;
  position: relative;
  z-index: 10;
}

.box-contact {
  padding: 70px;
  background: #FFFFFF;
  box-shadow: 0px 8px 16px rgba(37, 40, 43, 0.06);
  position: relative;
  z-index: 10;
}

.sides {
  max-width: 330px;
  position: sticky;
  top: 70px;
}

#sidebase {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

#sidebase .nav-link {
  text-align: left;
  border: 0;
  width: 100%;
  border-radius: 10px;
  background: transparent;
  font-family: 400;
  font-size: 14px;
  line-height: 24px;
  padding: 10px 10px;
}

#sidebase .nav-item.show .nav-link,
#sidebase .nav-link.active {
  color: rgb(var(--color-blue));
  background-color: rgb(var(--color-white));
}

.header-sidebar {
  font-family: 'Helvetica Bold';
  font-size: 28px;
  line-height: 34px;
  color: rgb(var(--color-dark));
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: 400;
  padding: 15px 0;
  font-size: 14px;
  color: rgb(var(--color-dark));
  text-align: left;
  background-color: transparent;
  border: 0;
  border-radius: 0;
}

.accordion-button.blue {
  color: rgb(var(--color-blue));
}

.accordion-body {
  font-size: 14px;
  line-height: 24px;
  color: #52575C;
  padding: 0px 0 20px;
}

.accordion-button:focus {
  z-index: 3;
  border-color: navajowhite;
  outline: 0;
  color: rgb(var(--color-dark));
  background: transparent;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: rgb(var(--color-dark));
  background-color: transparent;
  box-shadow: none;
}

.accordion-button::after {
  flex-shrink: 0;
  width: auto;
  height: auto;
  color: rgb(var(--color-blue));
  margin-left: auto;
  content: "\e908";
  font-size: 20px;
  font-family: 'icomoon';
  background-image: none;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
}

.btn-side {
  background-color: rgb(var(--color-white));
  width: 100%;
  margin-top: 10px;
  color: rgb(var(--color-blue));
  font-family: 'Helvetica Bold';
}

.btn-side:hover,
.btn-side:active {
  background-color: rgb(var(--color-white));
  color: rgb(var(--color-blue));
}

.accordion-flush .accordion-item:last-child {
  border-bottom: 1px solid var(--bs-accordion-border-color);
}

.image-top-td {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.image-top-td.big {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.image-top-td.rt {
  border-top-right-radius: 12px;
}

.image-top-td.rb {
  border-bottom-right-radius: 12px;
}

.image-top-td img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/9;
}

.btn-all {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  color: rgb(var(--color-white));
  gap: 10px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(2px);
  border-radius: 8px;
  padding: 7px 15px;
  font-size: 12px;
  line-height: 18px;
  font-family: 400;
}

.btn-all:hover {
  color: rgb(var(--color-white));
  background: rgba(255, 255, 255, 0.1);
}

.tour-name {
  font-family: 'Helvetica Bold';
  font-size: 32px;
  line-height: 39px;
  color: rgb(var(--color-dark));
  margin: 15px 0;
}

.table {
  --bs-table-border-color: #DBDDE0;
}

.table>thead {
  vertical-align: middle;
}

.table>thead tr th {
  vertical-align: middle;
  background-color: rgba(132, 215, 247, .2);
  text-align: center;
  font-family: 'Helvetica Bold';
  font-size: 12px;
  line-height: 15px;
  padding: 9px 15px;
  color: #005D9A;
  border-color: transparent;
}

.table>thead tr th:first-child {
  border-left: 1px solid #DBDDE0;
}

.table>thead tr th:last-child {
  border-right: 1px solid #DBDDE0;
}

.table>:not(caption)>*>* {
  padding: 10px 15px;
  color: rgb(var(--color-default));
  box-shadow: none;
  font-family: 'Helvetica Bold';
  font-size: 12px;
  line-height: 15px;
  text-align: center;
}

.box-status {
  padding: 5px 10px;
  border-radius: 6px;
  display: inline-block;
  min-width: 130px;
}

.box-status.available {
  color: #25A846;
  background: rgba(37, 168, 70, 0.1);
}

.box-status.full {
  color: #EF2C2C;
  background: rgba(239, 44, 44, 0.1);
}

.box-status.seat {
  color: #FB821C;
  background: rgba(251, 130, 28, 0.1);
}

.harga-noted {
  background: rgba(225, 246, 253, 0.5);
  padding: 15px 20px;
  border-radius: 16px;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: rgb(var(--color-blue));
}

.list-req {
  list-style: none;
  padding-left: 0px;
}

.list-req li {
  font-family: 400;
  font-size: 14px;
  line-height: 29px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.list-req.include li::before {
  content: "\e90d";
  font-family: 'icomoon';
  color: #25A846;
  font-size: 19px;
}

.list-req.exclude li::before {
  content: "\e90e";
  font-family: 'icomoon';
  color: #CC2929;
  font-size: 19px;
}

#nav-inex .nav-link {
  padding: 10px 16px;
  border: 2px solid #E8E8E8;
  border-radius: 10px;
  font-size: 14px;
  line-height: 17px;
  color: #52575C;
}

#nav-inex .nav-item.show .nav-link,
#nav-inex .nav-link.active {
  background: #E1F6FD;
  border: 2px solid #005D9A;
  border-radius: 10px;
  font-family: 'Helvetica Bold';
  font-size: 14px;
  line-height: 17px;
  color: rgb(var(--color-blue));
}

.syarat li {
  font-family: 400;
}

.days {
  width: 40px;
  height: 40px;
  border: 1px solid #E8E8E8;
  border-radius: 6px;
  overflow: hidden;
}

.top-top {
  background-color: rgb(var(--color-blue));
  color: rgb(var(--color-white));
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 10;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
}

.top-top.show {
  visibility: visible;
  opacity: 1;
}

.top-top:hover,
.top-top:focus {
  color: rgb(var(--color-white));
}

.days-line {
  color: rgb(var(--color-white));
  background: #EF2C2C;
  font-size: 10px;
  line-height: 13px;
  text-align: center;
}

.border-dashed {
  border-style: dashed;
}

.show-more-height {
  height: 20px;
  overflow: hidden;
  position: relative;
}

.show-more-height::before {
  content: '';
  position: absolute;
  height: 80px;
  width: 100%;
  background: linear-gradient(180.36deg, rgba(255, 255, 255, 0) -63.52%, #FFFFFF 143.8%);
  bottom: 0;
  left: 0;
}

.show-more {
  color: rgb(var(--color-orange));
  position: relative;
  font-size: 14px;
  padding-top: 5px;
  height: 20px;
  text-align: center;
  cursor: pointer;
}

.sticky-info {
  position: sticky;
  top: 145px;
  margin-top: 20px;
  background: rgba(74, 111, 135, 0.07);
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  padding: 20px;
}

.box-flight {
  background-color: rgb(var(--color-white));
  border-radius: 12px;
  padding: 15px;
  position: relative;
}

.box-flight::before {
  content: "\e91b";
  font-family: 'icomoon';
  color: rgb(var(--color-blue));
  font-size: 20px;
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
}

.box-flight::after {
  content: "\e908";
  font-family: 'icomoon';
  color: rgb(var(--color-blue));
  font-size: 18px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.ps-sticky {
  padding-left: 30px;
}

.box-flight .custom-select-wrapper .custom-select-trigger,
.box-flight .custom-select-wrapper .custom-select-trigger2 {
  padding-left: 30px;
}

.box-flight .custom-select-wrapper .custom-option {
  padding-left: 25px;
}

.flgiht .custom-select-trigger {
  color: rgb(var(--color-dark));
  font-size: 16px;
  line-height: 20px;
  font-family: 400;
}

.custom-select-wrapper .sources .custom-options {
  max-width: 100%;
}

.btn-wa {
  padding: 10px 0;
  background: #25A05E;
  color: rgb(var(--color-white));
}

.btn-wa:hover {
  background: rgb(var(--color-orange));
  color: rgb(var(--color-white));
}

.sticky-nav {
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.04);
  padding: 10px 0;
  position: fixed;
  top: 60px;
  z-index: 100;
  transition: all 320ms ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.sticky-nav.show {
  opacity: 1;
  visibility: visible;
}

.small-nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 90px;
  margin: 0;
  padding: 0;
}

.small-nav-menu a {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #A0A4A8;
}

.small-nav-menu a.active {
  color: rgb(var(--color-blue));
}

.gallery-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: 100%;
  background-color: rgb(var(--color-white));
  bottom: 0;
  width: 100%;
  z-index: 1050;
  padding: 50px 0;
  transition: all 150ms ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.gallery-wrapper.show {
  opacity: 1;
  visibility: visible;
}

.gallery-content {
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  overflow-x: hidden;
}

.gallery-items {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 4px;
  box-shadow: 0px 2px 8px rgba(26, 32, 148, 0.12);
}

.gallery-items.fourTwo {
  aspect-ratio: 4/2;
}

.gallery-items.oneOne {
  aspect-ratio: 1/1;
}

.gallery-items.long {
  aspect-ratio: 11/5;
}

.title-mice {
  font-family: 'Helvetica Bold';
  font-size: 52px;
  line-height: 63px;
}

.gallery-items img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.btn-video {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
}

/* ========== MICE ========== */
.mice-main {
  padding-top: 0;
}

.hero-mice {
  width: 100%;
  height: calc(100vh - 70px);
  position: relative;
  z-index: 3;
  background-size: cover;
  background-position: center center;
}

.hero-mice::before {
  content: '';
  position: absolute;
  left: 0%;
  right: 0%;
  top: 0%;
  bottom: 0%;
  width: 100%;
  background: linear-gradient(75.96deg, #005D9A 11.21%, rgba(0, 93, 154, 0) 100%), linear-gradient(139.14deg, #005D9A 3.4%, rgba(0, 93, 154, 0.4) 68.2%);
  height: 100%;
  z-index: -1;
}

.top-mice {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 20px 0; */
}

.logo-mice {
  display: block;
  max-width: 175px;
}

.logo-mice img {
  filter: brightness(0)invert(1);
}

.hero-desc-mice {
  height: calc(100vh - 70px);
  display: flex;
}

.hero-desc-mice h1 {
  font-size: 56px;
  line-height: 68px;
}

.box-form-mice {
  background: #FFFFFF;
  box-shadow: 0px 8px 16px rgba(37, 40, 43, 0.06);
  border-radius: 24px;
  padding: 40px;
}

.footer-mice {
  border-top: 1px solid #E8E8E8;
  background-color: #F6F8FB;
}

.footer-top-mice {
  padding: 40px 0 0;
}

.footer-bottom-mice {
  padding: 20px 0;
  border-top: 1px solid #E8E8E8;
}

.social.mice {
  display: flex;
  list-style: none;
  margin: 0;
  padding-left: 0;
  gap: 15px;
  margin-bottom: 30px;
}

.social.mice .link-social {
  background: rgb(var(--color-blue));
  color: rgb(var(--color-white));
  font-size: 18px;
}

.social.mice .link-social:hover {
  background: rgb(var(--color-blue));
  color: rgb(var(--color-orange));
}

.why-us {
  padding: 40px 0;
}

.why-icon {
  margin-top: 30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: rgb(var(--color-blue));
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.why-icon::before {
  content: '';
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid rgba(0, 93, 154, .2);
  position: absolute;
  left: -10%;
  top: -10%;
}

.program {
  padding: 60px 0 80px;
}

.program-item {
  height: 100%;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 8px;
  cursor: pointer;
  transition: all 200ms ease-in-out;
}

.program-item:hover {
  transform: translate(0, -15px);
  box-shadow: 0px 2px 12px rgba(0, 93, 154, 0.08);
}

.program-img {
  aspect-ratio: 4/3.8;
  overflow: hidden;
  border-radius: 10px;
}

.program-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 300ms ease-in-out;
}


.program-item:hover .program-img img {
  transform: scale(1.1);
  filter: none;
}

.destination {
  padding: 80px 0;
}

.destionation-items {
  display: block;
  position: relative;
  aspect-ratio: 11/5;
  border-radius: 12px;
  overflow: hidden;
  color: rgb(var(--color-white));
}

.destionation-items::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: '';
  z-index: 2;
  background: linear-gradient(248.24deg, rgba(34, 34, 34, 0) 35.74%, rgba(34, 34, 34, 0.6) 100%);
}

.destionation-items:hover::before {
  background: linear-gradient(228.33deg, rgba(34, 34, 34, 0) 26.45%, rgba(34, 34, 34, 0.8) 85.41%);
}

.destionation-items picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 150ms ease-in-out;
}

.des-hover {
  position: absolute;
  bottom: 30px;
  left: 30px;
  transform: translateY(75px);
  transition: all 150ms ease-in-out;
  z-index: 4;
  width: 100%;
}


.des-name {
  font-family: 'Helvetica Bold';
  font-size: 24px;
  line-height: 29px;
  color: rgb(var(--color-white));
  margin-bottom: 10px;
}

.des-count {
  color: rgb(var(--color-white));
  transform: translateY(10px);
}

.destionation-items:hover .des-hover,
.destionation-items:hover .des-count {
  transform: translateY(0);
}

.destionation-items:hover picture img {
  transform: scale(1.1);
}


.des-items {
  font-size: 13px;
  color: rgb(var(--color-white));
  position: relative;
}

.des-items::after {
  content: '';
  width: 5px;
  height: 5px;
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: rgb(var(--color-white));
}

.swiper .swiper-slide:last-child .des-items::after {
  display: none;
}

.bg-komitmen {
  border-radius: 12px;
  background-position: center;
  background-size: cover;
  padding: 45px;
  position: relative;
  z-index: 3;
}

.bg-contact-mice {
  padding: 30px;
  background: #FFFFFF;
  border-radius: 12px;
}

.client-partner {
  padding: 70px 0;
}

.cp-title {
  display: inline-block;
  color: rgb(var(--color-white));
  padding: 7px 40px;
  background-color: rgb(var(--color-blue));
  border-bottom-right-radius: 90px;
  border-top-left-radius: 90px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-style: italic;
  font-family: 400;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

.europe .swiper-slide,
.australia .swiper-slide,
.asia .swiper-slide,
.indonesia .swiper-slide,
.airline .swiper-slide,
.media .swiper-slide {
  width: max-content;
}

.europe .swiper-wrapper,
.australia .swiper-wrapper,
.asia .swiper-wrapper,
.indonesia .swiper-wrapper,
.airline .swiper-wrapper,
.media .swiper-wrapper {
  transition-timing-function: linear !important;
  position: relative;
  align-items: center;
}

/* .box-cp {
  display: flex;
  justify-content: center;
  align-items: center;
} */

.box-cp img {
  max-height: 70px;
}

.row-cp {
  margin-bottom: 40px;
}

.documentation {
  padding: 60px 0 110px;
}

.img-corporate {
  width: 72px;
  height: 72px;
  background-color: rgb(var(--color-white));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.text-name-c {
  font-family: 'Helvetica Bold';
  font-size: 20px;
  line-height: 24px;
  color: rgb(var(--color-dark));
}

.img-gd-wrapper {
  border-radius: 12px;
  height: 100%;
  overflow: hidden;
}

.img-gd-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

#lists.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
#lists.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

#lists.swiper-pagination {
  position: relative;
  top: 0;
  bottom: 0;
  display: flex;
}

#lists .swiper-pagination-bullet-active::before {
  display: none;
}

#lists .swiper-pagination-bullet {
  position: relative;
  width: 100%;
  height: auto;
  text-align: left;
  border-radius: 0;
  opacity: 1;
  margin-right: 0;
  background-color: transparent;
}

#lists .swiper-pagination-bullet span {
  font-size: 12px;
  display: inline-block;
  line-height: 19px;
  margin-bottom: 5px;
  color: rgb(var(--color-default));
}

#lists .swiper-pagination-bullet-active span {
  color: rgb(var(--color-blue));
  font-family: 'Helvetica Bold';
}

#lists .swiper-pagination-bullet i {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 2px;
  background-color: #E8E8E8;
}

#lists .swiper-pagination-bullet b {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 0%;
  height: 2px;
  background-color: rgb(var(--color-blue));
}

#lists .swiper-pagination-bullet-active {
  background-color: transparent;
}

#lists .swiper-pagination-bullet-active b {
  animation-name: countingBar;
  animation-duration: 3s;
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}

@keyframes countingBar {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

.gallery-dokumentasi .swiper-slide {
  background-color: #F6F8FB;
}


.box-ite {
  padding-left: 55px;
}

.mission-list {
  list-style: none;
  padding-left: 0;
}

.mission-list li {
  color: rgb(var(--color-dark));
  font-size: 14px;
  line-height: 20px;
  display: flex;
  position: relative;
  /* justify-content: space-between; */
  align-items: baseline;
  gap: 10px;
  margin-bottom: 15px;
}

.mission-list li span {
  width: calc(100% - 30px);
  display: block;
}


.mission-list li::before {
  content: '';
  width: 14px;
  height: 14px;
  background-image: url(../img/list-item.svg);
  background-size: 14px;
  background-repeat: no-repeat;
}

/* .floating-wa {
  position: fixed;
  bottom: 30px;
  right: 10px;
  z-index: 100;
  display: inline-block;
} */


.bg-tour {
  border-radius: 20px;
  background: rgba(0, 93, 154, .1) !important;
  position: relative;
  padding: 5px 25px;
}

.bg-tour .accordion {
  --bs-accordion-bg: transparent;
}

/* ========== Footer ========== */
.footer {
  background-color: #F4F7FA;
  position: relative;
  z-index: 3;
}

.footer::before {
  content: '';
  background-color: #fff;
  position: absolute;
  height: 120px;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.footer.no-contact::before {
  display: none;
}

.footer-contact {
  background-image: url('@/assets/img/contact-bg.webp');
  background-size: auto;
  background-position: center;
  padding: 50px 20px;
  border-radius: 24px;
  text-align: center;
  color: rgb(var(--color-white));
  position: relative;
  z-index: 3;
}

.footer-contact::before {
  content: '';
  position: absolute;
  z-index: -2;
  background: transparent;
  box-shadow: 0px 8px 24px 8px rgba(8, 8, 8, 0.24);
  border-radius: 24px;
  width: 80%;
  left: 10%;
  bottom: 0;
}

.footer-top {
  padding: 50px 0 40px;
}

.footer-bottom {
  padding: 10px 0;
  background: rgb(var(--color-dark));
  color: rgb(var(--color-white));
  text-align: center;
  font-size: 12px;
}

.social {
  display: flex;
  list-style: none;
  margin: 0;
  padding-left: 0;
  gap: 15px;
}

.logo-footer {
  display: inline-block;
  margin-bottom: 30px;
}

.social .link-social {
  background: rgb(var(--color-white));
  color: rgb(var(--color-blue));
  font-size: 18px;
}

.social .link-social:hover {
  background: rgb(var(--color-blue));
  color: rgb(var(--color-white));
}

.link-footer {
  padding-left: 0;
  list-style: none;
}

.link-footer li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: rgb(var(--color-dark));
}

/* ========== Popup ========== */
.modal-overlay {
  content: '';
  width: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  height: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 150ms ease-in-out;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.search-wrapper {
  background-color: rgb(var(--color-white));
  width: 100%;
  padding: 60px 0;
  position: relative;
  z-index: 5;
}

.search-wrapper::before {
  content: '';
  background-color: #F6F8FB;
  width: 100%;
  height: 146px;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}

.search-box {
  background: #FFFFFF;
  box-shadow: 0px 4px 12px rgba(34, 34, 34, 0.06);
  border-radius: 80px;
  padding: 5px;
  position: relative;
}

.search-box input {
  border: 0;
  color: rgb(var(--color-dark));
  padding-left: 45px;
}

.ico-lup {
  position: absolute;
  left: 20px;
  top: 16px;
}

.search-result {
  padding-top: 30px;
}

.list-result {
  padding-left: 0;
  list-style: none;
}

.list-result li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.desc-result {
  width: calc(100% - 60px);
}

.icon-result {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 93, 154, .2);
  color: rgb(var(--color-blue));
}

.icon-result.small {
  width: 32px;
  height: 32px;
}

.modal-content {
  padding: 20px;
  border-radius: 16px;
}

.form-range {
  width: calc(50% - 10px);
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.form-range::before {
  content: 'Rp';
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #E8E8E8;
  font-family: 'Helvetica Bold';
  font-size: 14px;
  line-height: 17px;
  color: #A0A4A8;
}

.form-range input {
  border: 0;
  padding-left: 50px;
}

.duration-choose label {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  cursor: pointer;
}

.duration-choose label::before {
  content: '';
  width: 22px;
  height: 22px;
  display: block;
  border-radius: 50%;
  border: 1.5px solid #E8E8E8;
}

.duration-choose label::after {
  position: absolute;
  top: 7px;
  left: 4px;
  content: '';
  border-radius: 50%;
  width: 14px;
  height: 14px;
  background: transparent;
}

.duration-choose input:checked+label::before {
  border: 1.5px solid rgb(var(--color-blue));
}

.duration-choose input:checked+label::after {
  background: rgb(var(--color-blue));
}

.plane-choose {
  position: relative;
  padding: 10px 0;
  border-bottom: 1px solid #E8E8E8;
}

.plane-choose label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 14px;
}

.plane-choose label::after {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: 1px solid #E8E8E8;
}

.plane-choose label::before {
  opacity: 0;
  position: absolute;
  right: 0;
  content: "\e90c";
  font-family: 'icomoon';
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-size: 13px;
  color: rgb(var(--color-white));
  background: rgb(var(--color-blue));
}

.plane-choose input:checked+label::before {
  opacity: 1;
}

/* ========== Swiper Override ========== */
#hero.swiper-horizontal>#hero.swiper-pagination-bullets,
#hero.swiper-pagination-bullets.swiper-pagination-horizontal,
#hero.swiper-pagination-custom,
#hero.swiper-pagination-fraction {
  bottom: 80px;
}

#partner.swiper-horizontal>#partner.swiper-pagination-bullets,
#partner.swiper-pagination-bullets.swiper-pagination-horizontal,
#partner.swiper-pagination-custom,
#partner.swiper-pagination-fraction {
  bottom: 0;
}

.swiper-pagination-bullet {
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: rgb(var(--color-white));
  opacity: .6;
  margin-right: 6px;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: rgb(var(--color-white));
}

#mice.swiper-button-next,
#mice.swiper-button-prev,
#dok.swiper-button-next,
#dok.swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  margin-top: 0;
  color: rgb(var(--color-blue));
  border: 1px solid rgb(var(--color-white));
  border-radius: 50%;
  background-color: rgba(0, 93, 154, 0.1);
}

#mice.swiper-button-next,
#mice.swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  margin-top: 0;
  color: rgb(var(--color-blue));
  border: 1px solid rgb(var(--color-white));
  border-radius: 50%;
  background-color: rgba(0, 93, 154, 0.1);
}

.swiper-button-next {
  right: 50px;
  left: auto;
}

.swiper-button-prev {
  right: auto;
  left: 50px;
}

#mice.swiper-button-next {
  right: -10px;
  left: auto;
}

#mice.swiper-button-prev {
  right: auto;
  left: -10px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: 'icomoon';
  font-size: 25px;
}

.swiper-button-prev:after {
  content: "\e914";
}

.swiper-button-next:after {
  content: "\e91c";
}


.swiper-pagination {
  position: relative;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  position: relative;
}

.swiper-pagination-bullet-active::before {
  content: '';
  background: transparent;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#partner .swiper-pagination-bullet-active::before {
  content: '';
  background: transparent;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgb(var(--color-blue));
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#partner .swiper-pagination-bullet {
  background: rgba(0, 93, 154, .5);
  margin-right: 5px;
}

#partner .swiper-pagination-bullet-active {
  background: rgb(var(--color-blue));
  opacity: 1;
}

/* ========== Scroll ========== */

.nav-content::-webkit-scrollbar,
.custom-options::-webkit-scrollbar,
.gallery-content::-webkit-scrollbar {
  width: 5px;
  border-radius: 3px;
}

/* Track */
.nav-content::-webkit-scrollbar-track,
.custom-options::-webkit-scrollbar-track,
.gallery-content::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
.nav-content::-webkit-scrollbar-thumb,
.custom-options::-webkit-scrollbar-thumb,
.gallery-content::-webkit-scrollbar-thumb {
  background: #f3f3f3;
}

/* Handle on hover */
.nav-content::-webkit-scrollbar-thumb,
.custom-options::-webkit-scrollbar-thumb,
.gallery-content::-webkit-scrollbar-thumb {
  background: #f3f3f3;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden,
[hidden] {
  display: none !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right;
}

.text-italic {
  font-style: italic;
}

.text-hidden {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-extraBold {
  font-family: "Helvetica Bold";
}

.text-bold {
  font-family: "Helvetica Bold";
}

.text-semiBold {
  font-family: "Helvetica Bold";
}

.text-medium {
  font-family: 400;
}

.text-normal {
  font-weight: 400;
}

.text-light {
  font-weight: 300;
}

.text-Black {
  font-family: "Helvetica Bold";
}

.h-100vh {
  height: 100vh;
}

.mh-0 {
  min-height: 0;
}

.line-height {
  line-height: 0;
}

.leading {
  letter-spacing: 1px;
}


.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   Responsive Design.
   ========================================================================== */

@media (min-width: 576px) {

  .container,
  .container-sm {
    max-width: 600px;
  }

  .modal-dialog {
    max-width: 480px;
    margin-right: auto;
    margin-left: auto;
  }

  .modal-xl-custom {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 768px) {

  .container,
  .container-md,
  .container-sm {
    max-width: 820px;
  }

  .right-nav li:last-child {
    display: none;
  }
}

@media (min-width: 992px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }

  .hide-desktop {
    display: none;
  }
}





@media (min-width: 1025px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 1140px;
  }


}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1175px;
  }

  .hide-desktop {
    display: none;
  }
}

@media (max-width: 1400px) {
  /* .hero-mice::before {
    height: 295px;
  } */
}

@media (min-width: 1025px) and (max-width: 1199px) {}

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

@media (max-width: 1024px) {
  .hide-tablets {
    display: none;
  }

  .back-inside {
    border-top: 1px solid #E8E8E8;
    background: #FFFFFF;
    box-shadow: 0px 4px 6px rgba(34, 34, 34, 0.04);
  }

  .hero-inner.tour {
    margin-top: 0;
  }

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: 53px;
    line-height: 63px;
  }

  h3 {
    font-size: 30px;
    line-height: 40px;
  }

  h5 {
    font-size: 22px;
    line-height: 31px;
  }

  .line-why {
    top: 245px;
  }

  .moving {
    gap: 10px;
  }

  .moving .lists.current {
    width: calc(59% - 10px);
    height: 400px;
  }

  .hero-inner.tour {
    aspect-ratio: 11 / 4;
  }

  .hero-desc-mice h1 {
    font-size: 42px;
    line-height: 58px;
  }


  .destination-pagination {
    position: relative;
    height: 20px;
    margin-top: 10px;
  }

  .mob.swiper-horizontal>.swiper-pagination-bullets,
  .mob.swiper-pagination-bullets.swiper-pagination-horizontal,
  .mob.swiper-pagination-custom,
  .mob.swiper-pagination-fraction {
    bottom: 0;
    top: 0;
    left: 0;
  }

  .mob .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2);
  }

  .mob .swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: rgb(var(--color-blue));
  }

  .mob .swiper-pagination-bullet-active::before {
    content: '';
    background: transparent;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgb(var(--color-blue));
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .destination-pagination {
    position: relative;
    height: 40px;
  }

  #des.swiper-horizontal>.swiper-pagination-bullets,
  #des.swiper-pagination-bullets.swiper-pagination-horizontal,
  #des.swiper-pagination-custom,
  #des.swiper-pagination-fraction {
    bottom: 0;
    top: var(--swiper-pagination-top, auto);
    left: 0;
  }

  #des .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2);
  }

  #des .swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: rgb(var(--color-blue));
  }

  #des .swiper-pagination-bullet-active::before {
    content: '';
    background: transparent;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgb(var(--color-blue));
    position: absolute;
    /* top: 3px; */
    left: 4px;
  } 

  .hero-mice,
  .hero-desc-mice {
    height: calc(60vh - 70px);
  }

  .bg-komitmen h2 {
    font-size: 38px;
    line-height: 44px;
  }
}

@media (max-width: 991px) {
  body {
    padding-top: 70px;
  }

  .hide-tablet {
    display: none;
  }

  .main-menu {
    gap: 15px;
  }

  .header-left,
  .header-right {
    width: 200px;
  }

  .header-center {
    width: calc(100% - 400px);
  }

  .hide-tablet {
    display: none;
  }

  h1 {
    font-size: 40px;
    line-height: 50px;
  }

  h5 {
    font-size: 20px;
    line-height: 31px;
  }

  .swiper-button-next {
    right: 20px;
    left: auto;
  }

  .swiper-button-prev {
    right: auto;
    left: 20px;
  }

  .logo {
    max-width: 150px;
  }

  .line-why {
    top: 200px;
  }

  .lists .moving-meta {
    left: 30px;
    right: -139px;
    bottom: 90px;
  }

  .hero-inner.tour,
  .hero-inner {
    aspect-ratio: 11 / 5;
  }

  .breadcrumb {
    margin-bottom: 30px;
  }

  .hero-inner.tour {
    margin-top: 0;
  }

  .counter-items {
    text-align: center;
    color: rgb(var(--color-white));
    max-width: 200px;
    width: 100%;
  }

  .counter-items .big-number {
    font-family: 'Helvetica Bold';
    font-size: 30px;
    line-height: 40px;
    text-align: center;
  }

  .counter-items p {
    font-size: 14px;
  }

  #map-location {
    height: 400px;
  }

  .header-sidebar {
    font-size: 20px;
    line-height: 24px;
  }

  .search-wrapper {
    padding: 30px 0;
  }

  .sticky-nav {
    top: 50px;
  }

  .small-nav-menu {
    gap: 40px;
  }

  .hero-mice {
    height: 100%;
  }

  .hero-desc-mice {
    height: 100%;
    display: flex;
    padding: 80px 0;
  }

  .box-form-mice {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-desc-mice h1 {
    font-size: 38px;
    line-height: 48px;
  }

  /* .hero-mice::before {
    width: 120%;
    height: 608px;
    bottom: -180px;
    left: -78px;
  } */

  #mice.swiper-button-next {
    right: -10px;
    left: auto;
  }

  #mice.swiper-button-prev {
    right: auto;
    left: -10px;
  }

  .sticky-infos {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    height: auto;
    z-index: 99;
    width: 100%;
    right: 0;
    padding: 20px;
    background-color: #f3f3f3;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .hero-mice,
  .hero-desc-mice {
    height: calc(80vh - 70px);
  }

  .footer.tour {
    padding-bottom: 175px;
  }
}

@media (max-width: 767px) {


  .mission-list li::before {
    content: '';
    width: 37px;
    height: 14px;
    background-image: url(../img/list-item.svg);
    background-size: 14px;
    background-repeat: no-repeat;
  }

  body {
    padding-top: 65px;
  }

  .tm-top {
    min-height: 0;
  }

  .hide-mobile {
    display: none;
  }

  .title-article {
    font-size: 20px;
    line-height: 28px;
  }

  .tour-name {
    font-size: 19px;
    line-height: 28px;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sticky-info.hide-desktop {
    position: relative;
    top: 0;
  }

  .header-left,
  .header-right {
    width: 140px;
  }

  .header-inner {
    justify-content: space-between;
  }

  .header-center {
    display: none;
  }

  .right-nav li:first-child {
    display: none;
  }

  .btn-search {
    width: 35px;
    height: 35px;
  }

  .footer-contact {
    background-size: cover;
    background-position: center right 30%;
  }

  .footer-bottom {
    padding: 10px 30px;
  }

  .search-result {
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .slider-hero .swiper-slide {
    aspect-ratio: 5 / 4;
  }

  h1 {
    font-size: 30px;
    line-height: 40px;
  }

  h2 {
    font-size: 28px;
    line-height: 36px;
  }

  h3 {
    font-size: 26px;
    line-height: 30px;
  }

  h4 {
    font-size: 19px;
    line-height: 24px;
  }

  h5 {
    font-size: 16px;
    line-height: 18px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 30px;
    height: 30px;
  }

  .swiper-button-next {
    right: 10px;
    left: auto;
  }

  .swiper-button-prev {
    right: auto;
    left: 10px;
  }

  .destination-wrapper {
    border-radius: 15px;
    padding: 10px;
    flex-wrap: wrap;
  }

  .select-wrapper,
  .button-wrapper {
    width: 100%;
  }

  .select-wrapper {
    padding-bottom: 10px;
  }

  .select-wrapper.border-end {
    border-right: 0 !important;
    border-bottom: 1px solid #dee2e6;
  }

  .btn-search-submit {
    width: 100%;
    border-radius: 10px;
    color: rgb(var(--color-white));
  }

  .cate-name {
    position: absolute;
    left: 20px;
    bottom: -20px;
    transition: all 150ms ease-in-out;
  }

  .logo-menu {
    max-width: 80%;
    display: inline-block;
  }

  .partner-list {
    padding: 50px 0 40px;
  }

  .footer-top {
    padding: 40px 0 40px;
  }

  .btn-util {
    flex: 1 1 auto !important;
  }

  .cate-name .text-xl {
    font-size: 20px;
    line-height: 30px;
  }

  .moving {
    gap: 5px;
  }

  .moving .lists.current {
    width: calc(60% - 5px);
    height: 300px;
  }

  .lists .moving-meta {
    left: 30px;
    right: -115px;
    bottom: 30px;
  }

  .moving .lists {
    width: calc(21% - 5px);
    background-size: cover;
    background-position: left;
    border-radius: 7px;
    height: 300px;
  }

  .lists.current .moving-meta {
    left: 20px;
    bottom: 20px;
  }

  .partner-item,
  .partner-items {
    width: calc(33.33% - 5px);
    aspect-ratio: 4 / 3;
    border-radius: 5px;
  }

  .partner-row {
    gap: 5px;
  }

  .line-why {
    display: none;
  }

  .why-meta {
    border-top: 1px solid rgba(0, 93, 154, .2);
  }

  .why-meta::before,
  .why-meta::after {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgb(var(--color-blue));
    position: absolute;
    content: '';
  }

  .why-meta::before {
    top: -5px;
    left: 0;
  }

  .why-meta::after {
    top: -5px;
    right: 0;
  }

  .hero-inner {
    aspect-ratio: 11 / 7;
  }

  .tour-meta .text-md {
    font-size: 13px;
  }

  .tour-meta .text-xs {
    font-size: 10px;
    line-height: 13px;
  }

  .tour-top .text-xs {
    font-size: 12px;
  }

  .arrow-link {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .title-tour {
    font-size: 14px;
    line-height: 20px;
  }

  /* .tm-top {
    height: 59px;
  } */

  .search-wrapper {
    padding: 30px 0;
  }

  .search-wrapper::before {
    height: 100px;
  }

  .hero-inner.tour {
    aspect-ratio: 11 / 7;
  }

  .breadcrumb {
    margin-bottom: 20px;
  }

  .hero-inner.tour {
    margin-top: 0px;
  }

  .row-counter {
    flex-wrap: wrap;
  }

  .counter-items {
    text-align: center;
    color: rgb(var(--color-white));
    max-width: 150px;
    width: 100%;
  }

  .counter-items .big-number {
    font-family: 'Helvetica Bold';
    font-size: 30px;
    line-height: 40px;
    text-align: center;
  }

  .counter-items p {
    font-size: 12px;
  }

  .box-contact-inner {
    margin-top: -80px;
  }

  .box-contact {
    padding: 30px;
  }

  .sides {
    z-index: 100;
    position: relative;
    top: 0;
  }

  #sidebase,
  #sidebase .nav-item {
    background: #F6F8FB;
    min-width: 100%;
    padding: 5px 10px;
  }

  #sidebase {
    left: -23px !important;
  }

  .sticky-nav {
    display: none;
  }

  .image-top-td {
    border-radius: 10px;
  }


  .gallery-wrapper {
    padding: 30px 0;
  }

  .counter {
    background-size: cover;
    background-position: center;
    padding: 80px 0;
  }

  .hero-desc-mice {
    height: 100%;
    display: flex;
    padding: 90px 0 90px;
  }

  .hero-desc-mice h1 {
    font-size: 30px;
    line-height: 40px;
  }

  .box-form-mice {
    max-width: 100%;
    padding: 30px;
  }

  .hero-mice,
  .hero-desc-mice {
    height: auto;
  }

  .bg-komitmen {
    border-radius: 10px;
    padding: 30px;
  }

  .bg-contact-mice {
    padding: 20px;
    background: #FFFFFF;
    border-radius: 10px;
  }

  #lists .swiper-pagination-bullet span {
    font-size: 10px;
       line-height: 12px;
  }

  
  .col-footer {
    max-width: 280px;
  }

  .col-footer-mice {
    max-width: 297px;
  }

  .image-tour {
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

  .table>:not(caption)>*>* {
    padding: 5px;
    color: rgb(var(--color-default));
    box-shadow: none;
    font-family: 'Helvetica Bold';
    font-size: 8px;
    line-height: 12px;
    text-align: center;
  }

  .box-status {
    padding: 5px 4px;
    border-radius: 6px;
    display: inline-block;
    min-width: 50px;
  }

  .logo-menu {
    max-width: 80%;
    display: inline-block;
  }

  .title-mice {
    font-size: 28px;
    line-height: 40px;
  }

  .bg-komitmen h2 {
    font-size: 25px;
    line-height: 40px;
  }

  /* .floating-wa {
    bottom: 10px;
    right: 10px;
    transform: scale(.7);
  } */

  .bg-komitmen::before {
    background-color: rgba(0, 93, 154, .5);
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 10px;
  }

  .w-full {
    width: 100%;
    display: block;
  }

  .list-gd {
    display: none;
  }

  .arrow-dok {
    position: relative;
    width: 100%;
    height: 40px;
  }

  .gallery-dokumentasi {
    margin-top: -60px;
  }
}

@media (min-width: 768px) {
  .btn-side,
  .arrow-dok {
    display: none;
  }
}

@media (max-width: 1000px) and (orientation: landscape) {

  .search-result,
  .nav-content {
    max-height: 30vh;
    overflow-y: auto;
    overflow-x: hidden;
  }
}

@media (max-width: 700px) and (orientation: landscape) {}



/* ==========================================================================
   Print styles.
   ========================================================================== */

@media print {

  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}