@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=League+Script&display=swap");
@font-face {
  font-family: "myFirstFont";
  src: url("../font/AnticDidone-Regular.ttf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primaryColor: #E0B279;
  --secondaryColor: rgb(227 178 0);
  --secondaryTextColor: rgb(141, 141, 141);
}

body {
  font-family: "Poppins", sans-serif;
  background: #FFF6EA;
}

/* width */
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.048);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(117, 117, 117);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primaryColor);
}

.container {
  width: 90%;
  margin: 0 auto;
}

a, button, div, span, i, b, h1, h2, h3, h4, h5, h6, p, input, ul, li, select, label, textarea {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  font-family: "Poppins", sans-serif;
}

input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

input {
  -webkit-tap-highlight-color: transparent;
}

::-webkit-datetime-edit-year-field:not([aria-valuenow]),
::-webkit-datetime-edit-month-field:not([aria-valuenow]),
::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
  color: transparent;
}

video::-internal-media-controls-overlay-cast-button {
  display: none;
}

textarea {
  resize: none;
  font-family: "Poppins", sans-serif;
}

::-moz-selection {
  color: var(--secondaryColor);
  background: transparent;
}

::selection {
  color: var(--secondaryColor);
  background: transparent;
}

main {
  overflow: hidden;
}

.shimmer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 105;
  background: rgba(104, 104, 104, 0.486);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  display: none;
}

.bookingForm {
  position: fixed;
  z-index: 200;
  width: 700px;
  background: white;
  padding: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
@media (max-width: 768px) {
  .bookingForm {
    width: 95%;
  }
}
@media (max-width: 480px) {
  .bookingForm {
    padding: 20px;
  }
}
.bookingForm h2 {
  font-family: myFirstFont;
  font-size: 2.5em;
}
@media (max-width: 480px) {
  .bookingForm h2 {
    font-size: 2em;
  }
}
.bookingForm form {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 30px;
  margin-top: 40px;
  max-height: 70vh;
  overflow-y: auto;
}
@media (max-width: 480px) {
  .bookingForm form {
    gap: 10px;
    row-gap: 20px;
    margin-top: 20px;
  }
}
.bookingForm form .formGroup {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .bookingForm form .formGroup {
    width: calc(50% - 5px);
  }
  .bookingForm form .formGroup:nth-of-type(1) {
    width: 100%;
  }
  .bookingForm form .formGroup:nth-of-type(2) {
    width: 100%;
  }
  .bookingForm form .formGroup:nth-of-type(5) {
    width: 100%;
  }
  .bookingForm form .formGroup:nth-of-type(6) {
    width: 100%;
  }
}
.bookingForm form .formGroup label {
  font-size: 16px;
  font-weight: 300;
}
@media (max-width: 480px) {
  .bookingForm form .formGroup label {
    font-size: 14px;
  }
}
.bookingForm form .formGroup label i {
  margin-right: 5px;
  color: var(--secondaryTextColor);
}
.bookingForm form .formGroup input {
  width: 100% !important;
  height: 40px;
  border: 1px solid #ddd;
  outline: none;
  padding: 0px 10px;
  font-size: 16px;
  background: white;
  margin-top: 2px;
}
.bookingForm form .formGroup input:focus {
  border-color: black;
}
.bookingForm form .formGroup select {
  width: 100%;
  height: 40px;
  border: 1px solid #ddd;
  outline: none;
  padding: 0px 10px;
  font-size: 16px;
  background: white;
  margin-top: 2px;
}
.bookingForm form .formGroup select:focus {
  border-color: black;
}
.bookingForm form .formGroup .guestInput {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bookingForm form .formGroup .guestInput .guestInputBox {
  flex: 0 0 48%;
  border: 1px solid #ddd;
  padding: 0px 7px;
  height: 40px;
  margin-top: 2px;
  font-size: 14px;
  font-weight: 300;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bookingForm form .formGroup .guestInput .guestInputBox span {
  background: #eee;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}
.bookingForm form .formGroup .gusetDorpDownPopup {
  position: absolute;
  top: 70%;
  background: white;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 15px 15px 0px 15px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
  z-index: 10;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.062745098);
  border: 1px solid #ddd;
}
.bookingForm form .formGroup .gusetDorpDownPopup ul {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.bookingForm form .formGroup .gusetDorpDownPopup ul li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
}
.bookingForm form .formGroup .gusetDorpDownPopup ul li p {
  font-size: 14px;
  font-weight: 500;
}
.bookingForm form .formGroup .gusetDorpDownPopup ul li .gusetDorpDownPopupInput {
  width: 60px;
}
.bookingForm form .formGroup .gusetDorpDownPopup ul li .gusetDorpDownPopupInput select {
  width: 100%;
  height: 35px;
  border: 1px solid #ddd;
  padding: 0px 10px;
  outline: none;
  font-size: 14px;
}
.bookingForm form .formGroup .gusetDorpDownPopup ul li .gusetDorpDownPopupInput select:focus {
  border: 1px solid rgb(34, 34, 34);
}
.bookingForm form .formGroup .gusetDorpDownPopup ul li .applyGuestBtn {
  width: 100%;
  background: var(--primaryColor);
  color: white;
  font-size: 14px;
  padding: 8px;
  text-align: center;
  margin-top: 5px;
  transition: 0.2s;
}
.bookingForm form .formGroup .gusetDorpDownPopup ul li .applyGuestBtn:hover {
  transition: 0.2s;
  opacity: 0.7;
}
.bookingForm form .formGroup .gusetDorpDownPopupActive {
  top: 105%;
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease;
}
.bookingForm form .formBtnArea {
  width: 100%;
  border-top: 4px dashed #eee;
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
@media (max-width: 480px) {
  .bookingForm form .formBtnArea {
    justify-content: space-between;
    gap: 0;
  }
}
.bookingForm form .formBtnArea .closeBookingForm {
  cursor: pointer;
  padding: 10px 40px;
  background: #eee;
  font-size: 16px;
  text-transform: uppercase;
  transition: 0.3s;
}
@media (max-width: 480px) {
  .bookingForm form .formBtnArea .closeBookingForm {
    flex: 0 0 48%;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.bookingForm form .formBtnArea .closeBookingForm:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.bookingForm form .formBtnArea button {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 40px;
  background: var(--primaryColor);
  color: white;
  font-size: 16px;
  text-transform: uppercase;
  transition: 0.3s;
}
@media (max-width: 480px) {
  .bookingForm form .formBtnArea button {
    flex: 0 0 48%;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.bookingForm form .formBtnArea button:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.bookingForm form .gusetDorpDown {
  position: relative;
  cursor: pointer;
}

.sidemenu {
  width: 90%;
  position: fixed;
  height: 100vh;
  z-index: 250;
  background: white;
  top: 0;
  right: -100%;
}
.sidemenu .closeSidemenu {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
}
.sidemenu .sidemenuLink {
  width: 100%;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
}
.sidemenu .sidemenuLink ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.sidemenu .sidemenuLink ul li {
  list-style: none;
}
.sidemenu .sidemenuLink ul li a {
  text-decoration: none;
  color: black;
  padding: 10px 30px;
  display: flex;
  font-size: 40px;
  font-family: myFirstFont;
}

nav {
  width: 100%;
  background: white;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
}
nav .navMain {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 480px) {
  nav .navMain {
    height: 60px;
  }
}
nav .navMain .navLogo {
  width: 100px;
  height: 100%;
  text-decoration: none;
}
@media (max-width: 480px) {
  nav .navMain .navLogo {
    width: 80px;
  }
}
nav .navMain .navLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
nav .navMain .navLink {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 768px) {
  nav .navMain .navLink {
    display: none;
  }
}
nav .navMain .navLink ul {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 80px;
}
nav .navMain .navLink ul li {
  list-style: none;
}
nav .navMain .navLink ul li a {
  text-decoration: none;
  color: black;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
}
nav .navMain .navBar {
  display: none;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 768px) {
  nav .navMain .navBar {
    display: flex;
  }
}
nav .navMain .navBar .navBarBox {
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}
nav .navMain .navBar .navBarBox span {
  width: 100%;
  height: 3px;
  background: black;
}

.slideUp {
  transform: translateY(-80px);
  transition: 0.5s ease-out;
}

.slideDown {
  transform: translateY(0px);
  transition: 0.5s ease-out;
}

.navActive {
  background: white;
}

#banner {
  width: 100%;
  height: calc(100vh - 80px);
  margin-top: 80px;
  position: relative;
  z-index: 0;
}
@media (max-width: 480px) {
  #banner {
    height: calc(100vh - 60px);
    margin-top: 60px;
  }
}
#banner .bannerSlider {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#banner .bannerSlider .bannerSliderBox {
  width: 100%;
  height: calc(100vh - 80px);
  overflow: hidden;
}
@media (max-width: 480px) {
  #banner .bannerSlider .bannerSliderBox {
    height: calc(100vh - 60px);
  }
}
#banner .bannerSlider .bannerSliderBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#banner .bannerSlider .owl-item {
  animation: scaleUpFadeOut 2s forwards ease;
}
#banner .bannerSlider .owl-item:nth-of-type(4) {
  z-index: 2;
}
#banner .bannerSlider .active {
  animation: scaleDownFadeIn 2s forwards ease;
}
@keyframes scaleUpFadeOut {
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  75% {
    transform: scale(1.02);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes scaleDownFadeIn {
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
#banner .bannerSlider .owl-nav, #banner .bannerSlider .owl-dots {
  display: none;
}
#banner .bannerMain {
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(rgba(0, 0, 0, 0.051), rgba(0, 0, 0, 0.595));
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  padding: 100px 5%;
}
@media (max-width: 1800px) {
  #banner .bannerMain {
    padding-bottom: 50px;
  }
}
#banner .bannerMain h1 {
  font-size: 4em;
  width: 45%;
  color: white;
  font-family: myFirstFont;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 1800px) {
  #banner .bannerMain h1 {
    width: 55%;
  }
}
@media (max-width: 1024px) {
  #banner .bannerMain h1 {
    width: 85%;
  }
}
@media (max-width: 768px) {
  #banner .bannerMain h1 {
    font-size: 3em;
  }
}
@media (max-width: 480px) {
  #banner .bannerMain h1 {
    font-size: 2em;
    width: 100%;
  }
}
#banner .bannerMain .bannerBtnArea {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 480px) {
  #banner .bannerMain .bannerBtnArea {
    gap: 0px;
    justify-content: space-between;
    width: 100%;
  }
}
#banner .bannerMain .bannerBtnArea .exploreBtn {
  padding: 14px 60px;
  background: var(--primaryColor);
  color: white;
  text-decoration: none;
  font-size: 18px;
  border-radius: 50px;
  font-weight: 300;
  text-transform: uppercase;
  transition: 0.3s;
}
@media (max-width: 480px) {
  #banner .bannerMain .bannerBtnArea .exploreBtn {
    flex: 0 0 48%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
#banner .bannerMain .bannerBtnArea .exploreBtn:hover {
  transition: 0.3s;
  background: white;
  color: var(--primaryColor);
}
#banner .bannerMain .bannerBtnArea .BookBtn {
  padding: 14px 60px;
  background: white;
  color: var(--primaryColor);
  text-decoration: none;
  font-size: 18px;
  border-radius: 50px;
  font-weight: 300;
  text-transform: uppercase;
  transition: 0.3s;
  cursor: pointer;
}
@media (max-width: 480px) {
  #banner .bannerMain .bannerBtnArea .BookBtn {
    flex: 0 0 48%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
#banner .bannerMain .bannerBtnArea .BookBtn:hover {
  transition: 0.3s;
  background: var(--primaryColor);
  color: white;
}

#about {
  width: 100%;
  padding: 100px 0px;
}
@media (max-width: 480px) {
  #about {
    padding: 50px 0px;
  }
}
#about .aboutHead {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#about .aboutHead h3 {
  font-family: "League Script", cursive;
  text-align: center;
  font-size: 3.5em;
  color: var(--secondaryColor);
}
@media (max-width: 768px) {
  #about .aboutHead h3 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #about .aboutHead h3 {
    font-size: 2em;
  }
}
#about .aboutHead h2 {
  font-family: myFirstFont;
  text-align: center;
  font-size: 3.5em;
  margin-top: 20px;
}
@media (max-width: 1800px) {
  #about .aboutHead h2 {
    width: 75%;
  }
}
@media (max-width: 1024px) {
  #about .aboutHead h2 {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  #about .aboutHead h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #about .aboutHead h2 {
    width: 100%;
    font-size: 2em;
  }
}
#about .aboutMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 70px;
}
#about .aboutMain .aboutThumbnail {
  flex: 0 0 50%;
}
@media (max-width: 1024px) {
  #about .aboutMain .aboutThumbnail {
    flex: 100%;
  }
}
#about .aboutMain .aboutThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#about .aboutMain .aboutDetails {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  #about .aboutMain .aboutDetails {
    flex: 100%;
    margin-top: 30px;
  }
}
#about .aboutMain .aboutDetails p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  margin-top: 30px;
}
#about .aboutMain .aboutDetails p:nth-of-type(1) {
  margin-top: 0;
}

#rooms {
  width: 100%;
  padding: 100px 0px;
  background: white;
}
@media (max-width: 480px) {
  #rooms {
    padding: 50px 0px;
  }
}
#rooms .roomsHead {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#rooms .roomsHead h3 {
  font-family: "League Script", cursive;
  text-align: center;
  font-size: 3.5em;
  color: var(--secondaryColor);
}
@media (max-width: 768px) {
  #rooms .roomsHead h3 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #rooms .roomsHead h3 {
    font-size: 2em;
  }
}
#rooms .roomsHead h2 {
  font-family: myFirstFont;
  text-align: center;
  font-size: 3.5em;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  #rooms .roomsHead h2 {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  #rooms .roomsHead h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #rooms .roomsHead h2 {
    font-size: 2em;
  }
}
#rooms .roomsMain {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  row-gap: 120px;
  margin-top: 80px;
}
@media (max-width: 480px) {
  #rooms .roomsMain {
    row-gap: 80px;
  }
}
#rooms .roomsMain .roomsBox {
  width: calc(50% - 40px);
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  #rooms .roomsMain .roomsBox {
    width: 100%;
  }
}
#rooms .roomsMain .roomsBox .roomsBoxThumbnail {
  width: 100%;
  height: 500px;
  background: #eee;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1800px) {
  #rooms .roomsMain .roomsBox .roomsBoxThumbnail {
    height: 400px;
  }
}
@media (max-width: 1024px) {
  #rooms .roomsMain .roomsBox .roomsBoxThumbnail {
    height: 500px;
  }
}
@media (max-width: 768px) {
  #rooms .roomsMain .roomsBox .roomsBoxThumbnail {
    height: 400px;
  }
}
#rooms .roomsMain .roomsBox .roomsBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#rooms .roomsMain .roomsBox .roomsBoxThumbnail .roomsBoxPrice {
  position: absolute;
  z-index: 2;
  bottom: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.923);
  display: flex;
  flex-direction: column;
  padding: 20px 40px;
}
@media (max-width: 768px) {
  #rooms .roomsMain .roomsBox .roomsBoxThumbnail .roomsBoxPrice {
    padding: 10px 30px;
  }
}
#rooms .roomsMain .roomsBox .roomsBoxThumbnail .roomsBoxPrice span {
  font-size: 18px;
  font-weight: 300;
	display: none;
}
@media (max-width: 768px) {
  #rooms .roomsMain .roomsBox .roomsBoxThumbnail .roomsBoxPrice span {
    font-size: 16px;
  }
}
#rooms .roomsMain .roomsBox .roomsBoxThumbnail .roomsBoxPrice .roomsBoxPriceBox {
  width: 100%;
  display: flex;
  align-items: center;
}
#rooms .roomsMain .roomsBox .roomsBoxThumbnail .roomsBoxPrice .roomsBoxPriceBox h5 {
  font-size: 40px;
  font-weight: 700;
  color: var(--secondaryColor);
}
@media (max-width: 768px) {
  #rooms .roomsMain .roomsBox .roomsBoxThumbnail .roomsBoxPrice .roomsBoxPriceBox h5 {
    font-size: 30px;
  }
}
#rooms .roomsMain .roomsBox .roomsBoxThumbnail .roomsBoxPrice .roomsBoxPriceBox p {
  margin-left: 10px;
  font-size: 16px;
}
#rooms .roomsMain .roomsBox .roomsBoxDetails {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  #rooms .roomsMain .roomsBox .roomsBoxDetails {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  #rooms .roomsMain .roomsBox .roomsBoxDetails .roomsBoxDetailsBox {
    width: 100%;
  }
}
#rooms .roomsMain .roomsBox .roomsBoxDetails .roomsBoxDetailsBox h4 {
  font-size: 2.5em;
  font-weight: 500;
  font-family: myFirstFont;
}
@media (max-width: 768px) {
  #rooms .roomsMain .roomsBox .roomsBoxDetails .roomsBoxDetailsBox h4 {
    font-size: 2em;
  }
}
#rooms .roomsMain .roomsBox .roomsBoxDetails .roomsBoxDetailsBox .bookBtn {
  padding: 10px 40px;
  border-radius: 50px;
  background: var(--primaryColor);
  color: white;
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid var(--primaryColor);
}
@media (max-width: 480px) {
  #rooms .roomsMain .roomsBox .roomsBoxDetails .roomsBoxDetailsBox .bookBtn {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
  }
}
#rooms .roomsMain .roomsBox .roomsBoxDetails .roomsBoxDetailsBox .bookBtn:hover {
  transition: 0.3s;
  color: var(--primaryColor);
  background: white;
}
#rooms .disclimer{
	width:100%;
	margin-top :100px;
	background: #F8F988;
	padding: 50px;
	display :flex;
	flex-direction :column;
	justify-content: center;
	align-items :center;
	gap: 30px
}
@media(max-width:768px){
	#rooms .disclimer{
		gap :20px;
		margin-top :50px;
	}
}
@media(max-width:480px){
	#rooms .disclimer{
		gap :15px;
		padding :20px;
	}
}
#rooms .disclimer p{
	font-size: 2em;
	font-weight: 500;
	font-family: myFirstFont;
	text-align :center;
}
@media(max-width:768px){
	#rooms .disclimer p{
		font-size: 25px;
	}
}
@media(max-width:480px){
	#rooms .disclimer p{
		font-size: 20px;
	}
}

#facilities {
  width: 100%;
  padding: 100px 0px;
}
@media (max-width: 480px) {
  #facilities {
    padding: 50px 0px;
  }
}
#facilities .facilitiesHead {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#facilities .facilitiesHead h3 {
  font-family: "League Script", cursive;
  text-align: center;
  font-size: 3.5em;
  color: var(--secondaryColor);
}
@media (max-width: 768px) {
  #facilities .facilitiesHead h3 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #facilities .facilitiesHead h3 {
    font-size: 2em;
  }
}
#facilities .facilitiesHead h2 {
  font-family: myFirstFont;
  text-align: center;
  font-size: 3.5em;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  #facilities .facilitiesHead h2 {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  #facilities .facilitiesHead h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #facilities .facilitiesHead h2 {
    font-size: 2em;
  }
}
#facilities .facilitiesMain {
  width: 100%;
  background: var(--primaryColor);
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 80px;
  gap: 20px;
}
@media (max-width: 1024px) {
  #facilities .facilitiesMain {
    row-gap: 40px;
  }
}
@media (max-width: 480px) {
  #facilities .facilitiesMain {
    padding: 20px;
  }
}
#facilities .facilitiesMain .facilitiesBox {
  width: calc(25% - 15px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  #facilities .facilitiesMain .facilitiesBox {
    width: calc(50% - 15px);
  }
}
@media (max-width: 480px) {
  #facilities .facilitiesMain .facilitiesBox {
    width: 100%;
  }
}
#facilities .facilitiesMain .facilitiesBox .facilitiesBoxIcon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 480px) {
  #facilities .facilitiesMain .facilitiesBox .facilitiesBoxIcon {
    width: 50px;
    height: 50px;
  }
}
#facilities .facilitiesMain .facilitiesBox .facilitiesBoxIcon span {
  font-size: 30px;
}
@media (max-width: 480px) {
  #facilities .facilitiesMain .facilitiesBox .facilitiesBoxIcon span {
    font-size: 22px;
  }
}
#facilities .facilitiesMain .facilitiesBox p {
  width: calc(100% - 80px);
  font-size: 25px;
  font-family: myFirstFont;
  color: white;
}
#facilities .spaBox {
  width: 100%;
  height: 700px;
  background: #eee;
  margin-top: 50px;
  position: relative;
}
@media (max-width: 1800px) {
  #facilities .spaBox {
    height: 550px;
  }
}
@media (max-width: 768px) {
  #facilities .spaBox {
    height: 400px;
  }
}
@media (max-width: 480px) {
  #facilities .spaBox {
    height: 300px;
  }
}
#facilities .spaBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#facilities .spaBox .spaBoxMain {
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(rgba(0, 0, 0, 0.046), rgba(0, 0, 0, 0.372));
  padding: 80px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
@media (max-width: 1024px) {
  #facilities .spaBox .spaBoxMain {
    padding: 50px;
  }
}
@media (max-width: 480px) {
  #facilities .spaBox .spaBoxMain {
    padding: 20px;
  }
}
#facilities .spaBox .spaBoxMain h2 {
  font-family: myFirstFont;
  font-size: 5em;
  color: white;
}
@media (max-width: 1800px) {
  #facilities .spaBox .spaBoxMain h2 {
    font-size: 4em;
  }
}
@media (max-width: 768px) {
  #facilities .spaBox .spaBoxMain h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #facilities .spaBox .spaBoxMain h2 {
    font-size: 2em;
  }
}

#gallery {
  width: 100%;
  padding-top: 100px;
  background: white;
}
@media (max-width: 480px) {
  #gallery {
    padding-top: 50px;
  }
}
#gallery .galleryHead {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#gallery .galleryHead h3 {
  font-family: "League Script", cursive;
  text-align: center;
  font-size: 3.5em;
  color: var(--secondaryColor);
}
@media (max-width: 768px) {
  #gallery .galleryHead h3 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #gallery .galleryHead h3 {
    font-size: 2em;
  }
}
#gallery .galleryHead h2 {
  font-family: myFirstFont;
  text-align: center;
  font-size: 3.5em;
  margin-top: 20px;
}
@media (max-width: 1800px) {
  #gallery .galleryHead h2 {
    width: 55%;
  }
}
@media (max-width: 1024px) {
  #gallery .galleryHead h2 {
    font-size: 3em;
    width: 65%;
  }
}
@media (max-width: 768px) {
  #gallery .galleryHead h2 {
    font-size: 2.5em;
    width: 80%;
  }
}
@media (max-width: 480px) {
  #gallery .galleryHead h2 {
    width: 100%;
    font-size: 2em;
  }
}
#gallery .galleryMain {
  margin-top: 80px;
  width: 100%;
}
@media (max-width: 480px) {
  #gallery .galleryMain {
    margin-top: 40px;
  }
}
#gallery .galleryMain .galleryBox {
  width: 100%;
  height: 600px;
  background: #eee;
  text-decoration: none;
  overflow: hidden;
  display: flex;
}
@media (max-width: 1800px) {
  #gallery .galleryMain .galleryBox {
    height: 400px;
  }
}
@media (max-width: 480px) {
  #gallery .galleryMain .galleryBox {
    height: 250px;
  }
}
#gallery .galleryMain .galleryBox:hover img {
  transition: 0.3s;
  transform: scale(1.05);
}
#gallery .galleryMain .galleryBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
#gallery .galleryMain .owl-dots, #gallery .galleryMain .owl-nav {
  display: none;
}

#contact {
  width: 100%;
  background: white;
  padding: 100px 0px;
}
@media (max-width: 480px) {
  #contact {
    padding: 50px 0px;
  }
}
#contact h3 {
  font-family: "League Script", cursive;
  font-size: 3.5em;
  color: var(--secondaryColor);
}
@media (max-width: 768px) {
  #contact h3 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #contact h3 {
    font-size: 2em;
  }
}
#contact h2 {
  font-family: myFirstFont;
  font-size: 3.5em;
  margin-top: 20px;
}
@media (max-width: 768px) {
  #contact h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #contact h2 {
    font-size: 2em;
  }
}
#contact .contactMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
}
#contact .contactMain .contactDetails {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  #contact .contactMain .contactDetails {
    flex: 0 0 50%;
  }
}
@media (max-width: 768px) {
  #contact .contactMain .contactDetails {
    flex: 100%;
  }
}
#contact .contactMain .contactDetails .contactDetailsBox1 {
  display: flex;
  flex-direction: column;
}
#contact .contactMain .contactDetails .contactDetailsBox1 span {
  font-family: "myFirstFont";
  font-size: 14px;
}
#contact .contactMain .contactDetails .contactDetailsBox1 .contactDetailsBox1Column {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#contact .contactMain .contactDetails .contactDetailsBox1 .contactDetailsBox1Column .contactDetailsBox1Column1 {
  display: flex;
  flex-direction: column;
  margin-left: 100px;
}
@media (max-width: 1024px) {
  #contact .contactMain .contactDetails .contactDetailsBox1 .contactDetailsBox1Column .contactDetailsBox1Column1 {
    margin-left: 0;
    width: 100%;
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  #contact .contactMain .contactDetails .contactDetailsBox1 .contactDetailsBox1Column .contactDetailsBox1Column1 {
    width: auto;
    margin-top: 0;
  }
}
@media (max-width: 480px) {
  #contact .contactMain .contactDetails .contactDetailsBox1 .contactDetailsBox1Column .contactDetailsBox1Column1 {
    width: 100%;
    margin-top: 40px;
  }
}
#contact .contactMain .contactDetails .contactDetailsBox1 .contactDetailsBox1Column .contactDetailsBox1Column1:nth-child(1) {
  margin-left: 0;
}
@media (max-width: 1024px) {
  #contact .contactMain .contactDetails .contactDetailsBox1 .contactDetailsBox1Column .contactDetailsBox1Column1:nth-child(1) {
    margin-top: 0;
  }
}
#contact .contactMain .contactDetails .contactDetailsBox1 .contactDetailsBox1Column .contactDetailsBox1Column1 p {
  font-weight: 400;
  font-size: 14px;
  margin-top: 10px;
}
#contact .contactMain .contactDetails .contactDetailsBox1 .contactDetailsBox1Column .contactDetailsBox1Column1 a {
  text-decoration: none;
  color: black;
  font-weight: 400;
  font-size: 14px;
  margin-top: 5px;
  display: flex;
  align-items: center;
}
#contact .contactMain .contactDetails .contactDetailsBox1 .contactDetailsBox1Column .contactDetailsBox1Column1 a span {
  width: 100px;
  opacity: 1;
}
#contact .contactMain .contactDetails .contactDetailsBox1 .contactDetailsBox1Column .contactDetailsBox1Column1 a:nth-child(1) {
  margin-top: 0px;
}
#contact .contactMain .contactDetails .contactDetailsBox2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 50px;
}
#contact .contactMain .contactDetails .contactDetailsBox2 span {
  font-family: "myFirstFont";
  font-weight: 100;
  font-size: 14px;
  letter-spacing: 1px;
}
#contact .contactMain .contactDetails .contactDetailsBox2 .footerSocialLinks {
  display: flex;
  align-items: center;
}
#contact .contactMain .contactDetails .contactDetailsBox2 .footerSocialLinks a {
  text-decoration: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: black;
  margin-top: 20px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  transition: 0.2s;
}
#contact .contactMain .contactDetails .contactDetailsBox2 .footerSocialLinks a:hover {
  background: var(--primaryColor);
  color: white;
  transition: 0.2s;
}
#contact .contactMain .contactDetails .contactDetailsBox3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 50px;
}
#contact .contactMain .contactDetails .contactDetailsBox3 iframe {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1024px) {
  #contact .contactMain .contactDetails .contactDetailsBox3 iframe {
    height: 300px;
  }
}
@media (max-width: 480px) {
  #contact .contactMain .contactDetails .contactDetailsBox3 iframe {
    height: 250px;
  }
}
#contact .contactMain .contactForm {
  flex: 0 0 35%;
}
@media (max-width: 1024px) {
  #contact .contactMain .contactForm {
    flex: 0 0 45%;
  }
}
@media (max-width: 768px) {
  #contact .contactMain .contactForm {
    flex: 100%;
    margin-top: 70px;
  }
}
#contact .contactMain .contactForm form {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 50px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.0509803922);
}
@media (max-width: 480px) {
  #contact .contactMain .contactForm form {
    padding: 20px;
  }
}
#contact .contactMain .contactForm form .formgroup {
  flex-direction: column;
  width: 100%;
  display: flex;
  margin-top: 30px;
}
#contact .contactMain .contactForm form .formgroup:nth-child(1) {
  margin-top: 0;
}
#contact .contactMain .contactForm form .formgroup label {
  opacity: 0.7;
}
#contact .contactMain .contactForm form .formgroup input {
  width: 100%;
  height: 50px;
  background: transparent;
  border: 1px solid #ddd;
  margin-top: 5px;
  padding: 0px 20px;
  font-size: 14px;
  outline: none;
}
#contact .contactMain .contactForm form .formgroup input:focus {
  border: 1px solid var(--primaryColor);
}
#contact .contactMain .contactForm form .formgroup textarea {
  width: 100%;
  height: 100px;
  background: transparent;
  border: 1px solid #ddd;
  margin-top: 5px;
  padding: 10px 20px;
  font-size: 14px;
  outline: none;
}
#contact .contactMain .contactForm form .formgroup textarea:focus {
  border: 1px solid var(--primaryColor);
}
#contact .contactMain .contactForm form .formBtnArea {
  width: 100%;
  margin-top: 30px;
}
#contact .contactMain .contactForm form .formBtnArea button {
  background: var(--primaryColor);
  color: white;
  width: 150px;
  padding: 12px;
  border: none;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 300;
  outline: none;
  cursor: pointer;
  transition: 0.2s;
}
@media (max-width: 480px) {
  #contact .contactMain .contactForm form .formBtnArea button {
    width: 100%;
  }
}
#contact .contactMain .contactForm form .formBtnArea button:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
}

footer {
  width: 100%;
  background: var(--primaryColor);
  padding: 30px 0px;
}
footer .footerStrip {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
footer .footerStrip p {
  font-size: 12px;
  color: white;
}
footer .footerStrip p a{
	text-decoration: none;
  font-size: 12px;
  color: white;
}
footer .footerStrip .desined {
  font-size: 12px;
  color: white;
  display: flex;
  align-items: center;
}
footer .footerStrip .desined i {
  margin: 0px 5px;
  color: white;
}
footer .footerStrip .desined a {
  text-decoration: none;
  color: white;
}
footer .footerStrip .desined a .footerStripLogo {
  width: 60px;
  margin-left: 10px;
}
footer .footerStrip .desined a .footerStripLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.terms{
	width: 100%;
	padding: 50px 0px;
	margin-top: 80px;
}
@media(max-width:480px){
	.terms{
		margin-top: 60px;
	}
}
.terms .termsMain{
	width: 100%;
	display :flex;
	flex-direction :column;
}
.terms .termsMain h2{
	font-size: 20px;
	font-weight: 700;
	margin-top: 50px;
}
.terms .termsMain h2:nth-of-type(1){
	margin-top: 0px;
}
.terms .termsMain p{
	font-size: 14px;
	margin-top: 10px;
	line-height :1.7;
}
.terms .termsMain h3{
	font-size: 18px;
	font-weight: 500;
	margin-top:50px;
}

#blogBanner{
	width: 100%;
	padding: 100px 0px;
	margin-top: 80px;
}
@media (max-width: 480px) {
	#blogBanner {
		margin-top: 60px;
	}
}
@media(max-width:1024px){
	#blogBanner{
		padding :50px 0px;
	}
}
#blogBanner .blogBannerMain{
	width :100%;
	display :flex;
	justify-content :center;
	align-items :center;
	flex-direction :column;
}
#blogBanner .blogBannerMain h1{
	text-align :center;
	font-size: 3em;
	font-weight: 500;
}
@media (max-width: 480px) {
	#blogBanner .blogBannerMain h1{
		font-size: 2.3em;
	}
}

#blogList{
	width: 100%;
	padding-bottom:100px;
}
#blogList .blogListMain{
	width:100%;
	display :flex;
	justify-content :space-between;
	flex-wrap :wrap;
	row-gap: 50px;
	position: relative;
}
#blogList .blogListMain::after{
	content: '';
	height: 0;
	width: 31%;
}
#blogList .blogListMain .blogListBox{
	flex: 0 0 31%;
	text-decoration :none;
	display :flex;
	flex-direction :column;
}
@media(max-width:1024px){
	#blogList .blogListMain .blogListBox{
		flex :0 0 48%;
	}
}
@media(max-width:480px){
	#blogList .blogListMain .blogListBox{
		flex :100%;
	}
}
#blogList .blogListMain .blogListBox:hover .blogListBoxThumbnail img{
	transition: .3s;
	transform: scale(1.05);
}
#blogList .blogListMain .blogListBox .blogListBoxThumbnail{
	width :100%;
	height: 280px;
	background :#eee;
	border-radius :10px;
	overflow :hidden;
}
@media(max-width:1800px){
	#blogList .blogListMain .blogListBox .blogListBoxThumbnail{
		height :240px;
	}
}
@media(max-width:768px){
	#blogList .blogListMain .blogListBox .blogListBoxThumbnail{
		height :200px;
	}
}
#blogList .blogListMain .blogListBox .blogListBoxThumbnail img{
	width :100%;
	height: 100%;
	object-fit :cover;
	transition: .3s;
}
#blogList .blogListMain .blogListBox .blogListBoxDetails{
	width :100%;
	margin-top :20px;
	display :flex;
	flex-direction :column;
}
#blogList .blogListMain .blogListBox .blogListBoxDetails h2{
	font-size: 25px;
	font-weight: 500;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	max-height: 75px;
	color :black
}
#blogList .blogListMain .blogListBox .blogListBoxDetails p{
	font-size: 14px;
	line-height: 1.5;
	margin-top: 10px;
	color: var(--secondaryTextColor);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	max-height: 45px;
}

#innerBlog{
	width:100%;
	padding: 50px 0px 100px 0px;
	margin-top: 80px;
}
@media(max-width:768px){
	#innerBlog{
		margin-top: 60px;
		padding: 50px 0px;
	}
}
#innerBlog .innerBlogMain{
	padding: 0px 10%;
	display :flex;
	flex-direction :column;
}
@media(max-width:1024px){
	#innerBlog .innerBlogMain{
		padding: 0px 5%;
	}
}
@media(max-width:768px){
	#innerBlog .innerBlogMain{
		padding: 0px;
	}
}
#innerBlog .innerBlogMain .innerBlogThumbnail{
	width :100%;
}
#innerBlog .innerBlogMain .innerBlogThumbnail img{
	width :100%;
	height :100%;
	object-fit: cover;
	border-radius :10px;
	overflow: hidden;
}
#innerBlog .innerBlogMain .innerBlogDetails{
	width:100%;
	margin-top: 40px;
	display :flex;
	flex-direction: column;
}
#innerBlog .innerBlogMain .innerBlogDetails h1 {
  font-size: 3em;
  line-height: 1.3;
	font-weight :600;
}
@media (max-width: 1800px) {
#innerBlog .innerBlogMain .innerBlogDetails h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 768px) {
#innerBlog .innerBlogMain .innerBlogDetails h1 {
    font-size: 2.3em;
  }
}
@media (max-width: 480px) {
#innerBlog .innerBlogMain .innerBlogDetails h1 {
    font-size: 2em;
  }
}
#innerBlog .innerBlogMain .innerBlogDetails p {
  font-size: 16px;
  line-height: 2;
  margin-top: 30px;
  font-family: "Poppins", sans-serif !important;
	font-weight :300;
}
@media (max-width: 1024px) {
#innerBlog .innerBlogMain .innerBlogDetails p {
    font-size: 14px;
  }
}

/*# sourceMappingURL=style.css.map */