@media screen and (max-width:768px) {
  .header-location-div{
    display: none;
  }
  .call-header p a {
    text-decoration: none;
    color: #525252;
    font-size: 12px;
    font-family: "Poppins", serif;
}
.mail-header p a {
  text-decoration: none;
  color: #525252;
  font-size: 12px;
  font-family: "Poppins", serif;
}

.owl-nav .owl-prev {
  position: absolute;
  bottom: -51px;
  right: 124px;
  left: 0px;
}

.owl-nav .owl-next {
  position: absolute;
  bottom: -51px;
  left: 124px;
  right: 0px;
}
.call-us-part h2 a {
  color: #000;
  font-weight: 700;
  font-size: 35px;
  text-decoration: none;
}
.user-text {
  margin-top: 15px;
  padding-left: 20px;
  padding-right: 20px;
}
.pg-details-head h3{
  font-size: 25px;
}


}


  

@media screen and (max-width:991px){
 
#navbarNavDropdown{
  margin-left: inherit;
}
.about-head h1 {
  text-transform: uppercase;
  font-size: 31px;
  font-weight: 700;
}
.about-text p{
  text-align: justify;
  font-size: 14px;
}
.about-btn-area{
  flex-wrap: wrap;
}
}

@media screen and (max-width:500px){
  
.bottom-footer ul li a {
  text-decoration: none;
  margin-bottom: 0px;
  color: #d6d6d6;
  font-size: 12px;
}
.room-head h2 {
  font-size: 29px;
}
.social-icons{
  display: none;
}
.count-box{

  
  border: 1px solid #d6d6d6!important;

}

#no-border{
  border-right: 1px solid #d6d6d6!important;
}
.user-text {
  margin-top: 15px;
  padding-left: 10px;
  padding-right: 10px;
}
}

@media screen and (min-width:991px) {
  /* Initially hide the dropdown menu */
.nav-item .dropdown-menu {
  
  max-height: 0; /* Initially set the max height to 0 */
  opacity: 0; /* Initially set opacity to 0 */
  display: none;
  overflow: hidden; /* Hide anything outside */
  transition: max-height 0.3s ease, opacity 0.3s ease; /* Smooth transition for max-height and opacity */
}


/* Show the dropdown menu smoothly when hovering over the parent item */
.nav-item:hover .dropdown-menu {
  max-height: 500px; /* Set a max height large enough to show the content */
  opacity: 1; /* Make the dropdown visible */
  display: block; /* Allow the dropdown to be rendered */
}}