@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Encode+Sans+SC:wght@300&family=Lato:wght@300&family=Montserrat&family=Roboto+Mono:wght@300&display=swap');


:root{
  --orange:#ffa500;
}
*{
  font-family: 'Nunito', sans-serif;
  margin:0; padding:0;
  box-sizing: border-box;
  text-transform: capitalize;
  outline: none; border:none;
  text-decoration: none;
  transition: all .2s linear;
}

*::selection{
  background:var(--orange);
  color:#fff;
}

html{
  height: 100%; 
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 6rem;
  scroll-behavior: smooth;
}

section{
  padding:2rem 9%;
}

.heading{
  text-align: center;
  padding:2.5rem 0
}

.heading span{
  font-size: 3.5rem;
  background:rgba(255, 165, 0,.2);
  color:var(--orange);
  border-radius: .5rem;
  padding:.2rem 1rem;
}

.heading span.space{
  background:none;
}

.btn{
  font-family: 'Encode sans sc';
  display: inline-block;
  margin-top: 1rem;
  background:var(--orange);
  color:#fff;
  padding:.8rem 3rem;
  border:.2rem solid var(--orange);
  cursor: pointer;
  font-size: 1.3rem;
  border-radius: 25px;
}

.btn:hover{
  background:rgba(255, 165, 0,.2);
  color:var(--orange);
}

header{
  position: fixed;
  top:0; left: 0; right:0;
  background:transparent;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:1rem 9%;
}


header a:hover{
  color:var(--orange);

}

header .logo{
  font-family: 'Nunito', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color:#fff;
  text-transform: uppercase;
}
header .logo span{
  color:var(--orange);
}

header .navbar a{
  color:#fff;
  font-size: 1.5rem;
  margin:0 .8rem;
  font-family:'Encode sans sc';
}

header .navbar a:hover{
  color:var(--orange);
}

header .icons i{
  font-size: 2.5rem;
  color:#fff;
  cursor: pointer;
  margin-right: 2.5rem;
}

header .icons i:hover{
  color:var(--orange);
}

header .search-bar-container{
  position: absolute;
  top:100%; left: 0; right:0;
  padding:1.5rem 2rem;
  background:#333;
  border-top: .1rem solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  z-index: 1001;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

header .search-bar-container.active{
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

header .search-bar-container #search-bar{
  width:100%;
  padding:1rem;
  text-transform: none;
  color:#333;
  font-size: 1.7rem;
  border-radius: .5rem;
}

header .search-bar-container label{
  color:#fff;
  cursor: pointer;
  font-size: 3rem;
  margin-left: 1.5rem;
}

header .search-bar-container label:hover{
  color:var(--orange);
}

.login-form-container{
  position: fixed;
  top:-120%; left: 0;
  z-index: 10000;
  min-height: 100vh;
  width:100%;
  background:rgba(0,0,0,.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-form-container.active{
  top:0;
}

.login-form-container form{
  margin:2rem;
  padding:1.5rem 2rem;
  border-radius: .5rem;
  background:#fff;
  width:50rem;
}

.login-form-container form h3{
  font-size: 3rem;
  color:#444;
  text-transform: uppercase;
  text-align: center;
  padding:1rem 0;
}

.login-form-container form .box{
  width:100%;
  padding:1rem;
  font-size: 1.7rem;
  color:#333;
  margin:.6rem 0;
  border:.1rem solid rgba(0,0,0,.3);
  text-transform: none;
}

.login-form-container form .box:focus{
  border-color: var(--orange);;
}

.login-form-container form #remember{
  margin:2rem 0;
}

.login-form-container form label{
  font-size: 1.5rem;
}

.login-form-container form .btn{
  display: block;
  width:100%;
}

.login-form-container form p{
  padding:.5rem 0;
  font-size: 1.5rem;
  color:#666;
}

.login-form-container form p a{
  color:var(--orange);
}

.login-form-container form p a:hover{
  color:#333;
  text-decoration: underline;
}

.login-form-container #form-close{
  position: absolute;
  top:2rem; right:3rem;
  font-size: 5rem;
  color:#fff;
  cursor: pointer;
}

#menu-bar{
  color:#fff;
  border:.1rem solid #fff;
  border-radius: .5rem;
  font-size: 3rem;
  padding:.5rem 1.2rem;
  cursor: pointer;
  display: none;
}


.home{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  position: relative;
  z-index: 0;
}

.home .content{
  text-align: center;
}

.home .content h3{
  font-size: 4.5rem;
  color:#fff;
  text-transform: uppercase;
  text-shadow: 0 .3rem .5rem rgba(0,0,0,.1);
  font-weight: bold;
  margin: 2rem 1rem;
}

.home .content p , b{
  font-family: 'lato';
  font-size: 2.5rem;
  color:#fff;
  padding:2rem 0;
}

.home .video-container video{
  position: absolute;
  top:0; left: 0;
  z-index: -1;
  height: 100%;
  width:100%;
  object-fit: cover;
}

.home .controls{
  padding:1rem;
  border-radius: 5rem;
  background:rgba(0,0,0,.7);
  position: relative;
  top:10rem;
}

.home .controls .vid-btn{
  height:2rem;
  width:2rem;
  display: inline-block;
  border-radius: 50%;
  background:#fff;
  cursor: pointer;
  margin:0 .5rem;
}

.home .controls .vid-btn.active{
  background:var(--orange);
}




/* Explore Section*/




.roww{
  display: flex;
  width: 100%;
  background: #f3f7fb;
  border-radius: 15px;
  overflow: hidden;
  
}

.col-1, .col-2{
  flex-basis: 50%;
  overflow: hidden;

}

.col-2 img{
  width: 100%;

}



 .col-1{
   padding: 8% 5%;
   position: relative;
  

 }

 .col-1 h1{
   font-size: 60px;
   line-height: 80px;
   letter-spacing: 2px;
   color: #333;
 }
 .col-1 p{
   color: #777;
   line-height: 22px;
   margin: 15px 0 30px;

 }
 .col-1 ul{
  position: absolute;
  bottom: 30px;
}
.col-1 ul li{
   list-style: none;
   width: 15px;
   height: 15px;
   display: inline-block;
   background: #bfbfbf;
   border-radius: 50%;
   cursor: pointer; 
   margin-right: 15px;
  }

  .col-1 ul .activel1{
    background: #333;
  }

.zoom{
  animation: zoomout 0.5s linear 1;
}

@keyframes zoomout{
 0% {
      transform: scale(1.2);  
    }
100%{
      transform: scale(1);  
    }
}

/* Explore Section end*/

/*packages Start*/

.packages .box-container{
  display: flex;
  flex-wrap: wrap;
  gap:2rem;
}

.packages .box-container .box{
  flex:1 1 30rem;
  border-radius: .5rem;
  overflow: hidden;
  box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
}

.packages .box-container .box img{
  height: 25rem;
  width:100%;
  object-fit: cover;
}

.packages .box-container .box .content{
  padding:2rem;
}

.packages .box-container .box .content h3{
  font-size:2rem;
  color:#333;
}

.packages .box-container .box .content h3 i{
  color:var(--orange);
}

.packages .box-container .box .content p{
  font-size:1.7rem;
  color:#666;
  padding:1rem 0;
}

.packages .box-container .box .content .stars i{
  font-size:1.7rem;
  color:var(--orange);
}

.packages .box-container .box .content .price{
  font-size: 2rem;
  color:#333;
  padding-top: 1rem;
}

.packages .box-container .box .content .price span{
  color:#666;
  font-size: 1.5rem;
  text-decoration: line-through;
}
/*packages End*/

/*Services Start*/

.services .box-container{
  display: flex;
  flex-wrap: wrap;
  gap:2rem;
}

.services .box-container .box{
  flex: 1 1 30rem;
  border-radius: .5rem;
  padding:1rem;
  text-align: center;
  
}

 .box-container .box i{
  padding:1rem;
  font-size: 5rem;
  color:var(--orange);
}

 .box-container .box h3{
  font-size: 2.5rem;
  color:#333;
}

.box-container .box p{
  font-size: 1.5rem;
  color:#666;
  padding:1rem 0;
}

 .box-container .box:hover{
  box-shadow: .5rem .5rem .5rem .5rem  #4b4b4b;
}

/*Services End*/


.gallery .box-container{
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem;
}

.gallery .box-container .box{
  overflow: hidden;
  box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
  border:1rem solid #fff;
  border-radius: .5rem;
  flex:1 1 30rem;
  height: 25rem;
  position: relative;
}

.gallery .box-container .box img{
  height: 100%;
  width:100%;
  object-fit: cover;
}

.gallery .box-container .box .content{
  position: absolute;
  top:-100%; left:0;
  height: 100%;
  width:100%;
  text-align: center;
  background:rgba(0,0,0,.7);
  padding:2rem;
  padding-top: 5rem;
}

.gallery .box-container .box:hover .content{
  top:0;
}

.gallery .box-container .box .content h3{
  font-size: 2.5rem;
  color:var(--orange);
}

.gallery .box-container .box .content p{
  font-size: 1.5rem;
  color:#eee;
  padding:.5rem 0;
}


.team {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 5rem 20rem 5rem;
}

.cards-wrapper {
  display: flex;
  justify-content: space-evenly;
  margin-top: 0rem;
  width: 100%;
}

.card {
  width: 37rem;
  height: 45rem;
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.4);
  border-radius: 0.5rem;
  position: relative;
}

.card-img-wrapper {
  width: 100%;
  height: 100%;
  background-color: #262626;
  border-radius: 0.5rem;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  border-radius: 0.5rem;
  transition: opacity 0.3s;
}

.card:hover .card-img-wrapper img {
  opacity: 0.5;
}

.card-info {
  position: absolute;
  bottom: 0;
  padding: 2rem;
  text-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.card:hover .card-info {
  bottom: 2rem;
  opacity: 1;
  visibility: visible;
}

.card-info h2 {
  font-family: "Nunito", serif;
  font-size: 2.5rem;
  line-height: 2.5rem;
  font-weight: 300;
  color: #eee;
}

.card-info h3 {
  font-family: "Nunito", serif;
  font-size: 2rem;
  font-weight: 500;
  color: #d6a938;
  margin-bottom: 1rem;
}

.card-info p {
  font-family: "lato", serif;
  font-size: 1.4rem;
  line-height: 1.6rem;
  font-weight: 300;
  color: #eee;
  width: 80%;
  margin-bottom: 2rem;
}

.section-header{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 0 3rem 0  ;
}

.section-heading {
  font-family: "lato", serif;
  font-size: 5rem;
  font-weight: 300;
  color: #4b4b4b;
  margin-bottom: 2rem;
}

.underline {
  width: 12rem;
  height: 0.3rem;
  background-color: #c29525;
}


.contact .row{
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem;
  align-items: center;
}

.contact .row .image{
  flex:1 1 35rem;
}

.contact .row .image img{
  width:100%;
}

.contact .row form{
  flex:1 1 50rem;
  padding:2rem;
  box-shadow: 0 1rem 2rem rgba(0,0,0,0.5);
  border-radius: .5rem;
}

.contact .row form .inputBox{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact .row form .inputBox input, .contact .row form textarea{
  text-align: center;
  font-family: 'Encode Sans SC';
  width:49%;
  margin:1rem 0;
  padding:1rem;
  font-size: 1.7rem;
  color:#333;
  background:#e7eeef;
  text-transform: none;
  border-radius: 10px;
}

.contact .row form textarea{
  height: 15rem;
  resize: none;
  width:100%;
}



.review .review-slider{
  padding-bottom: 2rem;
}



.review .box{
  padding:2rem;
  text-align: center;
  box-shadow: 1rem 1rem 1rem 1rem rgba(0,0,0,.1);
  border-radius: .5rem;
}

.review .box img{
  height:13rem;
  width:13rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.review .box h3{
  font-weight: 700;
  color:#333;
  font-size: 2.5rem;
}

.review .box p{
  color:#666;
  font-size: 1.5rem;
  padding:1rem 0;
}

.review .box .stars i{
  color:var(--orange);
  font-size: 1.7rem;
}


.carousel{
  background: #f3f9f9;
  border-radius: 10px;
}



a:link { text-decoration: none; }


a:visited { text-decoration: none; }


a:hover { text-decoration: none; }


a:active { text-decoration: none; }



footer{
  
  width: 100%;
  position: absolute;
  bottom: 0;
  background: linear-gradient(to right, #00093c, #2d0b00);
  color: #fff;
  padding: 100px 0 30px;
  font-size: 13px;
  line-height: 20px;

}




.rowss{
  width: 85%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.coll{
  flex-basis: 25%;
  padding: 10px;
}
.coll:nth-child(2), .coll:nth-child(3)
{
  flex-basis: 15%;
}

.coll h3{
  font-family: 'Encode Sans SC';
  width: fit-content;
  margin-bottom: 40px;
  position: relative;
}

.email-id{
  width: fit-content;
  border-bottom: 1px solid #ccc;
  margin: 20px 0;
}

.coll ul li{
  list-style: none;
  margin-bottom: 12px;
}

.coll ul li a{
  text-decoration: none;
  color:#fff;
  font-family: 'Encode Sans SC';
}

.coll ul li a:hover{
  color:var(--orange);

}
.coll p{
  font-family:'Encode Sans SC';
}



#footer {
  position:relative;
  bottom: 0;
 
}

.social-icons .fab{
  width: 40px;  
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  color: #000;
  background: #fff;
  margin-right: 20px;
  cursor: pointer;
}






hr{
  width: 90%;
  border:0;
  border-bottom: 1px soled #ccc;
  margin: 20px auto;
}

.copyright{
  text-align: center;
  font-family: 'Encode Sans SC';
  font-weight: 700;
}

.underlinee{
  width: 100%;
  height: 5px;
  background: #767676;
  border-radius: 4px;
  position:absolute;
  top: 25px;
  left:0;
  overflow: hidden;
}


.underlinee span{
  width: 15px;
  height: 100%;
  background: #fff;
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 10px;
  animation: moving 2s linear infinite;
}



@keyframes moving{
  0%{
    left: -20px;
  }
  100%{
    left: 100%;
  }
}




.coll h2{
  font-family: 'Encode Sans SC';
margin-bottom: 15%;
}




::-webkit-scrollbar
{
  width:0;
}

#scrollpath{
  position: fixed;
  top: 0; right: 0;width: 10px;height: 100%;
  background: transparent;
}

#progressbar
{
  position: fixed;
  top: 0; right: 0;width: 10px;
  background: linear-gradient(to top, #f5d994 , #ffb400);
  animation: animate 5s linear infinite;
}

@keyframes animate 
{
  0%, 100%
  {
    filter: hue-rotate(0deg);
  }
  
  50%
  {
    filter: hue-rotate(360deg);
  }
}

#progressbar:before
{
  content: '' ;
  position:absolute;
  position: fixed;
  top: 0; right: 0;width: 100%;height: 100%;
  background: linear-gradient(to top, #fff0cc, #ffb400);

  filter:blur(5px);
}
.container
{
	position: relative;
	width: 1200px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.container .box
{
	position: relative;
	width: 280px;
	height: 400px;
	margin: 20px 0;
	box-sizing: border-box;
	overflow: hidden;
  border-radius: 5%;
}
.container .box .imgBx
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	clip-path: circle(400px at center 100px);
	transition: 0.5s;
	transition-delay: 0.5s;
}
.container .box:hover .imgBx
{
	clip-path: circle(80px at center 100px);
	transition-delay: 0s;
}
.container .box .imgBx img
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.container .box .content
{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 55%;
	padding: 20px;
	box-sizing: border-box;
	text-align: center;
}
.container .box .content h2
{ font-family: 'berlin sans fb';
  src: local('Berlin Sans FB'), url('BRLNSR.woff') format('woff');
	margin: 0 0 2rem 0;
	padding: 0;
}.container .box .content p
{
	margin: 0 0 1rem 0;
	font-family: 'Montserrat';
}

.container .box .content a
{
	text-decoration: none;
	background: #000;
	color: #fff;
	padding: 5px;
	display: inline-block;
}
.container .box .content h2,
.container .box .content p,
.container .box .content a
{
	opacity: 0;
	transition: 0.5s;
	transform: translateY(20px);
}
.container .box:hover .content h2
{
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.5s
}
.container .box:hover .content p
{
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.7s
}
.container .box:hover .content a
{
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.9s
}












.scrolling-active{
  background-color: #222;
  box-shadow: 0 3px 1rem rgba(0,0,0,.1);
}

.scrolling-active .navbar{
  height: 6rem;
}

.scrolling-active .navbar a{
  color: #fff;
}

.scrolling-active #nav-cta{
  background-color: #313131;
  color: #fff;
}

.scrolling-active #nav-cta:hover{
  background-color: #151515;
}

.scrolling-active .nav-link::after{
  background-color: #313131;
}








































































/* media queries  */
@media (max-width:1200px){
  .col-2 img {
    width: 70rem;
    height: 70rem;

  }
  .col-2{
    display:contents;
  }

.col-1 h1{
  font-size: 3rem;
  font-weight: bold;
  }

.col-1 ul li{
  margin-bottom: 3rem;
}
.col-1 a .btn{
  margin: 5px 5px 5px 5px;
}
}

@media (max-width:1200px){

  html{
    font-size: 55%;
    
  }

}

@media (max-width:991px){

  header{
    padding:2rem;
  }

 

}

@media (max-width:768px){

  #menu-bar{
    display: initial;
  }

  header .navbar{
    position: absolute;
    top:100%; right:0; left: 0;
    background: #333;
    border-top: .1rem solid rgba(255,255,255,.2);
    padding:1rem 2rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }

  header .navbar.active{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  header .navbar a{
    display: table-column;
    border-radius: .5rem;
    padding:1.5rem;
    margin:5px 5px 5px 5px;    
    background:#222;
    position: relative;
  }

}

@media (max-width:450px){

  html{
    font-size: 50%;
  }

  .heading span{
    font-size: 2.5rem;
  }

  .contact .row form .inputBox input{
    width:100%;
  }

}



@media (max-width:700px)
{
  footer{bottom:unset;}
  .coll{
    flex-basis: 100%;
    margin:  3px 3px 3px 3px;
    
  }
  .coll:nth-child(2), .coll:nth-child(3)
  {
    flex-basis: 100%;
    margin:  5px 5px 5px 5px;
    
  }
 
}





  @media screen and (max-width: 600px) {
    .container {
      flex: 100%;
      max-width: 100%;
    }
  }