@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
  @import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&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');
* {
  font-family: 'Crimson Text', serif;
}
html, main {  overflow-x: hidden !important;  width: 100%;  }
html {
  scroll-behavior: smooth;
}

body {
  background-color: rgb(28, 85, 114);
}
footer{
  background-color: rgb(7, 54, 77);
  margin: 80px 0px 0px 0px;

}
.navbar-nav li .nav-link {
  color: #fff;
}

.navbar-nav li .nav-link:hover {
  color: #ffffffc0;
}

/*********************** Navbar **********************/

.side-bar{
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  width: 290px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: -100%;
  overflow-y: auto;
  transition: 0.6s ease;
  transition-property: left;
 }
 
 .side-bar.active{
  left: 0;
  z-index: 10;
 }
 
 .side-bar .menu{
  width: 100%;
  margin-top: 80px;
 }
 
 .side-bar .menu .item{
  position: relative;
  cursor: pointer;
 }
 
 .side-bar .menu .item a{
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  display: block;
  padding: 5px 30px;
  line-height: 60px;
 }
 
 .side-bar .menu .item a:hover{
  background: rgb(28, 85, 114);
  transition: 0.3s ease;
 }
 
 .side-bar .menu .item i{
  margin-right: 15px;
 }
 
 .side-bar .menu .item a .dropdown{
  position: absolute;
  right: 0;
  margin: 20px;
  transition: 0.3s ease;
 }
 
 .side-bar .menu .item .sub-menu{
  background: rgba(255, 255, 255, 0.1);
  display: none;
 }
 
 .side-bar .menu .item .sub-menu a{
  padding-left: 80px;
 }
 
 .rotate{
  transform: rotate(90deg);
 }
 
 .close-btn{
  position: absolute;
  color: #fff;
  font-size: 20px;
  right: 0;
  margin: 25px;
  cursor: pointer;
 }
 
 .menu-btn{
  position: absolute;
  color: #fff;
  font-size: 20px;
  margin: 25px;
  cursor: pointer;
  z-index: 10;
 }
 
 .main{
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
 }
 
 .main h1{
  color: rgba(255, 255, 255, 0.8);
  font-size: 60px;
  text-align: center;
  line-height: 80px;
 }
 
 @media (max-width: 900px){
  .main h1{
    font-size: 40px;
    line-height: 60px;
  }
 }
/* ==============================   Footer  ========================= */
.foot-border{
  border-style: solid;
  border-width: 0px 1px 0px 0px;
  border-color: #d0d0d0;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}
.spacer{
  height: 2rem;
}
.desc-wrap {
  padding: 0 50px 0 10px;
}
.foot-img{
  padding: 0px 3px !important;
}
.logo-container,.rights{
  text-align: right;
  color: #fff;
  margin-bottom: 20px;
  
}
.foot-link-container{
margin-top: 1.2rem;  
}

.foot-link-wrap{
  padding: 0 10px 0 50px;
}
.foot-link-title{
  font-size: 2.5rem;
    line-height: 1.3em;
    margin-bottom: 20px;
    color: #fff;
}
.link-ttl{
  color: #fff;
  margin-bottom: 20px;
}
.link-holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.link-holder ul li{
 margin: 0.25rem 0 0.25rem 0;
}

.link-holder ul{
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.link-holder ul a{
  color: #bdbdbd;
  text-decoration: none;
}
@media screen and (max-width:991px) {
  .foot-border{
    border: none;
  }
  .logo-container,.rights{
    text-align: center;
  }
  .link-holder ul,.link-ttl{
    text-align: center;
  }
}
.py-7{
  padding: 8rem 0 !important;
}
/********************* Hero Section *****************/


.hero {
  position: relative;
  display: flex;
  width: 100%;
  height: 100vh;
  padding: 0 5%;
  align-items: center;
  justify-content: flex-start;
}

.hero-content h1 {
  font-size: 90px;
  font-weight: 600;
  color: #fff;
  transition: .5s;
  margin-bottom: 45px;
}

.hero-content h1:hover {
  -webkit-text-stroke: 0.8px #fff;
  color: transparent;
}

.hero-content a {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 1);
  padding: 8px 15px;
  transition: .5s;
}

.hero-content a:hover {
  background-color: #fff;
  color: rgb(17, 50, 18);
}

.back-video {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

@media (min-aspect-ratio:16/9) {
  .back-video {
    width: auto;
    height: auto;
  }
}

@media (max-aspect-ratio:16/9) {
  .back-video {
    width: auto;
    height: 100%;
  }
}

@media screen and (max-width:990px) {
  .hero-content h1 {
    font-size: 45px;
  }
}

/* *************************************** Services ***************************** */
.service .col-lg-6 {
  padding: 0 !important;

}

.col-lg-6 .content {
  width: 80%;
  margin: auto;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.col-lg-6 .content h2 {
  font-weight: 100;
  font-size: 45px;
  color: rgb(255, 255, 255);
  letter-spacing: 4.5px;
}

.col-lg-6 .content p {
  margin-top: 45px;
  margin-bottom: 45px;
  color: #ffffff;
}

.col-lg-6 .content a {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 1);
  padding: 8px 15px;
  transition: .5s;
}

.col-lg-6 .content a:hover {
  background-color: #fff;
  color: rgb(28, 85, 114);

}
@media screen and (max-width:991px) {
  .reverse{
    display: flex;
    flex-direction: column-reverse;
  }
}

/*********************************** Popular Tour **********************************/
.ttl {
  color: #fff;
  letter-spacing: 1.2px;
}

.ttl i {
  padding-right: 15px;
}

.ttl span {
  color: rgba(45, 161, 219, 0.786);
  font-size: 18px;
  padding-left: 15px;
}

.ttl span a {
  color: rgba(45, 161, 219, 0.786);
  font-size: 18px;
  text-decoration: none;
  padding-left: 15px;
}

.ttl span a:hover {
  color: rgb(45, 161, 219);
}

.tour-img {
  overflow: hidden;
}

.tour-img img {
  transition: transform 300ms ease-out;
  -moz-transition: -moz-transform 300ms ease-out;
  -o-transition: -o-transform 300ms ease-out;
  -webkit-transition: -webkit-transform 300ms ease-out;
}

.tour-img img:hover {
  transform: scale(1.1);
}

.tour-content {
  font-family: 'Poppins', sans-serif !important;
  background-color: #fff;
  height: 307.578px;
  padding: 32px 30px 20px;
  position: relative;

}

.tour-content::before {
  content: "Book Now";
  text-align: center;
  background-color: rgb(28, 85, 114);
  float: right;
  color: #fff;
  padding: 10px 15px;
  font-size: 18px;
  font-weight: 600;
  z-index: 2;
  margin-top: -65px;
  pointer-events: none;
} 

.tour-content h3 {
  padding-right: 100px;
  font-size: 1.7rem;
}

.tour-content h3 a {
  font-family: 'Poppins', sans-serif !important;
  color: #333333;
  display: block;
  text-decoration: none;
  font-weight: 700;
  height: 110px;
  text-transform: uppercase;
}

.price-wrap {
  position: absolute;
  text-align: right;
  top: 32px;
  right: 20px;
}

.price,
.price-tail,
.price-head {
  font-family: 'Poppins', sans-serif !important;
  display: block;
}

.price,
.price-tail {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  color: rgb(28, 85, 114);
}

.price-head {
  font-size: 15px;
  margin-bottom: 7px;
  font-weight: normal;
  color: #8c8c8c;
}

.tour-info {
  margin-top: 30px;
  margin-bottom: 30px;
}

.tour-info-text {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 500;
  font-size: 14px;
  color: #8c8c8c;
}

.tour-info i {
  width: 20px;
  display: inline-block;
  margin-right: 4px;
  color: rgb(28, 85, 114);
}

.tour-info .destination,
.tour-info .origin,
.tour-info .duration,
.tour-info .includes {
  padding-bottom: 5px;
}

.tour-info .destination::before {
  content: "Destination :";
  color: rgb(28, 85, 114);
  margin-left: 5px;
}

.tour-info .origin::before {
  content: "Origin :";
  color: rgb(28, 85, 114);
  margin-left: 5px;
}

.tour-info .duration::before {
  content: "Duration :";
  color: rgb(28, 85, 114);
  margin-left: 5px;
}

.tour-info .includes::before {
  content: "Includes :";
  color: rgb(28, 85, 114);
  margin-left: 5px;
}

/* *********************** Trekking Overlay ********************/
.trek-overlay {
  background: url('https://source.unsplash.com/b_IcUohrtUI');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.trek-overlay::after {
  content: "";
  background-color: rgba(28, 85, 114, 0.337);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* ************************* Offer Banner ******************* */
.offer-banner {
  background: url(https://source.unsplash.com/ebhM0GQ87H8);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position-x: center;
  z-index: 0;
}

.offer-banner::after {
  content: "";
  background-color: rgba(28, 85, 114, 0.337);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.offer {
  position: relative;
  z-index: 5;
}

.offer h2 {
  font-size: 2.75rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: 2.2px;
}

.offer h2 i {
  margin-right: 10px;
}

.offer p {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.offer a {
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 1);
  padding: 8px 15px;
  transition: .5s;

}

.offer a:hover {
  background-color: #fff;
  color: rgb(17, 50, 18);
}

.destination-row>.col {
  padding: 0px !important;
  position: relative;
  z-index: 1;
  transition: .5s;
}

.dst-info {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  display: flex;
  padding: 0px 25px 5px 25px;
  width: 100%;
  justify-content: space-between;
}

.dst-info span i {
  font-size: 18px;
  margin-right: 15px;
}

.dst-info a {
  text-decoration: none;
}

.dst-info span:nth-child(1) {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.dst-info span:nth-child(2) {
  color: rgb(45, 161, 219);
}

.destination-row .col:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  background-color: #0000007c;
  z-index: 2;
  height: 100%;
  top: 0;
  left: 0;
}

.destination-row .col:hover .dst-info {
  border-bottom: 5px solid rgb(43, 143, 193);
}
/* Article Section */

.col .article{
  position: relative;
  z-index: 0;
  transition: .5s ease;
  overflow: hidden;
}
.col .article:hover{
  transform: translateY(-15px);
  border-radius: 25px;
}
.col .article-text{
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(28, 85, 114, 0.515);
  padding: 5px 25px 5px 25px;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: .5s;
}
.col .article:hover .article-text{
  opacity: 1;
}
.article-text span a{
  text-decoration: none;
  color: #00eeff;
}
.article-text span{
  color: #fff;
}
.article-text span:nth-child(1){
  font-size: 15px;
  font-family: "Poppins",sans-serif;
  
}

/* banner Section */
.banner-ttl {
  color: #fff;
  font-size: 3.8rem;
  max-width: fit-content;
  transform: .3s ease;
}
.banner-ttl:hover{
  -webkit-text-stroke: 0.8px #fff;
  color: transparent;
}
.banner-desc p{
  color: #adadad;
  letter-spacing: 4px;
  font-size: larger;
}
.banner-desc span{
  letter-spacing: 2px;
  color: #adadad;
}
.banner-desc span a{
  text-decoration: none;
  color: #adadad;
  padding: 0 10px;
}
.banner-desc span a:hover{
  color: #fff;
}
.intro{
  background-color: #133b47;
  padding: 20px 30px;
}
.intro p{
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
  letter-spacing: 0.8px;
}
.list-category h6 {
  margin: 0px;
  background: #133b47;
  color: #fff;
  padding: 15px;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}
.list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.list-group .list-group-item {
  background: transparent;
}
.list-group-item i{
padding: 0px 10px;
}
.list-group-item a{
  text-decoration: none;
  color: #133b47;
  font-size: 18px;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.widget-inner {
  position: relative;
  display: block;
  background: #133b47;
  color: #ffffff;
  padding: 30px;
}
.widget-icon {
    position: relative;
    display: block;
    font-size: 54px;
    line-height: 1em;
    margin: 30px 0;
}
/* ================ Trek Pages ================== */

.trek-info{
  color: #fff;
  font-size: 20px;
}
.trek-info i{
  padding: 0 12px;
  margin-top: 20px;
}
.price-box{
  background-color: #fff;
}
.price-box .box-ttl{
background-color: #133b47;
color: #fff;
font-family: 'Poppins',sans-serif;
text-align: center;
padding: 20px 0px;
margin: 0;
}
.price-box .box-desc{
  text-align: center;
  color: #133b47;
  font-family: 'Poppins',sans-serif;
  font-size: 42px;
  font-weight: 600;
  padding: 50px 0px;
}
.price-box .box-desc span{
color: #133b47;
font-size: 25px;
font-family: 'Poppins',sans-serif;
font-weight: 600;
padding: 0 15px;  
}
.pickdate {
  font-size: 14px;
  letter-spacing: 5px;
  border: 1px solid rgba(0,0,0,0.5);
  margin: 10px 0px;
  text-align: center;
  color: #133b47;
  font-family: 'Poppins',sans-serif;
  height: 40px;
  padding: 0 30px;
  width: 260px;
}
#nav-home i{
  color: #133b47;
  font-size: 40px;
  margin: 15px 0px;
  padding: 0 30px;
}
.dots{
  padding: 0px 52px;
}
.dots span,.dots::before{
  background-color: #133b47;
  height: 12px;
  margin-top: 4px;
  width: 7px;
  border-radius: 10px;
  display: block;
}
.dots::before{
  content: "";
  opacity: .33;
}
#people{
  font-size: 14px;
  letter-spacing: 5px;
  border: 1px solid rgba(0,0,0,0.5);
  margin: 10px 0px;
  text-align: center;
  color: #133b47;
  font-family: 'Poppins',sans-serif;
  height: 40px;
  width: 260px;
}
#book-btn{
  font-size: 14px;
  letter-spacing: 5px;
  border: 1px solid rgba(0,0,0,0.5);
  margin: 10px 0px;
  text-align: center;
  background-color: #133b47;
  color: #fff;
  font-family: 'Poppins',sans-serif;
  padding: 13px 33px;
  text-decoration: none;
  transition: .5s ease;
}
#book-btn:hover{
  background-color: transparent;
  color: #133b47;
}
.nav-tabs{
  background: #133b47;
  border: none;
}
.nav-tabs .nav-links{
  margin: 0;
}
.nav-link{
  border: none !important;
    padding: 20px 30px;
    border-radius: 0px !important;
    font-family: 'Poppins',sans-serif;
    color: #fff;
    background: transparent;
    font-size: 25px;
    margin-bottom: 0 !important;
}
.nav-tabs .nav-link.active{
  background: #185466 !important;
  color: #fff;
}
.nav-link:hover{
  color: #fff;
}
.form-label{
  color: #979797;
    font-family: 'Poppins',sans-serif;
    margin-top: 10px;
    padding: 0 20px;
}
.form-control{
  font-size: 14px;
  border: 1px solid rgba(0,0,0,0.5);
  margin: 10px 20px;
  padding: 5px 10px;
  color: #133b47;
  font-family: 'Poppins',sans-serif;
  width: 260px;
}
@media screen and (max-width:1400px) {
  #nav-home i{
    font-size: 25px;
    padding: 0 15px;
  }
  #book-btn{
    font-size: 12px;
    padding: 13px 14px;
  }
  .dots span,.dots::before{
    height: 0px;
  }
}
@media screen and (max-width:1200px) {
  .nav-link{
    padding: 0.5rem 1rem;
  }
  #people{
    font-size: 14px;
    height: 40px;
    width: 200px;
    letter-spacing: 0px;
  }
  .pickdate {
    font-size: 14px;
    letter-spacing: 0px;
    padding: 0px;
    width: 200px;
  }
  .form-control{
    margin: auto ;
  }

}
@media screen and (max-width:990px) {
  .pickdate {
    font-size: 14px;
    letter-spacing: 5px;
    border: 1px solid rgba(0,0,0,0.5);
    margin: 10px 0px;
    text-align: center;
    color: #133b47;
    font-family: 'Poppins',sans-serif;
    height: 40px;
    padding: 0 30px;
    width: 260px;
  }
  .dots span,.dots::before{
    background-color: #133b47;
    height: 12px;
    margin-top: 4px;
    width: 7px;
    border-radius: 10px;
    display: block;
  }
  #nav-home i{
    color: #133b47;
    font-size: 40px;
    margin: 15px 0px;
    padding: 0 30px;
  }
  #people{
    font-size: 14px;
    letter-spacing: 5px;
    border: 1px solid rgba(0,0,0,0.5);
    margin: 10px 0px;
    text-align: center;
    color: #133b47;
    font-family: 'Poppins',sans-serif;
    height: 40px;
    width: 260px;
  }
  #book-btn{
    font-size: 14px;
    letter-spacing: 5px;
    border: 1px solid rgba(0,0,0,0.5);
    margin: 10px 0px;
    text-align: center;
    background-color: #133b47;
    color: #fff;
    font-family: 'Poppins',sans-serif;
    padding: 13px 33px;
    text-decoration: none;
    transition: .5s ease;
  }
  .nav-link{
    border: none !important;
      padding: 20px 30px;
      border-radius: 0px !important;
      font-family: 'Poppins',sans-serif;
      color: #fff;
      background: transparent;
      font-size: 25px;
      margin-bottom: 0 !important;
  }
}
@media screen and (max-width:385px){
  #nav-home i{
    font-size: 25px;
    padding: 0 15px;
  }
  #book-btn{
    font-size: 12px;
    padding: 13px 14px;
  }
  .dots span,.dots::before{
    height: 0px;
  }
}
/* =========================== Scroll Nav ========================= */
.scroll-nav {
  top: 0;
  width:100%;
  overflow: hidden;
  background-color: #133b47;
}
.scroll-nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.scroll-nav ul li{
padding: 10px 0px;
}

.scroll-nav ul li a {
  text-decoration: none;
  color: #c3c3c3;
  transition: opacity 200ms ease-in-out;
  overflow: hidden;
  font-size: 20px;
  font-family: 'Poppins',sans-serif;
}
.scroll-nav ul li a:hover{
  color: #fff;
}
.scroll-nav ul li a::after {
  content: '';
  display: block;
  width: 0;
  opacity:0;
  height: 3px;
  margin-top: 3px;
  border-radius: 99px !important;
  background-color: #fff;
  transition: width .2s ease-in-out;
}
.scroll-nav ul li a.current::after {
  width: 100%;
opacity:1;
}
.scroll-nav ul li a:hover::after {
  width: 100%;
opacity:1;
}
/* ======================= Trek =================== */
.about-trek .trek-content{
  padding: 0 !important;
}
.trek-ttl{
  font-family: 'Poppins',sans-serif;
    color: #fff;
    margin: 40px 0px;
}
.trek-ttl i{
  padding-right: 20px;
}
.trek-content > div p{
  font-family: 'Poppins',sans-serif;
  color: #fff; 
  margin-bottom: 40px;
}
.trek-content > div ul i{
  padding-right: 20px;
}
.trek-content > div ul{
  list-style: none;
  color: #fff;
  margin-bottom: 40px;
}
.trek-content > div ul li{
font-family: 'Poppins',sans-serif;
display:flex;  
}

.trek-content > div p span{
  font-family: 'Poppins',sans-serif;
}
.trek-content > div p span a{
  text-decoration: none;
  font-family: 'Poppins',sans-serif;
  color:#00eeff ;
}
.trek-content > div p span:nth-child(1){
    color: #00b6ff;  
}
.accordion-item{
  border: none !important;
  background-color: transparent;
}
.accordion-btn{
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Poppins';
  padding: 15px 10px;
  margin-bottom: 10px;
  background-color: #133b47;
  color: #00b6ff;
  font-weight: 600;
  letter-spacing: .5px;
}
.accordion-btn span{
  font-family: 'Poppins';
  padding: 0px 15px 0px 10px;
  color: #fff;
}
.accordion-btn.collapsed{
  color: #fff; 
}
.accordion-body{
  transition: .5s ease;
    color: #fff;
    font-family: 'Poppins';
    font-weight: 300;
    letter-spacing: 1px;
    padding: 25px;
}
.accordion-body p{
  margin: 0 !important;
}
#include li,#exclude li{
  display: inline-flex; 
  margin-bottom: 5px;
}
.list-wrap{
  overflow: hidden;
  font-family: 'Poppins',sans-serif;  
}
#exclude li i{
color: #9b9b9bca;
}
/* ===================== About Us ================= */
.about-img {
  background: url('https://source.unsplash.com/3TLl_97HNJo');
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: Brdr 4.5s linear infinite alternate;

}
.about-img-wp {
width:22vw;
height:45vh;
padding: 30px;
float: left;
}
@keyframes Brdr {
  0% {
    border-radius: 48% 52% 57% 43% / 34% 44% 56% 66%;
}
25% {
    border-radius: 62% 38% 64% 36% / 34% 55% 45% 66%;
}

50% {
    border-radius: 43% 57% 51% 49% / 33% 42% 58% 67%;
}
100% {
    border-radius: 40% 60% 43% 57% / 52% 32% 68% 48%;
}
}
.history p,.message p{
  color: #fff;
  font-family: 'Poppins',sans-serif !important;
  text-align: justify;
}
.missions ul li i{
  font-size: 20px;
  padding-right: 30px;
}
.missions ul li{
  display: flex;
  list-style: none;
  color: #fff;
  font-family:'Poppins',sans-serif;
  font-size: 20px;
}