:root {
  --bs-light: #fefefe;
  --bs-gray: #f6f7f9;
  --bs-gray-dark: #DDDEE0;
  --bs-dark: #222222;
  --bs-dark-lighter: #2b2b2b;
  --bs-text-dark: #222222;
  /*--bs-dark: #0e121b;*/
  /*--bs-dark-lighter: #1a2232;*/
  /*--bs-text-dark: #0e121b;*/
  --bs-background: #fffcf5;
  --bs-primary: #E06C3B;
  --bs-primary-dark: #ce8b00;
  --bs-red: #c0392b;
  --bs-soft-primary: #FEEEBD;
  --bs-secondary: #25414C;
  --bs-secondary-dark: #e8e8e8;
  --bs-tertiary: #fcca46;
  --bs-tertiary-dark: #e2b63d;
  --bs-success: #2f9c95;
  --bs-info: #54a8c7;
  --bs-warning: #fab758;
  --bs-danger: #d00000;
  --bs-yellow: #ffcb47;
  --bs-body-color: #6A6A6A;
  --bs-light-rgb: 254, 254, 254;
  --bs-gray-rgb: 241, 241, 241;
  --bs-dark-rgb: 34, 34, 34;
  /*--bs-dark-rgb: 17, 22, 28;*/
  --bs-primary-rgb: 224, 108, 59;
  --bs-primary-dark-rgb: 206, 139, 0;
  --bs-secondary-rgb: 37, 65, 76;
  --bs-tertiary-rgb: 252, 202, 70;
  --bs-tertiary-dark-rgb: 226, 182, 61;
  --bs-success-rgb: 47, 156, 149;
  --bs-info-rgb: 84, 168, 199;
  --bs-warning-rgb: 250, 183, 88;
  --bs-danger-rgb: 208, 0, 0;
  --bs-link-color: #ce8b00;
  --bs-link-color-rgb: 206, 139, 0;
  --bs-link-hover-color: #dca54a;
  --bs-link-hover-color-rgb: 255, 204, 5;
  --bs-font-sans-serif: "Poppins", sans-serif;
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --bs-root-font-size: 20px;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 14px;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.75;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  word-spacing: unset;
  top: 0 !important;
}
::marker {
  color: var(--bs-text-dark);
}
.f-jakarta {
  font-family: "Plus Jakarta Sans", sans-serif;
}
.f-arizonia {
  font-family: "Arizonia", sans-serif;
}
.w-fit {
  width: fit-content;
}
.bg-utama {
  background: var(--bs-primary) !important;
}
.bg-kedua {
  background: var(--bs-secondary) !important;
}
.bg-merah {
  background: var(--bs-red) !important;
}
.bg-soft {
  background: var(--bs-soft-primary) !important;
}
.bg-putih {
  background: white !important;
}
.bg-hitam {
  background: black !important;
}
.bg-gray {
  background-color: #f9f9f9 !important;
}
.bg-danger-soft {
  background: rgba(var(--bs-danger-rgb), 0.05);
}
.text-utama {
  color: var(--bs-primary) !important;
}
.text-kedua {
  color: var(--bs-secondary) !important;
}
.text-soft {
  color: var(--bs-soft-primary);
}
.text-merah {
  color: var(--bs-red) !important;
}
.text-putih {
  color: white !important;
}
.text-hitam {
  color: black !important;
}
.text-primary-dark {
  color: var(--bs-primary-dark);
}
.text-light ::marker {
  color: white;
}
.text-success {
  --bs-text-opacity: 1;
  color: #2f9c95 !important;
}
.text-danger {
  --bs-text-opacity: 1;
  color: #d00000 !important;
}
.text-inverse {
  color: rgba(255, 255, 255, 0.75) !important;
}
.rounded-cta {
  border-radius: 20px;
}
@media (max-width: 768px) {
  .rounded-cta {
    border-radius: 0;
  }
}
.limit-text-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
            line-clamp: 2; 
    -webkit-box-orient: vertical;
}

.limit-text-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
            line-clamp: 3; 
    -webkit-box-orient: vertical;
}
.sparator {
    width: 100px;
    height: 1px;
    background: var(--bs-primary);
    position: relative;
    margin: 0 auto;
    margin-bottom: 20px;
}
.sparator .sparator-line {
    width: 30px;
    height: 5px;
    background: var(--bs-primary);
    position: absolute;
    left: 50%;
    top: -2px;
    margin-left: -15px;
}
.left-line {
    text-align: left;
}
.left-line .sparator {
    margin: 0;
    margin-bottom: 20px;
}
.left-line .sparator .sparator-line {
    margin-left: 0;
    left: 0;
}
.sparator-footer {
    width: 100px;
    height: 1px;
    background-color: #ffffff;
    position: relative;
    margin: 0;
}
.sparator-footer .sparator-footer-line {
    width: 30px;
    height: 4px;
    background-color: #ffffff;
    position: absolute;
    left: 0;
    top: -2px;
    margin-left: 0;
}
.desk ul {
    padding-left: 0 !important;
}
@media (max-width: 767.98px) {
    .lang-selector .dropdown-menu {
        position: absolute;
        top: 140%;
    }
}
.bg-dark.text-inverse a:not(.btn):not([class*="link-"]):hover,
.bg-navy.text-inverse a:not(.btn):not([class*="link-"]):hover,
.text-inverse a:not(.btn):hover,
[class*="offcanvas-"].text-inverse a:not(.btn):not([class*="link-"]):hover {
  color: rgba(255, 255, 255, 1) !important;
  border-color: transparent;
}
.navbar.navbar-light.fixed .btn:not(.btn-expand):not(.btn-gradient) {
  background: rgba(254, 238, 189, 0.15);
  border-color: var(--bs-primary);
  color: var(--bs-soft-primary);
}
b,
strong {
  font-weight: bolder;
  color: var(--bs-text-dark);
}
button.hamburger {
  color: var(--bs-primary);
}
.navbar-stick:not(.navbar-dark) button.hamburger {
  color: white;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--bs-text-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.25 !important;
  word-spacing: 0;
  letter-spacing: 0;
  margin-bottom: 1rem;
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1250px;
  }
}
.text-tertiary {
  color: var(--bs-tertiary) !important;
}
.text-dark {
  --bs-text-opacity: 1;
  color: var(--bs-text-dark) !important;
}
.bg-light-soft {
  background: rgba(255, 255, 255, 0.075);
  color: white;
}
.bg-primary-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(
    var(--bs-primary-dark-rgb),
    var(--bs-bg-opacity)
  ) !important;
}
.bg-primary-soft {
  background: rgba(var(--bs-primary-rgb), 0.075);
  color: var(--bs-primary);
}
.form-label {
  margin-bottom: 0.5rem;
  color: var(--bs-text-dark);
  font-weight: 500;
}
.form-control {
  font-size: 14px;
  font-weight: 400;
  box-shadow: none;
  padding: 10px 20px;
  line-height: 1.5;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.005);
  color: var(--bs-text-dark) !important;
  border-color: rgba(0, 0, 0, 0.2);
}
.form-control:focus {
  border-color: var(--bs-primary);
  background-color: transparent !important;
}
.form-control::placeholder {
  color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}
.form-floating > label {
  font-size: 12px;
  height: auto;
  padding: 0.75rem 1rem;
}
.form-select {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--bs-text-dark);
  border-radius: 5px;
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.2);
}
.form-select:focus {
  border-color: var(--bs-primary);
}
header {
  position: absolute;
  width: 100%;
}
.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0;
  --bs-navbar-color: white;
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  --bs-navbar-disabled-color: rgba(52, 63, 82, 0.3);
  --bs-navbar-active-color: rgba(255, 255, 255, 0.75);
  --bs-navbar-brand-padding-y: 10px;
  --bs-navbar-brand-margin-end: 0;
  --bs-navbar-brand-font-size: 0.7rem;
  --bs-navbar-brand-color: var(--bs-primary);
  --bs-navbar-brand-hover-color: var(--bs-primary);
  --bs-navbar-nav-link-padding-x: 0.75rem;
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 1rem;
  --bs-navbar-toggler-icon-bg: url(
    data:image/svg + xml,
    %3csvgversion="1.1"xmlns="http://www.w3.org/2000/svg"width="45"height="32"viewBox="0 0 45 32"%3e%3cpathfill="%233f78e0"d="M26.88 29.888c-1.076 1.289-2.683 2.103-4.48 2.103s-3.404-0.814-4.472-2.093l-0.008-0.009-5.12-7.040-8.192-10.048-3.52-4.608c-0.646-0.848-1.036-1.922-1.036-3.087 0-2.828 2.292-5.12 5.12-5.12 0.139 0 0.277 0.006 0.413 0.016l-0.018-0.001h33.664c0.118-0.010 0.256-0.015 0.396-0.015 2.828 0 5.12 2.292 5.12 5.12 0 1.165-0.389 2.239-1.045 3.1l0.009-0.013-3.52 4.608-7.872 10.048z"/%3e%3c/svg%3e
  );
  --bs-navbar-toggler-border-color: transparent;
  --bs-navbar-toggler-border-radius: 0.4rem;
  --bs-navbar-toggler-focus-width: 0.25rem;
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
  font-family: "Poppins", sans-serif;
}
.navbar.custom-dark {
  --bs-navbar-color: var(--bs-text-dark);
  --bs-navbar-hover-color: var(--bs-text-dark);
  --bs-navbar-disabled-color: rgba(52, 63, 82, 0.3);
  --bs-navbar-active-color: var(--bs-text-dark);
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}
.navbar.custom-dark .lang-selector button {
  background: rgba(254, 238, 189, 0.05);
  color: white;
}
.navbar.custom-dark button.hamburger {
  color: var(--bs-text-dark);
}
.offcanvas-backdrop {
  background-color: rgba(0, 0, 0, 0.7);
}
.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 1rem;
  --bs-nav-link-font-size: 14px;
  --bs-nav-link-font-weight: 500;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-stick:not(.navbar-dark) {
  --bs-navbar-color: black;
  --bs-navbar-hover-color: black;
  background: var(--bs-secondary);
  padding-top: 0 !important;
}
.nav-link {
  --bs-nav-link-font-weight: 600;
  letter-spacing: 0 !important;
  display: flex;
  align-items: center;
  gap: 2.5px;
  transition: none;
  border-radius: 0px;
  border-bottom: 1px solid transparent;
}
@media (min-width: 992px) {
  .nav-link:focus,
  .nav-link:hover {
    color: var(--bs-primary);
    border-bottom-color: var(--bs-primary);
  }
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--bs-primary);
  border-bottom-color: var(--bs-primary);
}
.navbar-light .language-select .dropdown-toggle:after {
  color: inherit;
  line-height: 1;
  top: 0;
  font-size: 18px;
}
.nav-link.border-transparent-hover:hover {
  border-color: transparent !important;
}
.nav-link .nav-link-icon {
  line-height: 1 !important;
  opacity: 0;
  transition: 0.2s;
}
.nav-link:focus .nav-link-icon,
.nav-link:hover .nav-link-icon {
  opacity: 1;
}
@media (min-width: 992px) {
  .navbar-expand-lg[class*="navbar-bg-"]:not(.fancy):not(.extended):not(.fixed)
    .navbar-collapse
    .nav-link:not(.no-padding) {
    padding: 0.25rem 0.25rem !important;
    margin: 0.75rem 0.5rem !important;
  }
  .navbar-expand-lg .navbar-nav .nav-link:not(.no-padding) {
    padding: 0.25rem 0.25rem !important;
    margin: 0.75rem 0.5rem !important;
  }
}
.navbar .navbar-other .nav-item .nav-link > svg {
  height: 1.3rem;
}
@media (max-width: 991.98px) {
  .navbar-expand-lg .navbar-other .nav-item.language-select .nav-link {
    font-size: 14px;
  }
}
button.hamburger {
  align-items: end;
}
button.hamburger span,
button.hamburger:after,
button.hamburger:before {
  height: 0.1rem;
  width: 1.75rem;
}
.dropdown-item {
  font-weight: 500;
  letter-spacing: 0;
  font-size: 13px;
  color: var(--bs-text-dark);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.dropdown-item:hover {
  background: rgba(0, 0, 0, 0.025);
}
.dropdown-toggle::after {
  font-weight: 200 !important;
}
.offcanvas {
  --bs-offcanvas-width: 18rem;
  background-color: none;
  background: var(--bs-soft-primary);
}
.offcanvas.offcanvas-desktop {
  --bs-offcanvas-width: 20rem;
}
.offcanvas .ornament-1 {
  visibility: hidden;
  display: none;
}
.offcanvas .ornament-2 {
  visibility: hidden;
  display: none;
}
.navbar .btn-group-sm > .btn,
.navbar .btn-sm {
  font-size: 14px;
}
@media (min-width: 992px) {
  .navbar-expand-lg.extended .navbar-collapse-wrapper,
  .navbar-expand-lg.fancy .navbar-collapse-wrapper {
    border-radius: 100px;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg.fancy:not(.fixed) .navbar-collapse-wrapper {
    padding: 0 0.75rem 0 0.75rem;
  }
}
li > p {
  margin-bottom: 0.5rem;
}
.btn {
  --bs-btn-padding-x: 1.2rem;
  --bs-btn-padding-y: 0.3rem;
  --bs-btn-font-size: 14px;
  --bs-btn-font-weight: 500;
  --bs-btn-line-height: 1.7;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: 1px;
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: 0.4rem;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: unset;
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem
    rgba(var(--bs-btn-focus-shadow-rgb), 0.5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  box-shadow: var(--bs-btn-box-shadow);
  transition: none;
}
.btn:not(.btn-link):hover {
  transform: unset;
  box-shadow: none;
}
.btn-group-sm > .btn,
.btn-sm {
  --bs-btn-padding-y: 0.3rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 13px;
  --bs-btn-border-radius: 0.4rem;
}
.btn.btn-topbar {
  --bs-btn-font-size: 12px;
  --bs-btn-padding-y: 2px;
  --bs-btn-padding-x: 20px;
}
.btn-secondary {
  --bs-btn-color: var(--bs-dark);
  --bs-btn-bg: var(--bs-secondary);
  --bs-btn-border-color: var(--bs-secondary);
  --bs-btn-hover-color: var(--bs-dark);
  --bs-btn-hover-bg: var(--bs-secondary-dark);
  --bs-btn-hover-border-color: var(--bs-secondary-dark);
  --bs-btn-focus-shadow-rgb: 152, 159, 172;
  --bs-btn-active-color: var(--bs-dark);
  --bs-btn-active-bg: var(--bs-secondary);
  --bs-btn-active-border-color: var(--bs-secondary);
  --bs-btn-active-shadow: 0rem 0.25rem 0.75rem rgba(30, 34, 40, 0.15);
  --bs-btn-disabled-color: var(--bs-dark);
  --bs-btn-disabled-bg: var(--bs-secondary);
  --bs-btn-disabled-border-color: var(--bs-secondary);
}
.btn-outline-primary {
  --bs-btn-color: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: white;
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-focus-shadow-rgb: 170, 176, 188;
  --bs-btn-active-color: white;
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
  --bs-btn-active-shadow: 0rem 0.25rem 0.75rem rgba(30, 34, 40, 0.15);
  --bs-btn-disabled-color: var(--bs-primary);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--bs-primary);
  --bs-gradient: none;
}
.btn-outline-secondary {
  --bs-btn-color: var(--bs-secondary);
  --bs-btn-border-color: var(--bs-secondary);
  --bs-btn-hover-color: white;
  --bs-btn-hover-bg: var(--bs-secondary);
  --bs-btn-hover-border-color: var(--bs-secondary);
  --bs-btn-focus-shadow-rgb: 170, 176, 188;
  --bs-btn-active-color: white;
  --bs-btn-active-bg: var(--bs-secondary);
  --bs-btn-active-border-color: var(--bs-secondary);
  --bs-btn-active-shadow: 0rem 0.25rem 0.75rem rgba(30, 34, 40, 0.15);
  --bs-btn-disabled-color: var(--bs-secondary);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--bs-secondary);
  --bs-gradient: none;
}
.btn-outline-dark {
  --bs-btn-color: var(--bs-dark);
  --bs-btn-border-color: var(--bs-dark);
  --bs-btn-hover-color: white;
  --bs-btn-hover-bg: var(--bs-dark);
  --bs-btn-hover-border-color: var(--bs-dark);
  --bs-btn-focus-shadow-rgb: 170, 176, 188;
  --bs-btn-active-color: white;
  --bs-btn-active-bg: var(--bs-dark);
  --bs-btn-active-border-color: var(--bs-dark);
  --bs-btn-active-shadow: 0rem 0.25rem 0.75rem rgba(30, 34, 40, 0.15);
  --bs-btn-disabled-color: var(--bs-dark);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--bs-dark);
  --bs-gradient: none;
}
.btn-outline-light {
  --bs-btn-color: white;
  --bs-btn-border-color: white;
  --bs-btn-hover-color: var(--bs-dark);
  --bs-btn-hover-bg: white;
  --bs-btn-hover-border-color: white;
  --bs-btn-focus-shadow-rgb: 170, 176, 188;
  --bs-btn-active-color: var(--bs-dark);
  --bs-btn-active-bg: white;
  --bs-btn-active-border-color: white;
  --bs-btn-active-shadow: 0rem 0.25rem 0.75rem rgba(30, 34, 40, 0.15);
  --bs-btn-disabled-color: white;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: white;
  --bs-gradient: none;
}
.btn-light {
  --bs-btn-bg: white;
  --bs-btn-border-color: white;
  --bs-btn-hover-bg: #e9e9e9;
  --bs-btn-hover-border-color: #e9e9e9;
  --bs-btn-active-bg: #e9e9e9;
  --bs-btn-active-border-color: #e9e9e9;
  --bs-btn-color: var(--bs-primary);
  --bs-btn-hover-color: var(--bs-primary);
  --bs-btn-active-color: var(--bs-primary);
}
.btn-primary-2 {
  --bs-btn-bg: rgba(254, 238, 189, .5);
  --bs-btn-border-color: rgba(254, 238, 189, .5);
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
  --bs-btn-color: var(--bs-text-dark);
  --bs-btn-hover-color: var(--bs-text-dark);
  --bs-btn-active-color: var(--bs-text-dark);
}
.btn-primary {
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: var(--bs-primary-dark);
  --bs-btn-hover-border-color: var(--bs-primary-dark);
  --bs-btn-active-bg: var(--bs-primary-dark);
  --bs-btn-active-border-color: var(--bs-primary-dark);
  --bs-btn-color: var(--bs-text-dark);
  --bs-btn-hover-color: var(--bs-text-dark);
  --bs-btn-active-color: var(--bs-text-dark);
}
.btn-red {
  --bs-btn-bg: var(--bs-red);
  --bs-btn-border-color: var(--bs-red);
  --bs-btn-hover-bg: var(--bs-white);
  --bs-btn-hover-border-color: var(--bs-red);
  --bs-btn-active-bg: var(--bs-red);
  --bs-btn-active-border-color: var(--bs-red);
  --bs-btn-color: white;
  --bs-btn-hover-color: var(--bs-red);
  --bs-btn-active-color: var(--bs-text-dark);
}
.btn-gray {
  --bs-btn-bg: var(--bs-gray);
  --bs-btn-border-color: var(--bs-gray);
  --bs-btn-hover-bg: var(--bs-gray-dark);
  --bs-btn-hover-border-color: var(--bs-gray-dark);
  --bs-btn-active-bg: var(--bs-gray-dark);
  --bs-btn-active-border-color: var(--bs-gray-dark);
  --bs-btn-color: var(--bs-text-dark);
  --bs-btn-hover-color: var(--bs-text-dark);
  --bs-btn-active-color: var(--bs-text-dark);
}
.btn-tertiary {
  --bs-btn-bg: var(--bs-tertiary);
  --bs-btn-border-color: var(--bs-tertiary);
  --bs-btn-hover-bg: var(--bs-tertiary-dark);
  --bs-btn-hover-border-color: var(--bs-tertiary-dark);
  --bs-btn-active-bg: var(--bs-tertiary-dark);
  --bs-btn-active-border-color: var(--bs-tertiary-dark);
  --bs-btn-color: var(--bs-white);
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-active-color: var(--bs-white);
}
.btn-dark {
  --bs-btn-bg: var(--bs-dark);
  --bs-btn-border-color: var(--bs-dark);
  --bs-btn-hover-bg: var(--bs-dark);
  --bs-btn-hover-border-color: var(--bs-dark);
  --bs-btn-active-bg: var(--bs-dark);
  --bs-btn-active-border-color: var(--bs-dark);
  --bs-btn-color: var(--bs-white);
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-active-color: var(--bs-white);
}
.bg-dark-lighter {
  background: var(--bs-dark-lighter);
}
.table-dark {
  --bs-table-color: #fff;
  --bs-table-bg: var(--bs-dark);
  --bs-table-border-color: var(--bs-dark);
  --bs-table-striped-bg: var(--bs-dark);
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: var(--bs-dark);
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: var(--bs-dark);
  --bs-table-hover-color: #fff;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
.home-slider {
  height: 800px !important;
}
.home-slider .slider-home {
  height: 100%;
  width: 100%;
}
.home-slider .slider-home .slider-home-item {
  height: 100%;
  position: relative;
}
.home-slider .slider-home .slider-home-item .background {
  position: absolute;
  inset: 0;
}
.home-slider .slider-home .slider-home-item .background:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);
}
.home-slider .slider-home .slider-home-item .background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-slider .slider-home .slider-home-item .container .sup-title {
  color: rgba(255, 255, 255, 0.75);
}
.home-slider .slider-home .slider-home-item .container .title {
  color: white;
  font-weight: 600;
  font-size: 30px;
}
.home-slider .slider-home .slider-home-item .container .description {
  color: white;
  margin: 0;
  font-size: 17px;
}
.home-slider .slider-home .swiper-pagination {
  right: 0;
  top: 0;
  left: auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  gap: 10px;
}
.home-slider .slider-home .swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  height: 40px;
  border-radius: 10px 0 0 10px;
  width: 35px;
  line-height: 1;
  font-weight: 600;
  opacity: 1;
  color: white;
  transition: 0.3s;
}
.home-slider
  .slider-home
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--bs-primary);
  color: white;
  width: 50px;
}
.home-slider .slider-home .slider-home-item .animate-zoom img {
  animation: animatedBackground 20s linear infinite alternate;
}
@keyframes animatedBackground {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
.table > :not(caption) > * > * {
  padding: 0.5rem;
}
.content-meta-header {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}
.content-meta-header .meta-item {
  background: rgba(255, 255, 255, 0.25);
  padding: 0 20px;
  border-left: 3px solid rgba(var(--bs-primary-rgb), 1);
}
.content-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.bullet-divider {
  display: block;
  height: 4px;
  width: 4px;
  min-width: 4px;
  background: var(--bs-body-color);
  border-radius: 50%;
  opacity: 0.5;
}
.share-buttons-wrapper {
  display: flex;
  gap: 7.5px;
  align-items: center;
}
.btn-share {
  border-radius: 0 !important;
  background: rgba(var(--bs-dark-rgb), 0.1) !important;
  color: rgba(var(--bs-dark-rgb), 0.75);
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 18px;
  padding: 0 7.5px;
  border-bottom: 2px solid transparent;
}
.btn-share:hover {
  background: rgba(var(--bs-dark-rgb), 0.75) !important;
  color: white;
}
.sticky-checkout {
  position: sticky; 
  top: 80px;
}
.sticky-top {
  z-index: 1000;
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .sticky-lg-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1000;
  }
}
blockquote {
  font-size: inherit;
  padding: 15px;
  font-style: italic;
  /* background: rgba(0, 0, 0, 0.025); */
  color: var(--bs-text-dark);
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.pagination {
  gap: 10px;
  box-shadow: none;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination .page-link {
  width: 2rem;
  height: 2rem;
  font-size: 0.65rem;
  font-weight: 500;
  transition: none;
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: 5px !important;
  border: 0;
  background: rgba(0, 0, 0, 0.05);
}
.active > .page-link,
.page-link.active,
.pagination .page-link:hover {
  z-index: 3;
  color: var(--bs-text-dark);
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}
.disabled > .page-link {
  z-index: 3;
  color: rgba(0, 0, 0, 0.4);
  background-color: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.05);
}
hr {
  margin: 1.5rem 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0 0;
  margin-bottom: 0;
  list-style: none;
  background-color: transparent;
  width: 100%;
  padding: 0;
  line-height: 1;
  font-size: 13px;
}
.breadcrumb-item {
  text-transform: capitalize;
  font-weight: 400;
  color: white;
  line-height: 1.75;
  align-items: start;
}
.breadcrumb-item span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.breadcrumb-item a {
  color: inherit;
  text-wrap: nowrap;
}
.breadcrumb.light .breadcrumb-item {
  color: var(--bs-secondary);
}
.breadcrumb.light .breadcrumb-item.active {
  color: rgba(var(--bs-secondary-rgb), 0.5);
}
.breadcrumb.light .breadcrumb-item a:hover {
  color: rgba(var(--bs-secondary-rgb), 0.5) !important;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "/" !important;
  font-size: inherit;
  margin-top: 0;
  font-family: inherit;
  font-weight: 400;
  display: flex;
  align-items: center;
  padding-right: 0.5rem;
  color: inherit;
}
.breadcrumb.dark .breadcrumb-item {
  color: var(--bs-text-dark);
  font-weight: 400;
}
.breadcrumb.dark .breadcrumb-item + .breadcrumb-item::before {
  font-family: inherit;
  font-weight: 400;
  display: flex;
  align-items: center;
  padding-right: 0.5rem;
  content: "/" !important;
  color: var(--bs-text-dark);
}
.goverlay {
  background: rgba(0, 0, 0, 0.75);
}
.glightbox-clean .gprev:before {
  content: "\e92e";
}
.glightbox-clean .gnext:before {
  content: "\e930";
}
tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: inherit;
  border-style: solid;
  border-width: 1px;
  padding: 5px;
}
.hover-underline.dark {
  border-bottom: 1px solid transparent;
  width: fit-content;
  padding-bottom: 1px;
  transition: none;
}
.hover-underline.dark:hover {
  text-decoration: underline;
}
.hover-underline.light {
  border-bottom: 1px solid transparent;
  width: fit-content;
  padding-bottom: 1px;
}
.hover-underline.light:hover {
  border-color: white;
}
.link-with-icon i {
  opacity: 0;
}
.link-with-icon:hover i {
  opacity: 1;
}
footer .ornament-1 {
  position: absolute;
  bottom: 0;
  width: 400px;
  left: 0;
}
footer .ornament-1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.1;
  filter: drop-shadow(1px 0 4rem var(--bs-primary));
}
footer .ornament-2 {
  position: absolute;
  top: 0;
  width: 300px;
  right: 0;
  rotate: 180deg;
}
footer .ornament-2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.1;
  filter: drop-shadow(0 0 2rem var(--bs-primary));
}
.lh-1 {
  line-height: 1 !important;
}
.lh-1-25 {
  line-height: 1.25 !important;
}
.content-img {
  position: relative;
}
.content-img::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 20%;
  height: 8px;
  width: 60%;
  background: var(--bs-primary);
}
.content-img img {
  height: auto;
  width: 100%;
}
.section-sup-title {
  padding: 5px 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  display: flex;
  width: fit-content;
  font-size: 13px;
  color: var(--bs-dark);
  position: relative;
  align-items: center;
  font-weight: 500;
}
.section-title {
  color: var(--bs-dark);
  font-weight: 700;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 15px;
}
.section-title.light {
  color: white;
}
.section-title span {
  color: var(--bs-primary);
}
.section-title-divider {
  width: 40%;
  height: 5px;
  background: var(--bs-primary);
  margin: auto;
  margin-bottom: 30px;
}
.hero-section-custom {
  position: relative;
  color: white;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}
.hero-section-custom .background-image {
  position: absolute;
  inset: 0;
}
.hero-section-custom .background-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.hero-section-custom .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.75));
}
.hero-section-custom .sup-title {
  color: white;
  margin-bottom: 10px;
  display: block;
}
.hero-section-custom .title {
  color: white;
  font-size: 35px;
  line-height: 1.25 !important;
  font-weight: 600;
}
.search-form-header {
  position: relative;
  transform: translateY(-50%);
  z-index: 1;
}
.search-form-wrapper {
  padding: 10px 10px 10px 30px;
  background: white;
  border-radius: 100px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.search-form-wrapper p {
  text-wrap: nowrap;
  font-weight: 600;
  color: var(--bs-text-dark);
  margin: 0;
}
.search-form-wrapper .form-custom {
  font-size: 14px;
  border-radius: 40px;
  padding: 7.5px 20px;
  font-weight: 400;
  background: rgba(0, 0, 0, 0.05);
}
.search-form-wrapper .btn-search {
  background: var(--bs-primary);
  color: var(--bs-text-dark);
  border: none;
  padding: 7.5px 30px;
  border-radius: 30px;
  text-wrap: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-form-wrapper .btn-search:hover {
  background: var(--bs-primary-dark);
}
.tab-group .tab-panel.hidden {
  display: none;
}
.tab-group.hero {
  width: 100%;
  height: 700px;
  overflow: hidden;
}
.tab-group.hero .tab-panel {
  height: 100%;
  width: 100%;
  position: relative;
}
.btn-see-all-image {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 12px;
    padding: 2.5px 10px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 2px solid white;
    backdrop-filter: blur(3px);
    transition: none;
}
.btn-see-all-image:hover {
  background: rgba(0, 0, 0, 0.4);
}
.book-cta-wrapper {
  padding: 20px 20px 15px;
  background: white;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
}
.book-cta-wrapper .spesial-offer-text {
  position: absolute;
  top: 0;
  left: 20px;
  line-height: 1;
  transform: translateY(-50%);
  padding: 5px;
  background: var(--bs-danger);
  border-radius: 5px;
  font-size: 11px;
  color: white;
}
.inclusion-list-item {
  display: flex;
  align-items: start;
  gap: 15px;
}
.inclusion-list-item .icon {
  width: 25px;
  height: 25px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  flex: 0 0 auto;
}
.inclusion-list-item.success .icon {
  background: rgba(var(--bs-success-rgb), 0.2);
  color: var(--bs-success);
}
.inclusion-list-item.danger .icon {
  background: rgba(var(--bs-danger-rgb), 0.2);
  color: var(--bs-danger);
}
.mobileGallerySwiper .mobile-gallery-item a {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.mobileGallerySwiper .mobile-gallery-item a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mobileGallerySwiperWrapper .btn-see-all-image {
    height: fit-content !important;
    aspect-ratio: unset !important;
    z-index: 1;
}
.mobileGallerySwiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5) !important;
  opacity: 1;
}
.mobileGallerySwiper .swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 1) !important;
  opacity: 1;
}
.sort-menu {
  padding: 10px;
  font-size: 12px;
  line-height: normal;
}
.sort-menu .dropdown-item {
  padding: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.sort-menu li:last-child .dropdown-item {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.sort-menu .dropdown-item .form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
}
.sort-menu .dropdown-item .form-check .form-check-input {
  margin: 0;
}
.sort-menu .form-check-input:checked {
  background-color: var(--bs-dark);
  border-color: var(--bs-dark);
}
.cta-section {
  background: var(--bs-primary-dark);
}
.cta-ornament-1 {
  display: flex;
  justify-content: center;
  height: 600px;
  margin-bottom: -225px;
  transform: translateY(-225px);
}
.cta-ornament-1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section-background-image .background-image {
  position: absolute;
  inset: 0;
}
.section-background-image .background-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.section-background-image .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.section-background-image .overlay.dark {
  background: rgba(var(--bs-dark-rgb), 0.9);
}
.contact-section-wrapper {
  overflow: hidden;
}
.contact-section-wrapper img {
  border-radius: 20px;
}
.contact-form-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 60px;
}
.post-sidebar-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  border-radius: 15px;
}
.post-sidebar-item.with-border {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0;
  padding: 20px 0;
}
.post-sidebar-item.popular {
  padding: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0;
}
.post-sidebar-item .numbering {
  font-size: 14px;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  margin: 0;
  background: rgba(0, 0, 0, 0.035);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  color: var(--bs-dark);
}
.post-sidebar-item .thumbnail {
  width: 75px;
  height: 75px;
  flex: 0 0 auto;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.post-sidebar-item .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-sidebar-item .details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.post-sidebar-item .details .title {
  font-weight: 600;
  line-height: 1.5;
  color: var(--bs-dark);
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.post-sidebar-item .details .title:hover {
  text-decoration: underline;
}
.post-sidebar-item.popular .details .title {
  font-weight: 400;
}
.post-sidebar-item .details .description {
  font-size: 12px;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.post-sidebar-item .details .author {
  margin: 0;
  font-size: 10px;
  color: var(--bs-dark);
  padding: 2px 15px;
  background: rgba(var(--bs-dark-rgb), 0.05);
  border-radius: 10px;
}
.post-sidebar-item .details .date {
  margin: 0;
  font-size: 10px;
  color: rgba(0, 0, 0, 0.5);
}
.dropdown-toggle:after {
  font-size: inherit;
}
.dropdown-menu {
  --bs-dropdown-font-size: 14px;
  --bs-dropdown-min-width: 5rem;
  --bs-dropdown-item-padding-x: 2rem;
  --bs-dropdown-item-padding-y: 10px;
  --bs-dropdown-border-radius: 10px;
  --bs-dropdown-padding-y: 0;
}
@media (min-width: 992px) {
  .navbar-expand-lg.navbar-light
    .dropdown:not(.dropdown-submenu)
    > .dropdown-toggle:after {
    color: inherit;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg:not(.hover-none) .navbar-nav .dropdown-menu {
    top: 130%;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg:not(.hover-none)
    .navbar-nav
    .dropdown:not(.dropdown-submenu):hover
    > .dropdown-menu {
    top: 130%;
    border-radius: 10px;
    padding: 0;
  }
}
.contact-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 99;
  display: flex;
  gap: 10px;
}
.btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 30px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
.btn-whatsapp-pulse:hover {
  color: white !important;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.75);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
.rise-shake {
  animation: jump-shaking 0.83s infinite;
}
@keyframes jump-shaking {
  0% {
    transform: translateX(0);
  }
  35% {
    transform: rotate(17deg);
  }
  55% {
    transform: rotate(-17deg);
  }
  65% {
    transform: rotate(17deg);
  }
  75% {
    transform: rotate(-17deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.reset-desc img {
  max-width: 100%;
}
.content-title {
  border-bottom: 1px solid var(--bs-text-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content-title svg {
  height: 30px;
}
.content-title svg path {
  fill: var(--bs-text-dark);
  color: var(--bs-text-dark);
}
.content-body {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.015);
  padding: 20px;
}
.content-sidebar {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.015);
  padding: 20px;
}
.post-header-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.post-header-item .thumbnail {
  aspect-ratio: 4 / 3;
  width: 100%;
  flex: 0 0 auto;
  position: relative;
}
.post-header-item .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-header-item .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 5px;
  padding: 30px;
  background: linear-gradient(45deg, var(--bs-primary), transparent 60%);
}
.post-header-item .content .title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  color: white;
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.post-header-item .content .title:hover {
  text-decoration: underline;
}
.post-header-sidebar-item.popular .details .title {
  font-weight: 400;
}
.post-header-item .content .description {
  font-size: 12px;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.post-header-item .content .author {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: white;
}
.post-header-item .content .date {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}
.post-header-sidebar-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 10px;
  border-radius: 15px;
}
.post-header-sidebar-item.with-border {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0;
  padding: 20px 0;
}
.post-header-sidebar-item .thumbnail {
  aspect-ratio: 4 / 3;
  height: 75px;
  flex: 0 0 auto;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.post-header-sidebar-item .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-header-sidebar-item .details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.post-header-sidebar-item .details .title {
  font-weight: 600;
  line-height: 1.5;
  color: var(--bs-dark);
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.post-header-sidebar-item .details .title:hover {
  text-decoration: underline;
}
.post-header-sidebar-item.popular .details .title {
  font-weight: 400;
}
.post-header-sidebar-item .details .description {
  font-size: 12px;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.post-header-sidebar-item .details .author {
  margin: 0;
  font-size: 10px;
  color: var(--bs-primary);
  padding: 2px 15px;
  background: rgba(var(--bs-primary-rgb), 0.05);
  border-radius: 10px;
}
.post-header-sidebar-item .details .date {
  margin: 0;
  font-size: 10px;
  color: rgba(0, 0, 0, 0.5);
}
.post-main-item {
  display: flex;
  align-items: center;
  gap: 35px;
  background: white;
  padding: 10px;
  border-radius: 15px;
}
.post-main-item.with-border {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0;
  padding: 20px 0;
}
.post-main-item.popular {
  padding: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0;
}
.post-main-item .numbering {
  font-size: 14px;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  margin: 0;
  background: rgba(0, 0, 0, 0.035);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  color: var(--bs-dark);
}
.post-main-item .thumbnail {
  height: 200px;
  flex: 0 0 auto;
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
}
.post-main-item .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-main-item .details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.post-main-item .details .title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: var(--bs-dark);
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.post-main-item .details .title:hover {
  text-decoration: underline;
}
.post-main-item.popular .details .title {
  font-weight: 400;
}
.post-main-item .details .description {
  font-size: 13px;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.post-main-item .details .author {
  margin: 0;
  font-size: 13px;
  color: var(--bs-primary);
  padding: 2px 15px;
  background: rgba(var(--bs-primary-rgb), 0.05);
  border-radius: 10px;
}
.post-main-item .details .date {
  margin: 0;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}
.hero-bg-image-custom .hero-bg-image {
  position: absolute;
  inset: 0;
}
.hero-bg-image-custom .hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg-image-custom .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    var(--bs-primary) 15%,
    rgba(var(--bs-primary-rgb), 0.5)
  );
}
.overlay-loading {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(2px);
  color: white;
}
.tooltip-container {
  position: relative;
}
.tooltip-content {
  visibility: hidden;
  background-color: var(--bs-primary);
  font-size: 12px;
  color: #fff !important;
  padding: 6px 10px;
  border-radius: 5px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(130%);
  line-height: 1.25;
  opacity: 0;
  transition: opacity 0.2s ease;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.tooltip-content .arrow-up {
  top: 0;
  transform: translateY(calc(-100% + 2px));
  position: absolute;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--bs-primary);
}
.tooltip-container.active .tooltip-content {
  visibility: visible;
  opacity: 1;
}
.menu-header {
  display: flex;
  align-items: center;
  margin-left: 50px;
  gap: 20px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}
.menu-header a {
  color: var(--bs-text-dark);
  font-weight: 700;
  text-wrap: nowrap;
}
.progress-wrap:after {
  content: "\e932";
  font-size: 1.5rem;
}
.logo-wrapper {
  position: relative;
  display: flex;
  flex: 0 0 auto;
}
.logo-wrapper .svg-side {
  position: absolute;
  height: 80% !important;
  width: fit-content !important;
  right: -2px;
  top: 10%;
}
.logo-wrapper .svg-side.primary > * {
  fill: var(--bs-primary);
}
.logo-wrapper .svg-side.gray > * {
  fill: rgba(var(--bs-gray-rgb), 1);
}
.logo-wrapper .dark-body {
  position: relative;
  background: var(--bs-dark);
  padding: 10px 30px;
  height: 100%;
  display: flex;
  align-items: center;
}
.logo-wrapper .dark-body svg {
  height: fit-content;
  width: 60%;
  position: absolute;
}
.logo-wrapper .dark-body .top-svg {
  top: -1px;
  left: 0;
  transform: translateX(40%);
}
.logo-wrapper .dark-body .top-svg > * {
  fill: white;
}
.logo-wrapper .dark-body .bottom-svg {
  bottom: -1px;
  left: 0;
  transform: translateX(-40%);
  rotate: 180deg;
}
.logo-wrapper .dark-body .bottom-svg > * {
  fill: white;
}
.logo-wrapper .logo {
  height: 30px !important;
}
.logo-wrapper .primary-body {
  position: relative;
  background: var(--bs-primary);
  width: 30px;
  height: 100%;
}
.header-search {
  display: flex;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.02);
  padding: 3px;
  padding-left: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media (min-width: 1200px) {
  .header-search {
    border-radius: 999px;
  }
}
.header-search .inner-group {
  padding-right: 0px;
  flex-wrap: nowrap;
  display: flex;
  gap: 20px;
  flex-grow: 1;
}
.header-search .inner-group .form-style {
  width: 100%;
}
.header-search .inner-group .form-style .form-control {
  color: var(--bs-text-primary);
  font-weight: 500;
  line-height: 1;
  font-size: 14px;
  padding-right: 45px;
  border-radius: 0;
  border: 0;
  height: 100%;
  background: transparent;
  padding: 6px;
  box-shadow: none !important;
}
.header-search .inner-group .form-style .form-control::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.header-search .btn-wrapper {
  display: flex;
  gap: 10px;
}
.header-search .btn-search {
  min-height: 30px;
  text-wrap: nowrap;
}
.header-search .btn-search {
  background-color: var(--bs-primary);
  color: white;
  border: none !important;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: unset;
  min-height: unset;
  gap: 8px;
  padding: 5px 20px;
  border-radius: 9999px;
  border: 1px solid;
  transition: none;
}
.header-search .btn-search:hover {
  background-color: var(--bs-primary-dark);
}
.header-search .btn-search .icon {
  color: #ffffff;
}
.header-search .btn-search .icon {
  font-size: 13px;
  flex-shrink: 0;
}
.article-item {
  position: relative;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  transition: 0.2s all ease;
}
.article-item .thumbnail {
  aspect-ratio: 3 / 4;
  display: block;
  overflow: hidden;
  position: relative;
}
.article-item .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s all ease;
}
.article-item:hover .thumbnail img {
  transform: scale(1.1);
}
.article-item .thumbnail span {
  background: var(--bs-primary);
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  padding: 2px 20px;
  font-size: 12px;
  border-radius: 40px;
}
.article-item .content {
  padding: 10px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(var(--bs-dark-rgb), 0.75),
    transparent
  );
}
.article-item .content .icon-arrow-up-right {
  height: 35px;
  width: 35px;
  margin-left: auto;
  transition: 0.3s;
}
.article-item:hover .content .icon-arrow-up-right {
  rotate: 45deg;
}
.article-item .content .details-wrapper {
  padding: 10px;
}
.article-item .content .meta {
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  color: var(--bs-primary);
  margin-bottom: 5px;
}
.article-item .content .title {
  line-height: 1.25;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
}
.article-item .content .title a {
  color: white;
}
.article-item .content .desc {
  font-size: 12px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}
.article-item .content .admin-container {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 12px;
  padding-top: 15px;
}
.article-item .content .admin-container .admin-photo {
  border: 4px solid white;
  min-width: 45px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
}
.article-item .content .admin-container .admin-by {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
.article-item .content .admin-container .admin-name {
  color: white;
  margin: 0;
}
.contact-content {
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 15px;
}
.tour-category-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.tour-category-item .thumbnail {
  aspect-ratio: 2.5 / 3;
  overflow: hidden;
}
.tour-category-item.variant-2 .thumbnail {
  aspect-ratio: 4 / 2.5;
  overflow: hidden;
}
.tour-category-item .thumbnail img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 0.3s;
}
.tour-category-item:hover .thumbnail img {
  transform: scale(1.1);
}
.tour-category-item .title {
  position: absolute;
  inset: 0;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  background: rgba(0, 0, 0, 0.2);
}
.tour-category-item .title .first-title {
  font-size: 20px;
  font-weight: 600;
  color: white;
}
.tour-category-item .title .second-title {
  color: white;
  display: block;
  width: fit-content;
}
.destination-detail .description {
  padding: 5px 20px;
  background: rgba(0, 0, 0, 0.05);
  margin: 20px 0;
  border-radius: 5px;
}
.destination-detail .description p {
  margin: 0;
  font-size: 12px;
}
.destination-img-wrapper {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.destination-img-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.nav-tabs.nav-tabs-basic {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.nav-tabs.nav-tabs-basic .nav-item {
  margin-bottom: 0 !important;
}
.nav-tabs.nav-tabs-basic .nav-link {
  border: 0;
  border-radius: 10px 10px 0 0;
  border-color: transparent;
  background: 0 0;
  padding: 0.6rem 1rem;
  margin-right: 0;
  margin-bottom: -1px !important;
  border-bottom: 4px solid transparent;
  text-align: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  width: fit-content;
  text-wrap: nowrap;
}
.nav-tabs.nav-tabs-basic .nav-link:hover {
  border-color: transparent;
  background: rgba(0, 0, 0, 0.05);
}
.nav-tabs.nav-tabs-basic .nav-link.active {
  color: var(--bs-text-dark);
}
.nav-tabs.nav-tabs-basic .nav-link.active:hover {
  border-color: var(--bs-primary);
  background: transparent;
}
.url-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}
.url-container p {
  margin: 0 !important;
  line-height: unset;
}
.url-container button {
  border: 0;
  background: transparent;
}
.share-socmed-container {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.share-socmed-container .socmed-button {
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.share-socmed-container .socmed-button .socmed-icon {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.05);
  font-size: 1rem;
}
.share-socmed-container .socmed-button p {
  margin: 0;
}
.tour-not-avail-wrapper {
  padding: 10px;
  background: rgba(var(--bs-primary-rgb), 0.1);
  border: 1px solid rgba(var(--bs-primary-rgb), 0.25);
  border-radius: 10px;
}
.apply-visa-form-wrapper .progress {
  background: rgba(0, 0, 0, 0.05);
  background: white;
  position: relative;
}
.apply-visa-form-wrapper .progress .progress-bar {
  background: var(--bs-primary);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  transition: 0.3s;
}
.apply-visa-form-wrapper .form-stepper-wrapper {
  background: white;
  padding: 30px;
  overflow: hidden;
}
.form-stepper-wrapper.rounded-ver {
  border-radius: 30px;
}
.img-section-wrapper img {
  border-radius: 20px;
}
.service-list-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-list-wrapper .service-list-item {
  position: relative;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.service-list-wrapper .service-list-item:hover {
  background: rgba(0, 0, 0, 0.025);
}
.service-list-wrapper .service-list-item .title {
  margin: 0;
  font-size: 20px;
  color: var(--bs-dark);
  font-weight: 500;
}
.service-list-wrapper .service-list-item .title a {
  color: var(--bs-dark);
}
.service-list-wrapper .service-list-item .button-read-more {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  min-width: 40px;
  width: 40px;
  background-color: var(--bs-dark);
  border-radius: 50%;
  transition: 0.3s;
}
.service-list-wrapper .service-list-item:hover .button-read-more {
  rotate: -45deg;
}
.service-list-wrapper .service-list-item .button-read-more svg {
  height: 20px;
}
.contact-icon-footer {
  width: 30px;
  min-width: 30px;
  height: 30px;
  background: var(--bs-dark);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--bs-primary);
}
.progress-wrap:after {
  color: var(--bs-primary);
}
.success-icon-custom {
  width: 40px;
  min-width: 40px;
  height: 40px;
  background: rgba(var(--bs-success-rgb), 0.1);
  border-radius: 50%;
  color: var(--bs-success);
  display: flex;
  justify-content: center;
  align-items: center;
}
.error-icon-custom {
  width: 40px;
  min-width: 40px;
  height: 40px;
  background: rgba(var(--bs-danger-rgb), 0.1);
  border-radius: 50%;
  color: var(--bs-danger);
  display: flex;
  justify-content: center;
  align-items: center;
}
.tg-header-contact-icon {
  color: white;
  border: 1.2px solid rgba(255, 255, 255, 1);
  border-radius: 100px;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 34px;
  display: inline-block;
}
.tg-header-contact-icon svg {
  width: 21px;
  height: 21px;
}
.tg-header-contact-number span {
  font-size: 12px;
  text-transform: capitalize;
  color: white;
  display: block;
  line-height: 1;
  font-weight: 500;
}
.tg-header-contact-number a {
  color: white;
  font-weight: 600;
}
/* .navbar-stick:not(.navbar-dark) .tg-header-contact-icon {
  color: var(--bs-primary);
  border: 1.2px solid var(--bs-primary);
}
.navbar-stick:not(.navbar-dark) .tg-header-contact-number span {
  color: var(--bs-primary);
}
.navbar-stick:not(.navbar-dark) .tg-header-contact-number a {
  color: var(--bs-text-dark);
}
.navbar-stick:not(.navbar-dark) .tg-header-contact-icon svg * {
  stroke: var(--bs-primary);
} */
.tg-header-contact-icon {
  color: var(--bs-primary);
  border: 1.2px solid var(--bs-primary);
}
.tg-header-contact-number span {
  color: var(--bs-primary);
}
.tg-header-contact-number a {
  color: var(--bs-text-dark);
}
.tg-header-contact-icon svg * {
  stroke: var(--bs-primary);
}
.tg-chose-3-left {
  padding-right: 55px;
}
.tg-chose-3-map {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: -52px;
}
.tg-chose-3-thumb .main-thumb {
  box-shadow: -10px 13px 20px #0000001a;
  background: #f2f2f2;
  transform: rotate(-4deg);
  border: 8px solid white;
  border-radius: 20px;
  max-width: 288px;
  position: relative;
  z-index: 1;
}
.tg-chose-3-thumb-2 {
  box-shadow: -10px 13px 20px #0000001a;
  border: 8px solid white;
  border-radius: 20px;
  background: #f2f2f2;
  transform: rotate(3deg);
}
.tg-round-15 {
  border-radius: 15px;
}
.feature-item {
  background: white;
  display: block;
  padding: 20px;
  border-radius: 30px;
  box-shadow: none;
  height: 100%;
  color: var(--bs-dark);
  transition: none;
  text-align: center;
}
.feature-item:hover {
  background: rgba(0, 0, 0, 0.025);
}
.feature-item .icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  overflow: hidden;
}
.feature-item .icon::before {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(255, 255, 255, 0.2)
  );
}
.feature-item:hover .icon::before {
  background: transparent;
}
.feature-item .icon img {
  position: relative;
  height: 75px;
  width: 75px;
  object-fit: contain;
}
.feature-item .title {
  font-size: 18px;
  font-weight: 600;
  color: var(--bs-dark);
}
.feature-item .description {
  margin: 0;
}
.reset-desc {
  line-height: 1.75;
}
.tg-listing-card-item {
  background: linear-gradient(45deg, var(--bs-primary-dark), var(--bs-primary));
  border: 1px solid #ebebeb;
  border-radius: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.tg-listing-card-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  margin-bottom: -20px;
}
.tg-listing-card-thumb:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 98px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  background: linear-gradient(180deg, #0009, #0000 75%);
  transform: rotate(180deg);
  z-index: 1;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.tg-listing-card-item:hover .tg-listing-card-thumb:before {
  opacity: 1;
  visibility: visible;
}
.tg-listing-card-thumb .tg-card-border {
  border-radius: 12px 12px 0 0;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.tg-listing-card-thumb img {
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  border-radius: 12px 12px 0 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.tg-listing-card-item:hover .tg-listing-card-thumb img {
  transform: scale(1.1);
}
.tg-listing-card-thumb .shape {
  background-image: url(/assets/img/listing/angle.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.tg-listing-item-price-discount {
  position: absolute;
  font-weight: 600;
  font-size: 12px;
  text-transform: capitalize;
  line-height: 1;
  display: inline-block;
  color: var(--bs-text-dark);
  background: white;
  left: 15px;
  top: 15px;
  padding: 2px 10px 2px 2px;
  border-radius: 40px;
}
.tg-listing-card-thumb .shape-3 {
  background-image: url(/assets/img/listing/angle-3.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}
.tg-listing-card-thumb .shape-3 svg {
  margin-right: 4px;
  height: 24px;
  width: 24px;
  min-width: 24px;
}
.tg-listing-item-wishlist a {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  text-align: center;
  line-height: 33px;
}
.tg-listing-card-content {
  padding: 15px;
  background: white;
  z-index: 1;
  border-radius: 20px;
  flex-grow: 1;
}
.tg-listing-card-category {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 13px;
  color: var(--bs-text-dark);
}
.tg-listing-card-title {
  font-weight: 600;
  line-height: 133%;
  text-transform: capitalize;
  font-size: 15px;
  line-height: 1.5 !important;
  margin-bottom: 5px;
}
.tg-listing-card-title a {
  color: var(--bs-text-dark);
}
.tg-listing-card-duration-tour span {
  font-size: 14px;
  line-height: 24px;
  text-transform: capitalize;
  color: var(--bs-text-dark);
  display: flex;
  align-items: center;
}
.tg-listing-card-duration-tour span svg {
  margin-right: 5px;
  width: 16px;
  height: 16px;
}
.tg-listing-card-price {
  margin-top: auto;
}
.tg-listing-card-price-wrap.price-bg {
  background-image: url(/assets/img/listing/angle-4.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 0 0 12px;
  width: 158px;
}
.tg-listing-card-price-wrap {
  height: 50px;
  padding: 5px 29px 5px 23px;
}
.tg-listing-card-currency-amount {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-transform: capitalize;
  color: white;
}
.tg-listing-card-currency-old {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  text-transform: capitalize;
  color: #dbe6f7;
  display: block;
}
.tg-listing-card-activity-person {
  font-weight: 500;
  font-size: 12px;
  text-transform: capitalize;
  color: white;
  line-height: 22px;
}
.tg-listing-card-review.space {
  padding: 10px 17px 10px 10px;
}
.tg-listing-rating-icon {
  color: var(--bs-tertiary);
  font-size: 14px;
}
.tg-listing-rating-percent {
  font-size: 13px;
  line-height: 24px;
  text-transform: capitalize;
  color: var(--bs-text-dark);
}
.tg-custom-price-wrapper {
  display: flex;
  align-items: end;
  gap: 5px;
  line-height: 1;
  margin-top: 10px;
  font-size: 12px;
}
.tg-custom-price-wrapper .discount_price {
  margin: 0;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: line-through;
}
.tg-custom-price-wrapper .price {
  margin: 0;
  font-weight: 600;
  color: var(--bs-primary-dark);
}
.tg-listing-card-item .tg-listing-card-bottom-btn {
  color: white;
  padding: 10px;
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 600;
}
.tourSwiperWrapper .swiper-pagination {
  position: relative;
  text-align: end;
  font-size: 16px;
}
.tourSwiperWrapper .swiper-button-next,
.tourSwiperWrapper .swiper-button-prev {
  height: 40px;
  width: 40px;
  background-color: var(--bs-primary-dark);
  color: white;
  border-radius: 50%;
  visibility: visible;
}
.tourSwiperWrapper .swiper-button-prev {
  left: -20px;
  right: auto;
}
.tourSwiperWrapper .swiper-button-next {
  right: -20px;
  left: auto;
}
.tourSwiperWrapper .swiper-button-next:after,
.tourSwiperWrapper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: 900;
}
.tourSwiperWrapper .swiper-button-next.swiper-button-disabled,
.tourSwiperWrapper .swiper-button-prev.swiper-button-disabled {
  visibility: hidden;
}
.destination-location-wrapper span {
  font-size: 14px;
  line-height: 24px;
  text-transform: capitalize;
  color: var(--bs-text-dark);
  display: flex;
  align-items: center;
}
.destination-location-wrapper span svg {
  margin-right: 5px;
  width: 16px;
  height: 16px;
}
.tg-listing-item-price-discount.detail-tour {
  position: relative;
  top: unset;
  color: var(--bs-text-dark);
  display: flex;
  left: unset;
  gap: 10px;
  align-items: center;
}
[class^="social-icon-"] ul,
[class*=" social-icon-"] ul {
  list-style: none;
}
.elements-social ul {
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}
.small-icon li {
  margin: 0 3.5px;
}
.elements-social ul li:first-child {
  margin-left: 0 !important;
}
.elements-social ul li {
  display: inline-block;
}
.social-icon-style-09 ul.light li a {
  border-color: rgba(255, 255, 255, 0.5);
}
.elements-social .light li a {
  color: white !important;
}
.social-icon-style-09 ul.dark li a {
  border-color: rgba(0, 0, 0, 0.5);
}
.elements-social .dark li a {
  color: var(--bs-text-dark) !important;
}
.social-icon-style-09 ul li a {
  z-index: 9;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100%;
  position: relative;
}
.elements-social ul li a {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: 0.3s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 0.3s cubic-bezier(0.12, 0, 0.39, 0);
}
.social-icon-style-09 ul.light li a:hover {
  color: var(--bs-dark) !important;
  text-decoration: none;
}
.social-icon-style-09 ul.light li a span {
  background-color: white;
}
.social-icon-style-09 ul.dark li a:hover {
  color: white !important;
  text-decoration: none;
}
.social-icon-style-09 ul.dark li a span {
  background-color: var(--bs-text-dark);
}
.social-icon-style-09 ul li a span {
  display: block;
  border-radius: 100%;
  height: 100%;
  width: 100%;
  top: -1px;
  left: -1px;
  padding: 1px;
  box-sizing: content-box;
  margin: 0;
  position: absolute;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 0;
  -webkit-transition: 0.5s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 0.5s cubic-bezier(0.12, 0, 0.39, 0);
  pointer-events: none;
  z-index: -1;
  background-color: var(--bs-dark);
}
.social-icon-style-09 ul li a:hover span {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.elements-social li a svg {
  height: 18px;
}
.elements-social .light li a svg > * {
  fill: white;
  -webkit-transition: 0.5s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 0.5s cubic-bezier(0.12, 0, 0.39, 0);
}
.elements-social .dark li a svg > * {
  fill: var(--bs-text-dark);
  -webkit-transition: 0.5s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 0.5s cubic-bezier(0.12, 0, 0.39, 0);
}
.social-icon-style-09 ul li a:hover svg > * {
  fill: var(--bs-dark);
}
.social-icon-style-09 .dark li a:hover svg > * {
  fill: white;
}
.small-icon a {
  font-size: 18px;
  width: 40px;
  height: 40px;
}
.text-with-line {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
.text-with-line::before {
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  display: block;
}
.text-with-line::after {
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  display: block;
}
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget,
.goog-te-combo,
#goog-gt-tt,
.goog-te-spinner,
.skiptranslate {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
}
.top-bar-custom {
  margin: 0 60px;
  border-radius: 0px 0px 60px 60px;
  background: linear-gradient(
    0deg,
    rgba(var(--bs-primary-dark-rgb), 0.05),
    transparent 30%
  );
  position: relative;
  z-index: 1;
}
.accordion-style-02 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.accordion-style-02 .accordion-item {
  background: rgba(0, 0, 0, 0.025);
  border-radius: 10px;
}
.accordion-style-02 .accordion-item.home-placement {
  background: rgba(255, 255, 255, 0.45) !important;
}
.accordion-style-02 .accordion-item .accordion-header {
  border: none !important;
}
.accordion-style-02 .accordion-item.home-placement .accordion-header {
  border: none !important;
}
.accordion-style-02 .accordion-item .accordion-header a {
  padding: 15px 20px;
  display: block;
  transition: none;
  color: var(--bs-text-dark);
}
.accordion-style-02 .accordion-item .accordion-header a.collapsed {
  color: var(--bs-text-dark);
}
.accordion-style-02 .accordion-item .accordion-header a.collapsed:hover {
  color: var(--bs-text-dark);
}
.accordion-style-02 .accordion-item .accordion-header a h2 {
  color: var(--bs-text-dark);
}
.accordion-style-02 .accordion-item .accordion-header a.collapsed h2 {
  color: var(--bs-text-dark);
}
.accordion-style-02 .accordion-item .accordion-header a.collapsed:hover h2 {
  color: var(--bs-text-dark);
}
.accordion-style-02 .accordion-item .accordion-header a .accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-style-02 .accordion-item .accordion-collapse {
  transition: none;
}
.accordion-style-02 .accordion-item .accordion-body {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0 20px;
  padding-top: 10px;
}
.accordion-style-02 .accordion-item.home-placement .accordion-body {
  color: var(--bs-text-dark);
}
footer .ornament-1 {
  position: absolute;
  bottom: 0;
  width: 400px;
  left: 0;
}
footer .ornament-1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.1;
  filter: drop-shadow(1px 0 4rem var(--bs-primary));
}
footer .ornament-2 {
  position: absolute;
  top: 0;
  width: 300px;
  right: 0;
  rotate: 180deg;
}
footer .ornament-2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.25;
  filter: drop-shadow(0 0 2rem var(--bs-primary));
}
.package-item {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
}
.package-item .thumbnail-wrapper {
  aspect-ratio: 2 / 1;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.package-item .thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 0 !important;
  object-fit: cover;
  transform: scale(1);
  transition: 0.3s;
}
.package-item:hover .thumbnail-wrapper img {
  transform: scale(1.1);
}
.package-item .thumbnail-wrapper .post-type {
  position: absolute;
  top: 10px;
  left: 10px;
  color: white;
  padding: 5px 15px;
  font-size: 12px;
  background: var(--bs-secondary);
  border-radius: 510px;
}
.package-item .thumbnail-wrapper .reading-time {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: white;
  padding: 5px 15px;
  font-size: 10px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 510px;
}
.package-item .details {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.package-item.infografis .details {
  padding: 10px 15px;
}
.package-item .details .title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.package-item.infografis .details .title {
  margin: 0;
  font-size: 12px;
  text-align: center;
}
.package-item .details .title a {
  color: var(--bs-dark);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.package-item .details .date-dropdown-wrapper {
  position: relative;
}
.package-item .details .date-dropdown {
  border: 0;
  border-radius: 10px;
  padding: 1.5px 12.5px;
  font-size: 12px;
  position: unset;
}
.package-item .details .date-dropdown-wrapper .date-dropdown .dropdown-toggle {
  color: inherit;
}
.package-item
  .details
  .date-dropdown-wrapper
  .date-dropdown
  .dropdown-toggle.show::after,
.package-item
  .details
  .date-dropdown-wrapper:hover
  .date-dropdown
  .dropdown-toggle::after {
  rotate: 180deg;
}
@media (min-width: 992px) {
  .package-item
    .details
    .date-dropdown-wrapper:hover
    .date-dropdown
    .dropdown-menu {
    display: block;
    left: 0;
  }
}
.package-item .details .date-dropdown .dropdown-menu {
  width: 100%;
  transform: unset !important;
  top: 30px !important;
  height: fit-content;
  max-height: 130px;
  overflow-y: auto;
  padding: 15px 25px;
}
.package-item .details .date-dropdown .dropdown-menu .dropdown-item {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 10px;
}
.testimoni-item {
  background: white;
  padding: 30px;
  border-radius: 30px;
  box-shadow: rgba(149, 157, 165, 0.3) 0px 8px 30px;
}
.testimoni-slider .swiper-slide {
  padding: 30px 0;
}
.testimoni-item .stars {
  color: var(--bs-tertiary);
  margin-bottom: 25px;
}
.testimoni-item .desc p {
  font-size: 16px;
  font-style: italic;
}
.testimoni-item .desc {
  margin-bottom: 40px;
}
.testimoni-item .profile {
  display: flex;
  gap: 20px;
}
.testimoni-item .profile .profile-img {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
}
.testimoni-item .profile .profile-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.testimonials-section .ornament-2 {
  position: absolute;
  bottom: 0;
  width: 500px;
  left: 0;
}
.testimonials-section .ornament-2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.2;
}
.testimonials-section .ornament-1 {
  position: absolute;
  top: 0;
  width: 500px;
  right: 0;
}
.testimonials-section .ornament-1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.05;
}
.destinationSwiperWrapper .swiper-pagination {
  position: relative;
  text-align: end;
  font-size: 16px;
}
.destinationSwiperWrapper .swiper-button-next,
.destinationSwiperWrapper .swiper-button-prev {
  position: relative;
  height: 40px;
  width: 40px;
  min-width: 40px;
  background-color: var(--bs-primary-dark);
  color: white;
  border-radius: 50%;
  visibility: visible;
}
.destinationSwiperWrapper .swiper-button-prev {
  left: unset;
  right: unset;
}
.destinationSwiperWrapper .swiper-button-next {
  right: unset;
  left: unset;
}
.destinationSwiperWrapper .swiper-button-next:after,
.destinationSwiperWrapper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: 900;
}
.tg-listing-item-price-discount.detail-tour svg {
  height: 20px;
  width: 20px;
}
.small-icon.super-small a {
  font-size: 14px;
  height: 30px;
  width: 30px;
}
.small-icon.super-small a svg {
  height: 14px !important;
  width: 14px;
}
.package-details-list {
  height: 40px;
  min-width: 40px;
  width: 40px;
  background: var(--bs-tertiary);
  border-radius: 50%;
  padding: 7.5px;
}
.package-details-list img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.transportSwiperWrapper .swiper-pagination {
  position: relative;
  text-align: end;
  font-size: 16px;
}
.transportSwiperWrapper .swiper-button-next,
.transportSwiperWrapper .swiper-button-prev {
  position: relative;
  height: 40px;
  width: 40px;
  min-width: 40px;
  background-color: var(--bs-primary-dark);
  color: white;
  border-radius: 50%;
  visibility: visible;
}
.transportSwiperWrapper .swiper-button-prev {
  left: unset;
  right: unset;
}
.transportSwiperWrapper .swiper-button-next {
  right: unset;
  left: unset;
}
.transportSwiperWrapper .swiper-button-next:after,
.transportSwiperWrapper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: 900;
}
.tour-point-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.tour-point-item .icon {
  width: 50px;
  height: 50px;
  background: var(--bs-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 50%;
  flex: 0 0 auto;
  font-size: 20px;
}
.tour-point-item .details .title {
  color: rgba(0, 0, 0, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}
.tour-point-item .details .value {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--bs-text-dark);
}
.visitor-stat-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
}
.visitor-stat-item:before {
  content: "";
  display: block;
  width: 10px;
  min-width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}
/*.visitor-stat-item.today:before {*/
/*    background: var(--bs-tertiary);*/
/*}*/
.visitor-stat-item.online:before {
  background: greenyellow;
}
/*.testimoni-slider {*/
/*    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);*/
/*    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);*/
/*}*/
.lang-selector button {
  line-height: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  padding: 7.5px 20px 7.5px 10px;
  border: none;
  color: white;
  background-color: rgba(254, 238, 189, 0.15);
}
.lang-selector button:hover {
  background-color: rgba(254, 238, 189, 0.4);
  color: white;
}
.lang-selector button .lang-icon {
  height: 25px;
  width: 25px;
  min-width: 25px;
  border-radius: 50%;
  margin-right: 10px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  object-fit: cover;
}
.currency-option-dropdown {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  padding: 10px 20px 10px 10px;
  color: var(--bs-text-dark) !important;
}
.currency-option-dropdown:hover {
  color: var(--bs-text-dark) !important;
}
.currency-option-dropdown span {
  color: var(--bs-text-dark) !important;
}
.currency-option-dropdown:hover span {
  color: var(--bs-text-dark) !important;
}
.currency-option-dropdown .lang-icon {
  height: 20px;
  min-width: 20px;
  width: 20px;
  border-radius: 50%;
  object-fit: cover;
}
.language-option-dropdown {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  padding: 10px 20px 10px 10px;
  color: var(--bs-text-dark) !important;
}
.language-option-dropdown:hover {
  color: var(--bs-text-dark) !important;
}
.language-option-dropdown span {
  color: var(--bs-text-dark) !important;
}
.language-option-dropdown:hover span {
  color: var(--bs-text-dark) !important;
}
.language-option-dropdown .lang-icon {
  height: 20px;
  min-width: 20px;
  width: 20px;
  border-radius: 50%;
  object-fit: cover;
}
.tour-category-swiper-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
.tour-category-swiper .swiper-slide {
  width: fit-content;
}
.tour-category-swiper-wrapper .swiper-button-next,
.tour-category-swiper-wrapper .swiper-button-prev {
  position: relative;
  top: unset;
  width: 30px;
  min-width: 30px;
  height: 30px;
  margin-top: unset;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--bs-dark);
  border-radius: 50%;
}
.tour-category-swiper-wrapper .swiper-button-next:after,
.tour-category-swiper-wrapper .swiper-button-prev:after {
  font-size: 15px;
}
.category-slide-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 5px 10px 5px 5px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  width: fit-content;
  border-radius: 10px;
  font-weight: 500;
  border: 1px solid transparent;
  color: var(--bs-text-dark);
  background: white;
}
.category-slide-item:has(.filter-item.active),
.category-slide-item:hover {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border: 1px solid var(--bs-dark);
  color: var(--bs-white);
  background: var(--bs-dark);
}
.category-slide-item .galllery-count {
  padding: 5px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  font-size: 10px;
}
.category-slide-item img {
  height: 30px;
  width: 30px;
  min-width: 30px;
  border-radius: 10px;
  object-fit: cover;
}
.category-slide-item .filter-link {
  position: absolute;
  inset: 0;
}
.icon-with-backgound {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  height: 25px;
  width: 25px;
  min-width: 25px;
  background: var(--bs-dark);
  color: white;
  border-radius: 50%;
}
.rent-item {
  position: relative;
  height: 100%;
  padding: 1px;
}
.rent-item .content {
  background: linear-gradient(135deg, var(--bs-secondary), rgba(var(--bs-secondary-rgb), 0.25));
  border-radius: 25px;
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
.rent-item .content .details-wrapper {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rent-item .content .details-wrapper .title {
  margin: 0;
}
.rent-item .content .details-wrapper a {
  /* color: var(--bs-text-dark); */
  font-size: 20px;
}
.rent-item .content .details-wrapper .desc {
  color: rgba(var(--bs-dark-rgb), 0.75);
  margin: 0;
  font-size: 12px;
}
.rent-item .content .details-wrapper .desc.details {
  color: var(--bs-primary-dark);
}
.rent-item .content .details-wrapper .price-discount {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--bs-danger);
  text-decoration: line-through;
}
.rent-item .content .details-wrapper .price {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  /* color: var(--bs-dark); */
}
.rent-item .content .img-rent-wrapper {
  margin-top: auto;
}
.rent-item .content .img-rent {
  width: 100%;
}
.rent-item:hover {
  transform: scale(1.03);
  transition: .3s;
}
.bg-home-welcome {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.1;
}
.bg-home-tour-category {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.25;
}
.globe-home-tour-category {
  position: absolute;
  height: 750px;
  bottom: -250px;
  right: -100px;
  filter: grayscale(1);
  opacity: 0.25;
}
.globe-home-faq {
  position: absolute;
  height: 750px;
  bottom: -250px;
  left: -100px;
  filter: grayscale(1);
  opacity: 0.25;
}
.overlay-section {
  position: absolute;
  inset: 0;
}
.overlay-section.primary {
  background: linear-gradient(
    0deg,
    rgba(var(--bs-primary-rgb), 0.85),
    transparent
  );
}
.overlay-section.dark {
  background: linear-gradient(
    0deg,
    rgba(var(--bs-dark-rgb), 0.85),
    transparent
  );
}
.overlay-section.dark.variant-2 {
  background: linear-gradient(270deg, rgba(var(--bs-dark-rgb), 1), transparent);
}
.overlay-section.light.variant-2 {
  background: linear-gradient(270deg, white, transparent);
}
.destination-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  padding: 10px;
  border-radius: 1000px;
  box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
}
.destination-item .thumbnail {
  border-radius: 50%;
  overflow: hidden;
  min-width: 75px;
  width: 75px;
  height: 75px;
}
.destination-item .thumbnail img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.destination-item .details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.destination-item .details .sub-title {
  font-size: 12px;
  color: var(--bs-text-dark);
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 2px;
}
.destination-item .details .sub-title img {
  height: 12px;
  width: 12px;
  min-width: 12px;
}
.destination-item .details .title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.destination-item .details .title a {
  color: var(--bs-dark);
}
.destination-item .details .description {
  font-size: 12px;
  color: rgba(var(--bs-dark-rgb), 0.5);
}
.tour-item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 10px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.1);
  /*box-shadow: 0px 1px 5px 2px rgba(0,0,0,0.75);*/
  /*-webkit-box-shadow: 0px 1px 5px 2px rgba(0,0,0,0.75);*/
  /*-moz-box-shadow: 0px 1px 5px 2px rgba(0,0,0,0.75);*/
}
.tour-item .thumbnail-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0;
  position: relative;
  border-radius: 20px;
  /*padding: 15px;*/
}
.tour-item .thumbnail-wrapper .img-thumbnail {
  height: 100%;
  width: 100%;
  /* padding: 15px; */
  object-fit: cover;
  border: none;
  box-shadow: none;
  background: none;
  border-radius: 20px 20px 0 0;
  transition: 0.2s;
}
.tour-item:hover {
  -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
  transform: scale(1.05);
}
.tour-item .thumbnail-wrapper .tour-status {
  position: absolute;
  top: 10px;
  left: 10px;
  text-align: center;
  padding: 2px 20px;
  background: var(--bs-primary);
  color: var(--bs-dark);
  font-size: 11px;
  border-radius: 40px;
  font-weight: 500;
}
.tour-item .thumbnail-wrapper .tour-status.danger {
  background: var(--bs-danger);
  color: white;
}
.tour-item .details {
  padding: 0 15px 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.tour-item .details .tour-category {
  font-size: 13px;
  color: rgba(var(--bs-dark-rgb), 0.5);
  font-weight: 500;
}
.tour-item .details .title {
  font-size: 15px;
  margin-bottom: 10px;
  text-transform: capitalize;
  width: 100%;
}
.tour-item .details .title a {
  color: var(--bs-text-dark);
  /*overflow: hidden;*/
  /*display: -webkit-box;*/
  /*-webkit-line-clamp: 1;*/
  /*line-clamp: 1;*/
  -webkit-box-orient: vertical;
}
.tour-item .details .rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  padding-top: 5px;
}
.tour-item .details .rating .rating-text {
  line-height: 1;
}
.tour-item .details .rating img {
  height: 12px;
  line-height: 1;
}
.tour-item .details .divider {
  height: 1px;
  width: 100%;
  background: rgba(var(--bs-dark-rgb), 0.05);
  margin: 10px 0;
}
.tour-item .details .divider::after {
  content: none;
}
.tour-item .details .btn-see-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: rgba(0, 0, 0, 0.05);
  padding: 5px;
  border-radius: 10px;
  color: var(--bs-text-dark);
  transition: 0s, gap 0.2s;
}
.tour-item .details .btn-see-details:hover {
  background: rgba(0, 0, 0, 0.1);
  gap: 20px;
}
.tour-item .details .btn-see-details .right-arrow {
  height: 11px;
}
.navbar-clone {
  transition: none;
}
.tour-details .tour-details-gallery {
  display: grid;
  grid-gap: 10px;
  border-radius: 20px;
  overflow: hidden;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.tour-details .tour-details-gallery div {
  background: #cbcbcb;
  height: 100%;
  width: 100%;
}
.tour-details .tour-details-gallery div:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.tour-details .tour-details-gallery.items-1 div:nth-child(1) {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
}
.tour-details .tour-details-gallery div:nth-child(2) {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}
.tour-details .tour-details-gallery.items-2 div:nth-child(2) {
  grid-column: 3 / 5;
  grid-row: 1 / 3;
}
.tour-details .tour-details-gallery div:nth-child(3) {
  grid-column: 4 / 5;
  grid-row: 1 / 2;
}
.tour-details .tour-details-gallery.items-3 div:nth-child(3) {
  grid-column: 4 / 5;
  grid-row: 1 / 3;
}
.tour-details .tour-details-gallery div:nth-child(4) {
  grid-column: 4 / 5;
  grid-row: 2 / 3;
  position: relative;
}
@media (max-width: 767.98px) {
  .tour-details .tour-details-gallery div {
    grid-column: 1 / 5 !important;
    grid-row: 1 / 3 !important;
    aspect-ratio: 4 / 2 !important;
  }
}
.tour-details .tour-details-gallery div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.tour-details .tour-details-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
}
.tour-details .tour-details-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-details .tour-status {
  width: fit-content;
  padding: 2px 20px;
  background: var(--bs-primary);
  color: var(--bs-dark);
  font-size: 11px;
  border-radius: 40px;
  font-weight: 500;
}
.tour-details .tour-status.danger {
  background: var(--bs-danger);
  color: white;
}
.tour-details .category-item {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: underline;
}
.tour-details .category-item .icon {
  height: 25px;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
}
.tour-details .tour-details-header .tour-title {
    font-weight: 700;
}
.tour-details .start-form-wrapper {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 15px;
    padding-top: 0;
    font-size: 12px;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
}
.tour-details .start-form-wrapper .check-availability-header {
    background: var(--bs-dark);
    width: 200%;
    left: -50%;
    position: relative;
    padding: 10px 0;
    margin-bottom: 20px;
}
.tour-details .start-form-wrapper .check-availability-header .title {
    margin: 0;
    text-align: center;
    font-size: 16px;
    color: white;
    font-weight: 600;
}
.readmore-text.with-overlay {
  position: relative;
}
.readmore-text.with-overlay:after {
  content: "";
  position: absolute;
  height: 50%;
  bottom: 0;
  width: 100%;
  background: linear-gradient(0deg, white, transparent);
}
.readmore-text.with-overlay.expanded:after {
  content: none;
}
.cs_readmore-btn {
  background: none;
  padding: 0;
  border: 0;
  color: var(--bs-text-dark);
  margin-top: 20px;
}
.cloud-divider {
  position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 1;
}
.footer.bg-dark, footer.bg-dark {
    background: var(--bs-dark) !important;
}
.keunggulan-card {
  transition: 0.3s ease;
}

.keunggulan-card:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 8px 18px rgba(0,0,0,0.12); */
}

.keunggulan-logo {
  transition: 0.3s ease;
}

.keunggulan-card:hover .keunggulan-logo {
  transform: scale(1.15);
  filter: drop-shadow(0 0 8px var(--bs-primary));
}

.tour-card {
	position:relative;
	height:300px;
	border-radius:18px;
	overflow:hidden;
	cursor:pointer;
}
.tour-card img {
	width:100%;
	height:100%;
	object-fit:cover;
	transition:.4s;
}
.tour-card:hover img {
	transform:scale(1.08);
}
.tour-overlay {
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:linear-gradient(180deg,rgba(0,0,0,.1),rgba(0,0,0,.75));
}
.tour-content {
	position:absolute;
	bottom:25px;
	left:20px;
	right:20px;
	z-index:2;
	color:white;
}

.tour-content h4 {
	font-size:17px;
	font-weight:600;
	margin-bottom:15px;
	line-height:1.2;
  color: white;
}
.tour-meta {
	display:flex;
	justify-content:space-between;
	font-size:14px;
	align-items:end;
}
.tour-meta strong {
	font-size:24px;
	display:block;
}
.swiper-button-next {
	width:55px;
	height:55px;
	background:white;
	border-radius:100px;
	box-shadow:0 5px 20px rgba(0,0,0,.15);
	right:0;
}
.swiper-button-next:after {
	font-size:20px;
	color:black;
}
@media(max-width:992px) {
	.tour-left h2 {
		font-size:38px;
	}
	.tour-card {
		height: 270px;
		border-radius: 5px;
	}
}

.tour-card-2 {
	background:#fff;
	border-radius:20px;
	overflow:hidden;
	box-shadow:0 4px 18px rgba(0,0,0,.08);
	transition:.3s;
	height:100%;
	border:1px solid #eee;
}
.tour-card-2:hover {
	transform:translateY(-6px);
	box-shadow:0 12px 35px rgba(0,0,0,.12);
}
.tour-card-2 .tour-image {
	position:relative;
	/* height:220px; */
	overflow:hidden;
  display: block;
}
.tour-card-2 .tour-image img {
	width:100%;
	height:100%;
	object-fit:cover;
	transition:.4s;
}
.tour-card-2 .tour-card:hover img {
	transform:scale(1.08);
}
.tour-card-2 .tour-badge {
	position:absolute;
	top:14px;
	left:14px;
	background: transparent;
	color:white;
	font-size:11px;
	font-weight:700;
	padding:0;
	border-radius:30px;
	letter-spacing:.5px;
}
.tour-card-2 .wishlist {
	position:absolute;
	right:14px;
	top:14px;
	width:34px;
	height:34px;
	border-radius:100px;
	border:none;
	background:rgba(255,255,255,.25);
	backdrop-filter:blur(8px);
	color:white;
	font-size:20px;
	cursor:pointer;
}
.tour-card-2 .tour-body {
  display: flex;
  flex-direction: column;
	padding:18px;
  margin-top: -20px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  position: relative;
}
.tour-card-2 .tour-body h3 {
	font-size:16px;
	font-weight:600;
	margin-bottom:10px;
	color: black;
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
	overflow:hidden;
	min-height:40px;
}
.tour-card-2 .tour-footer {
	display:flex;
	justify-content:space-between;
	align-items:flex-end;
	gap:10px;
}
.tour-card-2 .price {
	font-size:20px;
	font-weight:700;
	color: var(--bs-primary);
	line-height:1;
}
.tour-card-2 .price span {
	font-size:14px;
	font-weight:500;
	color:black;
}
.tour-card-2 .duration {
	font-size:14px;
	font-weight:500;
	color: black;
	white-space:nowrap;
}
.tour-card-2 .view-package {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:20px;
	padding:16px 50px;
	border:2px solid #2d3142;
	border-radius:60px;
	font-weight:700;
	font-size:20px;
	text-decoration:none;
	color:#2d3142;
	min-width:340px;
	transition:.3s;
}
.tour-card-2 .view-package:hover {
	background:#2d3142;
	color:white;
}
@media(max-width:992px) {
	.tour-card-2 .tour-body h3 {
		font-size:16px;
		min-height:auto;
	}
	.tour-card-2 .price {
		font-size: 28px;
	}
}