*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* ::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  background: #333333; 
}
 
::-webkit-scrollbar-thumb {
  background: #DFB96E; 
}

::-webkit-scrollbar-thumb:hover {
  background: #f00c0d; 
} */

i{
  cursor: pointer;
}

.wrapper{
  overflow: hidden;
}


/* online reservation model */

.onreser-model .modal-header{
  display: flex;
  justify-content: center;
  align-items: center;
}

.onreser-model .modal-header h1{
  color: #f00c0d;
  text-align: center;
}

.onreser-model .modal-header span{
  position: absolute;
  color: #a7a7a7;
  top: 4%;
  right: 3%;
  font-weight: 500;
  font-size: 23px;
  cursor: pointer;
  transition: all ease  0.3s;
}

.onreser-model .modal-header span:hover{
  color: #f00c0d;
}


.onreser-model .modal-body input{
  padding: 3px 8px;
}
.onreser-model .modal-body select{
  padding: 4.5px 8px;
}

.onreser-model .modal-body a{
  padding: 5px 0;
  text-decoration: none;
  text-align: center;
  color: #fff;
  background-color: #f00c0d;
  transition: all ease  0.3s;
}

.onreser-model .modal-body a:hover{
  background-color: #b80909;
}


/* online reservation model */







/* header section start */
.top-section{
    background-color: #000;
}

.top-section .box1 p{
  margin: 0;
  display: inline;
  padding: 0 15px;
  color: #f00c0d;
  font-size: 16px;
  font-weight: bold;
  /* animation: flash 7s ease infinite; */
  animation-name: flash;
  animation-duration: 6s;
  animation-direction: normal;
  animation-iteration-count: infinite;
}

@keyframes flash {
  1%{
    color: #000;
  }
  20%{
    color: #f00c0d;
  }
  40%{
    color: #f00c0d;
  }
  60%{
    color: #f00c0d;
  }
  80%{
    color: #f00c0d;
  }
  100%{
    color: #f00c0d;
  }
}


.top-section .box2 p{
    margin: 0;
    display: inline;
    padding: 0 15px;
    color: #ffffff;
    font-size: 14px;
}

.top-section .box2 i{
    padding-inline: 3px;
}

.top-section .box2 a{
  color: #ffffff;
  text-decoration: none;
}

.header-section{
    background-color: #fff;
}

.header-section .box2 a{
    display: block;
    text-decoration: none;
    padding: 4px 8px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    outline: solid 1px #f00c0d;
    background-color: #f00c0d;
    border-radius: 2px;
    /* background: linear-gradient(20deg, #f00c0d, #ffffff, #f00c0d); */
    transition: 0.3s all ease-in-out;
}

.header-section .box2 a:hover{
  background-color: transparent;
  color: #f00c0d;
  outline: solid 1px #f00c0d;
    /* background: linear-gradient(45deg, #ffffff, #f00c0d, #ffffff); */
}


.header-section .box3 p{
  font-weight: 600;
  margin: 0;
  text-align: center;
}

.header-section .box3 p span{
  color: #f00c0d;
}

/* header section end */


/* home section start */

.home-section{
    background-color: #333333;
    padding: 15px 0;
    display: none;
}

.home-section h1{
   color: #ffffff;
   font-size: 77px;
   margin-top: 50px;
   font-family:Georgia, 'Times New Roman', Times, serif;
}

.home-section h1 span{
    color: #DFB96E;
 }

 .home-section p{
    color: #ffffff;
    font-size: 18px;
    margin: 20px 0;
 }


 .demo .content{
  margin: 0 0 0 10%;
}

.demo .content h1{
  color: #ffffff;
  font-size: 77px;
  margin-top: 70px;
  font-family:Georgia, 'Times New Roman', Times, serif;
}

.demo .content h1 span{
   color: #f00c0d;
}

.demo .content p{
   color: #ffffff;
   font-size: 25px;
   margin: 20px 0;
   font-family:Georgia, 'Times New Roman', Times, serif;
}


.demo .box1{
  background-image: url('../img/banner3.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 525px;
}

.demo .box2{
  background-image: url('../img/banner2.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 525px;
}

.demo .box3{
  background-image: url('../img/banner1.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 525px;
}

/* home section end */

/* form section start */

.form-section{
  background-color: #fff;
  padding: 20px 0 25px 0;
}

.form-section h1{
  color: #f00c0d;
  font-family:Georgia, 'Times New Roman', Times, serif;
  text-align: center;
}

  .form-section label{
   font-weight: 600;
   color: #ffffff;
   font-weight: normal;
   color: #DFB96E;
   display: none;
  }

.form-section input{
    width: 100%;
    padding: 8px;
    border: none;
    outline: none;
    background: transparent;
    border-bottom: #000 1px solid;
    border-radius: 5px;
    color: #000;
}

.form-section input::placeholder{
    font-size: 15px;
    color: #000;
    font-family:Georgia, 'Times New Roman', Times, serif;

}

.form-section input:focus{
    color: #000;
    border-bottom: #f00c0d 1px solid;
    /* font-family:Georgia, 'Times New Roman', Times, serif; */
}

.form-section input:focus::placeholder{
  color: #000;
}

.form-section a{
    display: block;
    text-decoration: none;
    padding: 5.5px 0;
    text-align: center;
    color: #ffffff;
    background-color: #f00c0d;
    outline: #f00c0d solid 1px;
    border-radius: 5px;
    transition: 0.3s all ease-in-out;
    font-family:Georgia, 'Times New Roman', Times, serif;
}

.form-section a:hover{
  background-color: #ffffff;
  color: #f00c0d;
  outline: #f00c0d solid 1px;
}


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* .reveal{
  position: relative;
  transform: translateY(-150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active{
  transform: translateY(0);
  opacity: 1;
} */


/* form section start */

/* service section start */

/* .service-section{
    background-color: #222222;
    padding: 30px 0;
}

.service-section h6{
    color: #ffffff;
    margin: 0;
}

.service-section P{
    color: #ffffff;
    margin: 0;
}
 */
/* service section end */

/* about section start */

.about-section{
    background-image: url('../img/about-banner.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
}

.about-section h1{
    font-size: 77px;
    color: #fff;
    font-family:Georgia, 'Times New Roman', Times, serif;
}

.about-section h1 span{
    color: #f00c0d;
}

.about-section p{
    color: #fff;
    font-size: 14px;
    font-family:Georgia, 'Times New Roman', Times, serif;
}

.about-section a{
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s all ease-in-out;
}

.about-section a:hover{
    color: #000000;
}

/* .reveal4{
  position: relative;
  transform: scale(2);
  opacity: 0;
  transition: 1s all ease;
}

.reveal4.active{
  transform: scale(1);
  opacity: 1;
} */

/* about section end */

/* destination section start */

.destination-section{
    background-color: #fff;
    padding: 50px 0;
}

.destination-section h1{
    font-size: 77px;
    color: #000;
    font-family:Georgia, 'Times New Roman', Times, serif;
}

.destination-section h1 span{
    color: #f00c0d;
}

.destination-section p{
    color: #000;
    font-family:Georgia, 'Times New Roman', Times, serif;

}

/* destination hover style */

.destination-section .carousel-wrapper .item{
    position: relative;
  }

  .destination-section .carousel-wrapper .item img{
   border-radius: 20px;

  }

.destination-section .carousel-wrapper .item .content{
    position: absolute;
    z-index: 100;
    height: 99.5%;
    width: 99.2%;
    top: 0.3%;
    left: 0.5%;
      transition: .5s ease;
  }

  .destination-section .carousel-wrapper .item:hover .content{
   opacity: 0;
  }

  .destination-section .carousel-wrapper .item .content h2{
   color: #ffffff;
   font-size: 2rem;
   margin: 90% 0 0 0;
  }

  .destination-section .carousel-wrapper .item .content p{
    color: #ffffff;
    font-size: 20px;
   }





   .destination-section .carousel-wrapper .item .content2{
    position: absolute;
    opacity: 0;
    z-index: 100;
    height: 99.2%;
    width: 99.3%;
    top: 0.3%;
    left: 0.3%;
      transition: .5s ease;
    border-radius: 15px;
    text-align: center;
  }

  .destination-section .carousel-wrapper .item:hover .content2{
    opacity: 1;
    background-color: #fff;
    outline: #f00c0d solid 1px;
   }

   .destination-section .carousel-wrapper .item:hover .content2 p{
    transform: translateY(-25px);
  }


   .destination-section .carousel-wrapper .item .content2 p{
   margin: 50% 0 0% 0;
   transition: .5s ease;
  }

  .destination-section .carousel-wrapper .item .content2 a{
    padding: 10px 20px;
    background-color: #f00c0d;
    color: #fff;
    text-decoration: none;
    transition: ease-in-out all 0.2s;
   }

   .destination-section .carousel-wrapper .item .content2 a:hover{
    background-color: transparent;
    color: #f00c0d;
    outline: #f00c0d solid 1px;
   }


 /* destination hover style */





 
   /* .destination-section .carousel-wrapper .item img:hover{
    opacity: 0;
   } */
 

/* carousel navbar styling */

.carousel-wrapper {
    position: relative;
    font-family:Georgia, 'Times New Roman', Times, serif;
  }
  .carousel-wrapper  .owl-carousel .owl-nav {
    overflow: hidden;
    height: 0px;
  }
  .carousel-wrapper .owl-theme .owl-dots .owl-dot.active span,
  .carousel-wrapper .owl-theme .owl-dots .owl-dot:hover span {
    background: #5110e9;
  }

  /* .owl-carousel .item {
    text-align: center;
  } */
  .carousel-wrapper .owl-carousel .nav-button {
    background-color: transparent !important;
    cursor: pointer;
    position: absolute;
    top: 150px !important;
  }

  .carousel-wrapper .owl-carousel .nav-button h2{
    font-size: 45px !important;
    color: #f00c0d;
    font-weight: 600;
  }
  .carousel-wrapper .owl-carousel .owl-prev.disabled,
  .carousel-wrapper .owl-carousel .owl-next.disabled {
    pointer-events: none;
    opacity: 0.25;
  }
  .carousel-wrapper .owl-carousel .owl-prev {
    left: -70px;
  }
  .carousel-wrapper .owl-carousel .owl-next {
    right: -70px;
  }
  .carousel-wrapper .owl-theme .owl-nav [class*=owl-] {
    color: #ffffff;
    font-size: 39px;
    background: #000000;
    border-radius: 3px;
  }
  .carousel-wrapper .owl-carousel .prev-carousel:hover {
    background-position: 0px -53px;
  }
  .carousel-wrapper .owl-carousel .next-carousel:hover {
    background-position: -24px -53px;
  }

  /* carousel navbar styling */

  /* .reveal3{
    position: relative;
    transform: translatex(150px);
    opacity: 0;
    transition: 1s all ease;
  }
  
  .reveal3.active{
    transform: translatex(0);
    opacity: 1;
  }
 */

/* destination section end */



/* ski section start */

.ski-section{
  background-color: #fff;
  padding: 50px 0;
}

.ski-section h1{
  font-size: 77px;
  color: #000;
  font-family:Georgia, 'Times New Roman', Times, serif;
}

.ski-section h1 span{
  color: #f00c0d;
}

.ski-section p{
  color: #000;
  font-family:Georgia, 'Times New Roman', Times, serif;
}

/* ski hover style */

.ski-section .carousel-wrapper .item{
  position: relative;
}

.ski-section .carousel-wrapper .item img{
  border-radius: 20px;
}

.ski-section .carousel-wrapper .item .content{
  position: absolute;
  z-index: 100;
  height: 99.5%;
  width: 99.2%;
  top: 0.3%;
  left: 0.5%;
  transition: .5s ease;
  /* background-color: #33333304; */
}

.ski-section .carousel-wrapper .item:hover .content{
 opacity: 0;
}
 

.ski-section .carousel-wrapper .item .content h2{
 color: #ffffff;
 font-size: 2rem;
 margin: 90% 0 0 0;
}

.ski-section .carousel-wrapper .item .content p{
  color: #ffffff;
  font-size: 18px;
 }





 .ski-section .carousel-wrapper .item .content2{
  position: absolute;
  opacity: 0;
  z-index: 100;
  height: 99.3%;
  width: 99.2%;
  top: 0.3%;
  left: 0.4%;
  transition: .5s ease;
  border-radius: 15px;
  text-align: center;
}

.ski-section .carousel-wrapper .item:hover .content2{
  opacity: 1;
  background-color: #fff;
  outline: #f00c0d solid 1px;
 }


 .ski-section .carousel-wrapper .item .content2 p{
  margin: 50% 0 0% 0;
  transition: .5s ease;
}

.ski-section .carousel-wrapper .item:hover .content2 p{
  transform: translateY(-25px);
 }


.ski-section .carousel-wrapper .item .content2 a{
  padding: 10px 20px;
  background-color: #f00c0d;
  color: #fff;
  text-decoration: none;
  transition: ease-in-out all 0.2s;
 }

 .ski-section .carousel-wrapper .item .content2 a:hover{
  background-color: transparent;
  color: #f00c0d;
  outline: #f00c0d solid 1px;
 }

 /* .reveal2{
  position: relative;
  transform: translateX(-150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal2.active{
  transform: translateX(0);
  opacity: 1;
} */

/* ski hover style */

/* ski section end */



/* review section start */

.review-section{
    background-color: #fff;
    padding: 50px 0 50px 0;
}

.review-section h1{
  color: #000;
  margin-bottom: 50px;
  text-align: center;
  font-family:Georgia, 'Times New Roman', Times, serif;
}

.review-section .box{
  background-color: rgba(128, 128, 128, 0.205) !important;
  padding: 20px 40px;
  border-radius: 20px;
}


.review-section .icon{
  padding: 10px 20px 0 0;
  border-radius: 50%;
}

.review-section .content h3{
  color: #000;
  display: inline;
  font-family:Georgia, 'Times New Roman', Times, serif;
}

.review-section .content p{
  color: #000;
  font-size: 12px;
  font-family:Georgia, 'Times New Roman', Times, serif;
}



/* review section end */

/* footer section start */

.footer-section{
  background-color: #fff;
  padding: 40px 0 40px 0;
  border-top: solid 1px #f00c0d;
}

.footer-section .box1 h4{
color: #000;
margin: 25px 0 15px 0;
text-align: center;
font-family:Georgia, 'Times New Roman', Times, serif;
}

.footer-section .box1 h4 span{
  color: #f00c0d;
  font-family: sans-serif;
  font-size: 20px;
  }
  

.footer-section .box1 p{
  color: #000;
  text-align: center;
  font-size: 12px;
  font-weight: normal;
  margin: 0;
  font-family:Georgia, 'Times New Roman', Times, serif;

  }
  

  .footer-section .box2 h3{
    color: #000;
    margin: 0 0 20px 0;
    text-align: center;
    font-family:Georgia, 'Times New Roman', Times, serif;
    }
    

  .footer-section .box2 p{
    display: inline;
    font-size: 16px;
    color: #000;
    margin: 0 0 0 10px;
    
    }

    .footer-section .box2 .social{
      text-align: center;
      }

  
    .footer-section .box2 a{
      color: #000;
      text-decoration: none;
      }
  

    /* .footer-section .box3 h3{
      color: #000;
      margin: 0 0 20px 0;
      font-family:Georgia, 'Times New Roman', Times, serif;
      }
      
  
    .footer-section .box3 p{
       color: #000;
      } */

      .footer-section .box3 .btn-box{
       display: flex;
       gap: 20px;
       justify-content: center;
       }
 



       .footer-section .box3 .btn-box a{
        text-decoration: none;
        padding: 5px 7px;
        font-size: 15px;
        font-weight: 600;
        text-align: center;
        color: #fff;
        outline: solid 1px #f00c0d;
        background-color: #f00c0d;
        border-radius: 2px;
        transition: 0.3s all ease-in-out;
    }
    
    .footer-section .box3 .btn-box a:hover{
      background-color: transparent;
      color: #f00c0d;
      outline: solid 1px #f00c0d;
    }
    
    .footer-section .box3 h4{
      font-family:Georgia, 'Times New Roman', Times, serif;
      font-size: 20px;
      color: #000;
      text-align: center;
      margin: 20px 0 0 0;
      }


       .copyright{
        border-top: solid #000 1px;
        background-color: #000;
       }

       .copyright p{
        margin: 0;
        color: #fff;
        font-size: 14px;
        font-family:Georgia, 'Times New Roman', Times, serif;

       }
 
/* footer section end */

/* success */
main{
  padding: 6vw 20vw;
}
main .success{
  padding: 3vw;
  border-top: green 0.5vw solid;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  text-align: center;
  border-bottom-left-radius: 1vw;
  border-bottom-right-radius: 1vw;
}
main .success h1{
  font-size: 4vw;
  margin: 2vw 0 4vw 0;
}
main .success i{
  color: green;
  font-size: 5vw;
  animation-name: jackInTheBox;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}
main .success p{
  font-size: 2vw;
  margin: 4vw 0 2vw 0;
}
/* success */


/* scroll top */
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #0a0a0a;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #555;
}
/* scroll top */
