@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap");
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.preload__wrap {
  background: white;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

body {
  color: #000;
  font-weight: normal;
  overflow: hidden;
}

body.loaded {
  overflow-y: visible;
}

body.loaded .preload__wrap {
  opacity: 0;
  z-index: -1;
}

body.modal-open {
  overflow: hidden;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
  margin-bottom: 1rem;
}

a {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}

/*----generic styling*/
.section-space {
  padding: calc(1.25rem + 1.5vw) 0;
}

.section-space-top {
  padding-top: calc(1.25rem + 1.5vw);
}

.section-space-bottom {
  padding-bottom: calc(1.25rem + 1.5vw);
}

.btn-theme {
  background-color: #cd5932;
  color: #fff;
}

.btn1 {
  display: block;
  margin: 20px auto;
  background-color: #a14a2e;
  color: #fff;
  padding: 10px 50px;
  border: none;
  border-radius: 8px;
  padding: 10px 50px;
  -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
}

.inner-sec-container {
  max-width: 1150px;
  height: auto;
  margin: 0 auto;
}

.all-heading-wrapper {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.section-heading-home {
  text-align: center;
  text-transform: capitalize;
  font-weight: bold;
  position: relative;
  display: inline;
  font-size: xxx-large;
}

.section-heading-home::after,
.section-heading-home::before {
  content: "";
  position: absolute;
  width: 100%;
  background-color: #cd5932;
  display: block;
  height: 3px;
}

.section-heading-home::after {
  bottom: -30px;
  width: 50%;
  margin: 0 auto;
  left: 25%;
  background-color: skyblue;
}

.question::after {
  display: none;
}

.section-heading-home::before {
  bottom: -20px;
}

.question::before {
  display: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}

/* -------------------------------- 

Basic Style

-------------------------------- */
.cd-breadcrumb,
.cd-multi-steps {
  width: 90%;
  max-width: 768px;
  padding: 1em;
  background-color: #edeff0;
  border-radius: .25em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.cd-breadcrumb::after,
.cd-multi-steps::after {
  clear: both;
  content: "";
  display: table;
}

.cd-breadcrumb li,
.cd-multi-steps li {
  display: inline-block;
}

.cd-breadcrumb li::after,
.cd-multi-steps li::after {
  /* this is the separator between items */
  display: inline-block;
  content: '\00bb';
  margin: 0 .6em;
  color: #959fa5;
}

.cd-breadcrumb li:last-of-type::after,
.cd-multi-steps li:last-of-type::after {
  /* hide separator after the last item */
  display: none;
}

.cd-breadcrumb li > *,
.cd-multi-steps li > * {
  /* single step */
  display: inline-block;
  font-size: 16px;
  color: #2c3f4c;
}

.cd-breadcrumb li.current > *,
.cd-multi-steps li.current > * {
  /* selected step */
  color: #cd5932;
}

.no-touch .cd-breadcrumb a:hover,
.no-touch .cd-multi-steps a:hover {
  /* steps already visited */
  color: #96c03d;
}

.cd-breadcrumb.custom-separator li::after,
.cd-multi-steps.custom-separator li::after {
  /* replace the default separator with a custom icon */
  content: '';
  height: 16px;
  width: 16px;
  background: url(https://codyhouse.co/demo/breadcrumbs-multi-steps-indicator/img/cd-custom-separator.svg) no-repeat center center;
  vertical-align: middle;
}

.cd-breadcrumb.custom-icons li > *::before,
.cd-multi-steps.custom-icons li > *::before {
  /* add a custom icon before each item */
  content: '';
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-right: .4em;
  margin-top: -2px;
  background: url(https://codyhouse.co/demo/breadcrumbs-multi-steps-indicator/img/cd-custom-icons-01.svg) no-repeat 0 0;
  vertical-align: middle;
}

.cd-breadcrumb.custom-icons li:not(.current):nth-of-type(2) > *::before,
.cd-multi-steps.custom-icons li:not(.current):nth-of-type(2) > *::before {
  /* change custom icon using image sprites */
  background-position: -20px 0;
}

.cd-breadcrumb.custom-icons li:not(.current):nth-of-type(3) > *::before,
.cd-multi-steps.custom-icons li:not(.current):nth-of-type(3) > *::before {
  background-position: -40px 0;
}

.cd-breadcrumb.custom-icons li:not(.current):nth-of-type(4) > *::before,
.cd-multi-steps.custom-icons li:not(.current):nth-of-type(4) > *::before {
  background-position: -60px 0;
}

.cd-breadcrumb.custom-icons li.current:first-of-type > *::before,
.cd-multi-steps.custom-icons li.current:first-of-type > *::before {
  /* change custom icon for the current item */
  background-position: 0 -20px;
}

.cd-breadcrumb.custom-icons li.current:nth-of-type(2) > *::before,
.cd-multi-steps.custom-icons li.current:nth-of-type(2) > *::before {
  background-position: -20px -20px;
}

.cd-breadcrumb.custom-icons li.current:nth-of-type(3) > *::before,
.cd-multi-steps.custom-icons li.current:nth-of-type(3) > *::before {
  background-position: -40px -20px;
}

.cd-breadcrumb.custom-icons li.current:nth-of-type(4) > *::before,
.cd-multi-steps.custom-icons li.current:nth-of-type(4) > *::before {
  background-position: -60px -20px;
}

@media only screen and (min-width: 768px) {
  .cd-breadcrumb,
  .cd-multi-steps {
    padding: 0 1.2em;
  }
  .cd-breadcrumb li::after,
  .cd-multi-steps li::after {
    margin: 0 1em;
  }
  .cd-breadcrumb li > *,
  .cd-multi-steps li > * {
    font-size: 16px;
  }
}

#gallery {
  padding-top: 40px;
}

#gallery .fa {
  cursor: pointer;
  font-weight: 600;
  font-size: 48px;
}

.img-wrapper {
  position: relative;
  margin-top: 15px;
  cursor: pointer;
  height: 120px;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
}

.img-overlay i {
  color: #fff;
  font-size: 3em;
}

#overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 100000;
}

#overlay img {
  margin: 0;
  width: 80%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 5%;
}

@media screen and (min-width: 768px) {
  #overlay img {
    width: 60%;
  }
}

@media screen and (min-width: 1200px) {
  #overlay img {
    width: 50%;
  }
}

#nextButton {
  color: #fff;
  font-size: 2em;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
}

#nextButton:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  #nextButton {
    font-size: 3em;
  }
}

#prevButton {
  color: #fff;
  font-size: 2em;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
}

#prevButton:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  #prevButton {
    font-size: 3em;
  }
}

#exitButton {
  color: #fff;
  font-size: 2em;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
  position: absolute;
  top: 15px;
  right: 15px;
}

#exitButton:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  #exitButton {
    font-size: 3em;
  }
}

.top-banner-animated-section-parent {
  width: 94%;
  height: 70vh;
  box-shadow: 0px 9px 37px -10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 9px 37px -10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 9px 37px -10px rgba(0, 0, 0, 0.3);
  position: relative;
  margin: 0 auto;
  border-radius: 20px;
}

.top-banner-animated-section-parent .new-header-heading-area {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  padding: 10px;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-banner-animated-section-parent .new-header-heading-area .heading-wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.top-banner-animated-section-parent .new-header-heading-area .heading-wrapper h1 {
  margin-left: 5vw;
  margin-top: 20px;
}

.top-banner-animated-section-parent .new-header-heading-area .heading-wrapper h1 .its-beautiful {
  font-family: 'Allison', cursive;
  font-size: 13vw;
  color: #FFC700;
  font-weight: 400;
  text-shadow: 0px 10px 3px rgba(0, 0, 0, 0.25);
}

.top-banner-animated-section-parent .new-header-heading-area .heading-wrapper h1 .place-name-heading {
  font-size: 10vw;
  top: 10vw;
  position: absolute;
  left: 2vw;
  color: #fff;
}

.top-banner-animated-section-parent::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: calc(20px + 4vw);
  color: #fff;
  font-weight: 600;
  text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
}

.event-listing-top-image-section {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: visible;
  padding: 0px 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 20px;
}

.event-listing-top-image-section .search-home-home-parent {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  bottom: -33px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0px 70px 0px 20px;
}

.event-listing-top-image-section .search-home-home-parent .search-bar-wrapper {
  max-width: 600px;
  height: 66px;
  border-radius: 30px;
  margin: 0 auto;
  border: 1px solid #a14a2e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  box-shadow: 0px 9px 37px -10px rgba(0, 0, 0, 0.46);
  -webkit-box-shadow: 0px 9px 37px -10px rgba(0, 0, 0, 0.46);
  -moz-box-shadow: 0px 9px 37px -10px rgba(0, 0, 0, 0.46);
}

.event-listing-top-image-section .search-home-home-parent .search-bar-wrapper form {
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.event-listing-top-image-section .search-home-home-parent .search-bar-wrapper form .srch-input-wrapper {
  width: 88%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 35px;
  border-top-right-radius: 0;
}

.event-listing-top-image-section .search-home-home-parent .search-bar-wrapper form .srch-input-wrapper input {
  width: 90%;
  height: 65%;
  padding: 8px 16px;
  font-size: 16px;
  border: none;
  outline: none;
  border-bottom: 1px solid lightgray;
}

.event-listing-top-image-section .search-home-home-parent .search-bar-wrapper form .srch-btn-wrapper {
  width: 10%;
  height: 100%;
  background-color: white;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.event-listing-top-image-section .search-home-home-parent .search-bar-wrapper form .srch-btn-wrapper button {
  width: 80px;
  height: 70px;
  border: none;
  background-color: #a14a2e;
  border-radius: 50%;
  margin-top: -4px;
}

.event-listing-top-image-section .search-home-home-parent .search-bar-wrapper form .srch-btn-wrapper button i {
  font-size: 30px;
  color: white;
}

.services-section-main-wrapper {
  width: 100%;
  height: auto;
  padding: 40px 10px 0 10px;
}

.services-section-main-wrapper .services-sec-inner-parent {
  width: 100%;
  height: auto;
}

.services-section-main-wrapper .services-sec-inner-parent .services-tabs-wrapper {
  width: 65px;
  background-color: white;
  position: fixed;
  left: 0px;
  top: 50%;
  border-radius: 0px 40px 40px 0px;
  z-index: 1000;
  border: 2px solid #cd5932;
  overflow: hidden;
  margin-top: -75px;
}

.services-section-main-wrapper .services-sec-inner-parent .services-tabs-wrapper .nav .nav-item {
  width: 100%;
}

.services-section-main-wrapper .services-sec-inner-parent .services-tabs-wrapper .nav .nav-item .nav-link {
  width: 100%;
  text-transform: capitalize;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #555;
  outline: none;
  padding: 12px 6px;
  border-radius: 0;
  position: relative;
}

.services-section-main-wrapper .services-sec-inner-parent .services-tabs-wrapper .nav .nav-item .nav-link .tab-anker-services {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.services-section-main-wrapper .services-sec-inner-parent .services-tabs-wrapper .nav .nav-item .nav-link i {
  color: #fff;
  margin-bottom: 2px;
  padding: 10px;
  background-color: #cd5932;
  border-radius: 50%;
}

.services-section-main-wrapper .services-sec-inner-parent .services-tabs-wrapper .nav .nav-item .nav-link.active {
  background-color: #cd5932;
  color: #fff;
}

.services-section-main-wrapper .services-sec-inner-parent .services-tabs-wrapper .nav .nav-item .nav-link.active i {
  color: #cd5932;
  background-color: #fff;
}

.services-section-main-wrapper .services-sec-inner-parent .hotel-services-tab-content {
  width: 100%;
  height: auto;
}

.fix-search-bar {
  position: fixed !important;
  top: 93px;
  z-index: 1000 !important;
}

.button-area {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 20px;
}
.featured{
    width: fit-content;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    margin-top: 2px;
    margin-left: 2px;
    font-size: 0.99rem !important;
}
/*# sourceMappingURL=services.css.map */