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

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Root
--------------------------------------------------------------*/
:root {
  --font-Figtree: "Figtree", serif;
  --primary-clr: #FF6505;
  --secondary-clr: #000000;
  --white-clr: #fff;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-Figtree);
  /* font-family: "Poppins", sans-serif; */
  background-color: #f5f5f5;
}

img {
  max-width: 100%;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

a {
  color: var(--primary-clr);
  text-decoration: none;
  transition: 0.5s cubic-bezier(0.4, 0, 1, 1);
}

a:hover {
  color: var(--orange-clr);
  text-decoration: none;
  outline: 0;
}

.sub-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 32px;
  color: var(--primary-clr);
  display: block;
  padding-bottom: 10px;
}

h1 {
  margin: 0;
  font-size: 68px;
  line-height: 81px;
  font-weight: 500;
  color: var(--white-clr);
}

h2 {
  margin: 0;
  font-size: 46px;
  line-height: 62px;
  font-weight: 800;
  color: var(--secondary-clr);
  padding-bottom: 15px;
}

p {
  margin: 0;
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
  line-height: 30px;
  color: var(--secondary-clr);
}

a {
  text-decoration: none;
  color: var(--primary-clr);
}

a:hover {
  color: var(--orange-clr);
}

ul {
  list-style: none;
  margin-bottom: 0;
}

.bg-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.lb-data .lb-close {
  background: url(../image/close.png) top right no-repeat !important;
}

.lb-nav a.lb-prev {
  background: url(../image/prev.png) left 48% no-repeat !important;
}

.lb-nav a.lb-next {
  background: url(../image/next.png) right 48% no-repeat !important;
}

.lb-cancel {
  background: url(../image/loading.gif) no-repeat !important;
}

.common-heading {
  text-align: center;
  /* width: 50%; */
  margin-bottom: 50px;
}

.common-heading h2 {
  padding: 0;
}

.common-btn a, .common-btn button {
  border-radius: 5px;
  padding: 12px 22px;
  background: var(--primary-clr);
  color: var(--white-clr);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  transition: 0.5s all ease-in-out;
  display: inline-block;
  border: 0;
}

.common-btn a:hover,.common-btn button:hover {
  background: var(--secondary-clr);
  color: var(--white-clr);
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form-group label {
  font-size: 17px;
  font-weight: 500;
  color: var(--secondary-clr);
}

.form-control::placeholder {
  font-size: 15px;
  font-weight: 500;
}

.form-control:focus {
  border-color: var(--primary-clr);
  outline: 0;
  box-shadow: unset;
}

/*--------------------------------------------------------------
# Grid
--------------------------------------------------------------*/
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: center;
}

/*--------------------------------------------------------------
# padding
--------------------------------------------------------------*/
.py-100 {
  padding: 100px 0;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-130 {
  padding-top: 130px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pt-150 {
  padding-top: 150px;
}

.pb-150 {
  padding-bottom: 150px;
}

@media only screen and (max-width:1399px) {}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.main-header {
  padding: 0;
  z-index: 99;
}

header.main-header.sticky {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: var(--white-clr);
  box-shadow: 0px 10px 40px #00000029;
  transition: 0.2s all ease;
}

.main-header .logo {
  padding: 0;
  margin: 0;
}

.main-header .logo img {
  max-width: 174px;
  height: auto;
  object-fit: cover;
}

.main-header .nav-menu {
  align-items: center;
  gap: 35px;
}

.nav-menu .nav-item .nav-link {
  font-size: 20px;
  font-weight: 500;
  line-height: 23px;
  padding: 40px 0;
  color: var(--white-clr);
  transition: 0.5s all;
  text-transform: capitalize;
}

.nav-menu .nav-item .nav-link:hover {
  color: var(--primary-clr);
}

.nav-menu .nav-item .nav-link.active {
  color: var(--primary-clr);
}

.main-header.sticky .nav-menu .nav-item .nav-link {
  color: var(--secondary-clr);
}

.main-header.sticky .nav-menu .nav-item .nav-link:hover {
  color: var(--primary-clr);
}

/*  */
.dropdown-menu {
  background-color: var(--white-clr);
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  opacity: 0;
  text-align: center;
  top: 0;
  visibility: hidden;
  z-index: -99999;
}

.dropdown-menu li:first-child {
  cursor: default;
}

.dropdown-menu a {
  color: var(--secondary-clr);
  display: inline-block;
  width: 100%;
  text-decoration: none;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.dropdown-menu a:hover {
  background: var(--primary-clr);
  color: #fff;
  padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
  background: var(--primary-clr);
  opacity: 1;
  visibility: visible;
  top: 100%;
  width: 100%;
  -webkit-transition: all .5s, background, 2s .5s linear;
  transition: all .5s, background 2s .5s linear;
}

/*  */
header.main-header {
  background-color: transparent;
  z-index: 9999;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

header.main-header .navbar {
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: unset;
}

.nav-menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-menu .nav-item.dropdown:hover .dropdown-menu {
  display: block;
  top: 90px;
}

.nav-menu .nav-item.dropdown:hover .dropdown-menu {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: var(--white-clr);
  border: 0;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 0;
}

.nav-menu .nav-item.dropdown:hover .dropdown-menu li {
  /* margin-bottom: 5px; */
  padding: 10px 0 0;
}

.nav-menu .nav-item.dropdown:hover .dropdown-menu .dropdown-item:hover {
  color: var(--primary-clr);
}

.main-header .navbar-toggler {
  background-color: unset;
  border: 0;
  padding: 0;
}

.main-header .navbar-toggler .bars i {
  font-size: 30px;
  color: var(--primary-clr);
}

.main-header .btn-close {
  display: none;
}

.main-header .btn-close:focus {
  box-shadow: unset;
}

.main-header .logo img {
  display: block;
}

header.main-header.sticky .logo img {
  display: none;
}

header.main-header.sticky .logo.logo-sticky img {
  display: block;
}

.header-btn a {
  border-radius: 5px;
  padding: 12px 22px;
  background: var(--primary-clr);
  color: var(--white-clr);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  transition: 0.5s all ease-in-out;
  display: inline-block;
}

.header-btn a:hover {
  background: var(--secondary-clr);
  color: var(--white-clr);
}

/*--------------------------------------------------------------
Home Page start
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Banner
--------------------------------------------------------------*/
.hero-banner {
  width: 100%;
}

.banner {
  min-height: 100vh;
  display: flex !important;
  align-items: center;
  position: relative;
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0000004a;
}

.banner::after {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  z-index: 1;
}

.banner-content {
  text-align: center;
  position: relative;
  z-index: 1;
  width: 55%;
  margin: auto;
}

.banner-content .bg-top-title {
  font-size: 20px;
  font-weight: 400;
  color: var(--white-clr);
  background: #00000069;
  width: fit-content;
  padding: 7px 10px;
  margin: auto auto 30px;
  border-radius: 5px;
}

.banner-content .bg-center-title {
  font-size: 68px;
  line-height: 78px;
  color: var(--white-clr);
  font-weight: 500;
}

.banner-content h1 span {
  font-weight: 800;
}

/*--------------------------------------------------------------
# Home About
--------------------------------------------------------------*/
.home-about {
  position: relative;
  z-index: 1;
}

.home-about::before {
  content: "";
  position: absolute;
  top: -1px;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  z-index: -1;
}

.home-about .about-frame {
  position: absolute;
  top: 50%;
  left: 0;
}

.home-about .about-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: -1;
}

.home-about-list {
  list-style: none;
  /* Remove default list styling */
  padding: 15px 0 25px 0;
}

.home-about-list li {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: var(--secondary-clr);
  padding-bottom: 7px;
  padding-left: 30px;
  /* Space for the custom icon */
  position: relative;
  display: flex;
  align-items: center;
}

.home-about-list li::before {
  content: "";
  background: url("../image/check.webp") no-repeat center;
  background-size: contain;
  /* Ensure proper size */
  width: 20px;
  /* Adjust based on your image size */
  height: 20px;
  /* Adjust based on your image size */
  position: absolute;
  left: 0;
}

.home-about-list li:last-child {
  padding-bottom: 0;
}

.for-info-bx {
  background: var(--white-clr);
  padding: 10px 20px;
  width: 100%;
  display: flex;
  border-radius: 8px;
  align-items: center;
  gap: 20px;
  width: fit-content;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.for-info-bx .info-img img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.for-info-bx .info-details span {
  font-size: 12px;
  font-weight: 500;
  color: var(--secondary-clr);
}

.for-info-bx .info-details p {
  font-size: 30px;
  font-weight: 800;
  color: var(--primary-clr);
}

.home-about-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/*--------------------------------------------------------------
# International Holidays packages
--------------------------------------------------------------*/
.home-domestic {
  position: relative;
}

.home-domestic .shape-3 {
  position: absolute;
  top: -150px;
  right: 0;
  z-index: -1;
}

.home-domestic .shape-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-card {
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  height: 100%;
  background: var(--white-clr);
  transition: 0.5s all ease-in-out;
}

.package-card:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.package-image-bx {
  position: relative;
}

.package-image-bx img {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.package-image-bx .package-tag {
  background: var(--primary-clr);
  width: fit-content;
  padding: 5px 10px;
  border-radius: 5px;
  position: absolute;
  top: 30px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white-clr);
  left: -10px;
}

.package-content {
  background: var(--white-clr);
  border-radius: 5px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.package-content .package-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--secondary-clr);
}

.package-info {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}

.package-info span {
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.package-info span i {
  font-size: 20px;
  color: #ff6505;
  /* padding-right: 5px; */
  width: 20px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.package-price-bx {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.package-price-bx .package-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--secondary-clr);
}

.package-price-bx .package-price.line-through {
  text-decoration: line-through;
  color: #464545;
  font-size: 16px;
}

.package-price-bx .package-button {
  background: var(--primary-clr);
  color: var(--white-clr);
  /* padding: 5px 10px; */
  padding: 8px 20px;
  border-radius: 5px;
  /* font-size: 12px; */
  font-size: 14px;
  font-weight: 400;
  transition: 0.5s all ease-in-out;
}

.package-price-bx .package-button:hover {
  background: var(--secondary-clr);
  color: var(--white-clr);
}

.domestic-slide.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 50%;
  left: -20px;
}

.domestic-slide.owl-carousel .owl-nav button.owl-prev i {
  transform: rotate(60deg);
}

.domestic-slide.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  right: -20px;
}

.domestic-slide.owl-carousel .owl-nav button {
  width: 40px;
  height: 40px;
  color: var(--white-clr) !important;
  border-radius: 50%;
  background: var(--primary-clr);
  margin: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: 0.5s all ease-in-out;
}

.domestic-slide.owl-carousel .owl-nav button i {
  font-size: 12px;
}

.domestic-slide.owl-theme .owl-nav [class*='owl-']:hover {
  background: var(--secondary-clr);
}

.domestic-slide.owl-carousel .owl-nav button:hover i {
  color: var(--white-clr);
}

/*  */
.international-slide.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 50%;
  left: -20px;
}

.international-slide.owl-carousel .owl-nav button.owl-prev i {
  transform: rotate(60deg);
}

.international-slide.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  right: -20px;
}

.international-slide.owl-carousel .owl-nav button {
  width: 40px;
  height: 40px;
  color: var(--white-clr) !important;
  border-radius: 50%;
  background: var(--primary-clr);
  margin: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: 0.5s all ease-in-out;
}

.international-slide.owl-carousel .owl-nav button i {
  font-size: 12px;
}

.international-slide.owl-theme .owl-nav [class*='owl-']:hover {
  background: var(--secondary-clr);
}

.international-slide.owl-carousel .owl-nav button:hover i {
  color: var(--white-clr);
}

/* International */
.internationl-package-card .package-content {
  display: block;
}

.internationl-package-card .package-title-bx {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 5px;
  /* margin-bottom: 5px; */
}

.internationl-package-card .package-title-bx p {
  font-size: 16px;
}

.internationl-package-card .package-info {
  border-bottom: 1px solid #d9d9d9;
  /* padding-bottom: 5px; */
  margin-bottom: 5px;
  flex-direction: row;
  gap: 10px;
}

.internationl-package-card .package-info span {
  flex-direction: column;
  font-size: 13px;
  gap: 5px;
  padding: 10px;
}

.internationl-package-card .package-info span img {
  max-width: 32px;
  height: auto;
  object-fit: contain;
}

/* .internationl-package-card .package-price-bx {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 10px;
} */
.price-bx {
  display: flex;
  align-items: center;
  gap: 2px;
}

.internationl-package-card .package-price-bx .package-button {
  padding: 8px 20px;
  font-size: 14px;
}

.internationl-package-card .package-price-inner .stating-text {
  font-size: 11px;
  line-height: 16px;
  font-weight: 400;
}

/*--------------------------------------------------------------
# Why Choose
--------------------------------------------------------------*/
.why-choose {
  position: relative;
}

.why-choose::after {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  z-index: 1;
}

.why-choose-bx {
  background: var(--white-clr);
  padding: 40px 30px;
  border-radius: 20px;
  stroke: #eaeaea;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 25px;
  border: 1px solid #d9d9d9;
  transition: 0.2s all ease-in-out;
}

.why-choose-bx:hover {
  background: var(--primary-clr);
}

.why-choose-bx:hover .why-choose-content h3,
.why-choose-bx:hover .why-choose-content p {
  color: var(--white-clr);
}

.why-choose-bx:hover .why-choose-icon img {
  filter: brightness(0) saturate(100%) invert(90%) sepia(85%) saturate(0%) hue-rotate(57deg) brightness(104%) contrast(102%);
}

.why-choose-bx .why-choose-icon img {
  /* width: 65px;
  height: 100%;
  object-fit: cover; */
  max-width: 50px;
  height: auto;
  object-fit: contain;
}

.why-choose-bx .why-choose-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.why-choose-bx .why-choose-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary-clr);
  margin: 0;
}

.why-choose-bx .why-choose-content p {
  color: #474747;
}

/*--------------------------------------------------------------
# Testimonial
--------------------------------------------------------------*/
.testimonials {
  position: relative;
  z-index: 1;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: -1px;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  z-index: -1;
}

.testimonials .shape-5 {
  position: absolute;
  top: 40px;
  left: 35%;
}

.testi-bx {
  background: var(--white-clr);
  padding: 60px 35px;
  border-radius: 20px;
  height: 100%;
}

.testi-card .testi-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.testi-card .testi-header .rating {
  color: #F7CB14;
}

.testi-card .testi-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testi-profile img {
  /* width: 70px !important;
  height: 70px;
  object-fit: cover;
  border-radius: 50%; */
  max-width: 40px !important;
  height: auto;
  object-fit: contain;
}

.testi-card .testi-profile .testi-profile-info .profile-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary-clr);
}

.testi-card .testi-profile .testi-profile-info .profile-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: var(--secondary-clr);
}

.testi-slide.owl-carousel .owl-nav {
  display: flex;
}

.testi-slide.owl-carousel .owl-nav button.owl-prev i {
  transform: rotate(60deg);
}

.testi-slide.owl-carousel .owl-nav button i {
  font-size: 12px;
}

.testi-slide.owl-theme .owl-nav [class*='owl-']:hover {
  background: var(--white-clr);
}

.testi-slide.owl-carousel .owl-nav button:hover i {
  color: var(--secondary-clr);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  background: var(--secondary-clr);
  position: relative;
}

.footer-info-bx {
  border: 1px solid #e4e4e430;
  border-radius: 20px;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* display: flex;
  align-items: center;
  justify-content: space-evenly; */
  color: var(--white-clr);
  gap: 15px;
  margin-bottom: 40px;
}

/* .footer-info-bx .footer-info:last-child{
  border-right: 0;
}
.footer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid var(--white-clr);
  padding: 0 80px 0 40px;
} */
.footer-info {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.footer-info:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 50px;
  background-color: #e4e4e430;
}

.footer-info-bx .info-img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(7479%) hue-rotate(51deg) brightness(108%) contrast(105%);
}

.footer-info-bx .info-img img {
  max-width: 30px;
  height: auto;
  object-fit: contain;
}

.footer-info-bx .footer-info .info-details p a:hover {
  opacity: 0.8;
}

.footer-info-bx .info-details span {
  color: var(--white-clr);
  font-size: 12px;
  font-weight: 400;
}

.footer-info-bx .info-details p {
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  color: var(--primary-clr);
  transition: 0.5s all ease-in-out;
  word-break: break-all;
}

.footer-info-bx .info-details p a:hover {
  color: var(--white-clr);
}

.footer-content .footer-logo {
  margin-bottom: 15px;
}

.footer-content .footer-logo img {
  max-width: 268px;
  height: auto;
  object-fit: cover;
  /* padding-bottom: 20px; */
}

.footer-description p {
  color: var(--white-clr);
}

.footer-social-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 50px;
}

.footer-social-links ul li {
  display: inline-block;
  margin-right: 15px;
}

.footer-social-links ul li a {
  background-color: var(--white-clr);
  color: var(--secondary-clr);
  height: 36px;
  width: 36px;
  border-radius: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover {
  background: var(--primary-clr);
  color: var(--white-clr);
}

.footer-social-links ul li a i {
  font-size: 18px;
}

.footer-links h3 {
  font-size: 22px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 20px;
  color: var(--white-clr);
}

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

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links ul li:last-child {
  margin-bottom: 0;
}

.footer-links ul li a {
  font-size: 18px;
  color: var(--white-clr);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
  color: var(--primary-clr);
}

.footer-links p {
  color: var(--white-clr);
}

.subscription-form {
  display: flex;
  width: 100%;
  margin-top: 20px;
}

.subscription-input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 5px 0 0 5px;
  font-size: 14px;
  outline: none;
}

.subscription-input::placeholder {
  /* color: #ececec; */
  color: #000;
}

.subscription-button {
  background-color: var(--primary-clr);
  color: var(--white-clr);
  border: none;
  padding: 12px 20px;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
}

.subscription-button:hover {
  background-color: var(--primary-clr);
}

.copy-right p {
  color: var(--white-clr);
  text-align: center;
  font-size: 16px;
}

.copy-right {
  border-top: 1px solid #e4e4e430;
  padding-top: 25px;
  padding-bottom: 20px;
  margin-top: 50px;
}

.footer-shape-1 {
  position: absolute;
  top: 25%;
  left: 0;
}

.footer-shape-1 img,
.footer-shape-2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-shape-2 {
  position: absolute;
  top: 5%;
  right: 0;
}

/*--------------------------------------------------------------
# Book poup
--------------------------------------------------------------*/
.book-popup .modal-content .modal-header .modal-title {
  color: var(--secondary-clr);
}

.book-popup .btn-close:focus {
  outline: 0;
  box-shadow: unset;
}

/*--------------------------------------------------------------
# Contact Us Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1. Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 180px 0 100px;
  background: var(--primary-clr);
  min-height: 40px;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.breadcrumbs::after {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000e3 100%);
  z-index: -1;
}

/* .breadcrumbs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;  
  background: #00000066;
} */
.breadcrumb-content {
  position: relative;
  z-index: 1;
}

.breadcrumbs h1 {
  font-size: 42px;
  font-weight: 500;
  line-height: 57px;
  color: var(--white-clr);
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  text-align: center;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 10px 0 10px 0;
  margin: 0;
  font-size: 15px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.breadcrumbs ol li {
  color: var(--primary-clr);
}

.breadcrumbs ol li a {
  color: var(--white-clr);
}

.breadcrumbs ol li a:hover {
  color: var(--white-clr);
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 8px;
  color: var(--white-clr);
  content: "\00bb";
}

/*--------------------------------------------------------------
2 Conatct 
--------------------------------------------------------------*/
/* .contact-us-content {
  border: 1px solid #d9d9d9;
  padding: 30px 20px;
  border-radius: 20px;
  background: var(--white-clr);
}  */
.contact-section-two {
  position: relative;
}

.contact-section-two::before {
  content: "";
  position: absolute;
  top: -1px;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  z-index: -1;
}

.contact-form {
  border: 1px solid #d9d9d9;
  padding: 30px 20px;
  border-radius: 20px;
  background: var(--white-clr);
}

.contact-link span {
  font-size: 20px;
  font-weight: 500;
}

.contact-link.footer-social-links ul {
  margin-top: 25px;
}

.contact-link.footer-social-links ul li a {
  background: transparent;
  border: 1px solid #d9d9d9;
}

.contact-link.footer-social-links ul li a:hover {
  background: var(--primary-clr);
}

.contact-form h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--secondary-clr);
  margin-bottom: 25px;
}

.contact-us-content .footer-info-bx {
  border: 0;
  padding: 0;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  margin-top: 40px;
}

.contact-us-content .footer-info-bx .footer-info {
  width: 100%;
}

.contact-us-content .footer-info-bx .info-img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(29%) hue-rotate(296deg) brightness(99%) contrast(102%);
}

.contact-us-content .footer-info-bx .info-details span {
  color: var(--secondary-clr);
  font-size: 15px;
}

.contact-us-content .footer-info-bx .footer-info .info-details p a:hover {
  opacity: 1;
}

.contact-us-content .footer-info-bx .info-details p a:hover {
  color: var(--secondary-clr);
}

.contact-address-box {
  box-shadow: 0px 5px 14px #00000029;
  border-radius: 5px;
  padding: 20px;
  height: 100%;
  transition: 0.2s all;
  background: var(--white-clr);
  text-align: center;
}

.contact-address-box:hover {
  border-color: var(--light-green-clr);
}

.contact-address-box .icon {
  width: 50px;
  height: 50px;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 12px;
  background: #0000000d;
}

.contact-address-box .icon i {
  font-size: 25px;
  color: var(--primary-clr);
}

.contact-address-box .inner-bx {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.single-info-contact .contact-address-box {
  padding: 30px 20px;
}

.single-info-contact .contact-address-box .icon {
  width: 50px;
  height: auto;
  background: unset;
  padding: 0;
  /* margin-bottom: 20px; */
}

.single-info-contact .contact-address-box .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.single-info-contact .contact-address-box .inner-bx .title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-clr);
}

.single-info-contact .contact-address-box .inner-bx .contact-link a {
  color: var(--secondary-clr);
}

.single-info-contact .contact-address-box .inner-bx .contact-link a:hover {
  color: var(--primary-clr);
}

/*--------------------------------------------------------------
# About Us Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# section-1
--------------------------------------------------------------*/
section.tg-about-area .grid-2 {
  gap: 50px;
}

.tg-chose-area {
  position: relative;
}

.tg-chose-area::after {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  z-index: 1;
}

.shape-3 {
  position: absolute;
  top: -50%;
  right: 0;
  z-index: -1;
}

/*--------------------------------------------------------------
# section-2
--------------------------------------------------------------*/
.tg-about-area {
  position: relative;
}

.tg-about-area::after {
  content: "";
  position: absolute;
  top: -1px;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  z-index: -1;
}

.tg-about-details-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.tg-chose-6-wrap {
  padding: 40px;
  box-shadow: 0 4px 50px 0 #e5e5e5;
  border-radius: 15px;
  background: var(--white-clr);
  height: 100%;
  transition: 0.5s all ease-in-out;
}

.tg-chose-6-wrap:hover {
  background: var(--primary-clr);
}

.tg-chose-6-wrap:hover .icon {
  background: var(--white-clr);
}

.tg-chose-6-wrap:hover .tg-chose-6-title,
.tg-chose-6-wrap:hover p {
  color: var(--white-clr);
}

.tg-chose-6-wrap .icon {
  border-radius: 10px;
  background: #ff650514;
  width: 60px;
  height: 60px;
  text-align: center;
  display: inline-block;
  line-height: 60px;
  margin-bottom: 20px;
}

.tg-chose-6-wrap .icon svg path {
  fill: var(--primary-clr);
}

.tg-chose-6-wrap .tg-chose-6-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--secondary-clr);
}

/*--------------------------------------------------------------
# section-3
--------------------------------------------------------------*/
.about-testi {
  position: relative;
}

.testimonials::after {
  content: "";
  position: absolute;
  top: -1px;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  z-index: -1;
}

.about-testi::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0000004a;
}

.about-testi .testi-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.about-testi .testi-content h2 {
  color: var(--white-clr);
}

.about-testi .testi-content p {
  color: var(--white-clr);
}

/*--------------------------------------------------------------
Package Details
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.Tour Section left side
--------------------------------------------------------------*/
.tour-section {
  position: relative;
}

.tour-section .shape-3 {
  top: 35%;
}

.tour-section::before {
  content: "";
  position: absolute;
  top: -1px;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  z-index: -1;
}

.tour-header {
  margin-bottom: 40px;
}

.tour-location,
.tour-code {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}

.tour-metas {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.tour-metas .tour-meta-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.tour-meta-left img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(92%) saturate(6%) hue-rotate(258deg) brightness(111%) contrast(101%);
  max-width: 30px;
  height: auto;
  object-fit: contain;
  margin-right: 5px;
}

.tour-metas .tour-meta-left a {
  text-decoration: underline;
  font-weight: 700;
}

.tour-metas .tour-meta-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-share {
  padding: 10px 30px;
  border: 1px solid #d9d9d9;
  border-radius: 50px;
  background-color: var(--white-clr);
  color: var(--secondary-clr);
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}

a.btn-share img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  margin-right: 10px;
}

.btn-wishlish {
  background-color: #f2f4f6;
}

.box-banner-tour-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.box-banner-tour-detail.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 50%;
  left: 20px;
}

.box-banner-tour-detail.owl-carousel .owl-nav button.owl-prev i {
  transform: rotate(60deg);
}

.box-banner-tour-detail.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  right: 20px;
}

.box-banner-tour-detail.owl-carousel .owl-nav button {
  width: 40px;
  height: 40px;
  color: var(--white-clr) !important;
  border-radius: 50%;
  background: var(--primary-clr);
  margin: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: 0.5s all ease-in-out;
}

.box-banner-tour-detail.owl-carousel .owl-nav button i {
  font-size: 12px;
}

.box-banner-tour-detail.owl-theme .owl-nav [class*='owl-']:hover {
  background: var(--secondary-clr);
}

.box-banner-tour-detail.owl-carousel .owl-nav button:hover i {
  color: var(--white-clr);
}

.box-info-tour {
  border-radius: 8px;
  background-color: var(--white-clr);
  border: 1px solid #d9d9d9;
  box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.07);
  padding: 16px 21px;
  /* display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px; */
  margin: 40px 0;
}

.box-info-tour .tour-info-group {
  width: 25%;
  display: flex;
  align-items: center;
}

.box-info-tour .tour-info-group .icon-item {
  height: 45px;
  width: 45px;
  border: 1px solid #d9d9d9;
  background-color: var(--primary-clr);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 45px;
  margin-right: 13px;
  border-radius: 8px;
}

.box-info-tour .tour-info-group .icon-item svg {
  fill: var(--white-clr);
}

.box-info-tour .tour-info-group .sub-title {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: #575756;
  padding-bottom: 0;
}

.box-info-tour .tour-info-group .title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: var(--secondary-clr)
}

.overview-accordion .accordion-item {
  margin-bottom: 25px;
  border: 1px solid #c9c9c9;
  border-radius: 8px;
}

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

.overview-accordion .accordion-item .accordion-header {
  padding: 0;
}

.overview-accordion .accordion-button {
  background-color: unset;
  box-shadow: unset;
  font-size: 22px;
  font-weight: 500;
  line-height: 35px;
  color: var(--secondary-clr);
}

.overview-accordion .accordion-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--secondary-clr);
  padding-top: 0;
}

.overview-accordion .accordion-body p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--secondary-clr);
  margin-bottom: 10px;
}

span.ul-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  padding-bottom: 10px;
  display: block;
}

.ul-list {
  list-style: disc;
  padding-bottom: 10px;
}

.ul-list.ul-number {
  list-style: decimal;
  padding-bottom: 10px;
}

.ul-list:last-child {
  padding-bottom: 0;
}

.ul-list li::marker {
  color: var(--primary-clr);
}

ul.ul-list li {
  font-size: 16px;
  font-weight: 400;
  color: var(--secondary-clr);
}

.list-questions .item-question {
  position: relative;
  padding: 14px 20px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  background-color: var(--white-clr);
  margin-bottom: 8px;
}

.list-questions .item-question.active {
  background-color: var(--bs-neutral-100);
}

.list-questions .item-question .head-question {
  margin-bottom: 9px;
}

.list-questions .item-question .head-question p {
  background-image: url(../image/question.png);
  background-position: left center;
  background-repeat: no-repeat;
  padding: 0px 0px 0px 25px;
  margin-bottom: 0px;
}

.list-questions .item-question .head-itinerary p {
  background-image: url(../img/icons/day.svg);
  background-position: left center;
  background-repeat: no-repeat;
}

.list-questions .item-question .head-question .title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

/*--------------------------------------------------------------
2.Tour Section right side
--------------------------------------------------------------*/
.booking-form {
  position: sticky;
  top: 130px;
  right: 0;
}

.contact-form.booking-form h3 {
  margin: 0;
}

.booking-form .form-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  margin-top: 25px;
  border-top: 1px solid #d9d9d9;
  position: relative;
}

/* .booking-form .form-group{
  border: 0;
  margin: 0;
  padding: 0;
} */
.booking-form .form-group .form-control {
  width: 70%;
}

.booking-form .form-group .form-control.text-bold {
  font-weight: bold;
}

.booking-form .form-group label {
  margin: 0;
}

ul.box-popular-posts {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.box-popular-posts li .card-post {
  display: flex;
  align-items: center;
  gap: 15px;
}

.box-popular-posts li .card-post .card-image img {
  max-width: 75px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.box-popular-posts li .card-post .card-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.card-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.card-info a {
  font-weight: 600;
  color: var(--secondary-clr);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.location iframe {
  display: block;
  width: 100%;
  height: 450px;
}


.responsive_table {
  /* border: 1px solid var(--primary-clr); */
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  overflow-x: auto;
}

.responsive_table td {
  width: 50%;
  padding: 10px 20px;
  border-right: 1px solid #d9d9d9;
}

.responsive_table td:last-child {
  border-right: 0;
}

.responsive_table tr:nth-child(2n) {
  background: #f3f3f3;
}

.responsive_table table+table {
  border-top: #000 solid 1px;
  ;
}

.responsive_table td strong {
  font-weight: bold;
  font-size: 18px;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

td {
  text-align: left;
  font-weight: normal;
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar
}

.table-bordered {
  width: 100%;
  max-width: 100%;
  text-align: left;
}

.table-bordered th,
.table-bordered td {
  vertical-align: bottom;
  border-bottom: 1px solid #ddd;
  padding: 10px;
}

/*  */
.day-bx-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.day-bx-info .day-bx {
  border: 1px solid #ff6505;
  padding: 5px 20px;
  border-radius: 8px;
  background: #ff6505;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
}

.day-bx-info p.title {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.day-bx-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.itinerary-day-info {
  display: flex;
  align-items: start;
  width: 100%;
  justify-content: space-between;
  border: 1px solid #d9d9d9;
  padding: 10px;
  border-radius: 8px;
}

.pkg-tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

ul.itinerary-list {
  padding: 0;
  gap: 20px;
  display: flex;
  flex-direction: column;
}

.view-all-btn {
  text-align: center;
  margin-top: 30px;
}

.view-all-btn .primary-btn {
  background: var(--primary-clr);
  color: var(--white-clr);
  padding: 10px 30px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 400;
  transition: 0.5s all ease-in-out;
  display: inline-block;
}

.view-all-btn .primary-btn:hover {
  background: var(--secondary-clr);
  color: var(--white-clr);
}












