:root {
  --theme-color: #3f4e51;
  --white-color:white;
  --theme-hover:#000;
  --theme-secoundry:#3f4e51;
  --heading-font:"Yeseva One", serif;
  --theme-font:"Raleway", sans-serif;
  --nav-font: "Raleway", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  font-family: var(--theme-font);
}

.search-btn {
  border-radius: 99px;
  border: 1px solid #000000;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  margin-right: 15px;
  transition: all 0.3s;
  justify-content: center;
}
.search-btn:hover {
  background-color: var(--theme-color);
  border: 2px solid var(--theme-color);
  color: white;
}

.common-heading {
  font-weight: 500;
  margin: 0;
  color: var(--theme-color);
  position: relative;
  margin-bottom: 22px;
  font-size: 42px;
  font-family: var(--heading-font);
}

.common-btn {
  padding: 10px 22px;
  background: #000;
  color: white;
  font-weight: 400;
  display: inline-block;
  min-width: 170px;
  text-align: center;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 0;
  line-height: 24px;
  font-size: 18px;
  letter-spacing: 0px;
  font-family: var(--theme-font);
  border-radius: 10px;
  transition: 0.3s;
}
.common-btn:hover {
  background-color: white;
  color: #000;
}

.common-space {
  padding: 35px 0;
}

a {
  list-style: none;
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: inherit;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  color: #000;
}

body {
  font-size: 14px;
  line-height: 25px;
  font-weight: 400;
  color: #000;
}

ul {
  padding: 0;
  margin: 0;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 300;
  color: #000000;
}
ul li {
  list-style: none;
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

header {
  position: fixed;
  width: 100%;
  z-index: 11;
}

.top-header-social {
  background-color: #ffffff;
  border-bottom: 1px solid #E4E4E4;
}
.top-header-social .col-12 {
  padding-left: 0;
  padding-right: 165px;
}
.top-header-social .content {
  display: flex;
  justify-content: space-between;
}
.top-header-social .content .mail {
  padding: 6px 90px 6px 12px;
}
.top-header-social .content .mail ul {
  margin-bottom: 0rem;
  padding-left: 0rem;
}
.top-header-social .content .mail ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 20px;
  color: white;
}
.top-header-social .content .mail ul li i {
  color: rgb(0, 0, 0);
  margin-right: 10px;
  font-size: 14px;
}
.top-header-social .content .mail ul li a {
  color: #000000;
  font-size: 14px;
  transition: 0.3s;
  font-family: var(--theme-font);
}
.top-header-social .content .mail ul li a:hover {
  color: rgb(0, 0, 0);
}
.top-header-social .content .socials {
  display: flex;
  align-items: center;
}
.top-header-social .content .socials ul {
  margin-bottom: 0rem;
  padding-left: 0rem;
}
.top-header-social .content .socials ul li {
  list-style-type: none;
  display: inline-block;
}
.top-header-social .content .socials ul li a {
  color: var(--title-color);
  margin-left: 27px;
  font-size: 14px;
  transition: 0.3s;
}
.top-header-social .content .socials ul li a:hover {
  color: var(--theme-color);
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: var(--theme-color) !important;
}

.nav-link:focus, .nav-link:hover {
  color: var(--theme-color) !important;
}

.dropdown-item:focus {
  color: white !important;
  background-color: var(--theme-color);
}

.submenu {
  padding: 0 !important;
}
.submenu:hover .dropdown-menu-sub {
  display: block;
  position: absolute;
  left: 100%;
  top: 0%;
  background: white;
}
.submenu .dropdown-menu-sub .sub-item {
  padding: 10px 20px !important;
  transform: translateX(0px) !important;
  color: black !important;
}
.submenu .dropdown-menu-sub .sub-item:hover {
  color: var(--theme-color) !important;
  transform: translateX(10px) !important;
}

.dropdown-menu-sub {
  display: none;
}

header {
  width: 100%;
  z-index: 11;
  position: fixed;
}
header .navbar-expand-lg .navbar-collapse {
  justify-content: space-between;
  position: relative;
  z-index: 0;
  padding-bottom: 5px;
}
header .nav-call {
  display: flex;
  align-items: center;
  gap: 15px;
}
header .nav-call h6 {
  margin-bottom: 0;
  color: white;
}
header .nav-call ul {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
  border-left: 1px solid #9b9b9b;
  padding-left: 15px;
}
header .nav-call ul a {
  width: 30px;
  height: 30px;
  background: var(--theme-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  color: white;
  transition: 0.3s;
  font-size: 15px;
}
header .nav-call ul a:hover {
  background-color: var(--theme-hover);
}
header .call-no {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
}
header .call-no a {
  font-size: 18px;
  color: white;
  font-family: var(--theme-font);
}
header .call-no .side {
  width: 1px;
  height: 32px;
  background: #000;
}
header .icon {
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: white;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.336);
}
header nav .navbar-brand img {
  max-width: 180px;
  filter: brightness(0) invert(1);
}
header nav.navbar-expand-lg {
  padding: 5px 0 !important;
}
header .call-btn a i {
  font-size: 22px;
  padding-right: 8px;
  padding-left: 15px;
  color: var(--theme-color);
}

.button-side-nav span {
  color: white;
  font-size: 25px;
  cursor: pointer;
}

.nav-side {
  overflow-x: hidden;
  transform: translateX(100%);
}

.icon {
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: white;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.336);
}

.call-no {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
}
.call-no a {
  font-size: 18px;
  color: white;
  font-family: var(--heading-font);
}
.call-no .side {
  width: 1px;
  height: 32px;
  background: #000;
}

.nav-side-pop {
  z-index: 200;
  transition: 0.3s;
  position: fixed;
  width: 28%;
  height: 100vh;
  right: 0;
  top: 0;
  transform: translateX(0);
}
.nav-side-pop .nav-main {
  background-color: white;
  height: 60vh;
  padding: 50px;
  position: relative;
  transition: 0.3s;
}
.nav-side-pop .nav-main .nav-item a {
  font-weight: 500;
}
.nav-side-pop .nav-main .nav-item ul li a {
  border-bottom: 1px solid #000;
}
.nav-side-pop .nav-main .call-no {
  padding: 0;
  margin-top: 20px;
  transition: 0.3s;
}
.nav-side-pop .nav-main .call-no a {
  color: #000;
}
.nav-side-pop .nav-main .call-no a:hover {
  color: var(--theme-color);
}
.nav-side-pop .nav-main .call-no .icon {
  background-color: var(--theme-hover);
}
.nav-side-pop .nav-main .call-no .icon i {
  color: white;
}
.nav-side-pop .cut {
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: 30px;
}
.nav-side-pop .cut i {
  font-size: 30px;
}

.main-nav {
  position: relative;
  width: 0;
  height: 0;
}
.main-nav .para {
  color: #000;
  margin-bottom: 0;
  margin-top: 20px;
}

.footer-boottom {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.84);
}
.footer-boottom p {
  margin-bottom: 0;
  padding: 10px;
  color: white;
}

.banner-home {
  position: relative;
}
.banner-home .owl-dots {
  display: none;
}
.banner-home .banner-bottom {
  position: absolute;
  bottom: -38px;
  z-index: 1;
}
.banner-home .banner-bottom img {
  width: 100%;
}
.banner-home .heading-top {
  font-size: 20px;
  color: white;
}
.banner-home .bnr-img-overlay {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8784313725), rgba(0, 0, 0, 0.2392156863), transparent);
  z-index: 10;
  position: absolute;
  top: 0;
  z-index: 0;
}
.banner-home .img-wrapper-bnr img {
  width: 100%;
  top: 0;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.banner-home .banner-content {
  position: absolute;
  top: 55%;
  z-index: 31;
  width: 100%;
  color: #fff;
  left: 0px;
  transform: translateY(-50%);
}
.banner-home .banner-content .banner-cont {
  border-radius: 30px;
  padding-top: 0;
}
.banner-home .banner-content .common-heading {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: rgb(255, 255, 255);
  font-family: var(--heading-font);
}
.banner-home .banner-content p {
  line-height: 2rem;
  font-size: 22px;
  color: #ffffff;
}
.banner-home .banner-content p span {
  color: #e85457;
}
.banner-home .banner-content .break {
  display: block;
}
.banner-home .owl-theme .owl-nav [class*=owl-]:hover {
  background-color: unset;
}
.banner-home button.owl-prev {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.banner-home button.owl-prev span {
  font-size: 135px;
  border: solid 3px transparent;
  font-weight: 200;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
  border-radius: 50px;
  color: #fff;
  padding-left: 1px;
  border-radius: 50px;
  transition: 0.3s;
}
.banner-home button.owl-prev span:hover {
  background-color: transparent;
  border-color: transparent;
  text-shadow: 3px 4px 4px #060606;
}
.banner-home button.owl-next {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.banner-home button.owl-next span {
  transition: 0.3s;
  font-size: 135px;
  border: solid 3px transparent;
  color: #fff;
  font-weight: 200;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
  border-radius: 50px;
  padding-left: 1px;
  border-radius: 50px;
}
.banner-home button.owl-next span:hover {
  background-color: transparent;
  border-color: transparent;
  text-shadow: 3px 4px 4px #060606;
}
.banner-home .form {
  max-width: 410px;
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background: rgba(0, 0, 0, 0.3411764706);
  padding: 25px 20px;
  border-radius: 10px;
}
.banner-home .form h3 {
  color: white;
  font-size: 25px;
  font-family: var(--nav-font);
}
.banner-home .contact-form label {
  margin: 0 0 5px 0;
  color: white;
}
.banner-home .contact-form .form-control {
  margin: 0 0 6px 0;
  border-radius: 8px;
  padding: 5px 10px;
}
.banner-home .contact-form .form-control:focus {
  border-color: var(--theme-color);
  outline: 0;
  box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}
.banner-home .contact-form button {
  border: none;
  transition: 0.3s;
  padding: 10px 12px;
  font-size: 16px;
  margin-top: 5px;
}
.banner-home .contact-form button:hover {
  background-color: white;
}

header.cu-header.sticky {
  background-color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
header.cu-header.sticky img {
  max-width: 180px;
  filter: brightness(1) invert(0);
}
header.cu-header.sticky .navbar-nav .nav-item .nav-link {
  color: #000;
  font-family: var(--nav-font);
  font-weight: 500;
  font-size: 16px;
}
header.cu-header.sticky .icon {
  background-color: rgb(0, 0, 0);
}
header.cu-header.sticky .call-no a {
  color: #000;
}
header.cu-header.sticky .button-side-nav i {
  color: var(--theme-hover);
}

.about-us p {
  font-size: 14px;
  text-align: justify;
}
.about-us .abpout-photo img {
  border-radius: 20px;
  width: 100%;
}

.sub-head {
  margin-bottom: 3px;
  color: var(--theme-color);
  font: 700 15px/1.2em "Raleway", sans-serif;
}

.one-night {
  position: relative;
}
.one-night .accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: none;
}
.one-night .accordion-button::after {
  display: none;
}
.one-night .top {
  position: absolute;
  bottom: 0px;
  z-index: 1;
}
.one-night .top img {
  width: 100%;
}
.one-night .night-top {
  position: absolute;
  top: 3px;
  z-index: 4;
}
.one-night .night-top img {
  width: 100%;
}
.one-night .gray {
  padding-top: 35px;
  padding-bottom: 40px;
  background: #edf0f5;
  background-size: cover;
}
.one-night .nav-tabs-container {
  width: 100%;
  padding-top: 5px;
  margin-right: auto;
  margin-left: auto;
}
.one-night h2 {
  color: var(--theme-color);
}
.one-night .nav-tabs {
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
  display: grid;
  flex-direction: inherit;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  margin-top: 0px;
  background-color: transparent;
  margin-bottom: 15px;
  border-bottom: 0px;
  gap: 15px;
  display: none;
}
.one-night .nav-tabs li {
  display: inline-block;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 1% 2%;
  margin: 0;
  background-color: var(--theme-hover);
  border-radius: 5px;
}
.one-night .nav-tabs li a {
  font-weight: 600;
  color: white;
}
.one-night .tab-panes-container {
  padding: 30px;
  border-top: 1px solid #fff;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  background: #fff;
  border-radius: 5px;
}
.one-night .tab-panes-container img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  width: 100%;
}
.one-night .tab-panes-container h3 {
  font-size: 18px;
}
.one-night .text-side ul li {
  list-style: none;
  font-size: 15px;
  margin-bottom: 0px;
  color: #000;
  position: relative;
  padding-left: 20px;
  font-weight: 500;
}
.one-night .text-side ul li::after {
  position: absolute;
  font-family: "fontAwesome";
  content: "\f1b0";
  left: 0px;
  top: 0;
  color: var(--theme-color);
  font-size: 15px;
  margin-right: 10px;
}
.one-night .text-side .extras ul li::after {
  content: "\f1b0";
}
.one-night .nav-tabs li.active a {
  background-color: transparent;
  color: var(--theme-color);
}
.one-night li.tblinks2.active {
  background: var(--theme-color);
  /* color: white; */
}
.one-night li.tblinks2.active a {
  color: white;
}
.one-night .accordion-item {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.one-night .accordion-item .accordion-header .accordion-button {
  font-size: 21px;
  background-color: rgba(240, 248, 255, 0);
  padding: 8px 20px;
  color: var(--theme-color);
}
.one-night .accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.41);
  border-bottom: 1px solid #dee2e6;
}
.one-night .abpout-photo {
  margin-top: 20px;
}

footer {
  background-color: #000;
}
footer * {
  color: white;
}
footer h3 {
  margin-bottom: 20px;
  font-family: var(--theme-font);
  font-size: 22px;
}
footer .logo img {
  filter: brightness(0) invert(1);
}
footer ul li a {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  transition: 0.3s;
  gap: 10px;
  font-size: 16px;
}
footer ul li a span {
  width: 43px;
  height: 43px;
  background-color: rgba(255, 255, 255, 0.336);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 50px;
}
footer ul li a span i {
  transition: 0.3s;
}
footer .social {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}
footer .social li a {
  margin-bottom: 0;
}

.activites .activities-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 30px;
}
.activites .activities-main .activities-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.activites .activities-main .activities-item img {
  border-radius: 10px;
  transition: 0.3s;
}
.activites .activities-main .activities-item .activitie-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  width: 100%;
  text-align: center;
}
.activites .activities-main .activities-item .activitie-title h3 {
  margin-bottom: 0;
  z-index: 2;
  font-size: 18px;
  color: white;
}
.activites .activities-main .activities-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.4509803922);
  width: 100%;
  height: 100%;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  transition: 0.3s;
}
.activites .activities-main .activities-item:hover::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.1450980392);
  width: 100%;
  height: 100%;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
}
.activites .activities-main .activities-item:hover img {
  transform: scale(1.1);
}

.terms {
  border-top: 1px solid rgba(0, 0, 0, 0.3215686275);
}
.terms p {
  margin-top: 10px;
  color: var(--theme-color);
}
.terms h3 {
  font-size: 22px;
}
.terms ul li {
  padding-left: 20px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
}
.terms ul li::before {
  content: "\f101";
  position: absolute;
  font-family: fontawesome;
  left: 0;
  color: var(--theme-secoundry);
}

.two-night {
  background-color: white;
}
.two-night.common-space {
  padding-top: 0;
  padding-bottom: 0;
}
.two-night .one-night .tab-panes-container {
  padding: 4px;
  border-top: 1px solid #fff;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  background: #fff;
  border-radius: 5px;
}

.two-nights.common-space {
  padding-bottom: 0;
  border-bottom: 1px solid rgba(112, 112, 112, 0.6431372549);
}

footer .location {
  width: 64px;
}

.float-btn .whatsapp {
  position: fixed;
  width: 50px;
  height: 50px;
  background-color: #00e676;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 26px;
  box-shadow: 2px 2px 3px #999;
  z-index: 10;
  margin-top: 0px;
  line-height: 50px;
  transition: all ease-in-out 0.2s;
  bottom: 150px;
  right: 20px;
}

.float-btn .call {
  position: fixed;
  width: 50px;
  height: 50px;
  background-color: #00e676;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 26px;
  box-shadow: 1px 1px 2px #999;
  z-index: 10;
  margin-top: 0px;
  line-height: 50px;
  transition: all ease-in-out 0.2s;
  bottom: 80px;
  right: 20px;
}

.banner-home .mobile {
  display: none !important;
}

.banner-home .desktop {
  display: block !important;
}

header .navbar-brand {
  margin-right: 58px;
}/*# sourceMappingURL=style.css.map */