/* Font Family ***********************************************************************/
@font-face {
  font-family: "Inter-Regular";
  src: url("../fonts/Inter/Inter-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Inter-Medium";
  src: url("../fonts/Inter/Inter-Medium.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Inter-SemiBold";
  src: url("../fonts/Inter/Inter-SemiBold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Inter-Bold";
  src: url("../fonts/Inter/Inter-Bold.ttf");
  font-display: swap;
}

/* common css ******************************************************************************/
:root {
  --alabaster: #FAFAFA;
  --bianca: #FFFCF2;
  --black: #000000;
  --dark-grey: #363636;
  --sand: #E3C86C;
  --smokey-grey: #707070;
  --white: #FFFFFF;
  --storm-dust: #626262;
  --battleship-grey: #818181;
}

.white {
  color: var(--white);
}
.black {
  color: var(--black);
}
.sands-bg {
  background-color: rgba(209, 179, 75, 100);
}
.white-bg {
  background-color: var(--white) !important;
}
.bianca-bg {
  background-color: var(--bianca);
}
.alabaster-bg {
  background-color: var(--alabaster);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}
.common::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
}
body {
  font-family: "Inter-Regular";
}
body.show {
  position: fixed;
  top: 0;
  width: 100%;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
  line-height: 1.2;
  color: var(--black);
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}
h1 {
  font-size: 70px;
}
h2 {
  font-size: 40px;
}
h3 {
  font-size: 36px;
}
h4 {
  font-size: 28px;
}
h5 {
  font-size: 26px;
}
h6 {
  font-size: 20px;
}
p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 15px;
  color: var(--black);
}
p:last-child {
  margin-bottom: 0;
}
.small {
  font-size: 16px;
}
ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  text-transform: capitalize;
  display: inline-block;
  line-height: 1.2;
  color: var(--black);
  font-family: inherit;
}
a:hover {
  color: var(--black);
}
span {
  display: inline-block;
}
section {
  padding: 80px 0;
  overflow: hidden;
}
.section-heading {
  text-align: center;
  margin-bottom: 60px;
}
.section-heading span {
  font-size: 24px;
  color: var(--sand);
  letter-spacing: 4px;
  margin-bottom: 10px;
}
.section-heading h2 {
  text-transform: uppercase;
}
#header .cmn-btn,
.host-book-fixedbar .cmn-btn {
  border: 1px solid var(--sand);
}
.cmn-btn {
  font-size: 17px;
  color: var(--black);
  padding: 10px 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-family: "Inter-Bold";
}
.cmn-btn img {
  max-width: 30px;
  margin-right: 10px;
}
.btn-sands {
  border: 1px solid transparent;
  background-color: rgba(209, 179, 75, 100);
}
.btn-white {
  border: 1px solid var(--white);
  background-color: var(--white);
}
.mobile {
  display: none !important;
}
.desktop {
  display: block !important;
}
img,
video {
  max-width: 100%;
}
.button-box {
  padding-top: 20px;
}
.button-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 16px;
}
.owl-theme .owl-dots .owl-dot span {
  background: var(--black);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--sand);
}
.owl-nav {
  margin-top: 0;
}
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.owl-nav button.owl-prev {
  left: 0;
}
.owl-nav button.owl-next {
  right: 0;
}
.owl-theme .owl-dots .owl-dot span {
  width: 44px !important;
  height: 5px;
  margin: 5px 6px;
  background: var(--white);
  border-radius: 0;
}
.form-control-common {
  background: var(--white);
  border: 1px solid var(--sand);
  font-size: 16px;
  padding: 10px 20px;
  width: 100%;
  appearance: textfield;
  color: var(--smokey-grey);
  border-radius: 10px;
  box-shadow: none;
  resize: none;
  outline: none;
}
.form-select {
  color: var(--smokey-grey);
  padding: 10px 34px 10px 12px;
  background-color: var(--white);
  border: 1px solid var(--sand);
  border-radius: 10px;
}
.input-group {
  padding-bottom: 20px;
}
input::placeholder {
  color: var(--smokey-grey);
  opacity: 1;
}
.form-select:focus {
  border-color: var(--sand);
  box-shadow: none;
}
.form-label {
  color: var(--smokey-grey);
}
.btn-close:focus {
  box-shadow: none;
}

/* header css start ******************************************************************************/
/* @keyframes smoothScroll {
  0% {
      transform: translateY(-60px);
      opacity: 0;
  }
  100% {
      transform: translateY(0px);
      opacity: 1;
  }
}
#header.show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: smoothScroll 1s forwards;
  z-index: 1000;
  box-shadow: 0 0 10px 2px #000;
} */
#header {
  background: transparent;
  padding: 22px 0;
  transition: .5s all;
  z-index: 11;
  position: relative;
}
#header .header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .logo-box img {
  max-width: 170px;
  width: 100%;
}
#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 11;
  width: 30px;
  height: 26px;
}

#header .main-nav .click-menu span,
#header .main-nav .cancel-menu span {
  background: var(--white);
  transition: .5s all ease-in-out;
  position: relative;
  border-radius: 5px;
}
#header .main-nav .click-menu span {
  width: 30px;
  height: 3px;
}
#header .main-nav .click-menu span:first-child,
#header .main-nav .click-menu span:last-child {
  width: 22px;
}
#header .main-nav .cancel-menu span {
  width: 16px;
  position: absolute;
  background-color: var(--black);
  height: 3px;
}
#header .main-nav .cancel-menu span:first-child {
  transform: rotate(45deg);
}
#header .main-nav .cancel-menu span:last-child {
  transform: rotate(-45deg);
}
#header .main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#header .button-box {
  padding-top: 0;
}
#header .main-nav nav ul li {
  display: inline-block;
  position: relative;
}
#header .main-nav nav ul li a {
  font-size: 18px;
  color: var(--dark-grey);
  padding: 5px 0;
  margin: 0 44px;
  text-transform: uppercase;
  position: relative;
}
#header .main-nav nav ul li a:hover {
  color: var(--sand);
}
#header .main-nav nav ul li a:before {
  position: absolute;
  content: "";
  left: auto;
  right: auto;
  bottom: 0;
  height: 2px;
  width: 100%;
  border-radius: 0;
  background-color: var(--sand);
  transform: scaleX(0);
  transition: transform .3s linear;
  top: calc(50% + 12px);
}
#header .main-nav nav ul li a:hover:before {
  transform: scaleX(1);
}

/* home banner css ******************************************************************************/
#home-banner {
  padding: 0 0;
  position: relative;
}
#home-banner .item {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: calc(100vh - 95px);
  /* padding: 20% 0; */
}
#home-banner .item .container {
  height: 100%;
}
#home-banner .banner-caption-box {
  height: 100%;
}
#home-banner .banner-caption-box .row {
  height: 100%;
  align-items: center;
}
#home-banner .item h1 {
  color: var(--white);
  text-transform: uppercase;
}
#home-banner .item h1 b {
  color: inherit;
  font-family: "Inter-SemiBold";
}
#home-banner .item p {
  font-size: 20px;
  color: var(--white);
  font-family: "Inter-Medium";
}
#home-banner .cmn-btn {
  padding: 12px 34px;
  font-family: "Inter-Medium";
}
#home-banner .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 3%;
  transform: translate(-50%);
}

/* About us section css ******************************************************************************/
#about-us {
  position: relative;
}
#about-us .text-box {
  margin-bottom: 40px;
}
#about-us .text-box p {
  font-size: 24px;
  line-height: 1.7;
  color: var(--smokey-grey);
}
#about-us .hoger-provide-box .box {
  padding: 20px 0;
  height: 100%;
}
#about-us .hoger-provide-box .box .icon-box {
  min-height: 70px;
}
#about-us .hoger-provide-box .box .icon-box img {
  max-width: 80%;
}
#about-us .hoger-provide-box .box .title-bx p {
  font-size: 24px;
  color: var(--smokey-grey);
}
#about-us .box.box2 .img-box {
  position: relative;
}
#about-us .box.box2 .img-box:after {
  position: absolute;
  content: "";
  background-color: var(--sand);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#about-us .box.box2 .img-box {
  position: relative;
}
#about-us .box.box2 .img-box:after {
  position: absolute;
  content: "";
  background-color: var(--sand);
  width: 100%;
  height: 100%;
  top: 8px;
  left: 8px;
  z-index: -1;
}
#about-us .box.box2 .img-box img {
  max-width: 100%;
  width: 100%;
}

/* our services section css ******************************************************************************/
#our-services {
  padding-top: 0;
}
#our-services .our-services-box .row {
  row-gap: 44px;
}
#our-services .box {
  text-align: center;
  border: 1px solid var(--sand);
  height: 100%;
  border-radius: 30px;
  padding: 50px 20px;
  max-width: 380px;
  margin: 0 auto;
}
#our-services .box .icon-box {
  margin-bottom: 20px;
  min-height: 80px;
}
#our-services .box .icon-box img {
  max-width: 25%;
}
#our-services .box p {
  font-size: 20px;
  color: var(--smokey-grey);
}

/* how it works section css ******************************************************************************/
#how-it-works .how-it-works-slider .owl-stage {
  display: flex;
  height: 100%;
  margin: 85px 3px;
}
#how-it-works .how-it-works-slider .item {
  height: 100%;
}
#how-it-works .section-heading {
  margin-bottom: 40px;
}
#how-it-works .box.top-box {
  position: relative;
  background: url('../images/back-btm-bg.png') no-repeat;
  background-position: bottom;
  background-size: 100% 51.5%;
  padding-bottom: 20px;
  height: 110%;
}
#how-it-works .box .box-inner {
  text-align: center;
  padding: 115px 20px 50px 20px;
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
  border-radius: 16px;
  max-width: 288px;
  margin: 0 auto;
  height: 100%;
  position: relative;
}
#how-it-works .box .icon-box {
  width: 100px;
  height: 100px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 10px solid var(--sand);
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background-color: var(--white);
  margin-top: -62%;
}

/* Top Box ********************/
#how-it-works .box.top-box .box-inner {
  display: flex;
  flex-direction: column;
}

/* Bottom Box ********************/
#how-it-works .box.btm-box {
  position: relative;
  background: url('../images/back-top-bg.png') no-repeat;
  background-position: top;
  background-size: 100% 51.5%;
  padding-top: 20px;
  height: 110%;
}
#how-it-works .box.btm-box .box-inner {
  display: flex;
  flex-direction: column-reverse;
  padding: 28px 20px 30px 20px;
}
#how-it-works .box.btm-box .box-inner .icon-box {
  margin-top: auto;
  margin-bottom: -80px;
}
#how-it-works .box .icon-box span {
  font-size: 36px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  font-family: "Inter-Bold";
}
#how-it-works .box .text-box span.title {
  font-size: 20px;
  line-height: 1.2;
  color: var(--smokey-grey);
  margin: 26px 0 20px 0;
  font-family: "Inter-Bold";
}
#how-it-works .box .text-box p {
  font-size: 20px;
  line-height: 1.2;
  color: var(--smokey-grey);
  font-family: "Inter-Medium";
}

/* our properties section css ******************************************************************************/
#our-properties {
  position: relative;
}
#our-properties .our-properties-box .row {
  row-gap: 24px;
}
#our-properties .properties-box-cmn {
  position: relative;
}
#our-properties .properties-box-cmn .img-box {
  position: relative;
}
#our-properties .properties-box-cmn .title-box {
  width: 100%;
  padding: 25px 20px;
  position: absolute;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1;
}
#our-properties .properties-box-cmn .title-box span {
  font-size: 20px;
  color: var(--smokey-grey);
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}
#our-properties .box .text-box {
  padding: 26px 12px;
}
#our-properties .box .text-box h5 {
  margin-bottom: 5px;
}
#our-properties .box .text-box .details-bx {
  display: flex;
  align-items: center;
  column-gap: 12px;
  row-gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
}
#our-properties .box .text-box .details-bx .list-box li {
  font-size: 18px;
  color: var(--smokey-grey);
}
#our-properties .box .text-box .details-bx .cmn-btn {
  font-size: 16px;
  padding: 12px 22px;
}
#our-properties .box .owl-dots {
  position: absolute;
  margin-top: 0;
  left: 0;
  right: 0;
  bottom: 14%;
}
#our-properties .box .owl-dots .owl-dot span {
  width: 30px !important;
  margin: 5px 4px;
  border-radius: 10px;
}
#our-properties .properties-box-cmn .img-box img {
  aspect-ratio: 3.6/3;
  object-fit: cover;
}

/* our partners section css ******************************************************************************/
/*#our-partners .box .img-box img {
  width: 100%;
  width: auto;
  max-width: 80%;
  object-fit: contain;
  margin: 0 auto;
}*/

#our-partners .box .img-box a {
  /*width: 100%;*/
  width: auto;
  max-width: 80%;
  object-fit: contain;
  margin: 0 auto;
}

/* guest reviews section css ******************************************************************************/
#guest-reviews .section-heading {
  margin-bottom: 50px;
}
#guest-reviews .box {
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
}
#guest-reviews .box .text-box p {
  font-size: 26px;
  color: var(--battleship-grey);
  margin-bottom: 20px;
}
#guest-reviews .box .text-box span {
  font-size: 20px;
  color: var(--battleship-grey);
}
#guest-reviews .box .rating-box {
  padding: 20px 0 10px 0;
  position: relative;
}
#guest-reviews .box .rating-box:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--sand);
  width: 190px;
  height: 1px;
  margin: 0 auto;
}
#guest-reviews .box .rating-box i {
  font-size: 20px;
  padding: 0 0px;
  color: var(--sand);
}
.guest-reviews-slider .owl-nav {
  margin-top: 0;
}
.guest-reviews-slider .owl-nav {
  font-size: 34px;
  color: var(--sand);
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: transparent;
  color: unset;
}

/* faq section css ******************************************************************************/
#faq .accordion-header {
  border-bottom: 1px solid var(--sand);
}
#faq .accordion-button {
  font-size: 26px;
  color: var(--smokey-grey) !important;
  background-color: transparent !important;
  box-shadow: none !important;
  padding: 0 0 16px 0;
}
#faq .accordion-item {
  border: none;
  border-radius: 0 !important;
  padding: 0px 0 30px 0;
}
#faq .accordion-body {
  padding: 24px 30px 20px 0px;
}
#faq .accordion-body p {
  font-size: 20px;
  color: var(--smokey-grey) !important;
}
#faq .accordion-button::after {
  background-image: url("../images/plus.png");
  width: 1.6rem;
  height: 1.6rem;
  background-size: 1.6rem;
}
#faq .accordion-button:not(.collapsed)::after {
  background-image: url("../images/minus.png");
  transform: none;
}

/* footer css ******************************************************************************/
#footer {
  padding-top: 40px;
  background-color: var(--black);
}
#footer .top-box .logo-box {
  display: flex;
  justify-content: end;
  padding-right: 20px;
}
#footer .top-box .logo-box img {
  max-width: 90px;
}
footer .top-box .box.box2 {
  padding: 10px 20px 10px 60px;
  border-left: 2px solid var(--white);
  border-right: 2px solid var(--white);
}
footer .top-box .box.box3 {
  padding: 10px 0 10px 20px;
}
#footer .top-box h6 {
  color: var(--sand);
  font-family: "Inter-Bold";
}
#footer .top-box .link-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 12px;
}
#footer .top-box .link-box ul img {
  max-width: 32px;
}
#footer .end-box {
  margin-top: 26px;
  padding: 18px 0;
  border-top: 1px solid var(--white);
}
#footer p {
  font-size: 18px;
  color: var(--white);
  font-family: "Inter-Medium";
}
#footer a {
  font-size: 18px;
  color: var(--white);
  font-family: "Inter-Medium";
}
#footer .address-box.cmn-con-bx {
  display: flex;
  column-gap: 20px;
}
#footer .address-box.cmn-con-bx .icon-box {
  width: 30px;
  height: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
#footer .address-box.cmn-con-bx p br {
  display: none;
}

/* modal css ******************************************************************************/
/* .book-host-cmn-modal .mb-3 {
    margin-bottom: 0 !important;
}   */

.wpcf7-spinner {
  position: absolute !important;
}

.modal-header {
  border-bottom: 0;
  /* padding: 22px 26px 6px 22px; */
  padding: 0 0;
}
.modal-header .btn-close {
  opacity: 1;
  padding: 4px 4px;
  border-radius: 50%;
  background-size: 45% 100%;
  background-color: var(--white);
  border: 1.5px solid var(--black);

  position: absolute;
  right: 3%;
  top: 4%;
  z-index: 1;
}
.modal-body {
  /* padding: 22px 36px; */
      padding: 36px 36px;
}
.book-host-cmn-modal .modal-content {
  background-color: var(--white);
  border-radius: 30px;
}
.book-host-cmn-modal .section-heading {
  margin-bottom: 30px !important;
}
.book-host-cmn-modal .form-control:focus {
  color: var(--smokey-grey);
  background-color: var(--white);
  box-shadow: none;
  border-color: var(--sand);
}
.book-host-cmn-modal .book-host-cmn-box h4 {
  font-size: 28px;
  color: var(--black);
  position: relative;
}
.book-host-cmn-modal .book-host-cmn-box h4:after {
  position: absolute;
  content: "";
  background-color: var(--sand);
  width: 110px;
  height: 2px;
  left: 0;
  right: 0;
  bottom: -3px;
    margin: 0 auto;
}
.book-host-cmn-modal .book-host-cmn-box .section-heading p {
  font-size: 18px;
  line-height: 1.4;
  color: gray;
}
.book-host-cmn-modal .book-host-cmn-box .cmn-btn {
  border: 0;
  font-family: "Inter-Medium";
}
.book-host-cmn-modal .book-host-cmn-box .custom-upload-box {
  width: 60px;
  height: 60px;
  border: 1px solid var(--sand);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background-color: var(--white);
}
.book-host-cmn-modal .book-host-cmn-box .custom-upload-box input[type="file"] {
  /* position: absolute; */
  opacity: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
}
.book-host-cmn-modal .book-host-cmn-box .custom-upload-box:hover {
  border-color: var(--sand);
}
.book-host-cmn-modal .book-host-cmn-box .upload-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.book-host-cmn-modal .book-host-cmn-box .custom-upload-box span {
  position: absolute;
  font-size: 24px;
  color: var(--sand);
}
.book-host-cmn-modal .image-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.book-host-cmn-modal .book-host-cmn-box .modal-btn {
  align-items: center;
  justify-content: flex-end;
  padding-top: 30px;
}
.book-host-cmn-modal input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(36%) sepia(82%) saturate(479%) hue-rotate(10deg) brightness(95%) contrast(95%);
  cursor: pointer;
}
/* .book-host-cmn-modal .custom-upload-box input[type="file"] {
  position: absolute;
  opacity: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  top: 0;
  left: 0;
} */
.book-host-cmn-modal .select-option {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url('../images/down-arrow.png') no-repeat;
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 14px;
  padding-right: 2.5rem;
}
.book-host-cmn-modal .modal-btn-right {
  justify-content: end;
}

/* Social Fixedbar ********************************/
.social-fixedbar {
  position: fixed;
  top: 50%;
  left: 0;
  z-index: 10;
  background-color: var(--white);
  padding: 18px 11px;
  border-radius: 0 15px 15px 0;
  transform: translateY(-50%);
}
.social-fixedbar ul li {
  padding: 6px 0;
}

/* Thank you page css ******************************************************************************/
#thank-you {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100svh;
  background: url('../images/thank-you-web.webp') no-repeat;
  background-size: 100% 100% !important;
}
#thank-you .thank-you-box {
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 30px;
  text-align: center;
  border-radius: 12px;
  box-shadow: rgb(0 0 0 / .24) 0 2px 8px;
  /* background-color: var(--denim); */
  background-color: var(--bianca);
}
#thank-you .thank-you-box p {
  color: var(--smokey-grey);
}
/* Hide Css Thank you page */
.page-template-Thank-you-template #header,
.page-template-Thank-you-template .social-fixedbar,
.page-template-Thank-you-template #footer,
body.page-template-Thank-you-template .host-book-fixedbar {
  display: none !important;
}

/* Contact Form-7 *************************************/
.wpcf7-form-control-wrap {
  width: 100% !important;
}
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}
.wpcf7-spinner {
  position: absolute;
}
form.wpcf7-form.failed .wpcf7-response-output {
  color: green;
  border-color: green !important;
}

p#image-error {
    color: #dc3232 !important;
    font-size: 1em !important;
    font-weight: normal !important;
    display: block;
    margin-top: 3px;
}


#our-partners .box .img-box {
    text-align: center;
}