*{
    margin: 0;
    padding: 0;
    box-sizing:border-box;
    font-family: 'Yanone Kaffeesatz', sans-serif;
}
HTML{
    scroll-behavior: smooth;
}
body{
    background-color: #e1e8ed;


 /********************************************************************************************************************** 
                                     NAVIGATION BAR STYLING
 **********************************************************************************************************************/  
}
#top-search{
    background-color: black;
    padding: 0px 5%;
    height: 0px;
}
.input-box{
    position: relative;
}
#top-search .search{
    width: 100%;
    height: 40px;
    padding: 0 30px 0 30px;
    border: none;
    background-color: transparent;
    color: #fff;
    font-size: 17px;

}
#top-search .search::placeholder{
    font-size: 17px;
    color: #fff;
}
#top-search .search:focus{
    outline: none;
}
.topser-icon{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: transparent;
    color: #fff;
    font-size: 27px;
    border: none;
    transform: rotate(-45deg);
    -webkit-transform:rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform:rotate(-45deg);
    -o-transform: rotate(-45deg);
}
#topsercross-icon{
    position: absolute;
    right: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    top: 3px;
}

.header{
    position: relative;
    background:linear-gradient(to left top, #031A9A, #00BFFF);
    padding: 0 5%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
}
.header .logo img{
    max-height: 100px;
    padding-top: 5px;
}

.navbar ul{
    list-style: none;
}
.navbar>ul{
    display: flex;
    flex-direction: row;
}
.navbar ul li a{
    position: relative;
    display: block;
    color:#101010;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    padding: 22px 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition:all .5s;
   -o-transition: all .5s;
}

.navbar ul li a.active,
.navbar ul>li>a:hover{
    color:#ddd;
}
.ser-btn ul{
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    gap: 20px;
}
.ser-btn ul li a{
    text-decoration: none;
}
.ser-btn #ser-btn-icon{
    display: inline-block;
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    display: none;
}
.ser-btn .enquiry-btn a{
    padding: 10px 15px;
    color: #101010;
    font-size: 15px;
    display: block;
    background-color: white;
    border: 2px solid #002D62 ;
    text-align: center;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    -moz-border-radius:4px;
    -ms-border-radius:4px;
    -o-border-radius:4px;
    transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition:all .5s;
    -o-transition: all .5s;

}
.ser-btn .enquiry-btn a:hover{
    color:white;
    background-color:#002D62;
    border: 2px solid #B9D9EB ;
}
#bar-icon{
    display: none;
}

.navbar ul ul li a .arrow-right{
    display: block;
    position: absolute;
    right: 10px;
    top: 8px;
}
 /********************************************************************************************************************** 
                                    HOME SECTION STYLING
 **********************************************************************************************************************/

.home{
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    position: relative;
    z-index: 0;
    text-align: center;
}
.home .content h3{
    font-size: 4.5rem;
   color: #fff;
   text-transform: uppercase;
   text-shadow: .3rem .5rem rgba(0, 0, 0, .1);
}
.home .content p{
    font-size: 1.5rem;
    color: #fff;
    padding: .5rem 0;
}
.homebtn{
    background-color: transparent;
    margin-top: 1rem;
    padding: .5rem 2rem;
    border-radius: 20px;
    transition: .5s;
}
.homebtn a{
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
}
.homebtn:hover{
    background-color: #101010;
}
.homebtn:hover a{
    color: white;
}
.home .video-container img{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    object-position: center;
    object-fit: cover;
}

.home .controls{
    padding: .5rem;
    border-radius: 5rem;
    background:transparent;
    position: relative;
    top: 13rem;
    transition: .5s;
    
}

.home .controls .vid-btn{
  height: 1.5rem;
  width: 1.5rem;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  margin:  0 .5rem;
}
.home .controls .vid-btn.active{
    background-color: #002D62;
}

 /********************************************************************************************************************** 
                                     ABOUT SECTION STYLING
 **********************************************************************************************************************/

 .about{
    width: 95%;
    margin: 0 auto;
    min-height: 200px;
    background:linear-gradient(to left top, #031A9A, #00BFFF);
    text-align: center;
    color: white;
    margin-top: 2rem;
    padding-top: 1rem;

}
.about h1{
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Lobster', cursive;
}

.about p{
    text-align: center;
    color: #f6f8f0;
    font-size: 1.3rem;
    line-height: 30px;
    padding-left: 15px;
    padding-right: 15px;
   padding-bottom: 1.5rem;
}
 /********************************************************************************************************************** 
                                     LODGE SECTION STYLING
 **********************************************************************************************************************/

.lodge{
    width: 95%;
    background-color:white;
    margin: 0 auto;
    margin-top: 1.5rem;
    text-align: center;
    padding-bottom: 1rem;
}
.lodge .heading{
    font-size: 3rem;
    padding-top: 1rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1.5rem;
}
.lodge .heading span{
    background-color: #5D8AA8;
    padding: .5rem 1rem;
    border-style: double;
    border-radius: .5rem;
}
.lodge h6{
    font-size: 1.3rem;
    font-style: italic;
    color: #21201e;
}
.lodge .box-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-left: .5rem;
    padding-right: .5rem;
}
.lodge .box-container .box{
    max-width: 400px;
    min-width: 400px;
    border-radius: .5rem;
    overflow: hidden;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .1);
    padding-bottom: .5rem;
}
.lodge .box-container .box img{
    height: 17rem;
    width: 95%;
    object-fit: cover;
}



.lodge .box-container .box .content{
    padding: .5rem;  
}
.lodge .box-container .box .content h3{
    font-size: 2rem;
    color:#002D62;
}
.lodge .box-container .box .content h3 i{
   color:chartreuse;
   margin: 1rem;
  
}
.lodge .box-container .box .content p{
    font-size: 1.3rem;
    color: #2a2a2a;
    font-style: italic;
    padding: 1rem 0;
}
.lodge .box-container .box .content .stars i{
    font-size: 1.7rem;
    color: yellow;
    margin-bottom: 1rem;
}

.lodge .box-container .box .content .price{
    font-size: 2rem;
    color: #333;
    padding:1rem;
}
.lodge .box-container .box .content .price span{
    color: #666;
    font-size: 1.5rem;
    text-decoration: line-through;
}
.lodge .box-container .box .content .pack-btn{
    font-size: 1.4rem;
    color: #fff;
    background-color: #55c2da;
    text-decoration: none;
    padding: .3rem .7rem;
    transition: .5s;
}
.lodge .box-container .box .content .pack-btn:hover{
    color: black;
    background-color: white;
}
.lodge .box-container .box .content .pack-btn span{
    color: #000;
}

 /********************************************************************************************************************** 
                                   AGRICULTURE SECTION STYLING
 **********************************************************************************************************************/

h2{
	text-align: center;
    padding-top: 1rem;
	margin-bottom: 1rem;
	font-size: 4rem;
    color:#002D62;
}

.all-farm{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.farm{
	overflow: hidden;
	background:linear-gradient(to left top, #031A9A, #00BFFF);
	color: #21201e;
	text-align: center;
	width: 275px;
	height: 400px;
    padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 1.2rem;
	margin: 2rem;
}

.farm-info h4{
    color: #000;
    font-size: 1.3rem;
    margin-bottom: .5rem;
}

.farm:hover img{
	scale:  1.1;
}

.farm:hover {
	box-shadow: 5px 15px 25px #eeeeee;
}

.farm img {
    width: 200px;
	height: 200px;
    border-radius: 3px;
    object-fit: cover;
    object-position: center;
	margin: 1rem;
	transition: all 0.3s;
}
.farm-info p{
    color: #f6f8f0;
}

 /********************************************************************************************************************** 
                                     ENTERTAINMENT SECTION STYLING
 **********************************************************************************************************************/

.entertainment{
    width: 95%;
    margin: 0 auto;
   background: linear-gradient(to left top, #031A9A, #00BFFF);
}
.entertainment .heading{
    font-size: 3rem;
    padding-top: 1rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
}
.entertainment .heading span{
    background-color: white;
    padding: .5rem 1rem;
    border-radius: 4px;
}
.entertainment h6{
   text-align: center;
    font-size: 1.1rem;
    padding-left: .5rem;
    padding-right: .5rem;
}

.enter-box{
    display: flex;
    width: 100%;
    padding: 0 35px;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    background: linear-gradient(to left top, #031A9A, #00BFFF);
    margin-bottom: 1.5rem;
}
.wrapper {
    max-width: 1100px;
    width: 100%;
    position: relative;
 }
.wrapper i {
    top: 50%;
    height: 50px;
    width: 50px;
    cursor: pointer;
    font-size: 1.25rem;
    position: absolute;
    text-align: center;
    line-height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0,0,0,0.23);
    transform: translateY(-50%);
    transition: transform 0.1s linear;
}
.wrapper i:active{
    transform: translateY(-50%) scale(0.85);
}
.wrapper i:first-child{
    left: -22px;
}
.wrapper i:last-child{
    right: -22px;
}
.wrapper .carousel{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 12px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    border-radius: 8px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.carousel::-webkit-scrollbar {
    display: none;
}
.carousel.no-transition {
    scroll-behavior: auto;
}
.carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
}
.carousel.dragging .card {
    cursor: grab;
    user-select: none;
}
.carousel :where(.card, .img) {
    display: flex;
    justify-content: center;
    align-items:center;
  }
.carousel .card {
    scroll-snap-align: start;
    height: 500px;
    list-style: none;
    background: #fff;
    cursor: pointer;
    padding-bottom: 10px;
    flex-direction: column;
    border-radius: 8px;
    margin-bottom: 1.5rem;
  }
.carousel .card .img {
    background:#002D62;
    height: 200px;
    width: 200px;
    border-radius: 50%;
}
.card .img img {
    width: 192px;
    height: 192px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 4px solid #fff;
}
.carousel .card h2 {
    font-style: italic;
    font-weight: 500;
    font-size: 1.56rem;
    margin: 30px 0 5px;
}
.carousel .card p {
    color: #6A6D78;
   font-size: 1.2rem;
   text-align: center;
   padding-top: 1.5rem;
   padding: .5rem;
   line-height: 1.3rem;
}


 /********************************************************************************************************************** 
                                     RESTAURANT  SECTION STYLING
 **********************************************************************************************************************/

.restaurant{
    width: 95%;
    padding-inline: 15px;
    margin: 0 auto;
    padding-top: 15px;
    background: radial-gradient(circle at 48.7% 44.3%, rgb(30, 144, 231) 0%, rgb(56, 113, 209) 22.9%, rgb(38, 76, 140) 76.7%, rgb(31, 63, 116) 100.2%);
}

.restaurant h1{
    font-size: 3.5rem;
    color: #FFF;
    text-align: center;
    padding-bottom: .5rem;
    letter-spacing: .3rem;
}
.restaurant p{
    color:#f8f6f0;
    text-align: center;
    font-style: italic;
    padding-bottom: 1rem;
}

.swiper-wrapper{

    margin-bottom: 30px;
    position: relative;
}

.swiper-wrapper .swiper-slide{

    display: flex;
    height: 400px;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #f8f6f0;
    transition: all .6s ease;
}

.swiper-wrapper .swiper-slide:hover{
    box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.3);
}

.swiper-wrapper .swiper-slide .info-icon{

    width: 70px;
    height: 70px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.swiper-wrapper .swiper-slide .main-img{

    height: 60%;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
    width: 85%;
    transition: all 1s ease;
}

.swiper-wrapper .swiper-slide .main-img:hover{

    transform: scale(1.05);
}

.swiper-wrapper .infos{

    bottom: 10px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    position: absolute;
    width: 85%;
}

.swiper-wrapper .infos .details{
    padding-bottom: 2px;
    font-size: 15px;
    font-family: 'Foldit', cursive;
    line-height: 30px;
    margin: 0;
    text-transform: uppercase;
}

.restaurant .swipes{
    text-align: center;
    padding-bottom: 1rem;
    font-size: 1rem;
    font-style: italic;
    color: #e1e8ed;
}




 /********************************************************************************************************************** 
                                    ANIMALS SECTION STYLING
 **********************************************************************************************************************/


 /********************************************************************************************************************** 
                                     GALLERY/PHOTOS SECTION STYLING
 **********************************************************************************************************************/

::selection{
    color: #fff;
    background: #002D62;
  }
  .photos{
    padding: 10px;
  }
  .photos h1{
    text-align: center;
    font-size: 3rem;
    color: #002D62;
    letter-spacing: 1px;
    padding-top: 1.5rem;
  }
  .photos h6{
    text-align: center;
    font-size: 1.3rem;
    font-style: italic;
    color: #21201e;
  }
  .wrapper{
    margin: 30px auto;
    max-width: 1100px;
  }
  .wrapper nav{
    display: flex;
    justify-content: center;
  }
  .wrapper .items{
    display: flex;
    max-width: 720px;
    width: 100%;
    justify-content: space-between;
  }
  .items span{
    padding: 7px 25px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    color: #007bff;
    border-radius: 50px;
    border: 2px solid #007bff;
    transition: all 0.3s ease;
  }
  .items span.active,
  .items span:hover{
    color: #fff;
    background: #002D62;
  }
  
  .gallery{
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .gallery .image{
    width: calc(100% / 4);
    padding: 7px;
  }
  .gallery .image span{
    display: flex;
    width: 100%;
    overflow: hidden;
  }
  .gallery .image img{
    width: 100%;
    vertical-align: middle;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
  }
  .gallery .image.hide{
    display: none;
  }
  .gallery .image.show{
    animation: animate 0.4s ease;
  }
  @keyframes animate {
    0%{
      transform: scale(0.5);
    }
    100%{
      transform: scale(1);
    }
  }
  
  .preview-box{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #fff;
    max-width: 700px;
    width: 100%;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    border-radius: 3px;
    padding: 0 5px 5px 5px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
  }
  .preview-box.show{
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.3s ease;
  }
  .preview-box .details{
    padding: 13px 15px 13px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .details .title{
    display: flex;
    font-size: 18px;
    font-weight: 400;
  }
  .details .title p{
    font-weight: 500;
    margin-left: 5px;
  }
  .details .icon{
    color: #007bff;
    font-style: 22px;
    cursor: pointer;
  }
  .preview-box .image-box{
    width: 100%;
    display: flex;
  }
  .image-box img{
    width: 100%;
    border-radius: 0 0 3px 3px;
  }
  .shadow{
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    display: none;
    background: rgba(0,0,0,0.4);
  }
  .shadow.show{
    display: block;
  }
  
 /********************************************************************************************************************** 
                                     CONTACT SECTION STYLING
 **********************************************************************************************************************/

.contact{
	height: 100vh;
	display: grid;
	align-items: center;
	font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
}
.contact h1{
    font-size: 3rem;
    text-align: center;
    MARGIN-top: 1REM;
}


.contact-wrap {
	width: 80%;
	height: auto;
	margin:  auto;
	display: flex;
	flex-wrap: wrap;
}

.contact-in {
	padding: 40px 30px;
}

.contact-in:nth-child(1) {
	flex: 30%;
	background: url(images/Hasnatopview.jpg);
    background-size: cover;
    background-position: center;
	color: #fff;
}

.contact-in:nth-child(2) {
	flex: 45%;
	background: linear-gradient(to left top, #031A9A, #00BFFF);
}

.contact-in:nth-child(3) {
	flex: 25%;
	padding: 0;
}

.contact-in h1 {
	font-size: 24px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 20px;
}

.contact-in h2 {
	font-size: 20px;
	font-weight: 1000;
	margin-bottom: 15px;
    text-align:start;
    color: white;
}

.contact-in h2 i {
	font-size: 16px;
	width: 40px;
	height: 40px;
    margin-right: 10px;
	background: linear-gradient(to left top, #031A9A, #00BFFF);
	color: #f8f6f0 ;
	border-radius: 50px;
	line-height: 40px;
	text-align: center;
}

.contact-in p{
	font-size: 1.2rem;
	font-weight: 300;
    text-align: center;
    color:#fff ;
    border: 1px solid #f6f8f0;
    background: linear-gradient(to left top, #031A9A, #00BFFF);
    padding: .5rem .2rem;
    border-top-right-radius: 30px;
    border-bottom-left-radius:30px ;
	margin-bottom: 20px;
    
}
.contact-in p a{
    text-decoration: none;
    color: #f6f8f0;
}

.contact-in ul {
	padding: 0;
	margin: 0;
}

.contact-in ul li {
	list-style: none;
	display: inline-block;
	margin-right: 5px;
	margin-top: 5px;
}

.contact-in ul li a {
	display: block;
	width: 30px;
	height: 30px;
	text-align: center;
	background: #fff;
	border-radius: 50px;
}

.contact-in ul li a i {
	font-size: 14px;
	line-height: 30px;
    text-align: center;
	color: #000;
}

.contact-in form {
	width: 100%;
	height: auto;
}

.contact-in-input {
	width: 100%;
	height: 40px;
	margin-bottom: 20px;
	border: 1px solid #fff;
	outline: none;
	padding-left: 5px;
	background: transparent;
	color: #fff;
	font-size: 12px;
	font-weight: 300;
	font-family: 'Poppins', sans-serif;
}

.contact-in-input::placeholder {
	color: #fff;
}

.contact-in-textarea {
	width: 100%;
	height: 140px;
	margin-bottom: 20px;
	border: 1px solid #fff;
	outline: none;
	padding-top: 5px;
	padding-left: 5px;
	background: transparent;
	color: #fff;
	font-size: 12px;
	font-weight: 300;
	font-family: 'Poppins', sans-serif;
}

.contact-in-textarea::placeholder {
	color: #fff;
}

.contact-in-btn {
	width: 100%;
	height: 40px;
	border: 1px solid #fff;
	outline: none;
	background: transparent;
	color: #fff;
	font-size: 12px;
	font-weight: 300;
	font-family: 'Poppins', sans-serif;
	cursor: pointer;
}

.contact-in iframe {
	width: 100%;
	height: 100%;
}
.contact h3{
    font-size: 1.3rem;
    color: #002D62;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: .5rem;
}
.contact h6{
    text-align: center;
    color: #002D62;
    font-size: 1rem;
    padding-bottom: 2rem;
}
.contact strong{
    color: #000;
    font-family: 'Lobster', cursive;
    font-size: 1.2rem;
    font-style: italic;
}

/*************************************************************
   UP ARROW BUTTON STYLING
*************************************************************/

.gotopbtn{
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: black;
    bottom: 20px;
    right: 20px;
    text-decoration: none;
    text-align: center;
    line-height: 40px;
    color: white;
    z-index: 100;
}

/****************RESPONSIVENESS STARTING POINT********************************/
/****************************************************************************/
/****************RESPONSIVENESS STARTING POINT********************************/
/****************************************************************************/
/****************RESPONSIVENESS STARTING POINT********************************/
/****************************************************************************/


@media(min-width:992px){

    /****************NAVIGATION BAR STYLING************************/


    .navbar ul li ul{
        position: absolute;
        border-top: 3px solid #101010;
        list-style: none;
        min-width: 200px;
        background: #fff;
        padding:10px ;
        border-radius: 0;
        -webkit-border-radius:0;
        -moz-border-radius:0;
        -ms-border-radius:0;
        -o-border-radius:0;
        box-shadow: 0 30px 5px 0 rgba(248, 239, 239, 20%);
        transition: all 0;
        transform: translateY(32px);
        -webkit-transition: all 0,3s;
        -moz-transition: all 0,3s;
        -ms-transition:all 0.3s;
        -o-transition: all 0.3s;
        visibility: hidden;
        opacity: 0;
    }
    
    .navbar ul>li:hover>ul{
      visibility: visible;
      opacity: 1;
      -webkit-transform: translateY(0);
      -moz-transform:translateY(0);
      -ms-transform:translateY(0);
      -o-transform: translateY(0);
    }


    .navbar ul ul li{
        position: relative;
    }
    .navbar ul li a{
        display: block;
        color: #101010;
        font-weight: 700;
        font-size: 15px;
        padding: 8px 10px;
        line-height: 1.5rem;
        border-bottom: none ;
    }
    .navbar ul ul li a:hover{
        color:white ;
        background-color:#002D62;
        border-color: transparent;
        padding-left: 25px;
    }
    .navbar ul li ul ul{
        position: absolute;
        left: 100%;
        top:0;
    } 
}

/****************RESPONSIVENESS STARTING POINT 1200PX********************************/
/****************************************************************************/

@media (max-width:1200px){

    .logo a{
        font-size: 20px;
    }
    .navbar ul li a{
        font-size: 15px;
        padding: 22px 16px; 
    }
    .ser-btn .enquiry-btn{
        padding: 10px 3px;
        font-size: 12px;
    }
    .home .controls{
        padding: .5rem;
        border-radius: 5rem;
        background:transparent;
        position: relative;
        top: 13rem;
        transition: .5s;
        
    }
    
    .home .controls .vid-btn{
      height: 1.5rem;
      width: 1.5rem;
      display: inline-block;
      border-radius: 50%;
      background: #fff;
      cursor: pointer;
      margin:  0 .5rem;
    }
    .home .controls .vid-btn.active{
        background-color: #002D62;
    }
    .packages{
        width: 100%;
        background-color:#002D62;
        margin: 0 auto;
        text-align: center;
        padding-bottom: 1rem;
       
    }
    .packages .heading{
        font-size: 3rem;
        padding-top: 1rem;
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    .packages .heading span{
        background-color:#fff;
        padding: .5rem 1rem;
        border-style: double;
        border-radius: .5rem;
    }
    
    
    .packages .box-container{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
        padding-left: .5rem;
        padding-right: .5rem;
    }
    .packages .box-container .box{
        height: 20rem;
        flex-basis:35%;
        width: 95%;
        border-radius: .5rem;
        overflow: hidden;
        box-shadow: 0 1rem 2rem rgba(0, 0, 0, .1);
    }
    .packages .box-container .box img{
        height: 15rem;
        width: 100%;
        object-fit: cover;
    }
    .packages .box-container .box .content{
        padding: .5rem;  
    }


    .entertainment .heading{
        font-size: 2.5rem;
        padding-top: 1rem;
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    .entertainment .heading span{
        background-color:#fff;
        padding: .2rem .5rem;
        border-radius: 4px;
    }


/***************************UP ARROW BUTTON RESPONSIVENESS***************************/

.gotopbtn{
    position: fixed;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: black;
    bottom: 15px;
    right: 15px;
    text-decoration: none;
    text-align: center;
    line-height: 30px;
    color: white;
}

}

/****************RESPONSIVENESS STARTING POINT 992PX********************************/
/****************************************************************************/

@media(max-width:992px){
    .navbar>ul{
        position: absolute;
        background-color:#fff;
        left: 0;
        right: 0;
        top: 80px;
        width: 95%;
        margin: auto;
       flex-direction: column;
    }
    .header{
        height: 80px;
    }
    .ser-btn .enquiry-btn{
        display: none;
    }
    .ser-btn #bar-icon{
        display: block;
    }
    .ser-btn #bar-icon a{
        background:#002D62;
        color: #ddd;
        font-size: 27px;
        padding: 3px 5px;
    }
    .logo a{
        font-size: 30px;
        font-weight: 800;
    }
    .navbar ul li{
        border-top: 1px solid #002D62;
    }
    .navbar ul li>ul{
        background-color:#B9D9EB;
    }
    .navbar ul ul li a .arrow-right{
        font-size: 18px;
        transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
    }
    .navbar ul li a .down-arrow{
        position: absolute;
        right:10px;
        top: 15px;
        font-size:35px ;
    }
    .navbar ul li ul li>ul{
        background-color:#5D8AA8;
    }

    #menu{
        max-height: 0;
        visibility: hidden;
        opacity: 0;
        transition: all .5s;
        -webkit-transition: all .5s;
        -moz-transition: all .5s;
        -ms-transition: all .5s;
        -o-transition: all .5s;
    }
    #menu.show{
        overflow-y: scroll;
        visibility: visible;
        opacity: 1;
        max-height: 100vh;
    }

    .submenu, .sub-sub-menu{
        display: none;
    }
    .submenushow, .show-sub-sub-menu{
        display: block;
    }
    .home{
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-flow: column;
        position: relative;
        z-index: 0;
        text-align: center;
    }
    .home .content h3{
        font-size: 3.5rem;
       color: #fff;
       text-transform: uppercase;
       text-shadow: .3rem .5rem rgba(0, 0, 0, .1);
    }
    .home .content p{
        font-size: 2rem;
        color: #fff;
        padding: .5rem 0;
    }
    .homebtn{
        background-color: transparent;
        margin-top: 1rem;
        padding: .5rem 2rem;
        border-radius: 20px;
        transition: .5s;
    }
    .homebtn a{
        text-decoration: none;
        color: white;
        font-size: 1.5rem;
    }
    .homebtn:hover{
        background-color: #101010;
    }
    .homebtn:hover a{
        color:white;
    }
    .home .controls{
        padding: .5rem;
        border-radius: 5rem;
        background:transparent;
        position: relative;
        top: 10rem;
        transition: .5s;
        
    }
    
    .home .controls .vid-btn{
      height: 1.5rem;
      width: 1.5rem;
      display: inline-block;
      border-radius: 50%;
      background: #fff;
      cursor: pointer;
      margin:  0 .5rem;
    }
    .home .controls .vid-btn.active{
        background-color: #002D62;
    }
    .packages{
        width: 100%;
        background-color:#002D62;
        text-align: center;
        padding-bottom: 1rem;
       
    }
    .packages .heading{
        font-size: 1.8rem;
        padding-top: 1rem;
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    .packages .heading span{
        background-color: #fff;
        padding: .5rem 1rem;
        border-style: double;
        border-radius: .5rem;
    }
    
    .packages .box-container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin: 1rem;
    }
    .packages .box-container .box{
        min-height: 20rem;
        flex-basis:35%;
        border-radius: .5rem;
        overflow: hidden;
        box-shadow: 0 1rem 2rem rgba(0, 0, 0, .1);
    }

    .lodge{
        width: 95%;
        background-color:white;
        margin-top: 1.5rem;
        text-align: center;
        padding-bottom: 1rem;
       
    }
    .lodge .heading{
        font-size: 1.8rem;
        padding-top: 1rem;
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    .lodge .heading span{
        background-color: #5D8AA8;
        padding: .3rem .6rem;
        border-style: double;
        border-radius: .5rem;
    }
    .lodge .box-container{
       display: flex;
       justify-content: center;
       align-items: center;
       margin: 1rem;
      
    }
    .lodge .box-container .box{
        border-radius: .5rem;
        overflow: hidden;
        box-shadow: 0 1rem 2rem rgba(0, 0, 0, .1);
    }

/*****************ENTERTAINMENT SECTION****************************/
    .wrapper .carousel {
        grid-auto-columns: calc((100% / 2) - 9px);
      }

      /*****************ENTERTAINMENT SECTION****************************/

}

/****************RESPONSIVENESS STARTING POINT 600PX********************************/
/****************************************************************************/

@media screen and (max-width: 600px) {
    .packages .heading span{
        background-color: #fff;
        padding: .3rem .5rem;
        border-style: double;
        border-radius: .5rem;
    }
     
    .lodge .box-container .box{
        max-width: 400px;
        min-width: 270px;
        border-radius: .5rem;
        overflow: hidden;
        box-shadow: 0 1rem 2rem rgba(0, 0, 0, .1);
        padding-bottom: .5rem;
    }

    .testimonials .item{
        width: 90%;
        height: 60vh;
        padding: 10px;
        border-radius: 5px;
        background-color:#fff;
        position: absolute;
        border:3px solid white;
        top: 0;
        box-sizing: border-box;
        text-align: center;
        transition: transform 0.4s;
        box-shadow: 0 0 10px rgba(0,0,0,0.3);
        user-select: none;
        cursor: pointer;
    }
    
    .entertainment .heading{
        font-size: 1.5rem;
        padding-top: 1rem;
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 1rem;
    }
    .entertainment .heading span{
       padding: .3rem .3rem;
       border-radius: 2px;
    }
    .enter-box{
        padding: 0 15px;
    }
    .wrapper .carousel {
      grid-auto-columns: 100%;
    }
   




  }
  /*******************GALLERY SECTION FULL RESPONSIVENESS****************/
     
  @media (max-width: 1000px) {
    .gallery .image{
      width: calc(100% / 3);
    }
  }
  @media (max-width: 800px) {
    .gallery .image{
      width: calc(100% / 2);
    }
  }
  @media (max-width: 700px) {
    .wrapper nav .items{
      max-width: 600px;
    }
    nav .items span{
      padding: 7px 15px;
    }
  }
  @media (max-width: 600px) {
    .photos h6{
        font-size: 1rem;
    }
    .wrapper{
      margin: 30px auto;
    }
    .wrapper nav .items{
      flex-wrap: wrap;
      justify-content: center;
    }
    nav .items span{
      margin: 5px;
    }
    .gallery .image{
      width: 100%;
    }
  }

   /*******************GALLERY SECTION FULL RESPONSIVENESS****************/


   /***************CONTACT SECTION RESPONSIVE STARTING POINT********************************/
/****************************************************************************/

  @media only screen and (max-width:992px) {

    .contact-in p{
        font-size: 1rem;
    }
    .contact-wrap {
        width: 95%;
        height: auto;
        margin:  auto;
        display: flex;
        flex-wrap: wrap;
    }
	.contact-in:nth-child(1) {
		flex: 100%;
	}

	.contact-in:nth-child(2) {
		flex: 100%;
	}

	.contact-in:nth-child(3) {
		flex: 100%;
        min-height: 40vh;
	}


}

@media only screen and (max-width:360px) {
	.contact-in:nth-child(1) {
		flex: 100%;
	}

	.contact-in:nth-child(2) {
		flex: 100%;
	}

	.contact-in:nth-child(3) {
		flex: 100%;
	}

}

   /***************CONTACT SECTION RESPONSIVE END POINT********************************/
/****************************************************************************/