.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 333;
}

.anim-t {
  animation: stick 0.6s linear !important;
}

@keyframes stick {
  0% {
    opacity: 0%;
  }
  50% {
    opacity: 50%;
    background-color: #00afea;
  }
  100% {
    opacity: 100%;
  }
}
header {
  background: white;
}
header .logo {
  width: 15%;
}
header nav {
  font-family: "Lato";
}
header nav ul li a {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  color: rgb(0, 0, 0);
  position: relative;
}
header nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  background-color: black;
  left: 0;
  height: 1px;
  transform-origin: 100% 100%;
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: scaleX(0) translateZ(0);
  -webkit-transform: scaleX(0) translateZ(0);
  -moz-transform: scaleX(0) translateZ(0);
  -ms-transform: scaleX(0) translateZ(0);
  -o-transform: scaleX(0) translateZ(0);
}
header nav ul li a:hover::after {
  background-color: black;
  color: black;
  transform-origin: 0% 0%;
  transform: scaleX(1) translateZ(0);
  -webkit-transform: scaleX(1) translateZ(0);
  -moz-transform: scaleX(1) translateZ(0);
  -ms-transform: scaleX(1) translateZ(0);
  -o-transform: scaleX(1) translateZ(0);
}
header .book-btn button {
  border-radius: 25px;
  background-color: rgb(58, 196, 250);
  border: none;
  width: 175px;
  height: 42px;
  font-size: 16px;
  font-family: "Lato";
  color: rgb(0, 0, 0);
  font-weight: 600;
  text-align: center;
}

.banner {
  background-image: url(/images/bn.jpg);
  width: 100%;
  height: 100vh;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.banner .bn-c {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  transform: translatey(-50%);
}
.banner .bn-c h2 {
  font-size: 25px;
  font-family: "Lato";
  color: rgb(255, 255, 255);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}
.banner .bn-c h1 {
  font-size: 55px;
  font-family: "Ace";
  color: rgb(1, 1, 1);
  line-height: 1.2;
  text-align: center;
}
.banner .bn-c .book-your {
  background: #051319;
  padding: 15px 30px;
  border-radius: 5px;
}
.banner .bn-c .book-your p {
  font-size: 25px;
  font-family: "Lato";
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
.banner .bn-c .book-your p span {
  font-size: 47px;
}
.banner .bn-c .book-your #arrival-date {
  position: relative;
}
.banner .bn-c .book-your #arrival-date .arr {
  position: absolute;
  top: 2px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding: 0px 8px;
  color: white;
}
.banner .bn-c .book-your #arrival-date .arr i {
  cursor: pointer;
}
.banner .bn-c .book-your #der-date {
  position: relative;
}
.banner .bn-c .book-your #der-date .der {
  position: absolute;
  top: 2px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding: 0px 8px;
  color: white;
}
.banner .bn-c .book-your #der-date .der i {
  cursor: pointer;
}
.banner .bn-c .book-your #book {
  border-radius: 25px;
  background-color: rgb(0, 175, 234);
  width: 108px;
  height: 35px;
  border: none;
  font-size: 18px;
  font-family: "Lato";
  color: rgb(255, 255, 255);
  line-height: 1.2;
  text-align: center;
}

div#ui-datepicker-div {
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 15px;
}

.op {
  opacity: 0;
}

option {
  background-color: #051319;
  border: none;
}

input#date {
  border: none;
  background: transparent;
  border-bottom: 1px solid white;
  padding: 3px;
  color: white;
}

input#date1 {
  border: none;
  background: transparent;
  border-bottom: 1px solid white;
  padding: 3px;
  color: white;
}

div#down-l #room {
  border: none;
  background: transparent;
  border-bottom: 1px solid white;
  padding: 3px;
  color: white;
}
div#down-l #child {
  border: none;
  background: transparent;
  border-bottom: 1px solid white;
  padding: 3px;
  color: white;
}
div#down-l #adult {
  border: none;
  background: transparent;
  border-bottom: 1px solid white;
  padding: 3px;
  color: white;
}

.welcome .wel-head h1 {
  font-size: 55px;
  font-family: "Ace";
  color: rgb(0, 0, 0);
  line-height: 1.2;
  text-align: center;
}
.welcome .wel-head p {
  font-size: 18px;
  font-family: "Lato";
  color: rgb(0, 0, 0);
  text-align: center;
}
.welcome .wel-box .content p {
  font-size: 20px;
  font-family: "Ace";
  color: rgb(0, 0, 0);
  line-height: 1.2;
  font-weight: 500;
}
.welcome .wel-box .content p .s-night {
  font-size: 18px;
}
.welcome .wel-box .content #wel-btn {
  background-color: rgb(75, 193, 240);
  border: none;
  padding: 1px 19px;
  border-radius: 25px;
}
.welcome .wel-box1 .content p {
  font-size: 20px;
  font-family: "Ace";
  color: rgb(0, 0, 0);
  line-height: 1.2;
  font-weight: 500;
}
.welcome .wel-box1 .content p .s-night {
  font-size: 18px;
}
.welcome .wel-box1 .content #wel-btn {
  background-color: rgb(75, 193, 240);
  border: none;
  padding: 1px 19px;
  border-radius: 25px;
}

.video video {
  width: 100%;
}
.video .video-co {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  left: 0;
  top: 38%;
}
.video .video-co h1 {
  font-size: 55px;
  font-family: "Ace";
  color: rgb(255, 255, 255);
  line-height: 1.2;
  text-align: center;
  mix-blend-mode: difference;
}
.video .video-co p {
  font-size: 25px;
  font-family: "Lato";
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: 1.2;
  text-align: left;
}

.view .view-content {
  padding: 0px 109px;
}
.view .view-content h1 {
  font-size: 53px;
  font-family: "Ace";
  color: rgb(0, 0, 0);
  text-align: center;
}
.view .view-content p {
  font-size: 18px;
  font-family: "Lato";
  color: rgb(0, 0, 0);
  text-align: center;
}
.view .view-content a i {
  background: #00afea;
  padding: 10px 15px;
  color: white;
}

.offer .offer-head h1 {
  font-size: 53px;
  font-family: "Ace";
  color: rgb(0, 0, 0);
  text-align: center;
}
.offer .of-w {
  height: 377.85px !important;
}
.offer .offer-img {
  background-image: url(/images/guest1.jpg.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin: 0 auto;
  padding: 0;
  filter: brightness(0.7);
  transition: 0.3s all ease-in-out;
}
.offer .offer-i {
  transition: 0.6s all ease-in-out;
}
.offer .offer-i:hover h3 {
  transition: 0.6s all ease-in-out;
  bottom: 165px;
}
.offer .offer-i:hover p {
  transition: 0.6s all ease-in-out;
  opacity: 100%;
}
.offer .offer-i:hover .offer-img {
  filter: brightness(0.4);
  transition: 0.6s all ease-in-out;
}
.offer .offer-i:hover .offer-img1 {
  filter: brightness(0.4);
  transition: 0.6s all ease-in-out;
}
.offer .offer-i:hover .offer-img2 {
  filter: brightness(0.4);
  transition: 0.6s all ease-in-out;
}
.offer .offer-img1 {
  background-image: url(/images/guest2.jpg.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin: 0 auto;
  padding: 0;
  filter: brightness(0.7);
  transition: 0.6s ease-in-out;
}
.offer .offer-img2 {
  background-image: url(/images/guest3.jpg.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin: 0 auto;
  padding: 0;
  filter: brightness(0.7);
  transition: 0.6s ease-in-out;
}
.offer h3 {
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  color: white;
  bottom: 20px;
  font-size: 35px;
  font-family: "Baskervville ", serif;
  text-align: center;
  width: 100%;
  transition: 0.6s ease-in-out;
}
.offer p {
  opacity: 0;
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  color: white;
  bottom: 20px;
  font-size: 16px;
  font-family: "Baskervville ", serif;
  transition: 0.6s ease-in-out;
  text-align: center;
  width: 80%;
  transition: 0.6s ease-in-out;
}

.back-c {
  background-color: white;
}

.hotel-fac {
  background-image: url(/images/hotel-facilities-bg.jpg);
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}
.hotel-fac .fac-head {
  padding-bottom: 3rem;
}
.hotel-fac .fac-head h1 {
  font-size: 53px;
  font-family: "Ace";
  color: rgb(0, 0, 0);
  text-align: center;
}
.hotel-fac .fac-center {
  background-color: #eeefed;
  width: 65%;
}
.hotel-fac .fac-center #fac-i {
  width: 146px;
  height: 100px;
  cursor: pointer;
}
.hotel-fac .fac-center #fac-i i {
  font-size: 30px;
}
.hotel-fac .fac-center #fac-i p {
  text-align: center;
}
.hotel-fac .fac-info {
  background-color: white;
  padding: 35px;
  width: 85%;
}
.hotel-fac .fac-info .info p {
  font-family: "Karla", sans-serif;
  margin-bottom: 14px;
  margin-top: 14px;
  line-height: 30px;
}
.hotel-fac .fac-info .info p span {
  font-size: 30px;
  color: #131e2a;
  font-weight: 400;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
}

#sport-info {
  display: none;
}

#car-info {
  display: none;
}

#drink-info {
  display: none;
}

#gym-info {
  display: none;
}

.res-back {
  background-color: #eeefed !important;
}

.res {
  background-color: white;
}

footer {
  background-color: white;
}
footer .logo {
  width: 50%;
}
footer p {
  font-size: 16px;
  font-family: "Lato";
  color: rgb(0, 0, 0);
}
footer .loaction i {
  font-size: 18px;
  color: rgb(0, 0, 0);
}
footer .loaction p {
  font-size: 16px;
  font-family: "Lato";
  color: rgb(0, 0, 0);
}
footer .loaction:hover i {
  color: #00afea;
}
footer .quick h2 {
  font-size: 18px;
  font-family: "Ace";
  color: rgb(0, 0, 0);
  font-weight: 600;
}
footer ul li a {
  color: black;
  font-family: "Lato";
  color: rgb(0, 0, 0);
  font-size: 16px;
}
footer ul li:hover a {
  color: #00afea;
}

@media (max-width: 1024px) {
  .bn-c {
    position: absolute;
    top: 122px;
    width: 100%;
    left: 0;
  }
  .bn-c h2 {
    font-size: 20px;
    font-family: "Lato";
    color: rgb(255, 255, 255);
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
  }
  .bn-c h1 {
    font-size: 40px;
    font-family: "Ace";
    color: rgb(1, 1, 1);
    line-height: 1.2;
    text-align: center;
  }
  .bn-c .book-your {
    background: transparent;
    padding: 15px 30px;
    border-radius: 5px;
    width: 100%;
  }
  .bn-c .book-your p {
    font-size: 20px;
    font-family: "Lato";
    color: rgb(0, 0, 0);
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
  }
  .bn-c .book-your p span {
    font-size: 40px;
  }
  .bn-c .book-your #arrival-date {
    position: relative;
  }
  .bn-c .book-your #arrival-date .arr {
    position: absolute;
    top: 2px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 0px 8px;
    color: rgb(0, 0, 0);
  }
  .bn-c .book-your #arrival-date .arr i {
    cursor: pointer;
  }
  .bn-c .book-your #der-date {
    position: relative;
  }
  .bn-c .book-your #der-date .der {
    position: absolute;
    top: 2px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 0px 8px;
    color: rgb(0, 0, 0);
  }
  .bn-c .book-your #der-date .der i {
    cursor: pointer;
  }
  .bn-c .book-your #book {
    border-radius: 25px;
    background-color: rgb(0, 175, 234);
    width: 108px;
    height: 35px;
    border: none;
    font-size: 18px;
    font-family: "Lato";
    color: rgb(255, 255, 255);
    line-height: 1.2;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 333;
  }
  .anim-t {
    animation: stick 0.6s linear !important;
  }
  @keyframes stick {
    0% {
      opacity: 0%;
    }
    50% {
      opacity: 50%;
      background-color: #00afea;
    }
    100% {
      opacity: 100%;
    }
  }
  header {
    background: white;
  }
  header .logo {
    width: 22%;
    position: relative;
    z-index: 999;
  }
  header nav {
    font-family: "Lato";
  }
  header nav ul li a {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    color: rgb(0, 0, 0);
    position: relative;
  }
  header nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    right: 0;
    background-color: black;
    left: 0;
    height: 1px;
    transform-origin: 100% 100%;
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    -ms-transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: scaleX(0) translateZ(0);
    -webkit-transform: scaleX(0) translateZ(0);
    -moz-transform: scaleX(0) translateZ(0);
    -ms-transform: scaleX(0) translateZ(0);
    -o-transform: scaleX(0) translateZ(0);
  }
  header nav ul li a:hover::after {
    background-color: black;
    color: black;
    transform-origin: 0% 0%;
    transform: scaleX(1) translateZ(0);
    -webkit-transform: scaleX(1) translateZ(0);
    -moz-transform: scaleX(1) translateZ(0);
    -ms-transform: scaleX(1) translateZ(0);
    -o-transform: scaleX(1) translateZ(0);
  }
  header .book-btn button {
    border-radius: 25px;
    background-color: rgb(58, 196, 250);
    border: none;
    width: 175px;
    height: 42px;
    font-size: 16px;
    font-family: "Lato";
    color: rgb(0, 0, 0);
    font-weight: 600;
    text-align: center;
  }
  .view-img {
    width: 50%;
    margin: 0 auto;
  }
  .view-img1 {
    width: 50%;
    margin: 0 auto;
  }
  .banner {
    background-image: url(/images/bn.jpg);
    width: 100%;
    height: 100vh;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    -webkit-backdrop-filter: blur(1px);
            backdrop-filter: blur(1px);
  }
  .banner .bn-c {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translatey(-50%);
  }
  .banner .bn-c h2 {
    font-size: 20px;
    font-family: "Lato";
    color: rgb(255, 255, 255);
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
  }
  .banner .bn-c h1 {
    font-size: 40px;
    font-family: "Ace";
    color: rgb(1, 1, 1);
    line-height: 1.2;
    text-align: center;
  }
  .banner .bn-c .book-your {
    background: transparent;
    padding: 15px 30px;
    border-radius: 5px;
    mix-blend-mode: hard-light;
  }
  .banner .bn-c .book-your p {
    font-size: 20px;
    font-family: "Lato";
    color: #00afea;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    filter: drop-shadow(2px 4px 3px black);
  }
  .banner .bn-c .book-your p span {
    font-size: 40px;
  }
  .banner .bn-c .book-your #arrival-date {
    position: relative;
  }
  .banner .bn-c .book-your #arrival-date .arr {
    position: absolute;
    top: 2px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 0px 8px;
    color: rgb(0, 0, 0);
    font-weight: 700;
  }
  .banner .bn-c .book-your #arrival-date .arr i {
    cursor: pointer;
  }
  .banner .bn-c .book-your #der-date {
    position: relative;
  }
  .banner .bn-c .book-your #der-date .der {
    position: absolute;
    top: 2px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 0px 8px;
    color: rgb(0, 0, 0);
    font-weight: 700;
  }
  .banner .bn-c .book-your #der-date .der i {
    cursor: pointer;
  }
  .banner .bn-c .book-your #book {
    border-radius: 25px;
    background-color: rgb(0, 175, 234);
    width: 108px;
    height: 35px;
    border: none;
    font-size: 18px;
    font-family: "Lato";
    color: rgb(255, 255, 255);
    line-height: 1.2;
    text-align: center;
  }
  div#ui-datepicker-div {
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 15px;
  }
  .op {
    opacity: 0;
  }
  option {
    background-color: transparent;
    border: none;
  }
  input#date {
    border: none;
    background: transparent;
    border-bottom: 1px solid rgb(0, 0, 0);
    padding: 3px;
    color: rgb(0, 0, 0);
  }
  input#date1 {
    border: none;
    background: transparent;
    border-bottom: 1px solid rgb(0, 0, 0);
    padding: 3px;
    color: rgb(0, 0, 0);
  }
  div#down-l #room {
    border: none;
    background: transparent;
    border-bottom: 1px solid rgb(0, 0, 0);
    padding: 3px;
    color: rgb(0, 0, 0);
    font-weight: 700;
  }
  div#down-l #child {
    border: none;
    background: transparent;
    border-bottom: 1px solid rgb(0, 0, 0);
    padding: 3px;
    font-weight: 700;
    color: rgb(0, 0, 0);
  }
  div#down-l #adult {
    border: none;
    background: transparent;
    border-bottom: 1px solid rgb(0, 0, 0);
    padding: 3px;
    color: rgb(12, 12, 12);
    font-weight: 700;
  }
  .welcome .wel-head h1 {
    font-size: 40px;
    font-family: "Ace";
    color: rgb(0, 0, 0);
    line-height: 1.2;
    text-align: center;
  }
  .welcome .wel-head p {
    font-size: 18px;
    font-family: "Lato";
    color: rgb(0, 0, 0);
    text-align: center;
  }
  .welcome .wel-box .content p {
    font-size: 18px;
    font-family: "Ace";
    color: rgb(0, 0, 0);
    line-height: 1.2;
    font-weight: 500;
  }
  .welcome .wel-box .content p .s-night {
    font-size: 18px;
  }
  .welcome .wel-box .content #wel-btn {
    background-color: rgb(75, 193, 240);
    border: none;
    padding: 1px 19px;
    border-radius: 25px;
  }
  .video video {
    width: 100%;
    height: 500px;
  }
  .video .video-co {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    left: 0;
    top: 38%;
  }
  .video .video-co h1 {
    font-size: 40px;
    font-family: "Ace";
    color: rgb(255, 255, 255);
    line-height: 1.2;
    text-align: center;
    mix-blend-mode: difference;
  }
  .video .video-co p {
    font-size: 20px;
    font-family: "Lato";
    color: rgb(255, 255, 255);
    font-weight: bold;
    line-height: 1.2;
    text-align: left;
  }
  .view .view-content {
    padding: 50px 109px;
  }
  .view .view-content h1 {
    font-size: 40px;
    font-family: "Ace";
    color: rgb(0, 0, 0);
    text-align: center;
  }
  .view .view-content p {
    font-size: 18px;
    font-family: "Lato";
    color: rgb(0, 0, 0);
    text-align: center;
  }
  .view .view-content a i {
    background: #00afea;
    padding: 10px 15px;
    color: white;
  }
  .offer .offer-head h1 {
    font-size: 40px;
    font-family: "Ace";
    color: rgb(0, 0, 0);
    text-align: center;
  }
  .offer .of-w {
    height: 377.85px !important;
  }
  .offer .offer-img {
    background-image: url(/images/guest1.jpg.webp);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin: 0 auto;
    padding: 0;
    filter: brightness(0.7);
    transition: 0.3s all ease-in-out;
  }
  .offer .offer-i {
    transition: 0.6s all ease-in-out;
  }
  .offer .offer-i:hover h3 {
    transition: 0.6s all ease-in-out;
    bottom: 165px;
  }
  .offer .offer-i:hover p {
    transition: 0.6s all ease-in-out;
    opacity: 100%;
  }
  .offer .offer-i:hover .offer-img {
    filter: brightness(0.4);
    transition: 0.6s all ease-in-out;
  }
  .offer .offer-i:hover .offer-img1 {
    filter: brightness(0.4);
    transition: 0.6s all ease-in-out;
  }
  .offer .offer-i:hover .offer-img2 {
    filter: brightness(0.4);
    transition: 0.6s all ease-in-out;
  }
  .offer .offer-img1 {
    background-image: url(/images/guest2.jpg.webp);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin: 0 auto;
    padding: 0;
    filter: brightness(0.7);
    transition: 0.6s ease-in-out;
  }
  .offer .offer-img2 {
    background-image: url(/images/guest3.jpg.webp);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin: 0 auto;
    padding: 0;
    filter: brightness(0.7);
    transition: 0.6s ease-in-out;
  }
  .offer h3 {
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    color: white;
    bottom: 20px;
    font-size: 35px;
    font-family: "Baskervville ", serif;
    text-align: center;
    width: 100%;
    transition: 0.6s ease-in-out;
  }
  .offer p {
    opacity: 0;
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    color: white;
    bottom: 20px;
    font-size: 16px;
    font-family: "Baskervville ", serif;
    transition: 0.6s ease-in-out;
    text-align: center;
    width: 80%;
    transition: 0.6s ease-in-out;
  }
  .back-c {
    background-color: white;
  }
  .hotel-fac {
    background-image: url(/images/hotel-facilities-bg.jpg);
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
  }
  .hotel-fac .fac-head {
    padding-bottom: 3rem;
  }
  .hotel-fac .fac-head h1 {
    font-size: 40px;
    font-family: "Ace";
    color: rgb(0, 0, 0);
    text-align: center;
  }
  .hotel-fac .fac-center {
    background-color: #eeefed;
    width: 100%;
  }
  .hotel-fac .fac-center #fac-i {
    width: 146px;
    height: 100px;
    cursor: pointer;
  }
  .hotel-fac .fac-center #fac-i i {
    font-size: 30px;
  }
  .hotel-fac .fac-info {
    background-color: white;
    padding: 35px;
    width: 85%;
  }
  .hotel-fac .fac-info .info p {
    font-family: "Karla", sans-serif;
    margin-bottom: 14px;
    margin-top: 14px;
    line-height: 30px;
  }
  .hotel-fac .fac-info .info p span {
    font-size: 30px;
    color: #131e2a;
    font-weight: 400;
    font-family: "Playfair Display", serif;
    text-transform: uppercase;
  }
  #sport-info {
    display: none;
  }
  #car-info {
    display: none;
  }
  #drink-info {
    display: none;
  }
  #gym-info {
    display: none;
  }
  .res-back {
    background-color: #eeefed !important;
  }
  .res {
    background-color: white;
  }
  footer {
    background-color: white;
  }
  footer .logo {
    width: 50%;
  }
  footer p {
    font-size: 16px;
    font-family: "Lato";
    color: rgb(0, 0, 0);
  }
  footer .loaction i {
    font-size: 18px;
    color: rgb(0, 0, 0);
  }
  footer .loaction p {
    font-size: 16px;
    font-family: "Lato";
    color: rgb(0, 0, 0);
  }
  footer .loaction:hover i {
    color: #00afea;
  }
  footer .quick h2 {
    font-size: 18px;
    font-family: "Ace";
    color: rgb(0, 0, 0);
    font-weight: 600;
  }
  footer ul li a {
    color: black;
    font-family: "Lato";
    color: rgb(0, 0, 0);
    font-size: 16px;
  }
  footer ul li:hover a {
    color: #00afea;
  }
}
@media (max-width: 575px) {
  nav {
    font-family: "Lato";
    position: absolute;
    top: 0;
    z-index: 15;
    background: white;
    width: 100%;
    left: 0;
    padding: 78px 0px 10px 0px;
  }
  nav ul li a {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    color: rgb(0, 0, 0);
    position: relative;
  }
  nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    right: 0;
    background-color: black;
    left: 0;
    height: 1px;
    transform-origin: 100% 100%;
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    -ms-transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: scaleX(0) translateZ(0);
    -webkit-transform: scaleX(0) translateZ(0);
    -moz-transform: scaleX(0) translateZ(0);
    -ms-transform: scaleX(0) translateZ(0);
    -o-transform: scaleX(0) translateZ(0);
  }
  nav ul li a:hover::after {
    background-color: black;
    color: black;
    transform-origin: 0% 0%;
    transform: scaleX(1) translateZ(0);
    -webkit-transform: scaleX(1) translateZ(0);
    -moz-transform: scaleX(1) translateZ(0);
    -ms-transform: scaleX(1) translateZ(0);
    -o-transform: scaleX(1) translateZ(0);
  }
  .banner {
    background-image: url(/images/bn.jpg);
    width: 100%;
    height: 100vh;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  .banner .bn-c {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translatey(-50%);
  }
  .banner .bn-c h2 {
    font-size: 18px;
    font-family: "Lato";
    color: rgb(255, 255, 255);
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
  }
  .banner .bn-c h1 {
    font-size: 30px;
    font-family: "Ace";
    color: rgb(1, 1, 1);
    line-height: 1.2;
    text-align: center;
  }
  .banner .bn-c .book-your {
    background: transparent;
    padding: 15px 30px;
    border-radius: 5px;
    mix-blend-mode: hard-light;
  }
  .banner .bn-c .book-your p {
    font-size: 20px;
    font-family: "Lato";
    color: #00afea;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    filter: drop-shadow(2px 4px 3px black);
  }
  .banner .bn-c .book-your p span {
    font-size: 40px;
  }
  .banner .bn-c .book-your #arrival-date {
    position: relative;
  }
  .banner .bn-c .book-your #arrival-date .arr {
    position: absolute;
    top: 2px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 0px 8px;
    color: rgb(0, 0, 0);
  }
  .banner .bn-c .book-your #arrival-date .arr i {
    cursor: pointer;
  }
  .banner .bn-c .book-your #der-date {
    position: relative;
  }
  .banner .bn-c .book-your #der-date .der {
    position: absolute;
    top: 2px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 0px 8px;
    color: rgb(0, 0, 0);
  }
  .banner .bn-c .book-your #der-date .der i {
    cursor: pointer;
  }
  .banner .bn-c .book-your #book {
    border-radius: 25px;
    background-color: rgb(0, 175, 234);
    width: 108px;
    height: 35px;
    border: none;
    font-size: 18px;
    font-family: "Lato";
    color: rgb(255, 255, 255);
    line-height: 1.2;
    text-align: center;
  }
  #res-nav {
    font-size: 42px;
    position: relative;
    z-index: 999;
  }
  .wel-head h1 {
    font-size: 40px;
    font-family: "Ace";
    color: rgb(0, 0, 0);
    line-height: 1.2;
    text-align: center;
  }
  .wel-head p {
    font-size: 18px;
    font-family: "Lato";
    color: rgb(0, 0, 0);
    text-align: center;
  }
  .view-img {
    width: 100%;
  }
  .view-img1 {
    width: 100%;
  }
  .view .view-content {
    padding: 50px 10px;
  }
}
@media (max-width: 414px) {
  .banner {
    background-image: url(/images/bn.jpg);
    width: 100%;
    height: 100vh;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  .banner .bn-c {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translatey(-50%);
  }
  .banner .bn-c h2 {
    font-size: 18px;
    font-family: "Lato";
    color: rgb(255, 255, 255);
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
  }
  .banner .bn-c h1 {
    font-size: 30px;
    font-family: "Ace";
    color: #000000;
    line-height: 1.2;
    text-align: center;
  }
  .banner .bn-c .book-your {
    background: transparent;
    padding: 15px 30px;
    border-radius: 5px;
    mix-blend-mode: hard-light;
  }
  .banner .bn-c .book-your p {
    font-size: 20px;
    font-family: "Lato";
    color: #00afea;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    filter: drop-shadow(2px 4px 3px black);
  }
  .banner .bn-c .book-your p span {
    font-size: 40px;
  }
  .banner .bn-c .book-your #arrival-date {
    position: relative;
  }
  .banner .bn-c .book-your #arrival-date .arr {
    position: absolute;
    top: 2px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 0px 8px;
    color: rgb(0, 0, 0);
  }
  .banner .bn-c .book-your #arrival-date .arr i {
    cursor: pointer;
  }
  .banner .bn-c .book-your #der-date {
    position: relative;
  }
  .banner .bn-c .book-your #der-date .der {
    position: absolute;
    top: 2px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 0px 8px;
    color: rgb(0, 0, 0);
  }
  .banner .bn-c .book-your #der-date .der i {
    cursor: pointer;
  }
  .banner .bn-c .book-your #book {
    border-radius: 25px;
    background-color: rgb(0, 175, 234);
    width: 108px;
    height: 35px;
    border: none;
    font-size: 18px;
    font-family: "Lato";
    color: rgb(255, 255, 255);
    line-height: 1.2;
    text-align: center;
  }
  .wel-head h1 {
    font-size: 40px;
    font-family: "Ace";
    color: rgb(0, 0, 0);
    line-height: 1.2;
    text-align: center;
  }
  .wel-head p {
    font-size: 18px;
    font-family: "Lato";
    color: rgb(0, 0, 0);
    text-align: center;
  }
  .view-img {
    width: 100%;
  }
  .view-img1 {
    width: 100%;
  }
  .view .view-content {
    padding: 50px 10px;
  }
  header {
    background: white;
  }
  header .logo {
    width: 38%;
  }
  header nav {
    font-family: "Lato";
  }
  header nav ul li a {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    color: rgb(0, 0, 0);
    position: relative;
  }
  header nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    right: 0;
    background-color: black;
    left: 0;
    height: 1px;
    transform-origin: 100% 100%;
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    -ms-transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: scaleX(0) translateZ(0);
    -webkit-transform: scaleX(0) translateZ(0);
    -moz-transform: scaleX(0) translateZ(0);
    -ms-transform: scaleX(0) translateZ(0);
    -o-transform: scaleX(0) translateZ(0);
  }
  header nav ul li a:hover::after {
    background-color: black;
    color: black;
    transform-origin: 0% 0%;
    transform: scaleX(1) translateZ(0);
    -webkit-transform: scaleX(1) translateZ(0);
    -moz-transform: scaleX(1) translateZ(0);
    -ms-transform: scaleX(1) translateZ(0);
    -o-transform: scaleX(1) translateZ(0);
  }
  header .book-btn button {
    border-radius: 25px;
    background-color: rgb(58, 196, 250);
    border: none;
    width: 175px;
    height: 42px;
    font-size: 16px;
    font-family: "Lato";
    color: rgb(0, 0, 0);
    font-weight: 600;
    text-align: center;
  }
  .bn-c {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translatey(-50%);
  }
  .bn-c h2 {
    font-size: 18px;
    font-family: "Lato";
    color: rgb(255, 255, 255);
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
  }
  .bn-c h1 {
    font-size: 30px;
    font-family: "Ace";
    color: rgb(1, 1, 1);
    line-height: 1.2;
    text-align: center;
  }
  .bn-c .book-your {
    background: transparent;
    padding: 15px 30px;
    border-radius: 5px;
    mix-blend-mode: hard-light;
  }
  .bn-c .book-your p {
    font-size: 20px;
    font-family: "Lato";
    color: rgb(0, 0, 0);
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
  }
  .bn-c .book-your p span {
    font-size: 40px;
  }
  .bn-c .book-your #arrival-date {
    position: relative;
  }
  .bn-c .book-your #arrival-date .arr {
    position: absolute;
    top: 2px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 0px 8px;
    color: rgb(0, 0, 0);
  }
  .bn-c .book-your #arrival-date .arr i {
    cursor: pointer;
  }
  .bn-c .book-your #der-date {
    position: relative;
  }
  .bn-c .book-your #der-date .der {
    position: absolute;
    top: 2px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 0px 8px;
    color: rgb(0, 0, 0);
  }
  .bn-c .book-your #der-date .der i {
    cursor: pointer;
  }
  .bn-c .book-your #book {
    border-radius: 25px;
    background-color: rgb(0, 175, 234);
    width: 108px;
    height: 35px;
    border: none;
    font-size: 18px;
    font-family: "Lato";
    color: rgb(255, 255, 255);
    line-height: 1.2;
    text-align: center;
  }
  .hotel-fac .fac-info {
    width: 100%;
  }
}/*# sourceMappingURL=main.css.map */