@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  box-sizing: border-box;
}

body,
html {
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}

.bg {
  position: relative;
  z-index: 1;
}
.bg::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url(../img/home/pattern.png) no-repeat;
  background-size: contain;
  background-position: top right;
}

.bg-alt {
  background: #faf8f5;
}

p,
a,
span,
ul,
li,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
  color: #0b1e0d;
  font-size: 15px;
  font-weight: 400;
}

.spacing {
  padding: 90px 0;
}

.para {
  margin-bottom: 10px;
}

.common-content-wrap {
  display: flex;
  flex-flow: column;
  justify-content: center;
  height: 100%;
}

.heading-wrap {
  margin-bottom: 40px;
}

.small-heading {
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}

.list {
  margin: 0 0 20px 20px;
}
.list li {
  list-style: circle;
  margin: 0 0 10px;
}
.list li:last-child {
  margin: 0;
}
.list li .sub-list {
  margin: 10px 20px;
}
.list li .sub-list li {
  list-style: disc;
}

.title {
  text-transform: uppercase;
  color: #389543;
  letter-spacing: 4px;
  font-weight: 700;
  display: block;
}

.main-heading {
  font-size: 45px;
  font-weight: 800;
  display: block;
  text-transform: capitalize;
  color: #0b1e0d;
}

.theme-btn {
  border: none;
  color: #fff;
  background: #389543;
  outline: none;
  cursor: pointer;
  display: inline-flex;
  text-transform: capitalize;
  text-decoration: none;
  padding: 14px 25px 14px 25px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  border-radius: 25px;
  align-items: center;
  justify-content: center;
  line-height: 1;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}
.theme-btn.alt {
  background: transparent;
  border: 1px solid #0b1e0d;
  color: #0b1e0d;
}
.theme-btn.alt2 {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.theme-btn:hover {
  background: #389543;
  color: #fff;
}
.theme-btn:hover.alt {
  border-color: #fff;
}

.img-wrap {
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
.img-wrap img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.img-wrap.alt {
  display: flex;
  align-items: center;
}
.img-wrap.alt img {
  height: 400px;
}

.sub-heading {
  font-size: 28px;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}

@keyframes burger {
  0% {
    transform-origin: 0 100%;
    transform: scale(1, 1);
  }
  50% {
    transform-origin: 0 100%;
    transform: scale(0, 1);
  }
  100% {
    transform-origin: 0 100%;
    transform: scale(1, 1);
  }
}
header {
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 15px;
  transition: 0.4s ease;
  /* Styling for submenu */
}
header .head-logo {
  position: relative;
}
header .logo-green {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-200px);
  visibility: hidden;
  transition: 0.4s ease;
  width: 180px;
}
header .logo-white {
  position: relative;
  transform: translateY(0);
  visibility: visible;
  width: 200px;
}
header.sticky {
  background: #fff;
  top: 0;
  padding: 10px 0;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
header.sticky .logo-green {
  position: relative;
  transform: translateY(0);
  visibility: visible;
}
header.sticky .logo-white {
  position: absolute;
  transform: translateY(-200px);
  visibility: hidden;
  transition: 0.4s ease;
}
header.sticky .toggle span {
  background: #389543;
}
header nav {
  display: flex;
  justify-content: space-between;
}
header .right-aside {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
header .toggle {
  display: flex;
  flex-flow: column;
  justify-content: center;
  gap: 5px;
}
header .toggle span {
  width: 30px;
  height: 3px;
  background: #fff;
}
header .toggle:hover span {
  animation: burger 0.3s 0.1s ease;
}
header .toggle:hover span:nth-child(2) {
  animation: burger 0.3s ease;
}
header .toggle:hover span:nth-child(3) {
  animation: burger 0.3s 0.2s ease;
}
header .hidden-menu {
  transform: translateX(100%);
  top: 0;
  right: 0;
  bottom: 0;
  width: 350px;
  height: 100%;
  position: fixed;
  z-index: 99999;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
header .menu-item {
  list-style: none;
  padding: 10px;
}
header .menu-item a {
  color: #0b1e0d;
  font-weight: 500;
}
header .menu-item.drop-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
header .menu-item.drop-item a i {
  transition: 0.4s ease;
}
header .menu-item.active-menu-item .second-menu {
  position: relative;
  visibility: visible;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 10px;
  margin: 10px 0;
  background: #4cbd58;
}
header .menu-item.active-menu-item a i {
  transform: rotate(180deg);
}
header .second-menu {
  position: absolute;
  visibility: hidden;
  padding: 0;
  overflow: hidden;
}
header .second-menu li {
  padding: 0;
}
header .second-menu li a {
  padding: 8px 15px;
  color: #fff;
}
header .second-menu li a:hover {
  background: #fff;
  color: #389543;
}
header .submenu-item {
  padding: 8px;
}
header .show-menu {
  transform: translateX(0);
}
header .menu-logo {
  display: flex;
  justify-content: center;
  position: relative;
  background: #389543;
  padding: 20px;
}
header .menu-logo i {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: #e1d9d9;
  transition: 0.3s;
}
header .menu-logo i:hover {
  color: #fff;
  transform: rotate(90deg);
}
header .menu-logo img {
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
header .menu-outer {
  padding: 25px;
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  flex-grow: 1;
}
header .booking {
  display: flex;
  align-items: center;
  border-top: 1px solid #4cbd58;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
  padding: 20px 0;
}
header .booking i {
  font-size: 40px;
  color: #389543;
}
header .booking .number span {
  color: #333;
  display: block;
  font-style: inherit;
  text-transform: uppercase;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 2px;
}
header .booking .number span:nth-child(2) {
  font-size: 18px;
  font-weight: 600;
  color: #389543;
}

.hero-slide {
  position: relative;
  z-index: 1;
  height: 90vh;
  margin-bottom: 0 !important;
}
.hero-slide .slick-list {
  height: 100% !important;
}
.hero-slide .slick-list .slick-track {
  height: 100% !important;
}
.hero-slide img {
  width: 100%;
}
.hero-slide .slick-dots {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-flow: column;
  top: 0;
  bottom: 0;
  right: 50px;
  margin: auto;
  gap: 20px;
}
.hero-slide .slick-dots li button {
  position: relative;
  z-index: 1;
}
.hero-slide .slick-dots li button::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
  opacity: 0.7;
  border-radius: 50%;
  height: 6px;
  width: 6px;
  outline: 2px solid;
  outline-color: #fff;
  outline-offset: 3px;
}
.hero-slide .slick-dots li.slick-active button::before {
  opacity: 1;
}
.hero-slide .slide-content {
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
}
.hero-slide .slide-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.272);
  opacity: 1;
}
.hero-slide .slide-content.first {
  background: url(../img/home/green-hotel-luxury-stay-rishikesh.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.hero-slide .slide-content.second {
  background: url(../img/home/green-hotel-restaurant.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.hero-slide .slide-content.third {
  background: url(../img/home/reception-green-hotel-rishikesh.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.hero-slide .slide-content .hero-cont {
  z-index: 99;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  transform: translateY(-50px);
  transition: 1s ease-in-out;
}
.hero-slide .slide-content .hero-cont button {
  width: -moz-fit-content;
  width: fit-content;
}
.hero-slide .slide-content .hero-cont.two {
  align-items: center;
}
.hero-slide .slide-content .hero-cont.two span {
  text-align: center;
}
.hero-slide .slide-content .hero-cont.three {
  align-items: end;
}
.hero-slide .slide-content .hero-cont.three span {
  text-align: right;
}
.hero-slide .slide-content .hero-cont .title {
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 4px;
  font-weight: 600;
  display: block;
  margin: 0 0 10px 0;
}
.hero-slide .slide-content .hero-cont .hero-heading {
  font-size: 51px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}
@media (width < 1199px) {
  .hero-slide .slide-content .hero-cont .hero-heading {
    font-size: 40px;
  }
}
@media (width < 991px) {
  .hero-slide .slide-content .hero-cont .hero-heading {
    font-size: 35px;
  }
}
@media (width < 767px) {
  .hero-slide .slide-content .hero-cont .hero-heading {
    font-size: 28px;
  }
}
@media (width < 575px) {
  .hero-slide .slide-content .hero-cont .hero-heading {
    font-size: 24px;
  }
}
.hero-slide .slide-content.slick-active .hero-cont {
  transform: translateY(0);
  opacity: 1;
  height: -moz-fit-content;
  height: fit-content;
}

.about-wrap .common-content-wrap {
  gap: 15px;
}
.about-wrap.detail .room-size img {
  width: 40px;
  margin-right: 10px;
}
.about-wrap.detail .room-size strong {
  font-size: 18px;
}
@media (width <= 1199px) {
  .about-wrap.detail .img-wrap {
    height: 400px;
    margin-bottom: 30px;
  }
}
.about-wrap .about-img {
  position: relative;
  display: flex;
  justify-content: end;
  height: 100%;
}
.about-wrap .about-img img {
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-wrap .about-img img:nth-child(1) {
  height: 100%;
  width: 70%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
  margin-left: auto;
}
.about-wrap .about-img img:nth-child(2) {
  position: absolute;
  height: 20rem;
  width: 40%;
  z-index: 2;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 40px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  outline: 4px solid;
  outline-color: #fff;
}
.about-wrap.about-page .about-img {
  justify-content: start;
}
.about-wrap.about-page .about-img img:nth-child(1) {
  height: 100%;
  width: 70%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
  margin-left: 0;
}
.about-wrap.about-page .about-img img:nth-child(2) {
  left: auto;
  margin: auto;
  right: 40px;
}

.cta-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, rgba(36, 38, 45, 0.1803921569), rgba(36, 38, 45, 0.831372549)), url(../img/home/cta-banner.jpg) no-repeat;
  background-position: center 75%;
  padding: 200px 0;
  background-size: cover;
}
.cta-banner span {
  text-align: center;
}
.cta-banner .heading-wrap {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.cta-banner .heading-wrap button {
  margin-top: 15px;
}

.slick-slide {
  cursor: grab;
}

.room-wrap.room-gallery .slick-arrow.slick-next {
  right: 25px !important;
}
.room-wrap.room-gallery .slick-arrow.slick-prev {
  left: 25px !important;
}
.room-wrap .room-slide .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  font-size: 0;
  width: 50px;
  height: 50px;
  background: rgba(177, 129, 129, 0.4549019608);
  border-radius: 50%;
  transition: 0.4s;
}
.room-wrap .room-slide .slick-arrow::after {
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  font-size: 16px;
  color: #3f3d3d;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width < 575px) {
  .room-wrap .room-slide .slick-arrow {
    width: 30px;
    height: 30px;
  }
  .room-wrap .room-slide .slick-arrow:after {
    font-size: 12px;
  }
}
.room-wrap .room-slide .slick-arrow:hover {
  background: #389543;
}
.room-wrap .room-slide .slick-arrow:hover:after {
  color: #fff;
}
.room-wrap .room-slide .slick-arrow::before {
  display: none;
}
.room-wrap .room-slide .slick-arrow.slick-prev {
  left: 0;
}
.room-wrap .room-slide .slick-arrow.slick-prev::after {
  content: "\f060";
  position: absolute;
}
.room-wrap .room-slide .slick-arrow.slick-next {
  right: 0;
}
.room-wrap .room-slide .slick-arrow.slick-next::after {
  content: "\f061";
  position: absolute;
}
.room-wrap .room-slide .slick-arrow.slick-disabled {
  opacity: 0.2;
}
.room-wrap .room-slide .slide-content {
  margin: 0 10px;
  opacity: 0.4;
  transition: 0.4s ease;
  transform: scale(0.8);
  border-radius: 20px;
  overflow: hidden;
}
.room-wrap .room-slide .slide-content.slick-center {
  opacity: 1;
  transform: scale(1);
}
.room-wrap .room-slide .slide-content.slick-center .slide-text {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.room-wrap .room-slide .slide-content img {
  height: 500px;
  width: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s ease;
}
.room-wrap .room-slide .slide-content .slide-text {
  position: relative;
  overflow: hidden;
}
.room-wrap .room-slide .slide-content .slide-text .room-info {
  transition: 0.3s ease;
  position: absolute;
  bottom: -90px;
  display: flex;
  flex-flow: column;
  gap: 6px;
  height: 50%;
  width: 100%;
  background: linear-gradient(to top, #24262d, rgba(36, 38, 45, 0.8196078431), rgba(36, 38, 45, 0.1019607843));
  justify-content: center;
  padding: 0 0 0 20px;
}
.room-wrap .room-slide .slide-content .slide-text .room-info span {
  color: #fff;
}
.room-wrap .room-slide .slide-content .slide-text .room-info span:nth-child(1) {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
}
.room-wrap .room-slide .slide-content .slide-text .room-info .room-name {
  font-weight: 700;
  font-size: 25px;
  margin-top: 0;
  color: #fff;
}
.room-wrap .room-slide .slide-content .slide-text .room-info a:last-child {
  display: inline-block;
  margin-top: 30px;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.room-wrap .room-slide .slide-content .slide-text .room-info a::before {
  content: "";
  position: absolute;
  background: #fff;
  bottom: -5px;
  width: 0;
  height: 0;
  left: 0;
  transition: 0.7s;
}
.room-wrap .room-slide .slide-content .slide-text:hover img {
  transform: scale(1.1);
}
.room-wrap .room-slide .slide-content .slide-text:hover .room-info {
  bottom: 0;
}
.room-wrap .room-slide .slide-content .slide-text:hover .room-info a::before {
  width: 100%;
  height: 2px;
}

.bed-detail {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bed-detail img {
  height: auto !important;
  width: 30px !important;
  filter: invert(1) brightness(10);
}

.fac-wrap .fac-content {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  gap: 10px;
}
.fac-wrap .fac-content span {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 700;
}
.fac-wrap .fac-content span,
.fac-wrap .fac-content p {
  text-align: center;
  display: block;
}
.fac-wrap .fac-content p {
  color: #6c6868;
  font-size: 14px;
}
@media (width < 575px) {
  .fac-wrap .fac-content p {
    font-size: 13px;
  }
}
.fac-wrap .fac-content img {
  filter: invert(48%) sepia(13%) saturate(2227%) hue-rotate(76deg) brightness(97%) contrast(84%);
}
.fac-wrap .fac-content.center {
  border-right: 2px solid rgba(151, 149, 149, 0.1098039216);
  border-left: 2px solid rgba(151, 149, 149, 0.1098039216);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-30%);
  }
}
.marquee {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 100px;
  overflow: hidden;
  font-size: 120px;
  font-weight: bold;
  margin-top: -60px;
}
.marquee .track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 60s linear infinite;
}
.marquee .content {
  opacity: 0.05;
  line-height: 1.2;
}

.excursion-inner {
  margin-bottom: 100px;
}
.excursion-inner:last-child {
  margin: 0;
}
.excursion-inner .sub-heading {
  font-size: 20px;
}
.excursion-inner .sub-heading i {
  margin-right: 10px;
}

.home-ex .excursion-inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  background: #fff;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.home-ex .excursion-inner:hover img {
  transform: scale(1.2);
}
.home-ex .excursion-inner img {
  transition: 0.4s ease-in-out;
}
.home-ex .excursion-inner .img-wrap {
  height: 250px;
  border-radius: 0;
  box-shadow: none;
  position: relative;
}
.home-ex .excursion-inner .img-wrap::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6901960784));
}
.home-ex .excursion-inner .common-content-wrap {
  justify-content: start;
  height: auto;
  padding: 30px 20px;
  position: relative;
  flex-grow: 1;
}
.home-ex .excursion-inner .excursion-line {
  position: absolute;
  color: #fff;
  width: 100%;
  padding-left: 73px;
  font-size: 12px;
  text-transform: uppercase;
  left: 0;
  top: 10px;
  font-weight: 600;
  letter-spacing: 2px;
}
.home-ex .excursion-inner .excursion-line::before {
  content: "";
  position: absolute;
  left: 0;
  height: 1px;
  width: 70px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

.testi-wrap {
  background: linear-gradient(to bottom, rgba(36, 38, 45, 0.5607843137), rgba(36, 38, 45, 0)), url(../img/home/testi.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.testi-wrap .testi-slide .testi-content {
  background: #0b1e0d;
  padding: 20px 30px;
  border-radius: 20px;
  margin: auto;
  display: flex;
  transition: 0.8s ease-in-out;
  transform: rotateX(90deg);
  align-items: center;
}
.testi-wrap .testi-slide .testi-content p,
.testi-wrap .testi-slide .testi-content span {
  color: #fff;
}
.testi-wrap .testi-slide .testi-content p {
  font-size: 18px;
}
.testi-wrap .testi-slide .testi-content.slick-active {
  transform: rotateY(0deg);
}
.testi-wrap .testi-slide .left-aside {
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding-right: 30px;
  gap: 20px;
}
.testi-wrap .testi-slide .left-aside img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.testi-wrap .testi-slide .left-aside .info .name {
  font-size: 18px;
  font-weight: 600;
}
.testi-wrap .testi-slide .left-aside .info .country {
  color: #c6bcbc;
}
.testi-wrap .testi-slide .right-aside {
  border-left: 1px solid #fff;
  padding-left: 30px;
}
.testi-wrap .slick-dots {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  justify-content: center;
  left: 0;
  bottom: -80px;
  margin: auto;
}
.testi-wrap .slick-dots li button {
  position: relative;
  z-index: 1;
}
.testi-wrap .slick-dots li button::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: transparent;
  opacity: 0.7;
  border-radius: 50%;
  height: 6px;
  width: 6px;
  outline: 2px solid;
  outline-color: #fff;
  outline-offset: 3px;
}
.testi-wrap .slick-dots li.slick-active button::before {
  background: #fff;
  opacity: 1;
}

.form-heading {
  font-size: 25px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 24px;
  display: block;
}

.contact-wrap .form-wrap {
  padding: 40px;
}

form .form-control {
  padding: 10px 20px;
}
form .form-control:focus {
  box-shadow: none;
  outline: none;
  border: 1px solid #389543;
}
form .form-control.date {
  border-radius: 0 5px 5px;
}
form label {
  margin-bottom: 0px;
  border-radius: 5px 5px 0 0;
  font-size: 10px;
  border: 0px solid #dee2e6;
  background: #389543;
  color: #fff;
  padding: 5px;
}

.address-wrap {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 45px 20px 45px;
  margin-bottom: 25px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.address-inner {
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  padding: 20px;
  display: flex;
  flex-flow: column;
  gap: 10px;
  margin-bottom: 40px;
}
.address-inner span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
}
.address-inner span i {
  font-size: 26px;
  color: #389543;
}
.address-inner a {
  color: #389543;
}
.address-inner a:hover {
  color: #0b1e0d;
}
.address-inner p a {
  margin: 0 5px;
}

.map {
  overflow: hidden;
}
.map iframe {
  width: 100%;
  filter: grayscale(85%);
  height: 450px;
  margin-bottom: -10px;
}

footer {
  background: linear-gradient(to bottom, rgba(36, 38, 45, 0.64), rgba(36, 38, 45, 0.9098039216), #24262d), url(../img/home/cta-banner.jpg) no-repeat;
  background-size: cover;
  background-position: center top 100%;
}
footer .footer-wrap .adress-list li {
  margin-bottom: 20px;
  display: flex;
  flex-flow: column;
  gap: 10px;
}
footer .footer-wrap .adress-list li:nth-child(1) a {
  color: #fff;
}
footer .footer-wrap .adress-list li a {
  color: #6ac873;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
footer .footer-wrap .social-footer {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
footer .footer-wrap .social-footer img {
  filter: invert(1) brightness(10);
  height: 25px;
}
footer .footer-list li {
  margin-bottom: 10px;
}
footer .footer-list li a {
  color: #fff;
}

.footer-heading {
  font-size: 25px;
  display: block;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.copy-right {
  background: #1f2127;
  padding: 20px 0;
}
.copy-right p {
  color: #fff;
  text-align: center;
}
.copy-right p,
.copy-right a {
  font-size: 14px;
}
.copy-right a {
  color: #6ac873;
}

.bread-wrap {
  background: url(../img/home/testi.jpg) no-repeat;
  background-size: cover !important;
  height: 50vh;
  display: flex;
  align-items: center;
  flex-flow: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  background-position: center !important;
}
.bread-wrap::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: #0b1e0d;
  opacity: 0.5;
}
.bread-wrap.resto-bread {
  background: url(../img/restaurant/resto-banner.jpg) no-repeat;
}
.bread-wrap.excursion-bread {
  background: url(../img/home/cta-banner.jpg) no-repeat;
}

.bread-heading {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

.bread-list {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
}
.bread-list li {
  color: #fff;
  font-weight: 600;
}
.bread-list a {
  color: #6ac873;
  font-weight: 600;
}

.ameniti-wrap .heading-wrap .title,
.ameniti-wrap .heading-wrap .main-heading,
.ameniti-wrap .heading-wrap p {
  text-align: center;
}
.ameniti-wrap .left-aside {
  position: static;
  width: 500px;
}
.ameniti-wrap .left-aside img {
  display: none;
}
.ameniti-wrap .left-aside.fixed {
  position: fixed;
  top: 100px;
}
.ameniti-wrap .left-aside.bottom {
  position: absolute;
  bottom: 0;
  left: 0;
}
.ameniti-wrap .left-aside ul li {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}
.ameniti-wrap .left-aside ul li i {
  font-size: 28px;
  color: #389543;
  margin-right: 10px;
}
.ameniti-wrap .left-aside ul li p {
  display: flex;
  flex-flow: column;
}
.ameniti-wrap .left-aside ul li p strong {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.ameniti-wrap .right-aside img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  margin-bottom: 20px;
}
.ameniti-wrap .right-aside img:nth-child(1) {
  height: 400px;
}
.ameniti-wrap .right-aside img:nth-child(2) {
  height: 800px;
}
.ameniti-wrap .right-aside img:nth-child(3) {
  height: 400px;
}

.faq-wrap .common-content-wrap a {
  display: flex;
  gap: 5px;
  align-items: center;
  color: #389543;
  margin-top: 10px;
  font-weight: 600;
}
.faq-wrap .common-content-wrap a i {
  transition: 0.4s ease;
}
.faq-wrap .common-content-wrap a:hover {
  color: #000000;
}
.faq-wrap .common-content-wrap a:hover i {
  margin-left: 10px;
}

.accordion {
  flex-grow: 1;
  border: 0px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.accordion strong {
  margin-right: 5px;
}
.accordion:last-child {
  margin-bottom: 0;
}

.accordion-main {
  width: 100%;
  margin-bottom: 0px;
  overflow: hidden;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.accordion-main .accordion-header {
  position: relative;
  z-index: 1;
  padding: 20px;
  background: #fff;
  transition: 0.2s ease-in-out;
}
.accordion-main .accordion-header span,
.accordion-main .accordion-header strong {
  font-size: 17px;
  font-weight: 700;
}
.accordion-main .accordion-header::after {
  content: "+";
  font-weight: 900;
  font-family: "Font Awesome 6 Pro";
  font-size: 20px;
  position: absolute;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: -1;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #0b1e0d;
  transition: 0.2s ease-in-out;
}
.accordion-main.active .accordion-header::after {
  transform: rotate(45deg);
}

.accordion-header {
  padding: 10px;
  cursor: pointer;
}

.accordion-text {
  transform: translateY(-50px);
  position: absolute;
  width: 100%;
  overflow: hidden;
}

.accordion-text p {
  margin: 0;
  padding: 10px;
  background: #fff;
}

.accordion-main.active .accordion-text {
  position: relative;
  transform: translateY(0);
  height: 100%;
  width: 100%;
  opacity: 1;
}

.room-fac {
  margin-top: 100px;
}
.room-fac .room-fac-inner {
  display: flex;
  gap: 10px;
  padding: 20px;
  align-items: center;
  border: 1px solid rgba(106, 200, 115, 0.3803921569);
  height: 100%;
}
.room-fac .room-fac-inner img {
  height: 40px;
  filter: invert(48%) sepia(13%) saturate(2227%) hue-rotate(76deg) brightness(97%) contrast(84%);
}
.room-fac .room-fac-inner span {
  color: #389543;
}

.ameniti-wrap .review .left-aside ul li {
  display: block;
}
.ameniti-wrap .review .left-aside ul li span {
  display: flex;
}
.ameniti-wrap .review .left-aside ul li span:nth-child(1) {
  justify-content: space-between;
  margin-bottom: 5px;
}
.ameniti-wrap .review .left-aside ul li span.bar {
  background: #d2cccc;
  height: 8px;
  position: relative;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
}
.ameniti-wrap .review .left-aside ul li span.bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #389543;
  z-index: 2;
  border-radius: 0 8px 8px 0;
}
.ameniti-wrap .review .left-aside ul li span.bar.one::after {
  width: 81%;
}
.ameniti-wrap .review .left-aside ul li span.bar.two::after {
  width: 77%;
}
.ameniti-wrap .review .left-aside ul li span.bar.three::after {
  width: 82%;
}
.ameniti-wrap .review .left-aside ul li span.bar.four::after {
  width: 83%;
}
.ameniti-wrap .review .left-aside ul li span.bar.five::after {
  width: 76%;
}
.ameniti-wrap .review .left-aside ul li span.bar.six::after {
  width: 81%;
}
.ameniti-wrap .review-wrap .review-content {
  display: block;
  background: rgba(151, 134, 103, 0.0509803922);
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
.ameniti-wrap .review-wrap .review-content p {
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.ameniti-wrap .review-wrap .rating-wrap {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ameniti-wrap .review-wrap .rating-wrap span {
  font-size: 14px;
}
.ameniti-wrap .review-wrap .rating-wrap span strong {
  font-size: 20px;
  color: #389543;
}
.ameniti-wrap .review-wrap .review-img {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.ameniti-wrap .review-wrap .review-img img {
  width: 50px;
  margin-bottom: 10px;
}
.ameniti-wrap .review-wrap .review-img span {
  font-size: 12px;
}
.ameniti-wrap .review-wrap .review-img span.name {
  font-weight: 600;
  font-size: 16px;
}

.similar-wrap .slide-content {
  margin: 0 10px;
  transition: 0.4s ease;
  width: 90%;
  margin: auto;
  height: 500px;
}
@media (width < 575px) {
  .similar-wrap .slide-content {
    height: 250px;
  }
}
.similar-wrap .slide-content img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s ease;
}
.similar-wrap .slide-content .slide-text {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 90%;
}
.similar-wrap .slide-content .slide-text .room-info {
  transition: 0.3s ease;
  position: absolute;
  bottom: -70px;
  display: flex;
  flex-flow: column;
  gap: 6px;
  height: 50%;
  width: 100%;
  background: linear-gradient(to top, #24262d, rgba(36, 38, 45, 0.8196078431), rgba(36, 38, 45, 0));
  justify-content: center;
  padding: 0 0 0 20px;
}
@media (width < 575px) {
  .similar-wrap .slide-content .slide-text .room-info {
    bottom: 0;
  }
}
.similar-wrap .slide-content .slide-text .room-info span {
  color: #fff;
}
.similar-wrap .slide-content .slide-text .room-info span:nth-child(1) {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
}
@media (width < 767px) {
  .similar-wrap .slide-content .slide-text .room-info span:nth-child(1) {
    font-size: 12px;
  }
}
.similar-wrap .slide-content .slide-text .room-info .room-name {
  font-weight: 700;
  font-size: 25px;
  color: #fff;
}
@media (width < 1199px) {
  .similar-wrap .slide-content .slide-text .room-info .room-name {
    font-size: 20px;
  }
}
@media (width < 767px) {
  .similar-wrap .slide-content .slide-text .room-info .room-name {
    font-size: 18px;
  }
}
.similar-wrap .slide-content .slide-text .room-info a:last-child {
  display: inline-block;
  margin-top: 30px;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media (width < 575px) {
  .similar-wrap .slide-content .slide-text .room-info a:last-child {
    display: none;
  }
}
.similar-wrap .slide-content .slide-text .room-info a::before {
  content: "";
  position: absolute;
  background: #fff;
  bottom: -5px;
  width: 0;
  height: 0;
  left: 0;
  transition: 0.7s;
}
.similar-wrap .slide-content .slide-text:hover img {
  transform: scale(1.1);
}
.similar-wrap .slide-content .slide-text:hover .room-info {
  bottom: 0;
}
.similar-wrap .slide-content .slide-text:hover .room-info a::before {
  width: 100%;
  height: 2px;
}

.room-suites-wrap .hero-slide {
  height: 500px;
}
@media (width < 991px) {
  .room-suites-wrap .hero-slide {
    height: 300px;
  }
}
.room-suites-wrap .hero-slide .slick-dots {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-flow: column;
  top: 0;
  left: auto;
  bottom: 0;
  right: 50px;
  margin: auto;
  gap: 20px;
}
.room-suites-wrap .hero-slide .slick-arrow {
  display: none !important;
}
.room-suites-wrap .hero-slide .slide-content {
  overflow: hidden;
  border-radius: 10px;
}
.room-suites-wrap .hero-slide .slide-content img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  animation: zoom 15s linear infinite;
}
.room-suites-wrap .hero-slide.alt-slide .slick-dots {
  left: 40px;
  right: auto;
}
.room-suites-wrap .room-outer-wrap {
  height: 100%;
  display: flex;
  align-items: center;
}
.room-suites-wrap .room-suites-content {
  display: flex;
  flex-flow: column;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 30px;
  margin: 0 0 0 -100px;
  position: relative;
  z-index: 10;
}
.room-suites-wrap .room-suites-content.alt {
  margin: 0 -100px 0 0;
}
@media (width < 991px) {
  .room-suites-wrap .room-suites-content {
    margin: -20px 0 0;
    border-radius: 0 0 20px 20px;
  }
  .room-suites-wrap .room-suites-content .title {
    text-align: left;
  }
  .room-suites-wrap .room-suites-content.alt {
    margin: -20px 0 0;
  }
}
.room-suites-wrap .room-suites-content ul {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (width < 480px) {
  .room-suites-wrap .room-suites-content ul {
    flex-flow: column;
    align-items: start;
  }
}
.room-suites-wrap .room-suites-content ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.room-suites-wrap .room-suites-content ul li img {
  width: 40px;
  filter: invert(48%) sepia(13%) saturate(2227%) hue-rotate(76deg) brightness(97%) contrast(84%);
}
@media (width < 767px) {
  .room-suites-wrap .room-suites-content ul li img {
    width: 25px;
  }
}
.room-suites-wrap .room-suites-content ul li span {
  font-size: 13px;
}
.room-suites-wrap .room-suites-content p {
  margin: 20px 0;
}
.room-suites-wrap .room-suites-content .sub-heading {
  margin: 0;
}
.room-suites-wrap .card-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.room-suites-wrap .card-btn button {
  border: none;
  box-shadow: none;
  position: relative;
  color: #0b1e0d;
  z-index: 1;
  display: flex;
  align-items: center;
  background: transparent;
  gap: 10px;
  width: 160px;
}
.room-suites-wrap .card-btn button:hover .circle {
  width: 100%;
  border-radius: 30px;
}
.room-suites-wrap .card-btn button:hover .circle .icon {
  background: #fff;
  transform: translate(1rem, 0);
}
.room-suites-wrap .card-btn button:hover .text {
  color: #fff;
}
.room-suites-wrap .card-btn button .circle {
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
  background: #389543;
  border-radius: 50%;
  left: 0;
  top: 0;
  bottom: 0;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.076, 1);
}
.room-suites-wrap .card-btn button .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0.425rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
.room-suites-wrap .card-btn button .circle .icon:after {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
.room-suites-wrap .card-btn button .text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.5rem;
  color: #333;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}
.room-suites-wrap .card-btn a {
  transition: 0.2s;
  color: #333;
  font-weight: 600;
}
.room-suites-wrap .card-btn a:hover {
  color: #389543;
  text-decoration: underline;
  text-underline-offset: 5px;
}

@keyframes zoom {
  0% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.resto-time-wrap .time {
  overflow: hidden;
  border-radius: 10px;
  text-align: center;
  padding: 30px 20px;
  background: url(../img/restaurant/food-banner.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  background-position: center right;
  position: relative;
  z-index: 1;
}
.resto-time-wrap .time .time-text {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 30px;
}
.resto-time-wrap .time strong {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
}
.resto-time-wrap .time::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: #0b1e0d;
  top: 0;
  right: 0;
  margin: auto;
  border-radius: 10px;
  opacity: 0.7;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.resto-time-wrap .resto-card {
  border-radius: 10px;
  margin-bottom: 20px;
}
.resto-time-wrap .resto-card span {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #6ac873;
  display: inline-block;
  margin-bottom: 5px;
}
.resto-time-wrap .resto-card ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.resto-time-wrap .resto-card ul li {
  color: #fff;
  padding: 5px 10px;
  text-transform: capitalize;
  border-right: 1px solid rgba(255, 255, 255, 0.2784313725);
  white-space: nowrap;
  overflow-wrap: anywhere;
}
.resto-time-wrap .resto-card ul li:last-child {
  border: none;
}

.menu-wrap {
  position: relative;
  z-index: 1;
}
.menu-wrap::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url(../img/restaurant/seamless.png) repeat;
  opacity: 0.1;
}
.menu-wrap .tab-wrapper nav .nav-tabs {
  display: flex;
  justify-content: center;
  gap: 50px;
  border: none;
}
.menu-wrap .tab-wrapper nav .nav-tabs button {
  border: none;
  background: transparent;
  font-size: 18px;
  font-weight: 700;
  color: #0b1e0d;
  text-transform: capitalize;
  padding: 0;
}
.menu-wrap .tab-wrapper nav .nav-tabs button.active {
  border-bottom: 2px solid #389543;
  color: #389543;
}
.menu-wrap .tab-pane {
  margin-top: 30px;
  padding: 30px;
}
.menu-wrap .menu-content .menu-banner {
  padding: 100px;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-flow: column;
  justify-content: center;
  margin-bottom: 40px;
}
.menu-wrap .menu-content .menu-banner .title,
.menu-wrap .menu-content .menu-banner .sub-heading,
.menu-wrap .menu-content .menu-banner p,
.menu-wrap .menu-content .menu-banner span {
  color: #fff;
}
.menu-wrap .menu-content .menu-banner .text-special {
  font-family: "Lora", serif;
  font-size: 18px;
}
.menu-wrap .menu-content .menu-banner .theme-btn {
  margin: 20px 0 0;
}
.menu-wrap .menu-content .menu-banner::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: #0b1e0d;
  opacity: 0.7;
}
.menu-wrap .menu-content .menu-banner.starter {
  background: url(../img/restaurant/starter.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.menu-wrap .menu-content .menu-banner.main-dishes {
  background: url(../img/restaurant/main.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.menu-wrap .menu-content .menu-banner.dessert {
  background: url(../img/restaurant/dessert.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.menu-wrap .menu-items-wrap .menu-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.menu-wrap .menu-items-wrap img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
}
.menu-wrap .menu-items-wrap .food-detail {
  flex-grow: 1;
}
.menu-wrap .menu-items-wrap .food-detail .name {
  display: flex;
  justify-content: space-between;
  background: radial-gradient(#d5d5d5 40%, rgba(0, 0, 0, 0) 10%);
  background-position: 0 13px;
  background-size: 4px 4px;
  background-repeat: repeat-x;
  margin-bottom: 8px;
}
.menu-wrap .menu-items-wrap .food-detail .name span {
  background: #faf8f5;
  font-size: 18px;
  font-weight: 600;
}
.menu-wrap .menu-items-wrap .food-detail .incre {
  font-family: "Lora", serif;
}

.modal button:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.fix-btn {
  position: fixed;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  left: 30px;
  bottom: 50px;
  z-index: 999;
}

.fix-whats {
  position: fixed;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  right: 30px;
  bottom: 50px;
  z-index: 998;
}
.fix-whats i {
  font-size: 50px;
  color: #389543;
}

.reach-wrap .reach-card {
  border-top: 7px solid #6ac873;
  border-right: 7px solid #6ac873;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 20px;
}
.reach-wrap .reach-card .reach-head {
  height: 12rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reach-wrap .reach-card .reach-head.car:after {
  background: url(../img/howreach/car.png) no-repeat;
  content: "";
  position: absolute;
  z-index: -1;
  height: 90%;
  width: 90%;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  margin: auto;
  background-position: center;
  opacity: 0.03;
  background-size: cover;
}
.reach-wrap .reach-card .reach-head.train:after {
  background: url(../img/howreach/train.png) no-repeat;
  content: "";
  position: absolute;
  z-index: -1;
  height: 90%;
  width: 90%;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  margin: auto;
  background-position: center;
  opacity: 0.03;
  background-size: cover;
}
.reach-wrap .reach-card .reach-head.bus:after {
  background: url(../img/howreach/bus.png) no-repeat;
  content: "";
  position: absolute;
  z-index: -1;
  height: 90%;
  width: 90%;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  margin: auto;
  background-position: center;
  opacity: 0.03;
  background-size: cover;
}
.reach-wrap .reach-card .reach-head.air:after {
  background: url(../img/howreach/flight.png) no-repeat;
  content: "";
  position: absolute;
  z-index: -1;
  height: 90%;
  width: 90%;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  margin: auto;
  background-position: center;
  opacity: 0.03;
  background-size: cover;
}
.reach-wrap .reach-card .reach-head img {
  height: 100px;
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: invert(48%) sepia(13%) saturate(2227%) hue-rotate(76deg) brightness(97%) contrast(84%);
}
.reach-wrap .reach-card .reach-body {
  padding: 20px;
}
.reach-wrap .reach-card .reach-body span {
  font-size: 22px;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}
@media (width < 575px) {
  .reach-wrap .reach-card .reach-body span {
    font-size: 18px;
  }
}

@media (width <= 1199px) {
  .resto-time-wrap .time strong {
    font-size: 25px;
  }
  .resto-time-wrap .time .time-text {
    font-size: 18px;
  }
  .resto-time-wrap .resto-card span {
    font-size: 18px;
  }
  .hero-slide {
    height: 75vh;
  }
  .main-heading {
    font-size: 35px;
  }
  .fac-wrap .fac-content {
    padding: 0 15px;
  }
  .fac-wrap .fac-content span {
    font-size: 18px;
  }
  .ameniti-wrap .left-aside {
    width: 400px;
  }
}
@media (width <= 991px) {
  .sub-heading {
    font-size: 20px;
  }
  .title {
    font-size: 14px;
  }
  header {
    padding: 10px 20px;
    top: 5px;
  }
  header .logo-white {
    width: 160px;
  }
  .bread-heading {
    font-size: 35px;
  }
  .ameniti-wrap .left-aside {
    width: 100%;
    margin-bottom: 30px;
  }
  .ameniti-wrap .left-aside ul li {
    flex-flow: column;
    margin-bottom: 60px;
  }
  .ameniti-wrap .left-aside ul li p strong {
    font-size: 18px;
  }
  .ameniti-wrap .left-aside ul.bars li {
    margin-bottom: 10px;
  }
  .ameniti-wrap .left-aside img {
    display: block;
    margin-top: 15px;
    height: 300px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 20px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  }
  .ameniti-wrap .left-aside.fixed {
    position: static;
  }
  .ameniti-wrap .left-aside.bottom {
    position: static;
  }
  .ameniti-wrap .right-aside {
    display: none;
  }
  .hero-slide {
    height: 68vh;
  }
  .hero-slide .slick-dots {
    width: 100%;
    flex-flow: row;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: auto;
    top: auto;
    justify-content: center;
  }
  .theme-btn {
    font-size: 14px;
  }
  .main-heading {
    font-size: 30px;
  }
  .heading-wrap {
    margin-bottom: 30px;
  }
  .about-wrap .about-img {
    margin-top: 20px;
  }
  .about-wrap .about-img img:nth-child(1) {
    position: relative;
    width: 48%;
  }
  .about-wrap .about-img img:nth-child(2) {
    position: relative;
    width: 48%;
    height: 100%;
    left: 0;
    right: 0;
  }
  .about-wrap.about-page .about-img {
    margin-top: 20px;
  }
  .about-wrap.about-page .about-img img:nth-child(1) {
    position: relative;
    width: 48%;
  }
  .about-wrap.about-page .about-img img:nth-child(2) {
    position: relative;
    width: 48%;
    height: 100%;
    left: 0;
    right: 0;
  }
  .cta-banner {
    padding: 100px 0;
  }
  .room-wrap .room-slide .slide-content img {
    width: 400px;
    height: 400px;
  }
  .room-wrap .room-slide .slide-content .slide-text .room-info {
    bottom: -60px;
  }
  .room-wrap .room-slide .slide-content .slide-text .room-info .room-name {
    font-size: 20px;
  }
  .room-wrap .room-slide .slick-track {
    padding: 30px 0;
  }
  .marquee {
    font-size: 80px;
    height: 65px;
  }
  .excursion-inner {
    margin-bottom: 60px;
  }
  .excursion-inner .img-wrap {
    margin-bottom: 20px;
  }
  .testi-wrap .testi-slide .testi-content p {
    font-size: 15px;
  }
  .fac-wrap .fac-content {
    padding: 0 10px;
  }
  .fac-wrap .fac-content span {
    font-size: 17px;
  }
  .form-heading {
    font-size: 20px;
  }
  .address-inner span {
    font-size: 17px;
  }
  form .form-control {
    font-size: 14px;
  }
  form .form-control::-moz-placeholder {
    font-size: 14px;
  }
  form .form-control::placeholder {
    font-size: 14px;
  }
  .accordion .accordion-header::after {
    font-size: 16px;
  }
  .accordion .accordion-header span,
  .accordion .accordion-header strong {
    font-size: 16px;
  }
  .spacing {
    padding: 60px 0;
  }
  .menu-wrap .menu-content .menu-banner {
    padding: 70px 40px;
    align-items: center;
  }
  .menu-wrap .menu-content .menu-banner .text-special {
    font-size: 14px;
    text-align: center;
  }
  .menu-wrap .menu-items-wrap .food-detail .incre {
    font-size: 14px;
  }
  .menu-wrap .menu-items-wrap .food-detail .name span {
    font-size: 16px;
  }
}
@media (width < 767px) {
  .resto-time-wrap .time strong {
    font-size: 18px;
  }
  .resto-time-wrap .time .time-text {
    font-size: 16px;
  }
  .resto-time-wrap .resto-card span {
    font-size: 16px;
  }
  .menu-wrap .menu-items-wrap img {
    width: 60px;
    height: 60px;
  }
  .menu-wrap .menu-items-wrap .food-detail .incre {
    font-size: 13px;
  }
  .menu-wrap .menu-items-wrap .food-detail .name span {
    font-size: 14px;
  }
  .main-heading,
  .title {
    display: block;
    text-align: center;
  }
  .fix-btn {
    left: 10px;
  }
  .fix-whats {
    right: 10px;
  }
  header .logo-green {
    width: 150px;
  }
  header .hidden-menu {
    width: 270px;
  }
  header .menu-logo img {
    height: 70px;
  }
  header .booking {
    gap: 18px;
  }
  header .booking i {
    font-size: 30px;
  }
  header .booking .number span:nth-child(2) {
    font-size: 14px;
  }
  .copy-right a,
  .copy-right p,
  .copy-right span {
    font-size: 11px;
  }
  footer .footer-wrap {
    padding-bottom: 20px;
  }
  footer .footer-logo {
    display: flex;
    flex-flow: column;
    align-items: start;
  }
  footer .footer-logo img {
    width: 200px;
  }
  footer .footer-logo .social-footer img {
    width: 40px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .ameniti-wrap .review-wrap .review-img {
    flex-flow: row;
    gap: 10px;
  }
  .ameniti-wrap .review-wrap .rating-wrap span {
    font-weight: 600;
  }
  .ameniti-wrap .left-aside img {
    height: 200px;
  }
  .main-heading {
    font-size: 28px;
  }
  .title {
    font-size: 12px;
  }
  .bread-wrap {
    height: 30vh;
    justify-content: end;
    padding-bottom: 30px;
  }
  .bread-heading {
    font-size: 30px;
  }
  .testi-wrap .testi-slide .testi-content {
    flex-flow: column;
  }
  .testi-wrap .testi-slide .testi-content p {
    text-align: center;
  }
  .testi-wrap .testi-slide .right-aside {
    padding: 0;
    border: none;
  }
  .testi-wrap .testi-slide .left-aside {
    margin-bottom: 30px;
  }
  .testi-wrap .testi-slide .left-aside img {
    height: 80px;
    width: 80px;
  }
  .testi-wrap .testi-slide .left-aside .info {
    display: flex;
    flex-flow: column;
  }
  .fac-wrap .fac-content.center {
    border: none;
  }
  p,
  a,
  span,
  ul,
  li,
  ol {
    font-size: 14px;
  }
  .contact-wrap .form-wrap {
    padding: 20px;
  }
  .excursion-inner .sub-heading {
    font-size: 18px;
  }
  .room-wrap .room-slide .slide-content img {
    height: 100%;
    width: 450px;
  }
  .room-wrap .room-slide .slide-content .slide-text .room-info {
    height: 80%;
    bottom: -85px;
  }
  .sub-heading {
    font-size: 18px;
  }
  .room-fac {
    margin-top: 40px;
  }
  .room-fac .room-fac-inner {
    padding: 15px;
    gap: 5px;
    flex-flow: column;
  }
  .room-fac .room-fac-inner span {
    text-align: center;
  }
  .about-wrap.detail .room-size img {
    height: 28px;
  }
  .about-wrap.detail .room-size strong {
    font-size: 15px;
  }
  .about-wrap.detail .img-wrap {
    height: 200px;
  }
}
@media (width < 575px) {
  .bread-heading {
    font-size: 24px;
  }
  .bread-list {
    margin-top: 10px;
  }
  .room-fac .room-fac-inner img {
    height: 33px;
  }
  .room-fac .room-fac-inner span {
    font-size: 13px;
  }
  .menu-wrap .menu-content .menu-banner {
    padding: 40px;
  }
  .menu-wrap .tab-wrapper nav .nav-tabs {
    gap: 30px;
  }
  .menu-wrap .tab-wrapper nav .nav-tabs button {
    font-size: 15px;
  }
  .menu-wrap .menu-content .menu-banner .text-special {
    font-size: 13px;
  }
  .sub-heading {
    font-size: 16px;
  }
  .main-heading {
    font-size: 21px;
  }
  .room-wrap .room-slide .slide-content img {
    width: 320px;
  }
  .room-wrap .room-slide .slide-content .slide-text .room-info {
    bottom: -50px;
    height: 100%;
  }
  .room-wrap .room-slide .slide-content .slide-text .room-info a:last-child {
    display: none;
  }
  .room-wrap .room-slide .slide-content .slide-text .room-info span:nth-child(1) {
    font-size: 12px;
  }
  .room-wrap .room-slide .slide-content .slide-text .room-info .room-name {
    font-size: 16px;
  }
  .fac-wrap .fac-content img {
    width: 40px;
  }
  .fac-wrap .fac-content span {
    font-size: 16px;
  }
  .form-heading,
  .address-inner span {
    font-size: 16px;
  }
  p,
  a,
  span,
  ul,
  li,
  ol {
    font-size: 13px;
  }
  .accordion .accordion-header {
    padding: 10px 25px 10px 10px;
  }
  .accordion .accordion-header::after {
    right: 10px;
  }
  .accordion .accordion-header span,
  .accordion .accordion-header strong {
    font-size: 13px;
    font-weight: 600;
  }
  header .theme-btn {
    display: none;
  }
  .footer-heading {
    font-size: 20px;
  }
  .accordion .accordion-heading span,
  .accordion .accordion-heading strong {
    font-size: 14px;
  }
  .theme-btn {
    font-size: 12px;
  }
  form .form-control {
    font-size: 13px;
  }
  form .form-control::-moz-placeholder {
    font-size: 13px;
  }
  form .form-control::placeholder {
    font-size: 13px;
  }
}
.mail-response {
  font-size: 18px;
}/*# sourceMappingURL=style.css.map */