@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto";
}

p {
  font-family: "Poppins";
}

a {
  font-family: "Poppins";
}

header {
  padding: 6px 0;
  background-color: yellow;
}
header .inner-content .phone a {
  text-decoration: none;
  color: rgba(246, 5, 5, 0.7803921569);
  font-family: "Poppins";
  letter-spacing: 0.02rem;
  font-size: 15px;
}
header .inner-content .ms-auto a {
  text-decoration: none;
  color: rgba(246, 5, 5, 0.7803921569);
  font-family: "Poppins";
  letter-spacing: 0.02rem;
  font-size: 15px;
}

.main-nav {
  background-color: rgba(246, 5, 5, 0.7803921569);
  position: relative;
  z-index: 9;
  width: 100%;
  transition: background-color 0.5s ease, box-shadow 0.3s ease;
}
.main-nav .navbar-nav .nav-item .nav-link {
  color: #FFFFFF;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 20px 15px;
  position: relative;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 16px;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.main-nav .navbar-nav .nav-item .mega-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  z-index: 99;
  margin-top: 0;
  box-shadow: 0 5px 7px 0 rgba(62, 28, 131, 0.1);
  transition: all 0.39s;
  transition-delay: 0.1s;
  width: -moz-max-content;
  width: max-content;
  padding: 0 0 0 0;
  background: rgba(246, 5, 5, 0.7803921569);
  list-style-type: none;
  transform: rotateX(-90deg);
  transform-origin: 0 0;
}
.main-nav .navbar-nav .nav-item .mega-menu ul {
  list-style: none;
  padding: 0;
}
.main-nav .navbar-nav .nav-item .mega-menu ul li {
  line-height: 1.5;
  display: block;
}
.main-nav .navbar-nav .nav-item .mega-menu ul li a {
  text-decoration: none;
  line-height: 0px;
  transition: all 0.5s ease-out;
  text-transform: uppercase;
  font-size: 14px;
  margin: 0;
  border-bottom: 1px solid #FFFFFF;
  padding: 20px 15px;
  display: block;
  color: #FFFFFF;
}
.main-nav .navbar-nav .nav-item .mega-menu ul li a:hover {
  background-color: #FFFFFF;
  color: #000000;
}
.main-nav .navbar-nav .nav-item:hover .mega-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
  height: auto;
  opacity: 1;
  filter: alpha(opacity=100);
  display: block;
  transform: rotateX(0);
}
.main-nav .navbar-brand {
  color: #FFFFFF;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  position: relative;
  font-family: "Roboto";
  font-weight: 400;
  font-size: 24px;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.main-nav .navbar-brand img {
  width: 42px;
  height: 42px;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-nav-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  background-color: rgba(246, 5, 5, 0.7803921569);
  animation: slideDown 0.7s ease forwards;
}
.main-nav-sticky .navbar-nav .nav-item .nav-link {
  color: #ffffff;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 20px 15px;
  position: relative;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 16px;
}
.main-nav-sticky .navbar-brand {
  color: #ffffff;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  position: relative;
  font-family: "Roboto";
  font-weight: 400;
  font-size: 24px;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.main-nav-sticky .navbar-brand img {
  width: 42px;
  height: 42px;
  -o-object-fit: cover;
     object-fit: cover;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.offcanvas .offcanvas-header .navbar-brand img {
  width: 42px;
  height: 42px;
  -o-object-fit: cover;
     object-fit: cover;
}
.offcanvas .offcanvas-header button {
  color: #000000;
  opacity: 0.5;
}
.offcanvas .offcanvas-header button:focus {
  box-shadow: none !important;
}
.offcanvas .offcanvas-body ul {
  list-style: none;
  padding-left: 0;
}
.offcanvas .offcanvas-body ul li {
  border-bottom: 1px solid #ccc;
}
.offcanvas .offcanvas-body ul li a {
  padding: 12px 18px;
  text-decoration: none;
  color: #000000;
}
.offcanvas .offcanvas-body ul .megaMenuMobile .accordion-tour-offcanvas {
  text-align: left;
  font-size: 16px;
  transition: all 0.4s;
  cursor: pointer;
}
.offcanvas .offcanvas-body ul .megaMenuMobile .accordion-tour-offcanvas::after {
  content: "+";
  color: #000000;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}
.offcanvas .offcanvas-body ul .megaMenuMobile .accordion-tour-offcanvas.active::after {
  content: "−";
}
.offcanvas .offcanvas-body ul .megaMenuMobile .panel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.offcanvas .offcanvas-body ul .megaMenuMobile .panel ul {
  list-style: none;
  padding-left: 0;
}
.offcanvas .offcanvas-body ul .megaMenuMobile .panel ul li {
  line-height: 39px;
}
.offcanvas .offcanvas-body ul .megaMenuMobile .panel ul li a {
  text-decoration: none;
  color: #000000;
  font-family: "Poppins";
  font-size: 16px;
}

.home-banner .home-banner-slick .banner-home-img {
  position: relative;
}
.home-banner .home-banner-slick .banner-home-img img {
  height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-banner .home-banner-slick .banner-home-img .home-banner-content {
  position: relative;
}
.home-banner .home-banner-slick .banner-home-img .home-banner-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.home-banner .home-banner-slick .banner-home-img .home-banner-content p {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.48px;
  text-transform: capitalize;
  margin-bottom: 40px;
  color: #ffffff;
  text-align: center;
  font-family: "Poppins";
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
.home-banner .home-banner-slick .banner-home-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(180deg, rgba(16, 12, 8, 0.4) 0%, rgba(16, 12, 8, 0.4) 100%);
  transform: scale(1);
  transition: all 8000ms linear;
}
.home-banner .home-banner-slick .slick-slide .fadeInUp {
  opacity: 0;
  transition: all 1s;
  transform: translateY(-50px);
}
.home-banner .home-banner-slick .slick-active .fadeInUp {
  opacity: 1;
  transform: translateY(0);
}

.bnr-bg-small .banner-small-slider {
  position: relative;
}
.bnr-bg-small .banner-small-slider .package-card {
  position: relative;
  width: 100%;
  height: 100%;
}
.bnr-bg-small .banner-small-slider .package-card .inner-content {
  position: relative;
}
.bnr-bg-small .banner-small-slider .package-card .inner-content .image-overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: all 0.6s;
  background-color: rgba(167, 0, 0, 0.31);
}
.bnr-bg-small .banner-small-slider .package-card .inner-content a img {
  width: 100%;
  height: 242px;
  -o-object-fit: cover;
     object-fit: cover;
}
.bnr-bg-small .banner-small-slider .package-card .inner-content p a {
  color: #787878;
  font-family: "Roboto";
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}
.bnr-bg-small .banner-small-slider .package-card .inner-content p a:hover {
  color: rgba(246, 5, 5, 0.7803921569);
}
.bnr-bg-small .banner-small-slider .package-card:hover .inner-content .image-overlay {
  height: 100%;
}
.bnr-bg-small .banner-small-slider .slick-slide {
  margin: 0 13px;
}
.bnr-bg-small .banner-small-slider .prev-arrow {
  position: absolute;
  left: 0;
  top: 50%;
  color: rgba(246, 5, 5, 0.7803921569);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: #fff;
  display: flex;
  border: 1px solid rgba(246, 5, 5, 0.7803921569);
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.bnr-bg-small .banner-small-slider .prev-arrow:hover {
  background-color: rgba(246, 5, 5, 0.7803921569);
  color: #fff;
  color: 1px solid #FFFFFF;
}
.bnr-bg-small .banner-small-slider .next-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  color: rgba(246, 5, 5, 0.7803921569);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: #fff;
  display: flex;
  border: 1px solid rgba(246, 5, 5, 0.7803921569);
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.bnr-bg-small .banner-small-slider .next-arrow:hover {
  background-color: rgba(246, 5, 5, 0.7803921569);
  color: #fff;
  color: 1px solid #FFFFFF;
}

.about-part .about-left-part span {
  color: rgba(246, 5, 5, 0.7803921569);
  font-family: cursive;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.about-part .about-left-part h1 {
  color: #000000;
  font-family: "Roboto";
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}
.about-part .about-left-part .h2-heading {
  color: #000000;
  font-family: "Roboto";
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}
.about-part .about-left-part p {
  color: #787878;
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.51px;
  margin-bottom: 20px;
  text-align: justify;
  width: 100%;
}
.about-part .about-right-part figure img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 400px;
}

.bg-redd {
  background-color: rgba(246, 5, 5, 0.7803921569);
}
.bg-redd .about-part .about-left-part span {
  color: #FFFFFF;
  font-family: cursive;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.bg-redd .about-part .about-left-part h1 {
  color: #FFFFFF;
  font-family: "Roboto";
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}
.bg-redd .about-part .about-left-part .h2-heading {
  color: #FFFFFF;
  font-family: "Roboto";
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}
.bg-redd .about-part .about-left-part p {
  color: #FFFFFF;
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.51px;
  margin-bottom: 20px;
  text-align: justify;
  width: 100%;
}
.bg-redd .about-part .about-right-part figure img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 400px;
}

.dates-slider-home .inner-content {
  position: relative;
}
.dates-slider-home .inner-content::after {
  position: absolute;
  content: "";
  top: 0;
  right: -50%;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  overflow: hidden;
  display: block;
  transform: rotate(90deg);
}
.dates-slider-home .inner-content .content small {
  font-family: "Roboto";
  font-size: 16px;
  color: #FFFFFF;
  line-height: 30px;
  font-weight: 500;
  text-align: center;
  display: block;
}
.dates-slider-home .inner-content .content span {
  font-family: "Poppins";
  font-size: 16px;
  color: #FFFFFF;
  line-height: normal;
  text-align: center;
  display: block;
}
.dates-slider-home .prev-arrow,
.dates-slider-home .next-arrow {
  position: absolute;
  top: 50%;
  color: rgba(246, 5, 5, 0.7803921569);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: #fff;
  display: flex;
  border: 1px solid rgba(246, 5, 5, 0.7803921569);
  align-items: center;
  justify-content: center;
  z-index: 1;
  transform: translateY(-50%);
}
.dates-slider-home .prev-arrow:hover,
.dates-slider-home .next-arrow:hover {
  background-color: rgba(246, 5, 5, 0.7803921569);
  color: #fff;
  border: 1px solid #FFFFFF;
}
.dates-slider-home .prev-arrow {
  left: 46.5%;
  top: 132px;
}
.dates-slider-home .next-arrow {
  right: 46.5%;
  top: 132px;
}

.packages-slider .package-card-bg {
  margin-bottom: 30px;
  transition: all 0.35s;
}
.packages-slider .package-card-bg .package-card-img {
  overflow: hidden;
  display: block;
}
.packages-slider .package-card-bg .package-card-img a img {
  transition: all 0.9s ease-out;
}
.packages-slider .package-card-bg .package-card-img .featured {
  position: relative;
  bottom: 220px;
  left: 0px;
  z-index: 9;
  background: rgba(246, 5, 5, 0.7803921569);
  width: -moz-max-content;
  width: max-content;
  color: #FFFFFF;
  padding: 2px 12px;
  border-radius: 0px;
}
.packages-slider .package-card-bg .package-card-img .featured span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
}
.packages-slider .package-card-bg .package-card {
  padding: 10px 20px 10px 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px 15px 10px 10px;
  background: #fff;
  position: relative;
  margin-bottom: 20px;
  margin-top: -40px;
}
.packages-slider .package-card-bg .package-card .package-card-body .card-rating span i {
  color: #F7931E;
  font-size: 16px;
}
.packages-slider .package-card-bg .package-card .package-card-body .card-content h3 a {
  font-size: 20px;
  margin: 10px 0 10px;
  font-weight: 600;
  text-decoration: none;
  color: rgba(10, 9, 9, 0.7098039216);
  display: block;
  height: 48px;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.packages-slider .package-card-bg .package-card .package-card-body .card-content h3 a:hover {
  color: rgba(246, 5, 5, 0.7803921569);
}
.packages-slider .package-card-bg .package-card .package-card-body .card-content p {
  font-size: 16px;
  font-weight: 500;
  color: #787878;
}
.packages-slider .package-card-bg .package-card .package-card-body .card-content p del {
  color: #F7931E;
  font-size: 14px;
  font-weight: 400;
  margin-right: 2px;
}
.packages-slider .package-card-bg .package-card .package-card-footer {
  border-top: 1px dotted rgba(10, 9, 9, 0.7098039216);
}
.packages-slider .package-card-bg .package-card .package-card-footer .duration {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.packages-slider .package-card-bg .package-card .package-card-footer .duration span {
  font-size: 16px;
  font-weight: 500;
  color: rgba(10, 9, 9, 0.7098039216);
  text-decoration: none;
}
.packages-slider .package-card-bg .package-card .package-card-footer .duration a {
  font-size: 14px;
  font-weight: 500;
  color: #787878;
  text-decoration: none;
  padding-right: 5px;
}
.packages-slider .package-card-bg .package-card .package-card-footer .duration a:hover {
  color: rgba(246, 5, 5, 0.7803921569);
}
.packages-slider .package-card-bg:hover .package-card-img a img {
  transform: scale(1.2);
}
.packages-slider .prev-arrow {
  position: absolute;
  left: 0;
  top: 50%;
  color: rgba(246, 5, 5, 0.7803921569);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: #fff;
  display: flex;
  border: 1px solid rgba(246, 5, 5, 0.7803921569);
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.packages-slider .prev-arrow:hover {
  background-color: rgba(246, 5, 5, 0.7803921569);
  color: #fff;
  color: 1px solid #FFFFFF;
}
.packages-slider .next-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  color: rgba(246, 5, 5, 0.7803921569);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: #fff;
  display: flex;
  border: 1px solid rgba(246, 5, 5, 0.7803921569);
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.packages-slider .next-arrow:hover {
  background-color: rgba(246, 5, 5, 0.7803921569);
  color: #fff;
  color: 1px solid #FFFFFF;
}
.packages-slider .slick-slide {
  margin: 0 13px;
}
.packages-slider .slick-slide img {
  width: 100%;
  height: 233px;
  -o-object-fit: cover;
     object-fit: cover;
}

.content .table-home table thead tr th {
  background-color: rgba(246, 5, 5, 0.7803921569);
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 500;
  font-family: "Roboto";
  line-height: 1.7;
  white-space: nowrap;
}
.content .table-home table tbody tr td {
  color: #787878;
  font-size: 16px;
  font-weight: 400;
  font-family: "Poppins";
  line-height: 1.5;
  white-space: nowrap;
}
.content .list-content ul li {
  color: #787878;
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins";
  line-height: 2;
  text-align: left;
}

.destination-section .destination-slider {
  display: flex;
  overflow: hidden;
}
.destination-section .destination-slider .destination-item {
  position: relative;
  margin: 0 13px;
}
.destination-section .destination-slider .destination-item a {
  display: block;
}
.destination-section .destination-slider .destination-item img {
  width: 100%;
  height: 342px;
  -o-object-fit: cover;
     object-fit: cover;
}
.destination-section .destination-slider .destination-item .inner-content {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #FFF;
  text-align: center;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.destination-section .destination-slider .destination-item .inner-content span {
  display: block;
  width: 100%;
  color: #FFFFFF;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 0;
}
.destination-section .destination-slider .destination-item .inner-content h4 {
  color: #FFFFFF;
  font-weight: 500;
  line-height: normal;
}
.destination-section .destination-slider .destination-item:hover .inner-content {
  opacity: 1;
  width: 100%;
}
.destination-section .destination-slider .destination-item:hover .inner-content span {
  color: #FFFFFF;
}
.destination-section .destination-slider .destination-item:hover .inner-content h4 {
  color: #FFFFFF;
  font-weight: 500;
  line-height: normal;
}
.destination-section .destination-slider .destination-item:hover .inner-content::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(246, 5, 5, 0.7803921569);
  z-index: -1;
  display: block;
}
.destination-section .destination-slider .prev-arrow,
.destination-section .destination-slider .next-arrow {
  position: absolute;
  top: 50%;
  color: rgba(246, 5, 5, 0.7803921569);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: #fff;
  display: flex;
  border: 1px solid rgba(246, 5, 5, 0.7803921569);
  align-items: center;
  justify-content: center;
  z-index: 1;
  transform: translateY(-50%);
}
.destination-section .destination-slider .prev-arrow:hover,
.destination-section .destination-slider .next-arrow:hover {
  background-color: rgba(246, 5, 5, 0.7803921569);
  color: #fff;
  color: 1px solid #FFFFFF;
}
.destination-section .destination-slider .prev-arrow {
  left: 0px;
}
.destination-section .destination-slider .next-arrow {
  right: 0px;
}

.quick-sort {
  background: rgba(246, 5, 5, 0.7803921569);
  padding: 15px 0;
}
.quick-sort .left-part figure img {
  width: 57px;
  height: 62px;
  -o-object-fit: cover;
     object-fit: cover;
}
.quick-sort .left-part h4 {
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 18px;
  color: #FFFFFF;
  font-family: "Roboto";
  font-weight: 500;
}
.quick-sort .left-part p {
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 14px;
  color: #FFFFFF;
  font-family: "Poppins";
  font-weight: 300;
}
.quick-sort .right-part .phone i {
  font-size: 43px;
  font-weight: 800;
  color: #FFFFFF;
}
.quick-sort .right-part p {
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 14px;
  color: #FFFFFF;
  font-family: "Poppins";
  font-weight: 300;
}
.quick-sort .right-part h4 {
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 18px;
  color: #FFFFFF;
  font-family: "Roboto";
  font-weight: 500;
}
.quick-sort .right-part a {
  background-color: #FFFFFF;
  color: #000000;
  border: 1px solid #FFF;
  font-size: 14px;
  font-family: "Poppins";
  font-weight: 500;
  padding: 5px 7px;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
}

#faq {
  padding: 10px 0;
}
#faq .faq-headings h3 {
  color: #000000;
  font-family: "Roboto";
  font-size: 27px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 40px;
}
#faq .faq-main .faq-right .accordion {
  border-top: 1px solid #d9e5e8;
  padding-left: 0px;
  margin: 0px;
}
#faq .faq-main .faq-right .accordion li {
  border-bottom: 1px solid #d9d9e8;
  position: relative;
  list-style: none;
}
#faq .faq-main .faq-right .accordion li .div {
  display: none;
  font-family: "Poppins";
  padding: 0px 0px 40px 0px;
}
#faq .faq-main .faq-right .accordion li .div p {
  color: #192024;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  margin: 0px;
  line-height: normal;
  padding: 0 0 5px 0;
}
#faq .faq-main .faq-right .accordion h5 {
  width: 100%;
  display: block;
  color: #192024;
  cursor: pointer;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 27px 31px 21px 0px;
}
#faq .faq-main .faq-right .accordion h5::after {
  width: 14px;
  height: 14px;
  border-right: 3px solid rgba(246, 5, 5, 0.7803921569);
  border-bottom: 3px solid rgba(246, 5, 5, 0.7803921569);
  position: absolute;
  right: 10px;
  content: " ";
  top: 28px;
  transform: rotate(47deg);
  transition: all 0.2s ease-in-out;
}
#faq .faq-main .faq-right .accordion h5.active::after {
  transform: rotate(224deg);
  transition: all 0.2s ease-in-out;
}

footer {
  background-color: rgba(246, 5, 5, 0.7803921569);
  padding: 30px 0;
}
footer .footer-widget .logo {
  color: #FFFFFF;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  position: relative;
  font-family: "Roboto";
  font-weight: 400;
  font-size: 24px;
  display: flex;
  align-items: center;
  text-decoration: none;
}
footer .footer-widget .logo img {
  width: 42px;
  height: 42px;
  -o-object-fit: cover;
     object-fit: cover;
}
footer .footer-widget p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
  font-family: "Poppins";
  font-weight: 400;
  letter-spacing: 0.02rem;
  padding: 20px 0;
  text-decoration: none;
}
footer .footer-widget .footer-social {
  list-style: none;
  padding: 0;
}
footer .footer-widget .footer-social li a {
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  margin-right: 20px;
}
footer .footer-widget .footer-social li a:hover {
  background-color: #FFFFFF;
  color: rgba(246, 5, 5, 0.7803921569);
}
footer .footer-quick-links h5 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.66px;
  margin-bottom: 20px;
}
footer .footer-quick-links ul {
  list-style: none;
  padding: 0;
}
footer .footer-quick-links ul li a {
  color: #ffffff;
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.32px;
  transition: 0.5s;
  text-decoration: none;
}
footer .footer-quick-links p {
  color: #ffffff;
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.32px;
  transition: 0.5s;
}
footer .whatsapp-icon-fixed {
  position: fixed;
  z-index: 99;
  right: 20px;
  width: 42px;
  bottom: 30px;
}

/* --------------   Home  end-------------------- */
/*  ----- iteinary page end ----*/
.home-banner-others .banner-home-img {
  position: relative;
}
.home-banner-others .banner-home-img img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-banner-others .banner-home-img .home-banner-content {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.home-banner-others .banner-home-img .home-banner-content p {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.48px;
  text-transform: capitalize;
  margin-bottom: 40px;
  color: #ffffff;
  text-align: center;
  font-family: "Poppins";
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
.home-banner-others .banner-home-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(180deg, rgba(16, 12, 8, 0.4) 0%, rgba(16, 12, 8, 0.4) 100%);
}

.breadcrumb-start .breadcrumb .breadcrumb-item a {
  text-decoration: none;
}
.breadcrumb-start .breadcrumb .breadcrumb-item a span {
  text-decoration: none;
  font-size: 18px;
  font-variant: normal;
  font-family: "Poppins";
  color: #000000;
  font-weight: 500;
}
.breadcrumb-start .breadcrumb .breadcrumb-item.active {
  font-size: 16px;
  font-variant: normal;
  font-family: "Poppins";
  font-weight: 500;
  color: rgba(246, 5, 5, 0.7803921569);
}

.tour-type {
  background-color: #eef0f3;
}
.tour-type h1 {
  color: #000000;
  font-family: "Roboto";
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}
.tour-type .mini-card {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0.85rem 1rem;
  background-color: #fff;
}
.tour-type .mini-card .card-icon i {
  color: rgba(246, 5, 5, 0.7803921569);
  padding-right: 20px;
  font-size: 26px;
}
.tour-type .mini-card .card-content {
  border-left: 1px solid #6c757d;
  padding-left: 20px;
}
.tour-type .mini-card .card-content h3 {
  color: #212529;
  display: block;
  margin-bottom: 0px;
  font-size: 1.25rem;
  text-decoration: none;
}
.tour-type .mini-card .card-content small {
  color: #6c757d;
  display: block;
  text-decoration: none;
}

.destination-cover-list h2 {
  color: #000000;
  font-family: "Roboto";
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}
.destination-cover-list .list span {
  margin-top: 20px;
  font-size: 18px;
  font-family: "Poppins";
  font-weight: 500;
  line-height: normal;
  display: inline-block;
  position: relative;
  padding: 0 5px;
}
.destination-cover-list .list span::before {
  content: "";
  position: absolute;
  top: 14px;
  right: -36px;
  width: 15px;
  transform: rotate(90deg);
  height: 1px;
  background-color: rgba(246, 5, 5, 0.7803921569);
  overflow: hidden;
}

.overview-highlights .card .card-body h2 {
  color: #000000;
  font-family: "Roboto";
  font-size: 34px;
  font-weight: 600;
  line-height: 1.1;
}
.overview-highlights .card .card-body p {
  color: #787878;
  font-family: "Poppins";
  font-size: 17px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.51px;
  margin-bottom: 20px;
  text-align: justify;
  width: 100%;
}
.overview-highlights .card .card-body button {
  border-radius: 5px;
  background-color: rgba(246, 5, 5, 0.7803921569);
  font-family: "Poppins";
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 0.48px;
  text-transform: capitalize;
  line-height: 1;
  padding: 10px 13px;
  gap: 10px;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid rgba(246, 5, 5, 0.7803921569);
}
.overview-highlights .card .card-body .mnw-200 .h3-heading {
  color: #000000;
  font-family: "Roboto";
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}
.overview-highlights .card .card-body .highlight-list li span {
  color: #787878;
  font-family: "Poppins";
  font-size: 17px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.51px;
  margin-bottom: 20px;
  text-align: justify;
  width: 100%;
  display: block;
}
.overview-highlights .card .card-body .highlight-list li span strong {
  color: #0f0909;
  font-family: "Poppins";
  font-size: 17px;
  font-weight: 500;
  line-height: 1.1;
}

.my-itinary .card .card-body h2 {
  font-family: "Roboto";
  font-size: 34px;
  font-weight: 600;
  line-height: 1.1;
}
.my-itinary .card .card-body .accordion-itinerary .accordion-header .accordion-button {
  position: relative;
  padding-left: 60px;
}
.my-itinary .card .card-body .accordion-itinerary .accordion-header .accordion-button strong {
  font-size: 22px;
  padding-left: 25px;
  color: #000000;
  font-family: "Roboto";
  line-height: normal;
  font-weight: 600;
}
.my-itinary .card .card-body .accordion-itinerary .accordion-header .accordion-button span {
  font-size: 18px;
  color: #000000;
  font-family: "Roboto";
  line-height: normal;
  font-weight: 500;
  padding-left: 7px;
}
.my-itinary .card .card-body .accordion-itinerary .accordion-header .accordion-button::before {
  content: "+";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  font-size: 25px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(246, 5, 5, 0.7803921569);
  border: 1px solid rgba(246, 5, 5, 0.7803921569);
  color: #fff;
  transition: 0.3s ease-in-out;
}
.my-itinary .card .card-body .accordion-itinerary .accordion-header .accordion-button:not(.collapsed)::before {
  content: "-";
}
.my-itinary .card .card-body .accordion-itinerary .accordion-header .accordion-button:hover span {
  color: rgba(246, 5, 5, 0.7803921569);
}
.my-itinary .card .card-body .accordion-itinerary .accordion-header .accordion-button:hover strong {
  color: rgba(246, 5, 5, 0.7803921569);
}
.my-itinary .card .card-body .accordion-itinerary .accordion-header .accordion-button::after {
  background-image: none;
  display: none;
}
.my-itinary .card .card-body .accordion-itinerary .accordion-header .accordion-button:focus {
  box-shadow: none !important;
  background-color: transparent;
}
.my-itinary .card .card-body .accordion-itinerary .accordion-body {
  color: #787878;
  font-family: "Poppins";
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.51px;
}

.policy .card .card-body .checked {
  list-style: none;
  padding: 0;
}
.policy .card .card-body .checked li {
  position: relative;
}
.policy .card .card-body .checked li::before {
  position: absolute;
  content: "✓";
  background-color: rgb(22, 220, 22);
  width: 23px;
  height: 23px;
  color: #FFFFFF;
  border-radius: 50%;
  top: 8px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.policy .card .card-body .checked li .m-start {
  padding-left: 30px;
}
.policy .card .card-body .un-checked {
  list-style: none;
  padding: 0;
}
.policy .card .card-body .un-checked li {
  position: relative;
}
.policy .card .card-body .un-checked li::before {
  position: absolute;
  content: "✕";
  background-color: rgba(246, 5, 5, 0.7803921569);
  width: 23px;
  height: 23px;
  color: #FFFFFF;
  border-radius: 50%;
  top: 8px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.policy .card .card-body .un-checked li .m-start {
  padding-left: 30px;
}

.itinary-gallery .main-gallary .main {
  z-index: 0;
  position: relative;
}
.itinary-gallery .main-gallary .main .card-image {
  background: #ffffff;
  display: block;
  padding-top: 70%;
  position: relative;
  width: 100%;
  z-index: 999;
  height: 100%;
}
.itinary-gallery .main-gallary .main .card-image a img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.itinary-gallery .main-gallary .main .card-image a span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #FFFFFF;
  color: rgba(246, 5, 5, 0.7803921569);
  border: 1px solid rgba(246, 5, 5, 0.7803921569);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.itinary-gallery .main-gallary .main .card-image:hover span {
  opacity: 1;
}

/*  ----- iteinary page end ----*//*# sourceMappingURL=style.css.map */