@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primary-color: #0864c1;
  --primary-light-color: #f5f9fd;
  --semi-blue-color: #dae8f6;
  --dark-color: #222222;
  --black-color: #000;
  --white-color: #ffffff;
  --light-color: #f6f7fb;
  --gray-color: #444444;
  --primary-font: 'IBM Plex Sans', sans-serif;
  --secondary-font: 'Noto Sans', sans-serif;
  --transition: ease all 0.6s;
  --bs-border-color: #f2f2f2;
}

body {
  font-size: 14px;
  font-family: var(--secondary-font);
  color: var(--dark-color);
  line-height: 1.75;
}

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: 44px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font);
  font-weight: 700;
  line-height: 1.2;
}

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-head h3 {
  font-size: 19px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 0;
}

.section-head h2 {
  color: var(--black-color);
}

.section-title span {
  color: var(--primary-color);
}

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

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

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

/* ---------------------
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'],
select {
  height: 50px;
  border-radius: 50px !important;
}

textarea {
  height: 100px;
  border-radius: 20px !important;
}

.form-control,
.form-select {
  padding-left: 20px;
  border-color: #e9e9e9;
}

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

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

/* ---------------------
Buttons
--------------------- */
.btn {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 50px;
  overflow: hidden;
}

.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-color: var(--primary-color);
}

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

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

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

.btn-light:hover {
  color: var(--primary-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);
  }
}

/* Breadcrumb */

.breadcrumb-list {
  display: flex;
  color: var(--black-color);
  align-items: center;
  margin: 0;
}

.breadcrumb-list li {
  display: inline-block;
  padding-left: 10px;
  position: relative;
  margin-left: 10px;
}

.breadcrumb-list li:first-child {
  margin-left: 0;
  padding-left: 0;
}

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

.breadcrumb-list li a {
  color: var(--primary-color);
}

.breadcrumb-list li a:hover {
  color: var(--secondary-color);
}

.breadcrumb-list li:after {
  position: absolute;
  content: '/';
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--black-color);
}

.breadcrumb {
  padding: 15px 0;
  font-size: 13px;
  margin-bottom: 0;
}

/* Swiper Button */

.swiper-button-next,
.swiper-button-prev {
  background-color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

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

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

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

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

.swiper-pagination-bullets.swiper-pagination-horizontal {
  text-align: left;
  left: 10px;
  bottom: 100px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--white-color);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--secondary-color);
}

/* Waves */
/* ------------Waves----------- */

.waves-block-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 70px;
  margin: -35px auto 0 auto;
  z-index: 1;
}

.waves-block svg {
  position: absolute;
  top: 27px;
  left: 30px;
  color: var(--white-color);
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
  }
  50% {
    opacity: 0.9;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=90)';
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
  }
}

.fa-play:before {
  content: '\f04b';
}

.waves {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  opacity: 0;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
  border-radius: 100%;

  z-index: -1;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}

.wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

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

.page-banner {
  position: relative;
  padding: 80px 0 10px 0;
  background-color: var(--primary-light-color);
}

.page-banner:before {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url('../img/page-banner-bottom-shape.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
}

.page-banner h1 {
  font-size: 32px;
}
/* -------------------------------------------------------
                     Header
------------------------------------------------------- */

.top-header {
  font-size: 15px;
  padding: 15px 0;
}

.bottom-header {
  position: relative;
  padding: 15px 10px;
  margin-bottom: -50px;
  background-color: var(--white-color);
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  z-index: 99;
}

.bottom-header #primary-menu ul li a {
  font-size: 13px;
  font-weight: 500;
}
.floating {
  position: absolute;
}

.main-navigation ul {
  gap: 25px;
}

.main-navigation ul li a {
  font-size: 15px;
  font-weight: 500;
}

.main-navigation ul li.current-menu-item a,
.main-navigation ul li a:hover {
  color: var(--primary-color);
}

#site-navigation {
  display: none;
}

.site-branding img {
  width: 100px;
}

.offcanvas-start {
  background-color: var(--semi-blue-color);
}

.slicknav_menu {
  background: transparent;
  padding: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav  a {
  color: var(--primary-color);
  padding: 10px 20px;
  margin: 0;
  border-bottom: 1px solid #e5edf5;
}

.slicknav_nav .slicknav_row a{
	border:none;
}

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

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

/* -------------------------------------------------------
                     Hero Section
------------------------------------------------------- */

.hero-section {
  position: relative;
  color: var(--black-color);
  background-color: var(--semi-blue-color);
  padding: 100px 0 60px 0;
}

.bottom-shape {
  left: 0;
  bottom: -1px;
  width: 100%;
}

.hero-content {
  position: relative;
  margin-bottom: 40px;
}

.line-shape {
  left: 0;
  bottom: -15px;
}

.hero-content h3 {
  font-size: 20px;
  font-weight: 400;
}

.hero-content h1 {
  line-height: 1.06;
}

.hero-section .search-form {
  display: flex;
  justify-content: space-between;
  background-color: var(--white-color);
  padding: 12px;
  border-radius: 100px;
}

.hero-section .search-form .form-control {
  border: none;
  padding: 0 20px;
}

.hero-section .search-form .form-control:focus {
  box-shadow: none;
}

.hero-search-wrap {
  position: relative;
  z-index: 9;
}

.search-submit {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  line-height: 0;
  text-align: center;
  padding: 0;
  background-color: var(--primary-color);
  border-radius: 100px;
}
.search-submit svg {
  font-size: 18px;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.hero-img-wrap .hero-img-one {
  aspect-ratio: 306 / 210;
}
.hero-img-wrap .hero-img-two {
  aspect-ratio: 102 / 109;
}
.hero-img-wrap .hero-img-three {
  aspect-ratio: 17 / 28;
}

.left-bottom-img {
  left: 0;
  bottom: 0;
}

/* -------------------------------------------------------
                     About Section
------------------------------------------------------- */

.about-us-section {
  padding-top: 60px;
}

.about-section-left {
  position: relative;
}
.about-section-left .first-img img,
.about-section-left .second-img img {
  border-radius: 12px;
}

.about-section-left .first-img img {
  max-width: 440px;
  width: 100%;
}

.contact-box {
  position: relative;
  max-width: 520px;
  padding: 30px;
  margin-top: -30px;
  background-color: var(--primary-color);
  border-radius: 12px;
}

.contact-box p,
.contact-box a {
  color: var(--white-color);
}

.contact-box p {
  font-size: 20px;
  margin-bottom: 0;
}

.contact-box a {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--primary-font);
}

/* -------------------------------------------------------
              Book With Us Section
------------------------------------------------------- */

.book-with-us-section {
  position: relative;
  background-color: #f5f9fd;
  padding: 20px 0 0 0;
  margin-top: 50px;
}

.book-with-us-section:before {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  top: -49px;
  width: 100%;
  height: 50px;
  background-image: url(../img/top-border-shape.svg);
}

.icon-content-box {
  display: flex;
  gap: 20px;
  padding: 30px 30px 30px 0;
}

.icon-content-box {
  border-bottom: 1px solid #9dc2e7;
}

.icon-content-box:last-child {
  border: none;
}

.icon-content-box .icon {
  flex-shrink: 0;
}

.icon-content-box .icon img {
  width: 60px;
  object-fit: contain;
}

.icon-content-box .content h4 {
  margin-bottom: 8px;
}

/* -------------------------------------------------------
                  Full Width Slider
------------------------------------------------------- */

.full-width-slider-section {
  position: relative;
}

.full-width-slider-section:before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url('../img/bottom-border-shape.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 9;
}

/* .full-width-slider-section:after {
  bottom: 0;
  background-image: url("../img/top-border-shape.svg");
} */

.full-width-slider-item {
  position: relative;
  color: var(--white-color);
  text-align: center;
  padding: 150px 0;
  isolation: isolate;
}

.full-width-slider-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.full-width-slider-item p {
  font-size: 20px;
  margin-bottom: 50px;
}

/* -------------------------------------------------------
                Testimonials Section
------------------------------------------------------- */

.testimonials-section {
  position: relative;
  background-color: var(--semi-blue-color);
  margin: 50px 0;
}

.testimonials-section .floating {
  left: 0;
  bottom: -50px;
  max-width: 470px;
  z-index: 1;
}

.testimonials-section:before,
.testimonials-section:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 50px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.testimonials-section:before {
  top: -49px;
  background-image: url('../img/testimonials-top-shape.svg');
}

.testimonials-section:after {
  bottom: -50px;
  background-image: url('../img/testimonials-bottom-shape.svg');
}

.testimonials-slider .swiper-wrapper {
  padding: 0 20px 30px 20px;
}

.testimonials-slider .swiper-button-prev,
.testimonials-slider .swiper-button-next {
  top: 35%;
}

.testimonials-slider .swiper-button-prev {
  left: 0;
}

.testimonials-slider .swiper-button-next {
  right: 0;
}

.testimonials-content-inner {
  position: relative;
  padding: 40px;
  background-color: var(--white-color);
  border-radius: 15px;
}

.testimonials-content-inner:after {
  content: '';
  position: absolute;
  left: 50px;
  bottom: -20px;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 20px solid var(--white-color);
}

.testimonials-content-inner .quote-icon {
  margin-bottom: 25px;
}

.testimonials-content-inner .content-content {
  font-size: 15px;
  font-family: var(--secondary-font);
  margin-bottom: 15px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 40px 0 0 50px;
}

.client-info img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}
.client-info .detail h4 {
  font-size: 18px;
  margin-bottom: 0;
}

/* -------------------------------------------------------
              Cen Uk
------------------------------------------------------- */

.cenuk-charity-section {
  background-color: var(--semi-blue-color);
  padding: 50px 0 50px 0;
}

.cenuk-img {
  position: relative;
}

.cenuk-img img {
  border-radius: 12px;
}

.cenuk-img .floating {
  bottom: -40px;
  left: 0;
  width: 250px;
}

/* -------------------------------------------------------
              Ski Holiday
------------------------------------------------------- */

.ski-holidays-section {
  position: relative;
  padding: 80px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white-color);
  isolation: isolate;
}

.ski-holidays-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.instagrm-feed-section {
  background-color: var(--primary-light-color);
}

.footer-top {
  position: relative;
  padding: 50px 0 75px 0;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,dae8f6+100 */
  background: linear-gradient(to bottom, #ffffff 0%, #dae8f6 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.footer-top-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.footer-bottom {
  position: relative;
  color: var(--white-color);
  font-size: 14px;
  padding: 30px 0 50px 0;
  background-color: var(--primary-color);
}

.footer-bottom a:hover {
  color: var(--semi-blue-color);
}

.footer-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-contact li,
.footer-menu li {
  outline-offset: var;
  margin-bottom: 10px;
}

.footer-contact li:last-child,
.footer-menu li:last-child {
  margin-bottom: 0;
}

.footer-contact li .icon {
  float: left;
  margin-right: 13px;
}

.footer-contact li a {
  display: block;
  overflow: hidden;
}

.si-wrap {
  margin-top: 40px;
}

.si-wrap a {
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: var(--primary-color);
  background-color: var(--white-color);
}

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

.associate-logo a {
  display: inline-block;
  margin-right: 30px;
}
.associate-logo a:last-child {
  margin-right: 0;
}

.associate-logo img {
  height: 30px;
  object-fit: contain;
}

.payment-logo img {
  height: 35px;
  object-fit: contain;
}

.copyright {
  font-size: 14px;
  color: var(--white-color);
  padding: 20px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

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

.blog-card .blog-thumb img {
  width: 100%;
  aspect-ratio: 415 / 270;
  object-fit: cover;
  border-radius: 15px;
}

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

.meta-tag {
  font-size: 15px;
  color: #9c9c9c;
  margin-bottom: 15px;
}

.blog-card .blog-card-body h4 {
  margin-bottom: 15px;
}

.blog-card .blog-card-body h4:hover a {
  color: var(--primary-color);
}

.link {
  color: var(--primary-color);
  font-weight: 500;
}

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

.destination-card .destination-thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 305 / 195;
  object-fit: cover;
  border-radius: 12px;
  transition: var(--transition);
}

.destination-card:hover .destination-thumb img {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
}

.destination-card-body {
  padding: 10px 0;
}

.destination-card-body h4 {
  font-size: 18px;
  font-family: var(--secondary-font);
  margin-bottom: 0;
}

.destination-card-body p {
  font-size: 15px;
  color: #666666;
}

/* -------------------------------------------------------
                     Trip Card
------------------------------------------------------- */

.trip-card {
  border-radius: 12px;
  transition: var(--transition);
}

.trip-card:hover {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.08);
}

.trip-card .trip-card-thumb {
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.trip-card .trip-card-thumb img {
  transition: ease all 1.5s;
}

.trip-card .trip-card-thumb img:hover {
  transform: scale(1.1);
}

.trip-card-body {
  padding: 20px 25px;
  border-width: 0 1px 1px 1px;
  border-style: solid;
  border-color: #e9e9e9;
  border-radius: 0 0 12px 12px;
}

.trip-card-body h4 a:hover {
  color: var(--primary-color);
}

.trip-meta {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e9e9e9;
}

.trip-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-color);
}

.trip-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-area * {
  display: inline-block;
  margin-bottom: 0;
}

.price-area .price {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
}
.price-area .regular-price {
  text-decoration: line-through;
}

.review-area span {
  color: #ffcc00;
  font-weight: 700;
}

/* -------------------------------------------------------
                Trekking Single
------------------------------------------------------- */
.single-content h2 {
  font-size: 22px;
}
.single-content h3 {
  font-size: 20px;
}
.single-content h4 {
  font-size: 18px;
}

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

h3.sub-title {
  font-size: 36px;
}

.sticky-nav {
  position: sticky;
  top: -100%;
  z-index: 99999;
  opacity: 0;
  background-color: var(--primary-color);
  padding: 0;
  transition: var(--transition);
}

.sticky-nav.visible {
  top: 0;
  opacity: 1;
}

.sticky-nav ul {
  gap: 30px;
}

.sticky-nav .nav-item .nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white-color);
  font-size: 15px;
  padding: 15px 0 11px 0;
  border-bottom: 3.5px solid transparent;
  border-radius: 0;
}

.sticky-nav .nav-item .nav-link .icon {
  line-height: 1;
}

.sticky-nav .nav-item .nav-link.active {
  background-color: transparent;
  border-color: var(--white-color);
}

.nav-section {
  margin-bottom: 40px;
}

.overview-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-radius: 8px;
  background-color: var(--primary-light-color);
  border: 1px solid var(--semi-blue-color);
}
.overview-item .detail h4,
.overview-item .detail p,
.itinery-feature .detail h4,
.itinery-feature .detail p {
  margin-bottom: 0;
}

.overview-item .detail h4,
.overview-item .detail p,
.itinery-feature .detail h4,
.itinery-feature .detail p {
  font-size: 15px;
}

.overview-item .detail h4,
.itinery-feature .detail h4 {
  font-family: var(--secondary-font);
}

.overview-item .icon,
.itinery-feature .icon {
  width: 30px;
  flex-shrink: 0;
}

.gallery-container img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 2.7;
  object-fit: cover;
  border-radius: 8px;
}

.more-img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.more-img:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
}

.more-img:hover:before {
  opacity: 1;
  visibility: visible;
}

.img-count {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  opacity: 0;
  transition: var(--transition);
}

.more-img:hover .img-count {
  opacity: 1;
}

.itinery-item {
  padding: 20px;
  margin-bottom: 10px;
  background-color: var(--primary-light-color);
  border: 1px solid var(--semi-blue-color);
  border-radius: 8px;
}

.itinery-item .accordion-button {
  font-weight: 700;
  padding: 0;
  background-color: transparent;
}

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

.itinery-item .accordion-body {
  padding: 15px 0 0 0;
}

.itinery-feature-wrap {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border-radius: 8px;
  background-color: var(--white-color);
}

.itinery-feature {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cost-inner {
  margin-bottom: 30px;
}

.cost-inner h4 {
  font-size: 20px;
}

.cost-inner ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.cost-inner ul li:last-child {
  margin-bottom: 0;
}

.cost-inner ul li:before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.cost-inner.included ul li:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2334C759' fill-rule='evenodd' d='M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75S22.75 17.937 22.75 12S17.937 1.25 12 1.25M7.53 11.97a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06 0l7-7a.75.75 0 0 0-1.06-1.06L10 14.44z' clip-rule='evenodd'/%3E%3C/svg%3E");
}

.cost-inner.excluded ul li:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23EE2728' d='M16 2C8.2 2 2 8.2 2 16s6.2 14 14 14s14-6.2 14-14S23.8 2 16 2m5.4 21L16 17.6L10.6 23L9 21.4l5.4-5.4L9 10.6L10.6 9l5.4 5.4L21.4 9l1.6 1.6l-5.4 5.4l5.4 5.4z'/%3E%3C/svg%3E");
}

.popular-trek-area {
  margin-top: 40px;
}

.popular-trek-area .popular-trek-item {
  margin-bottom: 40px;
}

.popular-trek-area .popular-trek-item:last-child {
  margin-bottom: 0;
}

.popular-trek-area .popular-trek-item h3 {
  font-size: 24px;
  color: var(--primary-color);
}

.popular-trek-area .popular-trek-item figure img {
  width: 100%;
  aspect-ratio: 4/2;
  object-fit: cover;
  border-radius: 15px;
}

/* -------------------------------------------------------
                  Contact PAge
------------------------------------------------------- */

.contact-area {
  display: flex;
  gap: 15px;
}

.contact-area .icon {
  flex-shrink: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white-color);
}

.contact-form-wrap textarea {
  height: 180px;
}

.mv-item  img{
    width:60px;
    height:60px;
    object-fit:contain;
    margin-bottom:15px;
}

.team-member .member-image img{
    width:100%;
    height:100%;
    asepct-ratio:17 / 23;
    object-fit:cover;
    border-radius:10px;
}
.team-member .member-body{
    text-align:center;
    padding:15px 10px;
}

.team-member .member-body h4{
    font-size:20px;
    margin-bottom:0;
}

/* -------------------------------------------------------
                  Sidebar
------------------------------------------------------- */

.sidebar {
  padding: 20px;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
}
.price-highlight {
  color: var(--white-color);
  text-align: center;
  background-color: var(--primary-color);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
}

.price-highlight * {
  margin-bottom: 0;
}

.group-discount {
  padding: 20px;
  margin-bottom: 15px;
  background-color: var(--primary-light-color);
  border-radius: 8px;
}

.discount-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dashed #b2c8de;
}

.discount-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.discount-list li p {
  margin-bottom: 0;
}

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

/* -------------------------------------------------------
                     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 1.2s linear 1;
}

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