:root {
  /* Fonts */
  --font-primary: "Roboto", sans-serif;
  --font-marcellus: "Marcellus", serif;

  /*Colors */
  --black: #1c1c1c;
  --white: #ffffff;
  --primary: #d96704;
  --primary-blue: #004274;
  --secondary: #787878;
  --sky-blue: #f2f5fa;
}

/* Default styles start */

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.25;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 500;
  margin: 0;
}

p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
  padding: 0;
  color: var(--secondary);
}

/* heading */
.h1,
h1 {
  font-size: 72px;
}

.h2,
h2 {
  font-size: 40px;
}

h3,
.h3 {
  font-size: 30px;
}

h4,
.h4 {
  font-size: 24px;
}

.h4-small {
  font-size: 22px;
}

h5,
.h5 {
  font-size: 20px;
}

h6,
.h6 {
  font-size: 18px;
}

.p {
  font-size: 16px;
}

.p-small {
  font-size: 14px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0;
}

/* Pseudo default styles start */

::placeholder {
  color: #898989 !important;
  opacity: 1;
}

::-webkit-input-placeholder {
  color: #898989 !important;
}

:-ms-input-placeholder {
  color: #898989 !important;
}

::-ms-input-placeholder {
  color: #898989 !important;
}

*::-moz-selection {
  background: var(--primary);
  color: white;
}

*::selection {
  background: var(--primary);
  color: white;
}

*::-moz-selection {
  background: var(--primary);
  color: white;
}

*::-webkit-selection {
  background: var(--primary);
  color: white;
}

/* Pseudo default styles end */

.font-primary {
  font-family: var(--font-primary);
}

.font-mrc {
  font-family: var(--font-marcellus);
}

/* COLORS */
.bg-black-color {
  background-color: var(--black);
}

.bg-white-color {
  background-color: var(--white);
}

.bg-primary-color {
  background-color: var(--primary);
}

.bg-primary-blue-color {
  background-color: var(--primary-blue);
}

.bg-secondary-color {
  background-color: var(--secondary);
}

.bg-skyblue-color {
  background-color: var(--sky-blue);
}

.color-black {
  color: var(--black);
}

.color-white {
  color: var(--white);
}

.color-primary {
  color: var(--primary);
}

.color-primary-blue {
  color: var(--primary-blue);
}

.color-secondary {
  color: var(--secondary);
}

.color-skyblue {
  color: var(--sky-blue);
}

/* COLORS */

/* font weight */
.fw-700 {
  font-weight: 700;
}

.fw-600 {
  font-weight: 600;
}

.fw-500 {
  font-weight: 500;
}

.fw-400 {
  font-weight: 400;
}

.fw-300 {
  font-weight: 300;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-auto-0 {
  flex: 0 0 auto;
}

img {
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: var(--primary);
}

a:hover {
  color: var(--primary);
}

/* Button Css Start */
.prime-btn {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-primary);
  line-height: 1;
  letter-spacing: 0.5px;
  background-color: var(--primary);
  color: var(--white);
  border: 0px solid transparent;
  border-radius: 2px;
  padding: 10px 16px;
  width: 152px;
  height: 50px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s ease-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: none;
  box-shadow: none;
}

.prime-btn:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scale(0.2, 1);
  transform: scale(0.2, 1);
  background-color: #000000;
}

.prime-btn:hover::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.prime-btn:hover {
  color: var(--white);
}

.prime-btn .txt {
  position: relative;
  z-index: 1;
}

.btn-check:focus+.btn,
.btn:focus {
  box-shadow: none;
}

/* Button Css End */

.sec-spacing {
  padding: 120px 0;
}

.text-upper {
  text-transform: uppercase;
}

.text-decoration {
  text-decoration: underline;
}

/* .spinner-wrapper {
  width: 100%;
  height: 100%;
  background-color: #f8f6f6;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  position: relative;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
}

.spinner::before,
.spinner:after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.spinner:before {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #3b0000 0%, #bc8c33 100%);
  animation: spin 0.5s infinite linear;
}

.spinner:after {
  width: 90%;
  height: 90%;
  background-color: #f3f0f0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
} */

.preloader {
  background-color: #004274;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.preloader .cssload-container {
  display: block;
  width: 97px;
}

.preloader .cssload-loading i {
  width: 19px;
  height: 19px;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
}

.preloader .cssload-loading i:first-child {
  opacity: 0;
  -webkit-animation: cssload-loading-ani2 0.58s linear infinite;
  animation: cssload-loading-ani2 0.58s linear infinite;
  -webkit-transform: translate(-19px);
  transform: translate(-19px);
}

.preloader .cssload-loading i:nth-child(2),
.preloader .cssload-loading i:nth-child(3) {
  -webkit-animation: cssload-loading-ani3 0.58s linear infinite;
  animation: cssload-loading-ani3 0.58s linear infinite;
}

.preloader .cssload-loading i:last-child {
  -webkit-animation: cssload-loading-ani1 0.58s linear infinite;
  animation: cssload-loading-ani1 0.58s linear infinite;
}

/*=======  ANIMATION  =======*/
@-webkit-keyframes sticky {
  0% {
      top: -200px;
  }

  100% {
      top: 0;
  }
}

@keyframes sticky {
  0% {
      top: -200px;
  }

  100% {
      top: 0;
  }
}

@-webkit-keyframes pulse-border {
  0% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 1;
  }

  100% {
      -webkit-transform: scale(1.3);
      transform: scale(1.3);
      opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 1;
  }

  100% {
      -webkit-transform: scale(1.3);
      transform: scale(1.3);
      opacity: 0;
  }
}

@-webkit-keyframes pulse-border-2 {
  0% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 1;
  }

  100% {
      -webkit-transform: scale(1.5);
      transform: scale(1.5);
      opacity: 0;
  }
}

@keyframes pulse-border-2 {
  0% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 1;
  }

  100% {
      -webkit-transform: scale(1.5);
      transform: scale(1.5);
      opacity: 0;
  }
}

@-webkit-keyframes cssload-loading-ani1 {
  100% {
      -webkit-transform: translate(39px);
      transform: translate(39px);
      opacity: 0;
  }
}

@keyframes cssload-loading-ani1 {
  100% {
      -webkit-transform: translate(39px);
      transform: translate(39px);
      opacity: 0;
  }
}

@-webkit-keyframes cssload-loading-ani2 {
  100% {
      -webkit-transform: translate(19px);
      transform: translate(19px);
      opacity: 1;
  }
}

@keyframes cssload-loading-ani2 {
  100% {
      -webkit-transform: translate(19px);
      transform: translate(19px);
      opacity: 1;
  }
}

@-webkit-keyframes cssload-loading-ani3 {
  100% {
      -webkit-transform: translate(19px);
      transform: translate(19px);
  }
}

@keyframes cssload-loading-ani3 {
  100% {
      -webkit-transform: translate(19px);
      transform: translate(19px);
  }
}

@-webkit-keyframes zoomIn {
  0% {
      -webkit-transform: scale(1);
      transform: scale(1);
  }

  50% {
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
  }

  100% {
      -webkit-transform: scale(1);
      transform: scale(1);
  }
}

@keyframes zoomIn {
  0% {
      -webkit-transform: scale(1);
      transform: scale(1);
  }

  50% {
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
  }

  100% {
      -webkit-transform: scale(1);
      transform: scale(1);
  }
}

@-webkit-keyframes hvr-buzz-out {
  10% {
      -webkit-transform: translateX(3px) rotate(2deg);
      transform: translateX(3px) rotate(2deg);
  }

  20% {
      -webkit-transform: translateX(-3px) rotate(-2deg);
      transform: translateX(-3px) rotate(-2deg);
  }

  30% {
      -webkit-transform: translateX(3px) rotate(2deg);
      transform: translateX(3px) rotate(2deg);
  }

  40% {
      -webkit-transform: translateX(-3px) rotate(-2deg);
      transform: translateX(-3px) rotate(-2deg);
  }

  50% {
      -webkit-transform: translateX(2px) rotate(1deg);
      transform: translateX(2px) rotate(1deg);
  }

  60% {
      -webkit-transform: translateX(-2px) rotate(-1deg);
      transform: translateX(-2px) rotate(-1deg);
  }

  70% {
      -webkit-transform: translateX(2px) rotate(1deg);
      transform: translateX(2px) rotate(1deg);
  }

  80% {
      -webkit-transform: translateX(-2px) rotate(-1deg);
      transform: translateX(-2px) rotate(-1deg);
  }

  90% {
      -webkit-transform: translateX(1px) rotate(0);
      transform: translateX(1px) rotate(0);
  }

  100% {
      -webkit-transform: translateX(-1px) rotate(0);
      transform: translateX(-1px) rotate(0);
  }
}

@keyframes hvr-buzz-out {
  10% {
      -webkit-transform: translateX(3px) rotate(2deg);
      transform: translateX(3px) rotate(2deg);
  }

  20% {
      -webkit-transform: translateX(-3px) rotate(-2deg);
      transform: translateX(-3px) rotate(-2deg);
  }

  30% {
      -webkit-transform: translateX(3px) rotate(2deg);
      transform: translateX(3px) rotate(2deg);
  }

  40% {
      -webkit-transform: translateX(-3px) rotate(-2deg);
      transform: translateX(-3px) rotate(-2deg);
  }

  50% {
      -webkit-transform: translateX(2px) rotate(1deg);
      transform: translateX(2px) rotate(1deg);
  }

  60% {
      -webkit-transform: translateX(-2px) rotate(-1deg);
      transform: translateX(-2px) rotate(-1deg);
  }

  70% {
      -webkit-transform: translateX(2px) rotate(1deg);
      transform: translateX(2px) rotate(1deg);
  }

  80% {
      -webkit-transform: translateX(-2px) rotate(-1deg);
      transform: translateX(-2px) rotate(-1deg);
  }

  90% {
      -webkit-transform: translateX(1px) rotate(0);
      transform: translateX(1px) rotate(0);
  }

  100% {
      -webkit-transform: translateX(-1px) rotate(0);
      transform: translateX(-1px) rotate(0);
  }
}

/* Default styles end */

/* ---- Index Page Style start ---- */

/* Header styles start */

header {
  width: 100%;
  left: 0;
  right: 0;
  background-color: #f4f3ee;
}

.fixed-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1111;
  animation: slideDown 0.5s ease;
  background-color: rgb(0 0 0 / 80%);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.navbar {
  padding: 0px;
  overflow: hidden;
}

.navbar-brand {
  width: 94px;
  height: 130px;
  padding: 0;
  margin: 0;
  z-index: 1111;
  flex: 0 0 auto;
}

.navbar-brand img {
  width: inherit;
  height: inherit;
  object-fit: contain;
}

.header-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-left: 60px;
}

.header-left-top {
  padding: 18px 0;
  display: flex;
  align-items: center;
}

.header-info {
  margin-left: 70px;
}

.header-info-icon {
  width: 40px;
  height: 40px;
  margin-right: 16px;
  flex: 0 0 auto;
}

.header-info-icon img {
  width: inherit;
  height: inherit;
  object-fit: contain;
}

.header-info-content p {
  font-size: 16px;
  line-height: 1;
  color: #1c1c1c;
  margin-bottom: 6px;
}

.header-info-content span {
  font-size: 14px;
  line-height: 1.2;
  color: #101010;
  letter-spacing: 0px;
}

.header-left-bottom {
  background-color: #010101;
  width: 100%;
  position: relative;
  padding-left: 20px;
}

.header-left-bottom::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: #010101;
}

.header-left-bottom .prime-btn {
  height: 60px;
  font-size: 18px;
  /* margin-left: 5px; */
  letter-spacing: 1px;
}

.navbar-expand-lg .navbar-nav {
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-item {
  width: max-content;
}

.nav-link {
  text-transform: capitalize;
  position: relative;
  padding: 0;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  width: max-content;
  letter-spacing: 0.5px;
  color: white;
  margin-right: 70px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* .nav-link:after {
    position: absolute;
    content: " ";
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    width: 0%;
    height: 1px;
    background-color: var(--primary);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
} */

.nav-link:hover,
.nav-link:focus,
.nav-item.active .nav-link {
  color: var(--primary);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav-link:hover:after,
.nav-link:focus:after,
.nav-item.active .nav-link:after {
  width: 60%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-left: 0;
  padding-right: 0;
}

.nav-item:last-child .nav-link {
  margin-right: 60px;
}

/* scroll  */

header.fixed-header .header-left-top {
  display: none;
}

header.fixed-header .navbar-brand {
  width: 78px;
  height: 110px;
}

header.fixed-header .header-left-bottom {
  background-color: transparent;
}

header.fixed-header .header-left-bottom::after {
  display: none;
}

header.fixed-header .navbar {
  padding: 6px 0;
}


.contact-info-mobile {
  display: none;
  /* visibility: hidden; */
  padding: 12px 0;
  background-color: var(--primary);

}

.contact-info-mobile a,
.contact-info-mobile svg,
.contact-info-mobile span {
  line-height: 1;
  font-size: 13px;
  line-height: 1;
}


/* Sidebar style start */

.slide-menu {
  cursor: pointer;
  margin: 0 60px;
}

.sidenav {
  height: 100vh;
  width: 0;
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8392156862745098);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 70px;
  overflow: hidden;
}

.sidenav .closebtn {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 36px;
  color: white;
  font-size: 40px;
}

.sidenav-wrapper {
  overflow-y: auto;
  height: 100%;
  padding: 20px 30px;
}

.sidenav-wrapper .navbar-brand {
  width: 140px;
  height: 84px;
  margin-bottom: 30px;
}

.sidenav-wrapper p.text {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.5px;
}

.sidenav-wrapper p.sidebar-amenities {
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 10px;
}

.sidenav-wrapper h4 {
  font-size: 20px;
  letter-spacing: 0.5px;
  margin: 40px 0 20px 0;
}

.sidebar-contact-wrap-item {
  position: relative;
  display: flex;
}

.sidebar-contact-wrap-item .icon {
  color: var(--primary);
  margin-right: 16px;
  font-size: 26px;
}

.sidebar-contact-wrap-item span {
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 2;
}

/* Sidebar menu */

/* Hero styles Start */
.hero-wrapper {
  position: relative;
}

.hero-banner,
.page-hero-banner,
.about,
.footer {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 830px;
}

.hero-banner::before,
.page-hero-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #000000;
  opacity: 0.4;
}

.hero-banner.hero-one {
  background-image: url("../images/hero-bg-img/hero-index-one.jpg");
}

.hero-banner.hero-two {
  background-image: url("../images/hero-bg-img/hero-index-two.jpg");
}

.hero-banner.hero-three {
  background-image: url("../images/hero-bg-img/hero-index-three.jpg");
}

/* Hero section of all page start */
.page-hero-banner {
  min-height: 650px;
}

.page-hero-banner::before {
  background-color: #000000;
  opacity: 0.4;
}

.hero-service {
  background-image: url("../images/hero-bg-img/hero-service.jpg");
}

.hero-gallery {
  background-image: url("../images/hero-bg-img/hero-gallery.jpg");
}

.hero-contact {
  background-image: url("../images/hero-bg-img/hero-contact.jpg");
}

.hero-ada {
  background-image: url("../images/hero-bg-img/hero-ada.jpg");
}

.hero-attraction {
  background-image: url("../images/hero-bg-img/hero-attraction.jpg");
}

/* Hero section of all page end */

/* hero-content of all page start */
.page-hero-content {
  z-index: 11;
  position: absolute;
  bottom: 15%;
  left: 15%;
  text-align: left;
}

.page-hero-content h1 {
  font-size: 56px;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.sec-page-title {
  font-size: 36px;
  letter-spacing: 0px;
  margin-bottom: 50px;
}

/* hero-content of all page end */

/* breadcrumb style Start */
.breadcrumb-item {
  font-size: 16px;
}

.breadcrumb-item a {
  color: var(--white);
  transition: 0.3s;
  text-shadow: 1px 1px 2px #000000;
}

.breadcrumb-item a:hover {
  color: var(--primary);
}

.breadcrumb-item.active,
.breadcrumb-item+.breadcrumb-item::before {
  color: #dfdede;
}

/* breadcrumb style end */

/* Back to top button */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 5%;
  bottom: 5%;
  z-index: 9999;
  background: var(--primary);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ff9940;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Hero styles end */
.hero-text-wrapper {
  position: absolute;
  bottom: 20%;
  left: 8%;
  z-index: 111;
}

.hero-text {
  width: 100%;
}

.hero-text h4 {
  font-style: italic;
  letter-spacing: 2px;
  margin-bottom: 10px;
  line-height: 1;
}

.hero-text h1 {
  text-transform: capitalize;
  line-height: 90px;
}

.hero-image {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 550px;
  height: 650px;
  z-index: 11;
}

.hero-image img {
  width: inherit;
  height: inherit;
  object-fit: cover;
}

/* owl arrow start */
.owl-theme .owl-nav {
  margin-top: 0;
}

.owl-theme .owl-nav [class*="owl-"] {
  margin: 0;
  transition: all ease-in-out 0.4s;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: rgba(0, 0, 0, 0.6);
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  bottom: 10%;
  border-radius: 2px;
  color: white;
  font-size: 30px;
  width: 80px;
  height: 50px;
  margin-right: 10px;
}

.owl-carousel .owl-nav button.owl-prev {
  left: 8%;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(102, 102, 102, 0.3) 100%);
}

.owl-carousel .owl-nav button.owl-next {
  left: 14%;
  background: linear-gradient(270deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(102, 102, 102, 0.3) 100%);
}

/* owl arrow end */

/* About section Start */

.about {
  background-image: url("../images/sec-bg-img/about-bg.jpg");
  min-height: auto;
}

.about-wrapper {
  border-radius: 30px;
  background: white;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}

.about-image-wrap {
  width: 100%;
  height: 100%;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  overflow: hidden;
}

.about-image-wrap img {
  width: inherit;
  height: inherit;
  object-fit: cover;
  transition: all ease-in-out 0.3s;
}

.about-image-wrap:hover img {
  transform: scale(1.08);
}

.sec-title {
  margin-bottom: 100px;
}

.about .sec-title {
  margin-bottom: 50px;
}

.sec-title h6 {
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 6px;
}

.about .sec-title h6 {
  letter-spacing: 3px;
}

.sec-title h2 {
  position: relative;
}

.sec-title h2:after {
  position: absolute;
  content: "";
  width: 220px;
  height: 41px;
  display: block;
  background-image: url("../images//sec-bg-img/about-title-bg.png");
  top: 100%;
  transition: all 500ms ease;
  background-repeat: no-repeat;
}

.sec-title.center h2:after {
  left: 50%;
  transform: translateX(-50%);
  background-size: contain;
  width: 300px;
  top: 120%;
  background-image: url("../images//sec-bg-img/eso-title-bg.png");
  height: 50px;
}

.about-content-wrap {
  padding: 54px 20px 54px 20px;
}

.about-content-wrap p {
  font-size: 16px;
  line-height: 34px;
  margin-bottom: 20px;
  color: #787878;
  letter-spacing: 0.1px;
}

.about-content-wrap .prime-btn {
  margin-top: 36px;
}

/* About section End */

/* Booking form section Start */
.booking-res-image-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.booking-res-image-wrap img {
  width: inherit;
  height: inherit;
  object-fit: cover;
  transition: all ease-in-out 0.3s;
}

.booking-res-image-wrap:hover img {
  transform: scale(1.08);
}

/* Booking Form */

.booking-res-form-wrap {
  padding: 40px 30px;
}

.web-res-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  /* gap: 24px; */
  z-index: 111;
}

.web-res-form h2 {
  font-size: 30px;
  text-align: center;
  line-height: 1;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  font-size: 18px;
  color: white;
  font-family: var(--font-marcellus);
  margin-bottom: 10px;
  line-height: 23px;
}

.form-control {
  font-size: 14px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 0px;
  background-color: white;
  font-weight: 400;
  line-height: 1;
  color: var(--black);
  padding: 14px 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family: var(--font-primary);
}

.form-control:focus {
  border: 1px solid transparent;
  outline: 0;
  box-shadow: none;
}

.input-group {
  position: relative;
}

.input-icon {
  font-size: 14px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #898989;
}

.web-res-form .prime-btn {
  width: 100%;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 6px;
  background-color: var(--primary);
  margin-top: 10px;
}

.ui-widget-header {
  border: 1px solid var(--primary) !important;
  background: var(--primary) !important;
  color: #fff;
  font-weight: bold;
}

.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n + 3),
.input-group:not(.has-validation)> :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.ui-widget.ui-widget-content {
  z-index: 111 !important;
}

/* Booking form end */

/* Booking form section End */

/* service amenities section start */
.service-amenities-wrapper {
  margin: 80px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
}

.service-amenities-grid-item {
  border-radius: 5px;
  border: 0px solid #000;
  background-color: white;
  padding: 30px;
  box-shadow: 1px 2px 8px 0px rgba(0, 0, 0, 0.2);
}

.service-amenities-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  background: var(--primary);
  border-radius: 100%;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.service-amenities-grid-item:hover .service-amenities-icon {
  transform: rotateY(360deg);
  transition: all 0.9s ease;
}

.service-amenities-grid-item h4 {
  font-size: 22px;
  line-height: 24px;
  color: #010101;
  margin-bottom: 16px;
}

.service-amenities-grid-item p {
  font-size: 15px;
  color: #686868;
  line-height: 24px;
  letter-spacing: 0.2px;
}

.view-all-link {
  float: inline-end;
  font-size: 22px;
  font-family: var(--font-marcellus);
  transition: all ease-in-out 0.5s;
  color: var(--primary);
}

.view-all-link:hover {
  transform: scale(1.05);
  color: #e89349;
}

/* service amenities section End */

/* service amenities section Start */
.exclusive-offer {
  position: relative;
}

.exclusive-offer::after {
  content: "";
  background: var(--primary-blue);
  position: absolute;
  width: 100%;
  height: 600px;
  display: inline-block;
  top: 0px;
  z-index: -1;
}

.exclusive-offer-wrap {
  background-color: white;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 20px 30px 50px 20px;
  box-shadow: 0px 10px 80px 0px rgba(0, 0, 0, 0.1);
}

.exclusive-offer-image-wrap {
  width: 100%;
  height: 250px;
  overflow: hidden;
  margin-bottom: 30px;
}

.exclusive-offer-image-wrap img {
  width: inherit;
  height: inherit;
  object-fit: cover;
  transition: all ease-in-out 0.3s;
}

.exclusive-offer-image-wrap:hover img {
  transform: scale(1.08);
}

.exclusive-offer-wrap h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.exclusive-offer-wrap p {
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 24px;
}

.read-more-link {
  position: relative;
  font-size: 14px;
  color: var(--primary-blue);
  float: inline-end;
  margin-right: 30px;
  transition: all ease-in-out 0.3s;
}

.read-more-link:hover {
  transform: scale(1.02);
}

/* .read-more-link::after {
  content: "";
  position: absolute;
  background-image: url("../images/icons/long-arrow.png");
  background-repeat: no-repeat;
  background-position: center;contact-info-mobile
  background-size: contain;
  width: 20px;
  height: 100%;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 10px;
} */

/* service amenities section End */


/* Our Rooms section Start */
.our-room.sec-spacing {
  position: relative;
}

.our-room .sec-title.center h2:after {
  width: 240px;
}

/* .our-rooms-slider {
  position: relative;
  z-index: 111;
} */

.our-room-wrap-rel {
  position: relative;
  /* max-width: 630px; */
  width: 100%;
}


.our-room-wrap-rel::after {
  content: '';
  position: absolute;
  background: url('../images/sec-bg-img/room-sec-bg.png') no-repeat center;
  background-size: cover;
  bottom: -8%;
  right: 0;
  height: 300px;
  width: 400px;
  z-index: 1;
}

.our-room-image-wrap {
  position: relative;
  width: 90%;
  height: 480px;
  margin-left: auto;
  overflow: hidden;
  z-index: 11;
}

.our-room-image-wrap img {
  width: inherit;
  height: inherit;
  object-fit: cover;
  transition: all ease-in-out 0.4s;
}

.our-room-image-wrap:hover img {
  transform: scale(1.08);
}

.our-room-content-wrap {
  width: 84%;
  position: relative;
  padding: 40px 40px 30px;
  background-color: var(--primary-blue);
  display: flex;
  flex-direction: column;
  margin-top: -12%;
  z-index: 11;

}

.social-icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border: 1px dashed white;
  margin-right: 40px;
  flex: 0 0 auto;
}

.social-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.our-room-content-wrap h4 {
  font-size: 26px;
  line-height: 1.2;
}

.our-room-content-wrap span {
  font-size: 15px;
  line-height: 1.2;
  margin: 16px 0;
}


.our-room-content-wrap p {
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.5px;
}

.our-room-content-wrap .prime-btn {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0;
  width: 90px;
  height: 36px;
  font-size: 14px;
  letter-spacing: 2px;
}


.our-rooms-slider .owl-carousel .owl-stage-outer {
  padding-bottom: 8%;
}

/* owl dots start */
.owl-theme .owl-nav.disabled+.owl-dots {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-carousel button.owl-dot {
  width: 26px;
  height: 8px;
  border-radius: 20px;
  background: rgba(188, 140, 51, 0.3);
  margin: 0 4px;
}

.owl-theme .owl-dots .owl-dot span {
  width: 0;
  height: 0;
  margin: 0;
}

.owl-carousel button.owl-dot.active {
  width: 36px;
  height: 8px;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* owl dots end */

/* Our Rooms section end */


/* Gallery section start */

.gallery-photo-wrap {
  display: block;
  width: 100%;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
}

.gallery-photo-wrap img {
  width: inherit;
  height: inherit;
  object-fit: cover;
  transition: all ease-in-out 0.4s;
}

.gallery-photo-wrap:hover img {
  transform: scale(1.08);
}

.photo-gallery-overlay {
  position: absolute;
  background-color: rgba(0 0 0 / 60%);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.gallery-photo-wrap:hover .photo-gallery-overlay {
  opacity: 1;
}


.search-icon {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.search-icon svg {
  width: inherit;
  height: inherit;
  object-fit: contain;
}


.gallery .sec-title {
  margin-bottom: 24px;
}

.photo-200h {
  height: 200px;
}

.photo-280h {
  height: 280px;
}

.photo-300w {
  width: 300px;
}

.photo-430h {
  height: 430px;
}

.mrt-70 {
  margin-top: 70px;
}


/* Gallery section end */


/* Feedback Testimonial section start*/

.feedback .sec-title {
  margin-bottom: 50px;
}

.star-wrap {
  margin-bottom: 20px;
}

.star-icon {
  display: inline-flex !important;
  width: 14px !important;
  height: 14px;
  margin-right: 6px;
}

.feedback-slider-top-wrap {
  position: relative;
  padding: 60px 50px;
  height: 370px;
}

.feedback-slider-top-wrap::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('../images/sec-bg-img/feedback.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  left: 0;

}

.feedback-content-wrap {
  position: relative;
  z-index: 111;
}

.feedback-slider-bottom-wrap {
  margin-left: 20px;
  margin-top: 10px;
}

.feedback-slider-icon {
  width: 80px;
  height: 80px;
  margin-right: 16px;
  /* box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.30); */

}

.feedback-slider-icon img {
  width: inherit;
  height: inherit;
  object-fit: cover;
}

.feedback-name {
  font-size: 18px;
  line-height: 1;
  color: #1c1c1c;
}

.feedback-content {
  text-transform: capitalize;
  font-size: 16px;
  color: #787878;
  line-height: 32px;
  font-weight: 400;
  text-align: justify;
  letter-spacing: 0.5px;

}

.feedback-slider .owl-carousel .owl-stage-outer {
  padding: 50px 0;
}

.feedback-slider .owl-theme .owl-nav.disabled+.owl-dots {
  bottom: -70px;
}

/* Feedback Testimonial section end */


/* Footer start */
.footer {
  background-image: url("../images/sec-bg-img/footer-bg.png");
  min-height: auto;
}

footer.sec-spacing {
  padding: 100px 0 0;
}


.ft-logo {
  width: 86px;
  height: 185px;
}

.ft-logo img {
  width: inherit;
  height: inherit;
  object-fit: contain;
}

.footer-grid-item {
  margin-bottom: 80px;
}

.footer-grid-item.mt-70 {
  margin-top: 70px;
}

.footer-grid-item h3 {
  font-size: 30px;
  margin-bottom: 32px;
  line-height: 30px;
}

.footer-grid-item p {
  font-size: 16px;
  line-height: 34px;
  letter-spacing: 0.1px;
}

.footer-grid-item a,
.ft-add {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 30px;
  letter-spacing: 0.3px;
}

.ft-add {
  max-width: 280px;
}

.footer-link-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px 40px;
}

a.footer-link {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0;
}

.footer-bottom-wrap {
  z-index: 111;
  position: relative;
  padding: 14px 10px;

}

.footer-bottom-wrap p {
  font-size: 14px;

}

a.ada-link {
  position: relative;
  font-size: 16px;
  color: var(--primary);
  width: max-content;
  margin-top: 10px;
}

a.ada-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: var(--primary);
}

/* Footer end */
/* Service amenities page Start */
.service-page .service-amenities-grid-item {
  position: relative;
}

.service-page .service-amenities-wrapper {
  gap: 80px 40px;
  grid-template-columns: repeat(2, 1fr);
  margin: 80px 0;
}

.service-page .service-amenities-icon {
  position: absolute;
  top: -50px;
  right: 0;
  background-color: var(--white);
  width: 100px;
  height: 100px;
  padding: 26px;
  box-shadow: 1px 2px 8px 0px rgba(217, 103, 4, 0.3);


}

.service-page .service-amenities-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-page .service-amenities-grid-item h4 {
  font-size: 26px;
  margin-bottom: 0;
}

.service-page .service-amenities-grid-item {
  border-radius: 5px;
  padding: 60px 10px 30px 30px;
  /* box-shadow: 1px 2px 8px 0px rgba(217, 103, 4, 0.2); */
}

.service-page-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.service-page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease-in-out 0.3s;
}

.service-page-image:hover img {
  transform: scale(1.08);
}

/* Service amenities page end */


/* Gallery page Start */
.gallery-page .gallery-photo-wrap {
  height: 360px;
}

/* Gallery page End */

/* Contact-us Page start */
.contact-page.sec-spacing {
  padding: 0 0 120px;
}

.contact-page-wrapper {
  width: 100%;
  padding: 80px 60px;
}

.contact-us-content-wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px 24px;
  padding-left: 20px;
}

.contact-us-content-items {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  padding: 30px;
  border-radius: 6px;
  background-color: var(--white);
}

.contact-title-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: var(--black);
  margin-bottom: 10px;
  /* font-family: var(--font-marcellus); */
}

.contact-play-icons {
  margin-right: 10px;
}

.contact-us-content-items a,
.contact-us-content-items p {
  color: #686868;
  font-size: 16px;
}


.contact-us-iframe {
  width: 100%;
  height: 570px;
  margin-bottom: 100px;
}

.contact-us-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.contact-us-image-wrapper img {
  width: inherit;
  height: inherit;
  object-fit: cover;
  transition: all ease-in-out 0.4s;
}

.contact-us-image-wrapper:hover img {
  transform: scale(1.08);
}


/* Contact-us Page end */

/* -- // Ada feature Page Styles Start // -- */
.ada-feature-wrap:not(:last-child) {
  margin-bottom: 50px;
}

.ada-feature-wrap h3 {
  margin-bottom: 20px;
}

.ada-feature-item {
  font-size: 16px;
  line-height: 1.5;
  padding: 0 0 10px;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  border-bottom: 1px solid #f2f2f2;
}

.ada-feature-note {
  margin-top: 40px;
}

.ada-feature-item:last-child {
  border-bottom: none;
}

.ada-feature-image-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ada-feature-image-wrap img {
  width: inherit;
  height: inherit;
  object-fit: cover;
  transition: all ease-in-out 0.4s;
}

.ada-feature-image-wrap:hover img {
  transform: scale(1.08);
}

.note {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

/* -- // Ada feature Page Styles End // -- */


/* -- // Attraction Page Styles Start // -- */
.attraction-main-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  /* align-items: center; */
  margin-bottom: 60px;
}

.attraction-image-wrapper,
.attraction-content-wrapper {
  width: 50%;
}


.attraction-image-wrapper {
  /* width: 680px; */
  height: 420px;
  overflow: hidden;
  z-index: 111;
}

.attraction-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease-in-out 0.4s;
}

.attraction-content-wrapper:hover .attraction-image-wrapper img,
.attraction-image-wrapper:hover img {
  transform: scale(1.08);
}

.attraction-content-wrapper {
  z-index: 111;
  background: var(--sky-blue);
  margin-top: 4%;
  z-index: 11;
  border-radius: 2px;

}

.attraction-content-wrapper.pedding-left {
  padding: 50px 30px 50px 100px;
  margin-left: -5%;
}

.attraction-content-wrapper.pedding-right {
  padding: 50px 100px 50px 50px;
  margin-right: -5%;
}


.attraction-content-wrapper h5 {
  font-size: 30px;
  margin-bottom: 26px;
  letter-spacing: 0.5px;
}

.att-content-text {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

.att-content-text:last-child {
  margin-bottom: 0;
}

.things-to-do-wrapper {
  margin-top: 100px;
  padding: 80px 40px;
}

.things-to-do-wrapper h3 {
  margin-bottom: 50px;
  font-size: 34px;
}

.things-to-do-grid {
  box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 7%);
  background: var(--white);
  display: block;
  height: 100%;
  padding: 20px;
}

.things-to-do-grid-image {
  height: 300px;
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}

.things-to-do-grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease-in-out 0.4s;
}

.things-to-do-grid-image:hover img {
  transform: scale(1.08);
}

.things-to-do-grid h4 {
  font-size: 22px;
  margin-bottom: 16px;
}

.things-to-do-grid p {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.2px;
}

/* -- // Attraction Page Styles End // -- */