/*  Common For All  */

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@100..900&display=swap");

:root {
  --font-family: "Noto Sans Devanagari", sans-serif;
  --dark-blue: #47263c;
  --light-blue: #fffafd;
  --red: #8c4e5d;
  --theme-black: #212529;
  --theme-gradeint: linear-gradient(45deg, var(--dark-blue), var(--red));
  --light-bg: #f8f5f5;
  --black-filter: brightness(0) saturate(100%) invert(12%) sepia(73%) saturate(1334%) hue-rotate(221deg) brightness(93%) contrast(103%);
  --dark-gradeint: linear-gradient(180deg, #49263d 15%, rgb(118 65 83) 100%);
  --theme-filter: brightness(0) saturate(100%) invert(13%) sepia(17%) saturate(1923%) hue-rotate(267deg) brightness(96%) contrast(85%);
}

body {
  font-family: "Noto Sans Devanagari", sans-serif;
  /* font-family: var(--font-family); */
}

a {
  text-decoration: none !important;
}

button:focus {
  outline: 0px dotted;
  outline-color: -webkit-focus-ring-color;
  outline-style: auto;
  outline-width: 0px;
  outline: 0px auto -webkit-focus-ring-color;
  outline-color: -webkit-focus-ring-color;
  outline-style: auto;
  outline-width: 0px;
}

img {
  width: 100%;
}

p {
  line-height: 1.6;
}

p,
li,
a,
strong,
span,
ul,
b,
sub,
sup {
  font-size: clamp(15px, 1.6vw, 17px);
  text-decoration: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

.special-text {
  background: var(--dark-blue);
  padding: 20px;
  color: #fff;
  border-radius: 10px;
}

.thank-wrap-one {
  height: 60vh;
  background-repeat: repeat;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.thank-wrap-one::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url(../images/th-bg.jpg);
  z-index: -1;
  opacity: 0.3;
  background-repeat: repeat;
  background-size: contain;
}

.thank-content {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 20px;
  border-radius: 20px;
}

.thank-content h1 {
  font-family: var(--font-family);
  color: var(--dark-blue);
}

.thank-content img {
  width: 50px;
  height: 50px;
  filter: invert(46%) sepia(53%) saturate(6566%) hue-rotate(16deg) brightness(109%) contrast(105%);
  margin-bottom: 20px;
}

.line-height-normal {
  padding-bottom: 20px;
  margin-bottom: 0;
}

.slick-dots li button:before {
  color: var(--dark-blue) !important;
}

.breadcrumb-item.active {
  color: #fff !important;
}
.breadcrumb-item img {
  height: clamp(10px, 1.3vw, 15px);
  width: clamp(10px, 1.3vw, 15px);
  object-fit: contain;
  filter: invert(1) brightness(100);
}
/* .section-title .title .base-color:after {
  content: "";
  width: 50%;
  height: 3px;
  background-color: var(--dark-blue);
  bottom: -3px;
  z-index: 1;
  position: absolute;
  transition: all 0.9s ease-in-out;
  left: 0px;
  bottom: -6px;
} */

.logo {
  width: 230px;
  object-fit: contain;
}

.bg-alt,
.off-bg {
  background-color: #46263b0f;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff00 !important;
  outline: 0;
  box-shadow: none !important;
}

.theme-button {
  border: 2px solid var(--dark-blue);
  border-radius: 0px;
  background-color: #fff;
  padding: 7px 25px !important;
  color: var(--dark-blue) !important;
  display: inline-block;
  transition: 0.3s;
}

.theme-button:hover {
  background-color: var(--dark-blue);
  color: #fff !important;
  transition: 0.3s;
}

.section-title {
  margin: 0 auto 35px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
  font-weight: 600;
  width: 60%;
}

.section-title .title {
  font-size: clamp(18px, 2.4vw, 30px);
  text-align: center;
  margin-bottom: 0;
  color: #313131;
  text-transform: capitalize;
  font-weight: 600;
  font-family: var(--font-family);
  padding-top: 8px;
}

.section-title .title:hover .base-color:after {
  width: 110%;
  transition: all 0.9s ease-in-out;
}

.base-color {
  color: var(--dark-blue);
  position: relative;
}

.section-padding {
  padding: 60px 0;
}

/*  Header  */

.top-head-address {
  margin-right: 0 !important;
  float: right;
}

#header nav .nav-link {
  font-weight: 500;
  color: #666;
  cursor: pointer;
}

#header .fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  border-bottom: 1px solid #fff;
  animation: smoothScroll 1s forwards;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }

  100% {
    transform: translateY(0px);
  }
}

#header nav {
  box-shadow: 0px 5px 5px -3px #808080cf;
  padding: 10px 32px;
}

#header .top-bar {
  background: var(--dark-blue);
  padding: 4px 60px;
}

#header .top-bar a {
  color: #fff;
  margin-right: 25px;
  font-size: 14px;
}

#header .top-bar img {
  height: 18px;
  width: 18px;
  object-fit: contain;
  margin-right: 5px;
  filter: invert(1) brightness(100);
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-item {
  font-size: 15px;
  color: #666 !important;
}

.navigation .submenu {
  font-size: 14px;
  color: var(--theme-black);
}

.navigation .dropdown-menu .dropdown-item:hover > a {
  color: #fff !important;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px;
  border-radius: 0 6px 6px 6px;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: #ffffff !important;
  background-color: var(--dark-blue) !important;
  transition: 0.2s;
}

.dropdown-menu.multi-level {
  margin: 0;
}

.navigation .dropdown-item {
  padding: 7px 25px !important;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.dropdown-submenu > a:after,
.dropdown-submenu > .arrow-wrap:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #ccc;
  margin-top: 5px;
  margin-right: -10px;
  cursor: pointer;
}

.dropdown-submenu:hover > a:after,
.dropdown-submenu:hover > .arrow-wrap:after {
  border-left-color: #fff;
  cursor: pointer;
}

.dropdown-submenu.pull-left {
  float: none;
}

.dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}

/*  Banner Slider  */
#banner-slider,
#banner-slider-mob {
  background-color: #000;
}

#banner-slider .carousel-item img,
#banner-slider-mob .carousel-item img {
  opacity: 0.5;
  object-fit: cover;
}

#banner-slider .carousel-caption,
#banner-slider-mob .carousel-caption {
  top: 0px;
  bottom: 0px;
  left: 8%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 45%;
  margin: 0 0 auto;
  text-align: left;
}

#banner-slider .carousel-control-next,
#banner-slider .carousel-control-prev,
#banner-slider-mob .carousel-control-next,
#banner-slider-mob .carousel-control-prev {
  width: 4%;
}

#banner-slider .top-text,
#banner-slider-mob .top-text {
  margin-bottom: 0px;
  font-size: 25px;
  text-align: left;
}

#banner-slider .mid-text,
#banner-slider-mob .mid-text {
  font-size: 55px;
  text-transform: capitalize;
}

#banner-slider .buttons,
#banner-slider-mob .buttons {
  text-align: left;
}

#banner-slider .buttons a,
#banner-slider-mob .buttons a {
  font-size: 15px;
  border: 2px solid #fff;
  color: #fff;
  padding: 8px 30px;
  font-weight: 700;
  border-radius: 25px;
  transition: 0.3s;
}

#banner-slider .buttons a:hover,
#banner-slider-mob .buttons a:hover {
  background-color: var(--dark-blue);
  border: 2px solid var(--dark-blue);
  transition: 0.3s;
}

#banner-slider-mob {
  display: none;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }

  to {
    -webkit-transform: scale(1.5, 1.5);
  }
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }

  to {
    transform: scale(1.5, 1.5);
  }
}

#banner-slider .carousel-item img,
#banner-slider-mob .carousel-item img {
  -webkit-animation: zoom 25s;
  animation: zoom 25s;
}

#banner-slider .carousel-indicators li,
#banner-slider-mob .carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

#banner-slider .carousel-indicators .active,
#banner-slider-mob .carousel-indicators .active {
  background-color: var(--dark-blue);
}

/*  Overlap Form  */
.overlap-form input {
  overflow: hidden;
}

.form-control-placeholder {
  position: absolute;
  top: 7px;
  left: 30px;
  transition: all 200ms;
  color: #fff;
  font-size: 15px;
}

.form-control:focus + .form-control-placeholder,
.form-control:valid + .form-control-placeholder {
  font-size: 75%;
  transform: translate3d(0, -25px, 0);
  opacity: 1;
  color: #ffffff;
}

.overlap-form {
  padding: 35px;
  background-image: linear-gradient(to bottom, var(--dark-blue), var(--red));
  background-size: 100% 100%;
  position: absolute;
  z-index: 99;
  top: -60px;
}

.overlap-form .form-control {
  padding: 3px 15px;
  background-color: #fff0;
  border: 1px solid #fff;
  width: 100% !important;
  z-index: 1;
}

.navbar-brand {
  padding: 0px !important;
}

.overlap-form .form-icon i {
  font-size: 50px;
  color: white;
}

.overlap-form .form-button {
  background-color: var(--dark-blue);
  border: 2px solid #fff;
  color: white;
  font-size: 15px;
  padding: 5px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: 0.3s;
}

.overlap-form .form-button:hover {
  background-color: #fff;
  color: var(--dark-blue);
}

.overlap-form .form-control {
  color: #fff;
}

.overlap-form .form-control:focus {
  background-color: transparent;
  border-color: #fff !important;
}

/*  Home Packages  */
.main-card {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  outline: none;
  height: 100%;
  display: flex;
  flex-flow: column;
  overflow: hidden;
  border-radius: 40px;
}

#home-packages {
  overflow: hidden;
}

.main-card a.theme-button {
  font-size: 14px;
  padding: 4px 6px !important;
  margin-top: 10px;
  margin-right: 10px;
  outline: 0 !important;
}

.main-card-body {
  padding: 40px 20px 20px;
  position: relative;
  z-index: 1;
  flex-grow: 1;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}

.main-card .inner-detail {
  flex-grow: 1;
  display: flex;
  flex-flow: column;
}

.inner-detail .home-package-list-2 {
  flex-grow: 1;
}

.main-card-body::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/card-texture.webp) no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: -2;
}

#home-packages .rating {
  position: absolute;
  bottom: 0px;
  top: auto;
  left: 0px;
  font-size: 16px !important;
  color: #ffffff !important;
  padding: 3px 15px;
  background-color: var(--dark-blue);
}

#home-packages .days {
  position: absolute;
  bottom: 0px;
  top: auto;
  right: 0px;
  font-size: 16px !important;
  color: #ffffff !important;
  padding: 3px 15px;
  background-color: var(--dark-blue);
}

#home-packages .morelink {
  font-size: 13px !important;
  color: var(--dark-blue);
}

#home-packages .morecontent span {
  display: none;
}

#home-packages .container-fluid {
  overflow: hidden;
}

.main-card img {
  height: 300px;
  object-fit: cover;
}

.main-card-title {
  color: var(--theme-black);
  padding: 0px;
  outline: 0 !important;
  padding-bottom: 5px;
  margin-bottom: 8px;
  display: flex;
  flex-flow: column;
  gap: 8px;
}

.main-card-title a {
  color: var(--dark-blue);
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 18px);
  display: flex;
  align-items: center;
  height: 100%;
}

.main-card-title a:hover,
.main-card-title a:focus {
  color: var(--dark-blue);
  outline: none;
}

.main-card-text {
  font-size: 13px;
  margin-bottom: 0;
}

.main-card-note {
  margin-bottom: 0;
  color: var(--dark-blue);
}

#home-packages hr {
  margin-top: 6px;
  margin-bottom: 6px;
}

/*  Home About  */

.home-text p,
.home-text ul {
  padding: 0;
  margin-bottom: 10px;
}

.home-text p {
  color: #000000;
}

.home-text ul li {
  list-style: none;
  position: relative;
  padding: 0 0 0 30px;
  margin: 0;
}

.home-text ul li:before {
  content: "\f124";
  font-family: "Font Awesome\ 5 Free";
  font-weight: 900;
  font-size: 18px;
  left: 0px;
  top: 0px;
  color: var(--dark-blue);
  position: absolute;
}

/*  Top Places  */
#top-places .card {
  box-shadow: 0px 0px 8px 0px #b1b1b3;
}

.card .rating i {
  margin: 0 2px 0 5px;
}

#top-places .card a {
  font-size: 15px;
  padding: 0;
  color: var(--dark-blue);
  font-weight: 500;
}

#top-places .card-img-top {
  height: 12rem;
  object-fit: cover;
}

#top-places .rating {
  position: absolute;
  bottom: 0px;
  top: auto;
  left: 0px;
  font-size: clamp(13px, 1.4vw, 16px) !important;
  color: #fff !important;
  padding: 3px 15px;
  background-color: var(--dark-blue);
}
#top-places .rating svg {
  margin-left: 5px;
}
#top-places .card span {
  float: right;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark-blue);
}

/*  Counter  */

.single-counterup-item {
  background: linear-gradient(227deg, var(--dark-blue) 0%, rgb(47 44 97 / 54%) 100%);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  color: #fff;
  padding: 15px;
  height: 100%;
  text-align: center;
}

.single-counterup-item .icon {
  height: 50px;
  color: #fff;
  border-radius: 50%;
  width: 50px;
  margin: auto;
  border: 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin-bottom: 13px;
}
.single-counterup-item img {
  height: clamp(18px, 2vw, 24px);
  width: clamp(18px, 2vw, 24px);
  object-fit: contain;
  filter: invert(1) brightness(100);
}
.single-counterup-item .content .countnum {
  font-size: clamp(16px, 2vw, 24px);
  color: #fff;
  display: block;
  font-family: var(--font-family);
}

.single-counterup-item .content .title {
  font-size: clamp(12px, 1.5vw, 16px);
  text-transform: capitalize;
  letter-spacing: 2px;
  font-weight: 500;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0px;
  font-family: var(--font-family);
}

/*  Testimonial  */

/*  Partner Logos  */
.partner-logo img {
  height: 5rem;
  object-fit: contain;
}

/*  Get In Touch  */
.contact-info-area {
  background-color: #fff;
  border-radius: 10px;
}

.contact-content {
  padding: 20px 30px;
}

.contact-info-area .contact-info-list {
  margin: 0;
  list-style: none;
  padding: 0px 20px;
  margin-bottom: 20px;
}

.contact-info-area .contact-info-list li {
  font-size: 16px;
  line-height: 26px;
  display: flex;
  margin: 10px 0;
  gap: 8px;
}

.contact-info-area .contact-info-list li img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: var(--theme-filter);
  flex-shrink: 0;
}

.contact-info-area .social-icon li {
  display: inline-block;
}

.contact-info-area .social-icon li a {
  display: block;
  width: 40px;
  height: 40px;
  background-color: transparent;
  color: #fff !important;
  line-height: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-area .social-icon li.facebook {
  background-color: #4267b2;
  color: #fff;
  border-radius: 50%;
}

.contact-info-area .social-icon li.twitter {
  background-color: #14171a;
  color: #fff;
  border-radius: 50%;
}

.contact-info-area .social-icon li.linkedin {
  background-color: #0072b1;
  color: #fff;
  border-radius: 50%;
}

.contact-info-area .social-icon li.instagram {
  background: linear-gradient(45deg, #f58529, #d22d6e, #d16d85, #f3a712);
  color: #fff;
  border-radius: 50%;
}

.contact-info-area .social-icon li.tumblr {
  background-color: #34526f;
  color: #fff;
  border-radius: 50%;
}

.contact-info-area .social-icon li.pinterest {
  background-color: #e60023;
  color: #fff;
  border-radius: 50%;
}

ul.social-icon {
  margin: 0;
  padding: 0px 10px;
  margin-bottom: 20px;
}
ul.social-icon img {
  height: 18px;
  width: 18px;
  object-fit: contain;
  filter: invert(1) brightness(100);
}
.contact-form-content-area {
  padding: 25px;
  border-radius: 15px;
  background: #fff;
  border: 1px solid #5e425470;
}

.contact-content ul {
  margin: 0;
}

.contact-para {
  text-align: justify;
}

#get-in-touch a {
  color: var(--theme-black);
}

/*  Top Places  */
#top-places .theme-button {
  font-size: 12px !important;
  padding: 3px 12px !important;
}

/*  Why Choose Us  */
#why-choose-us .icon-text:before {
  content: "\f058";
  font-family: "Font Awesome\ 5 Free";
  font-weight: 900;
  left: 0px;
  top: 0px;
  color: var(--dark-blue);
  position: absolute;
}

#why-choose-us .icon-text {
  position: relative;
  padding-left: 30px;
}

/*  Channel Partners Choose Us  */

/*  Map  */
#map {
  background-color: #000;
}

#map iframe {
  opacity: 0.9;
  margin-bottom: -6px;
}

/*  Footer  */

.footer-card-img {
  display: flex;
  justify-content: center;
}

.footer-card-img img {
  height: 6rem;
  width: 50%;
  object-fit: contain;
}

footer {
  background: var(--dark-gradeint);
  padding: 40px 0px 0px 50px;
  position: relative;
  z-index: 1;
}

footer .footer-info img {
  margin: 0 0 20px 0;
  display: block;
  filter: invert(1) brightness(25.5);
}

footer p {
  color: #ffffff;
  font-size: 15px;
}

footer span {
  color: #fff;
  font-size: 15px;
}

.footer-menu ul {
  padding: 0;
  list-style: none;
}
.footer-menu ul img {
  height: 20px;
  width: 20px;
  object-fit: contain;
  filter: invert(1) brightness(100);
  margin-right: 8px;
}
.footer-info ul li {
  margin-bottom: 8px;
}

.footer-menu ul a {
  color: #fff;
  font-size: clamp(13px, 1.4vw, 15px);
}

.footer-menu {
  display: table;
  position: relative;
}

.footer-menu p::after {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 31px;
  height: 2px;
  background-color: #fff;
  left: 0;
  transition: 0.5s ease-in-out;
}

.footer-menu:hover p:after {
  width: 60px;
}

/* .footer-menu .fa-phone {
  transform: rotate(90deg);
} */
.footer-menu p {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 15px;
  position: relative;
}

.footer-menu li {
  display: flex;
  margin-bottom: 10px;
}

.footer-menu i,
.footer-menu svg {
  color: #fff;
  padding-right: 5px;
  margin-right: 6px;
  padding-top: 2px;
  height: 20px;
  width: 20px;
}

/* Footer */

.rounded-social-buttons {
  padding: 20px 0px;
  display: flex;
  align-items: center;
}

.rounded-social-buttons .social-button {
  display: flex;

  position: relative;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 0;
  text-decoration: none;
  text-align: center;
  color: #fefefe;
  font-size: 22px;
  font-weight: normal;
  line-height: 1.8em;
  border-radius: 1.6875rem;
  transition: all 0.5s ease;
  margin-right: 0.25rem;
  margin-bottom: 0.25rem;
  justify-content: center;
  align-items: center;
}

.rounded-social-buttons .social-button.facebook {
  background: #4267b2;
}

.rounded-social-buttons .social-button.twitter {
  background: #14171a;
}

.rounded-social-buttons .social-button.linkedin {
  background: #0072b1;
}

.rounded-social-buttons .social-button.youtube {
  background: #bb0000;
}

.rounded-social-buttons .social-button.instagram {
  background: linear-gradient(45deg, #f58529, #d22d6e, #d16d85, #f3a712);
}

.rounded-social-buttons .social-button.tumblr {
  background: #34526f;
}

.rounded-social-buttons .social-button.pinterest {
  background: #e60023;
}

.rounded-social-buttons .social-button img {
  height: 18px !important;
  width: 18px !important;
  object-fit: contain;
  margin: 0 !important;
}

/*  Banner  */
#banner .banner-heading {
  font-size: clamp(13px, 1.8vw, 25px);
  color: #fff;
  margin-bottom: 5px;
  font-family: var(--font-family);
}

#banner {
  background: linear-gradient(to right, var(--dark-blue), var(--red), #1f1d5600), url(../images/slide2.png);
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
}

#banner nav {
  background: linear-gradient(227deg, var(--dark-blue) 0%, var(--red));
  backdrop-filter: blur(10px);
  padding: 10px;
  display: flex;
  border-radius: 10px;
  width: fit-content;
}

#banner .breadcrumb {
  justify-content: center;
  background: transparent;
  padding: 0;
  width: 100%;
  margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

#banner .breadcrumb-item a {
  color: #fff;
}

#banner .breadcrumb-item,
#banner .breadcrumb-item a {
  font-size: clamp(7px, 1.2vw, 14px) !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*  Service Slider  */
#service-slider .carousel-inner img {
  height: 380px;
  object-fit: cover;
  opacity: 1;
}

#service-slider .carousel-inner {
  background-color: #fff;
}

.service-heading .title {
  font-size: 27px;
  color: var(--dark-blue);
  text-transform: capitalize;
  margin-top: 30px;
  line-height: 1.5;
  font-family: var(--font-family);
}

#service-content .service-text {
  font-size: 16px;
}

#service-content .subtitle {
  font-size: 20px;
}

#service-content .carousel-indicators .active {
  background-color: var(--dark-blue);
}

#service-content .carousel-indicators li {
  background-color: #fff;
}

.trip-detail .trip-heading {
  font-size: 18px;
}

.trip-detail .trip-text {
  border-bottom: 1px solid #d6d6d6e8;
  padding-bottom: 26px;
  font-size: 14px;
}

.trip-detail .trip-text .price {
  color: var(--dark-blue);
  font-size: 18px;
  font-weight: 700;
}

.service-trip-content .service-trip-heading {
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 10px;
}

.service-query {
  padding: 30px;
  box-shadow: 0 0 10px 2px #0000001c;
}

.service-query .query-heading {
  font-size: 24px !important;
  text-align: center;
}

.service-query .query-heading a {
  color: var(--dark-blue);
  font-weight: 700;
}
.service-query .query-heading a img{
  height: 20px;
  width: 20px;
  object-fit: contain;
  margin-right: 5px;
  filter: var(--theme-filter);
}
#service-content #service-trip-content {
  width: 100%;
  margin: auto;
  padding: 20px;
  box-shadow: 0 0 10px 2px #0000001c;
  /* Sticky not working because carousel has overflow: hidden;
    position: sticky;
    top:50px; */
}

.tour-box {
  padding: 18px;
  box-shadow: 0 0 10px 2px #0000001c;
}

.tour-box hr {
  margin: 4px 0;
}

.tour-box .service-text {
  margin-bottom: 0;
}

.tour-box .tour-heading {
  font-size: 17px;
  font-weight: 600;
}

.tour-box .theme-button {
  padding: 2px 15px !important;
  font-size: 14px;
}

.tour-box .service-button {
  margin-bottom: 0;
  margin-top: 15px;
}

/*  Bottom Bar  */
.bottom-bar {
  background-color: var(--dark-blue);
  padding: 5px 25px;
}
.bottom-bar p,
.bottom-bar a,
.bottom-bar span {
  font-size: clamp(12px, 1.3vw, 14px);
}
.bottom-bar p {
  margin-bottom: 0;
  color: #fff;
}

.bottom-bar a {
  color: #fff;
  margin: 0 5px;
}

.bottom-bar a:hover {
  color: var(--dark-blue);
  transition: 0.2s;
}

/*  Our Offices  */
.services p {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 40px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-size: 17px;
  line-height: 22px;
  color: #737373;
  font-family: "Concert One", cursive;
}

.box-a {
  background: #ffffff;
  color: #fff;
  display: flex;
  padding: 15px;
  float: right;
  position: relative;
  border-radius: 5px;
  margin-bottom: 25px;
  box-shadow: 3px 3px 6px 1px #0000004a;
}

.box-a ul {
  padding: 0;
  font-size: 14px;
  list-style: none;
  color: #323232;
}

.box-a ul li {
  display: flex;
  margin-bottom: 5px;
}

.box-a ul i {
  font-size: 14px;
  color: #323232;
  padding-top: 3px;
  margin-right: 8px;
}

.box-a:before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 0px;
  height: 0px;
  border-bottom: 15px solid var(--dark-blue);
  border-left: 15px solid #fff;
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
  display: block;
  width: 0;
}

.box-a.rounded {
  -moz-border-radius: 5px 0 5px 5px;
  border-radius: 5px 0 5px 5px;
}

.box-a.rounded:before {
  border-width: 8px;
  border-color: #323232 #323232 transparent transparent;
  -moz-border-radius: 0 0 0 5px;
  border-radius: 0 0 0 5px;
}

.box-a i {
  font-size: 20px;
  color: #323232;
}

.box-a h3 {
  position: relative;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  text-align: left;
  padding-bottom: 10px;
  margin: 0;
  color: var(--theme-black);
}

.box-a p {
  float: left;
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: 14px;
}

.box-a:hover i {
  color: var(--dark-blue);
  transition: all 1s;
  -moz-transition: all 1s;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
}

/*  Tour Packages  */
#home-packages.tourpackages .card {
  margin: 0 !important;
}

#home-packages.tourpackages .card-text {
  font-size: 14px;
}

#home-packages.tourpackages .card-title {
  font-size: 19px;
}

#home-packages.tourpackages .card-title a {
  padding: 0 !important;
}

/*  About Us  */
#about-us .section-title {
  margin-bottom: 18px;
}

#about-us .about-img img {
  border-radius: 15px;
  height: 100%;
  object-fit: cover;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.about-img {
  height: 100%;
}

.about-heading {
  text-align: center !important;
  margin-bottom: 20px !important;
}

.para {
  text-align: justify;
  padding: 10px 0px;
}

.about-content {
  margin-top: 10px;
}

/*  Call Us  */
.call-us a {
  position: fixed;
  z-index: 999;
  bottom: 45px;
  font-size: 15px;
  border: 2px solid var(--dark-blue);
  border-radius: 0px;
  background-color: #fff;
  padding: 7px 25px !important;
  color: var(--dark-blue) !important;
  display: inline-block;
  transition: 0.3s;
  left: 13px;
}

.call-us i {
  transform: rotate(100deg);
  margin-right: 5px;
}

.call-us a:hover {
  animation: tada 700ms infinite;
}

.call {
  -webkit-animation-name: tada;
  animation-name: tada;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/*  Top  */
.top a,
.top .wrap-box {
  position: fixed;
  bottom: 97px;
  right: 17px;
  background-color: var(--dark-blue);
  color: #ffff !important;
  border-radius: 50%;
  display: flex !important;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
  z-index: 9;
}

.top a:hover > i {
  transform: translateY(-4px);
  transition: 0.4s;
}

/*  Photo Gallery  */
#photogallery img {
  margin-bottom: 15px;
  height: 20rem;
  object-fit: cover;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  border-radius: 15px;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

.inclusion .heading-text {
  font-size: 20px;
}

.icons img {
  width: 50px;
  height: auto;
}

/*# SERVICE PAGE ACCORDION */
.panel-group .panel {
  border-radius: 0;
  box-shadow: none;
  border-color: #eeeeee;
}

.panel-default > .panel-heading {
  padding: 0;
  border-radius: 0;
  color: #212121;
  border-color: #eeeeee;
}

.panel-title {
  font-size: 14px;
}

.panel-heading strong {
  margin-left: 10px;
  display: inline-block;
}
.square-icon {
  height: 17px !important;
  width: 17px !important;
  filter: var(--theme-filter);
  object-fit: contain;
  position: relative !important;
  right: 0 !important;
  margin: 0 4px 0 0 !important;
}

.panel-title > a {
  display: block;
  text-decoration: none;
}

.more-less {
  float: right;
  color: #212121;
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
  background-color: #fff;
  margin-bottom: 10px;
  padding: 8px;
}

.service-page-accordion .panel-title a {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--dark-blue);
  margin: 0;
  padding: 0px;
  position: relative;
}

.service-page-accordion .panel-title a img {
  filter: var(--theme-filter);
  height: 19px;
  width: 19px;
  object-fit: contain;
  position: absolute;
  right: 8px;
  top: 0;
  bottom: 0;
  margin: auto;
}

#service-content .table-striped tbody tr:nth-of-type(even) {
  background-color: var(--dark-blue) 21;
}

#service-content .table-striped tbody tr:nth-of-type(odd) {
  background-color: #fff;
}

#service-content .table-striped thead tr {
  background: var(--dark-blue);
  color: #fff;
  font-size: 20px;
}

#service-content .table-striped tbody tr {
  font-size: 18px;
}

#service-content .table-striped tbody tr th {
  padding: 10px 5px 10px 8px;
}

#service-content p {
  font-size: 18px;
}

#service-content .special-tour {
  height: 100%;
  display: inline;
}

.tour-box-service-form {
  background-color: #fff;
  padding: 20px;
  position: sticky;
  top: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  padding: 15px;
  border-radius: 20px 20px 0px 0px;
  border: 0px solid var(--dark-blue);
  border-top: 10px solid var(--dark-blue);
}

.tour-box-service-form-2 {
  background-color: #fff;
  padding: 20px;
  position: sticky;
  top: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  padding: 15px;
  border-radius: 20px 20px 0px 0px;
  border: 0px solid var(--dark-blue);
  border-top: 10px solid var(--dark-blue);
}

.destination-class th {
  width: 120px;
  padding: 10px 12px;
}

#service-content {
  background: #bfbfbf1a;
}

.tour-box {
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.service-query {
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

#service-content #service-trip-content {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  background-color: var(--dark-blue) 05;
  border-radius: 5px;
}

#service-content #service-trip-content #sidebar_form_2 .form-group {
  margin-bottom: 8px;
}

#service-content #service-trip-content #sidebar_form_2 .form-control:focus {
  border-color: var(--dark-blue) !important;
}

#service-content #service-trip-content #sidebar_form_2 .sidebar_form_head {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 0px;
  text-align: center;
  text-transform: uppercase;
  color: var(--dark-blue);
}

.sidebar_form_head {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 0px;
  text-transform: uppercase;
  color: var(--dark-blue);
  font-weight: 600;
}

#service-content #service-trip-content #sidebar_form_2 .theme-button {
  border: 2px solid var(--dark-blue);
  border-radius: 25px;
  background-color: var(--dark-blue);
  padding: 5px 25px !important;
  color: #ffffff !important;
  display: inline-block;
  transition: 0.3s;
  margin-top: 10px;
  width: 100%;
  text-transform: uppercase;
}

#service-content #service-trip-content #sidebar_form_2 hr {
  margin-bottom: 10px;
  margin-top: 2px;
}

.destination-class th {
  width: 120px;
  padding: 10px 12px;
}

.service-block-3-shadow {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  padding: 20px;
  background-color: #fff;
  margin-bottom: 20px;
}

.tour-box-service-form h5 {
  color: var(--dark-blue);
  font-size: 26px;
}

.tour-box-service-form .form-control {
  border-radius: 50px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 14px;
}

.tour-box-service-form label {
  color: #555;
}

.tour-box-service-form button {
  border: 2px solid #ffffff;
  border-radius: 25px;
  background-color: var(--dark-blue);
  padding: 7px 25px !important;
  color: #ffffff !important;
  display: inline-block;
  transition: 0.3s;
}

.tour-box-service-form .form-control:focus {
  border-color: var(--dark-blue) !important;
}

.tour-box-service-form-2 .sidebar_form_head {
  color: var(--dark-blue);
  font-size: 26px !important;
}

.tour-box-service-form-2 .form-control {
  border-radius: 50px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 14px;
}

.tour-box-service-form-2 label {
  color: #555;
}

.tour-box-service-form-2 button {
  border: 2px solid #ffffff;
  border-radius: 25px;
  background-color: var(--dark-blue);
  padding: 7px 25px !important;
  color: #ffffff !important;
  display: inline-block;
  transition: 0.3s;
}

.tour-box-service-form-2 .form-control:focus {
  border-color: var(--dark-blue) !important;
}

.destination-class .fa-square {
  background: white;
  margin-right: 10px;
}

.destination-class img {
  height: 14px;
  width: 14px;
  margin-right: 10px;
  position: relative;
  box-shadow: 2px 2px 0px 0px black;
}

.service-page-accordion .panel-body .subtitle {
  color: #fff;
  padding: 4px 15px;
  background-color: var(--dark-blue);
}

.service-page-accordion p {
  text-align: justify;
  margin: 0;
  padding: 10px 0px;
}

.service-page-accordion {
  border-bottom: 1px solid var(--dark-blue);
  margin-bottom: 14px;
}

#service-slider .carousel-inner {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

#service-content .service-button .theme-button {
  padding: 5px 18px !important;
  font-size: 15px;
}

.tour-box-service-form hr {
  border-top-color: var(--dark-blue);
}

.tour-box-service-form-2 hr {
  border-top-color: var(--dark-blue);
}

.service-page-accordion .service-text img {
  height: 14px;
  width: 14px;
  margin-right: 8px;
  position: relative;
  box-shadow: 2px 2px 0px 0px black;
}

#service-trip-content .trip-detail .trip-heading {
  font-size: 26px;
  color: var(--dark-blue);
  display: inline-block;
  border-bottom: 4px solid var(--dark-blue);
}

.swipe-up {
  animation: swipeUp 1.5s ease-in-out;
}

@keyframes swipeUp {
  0% {
    opacity: -24;
  }

  100% {
    opacity: 1;
  }
}

.service-numbering-bg {
  background: var(--dark-blue);
  color: #fff;
  padding: 0px 6px;
}

.service-dot {
  padding: 0px 2px;
  margin-right: 5px;
}

.service-dot i {
  color: var(--dark-blue);
}

#channel-partners .row {
  gap: 10px 0;
}

#channel-partners .partner-logo {
  width: 90%;
  margin: auto;
  padding: 10px;
  box-shadow: rgb(244 102 3 / 0%) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  border-radius: 4px;
}

.service-orange-bg {
  padding: 6px 10px;
  background-color: var(--dark-blue);
  color: #fff;
  text-transform: uppercase;
}

#service-font-16 p {
  font-size: 16px;
}

.orange-bg-color-white {
  background-color: var(--dark-blue);
  color: #fff;
}

/*Global Modal CSS#*/
#globalResponseModal .modal-header {
  height: 37px;
  padding: 4px 10px;
  background: #ef8429;
  color: white;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

#globalResponseModal .modal-title {
  font-size: 24px;
}

#responseModal {
  color: #0a920a;
  text-align: center;
  padding: 35px;
  font-weight: bold;
}

.close {
  color: white;
  opacity: 1 !important;
}

.privacy-policy-section,
.t-c-section {
  padding: 40px;
}

.p_title {
  text-align: center;

  display: block;
  font-size: 23px;
  color: var(--dark-blue);
}

/*==== additional css=== */

/* tour packages css begin */

.yatra-card {
  padding: 16px;
  box-shadow: rgb(0 0 0 / 25%) 0px 14px 28px, rgb(0 0 0 / 22%) 0px 10px 10px;
  border-radius: 8px;
  margin-bottom: 35px;
  background-color: #fff;
}

.yatra-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.yatra-heading a {
  font-size: 21px;
  color: var(--dark-blue);
  text-transform: capitalize;
}

.yatra-heading {
  border-bottom: 1px solid #8080801f;
  padding: 10px 0px;
  margin: 0;
  flex-grow: 1;
  display: flex;
  font-family: var(--font-family);
  font-weight: 600;
  color: var(--dark-blue) !important;
}

.booking-buttons {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 3px;
}

@media (min-width: 991px) {
  .booking-buttons {
    align-items: end;
  }
  .booking-buttons a {
    width: 8rem !important;
  }
}

.booking-buttons a {
  width: 100%;
  text-align: center;
  font-size: 14px;
}

.yatra-card-body ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-flow: column;
  justify-content: space-around;
  line-height: 2;
}

.booking-details li {
  padding: 2px 0px;
  border-bottom: 1px solid #8080801f;
  display: flex;
  align-items: baseline;
  font-size: 15px;
}

.booking-details li p:nth-child(2) {
  padding: 0;
  color: var(--dark-blue);
  margin-left: 10px;
}

.booking-details li p:nth-child(1) {
  padding: 0;
  white-space: nowrap;
  font-weight: 700;
  color: #000;
}

.booking-details li p {
  padding: 0;
  margin: 0;
}

.pay-line {
  font-size: 17px;
  text-decoration: underline;
  color: #3daeb3;
  position: relative;
  top: 10px;
}
.pay-line .rupee-img {
  filter: brightness(0) saturate(100%) invert(61%) sepia(12%) saturate(1834%) hue-rotate(134deg) brightness(96%) contrast(90%) !important;
  height: 12px !important;
  position: relative;
  top: -1px;
  right: -1px;
}

.yatra-card-head .price {
  font-size: 15px !important;
  color: #ffffff !important;
  padding: 7px 15px;
  background-color: var(--dark-blue);
  position: static;
  text-align: center;
  height: fit-content;
  display: flex;
  align-items: center;
  width: 8rem;
  justify-content: center;
  flex-shrink: 0;
}

.yatra-card-head .price i {
  margin-right: 4px;
}

.yatra-card-img {
  height: 100%;
  display: flex;
  align-items: center;
}

.yatra-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0px;
  background: var(--dark-blue) 30;
}

.yatra-card-img img {
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.yatra-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* tour packages css end */

.info-bg {
  background: var(--dark-gradeint);
  padding: 1.5rem 0;
  font-family: var(--font-family);
  color: #fff;
}

.call-to-action-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.call-to-action-wrap span {
  font-size: 1.2rem;
  font-weight: 500;
}

.call-to-action-wrap span a {
  color: #fff;
  text-decoration: underline;
  transition: var(--transition, 0.3s ease);
}

.call-to-action-wrap span a:hover {
  color: var(--red);
}

.banner-icon {
  list-style: none;
  display: flex;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.banner-icon li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  color: var(--dark-blue);
  transition: var(--transition, 0.3s ease);
}

.banner-icon li a:hover {
  background: var(--red);
  color: #fff;
}
.banner-icon li a img {
  height: 18px;
  width: 18px;
  object-fit: contain;
  filter: var(--theme-filter);
}
/* why us css */

.why-us-video {
  margin-bottom: 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  border-radius: 10px;
  height: 400px;
}

.shiv-bg {
  position: relative;
  z-index: 1;
}

.shiv-bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url(../images/om.png);
  background-repeat: repeat;
  opacity: 0.2;
}

.why-us-wrap {
  border: 1px solid var(--dark-blue);
  margin-bottom: 30px;
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  background-color: #fff;
  height: 90%;
  padding: 14px;
}

.why-us-heading {
  font-family: var(--font-family);
  font-size: clamp(15px, 1.6vw, 18px);
  text-transform: capitalize;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 10px;
  display: block;
}

.why-us-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0px;
}

.why-us-img img {
  height: 50px;
  width: 50px;
}

.why-us-content {
  margin: 0;
}

.why-us-bg .section-title .title {
  color: #fff;
}

.booking-banner-bg {
  background: linear-gradient(#020000cf, #02021adb, #0c0802d9), url(../images/gallery/gallery-12.jpg);
  background-repeat: no-repeat;
  height: 100%;
  background-size: cover;
  background-attachment: fixed;
  padding: 35px 0px;
  background-position: center;
  letter-spacing: 2px;
}

.booking-banner {
  display: flex;
  flex-flow: column;
  background-color: #fff0e680;
  padding: 20px 40px;
  box-shadow: rgb(244 102 3 / 23%) 0px 4px 12px;
  width: 40rem;
  border-radius: 20px;
}

.booking-banner span {
  text-transform: capitalize;
}

.booking-banner span:nth-child(1) {
  font-size: 40px;
  color: #fff;
  font-family: "Font Awesome 5 Free";
}

.booking-banner-list {
  padding: 0;
  margin: 10px 0px;
  list-style: none;
  text-transform: capitalize;
  display: flex;
  justify-content: space-between;
}

.booking-banner-list li {
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  background: var(--dark-blue) 6e;
  padding: 10px;
  border-radius: 20px;
}

.booking-banner-list li span img {
  width: 2rem;
  height: 2rem;
  filter: drop-shadow(2px 4px 6px black);
}

.booking-banner-list li span {
  margin-right: 10px;
}

.reverse {
  flex-wrap: wrap-reverse;
}

/* our books css */

.books ul {
  margin: 0;
  padding: 0;
}

.visible-box {
  background-color: var(--dark-blue);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: fit-content;
  padding: 15px;
  transition: 0.3s ease-in-out;
}

.book-box h3 {
  font-size: clamp(16px, 1.8vw, 20px);
  color: #fff;
  font-family: var(--font-family);
  text-align: center;
  margin-bottom: 10px;
}

.book-box ul li {
  list-style: none;
  text-align: center;
}

.book-box ul li a {
  text-decoration: none;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  padding: 5px;
  border-radius: 8px;
}

.book-box {
  height: 18rem;
  position: relative;
  transition: 0.5s ease-in-out;
  overflow: hidden;
  border-radius: 8px;
}

.hidden-box {
  position: absolute;
  bottom: -18rem;
  height: 100%;
  transition: 0.5s ease-in-out;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.book-box:hover .hidden-box {
  top: 0;
  bottom: 0;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  background-color: #ff4500a8;
}

.book-box:hover .visible-box {
  transform: translateY(100px);
}

.book-box img {
  height: 100%;
  object-fit: cover;
}

.hidden-box ul li {
  display: flex;
  align-items: center;
  text-align: center;
}

.hidden-box ul li i {
  margin-right: 10px;
}

/* home page css */

.package-sub-heading {
  margin-top: 3px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  background-color: #ededed00;
  position: relative;
}

.package-sub-heading span {
  font-size: clamp(14px, 1.6vw, 20px);
  margin: 5px 0px 10px;
  color: #000000;
  font-weight: 600;
}

.package-sub-heading p {
  color: #000000;
  /* letter-spacing: 1px; */
  margin: 0;
  font-weight: 400;
}

.home-package .yatra-slide-heading {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-package .yatra-slide-heading span {
  text-align: center;
  font-size: 29px;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-weight: 600;
  position: relative;
}

.home-package .yatra-slide-heading span:nth-child(1) {
  color: #000;
}

.home-package .yatra-slide-heading span:nth-child(2) {
  color: #f57214;
  margin-left: 10px;
}

.home-package .yatra-slide-heading span:nth-child(1):before {
  content: "";
  position: absolute;
  top: 1px;
  left: -10px;
  width: 1rem;
  height: 1rem;
  border-left: 2px solid;
  border-top: 2px solid;
}

.home-package .yatra-slide-heading span:nth-child(2):after {
  content: "";
  position: absolute;
  bottom: 1px;
  right: -10px;
  width: 1rem;
  height: 1rem;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

/* home package css */

.home-package-list-1 {
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  padding: 10px 0px;
  position: absolute;
  top: -28px;
  width: 100%;
  right: 0;
  z-index: 1;
}

.home-package-list-1 li {
  font-size: 16px;
  display: flex;
  align-items: center;
  color: #fff;
  height: 100%;
  padding: 14px;
  font-family: var(--font-family);
  background: var(--theme-gradeint);
}

.home-package-list-1 li span:nth-child(2) {
  margin-left: 5px;
}

.home-package-list-2 {
  display: flex;
  flex-flow: column;
  padding: 0;
  list-style: none;
  margin: 0;
  background: rgba(4, 0, 0, 0.031372549);
  padding: clamp(12px, 1.5vw, 20px);
  border-radius: 10px;
}

.home-package-list-2 li {
  font-size: 14px;
  color: #fff;
  padding: 5px 0px;
  display: flex;
  margin-bottom: 10px;
}

.home-package-list-2 li:last-child {
  margin: 0;
}

.home-package-list-2 li img {
  height: 25px;
  width: 25px;
  object-fit: contain;
  display: none;
  filter: invert(1) brightness(100);
}

.home-package-list-2 li span:nth-child(1) {
  white-space: nowrap;
  display: flex;
  gap: 8px;
  font-weight: 600;
  color: var(--dark-blue);
}

.home-package-list-2 li span:nth-child(2) {
  font-weight: 400;
  margin-left: 7px;
  color: var(--red);
  transition: 0.2s ease-in-out;
}

.home-package-list-1 li:nth-child(1) {
  position: absolute;
  left: 0;
  top: 0px;
  border-radius: 0 10px 0 0;
  padding: 14px;
}

.home-package-list-1 li span {
  color: #fff;
}

.amount-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.amount-button .book-button {
  width: 48%;
  margin: 15px 5px 0px;
}
.amount-button .book-button:nth-child(1) {
  display: none;
}
.amount-button .book-button .theme-button {
  width: 100%;
  text-align: center;
}

.amount span:nth-child(2) {
  font-size: clamp(11px, 1.2vw, 13px);
  padding-top: 5px;
}

.amount span:nth-child(1) {
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
}

.amount {
  bottom: -8px;
  padding: 5px 10px;
  position: absolute;
  right: 0px;
  border-radius: 10px 0 0;
}

.amount-button .book-button .theme-button {
  margin-top: 0px !important;
}

/*testimonials css  */

.client-star {
  height: 30px;
  width: 100px;
  object-fit: contain;
  filter: invert(1) brightness(100);
}

.content .name {
  color: var(--dark-blue);
  margin-bottom: 2px;
}

.braj-image {
  position: absolute;
  right: -82px;
  height: 100%;
  display: flex;
  align-items: center;
}

.braj-image img {
  border-radius: 15px;
  height: 90%;
  object-fit: cover;
  z-index: 100;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.braj-content {
  position: relative;
  height: 100%;
  padding: 114px 17px 114px 100px;
  background: linear-gradient(227deg, var(--dark-blue) 0%, rgba(225, 225, 225, 0.3) 100%);
  border-radius: 10px;
  background-color: var(--red);
}

.home-about-img {
  position: absolute;
  left: -82px;
  height: 100%;
  display: flex;
  align-items: center;
}

.home-about-img img {
  border-radius: 15px;
  height: 90%;
  object-fit: cover;
  z-index: 100;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.home-about-content {
  position: relative;
  height: 100%;
  padding: 50px 122px 50px 30px;
  background: linear-gradient(227deg, var(--dark-blue) 0%, rgba(225, 225, 225, 0.3) 100%);
  border-radius: 10px;
  background-color: var(--red);
  text-align: justify;
}

.braj-content p {
  color: #fff;
}

.home-about-content p {
  color: #fff;
}

/* counter-banner css */

.counter-banner {
  background: url(../images/counter-banner.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

/* new tour itinerary css */

.inclusion-slide {
  height: 100%;
}

.inclusion-slide .carousel-inner {
  height: 100%;
}

.inclusion-slide .carousel-inner .carousel-item {
  height: 100%;
}

.inclusion {
  position: relative;
  background-color: #fff;
  box-shadow: rgb(0 0 0 / 16%) 0px 3px 6px, rgb(0 0 0 / 23%) 0px 3px 6px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
}

.inclusion-body {
  flex-grow: 1;
  display: flex;
  flex-flow: column;
}

.inclusion-heading {
  font-size: clamp(18px, 2.2vw, 26px);
  color: #ffffff;
  position: relative;
  margin: 0;
  padding: 10px 0px;
  text-align: center;
  background: var(--dark-blue);
}

.inclusion-heading strong {
  font-size: clamp(18px, 2.2vw, 26px);
}

.inclusion-heading img {
  width: 3rem;
  height: 3rem;
  filter: invert(1);
}

.advance-booking span {
  font-size: 20px;
  margin-bottom: 10px;
}

.inclusion-list {
  list-style: none;
  padding: 0;
  flex-grow: 1;
  display: flex;
  flex-flow: column;
  justify-content: space-around;
}

.inclusion-list li {
  border-bottom: 1px solid #80808052;
  padding: 8px;
}

.inclusion-list li span:nth-child(1) {
  color: var(--dark-blue);
  font-weight: 600;
  margin-right: 5px;
  font-size: clamp(13px, 1.4vw, 16px);
}

.inclusion-list li span:nth-child(2) {
  color: var(--red);
  font-size: clamp(13px, 1.4vw, 16px);
}

.inclusion-list li .pre-book {
  color: var(--dark-blue) !important;
}

.inclusion-button {
  display: flex;
  justify-content: space-around;
  margin: 8px;
}

.inclusion-button .theme-button {
  width: 48%;
  text-align: center;
  padding: 5px 10px !important;
}

.inclusion-icons {
  margin-top: 30px;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 20px;
  border-radius: 20px;
  background: var(--light-bg);
}

.inclusion-icons ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  margin-top: 10px;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-around;
  width: 100%;
}

.inclusion-icons ul li {
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  border-radius: 15px;
  position: relative;
  justify-content: end;
}

.inclusion-icons ul li span img {
  width: 40px;
  margin-bottom: 5px;
  filter: invert(1);
}

.inclusion-icons ul li span:nth-child(2) {
  font-size: 17px;
  color: #000;
  margin-top: 10px;
  font-weight: 600;
}

.inclusion-icons ul li span:nth-child(1) {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  z-index: 10;
  background: var(--dark-blue);
  backface-visibility: visible !important;
  animation: flip 6s ease infinite;
}

.inclusion-icons .inclusion-icons-heading {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--dark-blue);
  position: relative;
  transition: 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.inclusion-icons .inclusion-icons-heading:after,
.inclusion-icons .inclusion-icons-heading:before {
  content: "";
  position: relative;
  height: 2px;
  background: var(--dark-blue);
  width: 50px;
}

.itinerary,
.discription {
  margin-top: 20px;
  border-radius: 15px;
  border: 1px solid #e7e7e7;
  padding: 18px 18px 38px 18px;
  background-color: var(--light-blue);
  font-family: var(--font-family);
}

.itinerary-heading h1 {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--dark-blue);
  font-weight: 700;
  line-height: 1.5;
  text-transform: capitalize;
}

.itinerary-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.itinerary-days {
  position: relative;
  padding-left: 25px;
}

.itinerary-days::before {
  content: "";
  position: absolute;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--red);
  top: 3px;
}

.itinerary-days::after {
  content: "";
  position: absolute;
  left: 0px;
  width: 2px;
  height: calc(100% + 23px);
  background-color: var(--red);
  top: 13px;
}

.itinerary-days .day-count {
  position: absolute;
  left: 0;
  top: 10px;
  font-weight: 600;
  font-size: 17px;
}

.service-text p {
  line-height: 1.9;
}

/* .service-page-accordion {
  border-bottom: 1px solid var(--red);
} */

/* discription css */

/* .discription {
  margin-top: 20px;
  border-radius: 15px;
  background-color: #fef9f4;
  border: 1px solid #e7e7e7;
  padding: 18px;
  font-family: var(--font-family);
} */

.discription .panel-title {
  position: relative;
  z-index: 1;
}

.discription .panel-title > a {
  padding: 12px 0px 12px 55px;
}

.accordion-icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  filter: var(--theme-filter);
}

.accordion-icon {
  position: absolute;
  top: 8px;
  left: 0;
  z-index: 1;
}

.discription .panel-title::after {
  content: "";
  position: absolute;
  top: -2px;
  width: 4rem;
  height: 3rem;
  background-color: var(--dark-blue) 8c;
  left: -18px;
  border-radius: 0px 15px 15px 0px;
}

.discription-heading,
.discription-heading strong {
  font-size: clamp(17px, 1.9vw, 22px);
  color: var(--dark-blue);
  font-weight: 600;
}

.discription-para {
  font-weight: 600;
  font-size: 17px;
}

.note-box {
  box-shadow: rgb(0 0 0 / 16%) 0px 3px 6px, rgb(0 0 0 / 23%) 0px 3px 6px;
  background-color: #fff;
}

.note {
  display: flex;
  align-items: baseline;
}

.note .accordion-icon {
  top: 6px;
  left: 15px;
}

.note-icon span:nth-child(1) {
  font-weight: 600;
  padding-left: 20px;
  color: var(--dark-blue);
  display: inline-flex;
  align-items: center;
  position: relative;
  gap: 5px;
  margin-right: 5px;
}

.note-icon span:nth-child(1):after {
  content: ":";
  font-size: 15px;
  color: var(--dark-blue);
}

.note-content p {
  color: #000;
}

/* sidebar form css */

.fixed {
  position: fixed;
  width: 22rem;
  top: 109px;
}

.query {
  margin: 27px 0px;
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  box-shadow: rgb(0 0 0 / 16%) 0px 3px 6px, rgb(0 0 0 / 23%) 0px 3px 6px;
  border-radius: 10px 10px 0px 0px;
}

.query .query-head {
  font-size: 22px;
  color: #fff;
  margin: 0;
  padding: 10px 0px;
  background-color: var(--dark-blue);
  width: 100%;
  border-radius: 10px 10px 0px 0px;
}

.query-content {
  padding: 10px;
}

.query-content a {
  color: var(--dark-blue);
  font-size: 20px;
}

.query-content a img {
  height: 22px;
  width: 22px;
  filter: var(--theme-filter);
  object-fit: contain;
  margin-right: 6px;
}

.query-content p {
  margin: 16px 0px;
}

/* rule css */

.rules {
  position: relative;
}

.rules img {
  width: 26px;
  height: 26px;
  object-fit: cover;
  position: absolute;
  top: 19px;
  left: 8px;
  filter: drop-shadow(2px 4px 6px black);
}

.rules::after {
  content: "";
  position: absolute;
  top: 16px;
  width: 2rem;
  height: 2rem;
  background-color: var(--dark-blue) 8c;
  left: 5px;
  border-radius: 60px 60px 0px 60px;
  transform: rotate(48deg);
  z-index: 2;
}

.rules::before {
  content: "";
  position: absolute;
  top: 50px;
  width: 15px;
  height: 15px;
  background-color: #0a04015c;
  left: 12px;
  transform: rotate(156deg) skew(61deg, 0deg);
  z-index: 1;
  border-radius: 50%;
}

.rules:last-child .rule-para {
  border: none;
}

.rule-para {
  padding: 15px 5px 15px 55px;
  line-height: 2;
  border-bottom: 1px solid var(--red);
}

.rule-para p {
  margin: 0;
}

.rule-box {
  background: white;
  box-shadow: rgb(0 0 0 / 16%) 0px 3px 6px, rgb(0 0 0 / 23%) 0px 3px 6px;
}

.bottom-spacing {
  margin-bottom: 0 !important;
}

/* contact us our office css begin */

.our-office {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  border: 1px solid #31a5a8;
}

.our-office .office-name {
  position: absolute;
  top: -23px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  width: 80%;
  z-index: 10;
  background-color: #31a5a8;
  border-radius: 10px;
  font-size: 18px;
  padding: 10px 0px;
  color: #fff;
}

.our-office .office-name:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  left: 0px;
  right: 0px;
  margin: auto;
  border-radius: 10px;
  border: 3px solid white;
  top: 0;
}

.office-list {
  margin: 0;
  margin: 0;
  list-style: none;
  padding: 30px 20px;
  height: 100%;
}

.office-list li {
  font-size: 15px;
  display: flex;
  margin-bottom: 10px;
  align-items: baseline;
}

.office-list li img {
  height: 20px;
  width: 20px;
  object-fit: contain;
  filter: var(--theme-filter);
  position: relative;
  top: 2px;
  margin-right: 5px;
}

.office-list li span {
  flex-grow: 1;
  padding-left: 5px;
}

.office-list li span a {
  text-decoration: none;
  color: #000;
  transition: 0.5s;
}

.office-list li span a:hover {
  color: var(--dark-blue);
}

/* blog css begin */

.blog-heading {
  font-size: clamp(14px, 1.6vw, 18px);
  color: #ffffff;
}

.blog-container {
  box-shadow: rgb(244 102 3 / 0%) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  margin-bottom: 10px;
  border: none;
  position: relative;
  padding: 1px;
  background-color: #fff;
  cursor: pointer;
  display: block;
  padding: 20px;
  text-transform: capitalize;
  background-color: var(--dark-blue);
}

/* patment css */

.payment-bg {
  position: relative;
  z-index: 1;
}

.payment-bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background: url(../images/payment-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.3;
}

.form-wrapper {
  padding: 25px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  height: 100%;
  border-radius: 10px;
  background-color: #fff;
}

.payment-form .form-control {
  border: none;
}

.payment-form .form-group {
  border-bottom: 1px solid var(--dark-blue);
  margin-bottom: 20px;
}

.payment-form .form-group textarea {
  resize: none;
}

.numbers-form {
  margin-top: 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  padding: 20px 10px;
}

.sticky-wrap {
  border-radius: 10px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  background-color: #fff;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}

.sticky-wrap .sticky-heading {
  text-align: center;
  padding: 20px 0px;
}

.package-detail-list {
  padding: 0px 28px;
  list-style: none;
  margin: 0;
  flex-grow: 1;
  display: flex;
  flex-flow: column;
  justify-content: space-around;
}

.package-detail-list li {
  display: flex;
  align-items: center;
  z-index: 1;
  height: 100%;
  border: 1px solid #f5741a;
  margin-bottom: 10px;
  box-shadow: rgb(245 113 22 / 37%) 0px 30px 60px -12px inset, rgb(244 102 3 / 16%) 0px 18px 36px -18px inset;
  border-radius: 0px;
}

.package-detail-list li span {
  height: 100%;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  padding: 0px 10px;
}

.package-detail-list li span:nth-child(1) {
  color: #000000;
  font-weight: 600;
  margin-right: 10px;
}

.package-detail-list li span:nth-child(2) {
  color: var(--dark-blue);
  flex-grow: 1;
}

.detail-button {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0px;
}

.detail-button .theme-button {
  width: 50%;
  text-align: center;
  text-transform: capitalize;
}

.sticky-heading {
  background-color: var(--dark-blue);
  margin-bottom: 20px;
  border-radius: 10px 10px 0px 0px;
}

.sticky-heading span {
  font-size: 25px;
  color: #ffffff;
  font-family: var(--font-family);
}

.sticky-wrap hr {
  margin: 0;
}

.instamojo {
  position: relative;
  box-shadow: rgb(245 113 22 / 37%) 0px 30px 60px -12px inset, rgb(244 102 3 / 16%) 0px 18px 36px -18px inset;
  margin: 20px 0px;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.instamojo img {
  max-height: 5rem;
  width: 100%;
  object-fit: contain;
}

.link-wrap {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
}

.page-link {
  width: fit-content;
  border: 1px solid var(--dark-blue);
  margin: 5px;
  transition: 0.3s ease-in-out;
  border-radius: 5px;
}

.page-link a {
  color: var(--dark-blue);
  transition: 0.3s ease-in-out;
  font-family: var(--font-family);
  text-transform: capitalize;
}

.page-link:hover {
  background-color: var(--dark-blue);
}

.page-link:hover a {
  color: #fff;
}

.mini-heading {
  position: relative;
  z-index: 1;
  padding: 8px 8px 3px 8px;
  color: #fff;
}

.mini-heading::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--dark-blue);
  z-index: -1;
}

.sticky-nav {
  position: fixed;
  top: 45px;
  left: 0;
  right: 0;
  z-index: 290;
  width: 100%;
  border-bottom: 1px solid #fff;
  animation: smoothScroll 1s forwards;
  background: #f3a262;
  padding: 15px 0px;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* square */

.fas.fa-square-full {
  font-size: 9px;
  position: relative;
  z-index: 1;
  bottom: 4px;
  color: #fff;
  border: 1px solid #000;
  box-shadow: 2px 2px 0px 0px black;
  margin: 0px 5px;
}

/* -------yatra time-date------- */

.time-table .temple-img-wrap {
  height: 100%;
  width: 100%;
}

.temple-img-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  border-radius: 20px;
  height: 100%;
}

.temple-name {
  height: fit-content;
  width: 100%;
  padding: 5px;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  bottom: 0;
  margin-top: 10px;
}

.temple-name::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 12rem;
  height: 1px;
  background-color: #06030030;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -1px;
  /* display: none; */
}

.temple-name::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 30px;
  height: 30px;
  left: 0;
  right: 0;
  margin: auto;
  top: -20px;
  background: url(../images/om.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  /* display: none; */
}

.temple-name span {
  font-size: 23px;
  text-transform: capitalize;
  font-family: var(--font-family);
  font-weight: 600;
  color: var(--dark-blue);
}

.time-table {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  position: relative;
  z-index: 1;
  padding: 30px;
}

.time-table::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  background: url(../images/time-table.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.temple-img-wrap img {
  height: 100%;
  width: 100%;
  border-radius: 20px;
}

.time-table {
  text-transform: capitalize;
}

.time-table ul {
  list-style: none;
  padding: 15px 0px;
  text-align: center;
  margin: 0px;
}

.time-table ul li {
  margin-bottom: 10px;
}

.time-table ul li span {
  font-family: var(--font-family);
}

.time-table ul li span:nth-child(1) {
  margin-right: 20px;
  font-weight: 600;
}

.time-table h3 {
  font-family: var(--font-family);
  color: var(--dark-blue);
  font-size: 20px;
  text-align: center;
  margin: 0;
}

.time-schedule-wrap {
  margin-bottom: 70px;
  padding: 30px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

/*  Responsive  */

.float,
.whatsapp {
  position: fixed;
  bottom: 24px;
  right: 9px;
  text-align: center;
  z-index: 100;
}

.float img,
.whatsapp img {
  height: 55px;
  width: 55px;
}

.contact-info-area .title {
  font-size: clamp(16px, 1.8vw, 22px);
  text-align: center;
  padding: 8px 30px;
  background-color: var(--dark-blue);
  color: #fff;
  font-weight: 600;
  position: relative;
  border-radius: 10px 10px 0px 0px;
  font-family: var(--font-family);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-img {
  position: absolute;
  top: 7px;
  width: 50px;
  left: 9%;
  filter: invert(1);
}

.contact-img-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-img-wrap img {
  width: 30px;
  height: 30px;
}

#contact-form .form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: var(--dark-blue) !important;
  outline: 0;
  box-shadow: none !important;
}

#front-form1 .form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: var(--dark-blue) !important;
  outline: 0;
  box-shadow: none !important;
}

.image-bs {
  box-shadow: 0 4px 11px rgba(0, 0, 0, 0.32), 0 4px 11px rgba(0, 0, 0, 0.28);
}

.tab-content {
  position: relative;
  height: 700px;
}

.testClass {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1 !important;
  display: block !important;
  background-color: white;
}

#pills-home {
  z-index: 3;
}

#pills-profile {
  z-index: 2;
}

#pills-contact {
  z-index: 1;
}

.slick-dots li.slick-active button:before {
  visibility: 1 !important;
}

.slick-dots li button:before {
  font-size: 13px !important;
}

input[type="number"]:focus::placeholder {
  opacity: 0;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.inclusion-right {
  height: 100%;
}

.form-wrap-heigth {
  height: 100;
}

/* thanku-wrap */
.form-inline input {
  width: 100% !important;
}

/* new css */
.main-yatra-wrapper {
  margin: 0 auto;
  padding: 40px 0px;
}

.main-yatra-wrapper .row {
  max-width: 1600px;
  margin: auto;
}

.main-yatra-wrapper:nth-child(3) {
  background: var(--light-bg);
}

.main-yatra-heading {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 30px;
  /* font-style: italic; */
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.main-yatra-heading::after {
  content: "";
  position: relative;
  height: 7px;
  width: 60px;
  border-top: 2px dashed var(--dark-blue);
  border-bottom: 2px solid var(--dark-blue);
  transform: skew(-30deg, 0);
}

.main-yatra-heading::before {
  content: "";
  position: relative;
  height: 7px;
  width: 60px;
  border-top: 2px solid var(--dark-blue);
  border-bottom: 2px dashed var(--dark-blue);
  transform: skew(-30deg, 0);
}

#banner-slider .carousel-item,
#banner-slider-mob .carousel-item {
  height: 500px;
}

.yt-videos {
  width: 100%;
  height: 350px;
}
.yt-videos img {
  height: 100%;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.yt-btn {
  display: flex;
  align-items: center;
  border: 2px solid #ff0000;
  padding: 8px 20px;
  width: fit-content;
  background: #ff0000;
  margin: auto;
  color: #fff;
  font-weight: 600;
  font-size: clamp(12px, 1.3vw, 14px);
  text-transform: uppercase;
  gap: 10px;
  white-space: nowrap;
  transition: 0.4s ease-in-out;
  border-radius: 12px;
  letter-spacing: 2px;
}

.yt-btn:hover {
  color: #cfc9c9;
}

.yt-btn img {
  height: 30px;
  filter: invert(1) brightness(100);
}

.mail-response {
  font-size: 16px;
}

#banner-form .mail-response {
  color: #fff;
}

/* error page  */
.error-section .not-found-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.error-section .not-found-img img {
  border-radius: 20px;
}

.error-section .common-content-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 1rem;
}

.error-section .policy-btn {
  width: 95%;
  margin: auto;
  padding: 25px;
  border-radius: 10px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  list-style-type: none;
}

.error-section .policy-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  z-index: -2;
  border-radius: 20px;
  border: 1px solid var(--red);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 0px, rgba(0, 0, 0, 0.23) 0px 3px 0px;
}

.error-section .policy-btn::after {
  content: "";
  position: absolute;
  left: -15px;
  height: 30px;
  width: 30px;
  background: #fff;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  transform: rotate(45deg);
  border: 1px solid var(--red);
  border-top: 0px;
  border-right: 0;
}

.error-section .policy-btn li {
  margin-bottom: 15px;
  width: 100%;
  border: 1px solid #98a7802e;
  transition: 0.3s all ease-in-out;
}

.error-section .policy-btn li a {
  display: flex;
  justify-content: center;
  padding: 10px 0px;
  text-transform: capitalize;
  color: var(--theme-black);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-family);
  transition: 0.3s all ease-in-out;
}

.error-section .policy-btn li:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  background: var(--red);
}

.error-section .policy-btn li:hover a {
  color: #fff;
}

/* testimonials */

.single-testimonial-item {
  border: 1px solid;
  height: 100%;
  padding: 15px;
  border-radius: 12px;
  background: #fff;
}

.author-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  margin-top: 15px;
  justify-content: center;
  padding: 15px;
  background: var(--theme-gradeint);
  border-radius: 12px;
}

.author-meta > img {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 50%;
}

.author-meta .name {
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 600;
  color: #fff;
}

.author-meta .city-name {
  font-size: clamp(13px, 1.4vw, 15px);
  color: #fff;
}

.author-meta li i {
  color: #fff;
}

.fa-solid.fa-indian-rupee-sign {
  display: inline-block;
  margin-right: 5px;
}

.fa-indian-rupee-sign {
  margin-right: 3px;
}

.fa-star {
  color: #fff;
  fill: #fff;
}

/*===================== media query=========================== */
@media screen and (min-width: 1400.98px) {
  .tab-content {
    position: relative;
    height: 750px;
  }
}

@media screen and (max-width: 1400.98px) {
  .booking-details li {
    font-size: 14px;
  }

  .yatra-heading a {
    font-size: 18px;
  }
}

@media screen and (min-width: 991.98px) and (max-width: 1199.98px) {
  .booking-details li {
    font-size: 14px;
  }

  .pay-line {
    font-size: 16px;
  }
  #header nav .nav-link {
    font-size: 14px;
    padding: 4px 7px !important;
  }
  .banner-icon li a img {
    height: 6rem;
    width: 6rem;
  }
}

/* 1200px */

@media screen and (min-width: 1199.98px) {
  .form-display-2 {
    display: none;
  }
}
@media (max-width: 1199px) {
  .inclusion {
    left: 0;
    height: fit-content;
  }

  .inclusion-right {
    margin-top: 30px;
  }

  #sidebar {
    position: relative !important;
    top: 0 !important;
  }

  .fixed {
    width: 100%;
  }

  .inclusion-icons ul {
    justify-content: space-around;
    gap: 10px;
  }
  #header nav .nav-link {
    margin: 0px 7px;
  }
  .number {
    font-size: 23px;
    height: 100%;
  }
  .booking-buttons a {
    padding: 7px 10px !important;
  }

  .logo {
    width: 190px;
  }

  #service-trip-content .trip-detail .trip-heading {
    font-size: 21px;
  }

  #service-content p {
    font-size: 14px;
  }

  .trip-detail .trip-text .price {
    font-size: 15px;
  }

  #service-content .subtitle {
    font-size: 17px;
  }

  #header .navigation .nav-item {
    margin: auto 5px !important;
  }

  #banner-slider .top-text {
    font-size: 20px;
  }

  #banner-slider .mid-text {
    font-size: 40px;
  }

  #banner-slider .buttons a {
    font-size: 14px;
    padding: 7px 20px;
  }

  #home-packages .card {
    margin: 8px 5px;
  }

  #home-packages .card-title {
    font-size: 17px;
  }

  #home-packages .morelink {
    font-size: 12px !important;
  }

  .section-title {
    margin-bottom: 25px;
  }

  .home-package .yatra-slide-heading span {
    font-size: 27px;
  }
  .form-display {
    display: none;
  }
  .sticky-nav {
    top: 38px;
  }
  #banner-slider .carousel-item {
    height: 400px;
  }

  .home-package-list-1 li,
  .amount span:nth-child(1) {
    font-size: 13px;
  }
}
@media screen and (max-width: 1100px) and (min-width: 1023.98px) {
  .amount-button .book-button .theme-button {
    font-size: 13px !important;
  }

  .book-button {
    margin-right: 0;
  }
  #header nav {
    padding: 10px 20px;
  }

  #header .top-bar {
    padding: 4px 20px;
  }
}

/* 1024px */

@media (max-width: 1024px) {
  .section-title {
    margin-bottom: 15px;
    padding: 0;
  }

  #header nav .nav-link {
    font-size: 14px;
  }

  #about-us .about-img img {
    height: 535px;
  }

  #top-places.single-tour .card {
    margin: 8px 0px;
  }

  .tour-box-service-form-2 h5 {
    font-size: 20px;
  }

  .service-heading .title {
    font-size: 25px;
  }

  #service-content .service-text {
    font-size: 14px;
  }

  #service-content .service-button .theme-button {
    padding: 5px 10px !important;
    font-size: 13px;
  }

  #header .navigation .nav-item {
    margin: auto 3px !important;
  }

  #header .top-bar a {
    margin-right: 5px;
  }

  .overlap-form .form-button {
    font-size: 14px;
    padding: 5px 6px;
  }

  .overlap-form {
    padding: 25px;
    top: -46px;
  }

  #top-places .card a {
    font-size: 15px;
    padding: 0;
    color: var(--dark-blue);
    display: table;
    justify-content: center;
    font-weight: 500;
    margin: auto;
    text-align: center;
  }

  #top-places .card span {
    float: none;
    display: block;
    margin-top: 8px;
  }

  footer span {
    font-size: 13px;
  }

  .rounded-social-buttons .social-button {
    width: 30px;
    height: 30px;
    font-size: 17px;
  }

  .footer-menu img {
    width: 220px;
  }

  footer .footer-info img {
    width: 55%;
    margin: 5px auto;
    display: block;
  }
}

/* 991px */

@media (max-width: 991px) {
  #service-content #service-trip-content {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    background-color: var(--dark-blue) 05;
    border-radius: 5px;
    margin-top: 40px;
    margin-bottom: 25px;
  }
  .sticky-wrap {
    margin-top: 30px;
  }
  footer .footer-info img {
    width: 15rem;
    margin-bottom: 30px;
  }

  .tab-content {
    height: 650px;
  }

  .link-wrap {
    justify-content: center;
  }

  .page-link {
    text-align: center;
    flex-grow: 1;
  }

  .pay-line {
    font-size: 14px;
  }
  .main-yatra-wrapper {
    padding: 30px 0px;
  }

  #banner-slider-mob .carousel-item {
    height: 300px;
  }
  .section-title {
    width: 96%;
  }
  .error-section .policy-btn::after {
    display: none;
  }

  .error-section .policy-btn li a {
    font-size: 15px;
  }

  .main-yatra-heading {
    margin-bottom: 20px;
  }
  #testimonial .row {
    gap: 10px;
  }
  .blog-wrap {
    background: #fff !important;
  }
  .section-padding {
    padding: 30px 0;
  }
  .package-sub-heading p {
    display: none;
  }
  .hidden-box {
    display: none !important;
  }

  .book-box:hover .visible-box {
    transform: translate(0);
  }

  .package-detail-list {
    margin-top: 30px;
  }

  .package-detail-list li {
    padding: 10px 0px;
  }

  .amount span {
    font-size: 14px;
  }

  .home-package-list-2 li {
    font-size: 13px;
  }

  #header .top-bar {
    display: none;
  }

  #service-content table td,
  #service-content table th {
    font-size: 15px;
  }

  #service-content .special-tour,
  #service-content .service-query {
    display: none;
  }

  #service-font-16 .col-lg-4 {
    display: none;
  }

  .box-a {
    float: none;
  }

  .tourpackages .row {
    justify-content: center;
  }

  #about-us .about-img img {
    height: 350px;
    margin: 20px 0px;
  }

  .navbar-light .navbar-toggler-icon {
    background-image: url("../images/svg/burger-menu.svg");
    filter: var(--theme-filter);
  }

  #header .navigation .nav-item {
    border-bottom: 1px dotted #0f8683;
  }

  #header .theme-button {
    margin-top: 8px;
  }

  #header nav .nav-link {
    color: #007f7b;
    padding: 10px;
  }

  #header .navigation .nav-item:last-child {
    border-bottom: 1px dotted transparent;
  }

  #header .navbar-collapse {
    position: absolute;
    left: 0;
    top: 100%;
    padding: 20px;
    background: #fff;
    width: 100vw;
    z-index: 99;
  }

  .overlap-form {
    width: 95%;
    left: 0;
    margin: auto;
    right: 0;
  }

  .navbar-light .navbar-toggler {
    border: none;
  }

  .o2 {
    order: 2;
  }

  #top-places .row {
    justify-content: center;
  }

  #top-places .row.mb-4 {
    margin-bottom: 0 !important;
  }

  .contact-form-content-area,
  .contact-info-area {
    height: 100%;
  }

  .contact-info-area .contact-info-list li {
    font-size: 14px;
    display: inline-block;
    line-height: 18px;
  }

  .contact-info-area p {
    font-size: 15px;
  }

  .contact-info-area .contact-info-list li {
    display: table;
  }

  .contact-info-area .contact-info-list li i {
    padding-right: 8px;
    margin-right: 12px;
    display: table-cell;
  }

  #channel-partners .row.mx-5 {
    margin: 0 !important;
  }

  .yatra-card-img img {
    width: 100%;
  }

  .yatra-card-body {
    margin-top: 10px;
  }

  .booking-buttons {
    margin: 20px 0px;
    height: 92%;
    flex-flow: row;
  }

  .yatra-card-head .price {
    font-size: 13px !important;
  }

  .booking-buttons a {
    width: 50%;
    margin-top: 10px;
  }

  .banner-icon {
    justify-content: center;
    margin-top: 10px;
  }

  .banner-icon li a img {
    width: 5rem;
    height: 5rem;
  }

  .number {
    font-size: 23px;
  }

  .why-us-list {
    margin-top: 15px;
  }

  .booking-banner {
    margin: auto;
    width: 100%;
  }

  .home-package .yatra-slide-heading span {
    font-size: 25px;
  }

  .home-about-content {
    padding: 20px 90px 20px 20px;
  }

  .home-about-img img {
    height: 20rem;
  }

  .our-office {
    height: fit-content;
    margin-top: 3rem;
  }

  .rounded-social-buttons {
    justify-content: center;
  }
}

/* between 767px < 991px */

@media screen and (min-width: 767.98px) and (max-width: 991.98px) {
  .yatra-heading a {
    font-size: 18px;
  }

  .booking-buttons {
    flex-flow: row;
    margin-bottom: 10px;
  }

  .booking-buttons a {
    margin: 0px 5px;
  }

  .contact-info-area .title {
    padding-left: 23px;
  }

  .travel-img {
    width: 45px;
    height: 45px;
    left: 52px;
  }

  .contact-img {
    top: 9px;
    width: 45px;
    height: 45px;
    left: 20px;
  }
}

/* 767px */

@media screen and (min-width: 767px) {
  .mobile-footer-bottom {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .float {
    bottom: 50px;
  }
  .float img {
    height: 40px;
    width: 40px;
  }
  .whatsapp {
    display: none;
  }
  .call-to-action-wrap {
    flex-direction: column;
    text-align: center;
  }

  .banner-icon {
    justify-content: center;
  }
  footer {
    padding: 40px 0px 0px 0px;
  }

  #home-packages .card a:last-child {
    margin: 0;
  }

  .braj-image {
    position: static !important;
    margin-bottom: 20px;
  }

  .braj-content {
    padding: 32px 22px !important;
    text-align: justify;
  }

  .home-about-img {
    position: static !important;
    margin-bottom: 20px;
  }

  .home-about-content {
    padding: 25px !important;
  }
  #banner-slider-mob .carousel-item {
    height: 200px;
  }

  .partner-logo img {
    height: 4rem;
  }

  #counter .col-6 {
    padding: 10px;
  }
  .inclusion-icons {
    margin: 20px 0 0;
  }

  .inclusion-icons ul li {
    height: fit-content;
  }

  .inclusion-icons ul li span img {
    width: 25px;
  }

  .inclusion-icons ul li span:nth-child(1) {
    height: 40px;
    width: 40px;
  }

  .inclusion-icons ul li::after {
    height: 60px;
    width: 60px;
  }

  .yatra-card-head .price {
    position: absolute;
    top: -49px;
    right: 15px;
    border-radius: 10px 0px 10px 0px;
  }

  .contact-info-area .title {
    padding-left: 23px;
  }

  .travel-img {
    display: none;
  }

  .contact-img {
    top: 9px;
    width: 45px;
    height: 45px;
    left: 126px;
  }

  .booking-buttons a {
    width: 50%;
    margin: 5px;
    font-size: 11px;
    padding: 5px !important;
  }
  .yt-videos {
    height: 260px;
  }
  .enquire-btn {
    display: none;
  }

  .bottom-bar {
    margin-bottom: 35px;
  }

  .switch-button {
    display: none;
  }

  .whatsapp {
    display: none;
  }

  .mobile-footer-bottom {
    display: flex;
    list-style: none;
    position: fixed;
    width: 100%;
    background: var(--dark-blue);
    z-index: 999;
    bottom: 0;
    margin: 0;
    padding: 0;
  }

  .mob-call {
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
  }

  .mobile-footer-bottom li {
    flex-grow: 1;
    width: 100%;
  }

  .mobile-footer-bottom li a {
    color: #fff;
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
    padding: 5px;
    font-size: 14px;
    gap: 5px;
  }

  .mobile-footer-bottom li a img {
    width: 24px;
    height: 24px;
  }
  .mobile-footer-bottom li a img.call {
    filter: invert(1) brightness(100);
  }
  .mobile-footer-bottom.yatra-key li a img {
    filter: invert(1) brightness(100);
  }
  #service-slider .carousel-inner img {
    height: 300px;
  }

  #banner-slider .carousel-caption,
  #banner-slider-mob .carousel-caption {
    width: 60%;
  }

  #service-content .subtitle {
    font-size: 15px;
  }

  #banner .breadcrumb {
    font-size: 14px;
  }

  #home-banner-form {
    display: none;
  }

  #home-packages .card-title {
    font-size: 16px;
  }

  #home-packages .card-text {
    font-size: 14px;
  }

  #home-packages .rating {
    font-size: 14px !important;
  }

  .bottom-bar p {
    font-size: 12px;
  }

  #banner-slider {
    display: none;
  }

  #banner-slider-mob {
    display: none;
  }

  #banner-slider-mob .mid-text {
    font-size: 30px;
    text-align: left;
  }

  .booking-banner span:nth-child(1) {
    font-size: 30px;
  }

  .booking-banner-list li {
    font-size: 15px;
  }

  .amount-button .book-button .theme-button {
    font-size: 12px !important;
  }

  .home-package-list-1 li {
    font-size: 13px;
  }

  .footer-menu {
    margin: 0;
  }

  .new-package-heading {
    line-height: 1.6;
  }

  #banner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .blog-card-one {
    margin-bottom: 40px;
  }

  .blog-card-two {
    margin-bottom: 40px;
  }

  .blog-body {
    bottom: 0;
  }

  .blog-content {
    justify-content: start;
  }

  .blog-content .theme-button {
    margin-left: 20px;
  }
}

@media screen and (max-width: 700.98px) {
  .tab-content {
    height: 600px;
  }
}

@media screen and (max-width: 600.98px) {
  .tab-content {
    height: 650px;
  }

  .why-us-img {
    border: none;
    box-shadow: none;
  }

  footer .footer-info img {
    width: 12rem;
  }

  .rules::after {
    display: none;
  }

  .rules::before {
    display: none;
  }

  .rules img {
    display: none;
  }

  .rule-para {
    padding: 10px 5px;
    position: relative;
    z-index: 1;
  }

  .rule-para::after {
    content: "";
    position: absolute;
    left: -12px;
    top: 18px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: var(--dark-blue);
    z-index: -1;
  }
}
/* 575px */
@media screen and (max-width: 575px) {
  .yt-videos {
    height: 230px;
  }
  .main-yatra-wrapper {
    padding: 20px 0px;
  }

  #service-slider .carousel-inner img {
    height: 200px;
  }

  .error-section .policy-btn li a {
    font-size: 13px;
  }

  .error-section .common-content-wrap {
    padding: 15px 0;
  }

  .error-section .common-content-wrap .policy-btn {
    padding: 20px 15px;
  }

  .main-card img,
  .home-about-img img,
  #top-places .card-img-top {
    height: 220px;
  }

  .home-package-list-2 li {
    margin-bottom: 5px;
  }

  .main-yatra-heading {
    margin-bottom: 0;
  }

  .banner-icon li a {
    height: 35px;
    width: 35px;
  }
  .book-box {
    height: 15rem;
  }
}

/* < 575px */

@media screen and (max-width: 560.98px) {
  .number {
    width: 100%;
  }

  .booking-banner span:nth-child(1) {
    font-size: 26px;
  }

  .booking-banner-list li {
    font-size: 13px;
  }

  .booking-banner span a {
    font-size: 13px;
  }
}

@media screen and (max-width: 520px) {
  .booking-banner-list {
    flex-flow: column;
  }
}
@media screen and (max-width: 500px) {
  .inclusion-icons ul li {
    padding: 8px;
  }

  .inclusion-button .theme-button {
    font-size: 14px;
    padding: 5px 8px !important;
  }
  .yt-videos {
    height: 200px;
  }
}
@media (max-width: 480px) {
  .time-table::after {
    display: none;
  }

  .temple-name span {
    font-size: 22px;
  }

  .time-table ul {
    padding: 7px 0px;
  }

  .time-table h3 {
    font-size: 19px;
  }

  .discription-para {
    font-size: 15px;
  }

  .office-list li span:nth-child(2) {
    font-size: 12px;
  }

  .our-office .office-name {
    font-size: 14px;
  }

  #banner-slider .carousel-caption,
  #banner-slider-mob .carousel-caption {
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
  }

  .service-page-accordion .panel-title a {
    margin: 0;
  }

  .service-heading .title {
    font-size: 24px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  #banner-slider .mid-text,
  #banner-slider-mob .mid-text {
    font-size: 28px;
  }

  #banner-slider .top-text,
  #banner-slider-mob .top-text {
    font-size: 16px;
  }

  #banner-slider .buttons a,
  #banner-slider-mob .buttons a {
    font-size: 13px;
    padding: 5px 16px;
  }

  #home-about .theme-button {
    font-size: 14px;
    padding: 6px 10px !important;
  }

  .section-title .title {
    line-height: 20px;
  }

  #braj img {
    margin-bottom: 25px;
  }

  #home-packages .card {
    margin: 8px 20px;
  }

  #braj .theme-button {
    padding: 6px 12px !important;
    font-size: 13px;
  }

  #get-in-touch .contact-shadow:first-child {
    margin-bottom: 20px;
  }

  .footer-info {
    text-align: center;
  }

  .logo {
    width: 150px;
  }

  .call-us a {
    bottom: 45px;
    padding: 4px 11px;
    left: 16px;
    font-size: 13px;
  }

  .top a,
  .top .wrap-box {
    bottom: 84px;
    right: 16px;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bottom-bar a {
    margin-right: 0px;
  }

  .bottom-bar p {
    text-align: center;
  }

  .bottom-bar .text-right {
    text-align: center !important;
  }

  .bottom-bar .text-right a:first-child {
    margin-right: 10px;
  }

  .breadcrumb-item + .breadcrumb-item {
    padding: 0 !important;
  }

  .breadcrumb-item + .breadcrumb-item::before {
    padding: 0px 2px;
  }

  #service-content table td,
  #service-content table th {
    white-space: nowrap;
  }

  .why-us-list li {
    font-size: 13px;
  }

  .home-package .yatra-slide-heading span {
    font-size: 17px;
  }

  .home-package .yatra-slide-heading span:nth-child(2):after {
    bottom: 0;
  }

  .home-package .yatra-slide-heading span:nth-child(1):before {
    top: 0;
  }

  .temple-name::before {
    display: block;
  }

  .temple-name::after {
    display: block;
  }
  .sticky-nav {
    top: 28px;
  }
}
@media screen and (max-width: 460.98px) {
  .tab-content {
    height: 72vh;
  }

  .why-us-heading {
    font-size: 16px;
  }

  p {
    font-size: 13px;
  }

  .pay-line {
    font-size: 12px;
  }

  .yatra-heading a {
    font-size: 16px;
  }
}

@media screen and (max-width: 410.98px) {
  .time-table {
    padding: 0;
    margin-top: 20px;
  }

  .temple-name span {
    font-size: 17px;
  }

  .time-table h3 {
    font-size: 16px;
  }

  .time-table ul li span {
    font-size: 14px;
  }
}

@media (max-width: 375px) {
  #home-packages .card {
    margin: 8px 5px;
  }

  #home-packages .card a {
    margin-right: 0;
    display: block;
    /*text-align: center;*/
  }

  #home-packages .morelink {
    font-size: 12px !important;
    display: inline-flex !important;
    margin: 0 !important;
  }

  .bottom-bar {
    padding: 5px 0;
  }

  #banner .breadcrumb {
    font-size: 13px !important;
  }

  #home-packages .card a.theme-button {
    padding: 4px !important;
    font-size: 11px !important;
  }

  #home-packages .card a.theme-button {
    padding: 4px 8px !important;
  }
}

@media (max-width: 360px) {
  #banner-slider .mid-text,
  #banner-slider-mob .mid-text {
    font-size: 24px;
  }

  .bottom-bar p {
    font-size: 11px;
  }
}

.rupee-img {
  height: 15px !important;
  width: 15px !important;
  filter: invert(1) brightness(100);
  object-fit: contain;
  margin: 0 0px 0 3px;
  box-shadow: none!important;
}

p .rupee-img{
  filter: var(--theme-filter)!important;
  margin: 0!important;
   height: 13px !important;
  width: 13px !important;
}