@charset "UTF-8";
html {
  scrollbar-width: none;
}

body {
  font-family: "Roboto", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

.fancybox__container {
  z-index: 999999 !important;
}

ul li {
  list-style: none;
}

blockquote {
  background-color: rgba(0, 0, 0, 0.044);
  border-left: 6px solid #F5811F;
  padding: 10px 20px;
  font-style: italic;
}
blockquote i {
  color: #F5811F;
  margin-inline: 8px;
}

.my-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1.5rem;
  height: 3rem;
  text-transform: capitalize;
  font-size: 1.1rem;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  color: #FFFFFF;
  background-color: #2c8d2b;
  transition: background-color 0.5s, color 0.5s;
}
.my-btn:hover {
  background-color: #1b66a8;
  cursor: pointer;
}
.my-btn i {
  margin-left: 0.3rem;
  margin-right: 8px;
}

.title {
  margin-bottom: 20px;
}
.title h2 {
  position: relative;
  padding-left: 80px;
  font-size: 2rem;
  color: #2c8d2b;
  font-weight: 900;
  letter-spacing: 1px;
}
.title h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #2c8d2b;
  transform: translateY(-50%);
}
.title h2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50px;
  width: 16px;
  height: 16px;
  background-color: #2c8d2b;
  border: 5px solid #2c8d2b;
  border-radius: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .title h2 {
    font-size: 1.5rem !important;
    padding-left: 50px;
  }
  .title h2::before {
    width: 30px;
    height: 2px;
  }
  .title h2::after {
    left: 30px;
    width: 12px;
    height: 12px;
  }
}

.breadcrumb {
  padding: 8px;
  margin: 0;
}
.breadcrumb .breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.breadcrumb .breadcrumb-list li {
  color: rgba(17, 17, 17, 0.5607843137);
  margin: 0;
  transition: linear 0.2s;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}
.breadcrumb .breadcrumb-list li a {
  color: rgba(17, 17, 17, 0.5607843137);
}
.breadcrumb .breadcrumb-list li i {
  padding-inline: 10px;
}
.breadcrumb .breadcrumb-list li:last-child a {
  color: #000;
}
.breadcrumb .breadcrumb-list li:last-child i {
  display: none;
}

.sticky-sidebar {
  font-family: "Poppins", sans-serif;
  top: 100px;
  margin-top: 10px;
  margin-bottom: 50px;
  border-radius: 5px;
}
.sticky-sidebar .information-sidebar .sidebar-header {
  padding: 0.8rem 1rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c8d2b;
  border-radius: 5px 5px 0 0;
}
.sticky-sidebar .information-sidebar ul li {
  padding: 0.8rem 1rem;
  font-size: 1.1rem;
  transition: background-color 0.2s;
}
.sticky-sidebar .information-sidebar ul li a {
  color: #000000;
  transition: margin-left 0.5s;
}
.sticky-sidebar .information-sidebar ul li:hover {
  cursor: pointer;
  color: #FFFFFF;
  background-color: #2c8d2b;
}
.sticky-sidebar .information-sidebar ul li:hover > a {
  color: #FFFFFF;
  margin-left: 5px;
}
.sticky-sidebar .information-sidebar ul li::after {
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-size: 1rem;
  font-weight: 600;
  float: right;
  vertical-align: middle;
}
.sticky-sidebar span {
  color: #F5811F;
  font-weight: 600;
  margin-left: 8px;
}

header {
  font-family: "Poppins", sans-serif;
}
header .upper-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  background-color: #2c8d2b;
  padding-block: 12px;
  padding-inline: 2rem;
}
header .upper-nav .nav-left, header .upper-nav .nav-right {
  display: flex;
  column-gap: 1rem;
}
header .upper-nav .nav-left {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
header .upper-nav .nav-left a {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 500;
}
header .upper-nav .nav-left a i {
  margin-right: 8px;
}
header .upper-nav .nav-right i {
  margin-right: 8px;
  color: #FFFFFF;
  font-size: 1rem;
}
header .lower-nav {
  width: 100%;
}
header .lower-nav .logo {
  width: 150px;
  aspect-ratio: 5/2;
}
header .lower-nav .primary-menu {
  background-color: #FFFFFF;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.01);
}
header .lower-nav .primary-menu .menu-list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
header .lower-nav .primary-menu .menu-list .nav-item {
  height: 80px;
}
header .lower-nav .primary-menu .menu-list .nav-item .nav-link {
  height: 100%;
  padding: 0 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #000000;
  font-size: 18px;
  font-weight: 400;
}
header .lower-nav .primary-menu .menu-list .nav-item .nav-link i {
  font-size: 22px;
}
header .lower-nav .primary-menu .menu-list .nav-item:hover {
  cursor: pointer;
}
header .lower-nav .primary-menu .menu-list .nav-item:hover .nav-link {
  color: #2c8d2b;
}
header .lower-nav .primary-menu .menu-list .nav-item:last-child {
  font-size: 18px;
}
@media only screen and (max-width: 1024px) {
  header .lower-nav .primary-menu .menu-list .nav-item:first-child {
    margin-right: auto;
  }
  header .lower-nav .primary-menu .menu-list .nav-item:not(:last-child, :first-child) {
    display: none;
  }
  header .lower-nav .primary-menu .menu-list .nav-item:last-child {
    display: block !important;
  }
}
header .lower-nav .primary-menu .menu-list .nav-item .dropdown-menu {
  padding: 0;
}
header .lower-nav .primary-menu .menu-list .nav-item .dropdown-menu li {
  height: 50px;
}
header .lower-nav .primary-menu .menu-list .nav-item .dropdown-menu li:hover {
  background-color: none;
}
header .lower-nav .primary-menu .menu-list .nav-item .dropdown-menu li a {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 18px;
}
header .lower-nav .primary-menu .menu-list .nav-item .dropdown-menu li a:hover {
  background-color: #FFFFFF;
  color: #2c8d2b;
}
@media only screen and (max-width: 800px) {
  header .lower-nav .primary-menu .menu-list .nav-item:not(:last-child, :first-child) {
    display: none;
  }
  header .lower-nav .primary-menu .menu-list .nav-item:last-child {
    display: block !important;
  }
}
header .lower-nav .primary-menu .sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 9999;
  background-color: #fff;
  backdrop-filter: blur(10px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.01);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
header .lower-nav .primary-menu .sidebar .nav-item {
  height: 50px;
  width: 100%;
}
header .lower-nav .primary-menu .sidebar .nav-item .nav-link {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #000000;
  font-size: 18px;
  font-weight: 400;
}
header .lower-nav .primary-menu .sidebar .nav-item .nav-link i {
  font-size: 22px;
}
header .lower-nav .primary-menu .sidebar .nav-item:hover {
  cursor: pointer;
}
header .lower-nav .primary-menu .sidebar .nav-item:hover .nav-link {
  color: #2c8d2b;
}
header .lower-nav .primary-menu .sidebar .nav-item:first-child {
  margin-right: auto;
  font-size: 16px;
}
header .lower-nav .primary-menu .sidebar .nav-item .dropdown-menu {
  padding: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
header .lower-nav .primary-menu .sidebar .nav-item .dropdown-menu li {
  height: 50px;
}
header .lower-nav .primary-menu .sidebar .nav-item .dropdown-menu li:hover {
  background-color: none;
}
header .lower-nav .primary-menu .sidebar .nav-item .dropdown-menu li a {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 18px;
}
header .lower-nav .primary-menu .sidebar .nav-item .dropdown-menu li a:hover {
  background-color: #FFFFFF;
  color: #2c8d2b;
}
@media only screen and (max-width: 400px) {
  header .lower-nav .primary-menu .sidebar {
    width: 100%;
  }
}
header .sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}

.footer {
  background-color: #f8f8f8;
  position: relative;
  width: 100%;
  padding: 20px;
}

.footer-section img {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}

.associated-with img {
  width: 50px;
  height: auto;
}

.footer-section h3 {
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 5px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #000000;
}

.footer-section ul li a:hover {
  color: #2c8d2b;
}

.footer-section .social-icons {
  margin-top: 8px;
}

.footer-section .social-icons a {
  font-size: 24px;
  margin-right: 15px;
  color: #2c8d2b;
  text-decoration: none;
}

.footer-section .social-icons a:hover {
  color: #2c8d2b;
}

.newsletter-signup {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
  margin-bottom: 70px;
}

.newsletter-signup input, .newsletter-signup button {
  padding: 10px;
  margin: 20px 10px;
  width: 200px;
  max-width: 100%;
  background: #fff;
  color: #666;
  border: 1px solid #e5e5e5;
}

.newsletter-signup button {
  cursor: pointer;
  background-color: #2c8d2b;
  color: #fff;
  border: none;
  width: 200px;
  border-radius: 4px;
  transition: background-color 0.5s ease;
}

.newsletter-signup button:hover {
  background-color: #1e73be;
}

.newsletter-signup form {
  display: flex;
  align-items: center;
}

.footer-links {
  text-align: left;
  margin: 20px 0;
  margin-bottom: 50px;
}

.footer-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #000;
}

.footer-links a:hover {
  color: #2c8d2b;
}

.footer-copyright {
  width: 100%;
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #2c8d2b;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

@media (max-width: 768px) {
  .newsletter-signup form {
    flex-direction: column;
  }
  .newsletter-signup input, .newsletter-signup button {
    margin: 10px 0;
    width: 90%;
  }
}
.carousel .carousel-item h3,
.carousel .carousel-item h5,
.carousel .carousel-item p,
.carousel .carousel-item .my-carousel-btn {
  display: none;
}
.carousel .carousel-item.active h3, .carousel .carousel-item.active h5, .carousel .carousel-item.active p, .carousel .carousel-item.active .my-carousel-btn {
  display: block;
  transform: translateY(50px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent 0.5s 0.2s ease-in-out 1 forwards;
}
.carousel .carousel-item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  background-image: linear-gradient(to top, #000000 20%, transparent);
}
.carousel .carousel-item .content {
  position: absolute;
  left: 15%;
  bottom: 20%;
  width: 800px;
  max-width: 80%;
  z-index: 1;
  text-align: left;
}
.carousel .carousel-item .content h5 {
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
}
.carousel .carousel-item .content h3 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 3rem;
  margin: 1.5rem 0;
}
.carousel .carousel-item .content p {
  font-family: Georgia, "Times New Roman", Times, serif;
  height: 50px;
  line-height: 50px;
  font-size: 1.5rem;
}
.carousel .carousel-item .content p i {
  margin-right: 8px;
  font-size: 1.2rem;
}
.carousel .carousel-item .content .my-carousel-btn {
  padding: 0.5rem 1.5rem;
  width: fit-content;
  height: fit-content;
  text-transform: capitalize;
  font-size: 1.1rem;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  color: #FFFFFF;
  background-color: #2c8d2b;
  transition: background-color 0.5s, color 0.5s;
}
.carousel .carousel-item .content .my-carousel-btn:hover {
  background-color: #1b66a8;
  cursor: pointer;
}
.carousel .carousel-item .content .my-carousel-btn i {
  margin-left: 0.3rem;
}
@media only screen and (max-width: 1200px) {
  .carousel {
    height: 60dvh;
  }
  .carousel .carousel-inner {
    height: 100%;
  }
  .carousel .carousel-inner .carousel-item {
    height: 100%;
  }
  .carousel .carousel-inner .carousel-item img {
    height: 100%;
    object-fit: cover;
    overflow-y: hidden;
  }
  .carousel .carousel-inner .carousel-item h5 {
    display: none;
  }
  .carousel .carousel-inner .carousel-item h3 {
    font-size: 2.4rem;
  }
  .carousel .carousel-inner .carousel-item .my-btn {
    height: 2.5rem;
    font-size: 1rem;
    margin-top: 8px;
    color: #FFFFFF;
    width: max-content;
  }
}
@media only screen and (max-width: 767px) {
  .carousel {
    height: 60dvh;
  }
  .carousel .carousel-inner {
    height: 100%;
  }
  .carousel .carousel-inner .carousel-item {
    height: 100%;
  }
  .carousel .carousel-inner .carousel-item img {
    height: 100%;
    object-fit: cover;
    overflow-y: hidden;
  }
  .carousel .carousel-inner .carousel-item h5 {
    display: none;
  }
  .carousel .carousel-inner .carousel-item h3 {
    font-size: 2.4rem;
  }
  .carousel .carousel-inner .carousel-item .my-btn {
    height: 2.4rem;
    font-size: 1rem;
    margin-top: 8px;
    color: #FFFFFF;
    width: max-content;
  }
}

@keyframes showContent {
  to {
    transform: translateY(0);
    filter: blur(0px);
    opacity: 1;
  }
}
.aboutus-section {
  width: 100%;
  padding-block: 50px 120px;
}
.aboutus-section .aboutus-content .aboutus-heading span {
  position: relative;
  padding-left: 80px;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}
.aboutus-section .aboutus-content .aboutus-heading span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #2c8d2b;
  transform: translateY(-50%);
}
.aboutus-section .aboutus-content .aboutus-heading span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50px;
  width: 16px;
  height: 16px;
  background-color: #2c8d2b;
  border: 5px solid #2c8d2b;
  border-radius: 50%;
  transform: translateY(-50%);
}
.aboutus-section .aboutus-content .aboutus-heading h4 {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #2c8d2b;
}
.aboutus-section .aboutus-content .aboutus-heading h2 {
  font-size: 6vw;
  font-weight: 900;
  background-image: url(../img/AboutUs/Himalayas.png);
  background-size: contain;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.aboutus-section .aboutus-content p {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 20px;
}
.aboutus-section .aboutus-content .my-btn {
  width: max-content;
}
.aboutus-section .img-section {
  height: 100%;
  position: relative;
}
.aboutus-section .img-section img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 10px;
}
@media only screen and (max-width: 1200px) {
  .aboutus-section .img-section img {
    width: 80%;
    height: 70%;
  }
}
.aboutus-section .img-section .img-second {
  position: absolute;
  width: 70%;
  height: 60%;
  right: -60px;
  bottom: -60px;
}
@media only screen and (max-width: 1200px) {
  .aboutus-section .img-section .img-second {
    width: 30%;
    height: 20%;
    right: 0px;
    bottom: 30px;
  }
}
@media only screen and (max-width: 1200px) {
  .aboutus-section .img-section {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .aboutus-section {
    padding: 20px 20px;
  }
  .aboutus-section .aboutus-content .aboutus-heading span {
    font-size: 16px;
    margin-left: auto;
    padding-left: 50px;
  }
  .aboutus-section .aboutus-content .aboutus-heading span::before {
    width: 30px;
    height: 2px;
  }
  .aboutus-section .aboutus-content .aboutus-heading span::after {
    left: 30px;
    width: 12px;
    height: 12px;
  }
  .aboutus-section .aboutus-content .aboutus-heading h4 {
    font-size: 30px;
  }
  .aboutus-section .aboutus-content .aboutus-heading h2 {
    font-size: 15vw;
  }
  .aboutus-section .img-section {
    margin-top: 20px;
  }
  .aboutus-section .img-section img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  .aboutus-section .img-section .img-second {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .aboutus-section .img-section .img-second {
    display: none;
  }
}

.activities_section {
  width: 100%;
  height: 400px;
}
@media (max-width: 576px) {
  .activities_section {
    height: 300px;
  }
}
.activities_section .activities_container {
  width: 100%;
  height: 450px;
  background-size: cover;
  background-position: center;
  display: flex;
}
@media (max-width: 576px) {
  .activities_section .activities_container {
    height: 350px;
  }
}
.activities_section .activities_container .banner-text {
  display: flex;
  justify-content: left;
  align-items: end;
}
.activities_section .activities_container .banner-text h2 {
  margin-left: 120px;
  background-color: #fff;
  padding: 10px 20px;
}
@media (max-width: 570px) {
  .activities_section .activities_container .banner-text h2 {
    margin-left: 60px;
    padding: 5px 10px;
    font-size: 20px;
  }
}
@media (max-width: 360px) {
  .activities_section .banner_section {
    height: 250px;
  }
  .activities_section .banner_container {
    height: 300px;
  }
}
.activities_section .item:hover img {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
}
.activities_section .item .hover-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.5rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.activities_section .item:hover .hover-text {
  opacity: 1;
}
.activities_section .main-col,
.activities_section .item {
  height: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .activities_section .container {
    height: auto;
  }
  .activities_section .main-col,
  .activities_section .item {
    height: auto;
  }
  .activities_section .row.g-3 {
    gap: 0.5rem;
  }
  .activities_section .main-img {
    aspect-ratio: auto;
  }
  .activities_section .side-img {
    aspect-ratio: auto;
  }
}

.tm-gallery {
  margin-left: 100px;
  margin-right: 100px;
  margin-top: 100px;
}

.tm-video-item {
  position: relative;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
}

.tm-video-item img {
  position: relative;
  display: block;
  min-height: 100%;
  max-width: 100%;
  opacity: 0.8;
}

.tm-video-item figcaption {
  padding: 2em;
  color: #fff;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.tm-video-item figcaption::before,
.tm-video-item figcaption::after {
  pointer-events: none;
}

.tm-video-item figcaption,
.tm-video-item figcaption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tm-video-item figcaption > a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}

.tm-video-item h2 {
  word-spacing: -0.15em;
  font-weight: 300;
}

.tm-video-item h2,
.tm-video-item p {
  margin: 0;
}

.tm-video-item p {
  letter-spacing: 1px;
  font-size: 68.5%;
}

.tm-gallery div.d-block {
  animation: show 0.5s ease;
}

@keyframes show {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
figure.effect-ming {
  background: #030c17;
  border-radius: 10px;
}

figure.effect-ming img {
  opacity: 0.9;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
  width: 100%;
  height: 100%;
  aspect-ratio: 8/5;
  border-radius: 10px;
  object-fit: cover;
  transition: box-shadow 0.3s ease;
}

figure.effect-ming figcaption::before {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.2);
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale3d(1.4, 1.4, 1);
  transform: scale3d(1.4, 1.4, 1);
}

figure.effect-ming h2 {
  font-size: 1.3em;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}

figure.effect-ming:hover figcaption::before,
figure.effect-ming:hover h2 {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

figure.effect-ming:hover figcaption {
  background-color: rgba(58, 52, 42, 0);
}

figure.effect-ming:hover img {
  opacity: 0.4;
}

@media (max-width: 576px) {
  .tm-gallery {
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 100px;
  }
  .tm-video-item figcaption {
    padding: 1em;
    font-size: 1em;
  }
  figure.effect-ming h2 {
    font-size: 1em;
  }
  figure.effect-ming figcaption::before {
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.2);
  }
}
.img-description {
  text-align: left;
  font-weight: bold;
  transition: color 0.3s ease;
  cursor: pointer;
}

.img-description:hover {
  color: #1e73be;
}

.bestselling-section {
  padding-block: 50px;
}
.bestselling-section .title-section {
  padding: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.bestselling-section .title-section .slider-nav .my-carousel-prev, .bestselling-section .title-section .slider-nav .my-carousel-next {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid #2c8d2b;
  color: #2c8d2b;
  background-color: #FFFFFF;
}
.bestselling-section .title-section .slider-nav .my-carousel-prev:hover, .bestselling-section .title-section .slider-nav .my-carousel-next:hover {
  background-color: #2c8d2b;
  color: #FFFFFF;
}
.bestselling-section .product-section .owl-one .item .card {
  width: 95%;
  height: 720px;
  margin: 0 auto;
  border: 1px solid #f1f1f1;
  border-radius: 8px 8px 0 0;
}
.bestselling-section .product-section .owl-one .item .card .card-img {
  height: 40%;
  overflow: hidden;
  border-radius: 0;
}
.bestselling-section .product-section .owl-one .item .card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.bestselling-section .product-section .owl-one .item .card .card-img img:hover {
  transform: scale(1.1);
  transition: transform 0.5s;
}
@media only screen and (max-width: 1024px) {
  .bestselling-section .product-section .owl-one .item .card .card-img {
    height: 30%;
  }
}
.bestselling-section .product-section .owl-one .item .card .card-body {
  height: 60%;
  padding: 1.5rem 1.6rem;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bestselling-section .product-section .owl-one .item .card .card-body .card-description {
  overflow: hidden;
}
.bestselling-section .product-section .owl-one .item .card .card-body .card-description .card-title {
  font-size: 1.5rem;
  font-weight: 600;
}
.bestselling-section .product-section .owl-one .item .card .card-body .card-description .card-title a {
  color: #2c8d2b;
}
.bestselling-section .product-section .owl-one .item .card .card-body .card-description .card-title a:hover {
  color: #1e73be;
}
.bestselling-section .product-section .owl-one .item .card .card-body .card-description .card-text {
  max-height: 40%;
  overflow: hidden;
  font-size: 1rem;
  color: rgba(51, 51, 51, 0.8588235294);
  margin-bottom: 10px;
}
.bestselling-section .product-section .owl-one .item .card .card-body .card-description .section {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.bestselling-section .product-section .owl-one .item .card .card-body .card-description .section span {
  color: #20661f;
}
.bestselling-section .product-section .owl-one .item .card .card-body .card-description .card-info {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.bestselling-section .product-section .owl-one .item .card .card-body .card-description .card-info i {
  margin-right: 8px;
  color: #F5811F;
}
.bestselling-section .product-section .owl-one .item .card .card-body .card-description .card-info .title {
  font-weight: 600;
  margin-right: 5px;
  margin-block: 0px;
}
.bestselling-section .product-section .owl-one .item .card .card-body .card-description .card-info .info {
  font-weight: 500;
}
.bestselling-section .product-section .owl-one .item .card .card-body .card-description .card-info .info a {
  color: #000000;
}
@media only screen and (max-width: 1024px) {
  .bestselling-section .product-section .owl-one .item .card .card-body .card-description .card-info {
    font-size: 1rem;
  }
}
.bestselling-section .product-section .owl-one .item .card .card-body .my-btn {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .bestselling-section .product-section .owl-one .item .card {
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .bestselling-section {
    padding-block: 20px;
  }
  .bestselling-section .title-section .title h2 {
    font-size: 24px;
    padding-left: 50px;
  }
  .bestselling-section .title-section .title h2::before {
    width: 30px;
    height: 2px;
  }
  .bestselling-section .title-section .title h2::after {
    left: 30px;
    width: 12px;
    height: 12px;
  }
  .bestselling-section .title-section .slider-nav .my-carousel-prev, .bestselling-section .title-section .slider-nav .my-carousel-next {
    width: 2rem;
    height: 2rem;
  }
}

.destination_section {
  width: 100%;
}
.destination_section .destination_container {
  width: 100%;
  height: 450px;
  background-size: cover;
  background-position: center;
  display: flex;
}
@media (max-width: 576px) {
  .destination_section .destination_container {
    height: 350px;
  }
}
.destination_section .destination_container .banner-text {
  display: flex;
  justify-content: left;
  align-items: end;
}
.destination_section .destination_container .banner-text h2 {
  margin-left: 120px;
  background-color: #fff;
  padding: 10px 20px;
}
@media (max-width: 570px) {
  .destination_section .destination_container .banner-text h2 {
    margin-left: 60px;
    padding: 5px 10px;
    font-size: 20px;
  }
}
.destination_section img {
  width: 100%;
  height: 100%;
  aspect-ratio: 8/5;
  border-radius: 10px;
  object-fit: cover;
  transition: box-shadow 0.3s ease;
}
.destination_section img:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
}
.destination_section .hover-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.5rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.destination_section .item:hover .hover-text {
  opacity: 1;
}
.destination_section .main-col,
.destination_section .item {
  height: 100%;
  position: relative;
}
@media (max-width: 500px) {
  .destination_section .h-50 {
    margin-top: 3px;
  }
}

.trip-month {
  padding: 40px 0;
}
.trip-month .title {
  margin-bottom: 20px;
}
.trip-month .trip-body {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.trip-month .trip-body .trip-image {
  display: flex;
  background-color: #2c8d2b;
  width: 100%;
  border-top-left-radius: 120rem;
  border-bottom-left-radius: 120rem;
  border-top-right-radius: 120rem;
  border-bottom-right-radius: 120rem;
}
.trip-month .trip-body .trip-image img {
  float: right;
  height: 520px;
  aspect-ratio: 5/4;
  object-fit: cover;
  border: 0.5rem solid #2c8d2b;
  border-radius: 120rem;
}
@media only screen and (max-width: 1024px) {
  .trip-month .trip-body .trip-image img {
    height: 320px;
  }
}
@media only screen and (max-width: 767px) {
  .trip-month .trip-body .trip-image img {
    max-width: 100%;
    height: auto;
  }
}
.trip-month .trip-body .trip-image .trip-description {
  margin-block: 4rem;
  margin-inline-start: 4rem;
  width: 100%;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  text-align: end;
}
.trip-month .trip-body .trip-image .trip-description .trip-heading {
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
}
@media only screen and (max-width: 1024px) {
  .trip-month .trip-body .trip-image .trip-description .trip-heading {
    font-size: 26px;
    text-align: right;
  }
}
@media only screen and (max-width: 767px) {
  .trip-month .trip-body .trip-image .trip-description .trip-heading {
    font-size: 26px;
    text-align: center;
    margin-block: 2rem;
    color: #000000;
  }
}
.trip-month .trip-body .trip-image .trip-description .trip-about {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 2rem;
}
.trip-month .trip-body .trip-image .trip-description .trip-about .item {
  display: flex;
  font-size: 24px;
  font-weight: 600;
  color: #FFFFFF;
}
.trip-month .trip-body .trip-image .trip-description .trip-about .item i {
  font-size: 36px;
  margin-right: 8px;
  color: #FFFFFF;
}
@media only screen and (max-width: 1024px) {
  .trip-month .trip-body .trip-image .trip-description .trip-about .item i {
    font-size: 26px;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .trip-month .trip-body .trip-image .trip-description .trip-about .item i {
    font-size: 26px;
    text-align: center;
    color: #F5811F;
  }
}
.trip-month .trip-body .trip-image .trip-description .trip-about .item .text {
  display: flex;
  flex-direction: column;
}
.trip-month .trip-body .trip-image .trip-description .trip-about .item .text .main-text {
  font-size: 16px;
}
.trip-month .trip-body .trip-image .trip-description .trip-about .item .text .info-text {
  font-size: 20px;
}
@media only screen and (max-width: 1024px) {
  .trip-month .trip-body .trip-image .trip-description .trip-about .item .text {
    font-size: 26px;
    text-align: center;
  }
  .trip-month .trip-body .trip-image .trip-description .trip-about .item .text .main-text {
    font-size: 14px;
  }
  .trip-month .trip-body .trip-image .trip-description .trip-about .item .text .info-text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .trip-month .trip-body .trip-image .trip-description .trip-about .item .text {
    font-size: 26px;
    text-align: center;
    color: #000000;
  }
  .trip-month .trip-body .trip-image .trip-description .trip-about .item .text .main-text {
    font-size: 14px;
  }
  .trip-month .trip-body .trip-image .trip-description .trip-about .item .text .info-text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .trip-month .trip-body .trip-image .trip-description .trip-about {
    justify-content: center;
    margin-bottom: 2rem;
  }
}
.trip-month .trip-body .trip-image .trip-description .trip-button {
  display: flex;
  justify-content: end;
  gap: 1rem;
}
.trip-month .trip-body .trip-image .trip-description .trip-button .my-btn {
  width: max-content;
  height: max-content;
  background-color: #FFFFFF;
  font-size: 16px;
  color: #2c8d2b;
}
@media only screen and (max-width: 1024px) {
  .trip-month .trip-body .trip-image .trip-description .trip-button .my-btn {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .trip-month .trip-body .trip-image .trip-description .trip-button .my-btn {
    font-size: 14px;
    color: #FFFFFF;
    background-color: #2c8d2b;
  }
}
@media only screen and (max-width: 767px) {
  .trip-month .trip-body .trip-image .trip-description .trip-button {
    align-items: center;
    flex-direction: column;
  }
}
@media only screen and (max-width: 1024px) {
  .trip-month .trip-body .trip-image .trip-description {
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .trip-month .trip-body .trip-image .trip-description {
    margin: 0;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .trip-month .trip-body .trip-image {
    background-color: transparent;
    flex-wrap: wrap-reverse;
    height: max-content;
    border-bottom-left-radius: 110rem;
    border-bottom-right-radius: 110rem;
  }
}

.review-section {
  padding-block: 50px;
}
.review-section .title-section {
  padding: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.review-section .title-section .title h3 {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
}
.review-section .product-section .owl-two .item {
  height: 360px;
}
.review-section .product-section .owl-two .item .card {
  width: 95%;
  padding: 20px;
  height: inherit;
  margin: 0 auto;
  border: 1px solid #f1f1f1;
  border-radius: 8px;
}
.review-section .product-section .owl-two .item .card .review-header {
  height: 30%;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.review-section .product-section .owl-two .item .card .review-header img {
  width: 100px !important;
  height: 100px;
  object-fit: cover;
  margin-right: 15px;
  margin-bottom: 0;
  margin-top: 0;
  border-radius: 100%;
}
@media only screen and (max-width: 1024px) {
  .review-section .product-section .owl-two .item .card .review-header img {
    width: 60px !important;
    height: 60px !important;
  }
}
.review-section .product-section .owl-two .item .card .review-header .review-user {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 1px;
  display: flex;
  flex-direction: column;
}
.review-section .product-section .owl-two .item .card .review-header .review-user .name {
  font-size: 18px;
  font-weight: 600;
}
.review-section .product-section .owl-two .item .card .review-header .review-user .country {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.7);
}
.review-section .product-section .owl-two .item .review-body {
  height: 80%;
  overflow: hidden;
}
.review-section .product-section .owl-two .item .review-body .comment-title {
  font-weight: 600;
  color: #2c8d2b;
  font-family: "Poppins", sans-serif;
  margin-bottom: 5px;
}
.review-section .product-section .owl-two .item .review-body .comment-title h5 {
  font-size: 24px;
}
.review-section .product-section .owl-two .item .review-body .comment-title .date {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
}
.review-section .product-section .owl-two .item .review-body .comment-title .date i {
  margin-right: 8px;
}
.review-section .product-section .owl-two .item .review-body .comment-body {
  font-size: 15px;
  line-height: 24px;
  color: #3b3b3b;
}
.review-section .product-section .owl-two .item .review-body .fa-star {
  font-size: 14px;
  color: #fcbf02;
}
@media only screen and (max-width: 767px) {
  .review-section .product-section .owl-two .item {
    height: auto;
  }
}
.review-section .product-section .owl-two .owl-nav button {
  border-radius: 50%;
  color: #2c8d2b;
  background-color: #FFFFFF;
  vertical-align: middle;
}
.review-section .product-section .owl-two .owl-nav button:hover {
  background-color: #2c8d2b;
  color: #FFFFFF;
}
.review-section .product-section .owl-two .owl-nav button span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 1.5rem;
  border: 2px solid #2c8d2b;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .review-section {
    padding: 20px 10px;
  }
  .review-section .title-section .title h3 {
    font-size: 24px;
  }
  .review-section .title-section .my-btn {
    margin-top: 12px;
  }
}

.blog-section {
  padding-block: 50px;
}
.blog-section .title-section {
  padding: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.blog-section i {
  margin-right: 5px;
}
.blog-section .blog-main {
  height: 100%;
  font-family: "Poppins", sans-serif;
}
.blog-section .blog-main .blog-item {
  position: relative;
  height: 100%;
}
.blog-section .blog-main .blog-item img {
  height: 100%;
  width: 100%;
  aspect-ratio: 8/5;
  border-radius: 10px;
}
.blog-section .blog-main .blog-item .blog-overlay {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 100px 2rem 2rem;
  border-radius: 10px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), transparent);
  color: #fff;
}
.blog-section .blog-main .blog-item .blog-overlay .blog-date {
  font-size: 1rem;
  margin-bottom: 8px;
}
.blog-section .blog-main .blog-item .blog-overlay .blog-date a {
  color: #FFFFFF;
}
.blog-section .blog-main .blog-item .blog-overlay .blog-title {
  font-size: 2rem;
}
.blog-section .blog-main .blog-item .blog-overlay .blog-title a {
  color: #FFFFFF;
}
.blog-section .blog-main .blog-item .blog-overlay .blog-title a :hover {
  color: #2c8d2b;
}
.blog-section .blog-list {
  height: 100%;
  font-family: "Poppins", sans-serif;
  display: grid;
  gap: 25px;
}
.blog-section .blog-list .blog-listitem {
  display: flex;
  align-items: center;
}
.blog-section .blog-list .blog-listitem .blog-thumbnail {
  width: 30%;
}
.blog-section .blog-list .blog-listitem .blog-thumbnail img {
  width: 100%;
  aspect-ratio: 8/5;
  object-fit: cover;
  border-radius: 10px;
}
.blog-section .blog-list .blog-listitem .blog-content {
  width: 70%;
  margin-left: 15px;
}
.blog-section .blog-list .blog-listitem .blog-content .blog-date {
  font-size: 1rem;
}
.blog-section .blog-list .blog-listitem .blog-content .blog-date a {
  color: #1e73be;
}
.blog-section .blog-list .blog-listitem .blog-content .blog-title {
  margin-top: 8px;
  font-size: 1.5rem;
  font-weight: 600;
}
.blog-section .blog-list .blog-listitem .blog-content .blog-title a {
  color: #3b3b3b;
}
.blog-section .blog-list .blog-listitem .blog-content .blog-title a:hover {
  color: #2c8d2b;
}
@media only screen and (max-width: 767px) {
  .blog-section {
    padding: 20px 10px;
  }
  .blog-section .title-section .my-btn {
    margin-top: 10px;
  }
  .blog-section .blog-main .blog-item .blog-overlay {
    padding: 50px 1rem 1rem;
  }
  .blog-section .blog-main .blog-item .blog-overlay .blog-date {
    font-size: 0.9rem;
  }
  .blog-section .blog-main .blog-item .blog-overlay .blog-title {
    font-size: 1.3rem;
  }
  .blog-section .blog-list .blog-listitem {
    flex-direction: column;
  }
  .blog-section .blog-list .blog-listitem .blog-thumbnail {
    width: 100%;
    margin-bottom: 10px;
  }
  .blog-section .blog-list .blog-listitem .blog-content {
    width: 90%;
    margin: 0;
  }
  .blog-section .blog-list .blog-listitem .blog-content .blog-date {
    font-size: 1rem;
  }
  .blog-section .blog-list .blog-listitem .blog-content .blog-title {
    font-size: 1.5rem;
  }
}

.about-us {
  font-family: "Poppins", sans-serif;
}
.about-us .image-container {
  position: relative;
  text-align: center;
}
.about-us .image-container img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}
.about-us .image-container .image-title {
  position: absolute;
  bottom: 11px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  padding: 50px 10px;
  border-radius: 5px;
  font-size: 52px;
  font-weight: bold;
}
@media (max-width: 500px) {
  .about-us .image-container .image-title {
    font-size: 40px;
  }
}
@media (max-width: 350px) {
  .about-us .image-container .image-title {
    font-size: 30px;
  }
}
.about-us .description {
  margin: 50px 150px;
}
@media (max-width: 500px) {
  .about-us .description {
    margin: 20px 50px;
  }
}
.about-us .description p {
  margin: 20px 0;
  font-size: 18px;
}

.our-team {
  margin: 50px 150px;
  text-align: center;
}
.our-team h2 {
  text-align: left;
  margin-bottom: 20px;
  color: #2c8d2b;
}
@media (max-width: 400px) {
  .our-team h2 {
    font-size: 17px;
  }
}
@media (max-width: 350px) {
  .our-team h2 {
    font-size: 15px;
    text-align: center;
  }
}
.our-team .underline2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.our-team .underline2::before, .our-team .underline2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 15px;
  width: 50px;
  height: 3px;
  background-color: #2c8d2b;
}
@media (max-width: 400px) {
  .our-team .underline2::before, .our-team .underline2::after {
    bottom: 10px;
    height: 2px;
  }
}
@media (max-width: 350px) {
  .our-team .underline2::before, .our-team .underline2::after {
    bottom: 10px;
    height: 2px;
  }
}
.our-team .underline2::before {
  left: 480px;
  right: 0;
  margin-right: 10px;
}
.our-team .underline2::after {
  right: 480px;
  left: auto;
  margin-left: 10px;
}
@media (max-width: 768px) {
  .our-team .underline2::before {
    left: 350px;
    right: 0;
    margin-right: 10px;
  }
  .our-team .underline2::after {
    right: 350px;
    left: auto;
    margin-left: 10px;
  }
}
@media (max-width: 576px) {
  .our-team .underline2::before {
    left: 150px;
    right: 0;
    margin-right: 10px;
  }
  .our-team .underline2::after {
    right: 150px;
    left: auto;
    margin-left: 10px;
  }
}
@media (max-width: 400px) {
  .our-team .underline2::before {
    left: 0;
    right: 0;
    margin-right: 10px;
  }
  .our-team .underline2::after {
    right: 0;
    left: auto;
    margin-left: 10px;
  }
}
@media (max-width: 350px) {
  .our-team .underline2::before {
    left: 50px;
    right: 0;
    margin-right: 10px;
  }
  .our-team .underline2::after {
    right: 50px;
    left: auto;
    margin-left: 10px;
  }
}
.our-team .team-members {
  display: flex;
  justify-content: center;
}
.our-team .team-members .team-member {
  margin: 0 20px;
}
.our-team .team-members .team-member .circle-image {
  width: 200px;
  height: 200px;
  overflow: hidden;
  margin: 0 auto 10px;
}
.our-team .team-members .team-member .circle-image img {
  width: 100%;
  height: auto;
}
@media (max-width: 576px) {
  .our-team .team-members .team-member .circle-image {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 350px) {
  .our-team .team-members .team-member .circle-image {
    width: 100px;
    height: 100px;
  }
}
.our-team .team-members .team-member a {
  color: #2c8d2b;
}
.our-team .team-members .team-member .name {
  font-weight: bold;
  font-size: 20px;
}
@media (max-width: 400px) {
  .our-team .team-members .team-member .name {
    font-size: 16px;
  }
}
@media (max-width: 350px) {
  .our-team .team-members .team-member .name {
    font-size: 14px;
  }
}
.our-team .team-members .team-member .position {
  color: gray;
  margin-bottom: 10px;
}
@media (max-width: 400px) {
  .our-team .team-members .team-member .position {
    font-size: 16px;
  }
}
@media (max-width: 350px) {
  .our-team .team-members .team-member .position {
    font-size: 14px;
  }
}
.our-team .view-btn {
  display: flex;
  justify-content: center;
  width: max-content;
  margin-inline: auto;
}
@media (max-width: 500px) {
  .our-team .view-btn a {
    font-size: 12px;
    width: max-content;
  }
}
@media (max-width: 400px) {
  .our-team .view-btn a {
    font-size: 10px;
  }
}
.our-team .view-btn .my-btn {
  width: max-content;
  height: max-content;
  padding: 0.2rem 0.2rem;
}
@media (max-width: 500px) {
  .our-team .view-btn .my-btn {
    height: 40px;
    padding: 0.2rem 0.5rem;
  }
  .our-team .view-btn .my-btn i {
    margin: 0;
    margin-left: 3px;
  }
}
@media (max-width: 500px) {
  .our-team {
    margin: 20px 50px;
  }
}

.why-us {
  margin: 50px 150px;
}
@media (max-width: 500px) {
  .why-us {
    margin: 20px 50px;
  }
}
.why-us h2 {
  text-align: left;
  margin-bottom: 20px;
  color: #2c8d2b;
  padding-left: 120px;
}
@media (max-width: 768px) {
  .why-us h2 {
    padding-left: 90px;
  }
}
@media (max-width: 350px) {
  .why-us h2 {
    padding-left: 70px;
  }
}
.why-us .title {
  margin-block: 10px;
}
.why-us .title h2 {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  font-weight: 500;
}
.why-us h1 {
  color: #1e73be;
}
.why-us p {
  font-size: 18px;
}
.why-us .row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.why-us .row .column {
  flex: 1;
  padding: 10px;
  min-width: 200px;
}
.why-us .row:nth-child(2) .column {
  flex: 1 0 25%;
}
.why-us i {
  font-size: 50px;
}
.why-us h4 {
  margin: 10px 0;
}

.trip-title {
  font-family: "Poppins", sans-serif;
}
.trip-title .image {
  width: 100%;
  display: flex;
  justify-content: center;
}
.trip-title .image figure {
  margin: auto;
}
.trip-title .image figure img {
  width: 100dvw;
  max-height: 750px;
  aspect-ratio: 12/5;
  object-fit: cover;
}
.trip-title .breadcrumb {
  padding: 8px;
  margin: 0;
}
.trip-title .breadcrumb .breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.trip-title .breadcrumb .breadcrumb-list li {
  color: rgba(17, 17, 17, 0.5607843137);
  margin: 0;
  transition: linear 0.2s;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}
.trip-title .breadcrumb .breadcrumb-list li a {
  color: rgba(17, 17, 17, 0.5607843137);
}
.trip-title .breadcrumb .breadcrumb-list li i {
  padding-inline: 10px;
}
.trip-title .breadcrumb .breadcrumb-list li:last-child a {
  color: #000;
}
.trip-title .breadcrumb .breadcrumb-list li:last-child i {
  display: none;
}
.trip-title .title-section h1 {
  font-weight: 600;
  color: #2c8d2b;
}
.trip-title .title-section span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e73be;
}
.trip-title .title-section span i {
  margin-right: 5px;
}
.trip-title .title-section .review {
  font-size: 1rem;
}
.trip-title .title-section .review i {
  color: #fcbf02;
}
.trip-title .title-section .nav-btns {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}
.trip-title .title-section .nav-btns .my-btn {
  width: max-content;
  height: max-content;
  font-weight: 600;
  background-color: #FFFFFF;
  color: #2c8d2b;
  border: 3px solid #2c8d2b;
}
.trip-title .title-section .nav-btns .my-btn:hover {
  background-color: #2c8d2b;
  color: #FFFFFF;
}
@media only screen and (max-width: 991px) {
  .trip-title .title-section .nav-btns {
    justify-content: center;
  }
  .trip-title .title-section .nav-btns .my-btn {
    height: max-content;
    font-size: 0.9rem;
  }
}
.trip-title .sticky-nav {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  margin: 0 !important;
  padding-top: 10px;
  z-index: 9999;
}
.trip-title .sub-nav {
  margin-block: 20px;
  border-bottom: 5px solid #2c8d2b;
  padding-inline: 3%;
}
.trip-title .sub-nav .header {
  height: 60px;
  display: none;
  align-items: center;
  justify-content: space-between;
}
.trip-title .sub-nav .header .header-title {
  color: #2c8d2b;
}
.trip-title .sub-nav .header .nav-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trip-title .sub-nav .header .nav-btns .my-btn {
  width: max-content;
  height: max-content;
}
@media only screen and (max-width: 991px) {
  .trip-title .sub-nav .header .nav-btns {
    margin-block: 1rem;
  }
  .trip-title .sub-nav .header .nav-btns .my-btn {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 991px) {
  .trip-title .sub-nav .header {
    display: none !important;
  }
}
.trip-title .sub-nav nav {
  width: 100%;
  height: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.trip-title .sub-nav nav ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: scroll;
  scrollbar-width: none;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  gap: 1rem;
}
.trip-title .sub-nav nav ul li {
  height: 100%;
}
.trip-title .sub-nav nav ul li a {
  height: 100%;
  border-radius: 5px 5px 0 0;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
}
.trip-title .sub-nav nav ul li a i {
  margin-right: 8px;
}
.trip-title .sub-nav nav ul li > a.active {
  background-color: #2c8d2b;
  color: #FFFFFF;
}
@media only screen and (max-width: 991px) {
  .trip-title .sub-nav nav {
    height: 100%;
  }
  .trip-title .sub-nav nav ul {
    display: flex;
    flex-direction: column;
    max-height: 50px;
  }
  .trip-title .sub-nav nav ul li {
    height: 100%;
  }
}

.innerpage .sticky-sidebar {
  font-family: "Poppins", sans-serif;
  top: 140px;
  margin-bottom: 50px;
  border-radius: 10px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
}
.innerpage .sticky-sidebar .query-title {
  color: #1e73be;
  font-size: 2rem;
  font-weight: 600;
}
.innerpage .sticky-sidebar .query-title i {
  margin-right: 12px;
}
.innerpage .sticky-sidebar .my-btn {
  background-color: #1e73be;
  width: 100%;
  font-size: 0.9rem;
}
.innerpage .sticky-sidebar label {
  font-weight: 600;
}
.innerpage .sticky-sidebar input, .innerpage .sticky-sidebar textarea {
  border: 1px solid #1e73be;
  box-shadow: none;
}

.innerpage hr {
  color: #1e73be;
  margin: 0;
}
.innerpage .modal {
  font-family: "Poppins", sans-serif;
}
.innerpage .modal .modal-title i {
  margin-right: 8px;
}
.innerpage .modal .modal-body p {
  margin-bottom: 12px;
}
.innerpage .modal .modal-body p b {
  color: #1e73be;
}
.innerpage .modal .modal-body form label {
  font-weight: 600;
}
.innerpage .modal .modal-body form .my-btn {
  background-color: #2c8d2b;
}
.innerpage .facts-section .info p {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  line-height: 2rem;
  margin-block: 12px;
}
.innerpage .facts-section .info p a {
  color: #1e73be;
  font-weight: 600;
}
.innerpage .facts-section .trip-facts {
  padding-block: 20px;
}
.innerpage .facts-section .trip-facts .title h2 {
  color: #1e73be;
}
.innerpage .facts-section .trip-facts .title h2::before {
  background-color: #1e73be;
}
.innerpage .facts-section .trip-facts .title h2::after {
  background-color: #1e73be;
  border-color: #1e73be;
}
.innerpage .facts-section .trip-facts .facts {
  font-family: "Poppins", sans-serif;
  padding: 0 1.5rem;
}
.innerpage .facts-section .trip-facts .facts .facts-item {
  text-align: center;
}
.innerpage .facts-section .trip-facts .facts .facts-item figure {
  font-size: 2rem;
  color: #F5811F;
}
.innerpage .facts-section .trip-facts .facts .facts-item figure figcaption {
  font-size: 1.2rem;
  color: #000000;
  line-height: 1.8rem;
}
.innerpage .facts-section .trip-facts .facts .facts-item figure figcaption p {
  margin: 0;
  font-weight: 600;
}
.innerpage .facts-section .trip-facts .facts .facts-item figure figcaption span {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.7);
}
.innerpage .facts-section .trip-highlights {
  padding-block: 20px;
}
.innerpage .facts-section .trip-highlights .title h2 {
  color: #1e73be;
}
.innerpage .facts-section .trip-highlights .title h2::before {
  background-color: #1e73be;
}
.innerpage .facts-section .trip-highlights .title h2::after {
  background-color: #1e73be;
  border-color: #1e73be;
}
.innerpage .facts-section .trip-highlights .highlights {
  font-family: "Poppins", sans-serif;
  padding: 0 1.5rem;
}
.innerpage .facts-section .trip-highlights .highlights ul li {
  position: relative;
  margin-bottom: 10px;
  font-weight: 600;
}
.innerpage .facts-section .trip-highlights .highlights ul li::before {
  font-size: 22px;
  color: #F5811F;
  line-height: 0;
  content: "››";
  position: relative;
  top: 0;
  margin-right: 10px;
}

.innerpage .overview-section {
  padding-block: 20px;
}
.innerpage .overview-section .trip-overview .overview-content p {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  line-height: 2rem;
  margin-block: 12px;
}
.innerpage .overview-section .trip-overview .overview-content p a {
  color: #1e73be;
  font-weight: 600;
}

.innerpage .gallery-section {
  padding: 20px 0;
}
.innerpage .gallery-section .gallery-content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 5px;
  max-height: 569px;
}
.innerpage .gallery-section .gallery-content .gallery-img {
  cursor: pointer;
  grid-column: span 3;
  margin: 0;
  display: block;
  width: 100%;
  height: 282px;
}
.innerpage .gallery-section .gallery-content .gallery-img:nth-child(3) {
  grid-row: span 2;
  grid-column: span 6;
  width: 100%;
  height: auto;
}
.innerpage .gallery-section .gallery-content .gallery-img img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
@media only screen and (max-width: 767px) {
  .innerpage .gallery-section {
    padding-inline: 8px;
  }
  .innerpage .gallery-section .gallery-content .gallery-img {
    height: 148px;
  }
  .innerpage .gallery-section .gallery-content .gallery-img:first-child {
    grid-row: span 1;
    grid-column: span 12;
  }
}

.innerpage .itinerary-section {
  padding-block: 20px;
}
.innerpage .itinerary-section .title h2 {
  color: #1e73be;
}
.innerpage .itinerary-section .title h2::before {
  background-color: #1e73be;
}
.innerpage .itinerary-section .title h2::after {
  background-color: #1e73be;
  border-color: #1e73be;
}
.innerpage .itinerary-section .itinerary-body {
  font-family: "Poppins", sans-serif;
  padding-bottom: 20px;
}
.innerpage .itinerary-section .itinerary-body .expand-item {
  margin-bottom: 10px;
  padding-block: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.innerpage .itinerary-section .itinerary-body .expand-item .header {
  margin: 0.5rem 0;
}
.innerpage .itinerary-section .itinerary-body .expand-item .header .header-text {
  display: flex;
  gap: 0 0.5rem;
  justify-content: space-between;
}
.innerpage .itinerary-section .itinerary-body .expand-item .header .header-text:hover {
  color: #2c8d2b;
  cursor: pointer;
}
.innerpage .itinerary-section .itinerary-body .expand-item .header .header-text h3 {
  font-size: 1rem;
  display: flex;
  align-items: center;
  line-height: 1.5;
}
.innerpage .itinerary-section .itinerary-body .expand-item .header .header-text h3 span {
  min-width: 86px;
  background: #F5811F;
  padding: 8px 10px;
  color: #FFFFFF;
  border-radius: 5px;
  margin-right: 20px;
}
.innerpage .itinerary-section .itinerary-body .expand-item .content {
  padding: 0.5rem 0;
}
.innerpage .itinerary-section .itinerary-body .expand-item .content .content-header {
  margin-bottom: 0.8rem;
  padding: 1rem 1.5rem;
  background-color: #f1f1f1;
  border-radius: 5px;
}
.innerpage .itinerary-section .itinerary-body .expand-item .content .content-header ul {
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  color: rgba(0, 0, 0, 0.9);
  gap: 1rem 4rem;
}
.innerpage .itinerary-section .itinerary-body .expand-item .content .content-header ul li i {
  margin-right: 8px;
  color: #1e73be;
  font-size: 1.2rem;
  font-weight: 600;
}
.innerpage .itinerary-section .itinerary-body .expand-item .content .content-body p {
  margin-bottom: 1rem;
  letter-spacing: 0.02rem;
}
.innerpage .itinerary-section .itinerary-body .expand-item .content .content-body p strong {
  color: #2c8d2b;
}
.innerpage .itinerary-section .itinerary-body .expand-item .content .content-body .content-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e73be;
}
.innerpage .itinerary-section .itinerary-body .expand-item .content .content-body table th, .innerpage .itinerary-section .itinerary-body .expand-item .content .content-body table td {
  padding: 1rem;
}
.innerpage .itinerary-section .itinerary-body .expand-item .content .content-body .note {
  font-weight: 600;
  color: #2c8d2b;
}

.innerpage .included-section {
  padding-bottom: 20px;
}
.innerpage .included-section .title h2 {
  color: #1e73be;
}
.innerpage .included-section .title h2::before {
  background-color: #1e73be;
}
.innerpage .included-section .title h2::after {
  background-color: #1e73be;
  border-color: #1e73be;
}
.innerpage .included-section .included-body {
  font-family: "Poppins", sans-serif;
  display: flex;
}
.innerpage .included-section .included-body .include-col, .innerpage .included-section .included-body .not-include-col {
  width: 50%;
  padding: 1.5rem 2rem;
}
.innerpage .included-section .included-body .include-col .include-title h2, .innerpage .included-section .included-body .not-include-col .include-title h2 {
  font-weight: 700;
}
.innerpage .included-section .included-body .include-col {
  border-radius: 1rem 0rem 0rem 1rem;
}
.innerpage .included-section .included-body .include-col .include-title h2 {
  color: #143f13;
  margin-bottom: 0.5rem;
}
.innerpage .included-section .included-body .include-col .include-body .included-item li::before {
  content: "\f058";
  margin-right: 1rem;
  font-family: "Font Awesome 5 Free";
  font-size: 1rem;
  color: #2c8d2b;
  opacity: 0.7;
  font-weight: 900;
}
.innerpage .included-section .included-body .not-include-col {
  border-radius: 0rem 1rem 1rem 0rem;
}
.innerpage .included-section .included-body .not-include-col .include-title h2 {
  color: #990000;
  margin-bottom: 0.5rem;
}
.innerpage .included-section .included-body .not-include-col .not-included-item li::before {
  content: "\f057";
  margin-right: 1rem;
  font-family: "Font Awesome 5 Free";
  font-size: 1rem;
  color: red;
  opacity: 0.6;
  font-weight: 900;
}
.innerpage .included-section .included-body .include-body {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  line-height: 2rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .innerpage .included-section .included-body {
    flex-direction: column;
    row-gap: 1rem;
  }
  .innerpage .included-section .included-body .include-col, .innerpage .included-section .included-body .not-include-col {
    width: 100%;
    border-radius: 1rem;
  }
}

.innerpage .dates-section {
  padding-block: 20px;
}
.innerpage .dates-section .dates-body {
  font-family: "Poppins", sans-serif;
}
.innerpage .dates-section .dates-body p {
  margin-bottom: 1rem;
}
.innerpage .dates-section .dates-body form {
  margin-bottom: 1rem;
}
.innerpage .dates-section .dates-body form label {
  color: #1e73be;
  font-size: 1.1rem;
  font-weight: 600;
  margin-right: 0.5rem;
}
.innerpage .dates-section .dates-body form select {
  border: 2px solid #1e73be;
  border-radius: 5px;
}
.innerpage .dates-section .dates-body .dates-list {
  margin-bottom: 1rem;
}
.innerpage .dates-section .dates-body .dates-list .date-items .item {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  font-weight: 600;
  border-bottom: 1px solid #1e73be;
}
.innerpage .dates-section .dates-body .dates-list .date-items .item .date-col {
  width: 40%;
}
.innerpage .dates-section .dates-body .dates-list .date-items .item .price-col {
  width: 20%;
}
.innerpage .dates-section .dates-body .dates-list .date-items .item .availability-col {
  width: 20%;
  color: #2c8d2b;
}
.innerpage .dates-section .dates-body .dates-list .date-items .item .my-btn {
  width: 20%;
  height: 2.5rem;
  background-color: #FFFFFF;
  color: #1e73be;
  border: 2px solid #1e73be;
}
.innerpage .dates-section .dates-body .dates-list .date-items .item .my-btn:hover {
  background-color: #1e73be;
  color: #FFFFFF;
}
@media only screen and (max-width: 767px) {
  .innerpage .dates-section .dates-body .dates-list .date-items .item .availability-col {
    display: none;
  }
  .innerpage .dates-section .dates-body .dates-list .date-items .item .my-btn {
    width: 40%;
  }
}
.innerpage .dates-section .dates-body .alert {
  margin-bottom: 0;
  padding: 1rem;
}
.innerpage .dates-section .dates-body .alert .privatetrip-content .privatetrip-heading {
  font-size: 2rem;
  margin-bottom: 12px;
}
.innerpage .dates-section .dates-body .alert .privatetrip-content .my-btn {
  width: fit-content;
  height: 2rem;
  font-size: 14px;
  border-radius: 5px;
}
.innerpage .dates-section .dates-body .alert .privatetrip-form form .my-btn {
  background-color: #1e73be;
  width: 100%;
  font-size: 0.9rem;
}
.innerpage .dates-section .dates-body .alert .privatetrip-form form label {
  font-weight: 600;
}
.innerpage .dates-section .dates-body .alert .privatetrip-form form input, .innerpage .dates-section .dates-body .alert .privatetrip-form form textarea, .innerpage .dates-section .dates-body .alert .privatetrip-form form select {
  border: 1px solid #1e73be;
  box-shadow: none;
}
@media only screen and (max-width: 767px) {
  .innerpage .dates-section .dates-body .alert .my-btn {
    width: 100%;
  }
}

.innerpage .outline-section {
  padding-block: 20px;
}
.innerpage .outline-section .outline-body .row .item {
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}
.innerpage .outline-section .outline-body .row .item .day {
  font-size: 1.2rem;
  color: #F5811F;
  font-weight: 700;
}
.innerpage .outline-section .outline-body .row .item span {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.7);
}
@media only screen and (max-width: 767px) {
  .innerpage .outline-section .outline-body .row .item {
    font-size: 1.5rem;
  }
}

.innerpage .chart-section {
  padding: 20px 120px;
}
.innerpage .chart-section .chart-body {
  display: flex;
  row-gap: 2rem;
  margin-bottom: 20px;
}
.innerpage .chart-section .chart-body .map-col, .innerpage .chart-section .chart-body .altitude-col {
  width: 50%;
}
.innerpage .chart-section .chart-body .map-col .title h2, .innerpage .chart-section .chart-body .altitude-col .title h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.innerpage .chart-section .chart-body .map-col .chart, .innerpage .chart-section .chart-body .altitude-col .chart {
  height: 400px;
  box-shadow: 0 1px 2px rgba(11, 60, 93, 0.4), 0 -1px 2px rgba(11, 60, 93, 0.04);
}
.innerpage .chart-section .chart-body .map-col .chart img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .innerpage .chart-section {
    padding-inline: 10px;
  }
  .innerpage .chart-section .chart-body {
    flex-direction: column;
  }
  .innerpage .chart-section .chart-body .map-col, .innerpage .chart-section .chart-body .altitude-col {
    width: 100%;
  }
}

.innerpage .travelinfo-section {
  padding-block: 20px;
}
.innerpage .travelinfo-section .travelinfo-body {
  font-family: "Poppins", sans-serif;
}
.innerpage .travelinfo-section .travelinfo-body .info-content, .innerpage .travelinfo-section .travelinfo-body .faq {
  line-height: 2rem;
}
.innerpage .travelinfo-section .travelinfo-body .info-content .info-heading, .innerpage .travelinfo-section .travelinfo-body .faq .info-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-block: 10px;
}
.innerpage .travelinfo-section .travelinfo-body .info-content .info-body p {
  margin-bottom: 1rem;
  font-size: 1rem;
}
.innerpage .travelinfo-section .travelinfo-body .faq {
  padding: 20px 0px;
}
.innerpage .travelinfo-section .travelinfo-body .faq .title {
  font-family: "Roboto", sans-serif;
}
.innerpage .travelinfo-section .travelinfo-body .faq .faq-body {
  font-family: "Poppins", sans-serif;
  padding-bottom: 20px;
}
.innerpage .travelinfo-section .travelinfo-body .faq .faq-body .expand-item {
  margin-bottom: 10px;
  padding-block: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.innerpage .travelinfo-section .travelinfo-body .faq .faq-body .expand-item .header {
  margin: 0.5rem 0;
}
.innerpage .travelinfo-section .travelinfo-body .faq .faq-body .expand-item .header .header-text {
  display: flex;
  gap: 0 0.5rem;
  justify-content: space-between;
}
.innerpage .travelinfo-section .travelinfo-body .faq .faq-body .expand-item .header .header-text:hover {
  color: #2c8d2b;
  cursor: pointer;
}
.innerpage .travelinfo-section .travelinfo-body .faq .faq-body .expand-item .header .header-text h3 {
  font-size: 1rem;
  display: flex;
  align-items: center;
  line-height: 1.5;
}
.innerpage .travelinfo-section .travelinfo-body .faq .faq-body .expand-item .header .header-text h3 span {
  min-width: 86px;
  background: #F5811F;
  padding: 8px 10px;
  color: #FFFFFF;
  border-radius: 5px;
  margin-right: 20px;
}
.innerpage .travelinfo-section .travelinfo-body .faq .faq-body .expand-item .content {
  padding: 0.5rem 0;
}
.innerpage .travelinfo-section .travelinfo-body .faq .faq-body .expand-item .content .content-header {
  margin-bottom: 0.8rem;
  padding: 1rem 1.5rem;
  background-color: #f1f1f1;
  border-radius: 5px;
}
.innerpage .travelinfo-section .travelinfo-body .faq .faq-body .expand-item .content .content-header ul {
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  color: rgba(0, 0, 0, 0.9);
  gap: 1rem 4rem;
}
.innerpage .travelinfo-section .travelinfo-body .faq .faq-body .expand-item .content .content-header ul li i {
  margin-right: 8px;
  color: #1e73be;
  font-size: 1.2rem;
  font-weight: 600;
}
.innerpage .travelinfo-section .travelinfo-body .faq .faq-body .expand-item .content .content-body p {
  margin-bottom: 1rem;
  letter-spacing: 0.02rem;
}
.innerpage .travelinfo-section .travelinfo-body .faq .faq-body .expand-item .content .content-body p strong {
  color: #2c8d2b;
}
.innerpage .travelinfo-section .travelinfo-body .faq .faq-body .expand-item .content .content-body .content-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e73be;
}
.innerpage .travelinfo-section .travelinfo-body .faq .faq-body .expand-item .content .content-body table th, .innerpage .travelinfo-section .travelinfo-body .faq .faq-body .expand-item .content .content-body table td {
  padding: 1rem;
}
.innerpage .travelinfo-section .travelinfo-body .faq .faq-body .expand-item .content .content-body .note {
  font-weight: 600;
  color: #2c8d2b;
}

.single-review-section {
  padding-block: 20px;
}
.single-review-section .title-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.single-review-section .title-section .my-btn {
  width: max-content;
  margin-bottom: 1rem;
}
.single-review-section .review-item-section .item {
  font-family: "Poppins", sans-serif;
  margin-bottom: 2rem;
}
.single-review-section .review-item-section .item .card {
  width: 100%;
  padding: 20px;
  background-color: #f1f1f1;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  border: 1px solid #f1f1f1;
  border-radius: 8px;
}
.single-review-section .review-item-section .item .card .review-header {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.single-review-section .review-item-section .item .card .review-header img {
  width: 210px !important;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1024px) {
  .single-review-section .review-item-section .item .card .review-header img {
    width: 60px !important;
    height: 60px !important;
  }
}
.single-review-section .review-item-section .item .card .review-header .review-user {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 1px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.single-review-section .review-item-section .item .card .review-header .review-user .name {
  font-size: 18px;
  font-weight: 600;
}
.single-review-section .review-item-section .item .card .review-header .review-user .country {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.7);
}
.single-review-section .review-item-section .item .card .review-body .comment-title {
  font-weight: 600;
  color: #2c8d2b;
  margin-bottom: 1rem;
}
.single-review-section .review-item-section .item .card .review-body .comment-title h5 {
  font-size: 2rem;
}
.single-review-section .review-item-section .item .card .review-body .comment-title .date {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
}
.single-review-section .review-item-section .item .card .review-body .comment-title .date i {
  margin-right: 8px;
}
.single-review-section .review-item-section .item .card .review-body .comment-title .fa-star {
  font-size: 14px;
  color: #fcbf02;
}
.single-review-section .review-item-section .item .card .review-body .comment-body {
  font-size: 16px;
  line-height: 24px;
  color: #3b3b3b;
}
@media only screen and (max-width: 767px) {
  .single-review-section .review-item-section .item {
    height: auto;
  }
}

.contact-container {
  font-family: "Poppins", sans-serif;
  width: 90%;
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
}
.contact-container .contact-heading {
  text-align: center;
  color: #2c8d2b;
}
.contact-container .contact-description {
  text-align: center;
  margin: 20px 200px;
}
@media (max-width: 790px) {
  .contact-container .contact-description {
    margin: 20px 100px;
  }
}
@media (max-width: 450px) {
  .contact-container .contact-description {
    margin: 10px 10px;
  }
}
.contact-container .separator {
  border-top: 2px solid #ddd;
  margin: 30px 20px;
}
.contact-container .contact-details-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.contact-container .contact-details-form .contact-details {
  flex: 1;
  min-width: 280px;
  padding: 20px;
}
.contact-container .contact-details-form .contact-details h2 {
  color: #2c8d2b;
  margin-bottom: 20px;
}
.contact-container .contact-details-form .contact-details .para1 {
  margin-bottom: 20px;
}
.contact-container .contact-details-form .contact-details .para2 {
  margin-bottom: 20px;
}
.contact-container .contact-details-form .contact-details h6 {
  font-size: 18px;
}
.contact-container .contact-details-form .contact-details i {
  color: #F5811F;
  margin-right: 10px;
}
.contact-container .contact-details-form .contact-form {
  flex: 1;
  min-width: 200px;
  border: 1px solid #ddd;
  padding: 40px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.contact-container .contact-details-form .contact-form .form {
  display: flex;
  flex-direction: column;
}
.contact-container .contact-details-form .contact-form label {
  margin: 10px 0 5px;
}
.contact-container .contact-details-form .contact-form input,
.contact-container .contact-details-form .contact-form textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 10px;
  font-size: 16px;
  width: 460px;
}
@media (max-width: 790px) {
  .contact-container .contact-details-form .contact-form input,
  .contact-container .contact-details-form .contact-form textarea {
    width: 250px;
  }
}
@media (max-width: 400px) {
  .contact-container .contact-details-form .contact-form input,
  .contact-container .contact-details-form .contact-form textarea {
    width: 220px;
  }
}
@media (max-width: 350px) {
  .contact-container .contact-details-form .contact-form input,
  .contact-container .contact-details-form .contact-form textarea {
    width: 166px;
  }
}
.contact-container .contact-details-form .contact-form select {
  width: 100%;
  max-width: 500px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f8f8f8;
  font-size: 14px;
  color: #333;
  appearance: none;
  background-image: url("path-to-custom-arrow-icon.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  margin-bottom: 20px;
}
.contact-container .contact-details-form .contact-form select:focus {
  outline: none;
  border-color: #2c8d2b;
  box-shadow: 0 0 5px rgb(81, 203, 238);
}
.contact-container .contact-details-form .contact-form button {
  width: 200px;
  padding: 10px;
  border: none;
  border-radius: 4px;
  background-color: #2c8d2b;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-container .contact-details-form .contact-form button:hover {
  background-color: #175892;
}
@media (max-width: 350px) {
  .contact-container .contact-details-form .contact-form button {
    width: 166px;
  }
}

.team-section {
  padding: 20px;
  margin: 10px 100px;
}
@media (max-width: 500px) {
  .team-section {
    margin: 10px 10px;
  }
}
.team-section .executive h2,
.team-section .trekking h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #1e73be;
}
@media (max-width: 500px) {
  .team-section .executive h2,
  .team-section .trekking h2 {
    text-align: center;
  }
}
.team-section .executive hr,
.team-section .trekking hr {
  color: #777;
}
.team-section .executive .team-member,
.team-section .trekking .team-member {
  display: flex;
  align-items: center;
}
@media (max-width: 500px) {
  .team-section .executive .team-member,
  .team-section .trekking .team-member {
    flex-direction: column;
    text-align: center;
  }
}
.team-section .executive .team-member .member-photo,
.team-section .trekking .team-member .member-photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
}
@media (max-width: 790px) {
  .team-section .executive .team-member .member-photo,
  .team-section .trekking .team-member .member-photo {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 500px) {
  .team-section .executive .team-member .member-photo,
  .team-section .trekking .team-member .member-photo {
    margin-bottom: 15px;
  }
}
@media (max-width: 380px) {
  .team-section .executive .team-member .member-photo,
  .team-section .trekking .team-member .member-photo {
    width: 120px;
    height: 120px;
  }
}
.team-section .executive .team-member .member-info,
.team-section .trekking .team-member .member-info {
  margin-left: 40px;
}
@media (max-width: 500px) {
  .team-section .executive .team-member .member-info,
  .team-section .trekking .team-member .member-info {
    margin-left: 10px;
  }
}
.team-section .executive .team-member .member-info .member-name,
.team-section .trekking .team-member .member-info .member-name {
  font-size: 24px;
  margin-bottom: 10px;
  color: #1e73be;
}
@media (max-width: 500px) {
  .team-section .executive .team-member .member-info .member-name,
  .team-section .trekking .team-member .member-info .member-name {
    margin-bottom: 0;
  }
}
@media (max-width: 500px) {
  .team-section .executive .team-member .member-info .social,
  .team-section .trekking .team-member .member-info .social {
    display: flex;
    justify-content: center;
  }
}
.team-section .executive .team-member .member-info .social .social-icons,
.team-section .trekking .team-member .member-info .social .social-icons {
  width: 80px;
  margin-bottom: 10px;
}
.team-section .executive .team-member .member-info .social .social-icons a,
.team-section .trekking .team-member .member-info .social .social-icons a {
  margin-top: 10px;
  color: black;
  margin: 0 5px;
}
.team-section .executive .team-member .member-info .social .social-icons a:hover,
.team-section .trekking .team-member .member-info .social .social-icons a:hover {
  color: #1e73be;
}
.team-section .executive .team-member .member-info .member-designation,
.team-section .trekking .team-member .member-info .member-designation {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: black;
}
@media (max-width: 500px) {
  .team-section .executive .team-member .member-info .member-designation,
  .team-section .trekking .team-member .member-info .member-designation {
    justify-content: center;
  }
}
.team-section .executive .team-member .member-info .member-designation span,
.team-section .trekking .team-member .member-info .member-designation span {
  margin-left: 10px;
  font-size: 16px;
  color: #F5811F;
}
.team-section .executive .team-member .member-info .member-bio,
.team-section .trekking .team-member .member-info .member-bio {
  font-size: 18px;
  margin-right: 30px;
}
@media (max-width: 500px) {
  .team-section .executive .team-member .member-info .member-bio,
  .team-section .trekking .team-member .member-info .member-bio {
    font-size: 16px;
    margin-right: 10px;
  }
}
.team-section .trekking h2 {
  margin-top: 30px;
}

.our-team-banner .image-container {
  position: relative;
  text-align: center;
}
.our-team-banner .image-container img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}
.our-team-banner .image-container .image-title {
  position: absolute;
  bottom: 11px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  padding: 50px 10px;
  border-radius: 5px;
  font-size: 52px;
  font-weight: bold;
}
@media (max-width: 500px) {
  .our-team-banner .image-container .image-title {
    font-size: 40px;
  }
}
@media (max-width: 350px) {
  .our-team-banner .image-container .image-title {
    font-size: 30px;
  }
}
.our-team-banner .description {
  margin: 50px 150px;
}
@media (max-width: 500px) {
  .our-team-banner .description {
    margin: 20px 50px;
  }
}
.our-team-banner .description p {
  margin: 20px 0;
  font-size: 20px;
}

.reviews-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 50px 150px;
}
@media (max-width: 790px) {
  .reviews-row {
    margin: 50px 100px;
  }
}
@media (max-width: 500px) {
  .reviews-row {
    margin: 50px 50px;
  }
}
@media (max-width: 380px) {
  .reviews-row {
    margin: 30px 30px;
  }
}
@media (max-width: 350px) {
  .reviews-row {
    margin: 10px 8px;
  }
}
.reviews-row .review {
  flex: 1 1 calc(50% - 20px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 8px;
  background-color: #fff;
}
.reviews-row .review .review-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.reviews-row .review .review-header .reviewer-photo {
  width: 100px;
  height: auto;
  margin-right: 20px;
}
.reviews-row .review .review-header .reviewer-info {
  flex-grow: 1;
}
.reviews-row .review .review-header .reviewer-info .review-title-time {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
@media (max-width: 350px) {
  .reviews-row .review .review-header .reviewer-info .review-title-time {
    margin-bottom: 0;
  }
}
.reviews-row .review .review-header .reviewer-info .review-title-time h3 {
  color: #1e73be;
}
@media (max-width: 500px) {
  .reviews-row .review .review-header .reviewer-info .review-title-time h3 {
    font-size: 20px;
  }
}
@media (max-width: 350px) {
  .reviews-row .review .review-header .reviewer-info .review-title-time h3 {
    font-size: 14px;
  }
}
@media (max-width: 350px) {
  .reviews-row .review .review-header .reviewer-info .review-title-time .review-time {
    font-size: 12px;
  }
}
.reviews-row .review .review-header .reviewer-info .review-title-time .review-time i {
  margin-right: 5px;
}
.reviews-row .review .review-header .reviewer-info .review-rating .star {
  color: #F5811F;
}
@media (max-width: 768px) {
  .reviews-row .review .review-header .reviews-row {
    flex-direction: column;
  }
  .reviews-row .review .review-header .reviews-row .review {
    flex: 1 1 100%;
  }
  .reviews-row .review .review-header .reviews-row .review .review-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .reviews-row .review .review-header .reviews-row .review .review-header .reviewer-photo {
    margin-bottom: 10px;
    margin-right: 0;
  }
  .reviews-row .review .review-header .reviews-row .review .review-header .reviewer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .reviews-row .review .review-header .reviews-row .review .review-header .reviewer-info .review-title-time {
    align-items: center;
  }
}
@media (max-width: 500px) {
  .reviews-row .review .review-header .reviews-section {
    padding: 10px;
  }
  .reviews-row .review .review-header .reviews-section .review {
    padding: 10px;
  }
}
@media (max-width: 350px) {
  .reviews-row .review .review-text {
    font-size: 12px;
  }
}
.reviews-row .review .reviewer-details {
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (max-width: 350px) {
  .reviews-row .review .reviewer-details {
    font-size: 12px;
  }
}
.reviews-row .review .reviewer-details .reviewer-name {
  font-weight: bold;
}
@media (max-width: 350px) {
  .reviews-row .review .package-info {
    font-size: 12px;
  }
}
.reviews-row .review .package-info a {
  color: #1e73be;
}

.reviews-section .image-container {
  position: relative;
  text-align: center;
}
.reviews-section .image-container img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}
.reviews-section .image-container .image-title {
  position: absolute;
  bottom: 11px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  padding: 50px 10px;
  border-radius: 5px;
  font-size: 52px;
  font-weight: bold;
}
@media (max-width: 500px) {
  .reviews-section .image-container .image-title {
    font-size: 40px;
  }
}
@media (max-width: 350px) {
  .reviews-section .image-container .image-title {
    font-size: 30px;
  }
}
.reviews-section .description {
  margin: 50px 150px;
}
@media (max-width: 500px) {
  .reviews-section .description {
    margin: 20px 50px;
  }
}
.reviews-section .description p {
  margin: 20px 0;
  font-size: 20px;
}

.mini-banner {
  display: flex;
  justify-content: space-around;
  background-color: #f8f9fa;
  margin-bottom: 40px;
}
@media (max-width: 350px) {
  .mini-banner {
    margin-bottom: 20px;
  }
}
.mini-banner a {
  margin-right: 10px;
}
.mini-banner img {
  max-width: 100px;
  height: auto;
}
@media (max-width: 500px) {
  .mini-banner img {
    max-width: 50px;
  }
}
@media (max-width: 350px) {
  .mini-banner img {
    max-width: 30px;
  }
}
.mini-banner .mini-banner-btn {
  display: flex;
  align-items: center;
}
.mini-banner .mini-banner-btn .my-btn {
  padding: 0.2rem 1rem;
  height: 30px;
}
@media (max-width: 350px) {
  .mini-banner .mini-banner-btn .my-btn {
    padding: 0.1rem 0.5rem;
    height: 20px;
  }
}
.mini-banner .mini-banner-btn p {
  font-size: 10px;
}
@media (max-width: 350px) {
  .mini-banner .mini-banner-btn p {
    font-size: 8px;
  }
}

.legal-gallery-section {
  padding: 20px;
  position: relative;
  min-height: 100vh;
}
.legal-gallery-section h1 {
  margin-bottom: 20px;
}
.legal-gallery-section p {
  margin-bottom: 20px;
}
.legal-gallery-section h2 {
  margin-bottom: 20px;
}
.legal-gallery-section .gallery-content {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
  padding: 10px;
}
.legal-gallery-section .gallery-content .gallery-img {
  width: 250px;
  height: 350px;
  overflow: hidden;
  cursor: pointer;
}
.legal-gallery-section .gallery-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s linear;
}
.legal-gallery-section .gallery-content img:hover {
  transform: scale(1.1);
}

.blog .image-container {
  position: relative;
  text-align: center;
}
.blog .image-container img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}
.blog .image-container .image-title {
  position: absolute;
  bottom: 11px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  padding: 50px 10px;
  border-radius: 5px;
  font-size: 52px;
  font-weight: bold;
}
@media (max-width: 500px) {
  .blog .image-container .image-title {
    font-size: 40px;
  }
}
@media (max-width: 350px) {
  .blog .image-container .image-title {
    font-size: 30px;
  }
}
.blog .description {
  margin: 50px 150px;
}
@media (max-width: 500px) {
  .blog .description {
    margin: 20px 50px;
  }
}
.blog .description p {
  margin: 20px 0;
  font-size: 20px;
}

.blog-list-section .blog-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}
.blog-list-section .each-blog {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0;
}
.blog-list-section .each-blog a img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.blog-list-section .each-blog a img:hover {
  transform: scale(1.05);
}
.blog-list-section .each-blog .blog-content {
  padding: 15px;
}
.blog-list-section .each-blog .blog-content .title {
  font-size: 1.25rem;
  margin-bottom: 5px;
}
.blog-list-section .each-blog .blog-content .title a {
  color: #333;
  text-decoration: none;
}
.blog-list-section .each-blog .blog-content .title a:hover {
  color: #2c8d2b;
}
.blog-list-section .each-blog .blog-content .blog-date {
  margin-bottom: 10px;
}
.blog-list-section .each-blog .blog-content .blog-date a {
  color: #555;
  font-size: 14px;
}
.blog-list-section .each-blog .blog-content .blog-date i {
  margin-right: 5px;
}
.blog-list-section .each-blog .blog-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.trekking-information .sticky-sidebar {
  font-family: "Poppins", sans-serif;
  top: 50px;
  margin-bottom: 50px;
  border-radius: 5px;
}
.trekking-information .sticky-sidebar .information-sidebar .sidebar-header {
  padding: 0.8rem 1rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c8d2b;
  border-radius: 5px 5px 0 0;
}
.trekking-information .sticky-sidebar .information-sidebar ul li {
  padding: 0.8rem 1rem;
  font-size: 1.1rem;
  transition: background-color 0.2s;
}
.trekking-information .sticky-sidebar .information-sidebar ul li a {
  color: #000000;
  transition: margin-left 0.5s;
}
.trekking-information .sticky-sidebar .information-sidebar ul li:hover {
  cursor: pointer;
  color: #FFFFFF;
  background-color: #2c8d2b;
}
.trekking-information .sticky-sidebar .information-sidebar ul li:hover > a {
  color: #FFFFFF;
  margin-left: 5px;
}
.trekking-information .sticky-sidebar .information-sidebar ul li::after {
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-size: 1rem;
  font-weight: 600;
  float: right;
}

.trekking-title .banner img {
  width: 100%;
  height: 720px;
  object-fit: cover;
}

.trekking-content .content-description .content-title {
  margin-bottom: 1rem;
}
.trekking-content .content-description .content-title h2 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #2c8d2b;
}
.trekking-content .content-description .content-body {
  font-family: "Poppins", sans-serif;
  font-weight: 2rem;
  line-height: 2rem;
}
.trekking-content .content-description .content-body p {
  margin-bottom: 1rem;
}
.trekking-content .content-description .content-body p a {
  color: #1e73be;
  font-weight: 600;
}

.trekking-listing {
  padding-block: 20px;
  font-family: "Poppins", sans-serif;
  position: relative;
}
.trekking-listing .trekking-bg-image {
  position: absolute;
  width: 100%;
  height: 60%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.trekking-listing .trekking-bg-image::before {
  content: "";
  background-color: black;
  position: absolute;
  inset: 0;
  opacity: 0.5;
}
.trekking-listing .trek-listing {
  color: white;
}
.trekking-listing .trek-listing .listing-title {
  position: relative;
  font-size: 2.5rem;
  font-weight: 600;
  margin-block: 2rem;
  text-align: center;
}
.trekking-listing .trek-listing .listing-title::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 10%;
  height: 0.2rem;
  background-color: greenyellow;
}
.trekking-listing .trek-listing .listing-info {
  position: relative;
  margin: 0 auto;
  width: 50%;
  font-size: 1.2rem;
  font-weight: 400;
  margin-block: 2rem;
  text-align: center;
}
.trekking-listing .trek-listing .listing-section .owl-trek .item {
  margin-inline: auto;
  border-radius: 16px;
  height: 400px;
  width: 280px;
  overflow: hidden;
}
.trekking-listing .trek-listing .listing-section .owl-trek .item a {
  position: relative;
}
.trekking-listing .trek-listing .listing-section .owl-trek .item a img {
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.trekking-listing .trek-listing .listing-section .owl-trek .item a .list-content .list-title {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 100px 1.5rem 1.5rem;
  color: #FFFFFF;
  font-size: 1.5rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), transparent);
}
.trekking-listing .trek-listing .listing-section .owl-trek .item:hover > a > img {
  transform: scale(1.1);
}
.trekking-listing .trek-listing .listing-section .slider-nav {
  position: relative;
  margin-top: 2rem;
  display: flex;
  column-gap: 0.8rem;
  align-items: center;
  justify-content: center;
}
.trekking-listing .trek-listing .listing-section .slider-nav .my-carousel-prev, .trekking-listing .trek-listing .listing-section .slider-nav .my-carousel-next {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid #2c8d2b;
  color: #2c8d2b;
  background-color: #FFFFFF;
}
.trekking-listing .trek-listing .listing-section .slider-nav .my-carousel-prev:hover, .trekking-listing .trek-listing .listing-section .slider-nav .my-carousel-next:hover {
  background-color: #2c8d2b;
  color: #FFFFFF;
}
.trekking-listing .trek-listing .listing-section .slider-nav .divider:before {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  font-size: 12px;
  background-color: black;
  opacity: 0.2;
}

.trekking-title .image {
  width: 100%;
  display: flex;
  justify-content: center;
}
.trekking-title .image figure {
  margin: auto;
}
.trekking-title .image figure img {
  width: 100dvw;
  max-height: 750px;
  aspect-ratio: 12/5;
  object-fit: cover;
}

.listing-information {
  padding-block: 20px;
}
.listing-information .listing-content .content-description .content-title {
  margin-bottom: 1rem;
}
.listing-information .listing-content .content-description .content-title h2 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #2c8d2b;
}
.listing-information .listing-content .content-description .content-body {
  font-family: "Poppins", sans-serif;
  font-weight: 2rem;
  line-height: 2rem;
}
.listing-information .listing-content .content-description .content-body p {
  margin-bottom: 1rem;
}
.listing-information .listing-content .content-description .content-body p a {
  color: #1e73be;
  font-weight: 600;
}

.listing-information .sticky-sidebar {
  font-family: "Poppins", sans-serif;
  top: 50px;
  margin-bottom: 50px;
  border-radius: 5px;
}
.listing-information .sticky-sidebar .information-sidebar .sidebar-header {
  padding: 0.8rem 1rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c8d2b;
  border-radius: 5px 5px 0 0;
}
.listing-information .sticky-sidebar .information-sidebar ul li {
  padding: 0.8rem 1rem;
  font-size: 1.1rem;
  transition: background-color 0.2s;
}
.listing-information .sticky-sidebar .information-sidebar ul li a {
  color: #000000;
  transition: margin-left 0.5s;
}
.listing-information .sticky-sidebar .information-sidebar ul li:hover {
  cursor: pointer;
  color: #FFFFFF;
  background-color: #2c8d2b;
}
.listing-information .sticky-sidebar .information-sidebar ul li:hover > a {
  color: #FFFFFF;
  margin-left: 5px;
}
.listing-information .sticky-sidebar .information-sidebar ul li::after {
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-size: 1rem;
  font-weight: 600;
  float: right;
}

.package-section {
  padding-bottom: 20px;
}
.package-section .packages-list .item .card {
  width: 95%;
  height: 720px;
  margin: 0 auto;
  border: 1px solid #f1f1f1;
  border-radius: 8px 8px 0 0;
}
.package-section .packages-list .item .card .card-img {
  height: 40%;
  overflow: hidden;
  border-radius: 0;
}
.package-section .packages-list .item .card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.package-section .packages-list .item .card .card-img img:hover {
  transform: scale(1.1);
  transition: transform 0.5s;
}
@media only screen and (max-width: 1024px) {
  .package-section .packages-list .item .card .card-img {
    height: 30%;
  }
}
.package-section .packages-list .item .card .card-body {
  height: 60%;
  padding: 1.5rem 1.6rem;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.package-section .packages-list .item .card .card-body .card-description {
  overflow: hidden;
}
.package-section .packages-list .item .card .card-body .card-description .card-title {
  font-size: 1.5rem;
  font-weight: 600;
}
.package-section .packages-list .item .card .card-body .card-description .card-title a {
  color: #2c8d2b;
}
.package-section .packages-list .item .card .card-body .card-description .card-title a:hover {
  color: #1e73be;
}
.package-section .packages-list .item .card .card-body .card-description .card-text {
  max-height: 40%;
  overflow: hidden;
  font-size: 1rem;
  color: rgba(51, 51, 51, 0.8588235294);
  margin-bottom: 10px;
}
.package-section .packages-list .item .card .card-body .card-description .section {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.package-section .packages-list .item .card .card-body .card-description .section span {
  color: #20661f;
}
.package-section .packages-list .item .card .card-body .card-description .card-info {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.package-section .packages-list .item .card .card-body .card-description .card-info i {
  margin-right: 8px;
  color: #F5811F;
}
.package-section .packages-list .item .card .card-body .card-description .card-info .title {
  font-weight: 600;
  margin-right: 5px;
  margin-block: 0px;
}
.package-section .packages-list .item .card .card-body .card-description .card-info .info {
  font-weight: 500;
}
.package-section .packages-list .item .card .card-body .card-description .card-info .info a {
  color: #000000;
}
@media only screen and (max-width: 1024px) {
  .package-section .packages-list .item .card .card-body .card-description .card-info {
    font-size: 1rem;
  }
}
.package-section .packages-list .item .card .card-body .my-btn {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .package-section .packages-list .item .card {
    height: auto;
  }
}

.listing-title {
  position: relative;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.listing-info {
  position: relative;
  margin: 0 auto;
  width: 50%;
  font-size: 1.2rem;
  font-weight: 400;
  margin-block: 2rem;
  text-align: center;
}

.listing-section .owl-trek .item {
  border-radius: 16px;
  height: 400px;
  overflow: hidden;
}
.listing-section .owl-trek .item a {
  position: relative;
}
.listing-section .owl-trek .item a img {
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.listing-section .owl-trek .item a .list-content .list-title {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 100px 1.5rem 1.5rem;
  color: #FFFFFF;
  font-size: 1.5rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), transparent);
}
.listing-section .owl-trek .item:hover > a > img {
  transform: scale(1.1);
}
.listing-section .slider-nav {
  position: relative;
  margin-top: 2rem;
  display: flex;
  column-gap: 0.8rem;
  align-items: center;
  justify-content: center;
}
.listing-section .slider-nav .my-carousel-prev, .listing-section .slider-nav .my-carousel-next {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid #2c8d2b;
  color: #2c8d2b;
  background-color: #FFFFFF;
}
.listing-section .slider-nav .my-carousel-prev:hover, .listing-section .slider-nav .my-carousel-next:hover {
  background-color: #2c8d2b;
  color: #FFFFFF;
}
.listing-section .slider-nav .divider:before {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  font-size: 12px;
  background-color: black;
  opacity: 0.2;
}

.blog-content .blog-description hr {
  margin-block: 20px;
}
.blog-content .blog-description .blog-title {
  font-family: "Poppins", sans-serif;
  margin-bottom: 1rem;
}
.blog-content .blog-description .blog-title h2 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #2c8d2b;
  margin-bottom: 0.8rem;
}
.blog-content .blog-description .blog-title .blog-dates {
  display: flex;
  gap: 2rem;
}
.blog-content .blog-description .blog-title .blog-dates .blog-time, .blog-content .blog-description .blog-title .blog-dates .blog-author {
  color: rgba(0, 0, 0, 0.6);
}
.blog-content .blog-description .blog-title .blog-dates i {
  margin-right: 8px;
}
.blog-content .blog-description .blog-body {
  font-family: "Poppins", sans-serif;
  font-weight: 2rem;
  line-height: 2rem;
}
.blog-content .blog-description .blog-body .image-container {
  margin-bottom: 20px;
}
.blog-content .blog-description .blog-body .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-content .blog-description .blog-body p {
  margin-bottom: 1rem;
}
.blog-content .blog-description .blog-body p a {
  color: #1e73be;
  font-weight: 600;
}

.blog-listing-section {
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
  position: relative;
}
.blog-listing-section .blog-listing-title {
  position: relative;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.blog-listing-section .blog-list .each-blog .card-img {
  overflow: hidden;
  border-bottom-left-radius: 0%;
  border-bottom-right-radius: 0;
}
.blog-listing-section .blog-list .each-blog a img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.blog-listing-section .blog-list .each-blog a img:hover {
  transform: scale(1.05);
}
.blog-listing-section .blog-list .each-blog .blog-content {
  padding: 15px;
}
.blog-listing-section .blog-list .each-blog .blog-content .title {
  font-size: 1.25rem;
  margin-bottom: 5px;
}
.blog-listing-section .blog-list .each-blog .blog-content .title a {
  color: #333;
  text-decoration: none;
}
.blog-listing-section .blog-list .each-blog .blog-content .title a:hover {
  color: #2c8d2b;
}
.blog-listing-section .blog-list .each-blog .blog-content .blog-date {
  margin-bottom: 10px;
}
.blog-listing-section .blog-list .each-blog .blog-content .blog-date a {
  color: #555;
  font-size: 14px;
}
.blog-listing-section .blog-list .each-blog .blog-content .blog-date i {
  margin-right: 5px;
}
.blog-listing-section .blog-list .each-blog .blog-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.booking {
  font-family: "Poppins", sans-serif;
}
.booking .image-container {
  position: relative;
  text-align: center;
}
.booking .image-container img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}
.booking .image-container .image-title {
  position: absolute;
  bottom: 11px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  padding: 50px 10px;
  border-radius: 5px;
  font-size: 52px;
  font-weight: bold;
}
@media (max-width: 500px) {
  .booking .image-container .image-title {
    font-size: 40px;
  }
}
@media (max-width: 350px) {
  .booking .image-container .image-title {
    font-size: 30px;
  }
}
.booking .description {
  margin: 50px 150px;
}
@media (max-width: 500px) {
  .booking .description {
    margin: 20px 50px;
  }
}
.booking .description p {
  margin: 20px 0;
  font-size: 18px;
}

.booking-content {
  margin: 0 100px;
}
.booking-content h4 {
  color: #F5811F;
  margin-top: 20px;
}
.booking-content li {
  list-style: disc;
  margin-left: 40px;
}
@media screen and (max-width: 1024px) {
  .booking-content {
    margin: 0 20px;
  }
}

.second-part {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 16px;
}
.second-part .booking-form {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
}
.second-part .booking-form form {
  display: flex;
  flex-wrap: wrap;
}
.second-part .booking-form form .form-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.second-part .booking-form form .form-row .form-group {
  width: 48%;
}
.second-part .booking-form form .form-row .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}
.second-part .booking-form form .form-row .form-group input[type=text],
.second-part .booking-form form .form-row .form-group input[type=email],
.second-part .booking-form form .form-row .form-group input[type=number],
.second-part .booking-form form .form-row .form-group input[type=date],
.second-part .booking-form form .form-row .form-group select,
.second-part .booking-form form .form-row .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}
.second-part .booking-form form .form-row .full-width {
  width: 100%;
}

.trip-single-content .image {
  width: 100%;
  display: flex;
  justify-content: center;
}
.trip-single-content .image figure {
  margin: auto;
}
.trip-single-content .image figure img {
  width: 100dvw;
  max-height: 750px;
  aspect-ratio: 12/5;
  object-fit: cover;
}

.trip-single-content {
  margin-block: 20px;
  font-family: "Poppins", sans-serif;
}
.trip-single-content .main-header {
  margin-block: 1rem;
  color: #2c8d2b;
}
.trip-single-content .content-body .content-heading {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.trip-single-content .content-body .content-paragraph {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}
.trip-single-content .content-body .content-paragraph a {
  color: #1e73be;
}
.trip-single-content .content-body .content-paragraph a:hover {
  cursor: pointer;
}

.reviews-row {
  margin: 50px 150px;
}
@media (max-width: 790px) {
  .reviews-row {
    margin: 50px 100px;
  }
}
@media (max-width: 500px) {
  .reviews-row {
    margin: 50px 50px;
  }
}
@media (max-width: 380px) {
  .reviews-row {
    margin: 30px 30px;
  }
}
@media (max-width: 350px) {
  .reviews-row {
    margin: 10px 8px;
  }
}
.reviews-row .review {
  flex: 1 1 calc(50% - 20px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 8px;
  background-color: #fff;
}
@media (max-width: 500px) {
  .reviews-row .review {
    padding: 20px;
  }
}
@media (max-width: 350px) {
  .reviews-row .review {
    padding: 10px;
  }
}
.reviews-row .review .review-header {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 500px) {
  .reviews-row .review .review-header {
    flex-wrap: wrap;
  }
}
.reviews-row .review .review-header .reviewer-photo {
  width: 300px;
  height: auto;
  margin-right: 20px;
}
@media (max-width: 768px) {
  .reviews-row .review .review-header .reviewer-photo {
    width: 200px;
  }
}
@media (max-width: 500px) {
  .reviews-row .review .review-header .reviewer-photo {
    margin-bottom: 20px;
    margin-top: 10px;
    width: 250px;
  }
}
.reviews-row .review .review-header .reviewer-info {
  flex-grow: 1;
}
.reviews-row .review .review-header .reviewer-info .review-title-time {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
@media (max-width: 350px) {
  .reviews-row .review .review-header .reviewer-info .review-title-time {
    margin-bottom: 0;
  }
}
.reviews-row .review .review-header .reviewer-info .review-title-time h3 {
  color: #1e73be;
}
@media (max-width: 500px) {
  .reviews-row .review .review-header .reviewer-info .review-title-time h3 {
    font-size: 20px;
  }
}
@media (max-width: 350px) {
  .reviews-row .review .review-header .reviewer-info .review-title-time h3 {
    font-size: 14px;
  }
}
@media (max-width: 350px) {
  .reviews-row .review .review-header .reviewer-info .review-title-time .review-time {
    font-size: 12px;
  }
}
.reviews-row .review .review-header .reviewer-info .review-title-time .review-time i {
  margin-right: 5px;
}
.reviews-row .review .review-header .reviewer-info .review-rating .star {
  color: #F5811F;
}
@media (max-width: 768px) {
  .reviews-row .review .review-header .reviews-row {
    flex-direction: column;
  }
  .reviews-row .review .review-header .reviews-row .review {
    flex: 1 1 100%;
  }
  .reviews-row .review .review-header .reviews-row .review .review-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .reviews-row .review .review-header .reviews-row .review .review-header .reviewer-photo {
    margin-bottom: 10px;
    margin-right: 0;
  }
  .reviews-row .review .review-header .reviews-row .review .review-header .reviewer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .reviews-row .review .review-header .reviews-row .review .review-header .reviewer-info .review-title-time {
    align-items: center;
  }
}
@media (max-width: 500px) {
  .reviews-row .review .review-header .reviews-section {
    padding: 10px;
  }
  .reviews-row .review .review-header .reviews-section .review {
    padding: 10px;
  }
}
@media (max-width: 350px) {
  .reviews-row .review .review-text {
    font-size: 12px;
  }
}
.reviews-row .review .reviewer-details {
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (max-width: 350px) {
  .reviews-row .review .reviewer-details {
    font-size: 12px;
  }
}
.reviews-row .review .reviewer-details .reviewer-name {
  font-weight: bold;
}
@media (max-width: 350px) {
  .reviews-row .review .package-info {
    font-size: 12px;
  }
}
.reviews-row .review .package-info a {
  color: #1e73be;
}
.reviews-row .review .review-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}
.reviews-row .review .review-gallery .gallery-img {
  width: 150px;
  height: 100px;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 995px) {
  .reviews-row .review .review-gallery .gallery-img {
    width: 100px;
    height: 50px;
  }
}
@media (max-width: 500px) {
  .reviews-row .review .review-gallery .gallery-img {
    width: 70px;
    height: 40px;
  }
}
.reviews-row .review .review-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s linear;
}
.reviews-row .review .review-gallery img:hover {
  transform: scale(1.1);
}

.reviews-section .image-container {
  position: relative;
  text-align: center;
}
.reviews-section .image-container img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}
.reviews-section .image-container .image-title {
  position: absolute;
  bottom: 11px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  padding: 50px 10px;
  border-radius: 5px;
  font-size: 52px;
  font-weight: bold;
}
@media (max-width: 500px) {
  .reviews-section .image-container .image-title {
    font-size: 40px;
  }
}
@media (max-width: 350px) {
  .reviews-section .image-container .image-title {
    font-size: 30px;
  }
}
.reviews-section .description {
  margin: 50px 150px;
}
@media (max-width: 500px) {
  .reviews-section .description {
    margin: 20px 50px;
  }
}
.reviews-section .description p {
  margin: 20px 0;
  font-size: 20px;
}

.mini-banner {
  display: flex;
  justify-content: space-around;
  background-color: #f8f9fa;
  margin-bottom: 40px;
}
@media (max-width: 350px) {
  .mini-banner {
    margin-bottom: 20px;
  }
}
.mini-banner a {
  margin-right: 10px;
}
.mini-banner img {
  max-width: 100px;
  height: auto;
}
@media (max-width: 500px) {
  .mini-banner img {
    max-width: 50px;
  }
}
@media (max-width: 350px) {
  .mini-banner img {
    max-width: 30px;
  }
}
.mini-banner .mini-banner-btn {
  display: flex;
  align-items: center;
}
.mini-banner .mini-banner-btn .my-btn {
  padding: 0.2rem 1rem;
  height: 30px;
}
@media (max-width: 350px) {
  .mini-banner .mini-banner-btn .my-btn {
    padding: 0.1rem 0.5rem;
    height: 20px;
  }
}
.mini-banner .mini-banner-btn p {
  font-size: 10px;
}
@media (max-width: 350px) {
  .mini-banner .mini-banner-btn p {
    font-size: 8px;
  }
}

/*# sourceMappingURL=styles.css.map */
