@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: 1.875rem;
  color: #03203c;
  font-weight: 700;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

p {
  font-size: 0.875rem;
}

.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-small {
  background-color: #601c4b;
  border: 1px solid #601c4b;
  color: #fcc300;
  white-space: nowrap;
  padding: 10px 20px;
}

.btn-all {
  background-color: #03203c;
  border: 1px solid #03203c;
  padding: 8px 20px;
  border-radius: 20px;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}

.btn-all:hover {
  background-color: transparent;
  color: #03203c;
}

.btn_secondary {
  background-color: #fff;
  border: 1px solid #fff;
  padding: 10px 20px;
  border-radius: 20px;
  color: #03203c;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}

.btn_secondary:hover {
  background-color: #fcc300;
  color: #fff;
}

.bottomBorder {
  position: relative;
}

.bottomBorder:after {
  position: absolute;
  width: 20px;
  height: 6px;
  /* background-color: #03203c; */
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 100%;
  border-radius: 6px;
}

.flex {
  /* display: -webkit-box;
  display: -ms-flexbox; */
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header {
  padding: 2px 20px;
  z-index: 9;
  position: absolute;
  width: 100%;
}

header p {
  color: #fff;
}

header ul li {
  display: inline-block;
  padding: 10px;
}

header ul li a {
  color: #fff;
}

header ul li a:hover {
  color: #fcc300;
}

.mobile_menu {
  position: absolute;
  right: 20px;
  top: 33px;
  display: none;
}

.mobile_menu .bar {
  width: 20px;
  height: 2px;
  background-color: #fff;
}

.hero-section {
  position: relative;
}

.hero-section .banner {
  position: relative;
  overflow: hidden;
}

.hero-section .banner .color-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  top: 0;
}

.hero-section img {
  width: 100%;
}

.hero-section .hero-cont .hero-title {
  text-align: center;
  position: absolute;
  width: 100%;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
}

.hero-section .hero-cont h1 {
  font-size: 3.75rem;
  color: #fff;
  font-weight: 800;
}

.hero-section:after {
  position: absolute;
  bottom: -4px;
  right: 10%;
  content: "";
  z-index: 0;
  /* background: url(../../assets/images/treknew.png) no-repeat; */
  background-position: right;
  background-size: contain;
  width: 200px;
  height: 50%;
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}

.mysearch {
  position: absolute;
  right: 235px;
  top: 33px;
}

.mysearch i {
  color: #fff;
}

.mysearch i.active-icon {
  z-index: 20;
}

.mysearch #search .form-control {
  position: absolute;
  right: -6px;
  top: -12px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(0);
          transform: scale(0);
  height: 40px;
  width: 200px;
  background-color: #424343;
  border: none;
  color: #fff;
}

.mysearch #search .form-control.active-search {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.trip_plan {
  background-color: #601c4b;
}

.trip_plan h1 {
  font-style: italic;
  color: #fff;
}

.category .box {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.category .box:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 30%;
  left: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(rgba(0, 0, 0, 0.2)), color-stop(rgba(0, 0, 0, 0.4)), color-stop(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.9)));
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
}

.category .box img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.category .box:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.category .box:hover .explore {
  opacity: 1;
  visibility: visible;
}

.category .box .category-title {
  width: 100%;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  z-index: 1;
}

.category .box .category-title h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffff;
}

.category .box .explore {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.category .box .explore a {
  color: #fff;
  text-decoration: underline;
}

.category .popular {
  position: relative;
}

.category .popular .owl-nav {
  overflow: hidden;
  height: 0px;
}

.popular .owl-prev.disabled,
.popular .owl-next.disabled {
  pointer-events: none;
  opacity: 0.2;
}

.nav-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0 10px;
  border-radius: 50%;
  border: 1px solid #191919;
  background: #191919;
  color: #fff;
  font-size: 24px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.nav-btn:hover {
  background-color: #ffffff;
  color: #191919;
}

.prev-slide {
  left: 0;
}

.next-slide {
  right: 0;
}

.about-us {
  background-color: #f5f5f5;
}

.about-us .about-img {
  width: 400px;
  height: 340px;
  border: 4px solid #601c4b;
  position: relative;
}

.about-us .about-img img {
  margin-left: 15px;
  margin-top: 15px;
  width: 400px;
}

.about-us p {
  text-align: justify;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
  display: -webkit-box;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
}

.about-us h1 {
  position: relative;
}

.about-us h1:after {
  position: absolute;
  content: "";
  left: 0;
  top: 100%;
  width: 20px;
  height: 6px;
  /* background: #03203c; */
  border-radius: 6px;
}

.about-us .about-cont .img {
  display: none;
  width: 400px;
  height: 340px;
  border: 4px solid #601c4b;
  position: relative;
}

.about-us .about-cont .img img {
  margin-left: 10px;
  margin-top: 10px;
  width: 100%;
  height: 100%;
  position: absolute;
}

.featured-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.featured-grid .box {
  -webkit-box-shadow: 1px 1px 2px 1px #ccc;
          box-shadow: 1px 1px 2px 1px #ccc;
  border-radius: 6px;
}

.featured-grid .box img {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.featured-grid .box .inner-box {
  position: relative;
}

.featured-grid .box .inner-box .price {
  position: absolute;
  right: 0;
  bottom: 5px;
  background-color: rgba(3, 32, 60, 0.9);
  color: #ffff;
  padding: 5px 10px;
}

.featured-grid .box .inner-box .price small {
  font-size: 12px;
  color: #747373;
}

.featured-grid .box .inner-box .price span {
  font-weight: 600;
}

.featured-grid .box .inner-box .days {
  position: absolute;
  top: -4px;
  right: 10px;
  background-color: #601c4b;
  color: #fff;
}

.featured-grid .box .inner-box .days span {
  padding: 1px 5px;
}

.featured-grid .box .inner-box .days .before {
  position: relative;
}

.featured-grid .box .inner-box .days .before:before {
  position: absolute;
  width: 0;
  top: -6px;
  left: -5px;
  z-index: -1;
  content: "";
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #191919 transparent;
}

.featured-grid .box .trek-title {
  padding: 10px;
}

.featured-grid .box a {
  color: #03203c;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.featured-grid .box a:hover {
  color: #fcc300;
}

.featured-grid.all-tours {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
}

.featured-cont {
  position: -webkit-sticky;
  position: sticky;
  top: 10px;
  background: linear-gradient(145deg, #cccccc, #ffff);
  -webkit-box-shadow: 2px 2px 2px #cccccc, 2px -4px 2px #fff;
          box-shadow: 2px 2px 2px #cccccc, 2px -4px 2px #fff;
  padding: 10px;
  border-radius: 8px;
}

.featured-cont p {
  text-align: justify;
}

.why-himalaya {
  background: url(../../assets/images/annapurna-sanctuary-1045.jpg) center/cover;
  background-attachment: fixed;
}

.why-himalaya .why-choose {
  background-color: rgba(0, 0, 0, 0.8);
}

.why-himalaya h1 {
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}

.why-himalaya .img {
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 50%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.why-himalaya img {
  width: 30px;
}

.why-himalaya h5 {
  color: #fff;
  margin-top: 5px;
  font-size: 1.125rem;
}

.testimonials .slider-box {
  max-width: 600px;
  margin: 0 auto;
}

.testimonials .box {
  max-width: 600px;
  margin: 50px 0 70px 37px;
  background-color: #601c4b;
  color: #fff;
  padding: 60px 20px;
  position: relative;
}

.testimonials .box:after {
  content: "";
  background: url(../../assets/images/icons/quote.png) center no-repeat;
  background-size: contain;
  width: 60%;
  height: 80%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0.3;
}

.testimonials .box .img {
  position: absolute;
  right: 0;
  bottom: -64px;
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 50%;
  border: 4px solid #601c4b;
  padding: 4px;
  background-color: #fcc300;
}

.testimonials .box .img img {
  border-radius: 50%;
}

.testimonials .box .client {
  background-color: #03203c;
  position: absolute;
  top: -30px;
  left: -35px;
}

.testimonials .box .client .name-rate {
  position: relative;
  padding: 10px 15px 10px 40px;
}

.testimonials .box .client .name-rate:before {
  position: absolute;
  width: 0;
  content: "";
  left: -60px;
  top: -1px;
  border-width: 60px;
  border-style: solid;
  border-color: #03203c transparent transparent transparent;
  z-index: -1;
  -webkit-transform: rotate(110deg);
          transform: rotate(110deg);
}

.testimonials .box .client .name-rate h5 {
  font-size: 1rem;
  margin-bottom: -4px;
}

.testimonials .box .client .name-rate i {
  font-size: 10px;
  color: #fcc300;
}

.testimonials .nav-btn {
  border: 1px solid #03203c;
  background: transparent;
  color: #03203c;
}

.testimonials .nav-btn:hover {
  background-color: #03203c;
  color: #fff;
}

.destinations {
  background-color: #f5f5f5;
}

.destinations .category .category-title h3 {
  font-size: 1.875rem;
  font-style: italic;
  /* text-transform: uppercase; */
  font-family: "Playfair Display", serif;
}

.destinations .category .category-title h6 {
  font-size: 0.75rem;
  color: #fff;
}

footer {
  background-color: #03203c;
  color: #ffff;
}

footer a {
  color: #fff;
}

footer a:hover {
  color: #fcc300;
}

footer ul li {
  color: #fff;
  line-height: 1.7;
}

footer ul li a {
  color: #ffff;
  font-size: 0.875rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

footer ul li a:hover {
  color: #fcc300;
}

footer .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  gap: 10px;
}

footer .social i {
  font-size: 1.25rem;
  border: 1px solid #fff;
  border-radius: 50%;
}

footer .social i:hover {
  border: 1px solid #fcc300;
}

footer .social .fa-facebook-f {
  padding: 7px 11px;
}

footer .social .fa-linkedin-in {
  padding: 7px 7.8px;
}

footer .social .fa-instagram {
  padding: 7px 8px;
}

footer .social .fa-twitter {
  padding: 7px 6.8px;
}

footer h5 {
  margin-bottom: 15px;
}

footer .footer-bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}

.filter select {
  font-size: 0.875rem;
}

.holidays_details #tabs #overview p {
  text-align: justify;
}

.holidays_details .all_info ul li {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.5;
}

.holidays_details .all_info ul li:before {
  position: absolute;
  left: -25px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f058";
  padding-right: 10px;
  color: #35bdd0;
}

.holidays_details .all_info h4 {
  font-size: 1.25rem;
  color: #e07c24;
  font-weight: 700;
}

.holidays_details .all_info h4:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f03a";
  margin-right: 10px;
}

.holidays_details .all_info h5 {
  font-size: 1rem;
  color: #0b4053;
  font-weight: 600;
}

.holidays_details .all_info .border-t {
  border-top: 1.2px solid #fcc300;
  padding: 20px 0;
}

.holidays_details .all_info .shortview .short_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto;
      grid-template-columns: auto auto auto;
  gap: 30px;
}

.holidays_details .all_info .shortview .short_grid .box h6 {
  font-size: 12px;
}

.holidays_details .all_info .shortview .short_grid .box h5 {
  font-size: 0.875rem;
  color: #000000;
}

.holidays_details .all_info .shortview .short_grid .box img {
  width: 40px;
}

.holidays_details .mobile-trip h6 {
  font-size: 0.875rem;
}

.holidays_details .mobile-trip p {
  font-size: 0.8rem;
  margin-bottom: 0;
  font-weight: 500;
}

.holidays_details .mobile-trip p del {
  opacity: 0.4;
}

.holidays_details .mobile-trip p small {
  font-weight: 600;
  font-size: 1rem;
}

.holidays_details .mobile-trip .border-bottom {
  padding: 8px 0px 5px 0;
}

.holidays_details .mobile-trip .bookOpen {
  color: #00d84a;
}

.holidays_details .mobile-trip .gar {
  color: #b01376;
}

.holidays_details .mobile-trip .bold-border {
  border-bottom: 2px solid #dabccf;
  padding-bottom: 20px;
}

.holidays_details .mobile-trip .btn-book {
  padding: 4px 15px;
  font-weight: 400;
}

.holidays_details .holiday_right {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
}

.holidays_details .holiday_right .box {
  border: 1px solid #601c4b;
}

.holidays_details .holiday_right .box p {
  padding: 20px 10px;
}

.holidays_details .holiday_right .box .days {
  font-weight: 600;
  font-size: 1.125rem;
}

.holidays_details .holiday_right .box .cp {
  font-size: 1.25rem;
  font-weight: 700;
  color: #601c4b;
}

.holidays_details .holiday_right .box sup {
  font-size: 12px;
}

.holidays_details .holiday_right .box .save {
  font-size: 12px;
  background-color: #03203c;
  color: #fff;
  padding: 4px 8px;
  border-radius: 2px;
}

.holidays_details .holiday_right .box .offer_box {
  background-color: #f1f1f1;
  padding: 10px 15px;
}

.holidays_details .holiday_right .box .offer_box h4 {
  font-size: 1.125rem;
  color: #601c4b;
}

.holidays_details .holiday_right .box .offer_box .head {
  border-bottom: 2px solid #fcc300;
  font-size: 12px;
  font-weight: 700;
  padding-bottom: 8px;
}

.holidays_details .holiday_right .box .offer_box .paxes {
  margin-top: 10px;
  font-size: 13px;
}

.holidays_details .holiday_right .box .dots {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-top: 1px dashed #000;
  margin: 0 4px;
}

.holidays_details .holiday_right .box .info {
  background-color: #03203c;
  padding: 10px 0;
}

.holidays_details .holiday_right .box .info ul li {
  position: relative;
  font-size: 0.875rem;
  color: #fff;
}

.holidays_details .holiday_right .box .info ul li:before {
  left: -20px;
  top: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f058";
  position: absolute;
}

.holidays_details .holiday_right .box .enquire {
  margin: 20px 0 30px 0;
}
.holidays_details #reviews .modal {
    z-index: 99999;
}

.holidays_details #reviews button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.holidays_details #reviews .addreview {
    background-color: #fbc251;
    color: #6a1b4d;
    width: 100%;
}

.holidays_details #reviews .addreview:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.holidays_details #reviews .modal-header {
    background-color: #6a1b4d;
    color: #fbc251;
}

.holidays_details #reviews .modal-content {
    border: none;
}

.holidays_details #reviews .modal-content .rating {
    position: relative;
    width: 180px;
    background: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.3em;
    padding: 5px;
    overflow: hidden;
}

.holidays_details #reviews .modal-content .rating__result {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateY(-10px) translateX(-5px);
    transform: translateY(-10px) translateX(-5px);
    z-index: -9;
    font: 3em Arial, Helvetica, sans-serif;
    color: #ebebeb8e;
    pointer-events: none;
}

.holidays_details #reviews .modal-content .rating__star {
    font-size: 1.3em;
    cursor: pointer;
    color: #dabd18b2;
    -webkit-transition: -webkit-filter linear 0.3s;
    transition: -webkit-filter linear 0.3s;
    transition: filter linear 0.3s;
    transition: filter linear 0.3s, -webkit-filter linear 0.3s;
}

.holidays_details #reviews .modal-content .rating__star:hover {
    -webkit-filter: drop-shadow(1px 1px 4px gold);
    filter: drop-shadow(1px 1px 4px gold);
}

.holidays_details #reviews .modal-content .btn-submit {
    background-color: #6a1b4d;
    color: #fbc251;
}

.holidays_details #reviews .modal-content .btn-cancel {
    background-color: #fbc251;
    color: #6a1b4d;
}

.holidays_details #reviews .modal-content .btn-close {
    color: #fff !important;
    background: none;
    font-size: 30px;
}

.holidays_details #reviews .modal-content label,
.holidays_details #reviews .modal-content input::-webkit-input-placeholder {
    font-size: 14px;
}

.holidays_details #reviews .modal-content label,
.holidays_details #reviews .modal-content input:-ms-input-placeholder {
    font-size: 14px;
}

.holidays_details #reviews .modal-content label,
.holidays_details #reviews .modal-content input::-ms-input-placeholder {
    font-size: 14px;
}

.holidays_details #reviews .modal-content label,
.holidays_details #reviews .modal-content input::placeholder {
    font-size: 14px;
}

.holidays_details #reviews .client-review {
    margin-top: 20px;
}

.holidays_details #reviews .client-review .box {
    -webkit-box-shadow: 0px 2px 2px #1b1057;
    box-shadow: 0px 2px 2px #151957;
    padding: 10px;
}

.holidays_details #reviews .client-review .box img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.holidays_details #reviews .client-review .box h6 {
    text-transform: capitalize;
    position: relative;
    font-size: 16px;
}

.holidays_details #reviews .client-review .box p {
    font-size: 14px;
}

#gallery .gallery-grid {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

#gallery .gallery-grid .gallery-box {
  position: relative;
}

#gallery .gallery-grid .gallery-box img {
  cursor: pointer;
  width: 100%;
}

#gallery .gallery-grid .gallery-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  z-index: 3;
  padding: 20px;
}

#gallery .gallery-grid .gallery-overlay.open {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
}

#gallery .gallery-grid .gallery-overlay__inner {
  max-width: 1000px;
  position: relative;
  opacity: 1;
}

#gallery .gallery-grid .gallery-overlay__inner img {
  width: 100%;
}

.itierary {
  position: relative;
}

.itierary:before {
  position: absolute;
  width: 2px;
  height: 100%;
  content: "";
  border-left: 2px dotted #03203c;
  left: 30px;
  z-index: -1;
}

.itierary h5 {
  background-color: #03203c;
  color: #fff !important;
  border-radius: 20px;
  text-transform: uppercase;
  font-size: 0.875rem !important;
  font-weight: 700;
  width: 60px;
  text-align: center;
  padding: 5px 0;
}

.itierary .days_info h6 {
  font-size: 1.125rem;
}

.itierary .days_info p {
  font-size: 0.875rem;
  text-align: justify;
}

.itierary .days_info .days_info-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.itierary .days_info .days_info-more img {
  width: 30px;
}

.itierary .days_info .days_info-more h6 {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
}

.itierary .days_info .days_info-more p {
  font-size: 12px;
}

.itierary > .d-flex {
  margin-top: 20px;
}

.team-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-grid img {
  border: 2px solid #fcc300;
}

.contact-us a {
  color: #000;
}

.contact-us i {
  border: 1px solid #03203c;
  border-radius: 50%;
  padding: 5px;
  color: #03203c;
}

.our-team p {
  text-align: justify;
}

.our-team .member {
  margin-bottom: 60px;
}

.our-team .member .team-img {
  position: -webkit-sticky;
  position: sticky;
  top: 10px;
  bottom: 10px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px dashed #03203c;
}

.our-team .member .team-img img {
  border-radius: 50%;
  margin-bottom: 10px;
}

.our-team .member h5 {
  color: #03203c;
  font-size: 1.125rem;
}

.our-team .member h6 {
  font-size: 0.875rem;
  margin-top: -4px;
  color: rgba(92, 92, 92, 0.8);
}

.our-team .d-flex {
  border-bottom: 1px solid #eeeeee;
}

.our-team .d-flex:last-child {
  border: none;
}

.guide .destinations .category .category-title h3 {
  font-size: 1.25rem;
  font-style: normal;
  text-transform: capitalize;
  font-family: "Playfair Display", serif;
}

.guide .about-nepal {
  position: -webkit-sticky;
  position: sticky;
  top: 10px;
  background: linear-gradient(145deg, #cccccc, #ffff);
  -webkit-box-shadow: 2px 2px 2px #cccccc, 2px -4px 2px #fff;
          box-shadow: 2px 2px 2px #cccccc, 2px -4px 2px #fff;
  padding: 10px;
  border-radius: 8px;
}

.guide p {
  text-align: justify;
}

.practical-info {
  padding: 10px 10px 20px 10px;
  background-color: #eeeeee;
  margin-top: -4px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.practical-info .title {
  color: #03203c;
  font-size: 1.125rem;
}

.practical-info .title:hover {
  color: #fcc300;
}

.practical-info p {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.875rem;
}

.related-info {
  position: -webkit-sticky;
  position: sticky;
  top: 10px;
  border-left: 1px solid #cccc;
  padding: 10px;
}

.related-info a {
  color: #03203c;
  font-size: 0.875rem;
}

.related-info a:hover {
  color: #fcc300;
}

.blog-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-grid .blog-info {
  background-color: #eeee;
}

.blog-grid .blog-info h5 {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.blog-grid .blog-info h5:after {
  content: "";
  width: 60px;
  height: 2px;
  background-color: #fcc300;
  position: absolute;
  left: 0;
  top: 100%;
}

.blog-grid .blog-info h5 a {
  color: #03203c;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 1.125rem;
}

.blog-grid .blog-info h5 a:hover {
  color: #fcc300;
}

.blog-grid .blog-info p {
  font-size: 0.875rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  overflow: hidden;
  text-align: justify;
}

.faqs .custom_accordion {
  background-color: transparent;
  border-top: 1px solid #cccccc;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.faqs .active,
.faqs .custom_accordion:hover {
  color: #03203c;
}

.faqs .custom_accordion:after {
  content: "\002B";
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.faqs .active:after {
  content: "\2212";
}

.faqs .custom_panel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  border-bottom: 1px solid #cccc;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
}

.faqs .custom_panel p {
  font-size: 0.875rem;
}

.why-choose-us h5 {
  position: relative;
  padding-left: 30px;
  color: #03203c;
}

.why-choose-us h5:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f03a";
  position: absolute;
  left: 0;
}

.why-choose-us p {
  font-size: 0.875rem;
  text-align: justify;
}

.login .card {
  max-width: 400px;
  margin: 0 auto;
  padding: 10px;
}

.login .card img {
  width: 100px;
  height: 100px;
}

.login p,
.login input,
.login textarea {
  font-size: 0.875rem;
}

.login .enquiry-box {
  max-width: 500px;
  margin: 0 auto;
}

.enquiry_details label,
.enquiry_details input {
  font-size: 0.875rem;
}

.price_calculation label {
  font-size: 0.875rem !important;
}

.price_calculation #minus,
.price_calculation #plus {
  border: 1px solid #03203c;
  background-color: #03203c;
  color: #fff;
  padding: 0 15px;
}

.price_calculation #minus {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.price_calculation #plus {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.price_calculation input {
  font-size: 1.125rem;
}

.price_calculation #quantity {
  text-align: center;
  width: 60px;
  border-radius: 0;
  padding: 2px;
  border: 1px solid #601c4b;
}

.price_calculation .number_grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.price_calculation #total-price {
  width: 100%;
  text-align: right;
  border: none;
  background-color: transparent;
  padding: 0;
}

.price_calculation .flexed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.plan-trip form {
  max-width: 700px;
  margin: 0 auto;
}

.plan-trip h6 {
  font-size: 1.125rem;
  background-color: #03203c;
  color: #fff;
  padding: 6px 0;
}

.plan-trip label {
  font-weight: 600;
}

.plan-trip label,
.plan-trip select,
.plan-trip input {
  font-size: 0.875rem;
}

.plan-trip select.form-control {
  width: 100px;
}

.plan-trip .date .form-control {
  width: 150px;
}

.plan-trip #group-member .form-control,
.plan-trip .du .form-control {
  width: 60px;
}

.plan-trip .info .form-control {
  width: 100%;
}

.plan-trip .tourtype label {
  font-weight: normal;
}

.plan-trip .tourtype p {
  font-size: 0.75rem;
  opacity: 0.8;
  margin: 0;
}

.plan-trip .budget .form-control {
  width: 100%;
}

#topBtn {
    display: none;
        position: fixed;
        bottom: 20px;
        right: 30px;
        z-index: 99;
        font-size: 14px;
        border: none;
        outline: none;
        background-color: red;
        color: white;
        cursor: pointer;
        padding: 4px 8px;
        border-radius: 4px;
}

@media (max-width: 1250px) {
  .hero-section .hero-cont h1 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero-section .hero-cont h1 {
    font-size: 2.5rem;
  }
  .hero-section .logo img {
    width: 200px;
  }
  .hero-section .banner.inner-banner img {
    height: 265px;
    width: auto;
  }
  .mysearch {
    right: 60px;
  }
  .right-menu {
    margin-top: -10px;
  }
  .mobile_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3px;
  }
  .mobile_menu.is-active > .bar {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .mobile_menu.is-active > .bar:nth-child(1) {
    -webkit-transform: rotate(45deg) translateX(6.5px);
            transform: rotate(45deg) translateX(6.5px);
  }
  .mobile_menu.is-active > .bar:nth-child(3) {
    -webkit-transform: rotate(-45deg) translateX(6.5px);
            transform: rotate(-45deg) translateX(6.5px);
  }
  .mobile_menu.is-active > .bar:nth-child(2) {
    visibility: hidden;
    opacity: 0;
  }
  .flex {
    padding: 10px 20px;
    background-color: #03203c;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    left: -100%;
    position: absolute;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .flex .phone-number {
    display: none;
  }
  .flex ul li {
    display: block;
  }
  .flex.active {
    left: 0;
  }
  .featured-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .featured-grid.all-tours {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
  .holidays_details .all_info .shortview .short_grid {
    -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
  }
}

@media (max-width: 830px) {
  .hero-section .banner img {
    height: 332px;
    width: auto;
  }
  .hero-section .hero-cont h1 {
    font-size: 2rem;
  }
  .hero-section .hero-cont h3 {
    font-size: 1.25rem;
  }
  .hero-section .search-form {
    width: 400px;
  }
  .about-us .about-img {
    width: 300px;
    height: 250px;
  }
  .about-us .about-img img {
    width: 300px;
  }
}

@media (max-width: 767.5px) {
  .related-info {
    border-left: none;
    border-top: 1px solid #cccc;
  }
}

@media (max-width: 750px) {
  .featured-grid {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
  }
  .featured-grid.all-tours {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .why-himalaya h1 {
    font-size: 1.5625rem;
  }
}

@media (max-width: 600px) {
  .about-us .about-img {
    display: none;
  }
  .about-us .about-cont .img {
    display: block;
  }
  .about-us .about-cont p {
    margin-top: 30px;
  }
  .about-us .about-cont h1 {
    margin-bottom: 20px;
    text-align: center;
  }
  .about-us .about-cont h1:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .testimonials .box:after {
    width: 40%;
    height: 50%;
  }
  .team-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 500px) and (max-width: 575.5px) {
  .featured-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-himalaya .box h5 {
    position: relative;
  }
  .why-himalaya .box h5:after {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #fcc300;
    border-radius: 50%;
    content: "";
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 100%;
  }
}

@media (max-width: 500px) {
  .hero-section .hero-cont h1 {
    font-size: 1.25rem;
  }
  .hero-section .hero-cont h3 {
    font-size: 0.875rem;
  }
  .why-himalaya h1 {
    font-size: 1.25rem;
  }
  .why-himalaya h5 {
    font-size: 1rem;
  }
  .featured-grid.all-tours {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
  }
  .featured-grid .trek-title h5 {
    font-size: 1.125rem;
  }
  .holidays_details .all_info .shortview .short_grid {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
  }
  #gallery .gallery-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 450px) {
  .hero-section .search-form {
    width: 90%;
  }
  .hero-section .search-form .form-control {
    border-radius: 20px;
    padding: 6px 10px;
  }
  .btn-small {
    padding: 6px 20px;
  }
  .about-us .about-cont .img {
    width: 300px;
    height: 250px;
  }
  .our-team .member {
    margin-bottom: 20px;
  }
  .our-team .d-flex {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 350px) {
  .about-us .about-cont .img {
    width: 200px;
    height: 150px;
  }
}
/*# sourceMappingURL=style.css.map */
