/*--
Author: W3layouts
Author URL: http://w3layouts.com
License: Creative Commons Attribution 3.0 Unported
License URL: http://creativecommons.org/licenses/by/3.0/
--*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --bg-color: #fdfdfd;
  --text-color: #333;
  --main-color: #ff5f00;
  --white-color: #fdfdfd;
  --shadow-color: rgba(0, 0, 0, 0.2);
}

html,
body {
  margin: 0;
  font-size: 100%;
  background: #fff;
  font-family: "Raleway", sans-serif;
}

html {
  scroll-behavior: smooth;
}
body a {
  text-decoration: none;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
  font-family: "Open Sans", sans-serif;
}

body img {
  max-width: 100%;
}

a:hover {
  text-decoration: none;
}

input[type="button"],
input[type="submit"],
input[type="text"],
input[type="email"],
input[type="search"] {
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #323648;
}
li {
  list-style-type: none;
}

p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8em;
  letter-spacing: 1px;
  color: #707579;
  font-family: "Open Sans", sans-serif;
}

ul {
  margin: 0;
  padding: 0;
}

/*-- header --*/

header {
  position: absolute;
  z-index: 9;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.toggle,
[id^="drop"] {
  display: none;
}

/* Giving a background-color to the nav container. */
nav {
  margin: 0;
  padding: 0;
  position: sticky;
  transition: 0.5s;
}

#logo a {
  float: left;
  font-size: 0.7em;
  display: initial;
  margin: 0;
  letter-spacing: 1px;
  color: #fff;
  padding: 0px 0;
  border: none;
  font-family: "Raleway", sans-serif;
}
#logo a span.fa {
  color: #fff;
}

#logo a span {
  font-weight: 500;
}

.logo-outer {
  padding: 5px;
  border: 2px solid var(--bg-color);
}

.logo-outer::before {
  content: "";
  position: absolute;
  background-color: var(--main-color);
}

.scrolled {
  color: black;
}

.logo-inner-left {
  color: #fff;
}

.logo-inner-right {
  background-color: var(--main-color);
  padding: 5px;
}
/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
  content: "";
  display: table;
  clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
  float: right;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

/* Positioning the navigation items inline */
nav ul li {
  margin: 0px;
  display: flex;
  float: left;
}

/* Styling the links */
nav a {
  color: #ddd;
  text-transform: capitalize;
  letter-spacing: 1px;
  padding-left: 0;
  padding-right: 0;
  padding: 10px 13px;
  font-weight: 600;
  font-size: 16px;
  vertical-align: middle;
}
nav li.booking a {
  border: 2px solid #fff;
  padding: 10px 25px;
  display: block;
  margin-top: 0;
  margin-left: 20px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
  font-size: 14px;
}

nav li.booking a.scrolled {
  border: 2px solid var(--main-color);
}

nav ul li ul li:hover {
  background: #f8f9fa;
}

/* Background color change on Hover */
nav a:hover {
  color: #ddd;
}
.menu li.active a {
  color: #000;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
  display: none;
  position: absolute;
  /* has to be the same number as the "line-height" of "nav a" */
  top: 30px;
  background: #fff;
  padding: 10px;
}

/* Display Dropdowns on Hover */
nav ul li:hover > ul {
  display: inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
  width: 170px;
  float: none;
  display: list-item;
  position: relative;
}
nav ul ul li a {
  color: #333;
  padding: 5px 10px;
  display: block;
}
/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
  position: relative;
  top: -60px;
  /* has to be the same number as the "width" of "nav ul ul li" */
  left: 170px;
}

/* Change ' +' in order to change the Dropdown symbol */
li > a:only-child:after {
  content: "";
}

.container-fluid.sticky-top {
  background: var(--main-color);
  transition: background 0.3s ease, color 0.3s ease;
}

.container-fluid.sticky-top.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
  box-shadow: 5px 0 10px var(--main-color);
}

.container-fluid.sticky-top.scrolled .menu li.active a {
  color: var(--main-color);
}

.container-fluid.sticky-top.scrolled .menu li a {
  color: #000;
}

.container-fluid.sticky-top.scrolled nav li.booking a {
  border: 1px solid var(--main-color);
}

.container-fluid.sticky-top.scrolled .logo-inner-left {
  color: var(--main-color);
}

.container-fluid.sticky-top.scrolled .logo-outer {
  border: 2px solid var(--main-color);
}

.container-fluid.sticky-top.scrolled #logo a span.fa {
  color: var(--main-color);
}

.menu li a {
  color: #fff;
  transition: color 0.3s ease;
}

/* Media Queries
--------------------------------------------- */

@media all and (max-width: 991px) {
  #logo {
    display: inline;
    padding: 0;
    width: 100%;
    text-align: center;
    float: none;
  }
  .menu li.active a {
    color: var(--main-color);
  }

  .menu li a {
    color: #000;
  }

  nav ul li span {
    color: #000;
  }
  nav {
    margin: 0;
  }
  nav a {
    color: #333;
  }

  /* Hide the navigation menu by default */
  /* Also hide the  */
  .toggle + a,
  .menu {
    display: none;
  }

  /* Stylinf the toggle lable */
  .toggle {
    display: block;
    padding: 5px 15px;
    font-size: 20px;
    text-decoration: none;
    border: none;
    float: right;
    border: 1px solid #fff;
    color: #fff;
    margin-bottom: 0;
  }
  .menu .toggle {
    float: none;
    text-align: center;
    margin: auto;
    width: 30%;
    padding: 5px;
    font-weight: normal;
    font-size: 15px;
    letter-spacing: 1px;
  }

  .toggle:hover {
    color: #fff;
    border: none;
  }

  .container-fluid.sticky-top.scrolled .toggle {
    border: 1px solid var(--main-color);
    color: var(--main-color);
  }

  /* Display Dropdown when clicked on Parent Lable */
  [id^="drop"]:checked + ul {
    display: block;
    background: #fff;
    padding: 15px 0;
    width: 100%;
    text-align: center;
  }

  /* Change menu item's width to 100% */
  nav ul li {
    display: block;
    width: 100%;
    padding: 7px 0;
    color: #000;
  }
  nav a {
    padding: 5px 0;
  }
  nav a:hover {
    color: var(--main-color);
  }
  .login-icon {
    text-align: center;
  }
  nav ul ul .toggle,
  nav ul ul a {
    padding: 0 40px;
  }

  nav ul ul ul a {
    padding: 0 80px;
  }

  nav a:hover,
  nav ul ul ul a {
    background-color: transparent;
  }

  nav ul li ul li .toggle,
  nav ul ul a,
  nav ul ul ul a {
    padding: 14px 20px;
    color: #fff;
    font-size: 17px;
  }

  nav ul li ul li .toggle,
  nav ul ul a {
    background-color: #fff;
  }
  nav ul ul li a {
    font-size: 15px;
  }
  ul.inner-ul {
    padding: 0 !important;
  }
  /* Hide Dropdowns by Default */
  nav ul ul {
    float: none;
    position: static;
    color: #ffffff;
    /* has to be the same number as the "line-height" of "nav a" */
  }

  /* Hide menus on hover */
  nav ul ul li:hover > ul,
  nav ul li:hover > ul {
    display: none;
  }

  /* Fisrt Tier Dropdown */
  nav ul ul li {
    display: block;
    width: 100%;
    padding: 0;
  }

  nav ul ul ul li {
    position: static;
    /* has to be the same number as the "width" of "nav ul ul li" */
  }

  nav li.booking a {
    border: 2px solid var(--main-color);
    background-color: var(--main-color);
    color: var(--bg-color);
  }
  .logo-outer {
    padding: 5px;
  }

  .logo-outer::before {
    background-color: var(--main-color);
  }
}

@media all and (max-width: 768px) {
  * {
    text-align: center;
    align-items: center;
  }

  nav ul li {
    display: block;
    width: 90%;
  }

  .logo-outer {
    padding: 5px;
  }

  .logo-outer::before {
    background-color: var(--main-color);
  }

  .container-fluid.sticky-top {
    background: var(--main-color);
    transition: background 0.3s ease, color 0.3s ease;
  }

  .container-fluid.sticky-top.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2px);
    box-shadow: 5px 0 10px var(--main-color);
  }
}

@media all and (max-width: 330px) {
  * {
    text-align: center;
    align-items: center;
  }

  nav ul li {
    display: block;
    width: 94%;
  }

  .logo-outer {
    padding: 5px;
  }

  .logo-outer::before {
    background-color: var(--main-color);
  }
  .container-fluid.sticky-top {
    background: var(--main-color);
    transition: background 0.3s ease, color 0.3s ease;
  }

  .container-fluid.sticky-top.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2px);
    box-shadow: 5px 0 10px var(--main-color);
  }
}
.user span.fa {
  font-size: 25px;
  color: #fff;
}
/*-- //header --*/

/* banner style */
.banner_w3lspvt {
  position: relative;
  z-index: 1;
}

.banner-top {
  background: url(../images/banner1.jpg) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
}

.banner-top1 {
  background: url(../images/banner2.jpg) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
}

.banner-top2 {
  background: url(../images/banner3.jpg) no-repeat 0px 0px;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
}

.banner-top3 {
  background: url(../images/banner4.jpg) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
}

.w3layouts-banner-info {
  padding-top: 18em;
  max-width: 800px;
}

.w3layouts-banner-info h3 {
  text-shadow: 3px 4px 6px rgba(45, 45, 45, 0.15);
  font-size: 3.3em;
  letter-spacing: 1px;
  color: #fff;
  font-weight: 300;
  text-transform: capitalize;
  line-height: 68px;
}

.w3layouts-banner-info h4 {
  color: #eee;
  margin: 1em 0 1.5em;
  letter-spacing: 4px;
  text-transform: capitalize;
  font-weight: 200;
}
.w3layouts-banner-info a.btn {
  border: 2px solid var(--main-color);
  border-radius: 0px;
  padding: 11px 30px;
  color: #fff;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: capitalize;
  font-family: "Raleway", sans-serif;
}

.banner-top,
.banner-top1,
.banner-top2,
.banner-top3 {
  min-height: 750px;
}
.overlay {
  min-height: 750px;
  background: rgba(0, 0, 0, 0.5);
}
.overlay1 {
  min-height: 750px;
  background: rgba(0, 0, 0, 0.6);
}

/*-- //banner style --*/

/*-- about --*/
.about-left h3 {
  text-transform: capitalize;
  line-height: 40px;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 1px;
}
.about-right img.abt-image {
  width: 90%;
}
/*-- //about --*/

/*-- stats --*/
.counter span.fa {
  font-size: 2em;
  color: var(--main-color);
}

.timer {
  font-size: 3em;
  font-weight: 300;
}

.timer span {
  font-size: 20px;
  font-weight: 500;
  color: #777;
}

p.count-text {
  letter-spacing: 2px;
  font-weight: 600;
}

/*-- //stats --*/
/* how to book */

/* Navbar.css */
.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  z-index: 1;
}

.slick-prev {
  left: -50px;
}

.slick-next {
  right: -50px;
}

.slick-slide {
  margin-left: calc(var(--spacer) * 0.25);
  margin-right: calc(var(--spacer) * 0.25);
}

/* Adjust the container padding if needed */
.container {
  padding-left: 50px;
  padding-right: 50px;
}

.card {
  border: 4px solid var(--main-color);
}

h5.card-title {
  color: var(--main-color);
}

.card-body .btn {
  background-color: var(--main-color);
  color: #fff;
}

/* //how to book */

/*-- book --*/
.book {
  background: url(../images/yogiriday.jpg) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  position: relative;
}
.book h2.heading {
  color: #fff;
}
.grid-info h4 {
  color: #fff;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 21px;
  text-transform: uppercase;
}
.grid-info p {
  color: #ddd;
}
.icon {
  background: #fff;
  width: 80px;
  height: 80px;
  line-height: 80px;
  margin: 0em auto 1.5em;
  border-radius: 50%;
}
.icon span.fa {
  font-size: 25px;
  line-height: 80px;
  color: var(--main-color);
}
.grid-info {
  padding: 0 1em;
}

/*-- book --*/

/*--footer--*/

.text-indent {
  text-indent: -2rem; /* Adjust the indent value as needed */
}

.text-indent-p {
  text-indent: 3rem;
}

.footer_w3layouts_section_1its {
  background: #151515;
}

.footer_w3layouts_section_1its h3,
.footer_w3layouts_section_1its h2 {
  font-size: 1.3em;
  color: #eee;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.footer-text p,
.contact-info p {
  color: #808080;
  line-height: 1.8em;
  letter-spacing: 1px;
}

.phone {
  margin-top: 20px;
}

.contact-info h4 {
  font-style: normal;
  font-weight: 300;
  font-size: 1.3em;
  line-height: 1.71;
  letter-spacing: 1px;
  text-transform: capitalize;
  color: #fff;
}

.footer p,
.footer a {
  color: #707070;
  margin: 8px 0;
}
.footer-grid:nth-child(2) {
  border-left: 1px solid #1b1b1b;
  border-right: 1px solid #1b1b1b;
}

.footer ul li.hd {
  color: #34bf49;
}

.newsletter .email {
  background-color: #f4f4f4;
  border: none;
}

.flickr-grid {
  float: left;
  width: 32%;
  margin: 0 0.1em 0.2em;
}

.flickr-grid a img {
  width: 100%;
  padding: 0.3em;
  border: 1px solid #333333;
}

.footer-text input[type="email"] {
  outline: none;
  padding: 12px 15px;
  color: #fff;
  font-size: 13px;
  width: 85%;
  border: none;
  background: none;
  letter-spacing: 1px;
  text-transform: capitalize;
  font-family: "Open Sans", sans-serif;
}

.newsletter {
  position: relative;
  margin-top: 2em;
}

button.btn1 {
  color: #808080;
  border: none;
  padding: 10px 0;
  outline: none;
  text-align: center;
  text-decoration: none;
  background: none;
  cursor: pointer;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
  transition: 0.5s all;
  float: right;
  width: 15%;
}
.footer-grid_section_1its_w3 form {
  border: 1px solid #808080;
  width: 100%;
  margin-top: 20px;
}
ul.social_section_1info li {
  display: inline-block;
}

ul.social_section_1info a {
  color: #808080;
  margin-right: 10px;
  font-size: 13.5px;
  margin-right: 2px;
  width: 35px;
  height: 35px;
  background: #212121;
  display: block;
  text-align: center;
  line-height: 35px;
  letter-spacing: 1px;
}
ul.social_section_1info a:hover {
  color: #fff;
}

.phone p a {
  color: #808080;
}
.phone p a:hover {
  color: #fff;
}

ul.links li {
  list-style-type: none;
  margin: 5px 0;
}
ul.links li a {
  color: #707070;
  font-size: 15px;
  letter-spacing: 0.5px;
}
ul.links li a:hover {
  color: #999;
}
.footer-title a i {
  font-size: 1em;
  width: 55px;
  height: 55px;
  background: var(--main-color);
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.69);
}
.footer-title a {
  font-size: 33px;
  text-transform: capitalize;
  font-weight: 600;
  color: #eee;
}

li.facebook a {
  color: #fff;
  background: #3b5998;
}
li.twitter a {
  color: #fff;
  background: #1da1f2;
}
li.google a {
  color: #fff;
  background: #dd4b39;
}
li.linkedin a {
  color: #fff;
  background: #0077b5;
}

@media all and (max-width: 991px) {
    .footer-top {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .footer-grid_section_1its_w3,
    .footer-grid_section {
      text-align: center;
    }
  
    .footer-title h3 p {
      text-align: center;
    }
  
    .footer-text p,
    .contact-info p {
      text-align: center;
    }
  
    .footer-text input[type="email"] {
      width: 100%;
    }
  
    button.btn1 {
      float: none;
      width: auto;
      display: inline-block;
    }
  
    ul.social_section_1info {
      display: flex;
      justify-content: center;
    }
  }
  
/*--//footer--*/

/*-- text --*/

.text-content {
  background: url(../images/banner4.jpg) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  position: relative;
}
.overlay-inner {
  background: rgba(0, 0, 0, 0.5);
}

.order-left-content h4 {
  font-size: 4em;
  font-weight: 600;
}
.test-info p {
  color: #eee;
}
h4.tittle {
  font-size: 3.3em;
  color: #fff;
  font-weight: 300;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.37);
  text-transform: capitalize;
  letter-spacing: 2px;
  margin: 0;
}
.test-info a {
  border: 2px solid var(--main-color);
  border-radius: 0px;
  padding: 11px 30px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: capitalize;
  display: inline-block;
}

.test-info a:hover {
  color: var(--main-color);
}
.test-info {
  max-width: 700px;
}

@media all and (max-width: 991px) {
    .test-info .text-left {
      display: flex;
      justify-content: center;
    }
  }
  
/*-- //text --*/

/*-- packages --*/
.uttarakhand {
  position: relative;
}

.uttarakhand::before {
  background-color: var(--main-color);
  backdrop-filter: blur(10px);
  z-index: -1;
}

h3.heading,
h2.heading {
  font-size: 43px;
}
p.text {
  max-width: 700px;
  margin: auto;
}
.package-info {
  padding: 1.5em 1em;
  background: #fafafa;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.view-package a {
  background: var(--main-color);
  padding: 13px 30px;
  color: #fff;
  letter-spacing: 1px;
  font-size: 15px;
  margin-top: 10px;
  display: inline-block;
}
.package-info h5 {
  text-transform: capitalize;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 18px;
  line-height: 1.5em;
}
.package-info p {
  font-size: 15px;
  line-height: 1.6em;
}
.package-info h6 {
  font-size: 16px;
  letter-spacing: 1px;
  color: #707579;
  text-transform: capitalize;
}
.image-tour p {
  position: absolute;
  right: 1%;
  bottom: 2%;
  background: var(--main-color);
  padding: 5px 10px;
  color: #fff;
}
.package-info h6 span.fa {
  color: var(--main-color);
}
ul.listing li {
  letter-spacing: 0px;
  color: #707579;
  font-size: 15px;
}
ul.listing li span {
  font-weight: 600;
}
ul.listing li span.fa {
  font-weight: normal;
  color: var(--main-color);
}
/*-- //packages --*/

/* destinations */
.destinations-grids {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.destinations-grids .caption h4 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

.destinations-grids .caption h4:hover {
  color: var(--main-color);
}

h4.destination {
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 3px;
  text-decoration: underline;
}

.rating ul li {
  display: inline-block;
}
.rating ul li span.fa {
  color: var(--main-color);
  font-size: 13px;
}

.rating {
  position: absolute;
  right: 1%;
  top: 1%;
  padding: 0px 10px 5px;
}
.caption p.know-more {
  font-size: 15px;
  background: none;
  border: 1px solid #ccc;
  padding: 12px 20px;
  letter-spacing: 1px;
  color: #ccc;
  margin-top: 20px;
  display: inline-block;
}

.caption p.know-more:hover {
  border: 1px solid var(--main-color);
  color: var(--main-color);
}

.destinations-info {
  position: absolute;
  bottom: -227px;
  margin: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 30px 0px 10px;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
  left: 15px;
  right: 15px;
  text-align: center;
}

.destinations-grids:hover div.destinations-info {
  bottom: 0;
}

.caption {
  padding: 0px;
}

/* destinations responsive */
@media (max-width: 1080px) {
}

@media (max-width: 1024px) {
}

@media (max-width: 991px) {
  .destinations-grids {
    padding: 0 5px;
  }

  .destinations-grids h4 {
    font-size: 18px;
  }
  .destinations-info {
    left: 5px;
    right: 5px;
  }
  .destinations-info {
    padding: 20px 0;
  }
}

@media (max-width: 736px) {
}

@media (max-width: 480px) {
}

@media (max-width: 440px) {
}

@media (max-width: 414px) {
}

@media (max-width: 384px) {
  .destinations-grids {
    padding: 0 1em;
  }
}

@media (max-width: 320px) {
}

/* //destinations responsive */
/* //destinations */

/*-- copy right --*/
.copyright {
  background: #222;
}
.copyright p a {
  color: #aaa;
}
/*-- //copy right --*/

/*-- move top --*/

.move-top {
  position: relative;
}

a.move-top {
  text-align: center;
  position: absolute;
  right: 1%;
  bottom: 0%;
}

a.move-top span {
  color: #fff;
  width: 36px;
  height: 36px;
  border: transparent;
  line-height: 2em;
  background: var(--main-color);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -o-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
}

/*-- //move top --*/

/*-- inner banner --*/
.banner_inner1 {
  background: url(../images/banner1.jpg) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner_inner2 {
  background: url(../images/watershow.jpg) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner_inner3 {
  background: url(../images/banner3.jpg) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner_inner4 {
  background: url(../images/char_Dham.jpg) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner_inner5 {
  background: url(../images/banner5.jpg) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner_inner6 {
  background: url(../images/gajpati.jpg) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner_inner7 {
  background: url(../images/manali.jpg) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner_inner_overlay {
  background: rgba(0, 0, 0, 0.5);
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; /* Make sure the overlay covers the entire section */
  height: 100%; /* Ensure the overlay takes up the full height of the parent */
  text-align: center; /* Center text within the div */
  padding-top: 100px;
}

/*-- //inner banner --*/

/* tabs */
.inner-w3pvt-wrap {
  padding-top: 2em;
}

.inner-w3pvt-wrap h4 {
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.inner-sec-grid {
  padding: 2.5em 2em;
  border: none;
  transition: none;
  border: 1px solid #999;
}
.inner-sec-grid span.fa {
  font-size: 2em;
  color: var(--main-color);
}
.choose {
  background: url(../images/choose.jpg) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
}
.choose h2.heading {
  color: #fff;
}
.overlay-all {
  background: rgba(0, 0, 0, 0.5);
}
.inner-w3pvt-wrap p {
  font-size: 15px;
  color: #ccc;
}

.tab-main section {
  display: none;
}

.tab-main input.w3pvt-sm {
  display: none;
}

.tab-main label {
  display: inline-block;
  padding: 12px 25px;
  color: #333;
  background: #fff;
  font-size: 16px;
  letter-spacing: 1px;
}

.tab-main span {
  margin-right: 0.5em;
}

.tab-main label:before {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-weight: normal;
  margin-right: 10px;
  opacity: 0;
  display: none;
}

.tab-main label[for*="1"]:before {
  content: "\f1cb";
}

.tab-main label[for*="2"]:before {
  content: "\f17d";
}

.tab-main label[for*="3"]:before {
  content: "\f16c";
}

.tab-main label[for*="4"]:before {
  content: "\f171";
}

.tab-main label:hover {
  cursor: pointer;
}

.tab-main input:checked + label {
  background: var(--main-color);
  color: #fff;
}

.tab-main #tab1:checked ~ #content1,
.tab-main #tab2:checked ~ #content2,
.tab-main #tab3:checked ~ #content3,
.tab-main #tab4:checked ~ #content4 {
  display: block;
}

@media screen and (max-width: 800px) {
  .tab-main label:before {
    margin: 0;
    font-size: 18px;
  }
}

@media screen and (max-width: 500px) {
  .tab-main label {
    padding: 15px;
  }
}

/*-- //tabs --*/

/*-- testimonials --*/

.testi-info h3 {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.test-img img {
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

/*-- //testimonials --*/

/*-- contact --*/
.adress-w3pvt-info h6 {
  font-size: 1.2em;
  color: #3d3d3e;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 1em 0;
}
.adress-w3pvt-info a {
  color: #777;
  letter-spacing: 1px;
}
.adress-icon span.fa {
  color: var(--main-color);
  font-size: 2em;
  vertical-align: middle;
}
.contact-forms input,
.contact-forms textarea,
.contact-forms select {
  font-size: 15px;
  color: #000;
  padding: 1em 1em;
  background: #f6f6f6;
  outline: none;
  border: none;
  letter-spacing: 1px;
  border-radius: 0px;
  outline: none !important;
}
.contact-forms select {
  padding: 0em 1em;
  height: 52px !important;
  color: #777;
}
button.sent-butnn {
  font-size: 16px;
  text-decoration: none;
  text-transform: capitalize;
  display: inline-block;
  letter-spacing: 2px;
  outline: none;
  color: #fff;
  background: var(--main-color);
  border-radius: 0px;
  padding: 10px 20px;
}
.contact-left-form {
  padding: 3em;
  background: #fff;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
}
.contact-right h4 {
  font-size: 30px;
  text-transform: capitalize;
  letter-spacing: 1px;
  line-height: 40px;
  font-weight: 600;
  margin-top: 1em;
}
.contact-right h5 {
  font-size: 25px;
  letter-spacing: 1px;
  font-weight: 600;
}
.map iframe {
  border: none;
  outline: none;
  height: 350px;
  width: 100%;
}
/*-- contact --*/

/*-- services --*/
.about-icon span.fa {
  font-size: 2em;
  color: var(--main-color);
}
.main-title-text h4 {
  font-size: 22px;
  text-transform: capitalize;
  letter-spacing: 1px;
  line-height: 35px;
  font-weight: 600;
  text-align: center;
  background: var(--main-color);
  color: #fff;
  padding: 20px;
}
/*-- //services --*/

/* places */
h3.tittle {
  font-size: 36px;
}

.title-bg p {
  max-width: 700px;
  font-size: 13px;
}
.right-cont ul li span.fa {
  color: var(--main-color);
  margin-right: 3px;
  font-size: 14px;
}
p.duration {
  letter-spacing: 0px;
}

.bookbtn {
  background: var(--main-color);
  padding: 5px 10px;
  color: #fff !important;
  border: 2px solid var(--main-color);
  margin-top: 0px !important;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
  margin-bottom: 5px;
}

.bookbtn:hover {
  background: #5b5b5b;
  color: #ffffff !important;
  border: 2px solid #5b5b5b;
}

.viewtour {
  background: #5b5b5b;
  padding: 2px 10px;
  color: #fff !important;
  border: 2px solid var(--main-color) 00;
  margin-top: 0px !important;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
  margin-right: 10px;
  text-transform: capitalize;
}

.viewtour:hover {
  background: var(--main-color);
}

.bookpackage {
  margin-top: 15px;
}

.services {
  padding: 60px 0px;
}

.title-single {
  text-align: center;
  padding-bottom: 35px;
}
.title-single p {
  text-align: center !important;
  font-size: 18px;
  text-transform: uppercase;
}

.title h1 {
  text-decoration: underline;
}

.title ul li:nth-of-type(1),
.title ul li:nth-of-type(5) {
  width: 10px;
  height: 2px;
}

.title ul li:nth-of-type(2),
.title ul li:nth-of-type(4) {
  width: 20px;
  height: 3px;
}

.title ul li:nth-of-type(3) {
  width: 30px;
  height: 4px;
}

.title ul li:nth-of-type(2),
.title ul li:nth-of-type(4) {
  width: 20px;
  height: 3px;
}

.title ul li:nth-of-type(1),
.title ul li:nth-of-type(5) {
  width: 10px;
  height: 2px;
}

.title ul li {
  display: inline-block;
  background-color: var(--main-color);
}

.title-single h1,
.title-single h2,
.title-single h3 {
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 25px;
  margin-top: 0px;
  color: #000;
}

.servicebanner img {
  width: 100%;
}

.services p {
  text-align: justify;
  margin-bottom: 7px;
}

.bg-light {
  background: #f3f3f3;
}

.subheading h2,
.subheading h3,
.subheading h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--main-color);
  margin-top: 0px;
  text-transform: uppercase;
}

.subheading {
  margin-bottom: 10px;
}

.service-section {
  padding: 60px 0px;
}

.servicename {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e8e8e8;
}

.servicename:last-child {
  border-bottom: none;
}

/* //places */

/* Gallery */

.content-area {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #fbfbfb;
}

section.content-area {
  display: flex;
}
/* 
.fixed-size-img {
	width: 200px;
	height: 200px; 
	object-fit: cover;
} */

.hovereffectimg img {
  transition: 0.3s;
  /* transform: scale(1.3); */
  height: auto;
  max-height: 100%;
  max-width: 100%;
  width: auto;
}

.gallery-image {
  margin: 20px;
  margin-left: -5px;
  margin-right: -5px;
}

/* //Gallery */

/*-- Responsive design --*/

@media (max-width: 1366px) {
  .banner-top,
  .banner-top1,
  .banner-top2,
  .banner-top3,
  .overlay,
  .overlay1 {
    min-height: 750px;
  }
}
@media (max-width: 1280px) {
  .banner-top,
  .banner-top1,
  .banner-top2,
  .banner-top3,
  .overlay,
  .overlay1 {
    min-height: 720px;
  }
  .w3layouts-banner-info {
    padding-top: 16em;
  }
  .banner_inner_overlay,
  .banner_inner {
    min-height: 280px;
  }
  .contact-right h4 {
    font-size: 27px;
  }
}
@media (max-width: 1080px) {
  .banner-top,
  .banner-top1,
  .banner-top2,
  .banner-top3,
  .overlay,
  .overlay1 {
    min-height: 650px;
  }
  .w3layouts-banner-info h3 {
    font-size: 3em;
  }
  h4.tittle {
    font-size: 3em;
  }
  .w3layouts-banner-info {
    padding-top: 14em;
  }
  .package-info h5 {
    font-size: 17px;
  }
  h3.heading,
  h2.heading {
    font-size: 40px;
  }
  ul.links {
    padding-right: 0;
  }
  .footer p,
  .footer a {
    font-size: 14px;
  }
  .banner_inner_overlay,
  .banner_inner {
    min-height: 250px;
  }
  .testi-info h3 {
    font-size: 18px;
  }
  .service-grid-wthree {
    padding: 0 10px;
  }
  .ser-sevice-grid h4 {
    font-size: 22px;
  }
  h4.tm-clr {
    font-size: 22px;
  }
  .right-cont p {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .timer {
    font-size: 2.5em;
  }
  .counter span.fa {
    font-size: 1.8em;
  }
  .grid-info {
    padding: 0 0em;
  }
  .icon {
    width: 75px;
    height: 75px;
    line-height: 75px;
  }
  .icon span.fa {
    font-size: 22px;
    line-height: 75px;
  }
  .grid-info h4 {
    letter-spacing: 1px;
    font-size: 20px;
  }
  .package-info p {
    font-size: 14px;
  }
  .contact-right h4 {
    font-size: 25px;
    line-height: 36px;
  }
}
@media (max-width: 991px) {
  nav li.booking a {
    display: inline-block;
  }
  .w3layouts-banner-info h3 {
    font-size: 2.8em;
    line-height: 58px;
  }
  .image-tour img {
    width: 100%;
  }
  .caption a {
    font-size: 14px;
    padding: 10px 20px;
  }
  .destinations-grids .caption h4 {
    font-size: 18px;
  }
  .contact-right h4,
  .contact-right h5 {
    font-size: 23px;
  }
  .contact-left-form {
    padding: 3em 2em;
  }
  .map iframe {
    height: 300px;
  }
  .adress-w3pvt-info p {
    font-size: 14px;
  }
}
@media (max-width: 800px) {
  .w3layouts-banner-info h3 {
    font-size: 2.6em;
  }
  .w3layouts-banner-info h4 {
    letter-spacing: 3px;
    font-size: 22px;
  }
  .banner-top,
  .banner-top1,
  .banner-top2,
  .banner-top3,
  .overlay,
  .overlay1 {
    min-height: 620px;
  }
  h4.tittle {
    font-size: 2.5em;
  }
}
@media (max-width: 768px) {
  .w3layouts-banner-info {
    margin-left: 2em;
  }
  h3.heading,
  h2.heading {
    font-size: 36px;
  }
  .banner_inner_overlay,
  .banner_inner {
    min-height: 200px;
  }
  .adress-w3pvt-info h6 {
    font-size: 1.1em;
    margin: 1em 0 0.5em;
  }
}
@media (max-width: 736px) {
  .w3layouts-banner-info {
    margin-left: 0em;
  }
  .w3layouts-banner-info h3 {
    font-size: 2.4em;
    line-height: 52px;
    letter-spacing: 0px;
  }
  .w3layouts-banner-info h4 {
    letter-spacing: 3px;
    font-size: 20px;
  }
  .w3layouts-banner-info {
    padding-top: 11em;
  }
  .banner-top,
  .banner-top1,
  .banner-top2,
  .banner-top3,
  .overlay,
  .overlay1 {
    min-height: 520px;
  }
  .about-left h3 {
    font-size: 25px;
  }
  p.count-text {
    letter-spacing: 1px;
  }
  .copyright p {
    font-size: 14px;
  }
  .footer_w3layouts_section_1its h3,
  .footer_w3layouts_section_1its h2 {
    letter-spacing: 1px;
  }
}
@media (max-width: 600px) {
  .w3layouts-banner-info h3 {
    font-size: 2.2em;
    line-height: 50px;
  }
  .w3layouts-banner-info {
    margin-left: 1em;
  }
  .w3layouts-banner-info h4 {
    letter-spacing: 2px;
    margin: 0.5em 0 1.5em;
    font-size: 19px;
  }
  .banner-top,
  .banner-top1,
  .banner-top2,
  .banner-top3,
  .overlay,
  .overlay1 {
    min-height: 490px;
  }
  .timer {
    font-size: 2.2em;
  }
  h4.tittle {
    font-size: 2.2em;
  }
  .adress-icon span.fa {
    font-size: 1.5em;
  }
}
@media (max-width: 568px) {
  .destinations-grids {
    padding: 0 5px;
    width: 65%;
    margin: auto;
  }
  .w3layouts-banner-info {
    padding-top: 10em;
  }
  .tab-main label {
    padding: 10px 20px;
    font-size: 15px;
    margin-bottom: 0;
  }
  .inner-w3pvt-wrap h4 {
    font-size: 20px;
  }
  .inner-sec-grid {
    padding: 2em 2em;
  }
  .contact-grids {
    margin: 0 2em;
  }
}
@media (max-width: 480px) {
  h3.heading,
  h2.heading {
    font-size: 30px;
  }
  .about-left h3 {
    font-size: 22px;
    letter-spacing: 0px;
  }
  p.count-text {
    letter-spacing: 1px;
    font-size: 14px;
  }
  .w3layouts-banner-info {
    padding-top: 9em;
  }
  .w3layouts-banner-info h3 {
    font-size: 1.8em;
    line-height: 45px;
  }
  .banner-top,
  .banner-top1,
  .banner-top2,
  .banner-top3,
  .overlay,
  .overlay1 {
    min-height: 440px;
  }
  .w3layouts-banner-info a.btn {
    padding: 10px 25px;
    font-size: 15px;
    letter-spacing: 1px;
  }
  .w3layouts-banner-info h4 {
    letter-spacing: 2px;
    font-size: 17px;
  }
  #logo a {
    font-size: 0.6em;
  }
  .w3layouts-banner-info h3 {
    font-size: 1.7em;
    line-height: 40px;
  }
  .csslider > .arrows {
    width: 99% !important;
  }
  .service-grid-wthree {
    padding: 0 15px;
  }
  .main-title-text h4 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 415px) {
  p {
    font-size: 14px;
  }
  .destinations-grids h4 {
    font-size: 17px;
    letter-spacing: 2px;
  }
  .rating ul li span.fa {
    font-size: 12px;
  }
  .copyright {
    padding: 0 20px;
  }
  .banner_inner_overlay,
  .banner_inner {
    min-height: 150px;
  }
  .main-title-text h4 {
    font-size: 18px;
    line-height: 30px;
    padding: 15px;
  }
  .ser-sevice-grid h4 {
    font-size: 20px;
  }
  .contact-right h4,
  .contact-right h5 {
    font-size: 21px;
    line-height: 32px;
  }
  .map iframe {
    height: 250px;
  }
}
@media (max-width: 384px) {
  .w3layouts-banner-info {
    padding-top: 8em;
  }
  .about-left h3 {
    line-height: 35px;
  }
  .timer {
    font-size: 2em;
  }
  p.count-text {
    font-size: 13px;
  }
  h4.tittle {
    font-size: 1.8em;
  }
  nav ul li {
    padding: 5px 0;
  }
  li.booking {
    margin-top: 10px;
  }
  .toggle {
    padding: 4px 15px;
    font-size: 17px;
  }
  .contact-grids {
    margin: 0 1em;
  }
}
@media (max-width: 375px) {
  .contact-right h4,
  .contact-right h5 {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (max-width: 320px) {
}
/*-- //Responsive design --*/
