@media (max-width: 1049px) {
  header {
    z-index: 20;
    /* Show navigation when active */
    /* Style for the burger menu */
  }
  header .navigations {
    display: none;
  }
  header .navigations ul li a {
    color: #0000cc;
  }
  header .navigations ul li a:hover {
    color: #0000cc;
  }
  header .navigations ul li a::after {
    background-color: #0000cc;
  }
  header .navigations ul li a.active {
    color: #0000cc;
  }
  header .navigations ul li a.active::after {
    background-color: #0000cc;
  }
  header #nav-menu {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9803921569);
    top: 200px;
    justify-content: center;
    z-index: 20;
    justify-content: center;
  }
  header #nav-menu .nav {
    flex-direction: column;
  }
  header #nav-menu.active {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    top: 120px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    height: 515px;
    width: 85%;
  }
  header #nav-menu.active .book-now {
    margin: 0;
  }
  header .burger-menu {
    cursor: pointer;
  }
  header .burger-menu {
    cursor: pointer;
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease-in-out;
  }
  header .bar {
    width: 100%;
    height: 4px;
    background-color: #0000cc;
    border-radius: 4px;
    z-index: 20;
    transition: all 0.3s ease-in-out;
  }
  header .burger-menu.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  header .burger-menu.active .bar:nth-child(2) {
    opacity: 0;
  }
  header .burger-menu.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  header.sticky {
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    width: 90%;
    z-index: 20;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    box-shadow: 0px 0px 0px rgba(227, 228, 237, 0.37);
    border: 2px solid rgba(225, 225, 225, 0.18);
  }
  .hero {
    display: flex;
    flex-direction: column;
    margin: 0 0px 0 0px;
  }
  .hero .left-hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .hero .left-hero h1 {
    font-size: 50px;
  }
  .hero .right-hero {
    margin-top: 20px;
  }
  .hero .right-hero img {
    width: 300px;
  }
  .about-us {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    margin: 20px;
  }
  .about-us .left {
    padding: 0;
    justify-content: center;
    text-align: center;
  }
  .about-us .left img {
    padding-top: 20px;
    width: 300px;
  }
  .about-us .right {
    padding: 0;
  }
  .about-us .right .title {
    justify-content: center;
  }
  .about-us .right .title h1 {
    font-size: 30px;
  }
  .about-us .right .title h1 span img {
    width: 25px;
  }
  footer .ft-details {
    flex-wrap: wrap;
  }
  footer .ft-details .soc-med-section {
    padding: 5px;
  }
  footer .ft-details .contact-section {
    padding: 5px;
  }
  footer .ft-details div {
    padding: 5px;
  }
  footer .ft-details .operating-section {
    padding: 5px;
  }
  .underconscontent {
    margin: 0;
  }
  .underconscontent .caption h1 {
    text-align: center;
    margin: 0;
    font-size: x-large;
  }
  .underconscontent .caption p {
    text-align: center;
    margin: 20px;
    font-size: medium;
  }
  .underconscontent .caption ul {
    margin: 20px;
  }
  .underconscontent .right img {
    width: 300px;
  }
}/*# sourceMappingURL=mobile.css.map */