* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Akshar', sans-serif;
  color: #000;
  background: #FFF;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #000;
  letter-spacing: 1px;
  font-family: inherit;
}

a:hover,
a:focus {
  text-decoration: none;
}

button {
  border: none;
  background: none;
  font-family: inherit;
}

/* Header */
#main-header {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
}

#header-nav-menu {
  display: flex;
  justify-content: flex-start;
}

#header-nav-menu .nav-item {
  margin: 0 15px;
}

#header-nav-menu .nav-item:nth-child(1) {
  margin: 0 15px 0 0;
}

#header-nav-menu .nav-item a {
  font-weight: 500;
  color: #000;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

#header-nav-menu .nav-item a:after {
  content: '';
  background: transparent;
  width: 0;
  height: 3px;
  display: block;
  position: absolute;
  bottom: -5px;
  transition: 0.5s ease;
}

#header-nav-menu .nav-item a:hover::after {
  background: #075367;
  width: 100%;
}

.header-col-right {
  display: flex;
  align-items: center;
}

.header-logo {
  width: 235px;
}

.logo-wrapper-mobile {
  display: none;
}

.booking-btn a {
  background: #075367;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 300;
  line-height: 1;
  padding: 8px 4px;
  width: auto;
  margin-top: -23px;
  margin-left: 29px;
  transition: background ease 0.2s;
}

.booking-btn a:hover {
  background: #00710f;
}

/* Hero */
#hero {
  background: url(../../HotelFiles/10870/h-hero.jpg) no-repeat center center;
  width: 100%;
  height: 50vh;
  background-size: cover;
  margin-top: 0;
  z-index: 0;
}

.shell-be {
  background: #f1f1f1;
}

/* Booking engine custom styles */
.ui-datepicker-header,
.summary .summaryHeader,
.done .step-number, .done .step-number:before {
  background: #075367;
}

/* clockable elements (buttons, rooms) */
.reserveRoom,
.roomName {
background: #075367;
}

.reserveRoom:hover,
.on, .roomName:hover,
.roomName:focus {
  background: #000;
}

.roomName h4 {
color:  #fff;
}

/* Footer */
.footer-logo-wrapper {
  position: relative;
  text-align: center;
  margin-top: 50px;
}

.footer-logo-wrapper::after {
  content: '';
  height: 2px;
  width: 100%;
  background: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}

.footer-logo {
  width: 250px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.footer-row {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 30px 20px;
  align-items: flex-end;
}

.col-1 h4 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 44px;
}

.col-1 form {
  display: flex;
}
.col-1 form :nth-child(1) {
  width: 70%;
}

.col-1 form input[type="email"] {
  height: 55px;
  width: 70%;
  border: 2px solid #ccc;
  padding: 0 10px;
  font-size: 25px;
  width: 100%;
  color: rgba(0,0,0,0.25);
  font-family: sans-serif;
}

.col-1 form input[type="submit"] {
  height: 55px;
  width: 45%;
  background: #000;
  border: 0;
  font-size: 25px;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 300;
  font-family: sans-serif;
}

.col-2 {
  display: flex;
  gap: 20px;
}

.booking-btn-footer a {
  width: 80px;
  height: 100px;
  text-align: center;
  justify-content: center;
  gap: 5px;
  background: #075367;
  font-size: 27px;
  color: #fff;
  margin: 0;
  padding: 15px 10px;
  letter-spacing: 0;
}

.contact-block {
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  color: #000;
}

.contact-block span {
  display: block;
  margin-top: 20px;
}

.col-3 .footer-menu {
  display: flex;
  align-items: center;
  text-align: right;
  justify-content: flex-end;
}

.col-3 .footer-menu a {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
  display: block;
  letter-spacing: 0;
}

.col-3 .footer-menu li {
  padding: 0 5px;
  position: relative;
}

.col-3 .footer-menu li:first-child {
  padding-left: 0;
}

.col-3 .footer-menu li:last-child {
  border-left: 2px solid #000;
}

.col-3 .footer-social {
  display: flex;
  align-items: center;
  text-align: right;
  justify-content: flex-end;
  margin-top: 10px;
}

.col-3 .footer-social li {
  margin-left: 10px;
}

.col-3 .footer-social img {
  width: 50px;
}

/* Mobile Menu  */
#mobile-nav { 
  display: none; 
}

.menu-btn {
  width: 30px;
  cursor: pointer;
}

.menu-btn .bar {
  width: 100%;
  height: 3px;
  background: #000;
  margin-bottom: 5.25px;
  cursor: pointer;
}

.menu-btn .bar-active:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-btn .bar-active:nth-child(2) {
  display: none;
}

.menu-btn .bar-active:nth-child(3) {
   transform: translateY(0.5px) rotate(-45deg);
}

#mobile-nav-menu {
  background-color: #000;
  width: 100%;
  height: 0;
  overflow: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s ease;
  overflow: hidden;
  flex-direction: column;
  text-align: center;
  top: 125px;
  position: absolute;
  left: 0;
  right: 0;
  padding: 0;
  z-index: 10;
}

#mobile-nav-menu.open-nav {
  height: auto;
  transform: scaleY(1);
}

#mobile-nav-menu .nav-item {
  padding: 15px;
}

#mobile-nav-menu .nav-item a {
  color: #FFF;
  text-transform: uppercase;
  font-size: 14px;
}

/* Medium tablets, portrait */
@media only screen and (max-width : 991px) {
  #main-header {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
    justify-content: space-between;
  }

  #header-nav {
    display: none;
  }

  #mobile-nav {
    display: block;
  }

  .logo-wrapper {
    display: none;
  }

  .logo-wrapper-mobile {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-left: 20px;
  }

  .booking-btn a {
    margin-top: 0;
    margin-left: 0;
  }

  .footer-col.col-1 {
    width: 100%;
  }

  .col-1 form input[type="email"],
  .col-1 form input[type="submit"] {
    font-size: 20px;
    height: 45px;
  }

  .footer-row {
    flex-wrap: wrap;
  }

  .footer-row .col-2,
  .footer-row .col-3 {
    margin-top: 20px;
  }

}

/* Mobile devices */
@media only screen and (max-width : 480px) {
  #main-header {
    padding: 10px 20px;
  }

  #mobile-nav-menu {
    top: 80px;
  }

  .footer-row {
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-wrapper-mobile .header-logo {
    width: 160px;
    margin: auto;
  }

  .footer-logo {
    width: 160px;
  }

  .footer-row {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
  }

  .col-3 .footer-menu,
  .col-3 .footer-social {
    text-align: left;
    justify-content: flex-start;
  }

  .col-3 .footer-social li:first-child {
    margin-left: 0;
  }

  .col-3 .footer-social img {
    width: 40px;
  }
}