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

:root {
  --primary-color: #04a6eb;
  --secondary-color: #ef5350;
  --dark-color: #1f2933;
  --primary-hover-color: #008bc5;
  --orange-color: #ef5350;
  --black-color: #000;
  --white-color: #ffffff;
  --gray-color: #f2f2f2;
  --primary-font: 'Poppins', sans-serif;
  --transition: ease all 0.6s;
  --bs-border-color: #f2f2f2;
}

body {
  font-size: 15px;
  font-family: var(--primary-font);
  color: var(--dark-color);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: ease all 0.3s;
  -o-transition: ease all 0.3s;
  transition: ease all 0.3s;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1 {
  font-size: 34px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.5;
}

p:last-child {
  margin-bottom: 0;
}

.accessibility {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.accessibility:focus {
  position: static;
  width: auto;
  height: auto;
}

.wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page-holder {
  flex-grow: 1;
}

figure {
  margin-bottom: 0;
}

.block {
  padding: 50px 0;
}

.sm-body-text {
  font-size: 15px;
}

.md-body-text {
  font-size: 16px;
}

.lg-body-text {
  font-size: 17px;
}

.section-head {
  margin-bottom: 25px;
}

.section-title {
  color: var(--dark-color);
  font-size: 30px;
  margin-bottom: 10px;
}

.rounded {
  border-radius: 8px !important;
}

.check-list li {
  position: relative;
  padding-left: 25px;
}

.check-list li:before {
  content: '\f00c';
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Fontawesome';
  color: var(--secondary-color);
}

.single-content ul {
  margin-bottom: 20px;
}

.bullet-list li,
.check-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 5px;
}

.bullet-list li:before,
.single-content ul li:before {
  content: '';
  position: absolute;
  left: 0;
  background-image: url('../img/bxs_plane-alt.svg');
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
}

.bullet-list li:last-child,
.check-list li:last-child {
  margin-bottom: 0;
}

.bullet-list ul li::marker,
.single-content ul li::marker {
  font-size: 16px;
}

.bullet-list ul li {
  margin-bottom: 2px;
}
.bullet-list ul li:last-child {
  margin-bottom: 10px;
}

.sticky {
  position: sticky;
  top: 100px;
}

.view-link svg {
  font-size: 12px;
}

.view-link {
  color: var(--primary-color);
}

.view-link:hover {
  color: var(--secondary-color);
}

.view-link svg {
  font-size: 12px;
  transition: var(--transition);
}

.view-link:hover svg {
  transform: translateX(5px);
}

.card {
  border: none;
  border-radius: 25px;
  transition: var(--transition);
  box-shadow: 0 6px 25px rgba(184, 38, 49, 0.06);
}

.card.hover-shadow-card:hover {
  border-color: transparent;
  box-shadow: 8px 0 35px rgba(184, 38, 49, 0.15);
}

.card-body {
  padding: 30px;
}

.card-body .icon {
  margin-bottom: 30px;
}

.card-body .icon img {
  height: 60px;
  object-fit: contain;
}

.card-body h3 {
  font-size: 20px;
}

.sticky-section {
  position: sticky;
  top: 100px;
}

/* ---------------------
Colors
--------------------- */

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

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

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

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

.table-primary {
  --bs-table-bg: var(--primary-color) !important;
  --bs-table-color: var(--white-color);
}

.table-secondary {
  --bs-table-bg: var(--secondary-color) !important;
  --bs-table-color: var(--white-color);
}

.table > :not(caption) > * > * {
  padding: 15px;
}

/* ---------------------
Forms
--------------------- */

input[type='text'],
input[type='email'],
input[type='password'],
input[type='file'],
input[type='date'],
select {
  height: 50px;
  border-radius: 8px;
}

textarea {
  height: 100px;
  border-radius: 8px;
}

input[type='text'],
input[type='email'],
input[type='url'],
input[type='password'],
input[type='search'],
input[type='number'],
input[type='tel'],
input[type='range'],
input[type='date'],
input[type='month'],
input[type='week'],
input[type='time'],
input[type='datetime'],
input[type='datetime-local'],
input[type='color'],
input[type='file'],
.form-select,
textarea,
textarea.form-control {
  padding-left: 20px;
  border-color: #d0d0d0;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  color: var(--white-color);
  border-radius: 50%;
  background-color: var(--primary-color);
  z-index: 5;
  background-image: none;
  opacity: 1;
}

.offcanvas .btn-close {
  position: unset;
}

.btn-close:hover {
  color: var(--white-color);
  opacity: 1;
}

/* ---------------------
Buttons
--------------------- */
.btn {
  position: relative;
  font-size: 12px;
  padding: 10px 15px;
  border-radius: 8px;
  overflow: hidden;
  border: none;
  transition: var(--transition);
}

.btn-lg {
  font-size: 16px;
  font-weight: 500;
  padding-top: 13px;
  padding-bottom: 13px;
}

.btn .fa-arrow-right {
  font-size: 14px;
  transition: var(--transition);
}

.btn:hover .fa-arrow-right {
  transform: translateX(5px);
}

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

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

.btn-outline-primary {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-outline-primary:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-secondary,
.btn-secondary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-light {
  color: var(--dark-color);
  background-color: var(--white-color);
  border-color: var(--white-color);
}

.btn:after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: linear-gradient(
    to bottom,
    rgba(229, 172, 142, 0),
    rgba(255, 255, 255, 0.4) 50%,
    rgba(229, 172, 142, 0)
  );
  transform: rotateZ(60deg) translate(-5em, 10em);
}
/*This activates the sheen once the button has been hovered*/
.btn:hover::after {
  animation: sheen 1.5s forwards;
}
@keyframes sheen {
  100% {
    transform: rotateZ(60deg) translate(1em, -9em);
  }
}

/* Swiper Button */

.swiper-button-next,
.swiper-button-prev {
  top: 50%;
  width: auto;
  height: 10px;
}

.swiper-button-prev {
  left: 15px;
}

.swiper-button-next {
  right: 15px;
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
  color: var(--secondary-color);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: 'Fontawesome';
  font-size: 14px;
  color: var(--white-color);
}

.swiper-button-prev:after {
  content: '\f053';
}

.swiper-button-next:after {
  content: '\f054';
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 20px;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  width: 50px;
  opacity: 1;
}

/* ---------------------
Page Banner
--------------------- */

.page-banner {
  position: relative;
  isolation: isolate;
  text-align: center;
  color: var(--white-color);
}

.page-banner.overlay figure {
  position: relative;
}

.page-banner.overlay figure:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1e5799+0,000000+100&0+0,0.9+100 */
  background: linear-gradient(
    to bottom,
    rgba(30, 87, 153, 0) 0%,
    rgba(0, 0, 0, 0.9) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.page-banner .banner-img img {
  width: 100%;
}

.page-head {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: auto;
  padding: 50px 10px;
}

.page-banner h1 {
  font-size: 38px;
  margin-bottom: 0;
}

.breadcrumb-wrap {
  background-color: #fffaec;
  padding: 8px 0;
}

.breadcrumb {
  margin-bottom: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '\f105';
  font-family: 'Fontawesome';
  font-size: 12px;
  margin-top: 3px;
}

.breadcrumb-item {
  color: var(--primary-color);
}

.breadcrumb-item a {
  color: var(--dark-color);
}

.woocommerce-breadcrumb {
  color: var(--primary-color);
  padding: 30px 0;
}

.woocommerce-breadcrumb a {
  color: var(--dark-color);
}

/* ---------------------
Header
--------------------- */

/* Header Top */
.header-top {
  padding: 13px 0;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#00a8ec+0,e83e8c+100 */
  background: linear-gradient(
    to right,
    rgba(0, 168, 236, 1) 0%,
    rgba(232, 62, 140, 1) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.header-top * {
  color: var(--white-color);
}

/* Header Main*/

.header-main {
  padding: 10px 0;
}

.site-logo {
  width: 110px;
}

.offcanvas-body {
  padding: 0;
}

.slicknav_menu {
  padding: 0;
}
.slicknav_nav .slicknav_row,
.slicknav_nav li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  margin: 0;
  border-bottom: 1px solid #eee;
}

.slicknav_nav .slicknav_row:hover,
.slicknav_nav a:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
  border-radius: 0;
}

.slicknav_nav .slicknav_row:hover a {
  color: var(--white-color);
}

.slicknav_nav .slicknav_row:hover > a {
  background-color: transparent;
}

.main-navigation {
  display: none;
  font-family: var(--primary-font);
  width: auto;
}

.main-navigation ul.menu > li {
  margin-right: 25px;
}

.main-navigation ul.menu > li:last-child {
  margin-right: 0;
}

.main-navigation a {
  font-size: 16px;
  font-weight: 500;
}

.current_page_item > a,
.menu-item > a:hover {
  color: var(--white-color);
}

.slicknav_menu {
  background-color: transparent;
}

.slicknav_nav a {
  color: var(--dark-color);
}

.si-wrap a {
  color: var(--white-color);
  margin-right: 15px;
}

.si-wrap a:last-child {
  margin-right: 0;
}

.si-wrap a:hover {
  color: var(--primary-color);
}

.banner-slider .swiper-slide img {
  width: 100%;
}

.site-header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white-color);
  border-bottom: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  animation: smoothScroll 1s forwards;
  z-index: 999;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}

.site-header.fixed-header .header-top {
  display: none;
}

.btn.dropdown-toggle {
  padding: 8px 15px;
}

.language-switcher .dropdown-menu {
  padding: 0;
  font-size: 12px;
  min-width: 105px;
}

/* -------------------------------------------------------
                  Package Card
------------------------------------------------------- */

.package-card {
  background-color: #f7f7f7;
  border-radius: 5px;
}

.package-card .package-card-body {
  padding: 15px;
}
.package-card.horizontal {
  background-color: transparent;
}

.package-card figure {
  margin-bottom: 15px;
}

.package-card figure img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 5px;
}

.package-card.horizontal .package-card-body {
  padding: 0;
}

.package-card .package-card-body .card-title {
  font-size: 18px;
  margin-bottom: 15px;
}

.package-card .package-card-body .card-title a:hover {
  color: var(--primary-color);
}

.package-card .package-card-body .meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 12px;
}

.package-card .package-card-body .meta-tags .meta-item {
  display: flex;
  align-items: center;
  width: calc(50% - 10px);
  box-sizing: border-box;
}

.package-card .package-card-body .meta-tags .meta-item .icon {
  color: var(--primary-color);
  float: left;
  margin-right: 8px;
}

.package-card .package-card-body .meta-tags .meta-item p {
  display: block;
  overflow: hidden;
}

.package-card .package-card-body .package-price {
  color: var(--primary-color);
  font-size: 32px;
  font-weight: 600;
}

.package-card .package-card-body .package-price span {
  color: #6b7280;
  font-size: 16px;
  font-weight: 400;
}

.filter-container {
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.filter-from form {
  padding: 0 18px 18px 18px;
}

.filter-toggle {
  display: inline-block;
  cursor: pointer;
}

/* -------------------------------------------------------
                  Destination Card
------------------------------------------------------- */

.destination-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.destination-card figure {
  position: relative;
}

.destination-card figure:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.destination-card figure img {
  width: 100%;
}

.destination-card-body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  padding: 15px;
  text-align: center;
  color: var(--white-color);
}

.destination-card-body .card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.destination-archive .destination-card figure img {
  aspect-ratio: 208/ 175;
  object-fit: cover;
}

.destination-term-list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 8px;
  overflow-x: scroll;
}

.nav-pills {
  justify-content: center;
  gap: 8px;
}

.nav-pills .nav-link {
  color: var(--dark-color);
}

.destination-term-list li a,
.nav-pills .nav-link {
  display: block;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 8px;
  border: 1px solid var(--dark-color);
  white-space: nowrap;
}

.destination-term-list li.is-active a,
.destination-term-list li a:hover,
.nav-pills .nav-link:hover,
.nav-pills .nav-link.active {
  color: var(--white-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.feature-destination-section .destination-card figure img {
  aspect-ratio: 315 / 400;
  object-fit: cover;
}

/* -------------------------------------------------------
                  Blog Card
------------------------------------------------------- */

.blog-card figure {
  position: relative;
}

.blog-card figure .post-date {
  position: absolute;
  top: 15px;
  right: 0;
  padding: 5px 20px;
  color: var(--white-color);
  font-weight: 500;
  background-color: var(--primary-color);
  border-radius: 5px 0 0 5px;
}

.blog-card figure img {
  width: 100%;
  aspect-ratio: 67 / 46;
  object-fit: cover;
  border-radius: 8px;
}

.blog-card .blog-card-body {
  padding: 15px 0;
}

.blog-card .blog-card-body .title {
  font-size: 18px;
  font-weight: 600;
}

.blog-card .blog-card-body p {
  color: #4c4c4c;
}

.meta-tags {
  display: flex;
  color: #666;
  font-size: 14px;
}

.meta-tags p {
  padding-right: 15px;
  margin-bottom: 0;
}

.meta-tags p:lat-child {
  padding-right: 0;
}

.meta-tags p i,
.meta-tags p svg {
  color: var(--primary-color);
}

.recommended-package-section .swiper-button-next:after,
.recommended-package-section .swiper-button-prev:after {
  color: var(--primary-color);
  font-size: 25px;
}

.recommended-package-section .swiper-button-next {
  right: 0;
}

.recommended-package-section .swiper-button-prev {
  left: 0;
}

.cruise-package-section {
  background-color: #f7fdff;
}

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

.counter-wrap .half-card {
  width: 50%;
}

.counter-wrap .full-card {
  width: 100%;
}

.counter-wrap .half-card,
.counter-wrap .full-card {
  padding: 7px;
}

.counter-wrap .half-card .card-inner,
.counter-wrap .full-card .card-inner {
  border-radius: 8px;
}

.counter-wrap .half-card .card-inner {
  background-color: #f2f2f2;
  padding: 20px;
}

.counter-wrap .full-card .card-inner {
  padding: 20px;
}

.counter-wrap .full-card .card-inner {
  position: relative;
  color: var(--white-color);
  background-color: var(--primary-color);
  isolation: isolate;
}

.counter-wrap .full-card .card-inner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/counter-overlay.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.counter-wrap .card-inner h3 {
  font-size: 35px;
  font-weight: 600;
}

.counter-wrap .card-inner p {
  font-size: 16px;
  font-weight: 500;
}

.card-slider figure img {
  width: 100%;
  aspect-ratio: 415/380;
  object-fit: cover;
  border-radius: 8px;
}

.service-box {
  background-color: var(--bs-border-color);
  padding: 20px;
  height: 100%;
  border-radius: 8px;
}

.service-box:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.service-box .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: var(--white-color);
  border-radius: 50%;
  margin-bottom: 25px;
}

.service-box h4:hover a {
  color: var(--white-color);
}

.faq-section {
  background-color: #f7fdff;
}

.accordion-item {
  background-color: transparent;
  border-bottom: 1px solid #eaecf0;
  overflow: hidden;
}
.accordion-item:first-of-type {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.accordion-item:last-of-type {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.accordion-button {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--secondary-font);
  padding: 25px 0;
  background-color: transparent;
}

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

.faq-wrap .accordion-body {
  padding: 0 0 25px 0;
}

.accordion-button::after,
.accordion-button:not(.collapsed)::after {
  color: var(--primary-color);
  font-family: 'Fontawesome';
  background-image: none;
}

.accordion-button::after {
  content: '\f055';
}

.accordion-button:not(.collapsed)::after {
  content: '\f056';
}

.site-footer {
  position: relative;
  background-color: var(--primary-color);
  isolation: isolate;
}

.site-footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/footer-overlay.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.site-footer .footer-top {
  padding: 60px 0 30px;
}

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

.footer-logo img {
  width: 150px;
}

.footer-title {
  color: var(--white-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-menu a {
  color: var(--white-color);
}

.footer-menu a:hover {
  color: var(--secondary-color);
}

.footer-item .qr {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.footer-item .qr img {
  width: 100%;
  height: auto;
}

.footer-contact {
  margin-bottom: 30px;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-item .icon {
  float: left;
  margin-right: 10px;
  color: var(--white-color);
}

.contact-item .detail {
  overflow: hidden;
}

.contact-item .detail a {
  display: block;
  color: var(--white-color);
}

.site-footer .si-wrap a {
  color: var(--white-color);
}

.footer-bottom {
  color: var(--white-color);
  padding: 20px 0;
}

/* -------------------------------------------------------
                     Service page
------------------------------------------------------- */

.service-card-container {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas:
    'item-1 item-1'
    'item-2 item-2'
    'item-3 item-4';
}

.service-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.service-card.item-1 {
  grid-area: item-1;
}
.service-card.item-2 {
  grid-area: item-2;
}
.service-card.item-3 {
  grid-area: item-3;
}
.service-card.item-4 {
  grid-area: item-4;
}
.service-card.item-5 {
  grid-area: item-5;
}
.service-card.item-6 {
  grid-area: item-6;
}
.service-card.item-7 {
  grid-area: item-7;
}
.service-card.item-8 {
  grid-area: item-8;
}
.service-card.item-9 {
  grid-area: item-9;
}
.service-card.item-10 {
  grid-area: item-10;
}

.service-card figure {
  position: relative;
}

.service-card a,
.service-card a figure {
  display: block;
  width: 100%;
  height: 100%;
}

.service-card figure:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1e5799+0,000000+100&0+0,1+100 */
  background: linear-gradient(
    to bottom,
    rgba(30, 87, 153, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.service-card figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 420 / 250;
  object-fit: cover;
}

.service-card-body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px 10px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.service-card-body .title {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 600;
}

/* -------------------------------------------------------
                     Gallery Page
------------------------------------------------------- */

.gallery-tabs {
  flex-wrap: nowrap;
  overflow-x: scroll;
}

.gallery-tabs.nav-pills .nav-link {
  font-size: 12px;
  padding: 5px 10px;
}

.gallery-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    'item-1 item-2'
    'item-3 item-3'
    'item-4 item-5'
    'item-6 item-6'
    'item-7 item-8'
    'item-9 item-9'
    'item-10 item-10';
  gap: 10px;
}

.gallery-container .gallery-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-container .gallery-item.item-1 {
  grid-area: item-1;
}
.gallery-container .gallery-item.item-2 {
  grid-area: item-2;
}
.gallery-container .gallery-item.item-3 {
  grid-area: item-3;
}
.gallery-container .gallery-item.item-4 {
  grid-area: item-4;
}
.gallery-container .gallery-item.item-5 {
  grid-area: item-5;
}
.gallery-container .gallery-item.item-6 {
  grid-area: item-6;
}
.gallery-container .gallery-item.item-7 {
  grid-area: item-7;
}
.gallery-container .gallery-item.item-8 {
  grid-area: item-8;
}
.gallery-container .gallery-item.item-9 {
  grid-area: item-9;
}
.gallery-container .gallery-item.item-10 {
  grid-area: item-10;
}

/* -------------------------------------------------------
                     Contact Page
------------------------------------------------------- */

.contact-wrap {
  padding: 10px;
  border-radius: 8px;
  background-color: var(--white-color);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
}

.contact-container {
  position: relative;
  padding: 20px;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#04a6eb+0,e9418b+100 */
  background: linear-gradient(
    to bottom,
    rgba(4, 166, 235, 1) 0%,
    rgba(233, 65, 139, 1) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  border-radius: 8px;
  isolation: isolate;
}

.contact-container:before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  background-image: url('../img/circle-shape.svg');
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.form-container {
  padding: 20px;
}

.feature-item {
  margin-bottom: 20px;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-item .icon {
  float: left;
  width: 40px;
  height: 40px;
  margin-right: 20px;
}

.feature-item .content {
  overflow: hidden;
}

.intro-img-container figure {
  width: 50%;
}

.intro-img-container figure img {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.intro-img-container figure.img-primary {
  margin-left: 30px;
}

.intro-img-container figure.img-secondary {
  margin-left: auto;
  margin-top: -100px;
}

.counter-section .counter-inner {
  padding: 30px 15px;
  background-color: var(--gray-color);
  border-radius: 8px;
}

.counter-section .counter-inner .counter-item {
  text-align: center;
}

.counter-section .counter-inner .counter-item figure {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px auto;
}

.counter-section .counter-inner .counter-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}

.counter-section .counter-inner .counter-item p {
  font-size: 12px;
}

/* -------------------------------------------------------
                     Package Single Page
------------------------------------------------------- */

.single-package-card {
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  padding: 40px;
}

.single-package-card figure img {
  width: 100%;
  border-radius: 8px;
}

.single-package-card .meta-tags {
  max-width: 400px;
  flex-wrap: wrap;
}

.single-package-card .meta-tags .meta-item {
  flex: 0 0 50%;
  margin-bottom: 15px;
  color: var(--black-color);
}

.single-package-card .meta-tags .icon {
  float: left;
  margin-right: 10px;
}

.single-package-card .meta-tags .icon i,
.single-package-card .meta-tags .icon svg {
  color: var(--primary-color);
}

.single-package-card .meta-tags .detail {
  overflow: hidden;
}

.single-package-card .meta-tags .detail h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 2px;
}

.package-price,
.price {
  padding: 0 10px;
  display: inline-block;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b3e8ff+1,ffffff+100 */
  background: linear-gradient(
    to right,
    rgba(179, 232, 255, 1) 1%,
    rgba(255, 255, 255, 1) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.price {
  color: var(--primary-color);
  font-size: 46px;
  font-weight: 700;
}

.price span {
  font-size: 22px;
  font-weight: 400;
  color: var(--dark-color);
}

.trip-detail {
  margin-bottom: 30px;
}
.trip-detail:last-child {
  margin-bottom: 0;
}

.trip-detail .title {
  margin-bottom: 10px;
}

.trip-highlight ul li,
.cost-detail ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.trip-highlight ul li:last-child,
.cost-detail ul li:last-child {
  margin-bottom: 0;
}

.trip-highlight ul li:before,
.cost-detail ul li:before {
  content: '';
  position: absolute;
  left: 0;
}

.trip-highlight ul li:before {
  top: 2px;

  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 8.5px 15px 8.5px;
  border-color: transparent transparent var(--primary-color) transparent;
}

.cost-detail ul li:before {
  font-family: 'Fontawesome';
}

.cost-detail .include ul li:before {
  content: '\f058';
  color: #34c759;
}

.cost-detail .exclude ul li:before {
  content: '\f057';
  color: red;
}

.itinerary-detail .description {
  position: relative;
  padding-left: 70px;
}

/* .itinerary-detail .v-line {
  position: absolute;
  top: 0;
  left: 30px;
  width: 2px;
  height: 100%;
  background-color: var(--primary-color);
} */

.itinerary-item {
  position: relative;
  background-color: var(--gray-color);
  padding: 20px;
  border: none;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: inherit;
}

.itinerary-item:before,
.itinerary-item:after {
  content: '';
  position: absolute;
}

.itinerary-item:before {
  top: 45px;
  left: -45px;
  width: 2px;
  height: 100%;
  background-color: var(--primary-color);
}

.itinerary-item:last-child:before {
  position: unset;
  background-color: transparent;
}

.itinerary-item:after {
  top: 20px;
  left: -10px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent var(--gray-color) transparent transparent;
}
.itinerary-item .accordion-button {
  padding: 0;
}
.itinerary-item .accordion-body {
  padding: 15px 0 0 0;
}

.itinerary-item .count {
  position: absolute;
  top: 6px;
  left: -65px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 45px;
  height: 45px;
  line-height: 1.2;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
}

.itinerary-item .count small {
  display: block;
  font-size: 16px;
  font-weight: 700;
}

/* -------------------------------------------------------
                     Single Page
------------------------------------------------------- */

.single-head {
  margin-bottom: 30px;
}

.hero-img {
  margin-bottom: 30px;
}

.hero-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.quote {
  font-size: 18px;
  font-weight: 500;
  background-color: #eef5ff;
  text-align: center;
  padding: 40px 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.image-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    'item-1 item-2'
    'item-1 item-3';
  gap: 20px;
  margin-bottom: 30px;
}

.image-showcase img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/2.7;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.image-showcase .item-1 {
  grid-area: item-1;
}

.image-showcase .item-2 {
  grid-area: item-2;
}

.image-showcase .item-3 {
  grid-area: item-3;
}

.sticky-note-area-container {
  position: fixed;
  right: 30px;
  bottom: 50px;
  width: 200px;
  transform: translateX(200%);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 999999;
}

.sticky-note-area-container.show {
  transform: translateX(0);
}

.sticky-note-area {
  color: var(--white-color);
  font-size: 13px;
  text-align: center;
  background-color: #00c300;
  border-radius: 20px;
  overflow: hidden;
}

.sticky-note-area .inner {
  padding: 20px 10px 10px;
}

.sticky-note-area .sticky-head {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.sticky-note-area .sticky-head h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0;
}

.sticky-note-area .qr {
  margin-bottom: 10px;
}

.sticky-note-area .contact-area {
  padding: 10px 0;
  border-width: 1px 0 1px 0;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.4);
  margin-bottom: 15px;
}

.sticky-note-area .contact-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.sticky-note-area .contact-area .icon {
  flex-shrink: 0;
  font-size: 20px;
}

.sticky-note-area .contact-area .num {
  overflow: hidden;
}

.sticky-note-area .contact-area .num a {
  display: block;
}

.sticky-note-area .sticky-footer {
  padding: 10px;
  background-color: #1f7c1d;
}

.sticky-footer .nav-pills .nav-link {
  color: var(--white-color);
  padding: 0;
  width: 40px;
  height: 40px;
  background-color: #00c300;
  font-size: 24px;
  border: none;
  opacity: 0.5;
}

.sticky-footer .nav-pills .nav-link.active {
  opacity: 1;
}

.close-sticky-note {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: block;
  text-align: right;
  cursor: pointer;
  width: 30px;
  height: 30px;
  line-height: 31px;
  margin-left: auto;
  margin-top: 10px;
  color: var(--white-color);
  background-color: var(--primary-color);
  font-size: 16px;
  text-align: center;
  border-radius: 50%;
  z-index: 999999;
}

.close-sticky-note.active {
  background-color: red;
}

.close-sticky-note .fa-xmark,
.close-sticky-note.active .fa-message {
  display: none;
}

.close-sticky-note.active .fa-xmark {
  display: inline-block;
}

/* -------------------------------------------------------
                     Scrollbar
------------------------------------------------------- */

body::-webkit-scrollbar {
  width: 6px;
}

body::-webkit-scrollbar-track {
  background-color: var(--light-primary-color);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 10px;
}

/* -------------------------------------------------------
                         Shine Effect
------------------------------------------------------- */

.shine-overlay {
  position: relative;
  overflow: hidden;
}
.shine-overlay:hover .shine {
  display: block;
}

.shine {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(255, 255, 255, 0)),
    color-stop(50%, rgba(255, 255, 255, 0.8)),
    to(rgba(255, 255, 255, 0))
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transform: skew(30deg);
  animation: shine 5s linear 1;
}

@keyframes shine {
  0% {
    left: -50%;
    opacity: 0;
  }
  50% {
    left: 25%;
    opacity: 0.5;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

.wpcf7-spinner {
  position: absolute;
}

.banner-content {
  opacity: 0;
  transform: translateY(70px);
  transition: all 2s ease;
}

.swiper-slide-active .banner-content {
  opacity: 1;
  transform: translateY(0);
}
