:root {
  --white: #fff;
  --black: #000;
  --yellow: #ffcc05;
  --body-font: "Poppins", sans-serif;
  --heading-font: "Playfair Display", serif;
  --cursive-font: "Carattere", cursive;
}

/*
    font-family: "Carattere", cursive;
    font-family: "Playfair Display", serif;
    font-family: "Poppins", sans-serif;
    font-family: "Dancing Script", cursive;
 */

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  line-height: 27px;
}

a {
  text-decoration: none !important;
  display: inline-block;
}

p:last-of-type {
  margin-bottom: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

img {
  width: 100%;
  height: 100%;
}

/*=== Common Css Start ===*/

/*--- Section Spacing Start ---*/

.sec-space-40 {
  padding: 40px 0;
}

.sec-space-50 {
  padding: 50px 0;
}

.sec-space-60 {
  padding: 60px 0;
}

.sec-space-70 {
  padding: 70px 0;
}

.sec-space {
  padding: 80px 0;
}

.sec-space-top {
  padding: 80px 0 0;
}

.sec-space-bottom {
  padding: 0 0 80px;
}

/*--- Section Spacing End ---*/

/*--- Section Heading Start ---*/

.section-heading {
  margin-bottom: 50px;
}

.section-heading h2 {
  position: relative;
  font-weight: 600;
  font-size: 48px;
  line-height: normal;
}

.section-heading h6 {
  font-size: 26px;
  font-weight: 600;
  font-family: var(--cursive-font);
  margin-bottom: 10px;
  background: var(--yellow);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.div-head h3 {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 25px;
  font-size: 30px;
  font-weight: 600;
}

.div-head h3::after {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--silver);
  content: "";
  width: 150px;
  height: 3px;
}

.w-60 {
  width: 60%;
}

.bg-yellow {
  background: var(--yellow);
}

.text-yellow {
  color: var(--yellow);
}

/*--- Section Heading End ---*/

/*--- Button Start ---*/

.btn {
  font-size: 14px;
  border-radius: 0px;
  padding: 17px 30px;
  letter-spacing: 1px;
  position: relative;
  border: 0px;
  z-index: 1;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--white);
  transition: all 0.3s;
}

.btn-yellow:hover {
  background: #333;
  color: var(--white);
  transition: all 0.3s;
}

.btn-black {
  background: var(--black);
  color: var(--white);
  transition: all 0.3s;
}

.btn-black:hover {
  background: #333;
  color: var(--yellow);
  transition: all 0.3s;
}

.play-cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.5s;
}

.play-btn {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  line-height: 56px;
  text-align: center;
  background: #000;
  color: var(--white);
  font-size: 19px;
  z-index: 1;
  transition: all 0.5s;
}

.play-btn-cover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.play-btn i {
  margin-left: 3px;
}

.play-btn:hover {
  color: var(--white);
}

.play-btn:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #000;
  border-radius: 50%;
  z-index: -1;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
}

@-webkit-keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);

    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);

    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);

    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);

    opacity: 0;
  }
}

.btn-video {
  color: var(--white);
}

.filler {
  width: 70px;
}

.filler-2 {
  width: 90px;
}

/*--- Button End ---*/

/*====== Common Css End ======*/

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

.header-main {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}

.header-info-box {
  border-right: 1px solid #dedede;
}

.header-top .header-info-content,
.header-top .header-info-content a {
  color: #858585;
}

.header-info-icon {
  height: 26px;
  color: var(--black);
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  margin-right: 10px;
  font-size: 12px;
}

.navbar {
  padding: 0px;
  background: transparent;
}

.navbar-brand {
  width: 190px;
}

.nav-item:not(:last-child) {
  margin-right: 20px;
}

.navbar-nav .nav-item {
  margin-right: 50px;
  position: relative;
}

.navbar-nav .nav-item:last-child {
  margin-right: 0px;
}

.navbar .nav-link {
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  color: #fdffe4;
  transition: all 0.3s ease-out;
  padding: 30px 0px !important;
  position: relative;
}

.navbar .nav-link:hover {
  color: var(--yellow);
  transition: all 0.5s ease-in;
}

.navbar .nav-link.active {
  color: var(--yellow);
  transition: all 0.5s ease-in;
}

/* .navbar .nav-link::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    content: '';
    background: var(--gradient-color-1);
    transition: all .5s;
} */

.navbar .nav-link:hover::before,
.navbar .nav-link.active::before {
  width: 100%;
  transition: all 0.5s;
}

.navbar-text .btn-header {
  display: inline-block;
  cursor: pointer;
  outline: none;
  vertical-align: middle;
  background: var(--yellow);
  padding: 8px 30px;
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  z-index: 9;
  border: none;
  border-radius: 6px;
  background-size: 100% auto;
  transition: background-position 0.5s ease;
  transition: all 0.5s;
}

.navbar-text .btn-header span {
  font-size: 16px;
  margin-right: 8px;
}

.navbar-text .btn-header:hover {
  background: #222;
  color: var(--white);
  transition: all 0.5s;
}

.dropdown-links {
  position: absolute;
  left: -100px;
  top: calc(100%);
  width: 300px;
  height: max-content;
  background: #fcfcfc;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 0.5s;
}

.nav-item:hover .dropdown-links {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  transition: all 0.5s;
}

.dropdown-links li {
  margin-bottom: 5px;
  transition: all 0.3s;
}

.dropdown-links li:last-child {
  margin-bottom: 0px;
}

.dropdown-links li:hover {
  transition: all 0.3s;
}

.dropdown-links li a {
  color: var(--white);
  width: 100%;
  background: #333;
  padding: 10px 15px;
}

.dropdown-links li a:hover {
  color: #ffffff;
  width: 100%;
  background: #000000;
  padding: 10px 15px;
}

.social-header ul li {
  margin-right: 30px;
}

.social-header ul li:last-child {
  margin-right: 0px;
}

.social-header ul li a {
  color: #000118;
  font-weight: 400;
  font-size: 16px;
  padding: 7px 0;
}

.canvas-btn {
  border: 2px solid #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.canvas-btn:hover {
  border: 2px solid #ffff;
  transition: all 0.5s;
}

.canvas-btn img {
  width: 20px;
  transition: all 0.5s;
}

.canvas-btn:hover img {
  transform: rotate(90deg);
  transform-origin: center;
  transition: all 0.5s;
}

@-webkit-keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-o-keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
    transform: none;
  }
}

@keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
    transform: none;
  }
}

.header-show {
  background: var(--black);
  position: fixed !important;
  top: 0;
  z-index: 999;
  width: 100%;
  transform: translateY(0px);
  -webkit-animation-name: animationFade;
  -o-animation-name: animationFade;
  animation-name: animationFade;
  -webkit-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

.header-show .navbar-brand {
  width: 160px;
}

.header-show .navbar .nav-link {
  padding: 24px 0px !important;
}

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

/*------ Carousel Start ------*/
.carousel-item {
  background: var(--black);
  position: relative;
  z-index: 9;
  height: 100vh;
}

.carousel-item::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 1;
  background: rgba(0, 0, 0, 0.1);
}

.carousel-item img {
  opacity: 1;
  object-fit: cover;
}

.banner-content-wrapper {
  max-width: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  z-index: 9;
  top: 60%;
  transform: translateY(-50%);
}

.banner-heading,
.banner-paragraph {
  width: 75%;
  margin-bottom: 20px;
}

.banner-heading h1 {
  font-size: 90px;
  color: var(--yellow);
  text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1),
    0px 18px 23px rgba(0, 0, 0, 0.1);
  font-weight: 700;
}

.banner-paragraph p {
  color: var(--white);
  font-weight: 500;
  font-size: 20px;
  line-height: 29px;
}

.btn-banner {
  padding: 0px;
  height: 54px;
  line-height: 54px;
  font-size: 15px;
  font-family: var(--heading-font);
  color: #000000;
  position: relative;
  background: #fff;
  border-radius: 5px;
  min-width: 180px;
  border: 0px;
  transition: all 0.4s;
}

.carousel-control-next,
.carousel-control-prev {
  background: var(--black);
  width: 44px;
  height: 44px;
  font-size: 16px;
  z-index: 9;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  border-radius: 5px;
}

.carousel-control-prev {
  left: 40px;
}

.carousel-control-next {
  right: 40px;
}

.banner-decor-left,
.banner-decor-right {
  animation: floatY 3s ease-in-out infinite alternate;
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-20px);
  }
}

/*------ Carousel End ------*/

/*------ Banner Form Start  ------*/

.banner-form {
  position: absolute;
  bottom: 120px;
  width: max-content;
  height: max-content;
  z-index: 99;
  background: var(--white);
  left: 50%;
  transform: translateX(-50%);
}

.about-home-image::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: url(../images/about-us/about_shape_1.webp) no-repeat center;
  background-size: contain;
  z-index: -1;
}

.form-container>h5 {
  width: fit-content;
  background: #198754;
  padding: 10px 15px;
  color: var(--white);
  position: absolute;
  top: -38px;
  left: 0;
  font-size: 15px;
  border-bottom: 1px solid #ffffff1a;
  font-family: var(--body-font);
  font-weight: 400;
}

.form-container {
  padding: 30px 35px;
}

.form-banner .single-input {
  margin-bottom: 0px;
  background: var(--white);
  padding: 2px 15px;
  position: relative;
  padding-left: 40px;
  border: 1px solid #dedede;
  border-left: 0px;
}

.form-banner .single-input:nth-child(1) {
  border-left: 1px solid #dedede;
}

.input-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.form-banner .single-input .form-control {
  margin-bottom: 0px;
  border: 0px;
  padding: 0px;
  border-radius: 0px;
  box-shadow: none !important;
  outline: none !important;
  height: auto;
  line-height: 22px;
}

.form-banner .single-input .form-control:focus {
  box-shadow: none !important;
  outline: none !important;
  border: 0px !important;
}

.form-banner .single-input .form-control::placeholder {
  font-size: 15px;
  color: var(--black);
}

.form-banner .single-input p {
  font-size: 13px;
}

/*------ Banner Form End  ------*/

/*------ About Home Start ------*/

.about-home-image {
  border-radius: 10px;
  padding-right: 120px;
  padding-bottom: 80px;
}

.about-home-image img {
  object-fit: cover;
}

.img-main {
  border-radius: 50%;
}

.center-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(55%);
  height: calc(70%);
  border: 8px solid var(--white);
}

.center-image img {
  object-fit: cover;
}

.home-about-feature .icon {
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 50px;
  height: 50px;
  padding: 5px;
  border-radius: 5px;
}

.home-about-feature .content h5 {
  font-size: 26px;
  font-weight: 500;
}

/*------ About Home End ------*/

/*------ Features Start  ------*/

.features-home::before {
  position: absolute;
  bottom: 45%;
  right: 0;
  background-size: contain;
  height: 500px;
  width: 400px;
  content: "";
  opacity: 0.1;
}

.feature-box {
  padding: 30px 25px;
  background: #fcfcfc;
  height: 100%;
}

.feature-content h4 {
  font-size: 21px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: #5d4b16;
  border-radius: 50%;
  padding: 15px;
  position: relative;
  margin-bottom: 22px;
}

.feature-icon::before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -23px;
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: var(--color-pink);
  content: "";
}

.feature-row>[class^="col-"]:last-child .feature-box {
  border-right: none;
}

.feature-content a {
  color: #ff00cc;
  font-weight: 500;
  font-size: 15px;
}

/*------ Features End  ------*/

/*------ Event Start  ------*/

.events-home {
  background: #fcfcfc;
}

.event-box {
  position: relative;
  z-index: 1;
  transition: all 0.5s;
}

.event-image {
  height: 400px;
}

.event-image img {
  object-fit: cover;
}

.event-image a {
  height: 100%;
  width: 100%;
}

.alter-title {
  position: absolute;
  bottom: 0px;
  text-align: center;
  width: 100%;
  background: linear-gradient(1deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(255, 255, 255, 0) 100%);
  padding: 25px 35px;
  transition: all 0.4s;
}

.alter-title h5 {
  color: var(--white);
  font-size: 24px;
}

.event-box:hover .alter-title {
  opacity: 0;
  transition: all 0.4s;
}

.event-box::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.6);
  transition: all 0.5s;
}

.event-box:hover::before {
  height: 100%;
  transition: all 0.5s;
}

.loc-icon {
  width: 24px;
}

.event-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: max-content;
  padding: 10px 15px;
  transition: all 0.4s;
}

.event-box:hover .event-content {
  transform: translateY(0px);
  transition: all 0.4s;
}

.event-content a:hover {
  color: var(--yellow) !important;
}

.event-thumb-title a {
  /* display: block; */
  color: var(--yellow);
  margin: 15px 0;
}

.event-thumb-title a {
  font-size: 30px;
  text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1),
    0px 18px 23px rgba(0, 0, 0, 0.1);
}

.event-thumb-title a:hover {
  color: var(--yellow);
  text-decoration: none !important;
}

.event-thumb-para {
  color: var(--white);
  opacity: 0;
  margin-bottom: -75px !important;
  transition: all 0.4s;
}

.event-box:hover .event-thumb-para {
  margin-bottom: 10px !important;
  opacity: 1;
  transition: all 0.4s;
}

.style-heading {
  font-family: var(--cursive-font);
  font-weight: 500;
  font-size: 24px;
  color: var(--yellow);
  opacity: 0;
}

.read-btn {
  color: var(--yellow);
  padding: 8px 0;
  border-radius: 6px;
}

.event-slider .owl-nav {
  display: block !important;
  position: absolute;
  top: -60px;
  right: 0;
  opacity: 1;
  transition: all 0.8s;
}

.event-slider .owl-nav .owl-prev,
.event-slider .owl-nav .owl-next {
  background: #222 !important;
  color: var(--white) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: all 0.5s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0px;
  border-radius: 50%;
}

.event-slider .owl-nav .owl-prev:hover,
.event-slider .owl-nav .owl-next:hover {
  background: var(--black) !important;
  color: var(--white) !important;
  transition: all 0.5s;
}

.event-slider .owl-nav .owl-next {
  right: 0;
}

.event-slider .owl-nav .owl-prev {
  left: -90px;
}

.event-slider .owl-dots {
  margin-top: 20px;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 40px;
}

/*------ Event End ------*/

/*------ Why Choose Us Start ------*/

.why-point {
  margin-bottom: 10px;
}

.why-icon {
  flex: 0 0 80px;
  height: 80px;
  background: #464b57;
  border-radius: 50%;
  border: 3px solid #696969;
  padding: 15px;
}

.why-content {
  flex: 0 0 calc(100% - 100px);
  color: #afafaf;
}

.why-content h5 {
  font-weight: 600;
  font-size: 20px;
  font-family: var(--heading-font);
  color: var(--yellow);
}

.bg-panda {
  padding: 70px;
}

.bg-panda::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 300px;
  background: url(../images/panda.png) no-repeat right;
  background-size: contain;
  content: "";
  opacity: 0.15;
}

.why-choose-image img {
  object-fit: cover;
}

/*------ Why Choose Us End ------*/

/*------ Tour Two Start ------*/

.tour-home {
  background: #f9f9f9;
}

.tour-image {
  height: 220px;
}

.tour-image img {
  object-fit: cover;
}

.tour-box {
  border-radius: 10px;
  overflow: hidden;
}

.tour-content {
  background: var(--white);
  padding: 20px 25px;
}

.tour-location span,
.time-duration span,
.people-no span {
  color: #089700;
}

.tour-thumb-title a {
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--black);
}

.tour-btn {
  border-top: 1px dashed #a0a0a0;
  width: 100%;
  padding-top: 15px;
  margin-top: 10px;
  color: #687179;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

.tour-btn span {
  color: #00711e;
  margin-left: 5px;
}

/*------ Tour Two Start  ------*/

/*------ Category Start   ------*/

.category-grid {
  display: grid;

  grid-template-columns: 1fr 1.1fr 1fr;

  grid-gap: 15px;
}

.category-grid .cg-box {
  overflow: hidden;

  display: block;

  position: relative;
}

.category-grid .cg-box img {
  object-fit: cover;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}

.category-grid .cg-box:hover img {
  transform: scale(1.1);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}

.category-grid .cg-box:nth-child(1) {
  grid-column: span 2;
  height: 400px;
}

.category-grid .cg-box:nth-child(2) {
  grid-row: span 2;
  height: 100%;
}

.category-grid .cg-box:nth-child(3),
.category-grid .cg-box:nth-child(4) {
  height: 300px;
}

.style-text {
  font-family: var(--cursive-font);
  font-weight: 600;
  color: var(--yellow);
  font-size: 28px;
  text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1),
    0px 18px 23px rgba(0, 0, 0, 0.1);
}

.cover-cat {
  position: absolute;
  bottom: 0;
  left: 30px;
  width: 100%;
  height: fit-content;
  padding: 20px 0 20px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.category-grid .cg-box:after {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(56 0 0 / 20%);
  content: "";
  top: 0;
  left: 0;
  z-index: -1;
}

.cover-cat h5 {
  font-size: 36px;
  color: var(--white);
  text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1),
    0px 18px 23px rgba(0, 0, 0, 0.1);
}

/*------ Category End ------*/

/*------ Holy Places Start  ------*/

.offbeat-grid ul {
  column-count: 3;
  column-gap: 20px;
}

.offbeat-grid ul li {
  margin-bottom: 20px;
  position: relative;
}

.offbeat-title {
  position: absolute;
  left: 30px;
  bottom: 40px;
  width: 100%;
  height: max-content;
  margin-bottom: 0px;
}

.offbeat-title a {
  color: var(--white);
  font-size: 30px;
  text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1),
    0px 18px 23px rgba(0, 0, 0, 0.1);
}

.offbeat-title a:hover {
  color: var(--white);
}

.pilgrim-btn {
  margin-top: 30px;
}

/*------ Holy Places End  ------*/

/*------ Testimonials Start ------*/

.video-home {
  position: relative;
  margin-bottom: -280px;
  z-index: 9;
}

.testimonial-video {
  border-radius: 30px;
  overflow: hidden;
}

.testimonial-video img {
  object-fit: cover;
}

.testimonial-home {
  position: relative;
  margin: 80px 0px 0px;
  padding-top: 80px;
  background: #f9f9f9;
  z-index: 1;
}

.testimonial-content::after {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  content: "";
  background: url(../images/other-icons/quote.svg) no-repeat;
  background-size: contain;
  opacity: 0.2;
}

.testimonial-content {
  padding: 25px 35px;
  border: 1px solid #ededed;
  margin-bottom: 15px;
  background: #fff;
  position: relative;
}

.reviewer-image {
  flex: 0 0 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.reviewer-image img {
  object-fit: cover;
}

.client-review p {
  margin: 15px 0;
  height: 120px;
  overflow-y: auto;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.rating ul li {
  color: var(--yellow);
  margin-right: 8px;
}

.testimonial-content p::-webkit-scrollbar {
  width: 3px;
}

.testimonial-content p::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.testimonial-content p::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--black);
}

.testimonial-content p::-webkit-scrollbar-thumb:hover {
  background: var(--green);
}

.testimonial-content h6 {
  font-weight: 600;
  font-size: 18px;
}

.testimonial-rating li {
  color: goldenrod;
}

.reviewer-name {
  font-size: 20px;

  font-family: var(--alter-font);

  color: var(--white);

  margin-bottom: 0px;

  font-weight: 600;
}

.reviewer-designation {
  color: #fff5ce;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.testimonial-content::after {
  position: absolute;
  right: 30px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  content: "";
  background: url(../images/other-icons/quote.svg) no-repeat;
  background-size: contain;
  opacity: 0.2;
}

/*------ Testimonials End ------*/

/*------ Tour Type  Start  ------*/

.tour-type {
  padding: 140px 0;
  position: relative;
  background: url(../images/backgrounds/bg-tour.webp) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 1;
}

.tour-type::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  content: "";
  z-index: -1;
}

.tt-icon {
  width: 64px;
  height: 64px;
}

.tt-icon img {
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.5s;
}

.tt-box:hover .tt-icon img {
  filter: none;
  transition: all 0.5s;
}

.tt-title {
  margin-top: 25px;
  font-family: var(--heading-font);
}

.tt-title a {
  font-size: 24px;
  color: var(--white);
}

/* ------ Tour Type  End ------*/

/*------ Offer Blog Start  ------*/

.offer-blog {
  display: flex;
  flex-direction: column;
  margin-bottom: 0px;
  justify-content: center;
  height: 100%;
}

.bg-offer {
  padding: 70px;
  background: #f7f7f7;
  z-index: 1;
}

.bg-offer::before {
  position: absolute;
  bottom: -90px;
  right: -20px;
  width: 550px;
  height: 510px;
  content: "";
  background: url(../images/line-art/elephant.webp) no-repeat center;
  background-size: 100%;
  z-index: -1;
  opacity: 0.1;
}

.offer-blog .btn {
  width: fit-content;
}

.offer-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 200px;
  font-weight: 800;
  color: var(--white);
  font-family: var(--heading-font);
}

.offer-content span {
  font-weight: 400;
  display: block;
  font-size: 78px;
  color: var(--yellow);
  font-family: var(--cursive-font);
  transform: translate(80px, 80px) rotate(352deg);
}

.offer-image {
  z-index: 1;
  height: 570px;
}

.offer-image::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.15);
}

/*------ Offer Blog End  ------*/

/*------ Newsletter Start  ------*/

.newsletter {
  background: url(../images/backgrounds/newsletter-bg.jpeg) no-repeat center;
  background-size: cover;
  padding: 20px 30px;
  margin: 0 13% -50px;
  z-index: 2;
}

.input-box-news {
  flex: 0 0 60%;
}

.newsletter-heading {
  flex: 0 0 auto;
}

.newsletter-heading h2 {
  font-size: 38px;
}

.input-box-news .single-input input.form-control {
  border: 0px !important;
  height: 55px;
  line-height: 55px;
  margin-bottom: 0px;
  border-radius: 0px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  box-shadow: none !important;
  outline: none !important;
}

.input-box-news .single-input {
  width: 100%;
}

/*------ Newsletter End  ------*/

/* --------- Blog Start ------- */

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  background: var(--title);
  height: 40px;
  width: 40px;
  border-radius: 0px;
}

.blog-box {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 2px;
  overflow: hidden;
  background: #fff;
}

.blog-image {
  height: 300px;
  position: relative;
}

.blog-image a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.blog-image img {
  object-fit: cover;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.blog-content {
  padding: 25px;
}

.blog-date,
.blog-author {
  color: #7d7d7d;
}

.blog-thumb-title {
  color: var(--black);
  font-family: var(--heading-font);
  font-size: 24px;
  line-height: 34px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-blog {
  font-size: 16px;
  font-weight: 500;
  color: #e7c335;
  position: relative;
  padding-bottom: 5px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.btn-all {
  display: inline-block;
  cursor: pointer;
  outline: none;
  vertical-align: middle;
  background: var(--yellow);
  padding: 12px 30px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  z-index: 9;
  border-radius: 6px;
  background-size: 100% auto;
  transition: background-position 0.5s ease;
  height: max-content;
}

/*----  Blog End  ---*/

/* ====== Footer Start ====== */
.footer-main {
  z-index: 9;
  padding-bottom: 40px;
  position: relative;
  background: url(../images/backgrounds/footer-bg.webp) no-repeat center;
  background-size: cover;
}

.footer-main::before {
  position: absolute;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 100%);

  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100%);
  content: "";
  z-index: -1;
}

.footer-logo {
  width: 200px;
  margin: 0 auto 25px;
}

.footer-links ul li {
  margin-right: 50px;
}

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

.footer-links ul li a {
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
  font-family: var(--heading-font);
}

.footer-box {
  height: 100%;
  padding: 15px;
}

.footer-address-icon {
  flex: 0 0 70px;
  height: 70px;
  margin-right: 20px;
  border-radius: 50%;
  background: #2b2b2b;
  color: var(--yellow);
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-address-text h5 {
  font-size: 22px;
  color: var(--yellow);
}

.footer-address-text a {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
}

.copyright {
  padding: 10px 0;
  max-width: 60%;
  margin: 0 auto;
  border-radius: 25px;
  margin-top: 40px;
}

.company-right,
.developer-right {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.developer-right a {
  color: #ffffff;
}

.developer-right a:hover {
  color: var(--theme-orange);
}

/* ====== Footer End ====== */

/*-- CMS BANNER Start  --*/

.cms-banner img {
  object-fit: cover;
}

.cms-bann-img {
  height: auto;
}

.cms-bann-img::before {
  background: linear-gradient(180deg,
      rgb(0 2 49) 5%,
      rgb(100 0 131 / 100%) 100%);

  width: 100%;

  height: 100%;

  position: absolute;

  top: 0;

  left: 0;

  content: "";
  z-index: 1;
  opacity: 0.2;
}

/*--- CMS Banner End  ---*/

/*--- Breadcrumb Start  ---*/

.breadcrumb-cover {
  text-align: center;
  background: #f9f9f9;
}

.breadcrumb-cover h1 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 48px;
  color: var(--white);
}

.breadcrumb {
  justify-content: center;
  margin-bottom: 0px;
}

.breadcrumb-item.active {
  color: #696969;
}

.breadcrumb-item+.breadcrumb-item::before {
  display: none;
}

.breadcrumb .breadcrumb-divider {
  color: var(--gradient-color-2);
  margin-right: 8px;
  margin-left: 8px;
  font-size: 14px;
  line-height: 30px;
}

.breadcrumb li {
  font-size: 16px;
  font-weight: 500;
  color: #777;
}

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

.breadcrumb li:last-child {
  padding-right: 0px;
}

.breadcrumb a {
  color: var(--gradient-color-2);
}

/*--- Breadcrumb End ---*/

/*====== About CMS Start  ======*/
.about-home {
  z-index: 1;
}

.about-home::after {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  content: "";
  background: url(../images/line-art/map.png) no-repeat center;
  background-size: contain;
  opacity: 0.04;
  z-index: -1;
}

.about-cms-image {
  padding-right: 100px;
  padding-bottom: 80px;
}

.about-home-image>img {
  height: 550px;
}

.secondary-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  object-fit: cover;
}

.g-title {
  position: absolute;
  right: 30px;
  top: 0px;
  writing-mode: vertical-rl;
  font-size: 64px;
  color: transparent;
  -webkit-text-stroke: 1px #e3e3e3;
  font-weight: bold;
  letter-spacing: 15px;
}

/*====== About CMS End  ======*/

/* Mission Vision Start  */
.mission-vision {
  z-index: 1;
}

.mission-vision::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 450px;
  background: url(../images/line-art/jungle-art.svg) no-repeat center;
  background-size: cover;
  content: "";
  opacity: 0.1;
  z-index: -1;
}

.mv-content {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

/* Mission Vision End  */

/* Gallery Start  */

.gallery-cms ul {
  column-count: 3;
  column-gap: 15px;
}

.gallery-cms ul li {
  margin-bottom: 15px;
}

/* Gallery End  */

/*----   Contact Us  Start  ---*/
.contact-form {
  background: #f7f7f7;
  padding: 30px 60px;
  height: 100%;
}

.contact-info {
  background: #f7f7f7;
  padding: 30px 60px;
  height: 100%;
}

.contact-info h3 {
  font-size: 28px;
  color: #0b0c54;
  padding-bottom: 25px;
  position: relative;
  width: fit-content;
  font-family: var(--heading);
  font-weight: 700;
}

.ci-icon {
  height: 44px;
  width: 44px;
  text-align: center;
  line-height: 44px;
  font-size: 20px;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 44px;
  color: var(--white);
  background: var(--black);
  margin-right: 15px;
}

.ci-wrap {
  margin-bottom: 30px;
}

.ci-content h6 {
  font-weight: 600;
  font-size: 18px;
  color: #000;
  margin-bottom: 5px;
}

.ci-content .text a {
  color: var(--black);
}

.ci-content p a {
  color: var(--white);
}

.contact-info .ci-wrap:last-child {
  margin-bottom: 0px;
}

.con-map {
  height: 100%;
}

.con-map iframe {
  height: 400px;
  width: 100%;
  object-fit: cover;
}

.single-input input.form-control {
  border: 1px solid var(--black);
  height: 44px;
  line-height: 44px;
  margin-bottom: 15px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}

.single-input input.form-control:focus {
  border: 1px solid var(--black);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}

.single-input textarea.form-control {
  border: 1px solid var(--black);
  height: 130px;
}

.single-input textarea.form-control:focus {
  border: 1px solid var(--black);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}

/*----   Contact Us  End  ---*/

/* ------ Event Details Start ------ */

#thumb-carousel .item {
  margin: 0px;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

#thumb-carousel .item.current {
  border-color: #007bff;
  opacity: 1;
}

#thumb-carousel img {
  width: 100%;
  height: auto;
}

.main-carousel .owl-nav {
  opacity: 1;
  transition: all 0.8s;
}

.main-slider .owl-nav .owl-prev,
.main-slider .owl-nav .owl-next {
  background: #222 !important;
  color: var(--white) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.5s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0px;
}

.main-slider .owl-nav .owl-prev:hover,
.main-slider .owl-nav .owl-next:hover {
  background: var(--white) !important;
  color: var(--black) !important;
  transition: all 0.5s;
}

.main-slider .owl-nav .owl-next {
  right: -20px;
}

.main-slider .owl-nav .owl-prev {
  left: -20px;
}

.events-details .event-title {
  background: linear-gradient(to right, #001573, #f100ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 1px;
}

.event-title-caption {
  font-size: 26px;
  margin-top: 10px;
  font-weight: 500;
}

.events-details .filler {
  margin-top: -5px;
}

.why-choose-event h5 {
  font-size: 26px;
  margin-top: 10px;
  font-weight: 500;
}

.why-choose-event ul {
  padding-left: 4px;
}

.why-choose-event ul li {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 12px;
  padding-left: 26px;
  position: relative;
}

.why-choose-event ul li span {
  height: 16px;
  position: absolute;
  left: 0;
}

.perfect-for ul li {
  margin-right: 15px;
  margin-bottom: 10px;
}

/* ------ Event Details End ------ */

/* Offcanvas Start  */

.offcanvas-contact .offcanvas-body {
  background: var(--black);
  padding: 70px 35px 30px;
}

.offcanvas-contact {
  width: 470px !important;
}

.offcanvas-backdrop.show {
  opacity: 0.86;
}

.offcanvas-contact button.btn-close {
  background: #ffffff;
  opacity: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  position: absolute;
  right: 30px;
  top: 20px;
  font-size: 15px;
  padding: 0px;
}

.offcanvas-contact .ci-icon {
  height: 44px;
  width: 44px;
  line-height: 44px;
  font-size: 20px;
  border: 2px solid #1e1e1e;
  margin-right: 20px;
  background: #141414;
}

.offcanvas-contact .social-header ul li a {
  transition: all 0.3s;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.offcanvas-contact .social-header ul li a:hover {
  background: var(--color-gradient-btn);
  color: var(--white);
  transition: all 0.3s;
}

/*------ Offcanvas End  ------*/

/*------ Scroll To Top Button Start  ------*/

#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  background-color: #f98a4f;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  transition: all 0.4s;
}

#scrollToTopBtn:hover {
  background-color: #000;
  transition: all 0.4s;
}

/*------ Scroll To Top Button End  ------*/

/* Adventure Blog Start  */

.adventure-sundarban {
  background: #111;
}

.sundar-blog {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
  height: 100%;
}

.bg-sundarban {
  z-index: 1;
}

.bg-sundarban::before {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 430px;
  content: "";
  background: url(../images/line-art/tiger.webp) no-repeat center;
  background-size: contain;
  z-index: -1;
  opacity: 0.1;
  filter: grayscale(1);
}

.wildlife-slider-image img {
  object-fit: cover;
}

.wildlife-slider .owl-nav {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.wildlife-slider .owl-nav button.owl-prev,
.wildlife-slider .owl-nav button.owl-next {
  background-color: var(--yellow) !important;
  color: var(--white);
  margin: 1;
}

.wildlife-slider .owl-nav button.owl-prev:hover,
.wildlife-slider .owl-nav button.owl-next:hover {
  background-color: var(--yellow);
}

/* Adventure Blog End  */

/* --- Tour Package Details --- */

.grid-box {
  padding: 10px;
  border-radius: 15px;
  background: var(--white);
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px,
    rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.grid-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  /* Adjust columns: 1.5fr for the first, 1fr for others */
  gap: 9px;
}

.grid-item {
  position: relative;
}

.image-link {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 30px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.55);
  transition: all 0.5s;
  color: #ffbc74;
  font-size: 22px;
}

.grid-item:hover .image-link {
  opacity: 1;
  width: 100%;
  height: 100%;
  color: #ffbc74;
  transition: all 0.5s;
}

.video-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.55);
  color: #ffbc74;
}

.grid-item:hover .video-link {
  color: #ffbc74;
}

.fa-circle-play {
  font-size: 30px;
}

.item-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
}

.item-2,
.item-3,
.item-4,
.item-5 {
  height: 245px;
  border-radius: 10px;
  overflow: hidden;
}

.item-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.item-3 {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.item-4 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.item-5 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.grid-item img,
.grid-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.note {
  padding: 15px;
  background: #f7f7f7;
}

.tour-attraction ul li {
  margin-bottom: 15px;
}

.div-title h4 {
  font-size: 21px;
  font-weight: 500;
}

.included-package ul li,
.excluded-package ul li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 20px;
}

.included-package ul li:last-child,
.excluded-package ul li:last-child {
  margin-bottom: 0;
}

.included-package ul li span,
.excluded-package ul li span {
  position: absolute;
  left: 0;
  top: 0px;
  border-radius: 50%;
  font-size: 17px;
  color: var(--green);
}

.excluded-package ul li span {
  color: var(--yellow);
  font-size: 20px;
}

.highlight-tour ul li {
  padding-left: 35px;
  position: relative;
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 26px;
}

.highlight-tour ul li:last-child {
  margin-bottom: 0;
}

.highlight-tour ul li span {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 11px;
  height: 22px;
  width: 22px;
  color: var(--green);
  border-radius: 50%;
  background: #deffe0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- */
.tour-plan .accordion-item {
  margin-bottom: 15px;
  border: 0px;
}

.tour-plan .accordion-button {
  position: relative;
  padding-left: 100px;
  border: 1px solid #dedede;
  color: var(--black);
  background: var(--white);
  font-size: 19px;
  font-weight: 500;
}

.tour-plan .accordion-button:focus {
  box-shadow: none !important;
}

.tour-plan .accordion-button:not(.collapsed) {
  background: var(--white);
}

.tour-plan .accordion-button span {
  background: var(--yellow);
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  position: absolute;
  left: 0;
  top: 0;
  width: 90px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tour-plan .accordion-body {
  border: 1px solid#dedede;
  border-top: 0px;
}


/* --- */

/* --- Tour Package Details --- */

/* Destination Lists Start */
.category-area .nav-tabs {
  justify-content: center;
}

.category-area .nav-tabs .nav-item {
  margin-right: 0px;
}

.category-area .nav-tabs .nav-link {
  background: var(--black);
  color: var(--yellow);
  border-radius: 0px;
  border: 0px;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  min-width: 180px;
  padding: 10px 30px;
}

.category-area .nav-tabs .nav-link .destination-box {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  position: relative;
  height: 400px;
}

.destination-box {
  height: 350px;
  position: relative;
  overflow: hidden;
}

.destination-box a {
  height: 100%;
  width: 100%;
}

.destination-box a img {
  object-fit: cover;
  transition: all 0.5s;
}

.destination-box img:hover {
  transform: scale(1.02);
  transition: all 0.5s;
}

.destination-box a h5 {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  padding: 10px 20px;
  color: var(--white);
}

.category-area .nav-tabs {
  row-gap: 2px;
}

/* Destination Lists End */

/* Destination Single Start  */
.query-form {
  background: #f9f9f9;
  margin-top: 15px;
  padding: 30px 25px;
}

.tour-common {
  margin-bottom: 30px;
}

.tour-box-title {
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.tour-common h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
  width: fit-content;
  background: var(--white);
  padding-right: 10px;
}

.tour-box-title::before {
  position: absolute;
  bottom: 2px;
  height: 1px;
  width: 100%;
  background: var(--black);
  content: "";
  z-index: -1;
}

.tour-attraction ul {
  list-style: none;
  padding: 0px;
}

.tour-attraction ul li {
  position: relative;
  padding: 12px 20px;
  background: #f7f7f7;
  /* margin-top: 50px; */
}

.tour-attraction ul li strong {
  position: absolute;
  top: -30px;
  width: fit-content;
  left: 0;
  height: fit-content;
  padding: 1px 10px;
  background: #0b0c54;
  color: var(--white);
  font-weight: 400;
  font-size: 13px;
  min-width: 130px;
}

.tour-common .accordion-button {
  background: #f7f7f7;
  border: 0px;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--body-font);
  outline: none !important;
  box-shadow: none !important;
}

/* .tour-common .accordion-button::after {
    filter: brightness(0) invert(1);
} */

.tour-box-title h3 {
  margin-bottom: 15px;
}

.tour-detailed-itenary h5 {
  font-size: 17px;
  font-family: var(--body-font);
  background: var(--black);
  color: var(--white);
  padding: 10px 25px;
  margin-bottom: 0px;
}

.itenary-image {
  height: 350px;
  margin-top: 10px;
}

.itenary-image img {
  object-fit: cover;
}

/* Destination Single End  */

.hill-station-listing .cg-box {
  height: 350px;
  width: 100%;
}

.hill-station-listing .cg-box img {
  object-fit: cover;
}

/* Blog  Details Start  */

.bd-image {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.bd-image img {
  object-fit: cover;
}

.bd-title {
  position: absolute;

  left: 0;

  width: 100%;

  background: linear-gradient(0deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(255, 255, 255, 0) 100%);

  color: var(--white);

  bottom: 0;

  padding: 40px 10px;

  text-align: center;
}

.bd-title h3 {
  padding-bottom: 15px;
}

.data-blog {
  display: flex;
}

.data-blog {
  justify-content: center;
}

.data-blog span {
  padding-left: 15px;

  margin-right: 15px;
}

.data-blog span:last-child {
  margin-right: 0px;
}

.bd-content {
  padding-top: 20px;
}

.bd-tag>h6 {
  font-size: 18px;

  margin-right: 15px;
}

.bd-tag .tag-box a {
  padding: 10px 12px;
  border: 1px solid var(--gray);
  margin-right: 15px;
  margin-bottom: 7px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  background: #f7f7f7;
}

.bd-tag .tag-box a:hover {
  background: var(--red);

  border: 1px solid var(--red);

  color: var(--white);

  transition: all 0.5s;

  -webkit-transition: all 0.5s;
}

.bd-tag .tag-box a:hover h6 {
  transition: all 0.5s;

  -webkit-transition: all 0.5s;

  color: var(--white);
}

.bd-tag .tag-box h6 {
  font-size: 14px;

  color: var(--black);
  margin-bottom: 0px;
  transition: all 0.5s;

  -webkit-transition: all 0.5s;
}

.related-bw .blog-image {
  height: 250px;
}

.related-bw .blog-image a {
  display: inline-block;

  height: 100%;

  width: 100%;
}

.related-bw .blog-image a img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.blog-wrapper {
  position: relative;

  height: auto;
}

.blog-image {
  height: 300px;

  overflow: hidden;

  position: relative;
}

.blog-image a {
  display: inline-block;

  width: 100%;

  height: 100%;
}

.blog-image img {
  height: 100%;

  width: 100%;

  object-fit: cover;

  transition: all 0.5s;

  -webkit-transition: all 0.5s;
}

.blog-wrapper:hover .blog-image img {
  transform: scale(1.2);

  transition: all 0.5s;

  -webkit-transition: all 0.5s;
}

.blog-content {
  padding: 25px;
}

.blog-content h6 {
  /* text-transform: uppercase; */

  color: var(--lime-green);

  font-size: 14px;

  padding-bottom: 12px;
}

.blog-content h4 {
  padding-bottom: 12px;
}

.blog-content h4 a {
  font-size: 20px;

  font-weight: 500;

  color: var(--black);

  font-family: var(--heading);
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;

  transition: all 0.5s;

  -webkit-transition: all 0.5s;
}

.blog-content h4 a:hover {
  color: var(--lime-green);

  transition: all 0.5s;

  -webkit-transition: all 0.5s;
}

.blog-date {
  /* position: absolute;

  height: 70px;

  width: 70px;

  background: var(--white);

  color: var(--yellow);

  top: 15px;

  left: 15px;

  text-align: center;

  font-family: var(--title);

  border-radius: 50%;

  padding: 15px 7px; */
}

.bd-day {
  padding-bottom: 5px;

  margin-bottom: 5px !important;

  font-size: 15px;

  color: var(--yellow);

  position: relative;

  line-height: 18px;
}

.bd-day:before {
  position: absolute;

  left: 50%;

  transform: translateX(-50%);

  bottom: 0;

  width: 80%;

  height: 1px;

  content: "";

  background: var(--yellow);
}

.bd-year {
  font-size: 14px;

  color: var(--yellow);

  line-height: 15px;

  text-transform: uppercase;
}

.cs-search .form-control {
  border-radius: 0px;

  border: 1px solid var(--black);
}

.input-group-text {
  background: var(--black);

  color: var(--white);

  border-radius: 0;

  border: 0px;
}

.bd-left {
  padding-right: 20px;
}

.blog-category {
  padding: 20px 0;
}

.blog-category>h6,
.br-recent-blog>h6,
.br-tags>h6,
.archived-tags>h6 {
  font-size: 15px;

  font-weight: 600;

  letter-spacing: 2px;

  text-transform: uppercase;

  padding-bottom: 10px;

  border-bottom: 1px solid #f9f9f9;

  margin-bottom: 10px !important;
}

.archived-tags {
  margin-top: 30px;
}

.blog-category ul li a {
  padding: 10px 0;

  border-bottom: 1px dashed #f9f9f9;

  display: inline-block;

  width: 100%;

  color: var(--black);

  font-weight: 500;

  font-size: 16px;

  transition: all 0.3s;

  -webkit-transition: all 0.3s;
}

.blog-category ul li a:hover {
  color: var(--lime-green);

  transition: all 0.3s;

  -webkit-transition: all 0.3s;
}

.br-recent-blog {
  padding: 30px 0;
}

.br-recent-blog>h6 {
  margin-bottom: 25px !important;
}

.rb-wrap {
  display: block;

  padding-bottom: 15px;

  border-bottom: 1px dashed #dedede;

  margin-bottom: 15px;
}

.rb-wrap .rb-image {
  height: 70px;

  width: 70px;

  flex-shrink: 0;

  margin-right: 15px;
}

.rb-image img {
  object-fit: cover;
}

.rb-wrap .rb-content h6 {
  color: #a9a9a9;

  font-size: 13px;

  font-weight: 500;

  padding-bottom: 8px;
}

.rb-wrap .rb-content p {
  color: var(--black);

  font-size: 14px;

  font-weight: 500;

  -webkit-line-clamp: 2;

  display: block;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  text-overflow: ellipsis;

  overflow: hidden;
}

.tags-wrap {
  display: flex;

  flex-wrap: wrap;

  grid-row-gap: 15px;
}

.tags-wrap a {
  display: inline-block;

  padding: 8px 12px;

  font-size: 14px;

  font-weight: 500;

  color: var(--black);

  flex: 0 0 auto;

  margin-right: 10px;

  border: 1px solid #f9f9f9;

  transition: all 0.4s;

  -webkit-transition: all 0.4s;
}

.archived-tags .tags-wrap a {
  padding: 8px 16px;
}

.tags-wrap a:hover {
  color: var(--white);

  background: var(--yellow);

  border: 1px solid var(--yellow);

  transition: all 0.4s;

  -webkit-transition: all 0.4s;
}

/* .blog-comment-no p {

    font-size: 15px;

    color: var(--yellow);

    line-height: 0px;

    font-weight: 500;

}



.blog-comment-no p i {

    margin-right: 3px;

}



.blog-comment-no {

    position: absolute;

    background: var(--white);

    bottom: 0;

    right: 0;

    padding: 7px 10px;

    border-bottom: 1px solid #c9c9c9;

    border-right: 1px solid #c9c9c9;

}



.blog-comment-no p span:nth-child(1) {

    margin-right: 10px;

} */

.blog-publication p {
  color: var(--yellow);

  font-weight: 500;

  font-size: 14px;
}

.blog-publication p span:nth-child(1) {
  margin-right: 10px;
}

.blog-share {
  margin-top: 20px;
}

.blog-share ul {
  margin-left: 20px;
}

.blog-share ul li {
  margin-right: 12px;
}

.blog-share ul li:last-child {
  margin-right: 0px;

  text-align: center;
}

.blog-share ul li a {
  color: var(--yellow);

  display: inline-block;

  width: 20px;

  text-align: center;
}

.comment-title {
  border-bottom: 1px solid var(--icon-menu);

  padding-bottom: 7px;

  width: 100%;

  margin-bottom: 15px;
}

/* Blog  Details End  */

/* Services Start  */

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.service-icon img {
  object-fit: contain;
}

.service-content h5 {
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 500;
}

/* Services End  */
.pagination-list .pagination {
  float: right;
}

.pagination .active .page-link {
  outline: none !important;
  box-shadow: none !important;
  background-color: var(--yellow) !important;
  border-color: var(--black) !important;
  color: var(--white);
}

.pagination .page-link,
.pagination .page-link.active {
  padding: 6px 16px !important;
  outline: none !important;
  /* box-shadow: none !important; */
}

.pagination .page-link {
  color: var(--black);
  font-size: 18px;
}

a,
a:hover {
  color: inherit;
  text-decoration: none !important;
  display: inline-block;
}


.tour-summary-img {
    padding: 20px;
    /* height: 350px; */
}
.tour-summary-img img{
object-fit:cover;
}