

/*home section start*/
.home{
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2)),url(img/home\ pic.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.home .content{
  text-align: center;
  padding-top: 180px;
}
.home .content h2{
  color: white;
  font-size: 50px;
  font-weight: 500;
  text-shadow: 4px 4px 1px black;
  font-family: 'Libre Baskerville', serif;
  word-spacing: 20px;
  letter-spacing: 5px; 
}
.home .content h1{
  color: white;
  font-size: 50px;
  font-weight: 500;
  text-shadow: 1px 2px 1px black;
  font-family: 'Libre Baskerville', serif;
  word-spacing: 20px;
  letter-spacing: 5px;

}
.changecontent::after{
  content:' ' ;
  margin-top: 10px;
  color:orangered;
  font-family: 'Aclonica', sans-serif;
  text-shadow: 1px 2px 2px white;
  animation: changetext 15s infinite linear;
  

}
@keyframes changetext {
 0%{content: "Hunza Valley";}
 10%{content: "Attabad Lake";}
 20%{content: "Swat Valley";}
 30%{content: " Naran Kaghan";}
 40%{content: "Neelum Valley";}
 

}

.home .content h4{
  color: white;
  font-size: 25px;
  font-weight: 500;
  text-shadow: 2px 2px 1px black;
  font-family: 'Libre Baskerville', serif;
  word-spacing: 5px;
}
.home .content a:hover{
  background-color: orangered;
}
/*home section end*/




/*destinaton section start*/
.carousel-item img{
  width: 100%;
  height: 85vh;
}
.carousel-item .carousel-caption {
  bottom: 23.5rem;
}

/*destination section end*/




/*packages section start*/

.packages .card{
  border-radius: 5px;
  border: none;
  box-shadow: rgba(0,0,0,0.3) 0px 4px 12px;
}
.packages  .card .card-img-top:hover{
  border-radius: 5px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.packages .card .card-body{
  background: transparent;
}
/*packages section end*/




.parallax {
  /* The image used */
  background-image: url("img/parallax.jpg");

  /* Set a specific height */
  min-height: 500px; 

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}