header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    /* background-color: #0000008f; */
    padding: 15px 20px;
    transition: all 0.5s ease;
    /* box-shadow: 0 0 5px #0b0a0a; */
    /* display: none; */
  }
  .newClass {
    background-color: #000;
      box-shadow: 0 0 5px gray;
      z-index: 999;
  }
  .menu ul li a, .menu ul li span {
    font-size: 15px;
    font-family: 'Montserrat-Regular';
    color: #000;
    text-decoration: none;
    -webkit-transition: color 0.2s ease-out;
    -moz-transition: color 0.2s ease-out;
    -o-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out;
    letter-spacing: 2px;
    font-weight: 500;
}
.button_container {
  position: absolute;
  top: 50%;
  right: 15px;
  height: 29px;
  width: 35px;
  cursor: pointer;
  z-index: 99;
  transition: opacity 0.25s ease;
  transform: translateY(-50%);
  display: block;
}
.button_container.active .bottom {
  transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #f43d22;
}
.button_container.active .top {
  transform: translateY(11px) translateX(0) rotate(45deg);
  background: #f43d22;
}
.button_container.active .middle {
  opacity: 0;
  background: #fff;
}

.button_container span:nth-of-type(2) {
  top: 11px;
  width: 61%;
  height: 3px;
  right: 0;
  left: auto;
}
.button_container span:nth-of-type(3) {
  top: 22px;
}
.button_container span {
  background: #fff;
  border: none;
  height: 3px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
  border-radius: 31px;
}
.dropdown span{
  -webkit-transition: color 0.2s ease-out;
  -moz-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}
.menu ul li a:hover{
  color: #f99d3d;
  cursor: pointer;
}
.dropdown span:hover{
  color: #f99d3d;
  cursor: pointer;
}

/* Submenu Styling */
.submenu {
  display: none;
  background-color: #ddd;
  border: 1px solid #ddd;
  width: 242px;
  position: relative;
  top: 0;
  left: 0;
}
.logo-project {
  max-width: 155px;
  padding-top: 3px;
  margin-bottom: 12px;
}

.dropdown:hover .submenu {
  display: block; /* Displays submenu on hover */
}
.overlay {
  position: fixed;
  background: #fff;
  top: 0;
  right: 0;
  width: 24%;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  max-height: 0;
  -webkit-transition: max-height .3s, -webkit-transform .3s;
  transition: max-height .3s, -webkit-transform .3s;
  -o-transition: max-height .3s, transform .3s;
  transition: max-height .3s, transform .3s;
  transition: max-height .3s, transform .3s, -webkit-transform .3s;
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  overflow: auto;
  height:60%;
  padding: 15px 30px 15px 30px;
}
.overlay.open {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  max-height: 100vh;
  box-shadow: 0 0 3px #939393;
}
.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: block;
  position: relative;
  width: 100%;
}
.overlay nav {
  text-align: center;
}
.overlay.open li {
  opacity: 1;
  border-top: 1px solid gray;
  padding-bottom: 10px;
  padding-top: 10px;
}
  .inner-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  .h-logo {
    max-width: 30px;
    }
.home-logo {
    max-width: 194px;
    margin-left: 10px;
}
.logo-outer{
    display: flex;
    justify-content: start;
    align-items: center;
}
  .menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
    justify-content: center;
    align-items: center;
  }
  .menu ul li.dropdown {
    padding: 10px 10px;
}
.submenu ul {
  display: block;
  width: 100%;
  padding: 10px 10px 0 10px;
}
.submenu ul li {
  margin-bottom: 10px;
}
  .image-section{
    background:url('../images/amenities.jpg');
    background-size: 100% 100%;
    background-repeat:no-repeat;
    display: block;
  }
  .page-extra-space {
    padding: 55px 0;
}
.menu ul li a {
  color: #000;
  text-decoration: none;
  font-size: 13px;
  padding: 10px 10px;
  text-transform: uppercase;
  transition: all 0.5s ease;
  letter-spacing: 2px;
}
  .contact-number {
    display: flex;
  }
  a.contact-form {
    font-family: 'NotoSerif-CondensedBold';
    color: #000;
    background: #dc9f5e;
    border-radius: 35px;
  }
  .contact-number a {
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    background-color: #dc9f5e;
    border-radius:35px;
    color: #fff;
    padding: 10px 15px;
    transition: all 0.5s ease;
  }  