/*  Common For All  */

@import url("https://fonts.googleapis.com/css?family=Noto+Sans&amp;display=swap");

@import url("https://fonts.googleapis.com/css2?family=Arima:wght@200;300;400;500;600;700&amp;display=swap");

:root {
  --font-family: "Arima", cursive;
  --theme-color: #DC4903;
}

body {
  font-family: "Noto Sans", 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%;
}


.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: .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(--theme-color);
}

.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(--theme-color) !important;
}

.breadcrumb-item.active {
  color: #000000 !important;
}

.section-title .title .base-color:after {
  content: "";
  width: 53%;
  height: 3px;
  background-color: var(--theme-color);
  bottom: -3px;
  z-index: 1;
  position: absolute;
  transition: all 0.9s ease-in-out;
  left: 0px;
  bottom: 10px;
}

.logo {
  width: 60px;
  object-fit: contain;
}

.bg-alt {
  background-color: #ff6c061a;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff00 !important;
  outline: 0;
  box-shadow: none !important;
}

.theme-button {
  border: 2px solid var(--theme-color) !important;
  border-radius: 25px;
  text-align: center;
  background-color: #fff;
  padding: 7px 25px !important;
  color: var(--theme-color) !important;
  display: inline-block;
  transition: 0.3s;
}

.theme-button:hover {
  background-color: var(--theme-color);
  color: #fff !important;
  transition: 0.3s;
}

.section-title {
  margin-bottom: 45px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
  font-weight: 600;
}

.section-title .title {
  font-size: 42px;
  line-height: 56px;
  text-align: left;
  margin-bottom: 0;
  color: #313131;
  text-transform: capitalize;
  font-family: var(--font-family);
}

.section-title .title:hover .base-color:after {
  width: 102%;
  transition: all 0.9s ease-in-out;
}

.base-color {
  color: var(--theme-color);
  position: relative;
}

.section-padding {
  padding: 20px 0;
}

/*  Header  */

.top-head-address {
  margin-right: 0 !important;
  float: right;
}

#header nav .nav-link {
  font-weight: 500;
  color: #666;
}

#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-color: #DC4903;
  padding: 4px 60px;
}

#header .top-bar a {
  color: #fff;
  margin-right: 25px;
  font-size: 14px;
}

#header .top-bar i {
  margin-right: 5px;
}

.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: #212529;
}

.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: #DC4903 !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 {
  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;
}

.dropdown-submenu:hover>a:after {
  border-left-color: #fff;
}

.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(--theme-color);
  border: 2px solid var(--theme-color);
  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 45s; */
}

#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(--theme-color);
}

/*  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(--theme-color), #f79a3b);
  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;

  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(--theme-color);
  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(--theme-color);
}

.overlap-form .form-control {
  color: #fff;
}

.overlap-form .form-control:focus {
  background-color: transparent;
  border-color: #fff !important;
}

/*  Home Packages  */
#home-packages .card {
  margin: 8px 15px;
  box-shadow: 0px 0px 8px 0px #b1b1b3;
  outline: none;
  border-radius: 20px;
}

#home-packages .card a.theme-button {
  font-size: 13px;
  padding: 4px 6px !important;
  margin-top: 10px;
  margin-right: 10px;
  outline: 0 !important;
}

#home-packages .card-body {
  padding: 15px;
  position: relative;
}

#home-packages .rating {
  position: absolute;
  bottom: 0px;
  top: auto;
  left: 0px;
  font-size: 16px !important;
  color: #ffffff !important;
  padding: 3px 15px;
  background-color: var(--theme-color);
}

#home-packages .days {
  position: absolute;
  bottom: 0px;
  top: auto;
  right: 0px;
  font-size: 16px !important;
  color: #ffffff !important;
  padding: 3px 15px;
  background-color: var(--theme-color);
}

#home-packages .morelink {
  font-size: 13px !important;
  color: var(--theme-color);
}

#home-packages .morecontent span {
  display: none;
}

#home-packages .container-fluid {
  overflow: hidden;
}

#home-packages .card-title {
  color: #212529;
  font-size: 20px;
  padding: 0px;
  outline: 0 !important;
  font-family: var(--font-family);
  border-bottom: 1px solid;
  padding-bottom: 5px;
}

#home-packages .card-title a {
  color: #212529;
  font-weight: 600;
}

#home-packages .card-title a:hover,
#home-packages .card-title a:focus {
  color: var(--theme-color);
  outline: none;
}

#home-packages .card-text {
  font-size: 13px;
  margin-bottom: 0;
}

#home-packages .card-note {
  font-size: 14px;
  margin-bottom: 0;
  color: var(--theme-color);
}

#home-packages hr {
  margin-top: 6px;
  margin-bottom: 6px;
}

/*  Home About  */

.home-text p,
.home-text ul {
  font-size: 16px;
  line-height: 1.625;
  padding: 0;
}

.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(--theme-color);
  position: absolute;
}

/*  Top Places  */
#top-places .card {
  margin: 8px 15px;
  box-shadow: 0px 0px 8px 0px #b1b1b3;
}

#top-places .card a {
  font-size: 15px;
  padding: 0;
  color: var(--theme-color);
  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: 16px !important;
  color: #fff !important;
  padding: 3px 15px;
  background-color: var(--theme-color);
}

#top-places .card span {
  float: right;
  font-size: 17px;
  font-weight: 600;
  color: var(--theme-color);
}

/*  Counter  */

.single-counterup-item {
  text-align: center;
}

.single-counterup-item .icon {
  height: 50px;
  color: #fff;
  border-radius: 50%;
  width: 50px;
  padding: 25px;
  margin: auto;
  border: 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin-bottom: 13px;
}


.single-counterup-item .content .countnum {
  font-size: 23px;
  color: #fff;
  display: block;
  font-family: var(--font-family);
}

.single-counterup-item .content .title {
  font-size: 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: 7rem;
  object-fit: contain;
}

/*  Get In Touch  */
.contact-info-area {
  background-color: #fff;
  border-radius: 10px;
}

.contact-content {
  padding: 0px 20px;
}

.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;
  align-items: baseline;
}

.contact-info-area .contact-info-list li i {
  padding-right: 5px;
}

.contact-info-area .contact-info-list li i {
  padding-right: 5px;
  margin-right: 12px;
  padding-top: 7px;
  color: #DC4903;
  width: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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;
}

.contact-info-area .social-icon li.facebook {
  background-color: #0069f7;
  color: #fff;
  border-radius: 50%;
}

.contact-info-area .social-icon li.twitter {
  background-color: #000;
  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-color: #962fbf;
  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.youtube {
  background-color: #e60023;
  color: #fff;
  border-radius: 50%;
}

ul.social-icon {
  margin: 0;
  padding: 0px 10px;
  margin-bottom: 20px;
}

.contact-form-content-area {
  padding: 25px;
  border-radius: 15px;

}

.contact-shadow {
  height: 100%;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.contact-para {
  text-align: justify;
  margin: 15px 0px;
  padding: 0px 20px;
}

#get-in-touch a {
  color: #212529;
}

/*  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;
  font-size: 18px;
  left: 0px;
  top: 0px;
  color: var(--theme-color);
  position: absolute;
}

#why-choose-us .icon-text {
  position: relative;
  padding-left: 30px;
  font-size: 18px;
}

/*  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-color: var(--theme-color);
  padding: 40px 0px 0px 50px;
  position: relative;
  z-index: 1;
}

footer::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/icons/footer-image.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.2;
}

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-info ul li {
  margin-bottom: 8px;
}

.footer-menu ul a {
  color: #fff;
  font-size: 15px;
  font-weight: 100;
}

.footer-menu {
  display: table;
  position: relative;
}

.footer-menu p::after {
  content: "";
  position: absolute;
  top: 37px;
  width: 31px;
  height: 3px;
  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: 24px;
}

.footer-menu li {
  display: flex;
  margin-bottom: 10px;
}

.footer-menu i {
  color: #fff;
  padding-right: 5px;
  margin-right: 12px;
  padding-top: 7px;
}

/* Footer */

.rounded-social-buttons {
  padding: 20px 0px;
}

.rounded-social-buttons .social-button {
  display: inline-block;
  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;
}

.rounded-social-buttons .social-button.facebook {
  background: #3b5998;
}

.rounded-social-buttons .social-button.twitter {
  background: #000;
}

.rounded-social-buttons .social-button.linkedin {
  background: #007bb5;
}

.rounded-social-buttons .social-button.youtube {
  background: #bb0000;
}

.rounded-social-buttons .social-button.instagram {
  background: #962fbf;
}

.rounded-social-buttons .social-button.tumblr {
  background: #34526f;
}

.rounded-social-buttons .social-button.pinterest {
  background: #e60023;
}

.rounded-social-buttons i {
  padding: 0;
  margin: 0;
}

/*  Banner  */
#banner .banner-heading {
  font-size: 40px;
  color: #fff;
  margin-bottom: 5px;
  font-family: var(--font-family);
}

#banner {
  background: linear-gradient(to right, #c19b81c7, #d56624ab, #f76a0854),
    url(../../websiteee/ban.jpg);
  background-position: right;
  /* background-size: contain; */
  background-repeat: no-repeat;
}

#banner nav {
  background: linear-gradient(227deg, rgb(255 255 255 / 0%) 0%, rgb(189 34 35) 100%);
  /* rgb(189, 34, 35) 0%,
  rgb(189 34 35 / 30%) 100%); */
  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;
}

/*  Service Slider  */
#service-slider .carousel-inner img {
  height: 470px;
  object-fit: cover;
  opacity: 1;
}

#service-slider .carousel-inner {
  background-color: #000;
}

.service-heading .title {
  font-size: 27px;
  color: var(--theme-color);
  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(--theme-color);
}

#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(--theme-color);
  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;
  border-radius: 10px 50px;
  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(--theme-color);
  font-weight: 700;
}

#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: black;
  font-size: 14px;
  padding: 5px 25px;
}

.bottom-bar p {
  margin-bottom: 0;
  color: #fff;
}

.bottom-bar a {
  color: #fff;
  margin-right: 15px;
}

.bottom-bar a:hover {
  color: var(--theme-color);
  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(--theme-color);
  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: #212529;
}

.box-a p {
  float: left;
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: 14px;
}

.box-a:hover i {
  color: var(--theme-color);
  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: 10px;
  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(--theme-color);
  border-radius: 25px;
  background-color: #fff;
  padding: 7px 25px !important;
  color: var(--theme-color) !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 {
  position: fixed;
  bottom: 97px;
  right: 17px;
  background-color: var(--theme-color);
  color: #ffff !important;
  border-radius: 50%;
  padding: 10px 18px;
  display: none;
  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;
  background-color: #fafafa;
  border-color: #eeeeee;
}

.panel-title {
  font-size: 14px;
}

.panel-title>a {
  display: block;
  text-decoration: none;
}

.more-less {
  float: right;
  color: #212121;
}

.panel-default>.panel-heading+.panel-collapse>.panel-body {
  background-color: #fef9f4;
  margin-bottom: 10px;
}

.service-page-accordion .panel-title a {
  font-size: 18px;
  color: var(--theme-color);
  margin: 0;
  padding: 0px;
}

.service-page-accordion .panel-title .fa-angle-down:before,
.service-page-accordion .panel-title .fa-angle-up:before {
  color: #eb6400;
}

#service-content .table-striped tbody tr:nth-of-type(even) {
  background-color: var(--theme-color) 21;
}

#service-content .table-striped tbody tr:nth-of-type(odd) {
  background-color: #fff;
}

#service-content .table-striped thead tr {
  background: var(--theme-color);
  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;
  margin-top: 20px;
  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(--theme-color);
  border-top: 10px solid var(--theme-color);
}

.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(--theme-color);
  border-top: 10px solid var(--theme-color);
}

.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(--theme-color) 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(--theme-color) !important;
}

#service-content #service-trip-content #sidebar_form_2 .sidebar_form_head {
  font-size: 26px;
  margin-bottom: 0px;
  text-align: center;
  text-transform: uppercase;
  color: var(--theme-color);
}

#service-content #service-trip-content #sidebar_form_2 .theme-button {
  border: 2px solid var(--theme-color);
  border-radius: 25px;
  background-color: var(--theme-color);
  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(--theme-color);
  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(--theme-color);
  padding: 7px 25px !important;
  color: #ffffff !important;
  display: inline-block;
  transition: 0.3s;
}

.tour-box-service-form .form-control:focus {
  border-color: var(--theme-color) !important;
}

.tour-box-service-form-2 .sidebar_form_head {
  color: var(--theme-color);
  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(--theme-color);
  padding: 7px 25px !important;
  color: #ffffff !important;
  display: inline-block;
  transition: 0.3s;
}

.tour-box-service-form-2 .form-control:focus {
  border-color: var(--theme-color) !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(--theme-color);
}

.service-page-accordion p {
  text-align: justify;
  font-size: 16px;
  margin: 0;
  padding: 10px 0px;
}

.service-page-accordion {
  border-bottom: 1px solid var(--theme-color);
  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(--theme-color);
}

.tour-box-service-form-2 hr {
  border-top-color: var(--theme-color);
}

.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(--theme-color);
  display: inline-block;
  border-bottom: 4px solid var(--theme-color);
}

.swipe-up {
  animation: swipeUp 1.5s ease-in-out;
}

@keyframes swipeUp {
  0% {
    opacity: -24;
  }

  100% {
    opacity: 1;
  }
}

.service-numbering-bg {
  background: var(--theme-color);
  color: #fff;
  padding: 0px 6px;
}

.service-dot {
  padding: 0px 2px;
  margin-right: 5px;
}

.service-dot i {
  color: var(--theme-color);
}

#channel-partners .partner-logo {
  width: 80%;
  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(--theme-color);
  color: #fff;
  text-transform: uppercase;
}

#service-font-16 p {
  font-size: 16px;
}

.orange-bg-color-white {
  background-color: var(--theme-color);
  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(--theme-color);
}

/*==== 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(--theme-color);
  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);
}

.booking-buttons {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.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(--theme-color);
  margin-left: 10px;
}

.booking-details li p:nth-child(1) {
  padding: 0;
  white-space: nowrap;
}

.booking-details li p {
  padding: 0;
  margin: 0;
}

.pay-line {
  font-size: 17px;
  text-decoration: underline;
  color: #3daeb3;
  position: relative;
  top: 10px;
}

.yatra-card-head .price {
  font-size: 15px !important;
  color: #ffffff !important;
  padding: 7px 15px;
  background-color: var(--theme-color);
  position: static;
  text-align: center;
  height: fit-content;
  display: flex;
  align-items: center;
  width: 9rem;
  justify-content: center;
}

.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(--theme-color) 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 banner */

.info-bg {
  padding: 60px 0px;
  background: linear-gradient(#0e020275, #00000094),
    url(../../websiteee/ban.jpg);
  background-repeat: no-repeat;
  background-position: center -17%;
  background-attachment: fixed;
}

.info-bg-two {
  padding: 50px 0px;
  background: linear-gradient(227deg,
      rgb(244 102 3 / 62%) 0%,
      rgb(245 106 17 / 65%) 100%);
  backdrop-filter: blur(10px);
  display: none;
}

.call-to-action-wrap {
  position: relative;
  padding: 20px 0px;
  border-radius: 10px 50px;
  border: 0.5px solid #fff;
  width: 80%;
  margin: auto;
  background: linear-gradient(var(--theme-color) 52, var(--theme-color) 3d);
  backdrop-filter: blur(23px);
  z-index: 1;
}

.call-to-action-wrap::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -10px;
  border-right: 1px solid var(--theme-color);
  border-bottom: 1px solid var(--theme-color);
  height: 50%;
  width: 70%;
  z-index: -1;
}

.call-to-action-wrap::before {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  border-left: 1px solid var(--theme-color);
  border-top: 1px solid var(--theme-color);
  height: 50%;
  width: 70%;
  z-index: -1;
}

.number {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-top: 10px;
  text-align: center;
}

.number span {
  font-size: 30px;
  color: #fff;
  font-family: var(--font-family);
}

.banner-icon {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  height: 100%;
}

.banner-icon li {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  margin: 0px 20px;
  transition: 0.5s ease-in-out;
}

.banner-icon li a {
  color: var(--theme-color);
  cursor: pointer;
  transition: 0.5s ease-in-out;
}

.banner-icon li a i {
  font-size: 22px;
}

.banner-icon li:hover {
  background-color: var(--theme-color);
}

.banner-icon li:hover a {
  color: #fff;
  transform: scale(0.9);
}

/* 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(--theme-color);
  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: 20px;
  text-transform: capitalize;
  color: var(--theme-color);
}

.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(--theme-color) 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(--theme-color);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: fit-content;
  padding: 15px;
  transition: .3s ease-in-out;
}

.book-box h3 {
  font-size: 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;
  margin-bottom: 20px;
}

.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: #f46603a8;
}

.book-box:hover .visible-box {
  transform: translateY(100px);
}



.book-box img {
  height: 100%;
}

.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;
  padding: 10px 0px;
  position: relative;
}


.package-sub-heading span {
  font-size: 24px;
  margin: 10px 0px;
  color: #000000;
  font-weight: 400;
}

.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: #DC4903;
  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: -56px;
  width: 100%;
  right: 0;
  z-index: 1;
}

.home-package-list-1 li {
  font-size: 20px;
  display: flex;
  align-items: center;
  color: #fff;
  height: 100%;
  padding: 14px;
  font-family: var(--font-family);
}

.home-package-list-1 li span:nth-child(2) {
  color: #fff;
  margin-left: 5px;
}

.home-package-list-2 {
  display: flex;
  flex-flow: column;
  padding: 0;
  list-style: none;
  margin: 0;
}

.home-package-list-2 li {
  font-size: 16px;
  color: #000;
  padding: 5px 0px;
  border-bottom: 1px solid #f5cbcb;
  display: flex;
  align-items: baseline;
}

.home-package-list-2 li span:nth-child(1) {
  white-space: nowrap;
}

.home-package-list-2 li span:nth-child(2) {
  color: var(--theme-color);
  margin-left: 7px;
}

.home-package-list-1 li:nth-child(1) {
  position: absolute;
  left: 0;
  top: 28px;
  background: #f46603;
  border-radius: 0px 10px 0px 0px;
  padding: 14px;
}

.amount-button {
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.amount-button .book-button {
  width: 30%;
  margin: 15px 5px 0px;
}

.amount-button .book-button .theme-button {
  width: 100%;
  text-align: center;
}

.amount span:nth-child(2) {
  font-size: 13px;
  padding-top: 5px;
  color: #fff;
}

.amount span:nth-child(1) {
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  color: #fff;
}

.amount {
  bottom: -36px;
  padding: 5px 10px;
  background: var(--theme-color);
  border-radius: 5px;
  position: absolute;
  right: 0px;
  border-radius: 10px 0px 0px 0px;
}

.amount-button .book-button .theme-button {
  margin-top: 0px !important;
}



/*testimonials css  */

.author-meta img {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 50%;
}

.author-meta {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  bottom: 30px;
  right: 0;
  left: 22px;
  background-color: white;
  width: 90%;
  box-shadow: rgb(14 30 37 / 12%) 0px 2px 4px 0px, rgb(14 30 37 / 32%) 0px 2px 16px 0px;
  border-radius: 10px 50px;
  padding: 10px;

}

.client-star {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.client-star li {
  margin-right: 3px;
  color: #fac38c;
}

.content .name {
  color: var(--theme-color);
  margin-bottom: 2px;
}

.content .city-name {
  color: #644b3a;
  margin-bottom: 2px;
  font-weight: 600;
}

.description {
  height: 25rem;
  text-align: center;
  border-radius: 10px;
  padding: 30px 15px 15px 15px;
  background: linear-gradient(227deg, rgb(189, 34, 35) 0%, rgb(189 34 35 / 30%) 100%);
  background-color: #fac38c;
}

.description p {
  margin: 0;
  color: #fff;
}

.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,
      rgb(244 102 3) 0%,
      rgba(225, 225, 225, 0.3) 100%);
  border-radius: 10px 50px;
  background-color: #fac38c;
}

.home-about-img {
  /* 
  position: absolute;
  left: -82px;
   */
  align-items: center;
  height: 100%;
  display: flex;
}

.home-about-img img {
  border-radius: 10px 50px;
  height: 100%;
  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: 40px 30px 40px 30px;
  background: linear-gradient(227deg, #DC4903 0%, rgb(189 34 35 / 30%) 100%);
  border-radius: 10px 50px;
  background-color: #fac38c;
  text-align: justify;
}

.braj-content p {
  color: #fff;
}

.home-about-content p {
  color: #fff;
}

.off-bg {
  background-color: #fff0e6;
}

/* counter-banner css */

.counter-banner {
  margin: 20px 0px;
  background: url(../images/counter-banner.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.slick-slide img {
  border-radius: 12px !important;
}

.single-counterup-item {
  background: linear-gradient(227deg,
      #DC4903 0%,
      rgb(189 34 35 / 30%) 100%);
  backdrop-filter: blur(10px);
  border-radius: 10px 50px;
  color: #fff;
  padding: 15px;
}

/* 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;
  height: calc(29rem + 6px);
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
}

.inclusion-body {
  padding: 18px;
  flex-grow: 1;
  display: flex;
  flex-flow: column;
  justify-content: space-around;
}

.inclusion-heading {
  font-size: 26px;
  color: #ffffff;
  position: relative;
  margin: 0;
  padding: 10px 0px;
  text-align: center;
  background: var(--theme-color);
}

.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;
  margin-bottom: 10px;
}

.inclusion-list li {
  margin-bottom: 10px;
  border-bottom: 1px solid #80808052;
}

.inclusion-list li span:nth-child(1) {
  color: var(--theme-color);
  font-weight: 600;
  margin-right: 5px;
}

.inclusion-list li span:nth-child(2) {
  color: #080401;
  font-size: 16px;
  line-height: 2;
  font-weight: 600;
}

.inclusion-list li .pre-book {
  color: var(--theme-color) !important;
}

.inclusion-button {
  display: flex;
  justify-content: space-around;
}

.inclusion-button .theme-button {
  width: 48%;
  text-align: center;
  padding: 5px 10px !important;
}

.inclusion-icons {
  margin: 35px 0px;
}

.inclusion-icons ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  flex-wrap: wrap;
}

.inclusion-icons ul li {
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  margin: 20px 10px;
  border-radius: 15px;
  padding: 15px;
  width: 10rem;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  position: relative;
  height: 6rem;
  justify-content: end;
  background: var(--theme-color) 30;
}

.inclusion-icons ul li::after {
  content: "";
  position: absolute;
  left: 0;
  height: 85px;
  width: 85px;
  background-color: #ffffff;
  top: -27px;
  border-radius: 50%;
  right: 0;
  margin: auto;
}

.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%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -18px;
  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(--theme-color);
  backface-visibility: visible !important;
  animation: flip 6s ease infinite;
}



.inclusion-icons .inclusion-icons-heading {
  font-size: 28px;
  color: var(--theme-color);
  position: relative;
  transition: 0.8s ease-in-out;
}

.inclusion-icons-heading::after {
  content: "";
  position: absolute;
  width: 3rem;
  height: 3px;
  bottom: -3px;
  background-color: var(--theme-color);
  left: 0;
  transition: 0.8s;
}

.inclusion-icons-heading:hover:after {
  width: 5rem;
}

.itinerary {
  margin-top: 20px;
  border-radius: 15px;
  border: 1px solid #e7e7e7;
  padding: 18px 18px 38px 18px;
  background-color: #fef9f4;
  font-family: var(--font-family);
}

.itinerary-heading h1 {
  font-size: 28px;
  color: #000;
  font-weight: 700;
  line-height: 1.5;
  text-transform: capitalize;
}

.itinerary-heading p {
  font-size: 17px;
}

.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: #f79734;
  top: 3px;
}

.itinerary-days::after {
  content: "";
  position: absolute;
  left: 0px;
  width: 2px;
  height: calc(100% + 23px);
  background-color: #f79734;
  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 #f79734;
} */

/* 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: 26px;
  height: 26px;
  object-fit: cover;
}

.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(--theme-color) 8c;
  left: -18px;
  border-radius: 0px 15px 15px 0px;
}

.discription-heading {
  font-size: 28px;
  color: var(--theme-color);
}

.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 .accordion-icon {
  top: 6px;
  left: 15px;
}

.note-icon span:nth-child(1) {
  font-size: 20px;
  font-weight: 600;
  padding-left: 20px;
  color: var(--theme-color);
}

.note-content p {
  color: #000;
  padding-left: 20px;
}

/* 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(--theme-color);
  width: 100%;
  border-radius: 10px 10px 0px 0px;
}

.query-content {
  padding: 10px;
}

.query-content a {
  color: var(--theme-color);
  font-size: 20px;
}

.query-content a i {
  margin-right: 10px;
}

.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(--theme-color) 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%;
}

.rule-para {
  padding: 15px 5px 15px 55px;
  line-height: 2;
  border-bottom: 1px solid #f1c59a;
}

.rule-para p {
  margin: 0;
  font-size: 17px;
}

.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 span:nth-child(1) {
  margin-right: 10px;
  width: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #060200;
}

.office-list li span:nth-child(2) {
  flex-grow: 1;
  padding-left: 5px;
}

.office-list li span:nth-child(2) a {
  text-decoration: none;
  color: #000;
  transition: 0.5s;
}

.office-list li span:nth-child(2) a:hover {
  color: var(--theme-color);
}

/* blog css begin */
.blog-card {
  box-shadow: rgb(244 102 3 / 0%) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  margin-bottom: 30px;
  border: none;
  position: relative;
  padding: 1px;
  background-color: #fff;
}

.blog-body {
  padding: 20px;
  text-transform: capitalize;
  background-color: var(--theme-color);
}

.blog-heading {
  font-size: 18px;
  color: #ffffff;
}

.blog-container {
  cursor: pointer;
}

/* yatra slider css */

.yatra-nav {
  display: flex;
  justify-content: center;
  margin: 30px 0px;
}

.yatra-nav .nav {
  flex-wrap: inherit;
}

.yatra-nav .nav li {
  margin: 0px 20px;

}

.yatra-nav .nav li button {
  border: none;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-size: 22px;
  border-radius: 25px;
  background-color: #fff;
  font-family: var(--font-family);
  padding: 5px 40px;
  box-shadow: rgb(0 0 0 / 19%) 0px 10px 20px, rgb(0 0 0 / 23%) 0px 6px 6px;
  color: var(--theme-color);
}

.yatra-nav .nav li button.active {
  background-color: #DC4903;
}

/* 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: .3;
}

.form-wrapper {
  padding: 40px;
  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(--theme-color);
  margin-bottom: 20px;
}

.payment-form .form-group textarea {
  resize: none;
}

.numbers-form {
  /* margin-top: 60px; */
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  padding: 20px 10px;
  min-height: 235px;
  border-radius: 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(--theme-color);
  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(--theme-color);
  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;
  display: flex;
  justify-content: center;
}

.instamojo img {
  height: 10rem;
  width: 100%;
  object-fit: contain;
}

.link-wrap {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
}

.page-link {
  width: fit-content;
  border: 1px solid #f466034a;
  margin: 5px;
  transition: 0.3s ease-in-out;
  border-radius: 5px;

}

.page-link a {
  color: var(--theme-color);
  transition: 0.3s ease-in-out;
  font-family: var(--font-family);
  text-transform: capitalize;
}

.page-link:hover {
  background-color: var(--theme-color);
}

.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(--theme-color);
  z-index: -1;
}


.sticky-nav {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 290;
  width: 100%;
  border-bottom: 1px solid #fff;
  animation: smoothScroll 1s forwards;
  background: #f07475;
  padding: 15px 0px;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (max-width:1199px) {
  .sticky-nav {
    top: 38px;
  }
}

@media (max-width:480px) {
  .sticky-nav {
    top: 28px;
  }
}

/* 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(--theme-color);
}

.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(--theme-color);
  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  */

@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;
  }



}

@media screen and (max-width: 1199.98px) {
  .inclusion {
    left: 0;
    height: fit-content;
  }

  .inclusion-right {
    padding: 20px 0px;
    margin-top: 30px;
  }

  #sidebar {
    position: relative !important;
    top: 0 !important;
  }

  .fixed {
    width: 100%;
  }

  .inclusion-icons ul {
    justify-content: space-around;
  }

  .inclusion-list {
    line-height: 2.9;
  }
}

@media screen and (max-width: 500px) {
  .inclusion-icons ul li {
    padding: 8px;
  }

  .inclusion-button .theme-button {
    font-size: 14px;
    padding: 5px 8px !important;
  }

  .inclusion-list li {
    font-size: 16px;
  }
}

@media screen and (min-width: 1299.98px) {
  #header nav .nav-link {
    margin: 0px 7px;
  }
}



@media screen and (max-width: 1299.98px) {
  .number {
    font-size: 23px;
    height: 100%;
  }
}

@media screen and (max-width: 1299.98px) and (min-width:1200.98) {

  #header nav .nav-link {
    font-size: 14px;
    padding: 4px 7px !important;
  }
}

@media (max-width: 1200.98px) {

  .booking-buttons a {
    padding: 7px 10px !important;
  }

  .logo {
    width: 60px;
  }

  #service-slider .carousel-inner img {
    height: 422px;
  }

  #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 nav .nav-link {
    font-size: 14px;
    padding: 4px 7px !important;
  }

  #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;
  }

  /* home-packages .card-body {
    padding: 1.25rem 12px;
  } */
  .section-title .title {
    font-size: 35px;
  }

  .section-title {
    margin-bottom: 25px;
  }

  .home-package .yatra-slide-heading span {
    font-size: 27px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199.98px) {
  .banner-icon li a img {
    height: 6rem;
    width: 6rem;
  }


}

@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;
  }
}

@media screen and (min-width: 991.98px) and (max-width: 1083.98px) {
  #header nav {
    padding: 10px 20px;
  }

  #header .top-bar {
    padding: 4px 20px;
  }
}

@media (max-width: 1024px) {
  #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;
  }

  #service-slider .carousel-inner img {
    height: 415px;
  }

  #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;
  }

  .home-text p,
  .home-text ul {
    font-size: 14px;
  }

  #top-places .card a {
    font-size: 15px;
    padding: 0;
    color: var(--theme-color);
    display: table;
    justify-content: center;
    font-weight: 500;
    margin: auto;
    text-align: center;
  }

  #top-places .card span {
    float: none;
    display: block;
    margin-top: 8px;
  }

  #top-places .rating {
    font-size: 14px !important;
  }

  .section-title .title {
    font-size: 30px;
  }

  .single-testimonial-item .description {
    font-size: 14px;
  }

  .single-testimonial-item .author-meta .content .name {
    font-size: 16px;
  }

  #why-choose-us .icon-text {
    font-size: 14px;
  }

  footer span {
    font-size: 13px;
  }

  .footer-menu p {
    font-size: 20px;
  }

  .footer-menu ul a {
    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;
  }

  #banner .banner-heading {
    font-size: 35px;
  }
}

@media (max-width: 991.98px) {

  .inclusion-icons ul li {
    width: 9rem;
  }

  .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-slider .carousel-inner img {
    height: 350px;
  }

  #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;
  }

  p {
    font-size: 16px;
  }

  .navbar-light .navbar-toggler-icon {
    background-image: url("../images/svg/burger-menu.svg");
  }

  #header .navigation .nav-item {
    border-bottom: 1px dotted #0f8683;
  }

  #header .theme-button {
    margin-top: 8px;
  }

  #header nav .nav-link {
    color: #007f7b;
  }

  #header .navigation .nav-item:last-child {
    border-bottom: 1px dotted transparent;
  }

  #header .navbar-collapse {
    margin-top: 20px;
  }

  .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;
  }

  .single-testimonial-item .description {
    font-size: 13px;
    line-height: 22px;
    padding: 12px;
  }

  .single-testimonial-item .author-meta .content .name {
    font-size: 14px;
  }

  .contact-form-content-area,
  .contact-info-area {
    height: 100%;
  }

  .contact-info-area .title {
    font-size: 20px;
  }

  .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: 23rem;
  }

  .our-office {
    height: fit-content;
    margin-top: 3rem;
  }

  #banner .banner-heading {
    font-size: 30px;
  }
}

@media (max-width: 767.98px) {

  #banner-slider .carousel-caption,
  #banner-slider-mob .carousel-caption {
    width: 60%;
  }

  #service-content .subtitle {
    font-size: 15px;
  }

  #banner .banner-heading {
    font-size: 21px;
  }

  #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: block;
  }

  #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;
  }

  .package-sub-heading span {
    font-size: 24px;
  }

  .amount-button .book-button .theme-button {
    font-size: 12px !important;
  }

  .home-package-list-1 li {
    font-size: 13px;
  }

  .footer-menu {
    margin: 0;
  }

  .inclusion-icons ul {
    flex-wrap: wrap;
  }

  .new-package-heading {
    font-size: 20px !important;
    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: 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 (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;
  }

  .rule-para p {
    font-size: 15px;
  }

  .service-page-accordion p {
    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 {
    font-size: 17px;
    margin: 0;
  }

  .itinerary-heading p {
    font-size: 15px;
  }

  .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;
  }

  .section-padding {
    padding: 20px 0;
  }

  #home-about .theme-button {
    font-size: 14px;
    padding: 6px 10px !important;
  }

  .section-title .title {
    font-size: 21px;
    line-height: 38px;
  }

  #braj img {
    margin-bottom: 25px;
  }

  #home-packages .card {
    margin: 8px 20px;
  }

  .single-counterup-item .icon {
    font-size: 36px;
    line-height: 34px;
  }

  .single-counterup-item {
    text-align: center;
    margin-bottom: 30px;
  }

  #braj .theme-button {
    padding: 6px 12px !important;
    font-size: 13px;
  }

  .single-testimonial-item .author-meta .content {
    margin-top: 0px;
    margin-bottom: 15px;
  }

  #get-in-touch .contact-shadow:first-child {
    margin-bottom: 20px;
  }

  .footer-info {
    text-align: center;
  }

  .logo {
    width: 60px;
  }

  .call-us a {
    bottom: 45px;
    padding: 4px 11px;
    left: 16px;
    font-size: 13px;
  }

  .top a {
    bottom: 84px;
    right: 16px;
    padding: 7px 15px;
  }

  .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;
  }

  #banner .banner-heading {
    font-size: 20px;
    text-align: center;
  }

  #banner .breadcrumb {
    justify-content: center;
  }

  .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;
  }

  .banner-icon li a img {
    width: 80px;
    height: 80px;
  }

  .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;
  }

  .package-sub-heading span {
    font-size: 20px;
  }

  .package-sub-heading p {
    font-size: 13px;
  }

  .temple-name::before {
    display: block;
  }

  .temple-name::after {
    display: block;
  }
}

@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;
  }
}

.float {
  position: fixed;
  bottom: 24px;
  right: 9px;
  text-align: center;
  z-index: 100;
}

.float img {
  height: 55px;
  width: 55px;
}

.contact-info-area .title {
  font-size: 24px;
  text-align: center;
  padding: 18px 0px;
  background-color: var(--theme-color);
  color: #fff;
  font-weight: 600;
  position: relative;
  /* border-radius: 10px 10px 100px 100px; */
  font-family: var(--font-family);
  margin: 0;
}

.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;
  position: absolute;
  left: 19%;
  top: 8px;
}

.contact-img-wrap img {
  width: 30px;
  height: 30px;
}

#contact-form .form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: var(--theme-color) !important;
  outline: 0;
  box-shadow: none !important;
}

#front-form1 .form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: var(--theme-color) !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);
}

@media (max-width: 991.98px) {
  #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(--theme-color) 05;
    border-radius: 5px;
    margin-top: 40px;
    margin-bottom: 25px;
  }

  .temple-name span {
    font-size: 20px;
  }

  .time-table h3 {
    font-size: 18px;
  }

  .time-table ul li span {
    font-size: 15px;
  }
}

@media screen and (min-width: 1023.98px) and (max-width: 1199.98px) {
  .description {
    padding: 15px;
  }

  .description p {
    font-size: 14px;
  }
}

@media screen and (max-width: 991.98px) {
  .author-meta {
    left: 0;
    width: 50%;
    margin: auto;
    top: -30px;
  }

  .description {
    height: 13rem;
  }


  .sticky-wrap {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767.98px) {

  footer {
    padding: 40px 0px 0px 0px;
  }

  #home-packages .card a:last-child {
    margin: 0;
  }

  .amount span:nth-child(1) {
    font-size: 16px;
  }

  .braj-image {
    position: static !important;
    margin-bottom: 20px;
  }

  .braj-content {
    padding: 32px 22px !important;
    text-align: justify;
  }

  .braj-content .btn-wrapper a {
    font-size: 13px;
  }

  .single-counterup-item {
    margin-top: 10px;
  }

  .home-about-img {
    position: static !important;
    margin-bottom: 20px;
  }

  .home-about-content {
    padding: 40px 28px !important;
  }

  .home-about-content .btn-wrapper a {
    font-size: 13px;
  }
}

@media screen and (max-width: 480.98px) {
  .author-meta {
    position: relative;
    top: -54px;
    width: 80%;
  }

  .single-testimonial-item {
    margin-bottom: 8px;
  }

  .description {
    height: 18rem;
  }
}

@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 {
    font-size: 21px;
    padding-left: 23px;
  }

  .travel-img {
    width: 45px;
    height: 45px;
    left: 52px;
  }

  .contact-img {
    top: 9px;
    width: 45px;
    height: 45px;
    left: 20px;
  }

  .blog-heading {
    font-size: 14px;
  }
}

@media screen and (max-width: 767.98px) {
  .yatra-card-head .price {
    width: fit-content;
  }

  .contact-info-area .title {
    font-size: 21px;
    /* padding-left: 23px; */
  }

  .yatra-nav .nav li button {
    padding: 5px 20px;
    font-size: 16px;
  }

  .blog-heading {
    font-size: 16px;
  }

  .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;
  }
}

.tab-content {
  position: relative;
  height: 500px;
}

@media screen and (min-width: 1400.98px) {
  .tab-content {
    position: relative;
    height: 400px;
  }
}


@media screen and (max-width: 991.98px) {

  footer .footer-info img {
    width: 100px;
    margin-bottom: 30px;
  }

  .number span {
    font-size: 24px;
  }

  .tab-content {
    height: 400px;
  }

  .link-wrap {
    justify-content: center;
  }

  .page-link {
    text-align: center;
    flex-grow: 1;
  }

  .pay-line {
    font-size: 14px;
  }
}

@media screen and (max-width: 700.98px) {
  .tab-content {
    height: 400px;
  }
}

@media screen and (max-width: 600.98px) {
  .tab-content {
    height: 400px;
  }

  .yatra-nav .nav li button {
    font-size: 16px;
  }

  .yatra-nav .nav li {
    margin: 0px 6px;
  }

  .why-us-img {
    border: none;
    box-shadow: none;
  }

  footer .footer-info img {
    width: 100px;
  }

  .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(--theme-color);
    z-index: -1;
  }
}

@media screen and (max-width:576.98px) {
  .book-box {
    width: 60%;
    margin: 20px auto;
  }

  .inclusion-icons .inclusion-icons-heading {
    margin-left: 40px;

  }
}

@media screen and (max-width: 500.98px) {
  .yatra-nav .nav li button {
    font-size: 15px;
  }

  .inclusion-icons ul li {
    width: 8rem;
  }


}

@media screen and (max-width: 460.98px) {

  .book-box {
    width: 70%;
    margin: 20px auto;
  }

  .tab-content {
    height: 400px;
  }

  .yatra-nav .nav li button {
    font-size: 14px;
    padding: 5px 6px;
  }

  .number span {
    font-size: 18px;
  }

  .banner-icon li {
    width: 45px;
    height: 45px;
    margin: 0px 17px;
  }

  .banner-icon li a i {
    font-size: 15px;
  }

  .why-us-heading {
    font-size: 16px;
  }

  p {
    font-size: 13px;
  }

  .pay-line {
    font-size: 12px;
  }

  .yatra-card-head .price {
    position: absolute;
    top: -49px;
    right: 15px;
    border-radius: 10px 0px 10px 0px;
  }

  .yatra-heading a {
    font-size: 16px;
  }

}

.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;
}

input[type="date"] {
  text-transform: uppercase;
}

/* 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;
}

@media screen and (max-width:1199.98px) {
  .form-display {
    display: none;
  }
}

@media screen and (min-width:1199.98px) {
  .form-display-2 {
    display: none;
  }
}

/* thanku-wrap */

/* thumbnail */
.thumbnail {
  position: relative;
  overflow: hidden;
}

.thumbnail iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}