@-webkit-keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@font-face {
  font-family: futura-book-bt;
  src: url(../fonts/futura-book-bt.ttf);
}

@font-face {
  font-family: playfair_displayregular;
  src: url(../fonts/playfairdisplay-regular-webfont.woff2) format("woff2"),
    url(../fonts/playfairdisplay-regular-webfont.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: futura_md_btbold;
  src: url(../fonts/futubd-webfont.woff2) format("woff2"),
    url(../fonts/futubd-webfont.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: futura_md_btmedium;
  src: url(../fonts/futumd-webfont.woff2) format("woff2"),
    url(../fonts/futumd-webfont.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: futura_md_btbold;
  src: url(../fonts/futuraboldbt-webfont.woff2) format("woff2"),
    url(../fonts/futuraboldbt-webfont.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: futura_md_btmedium;
  src: url(../fonts/futuramediumbt-webfont.woff2) format("woff2"),
    url(../fonts/futuramediumbt-webfont.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: moonbold;
  src: url(../fonts/moon_bold-webfont.woff2) format("woff2"),
    url(../fonts/moon_bold-webfont.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: moonlight;
  src: url(../fonts/moon_light-webfont.woff2) format("woff2"),
    url(../fonts/moon_light-webfont.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: open_sansbold;
  src: url(../fonts/opensans-bold-webfont.woff2) format("woff2"),
    url(../fonts/opensans-bold-webfont.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: open_sanslight;
  src: url(../fonts/opensans-light-webfont.woff2) format("woff2"),
    url(../fonts/opensans-light-webfont.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: open_sansregular;
  src: url(../fonts/opensans-regular-webfont.woff2) format("woff2"),
    url(../fonts/opensans-regular-webfont.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: playfair_displaybold;
  src: url(../fonts/playfairdisplay-bold-webfont.woff2) format("woff2"),
    url(../fonts/playfairdisplay-bold-webfont.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-smooth: always;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.004);
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}

.primary-title {
  font-family: futura_md_btmedium, Verdana, Geneva, Tahoma, sans-serif;
  font-size: 2.5rem;
  line-height: 1.4;
}

.secondary-title {
  font-family: futura_md_btmedium, Verdana, Geneva, Tahoma, sans-serif;
  font-size: 2.8rem;
  line-height: 1;
}

.paragraph {
  font-family: futura-book-bt, Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.3;
  text-align: justify;
}

html {
  font-size: 16px;
  font-family: futura_md_btmedium, Verdana, Geneva, Tahoma, sans-serif;
  scroll-behavior: inherit;
}

:root {
  scroll-behavior: inherit;
}

body {
  font-family: futura_md_btmedium, Verdana, Geneva, Tahoma, sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #000;
  -webkit-animation: fade-in ease 1.5s forwards;
  animation: fade-in ease 1.5s forwards;
  overflow-x: hidden;
}

body.active {
  overflow: hidden;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(0.8) opacity(0);
    transform: scale(0.8) opacity(0);
  }

  100% {
    -webkit-transform: scale(1) opacity(0.7);
    transform: scale(1) opacity(0.7);
  }
}

@keyframes zoom-in {
  0% {
    -webkit-transform: scale(0.8) opacity(0);
    transform: scale(0.8) opacity(0);
  }

  100% {
    -webkit-transform: scale(1) opacity(0.7);
    transform: scale(1) opacity(0.7);
  }
}

.floating__btns {
  position: fixed;
  top: 15rem;
  right: 0;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.floating__btns .call,
.floating__btns .pdf {
  margin-bottom: 0.8rem;
  width: 5.5rem;
  padding: 1rem 0 1rem 1.5rem;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  cursor: pointer;
  box-shadow: 1px 2px 12px 2px #00000036;
}

.floating__btns .call:hover img,
.floating__btns .pdf:hover img {
  -webkit-transition: 0.2s all ease-in;
  transition: 0.2s all ease-in;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.floating__btns .call img,
.floating__btns .pdf img {
  max-height: 2.5rem;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: 0.2s all ease-out;
  transition: 0.2s all ease-out;
}

.floating__btns .pdf {
  background-color: #ff853c;
}

.floating__btns .call {
  background-color: #fff;
}
.about {
  margin-top: -5px;
}
.about__top {
  padding-bottom: 8rem;
  padding-top: 8rem;
}

.about__top .inner {
  background-color: #ff853c;
  padding: 5rem;
  color: #fff;
}

.about__top .inner h1 {
  font-size: 1.2rem;
  letter-spacing: 3px;
  line-height: 1.6;
}

.about__top .inner h6 {
  font-family: futura_md_btbold, Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.3rem;
  margin-top: 1.5rem;
}

.about__top .inner img {
  margin: 0.1rem 0 1.8rem;
  max-width: 18rem;
}

.about__suits {
  color: #fff;
  padding-bottom: 8rem;
}

.about__suits h2 {
  font-family: futura_md_btbold, Verdana, Geneva, Tahoma, sans-serif;
  font-size: 2.6rem;
  line-height: 1.6;
  letter-spacing: 3px;
  padding-bottom: 3.5rem;
}

.about__suits table {
  background-color: #0b0c12;
  color: #fff;
  border-color: #070606 !important;
  position: relative;
}

.about__suits table thead tr th {
  font-family: futura_md_btmedium, Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  font-size: 1.1rem;
  border-color: #fff !important;
  border-width: 2px;
  padding: 1rem 0;
  vertical-align: middle;
  width: 25%;
}

.about__suits table tbody {
  border-color: #fff !important;
}

.about__suits table tbody tr td {
  padding: 1rem;
  border-width: 2px;
  vertical-align: middle;
  font-size: 1rem;
  letter-spacing: 2px;
  font-family: futura-book-bt, Verdana, Geneva, Tahoma, sans-serif;
}

.about__suits table tbody tr td span {
  text-decoration: underline;
  cursor: pointer;
}
.panchshil {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.panchshil:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.91) 0%,
    rgba(0, 0, 0, 0.68) 100%
  );
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.panchshil__inner {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
  margin: auto;
  padding: 10%;
}
.panchshil__inner h2 {
  font-family: futura_md_btbold, Verdana, Geneva, Tahoma, sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: 3px;
  margin: 0;
  padding-bottom: 2rem;
  text-align: left;
}
.amenities {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ff853c;
}

.amenities__slider {
  padding-right: 0;
}

.amenities__slider .image img {
  width: 100%;
}

.amenities__slider .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 2rem;
  right: 0;
  left: 0;
  list-style: none;
  color: #fff;
  padding: 0;
  margin: 0;
  z-index: 3;
}

.amenities__slider .slick-dots li {
  margin: 0 0.3rem;
  cursor: pointer;
  font-size: 0;
  border: 0;
  display: block;
  width: 16px;
  height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.amenities__slider .slick-dots li button {
  border: 0;
  width: 8px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
}

.amenities__slider .slick-dots li.slick-active {
  color: #ff853c;
}

.amenities__slider .slick-dots li.slick-active button {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  -webkit-transition: 0.3s all ease-in;
  transition: 0.3s all ease-in;
  background-color: #ff853c;
}

.amenities__list {
  color: #fff;
  margin-top: 4rem;
}

.amenities__list h2 {
  font-family: futura_md_btbold, Verdana, Geneva, Tahoma, sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: 3px;
  margin: 0;
}

.amenities__list p {
  margin: 1.5rem 0;
}

.amenities__list ul {
  padding: 0;
  margin: 0;
  margin-top: 2.5rem;
}

.amenities__list ul li {
  list-style: none;
  display: flex;
  align-items: center;
  width: 24%;
  float: left;
  padding-bottom: 2rem;
  text-align: left;
  font-size: 1.2rem;
  margin-left: 1%;
  font-family: futura_md_btmedium, Verdana, Geneva, Tahoma, sans-serif;
  position: relative;
}
.amenities__list ul li:before {
  display: none;
}
.amenities__list ul li span {
  display: block;
  margin-right: 0.5rem;
}
.amenities__list ul li span img {
  width: 1.7rem;
  height: 1.7rem;
}

.amenities__list ul li:before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #000;
  border-radius: 50%;
}

.gallery {
  background-color: #0a0a12;
  padding-top: 8rem;
  padding-bottom: 9rem;
}

.gallery__title {
  padding-bottom: 6rem;
  color: #fff;
}

.gallery__title h2 {
  font-family: futura_md_btbold, Verdana, Geneva, Tahoma, sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: 3px;
  margin: 0;
}

.gallery__slider .image,
.gallery__slider .video {
  margin-right: 5rem;
  cursor: pointer;
  max-width: 65vw;
}

.gallery__slider .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: -5rem;
  right: 0;
  left: 0;
  list-style: none;
  color: #fff;
  padding: 0;
  margin: 0;
  z-index: 3;
}

.gallery__slider .slick-dots li {
  margin: 0 0.5rem;
  cursor: pointer;
  font-size: 0;
  border: 0;
  display: block;
  height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.gallery__slider .slick-dots li button {
  border: 0;
  width: 3rem;
  height: 5px;
  background-color: #ff853c;
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
}

.gallery__slider .slick-dots li.slick-active {
  color: #ff853c;
}

.gallery__slider .slick-dots li.slick-active button {
  width: 12rem;
  -webkit-transition: 0.3s all ease-in;
  transition: 0.3s all ease-in;
}

.map {
  background-color: #0a0a12;
  padding-bottom: 8rem;
  padding-top: 2rem;
  color: #fff;
}

.map h2 {
  font-family: futura_md_btbold, Verdana, Geneva, Tahoma, sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: 3px;
  margin: 0;
  padding-bottom: 3rem;
  text-align: left;
}

.map__pin {
  margin-top: 4rem;
}

.map__pin iframe {
  width: 100% !important;
  height: 550px;
  /* -webkit-filter: grayscale(100%);
    filter: grayscale(100%) */
}

.enquiry {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ff853c;
}
.enquiry .right__block {
  border-left: 1px solid #fff;
  padding-left: 2rem;
  color: #fff;
  padding-top: 2rem;
}
.enquiry .right__block .enquiry__address {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.enquiry__address .icon {
  padding-right: 2rem;
}
.enquiry__address .text h3 {
  font-family: futura_md_btbold, Verdana, Geneva, Tahoma, sans-serif;
  letter-spacing: 2px;
  font-size: 1.5rem;
}

.enquiry .left__block {
  padding-right: 3rem;
}
.enquiry .right__block .enquiry__phone {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.enquiry__phone .icon {
  padding-right: 2rem;
}
.enquiry__phone {
  margin-top: 2rem;
}
.enquiry__phone .text h3 {
  font-family: futura_md_btbold, Verdana, Geneva, Tahoma, sans-serif;
  letter-spacing: 2px;
  font-size: 1.5rem;
}
.enquiry__phone .text a {
  color: #fff;
  text-decoration: none;
}

.enquiry h2 {
  font-family: futura_md_btbold, Verdana, Geneva, Tahoma, sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: 3px;
  margin: 0;
  padding-bottom: 5rem;
  color: #fff;
}

.enquiry form .form-select {
  background-color: #ff853c;
  color: #fff;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
  border-bottom: 1px solid #fff;
  padding-left: 0;
  font-family: futura-book-bt, Verdana, Geneva, Tahoma, sans-serif;
  margin-bottom: 1rem;
}

.enquiry form .form-select::-webkit-input-placeholder {
  color: #fff;
}

.enquiry form .form-select:-ms-input-placeholder {
  color: #fff;
}

.enquiry form .form-select::-moz-placeholder {
  color: #fff;
}

.enquiry form .form-select::-ms-input-placeholder {
  color: #fff;
}

.enquiry form .form-select::placeholder {
  color: #fff;
}

.enquiry form .form-control {
  background-color: #ff853c;
  color: #fff;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
  resize: none;
  border-bottom: 1px solid #fff;
  padding-left: 0;
  font-family: futura-book-bt, Verdana, Geneva, Tahoma, sans-serif;
  margin-bottom: 1rem;
}

.enquiry form .form-control::-webkit-input-placeholder {
  color: #fff;
}

.enquiry form .form-control:-ms-input-placeholder {
  color: #fff;
}

.enquiry form .form-control::-moz-placeholder {
  color: #fff;
}

.enquiry form .form-control::-ms-input-placeholder {
  color: #fff;
}

.enquiry form .form-control::placeholder {
  color: #fff;
}

.enquiry form button {
  font-family: futura-book-bt, Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  background-color: #ff853c;
  border: 1px solid #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.5rem 2rem;
  margin-top: 1.5rem;
  -webkit-transition: 0.2s all ease-out;
  transition: 0.2s all ease-out;
}

.enquiry form button:hover {
  background-color: #fff;
  color: #ff853c;
  -webkit-transition: 0.2s all ease-in;
  transition: 0.2s all ease-in;
}

#callback__modal .modal-content {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
}

#callback__modal .modal-content .modal-header {
  padding: 0;
  border: 0;
}

#callback__modal .modal-content .modal-header .btn-close {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-size: 1.3rem;
  z-index: 3;
}

#callback__modal .modal-content .modal-body {
  padding: 6rem;
}

#callback__modal .modal-content .modal-body .modal-title {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1.3rem;
  letter-spacing: 2px;
}

#callback__modal .modal-content .modal-body form .form-select {
  background-color: #fff;
  color: #0a0a12;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 1.2rem;
  outline: 0;
  border-bottom: 1px solid #0a0a12;
  padding-left: 0;
  font-family: futura-book-bt, Verdana, Geneva, Tahoma, sans-serif;
  margin-bottom: 1rem;
}

#callback__modal
  .modal-content
  .modal-body
  form
  .form-select::-webkit-input-placeholder {
  color: #0a0a12;
}

#callback__modal
  .modal-content
  .modal-body
  form
  .form-select:-ms-input-placeholder {
  color: #0a0a12;
}

#callback__modal
  .modal-content
  .modal-body
  form
  .form-select::-moz-placeholder {
  color: #0a0a12;
}

#callback__modal
  .modal-content
  .modal-body
  form
  .form-select::-ms-input-placeholder {
  color: #0a0a12;
}

#callback__modal .modal-content .modal-body form .form-select::placeholder {
  color: #0a0a12;
}

#callback__modal .modal-content .modal-body form .form-control {
  background-color: #fff;
  color: #0a0a12;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 1.2rem;
  outline: 0;
  resize: none;
  border-bottom: 1px solid #0a0a12;
  padding-left: 0;
  font-family: futura-book-bt, Verdana, Geneva, Tahoma, sans-serif;
  margin-bottom: 1rem;
}

#callback__modal
  .modal-content
  .modal-body
  form
  .form-control::-webkit-input-placeholder {
  color: #0a0a12;
}

#callback__modal
  .modal-content
  .modal-body
  form
  .form-control:-ms-input-placeholder {
  color: #0a0a12;
}

#callback__modal
  .modal-content
  .modal-body
  form
  .form-control::-moz-placeholder {
  color: #0a0a12;
}

#callback__modal
  .modal-content
  .modal-body
  form
  .form-control::-ms-input-placeholder {
  color: #0a0a12;
}

#callback__modal .modal-content .modal-body form .form-control::placeholder {
  color: #0a0a12;
}

#callback__modal .modal-content .modal-body form button {
  font-family: futura-book-bt, Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.2rem;
  background-color: #fff;
  border: 1px solid #0a0a12;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
  color: #0a0a12;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.5rem 3.5rem;
  margin-top: 1.5rem;
  -webkit-transition: 0.2s all ease-out;
  transition: 0.2s all ease-out;
}

#callback__modal .modal-content .modal-body form button:hover {
  background-color: #0a0a12;
  color: #fff;
  -webkit-transition: 0.2s all ease-in;
  transition: 0.2s all ease-in;
}

#video__modal .close {
  position: absolute;
  right: 0;
  height: 2rem;
  width: 2rem;
  border: 0;
  font-size: 1.2rem;
  opacity: 1;
  z-index: 1;
}

#video__modal .modal-body {
  padding: 0;
}

#video__modal .modal-content {
  background-color: transparent;
  border-radius: 0;
  border: 0;
}

.header {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
}

.header nav .logo img {
  max-width: 8rem;
}

.header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
}

.header nav ul li {
  list-style: none;
  margin: 0 0.8rem;
  position: relative;
}

.header nav ul li:before {
  content: "";
  width: 0%;
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
}

.header nav ul li:hover {
  color: #ff853c;
}

.header nav ul li:hover:before {
  content: "";
  width: 100%;
  height: 0.3rem;
  background-color: #ff853c;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: 0.3s all ease-in;
  transition: 0.3s all ease-in;
}

.header nav ul li.active {
  color: #ff853c;
}

.header nav ul li.active:before {
  content: "";
  width: 100%;
  height: 0.3rem;
  background-color: #ff853c;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: 0.2s all ease-in;
  transition: 0.2s all ease-in;
}

.header nav ul li a {
  font-family: futura_md_btbold, Verdana, Geneva, Tahoma, sans-serif;
  display: block;
  padding: 2.5rem 0.5rem;
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 1px;
  position: relative;
}
.header nav ul li:last-child a {
  border: 1px solid #ff853c;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.5rem 0.5rem;
  margin-top: 0rem;
  -webkit-transition: 0.2s all ease-out;
  transition: 0.2s all ease-out;
}
.header nav ul li:last-child a:hover {
  background-color: #ff853c;
  color: #fff;
  -webkit-transition: 0.2s all ease-in;
  transition: 0.2s all ease-in;
}
.header nav ul li a img {
  max-width: 1.5rem;
}

.banner {
  position: relative;
}

.banner:before {
  content: "";
  width: 100%;
  height: 25%;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.10407913165266103) 100%
  );
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.banner:after {
  content: "";
  width: 100%;
  height: 25%;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.banner .image img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
}

.banner .slick-prev {
  position: absolute;
  bottom: 2rem;
  right: 12rem;
  z-index: 3;
  display: none !important;
}

.banner .slick-next {
  position: absolute;
  z-index: 3;
  bottom: 3.2rem;
  right: 4rem;
  width: 30px;
  height: 20px;
  border: 0;
  background: url(../images/arrow.png) 0 0/100% no-repeat;
  font-size: 0;
}

.banner .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 3rem;
  right: 8rem;
  list-style: none;
  color: #fff;
  padding: 0;
  margin: 0;
  z-index: 3;
}

.banner .slick-dots li {
  margin: 0 1rem;
  cursor: pointer;
  font-size: 1.3rem;
  font-family: futura_md_btmedium, Verdana, Geneva, Tahoma, sans-serif;
}

.banner .slick-dots li.slick-active {
  color: #ff853c;
}

.overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.footer {
  background-color: #0a0a12;
  padding: 2rem 0;
}

.footer .links__left a {
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  font-family: futura-book-bt, Verdana, Geneva, Tahoma, sans-serif;
  letter-spacing: 4px;
}

.footer .links__right {
  text-align: right;
}

.footer .links__right a {
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  font-family: futura-book-bt, Verdana, Geneva, Tahoma, sans-serif;
  letter-spacing: 4px;
}

.footer .social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer .social ul li {
  margin: 0 2.5rem;
}

.footer .social ul li a {
  text-decoration: none;
  color: #ff853c;
  font-size: 1.8rem;
  padding: 0.2rem;
}

.desktop {
  display: block !important;
}
.mobile {
  display: none !important;
}
.floating__btns__mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: fixed;
  bottom: 0rem;
  left: 0;
  background: #ffff;
  color: #ff853c;
  z-index: 4;
}
.floating__btns__mobile a:first-child {
  border-right: 1px solid #ccc;
}
.floating__btns__mobile a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  width: 50%;
  color: #ff853c;
  text-decoration: none;
  font-size: 1rem;
}
.floating__btns__mobile a img {
  margin-right: 0.5rem;
}
.thank {
  /* height: 100vh; */
}
.thank__inner {
  height: 90.1vh;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.thank__inner h1 {
  font-family: "futura_md_btbold", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 3.4rem;
  letter-spacing: 4px;
  line-height: 1.3;
}
.thank__inner p {
  font-size: 1.5rem;
}
.thank__inner a {
  display: inline-block;
  padding: 0.5rem 2.5rem;
  border: 1px solid #fff;
  text-decoration: none;
  color: #fff;
  margin-top: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.3rem;
  transition: 0.2s all ease-out;
}
.thank__inner a:hover {
  transition: 0.2s all ease-in;
  background-color: #ff853c;
  color: #fff;
  border-color: #ff853c;
}
@media only screen and (max-width: 1366px) {
  html {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1024px) {
  html {
    font-size: 16px;
  }
  .enquiry__phone .text h3,
  .enquiry__address .text h3 {
    font-size: 1.2rem;
  }
  .enquiry__address .text p {
    text-align: left;
  }
  .header nav ul li a {
    padding: 2.5rem 0rem;
  }

  /* .amenities__list {
        padding-left: 2rem
    } */

  .amenities__list ul li {
    padding-bottom: 1rem;
    font-size: 1.1rem;
  }

  .gallery__slider .image {
    max-width: 65vw;
    margin-right: 2rem;
  }

  .gallery__slider .video {
    max-width: 65vw;
    margin-right: 2rem;
  }
}

@media only screen and (max-width: 991px) {
  html {
    font-size: 14px;
  }
  .amenities__list ul li {
    width: 32%;
  }
  .about__top .inner {
    padding: 2rem;
  }
  .thank__inner p {
    font-size: 1rem;
  }
  .thank__inner h1 {
    font-size: 2.4rem;
  }
  /* .about__suits {
        padding-bottom: 5.5rem
    } */

  .amenities__list {
    padding-left: 1.5rem;
    margin-top: 3rem;
  }

  .footer .links__left a,
  .footer .links__right a {
    font-size: 0.7rem;
  }

  .footer .social ul li a {
    font-size: 1.3rem;
  }

  .footer .links__left {
    padding-bottom: 1rem;
  }

  .footer .links__right {
    padding-top: 1rem;
  }

  .footer .links__left,
  .footer .links__right {
    text-align: center;
  }

  #callback__modal .modal-content .modal-body {
    padding: 2rem;
  }

  .header nav ul {
    position: fixed;
    z-index: 6;
    height: 100%;
    background: #f2efe8;
    width: 80%;
    padding: 3rem;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 0.2s all ease-in;
    transition: 0.2s all ease-in;
  }

  .header nav ul.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: 0.2s all ease-out;
    transition: 0.2s all ease-out;
  }

  .hamburger {
    width: 32px;
    height: 21px;
    cursor: pointer;
    position: relative;
    z-index: 3;
    margin-bottom: 1.5rem;
    margin-left: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 1s linear;
    transition: all 1s linear;
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
    float: right;
    top: 2rem;
    right: 0;
  }

  .hamburger.active span:nth-of-type(1) {
    top: unset;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-of-type(3) {
    bottom: unset;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .hamburger span {
    height: 3px;
    display: block;
    background: #ff853c;
    border-radius: 2rem;
    width: 90%;
    position: absolute;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .hamburger span:nth-of-type(1) {
    top: 0;
  }

  .hamburger span:nth-of-type(3) {
    bottom: 0;
  }

  .header nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    margin: 0;
    text-align: left;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 2rem;
    background: #fff;
    border-top: 8px solid #ff853c;
  }

  .header nav ul li a {
    padding: 0.8rem 1rem 1.3rem;
    padding-left: 0;
    color: #ff853c;
  }

  .header nav ul li.active:before {
    height: 0.2rem;
  }
}

@media only screen and (max-width: 767px) {
  html {
    font-size: 12px;
  }
  .header nav ul li:last-child a {
    color: #ff853c;
  }
  .enquiry .left__block {
    padding-right: 1rem;
  }
  .enquiry .right__block {
    border-left: 0;
    padding-top: 4rem;
  }
  .amenities__list ul li {
    width: 49%;
  }
  .thank__inner p {
    font-size: 1.5rem;
  }
  .banner .image img {
    height: auto;
    object-fit: initial;
  }
  .header nav .logo img {
    max-width: 6rem;
  }
  .floating__btns {
    display: none !important;
  }
  .desktop {
    display: none !important;
  }
  .mobile {
    display: block !important;
  }
  .floating__btns__mobile.mobile {
    display: flex !important;
  }
  /* .about__suits {
        padding-bottom: .5rem
    } */
  .gallery__slider .slick-dots li button {
    width: 1.3rem;
  }
  .gallery__slider .slick-dots li.slick-active button {
    width: 3rem;
  }

  .footer .social ul li {
    margin: 0 1.5rem;
  }

  .footer .links__left a,
  .footer .links__right a {
    font-size: 1.2rem;
  }

  .footer .social ul li a {
    font-size: 2rem;
  }
}
