@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;
}

.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);
}

.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: auto;
  position: absolute;
  bottom: -33px;
  left: 0;
  right: 0;
  z-index: 10;
  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%;
  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: 80px;
  border: none;
  background-color: #a14a2e;
  border-radius: 50%;
  margin-top: -10px;
}

.event-listing-top-image-section .search-home-home-parent .search-bar-wrapper form .srch-btn-wrapper button i {
  font-size: 30px;
  color: white;
}

.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;
}

.tdcp-resort-popular-section .home-section2 .looking-for-parent .news-event-parent h2 {
  text-align: center !important;
}

.tdcp-resort-popular-section .owl-nav {
  display: none !important;
}

.tdcp-resort-restaurant-listing-button-area {
  width: 100%;
  height: auto;
}

.tdcp-resort-restaurant-listing-button-area .button-area {
  width: 100%;
  height: auto;
}

.tdcp-resort-restaurant-listing-button-area .button-area button {
  background-color: #cd5932;
  color: #fff;
  font-size: 9px;
  border: none;
  text-transform: capitalize;
  padding: 3px 8px;
  border-radius: 3px;
  -webkit-box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.1), inset 2px 2px 5px rgba(255, 255, 255, 0.1), inset -3px -3px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.1), inset 2px 2px 5px rgba(255, 255, 255, 0.1), inset -3px -3px 5px rgba(0, 0, 0, 0.2);
  letter-spacing: 1.1px;
}

.tdcp-resort-restaurant-listing-button-area .button-area button:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}

.nearby-tdcp-resorts-section {
  width: 100%;
  height: auto;
  padding: 40px 20px;
}

.nearby-tdcp-resorts-section .nearby-tdcp-resorts-listing-inner-parent {
  width: 100%;
  height: auto;
}

.nearby-tdcp-resorts-section .nearby-tdcp-resorts-listing-inner-parent .nearby-tdcp-resorts-listing-wrapper {
  width: 100%;
  height: auto;
}

.nearby-tdcp-resorts-section .nearby-tdcp-resorts-listing-inner-parent .nearby-tdcp-resorts-listing-wrapper .popular-destination-card {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background-color: white;
  position: relative;
  z-index: 10;
  -webkit-transition: .5s;
  transition: .5s;
  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);
}

.nearby-tdcp-resorts-section .nearby-tdcp-resorts-listing-inner-parent .nearby-tdcp-resorts-listing-wrapper .popular-destination-card .image-area {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
}

.nearby-tdcp-resorts-section .nearby-tdcp-resorts-listing-inner-parent .nearby-tdcp-resorts-listing-wrapper .popular-destination-card .image-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.nearby-tdcp-resorts-section .nearby-tdcp-resorts-listing-inner-parent .nearby-tdcp-resorts-listing-wrapper .popular-destination-card .image-area .weather-card-area {
  width: 100%;
  min-height: 60px;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nearby-tdcp-resorts-section .nearby-tdcp-resorts-listing-inner-parent .nearby-tdcp-resorts-listing-wrapper .popular-destination-card .image-area .weather-card-area .temprature-text-area {
  width: 70%;
  height: 100%;
  padding: 7px 10px;
}

.nearby-tdcp-resorts-section .nearby-tdcp-resorts-listing-inner-parent .nearby-tdcp-resorts-listing-wrapper .popular-destination-card .image-area .weather-card-area .temprature-text-area p {
  margin: 0;
  font-weight: bold;
  color: #fff;
}

.nearby-tdcp-resorts-section .nearby-tdcp-resorts-listing-inner-parent .nearby-tdcp-resorts-listing-wrapper .popular-destination-card .image-area .weather-card-area .temprature-text-area p small {
  font-weight: 400;
  font-size: 12pxg;
}

.nearby-tdcp-resorts-section .nearby-tdcp-resorts-listing-inner-parent .nearby-tdcp-resorts-listing-wrapper .popular-destination-card .image-area .weather-card-area .temprature-icon-area {
  width: 30%;
  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;
}

.nearby-tdcp-resorts-section .nearby-tdcp-resorts-listing-inner-parent .nearby-tdcp-resorts-listing-wrapper .popular-destination-card .image-area .weather-card-area .temprature-icon-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.nearby-tdcp-resorts-section .nearby-tdcp-resorts-listing-inner-parent .nearby-tdcp-resorts-listing-wrapper .popular-destination-card .image-area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.nearby-tdcp-resorts-section .nearby-tdcp-resorts-listing-inner-parent .nearby-tdcp-resorts-listing-wrapper .popular-destination-card .content-area {
  width: 100%;
  height: auto;
  padding: 10px 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  position: relative;
  padding-bottom: 30px;
}

.nearby-tdcp-resorts-section .nearby-tdcp-resorts-listing-inner-parent .nearby-tdcp-resorts-listing-wrapper .popular-destination-card .content-area .destination-card-heading {
  font-size: 18px;
  letter-spacing: 2px;
  text-align: left;
  padding-top: 10px;
  margin: 0;
}

.nearby-tdcp-resorts-section .nearby-tdcp-resorts-listing-inner-parent .nearby-tdcp-resorts-listing-wrapper .popular-destination-card .content-area p {
  margin: 0;
  font-size: 14px;
  color: gray;
}

.nearby-tdcp-resorts-section .nearby-tdcp-resorts-listing-inner-parent .nearby-tdcp-resorts-listing-wrapper .popular-destination-card .content-area p i {
  font-size: 12px;
}

.nearby-tdcp-resorts-section .nearby-tdcp-resorts-listing-inner-parent .nearby-tdcp-resorts-listing-wrapper .popular-destination-card .content-area .button-area {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: -20px;
}

.nearby-tdcp-resorts-section .nearby-tdcp-resorts-listing-inner-parent .nearby-tdcp-resorts-listing-wrapper .popular-destination-card .content-area .button-area button {
  padding: 6px 20px;
  background-color: #a14a2e;
  color: #fff;
  border: none;
  border-radius: 4px;
  display: block;
  margin: 0 auto;
}

.city-tour-popular-destination-section {
  width: 100%;
  height: auto;
  padding: 40px 20px;
}

.city-tour-popular-destination-section .city-tour-popular-dest-inner-parent {
  width: 100%;
  height: auto;
}

.city-tour-popular-destination-section .city-tour-popular-dest-inner-parent .city-tour-heading-whole-parent {
  width: 100%;
  height: auto;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.city-tour-popular-destination-section .city-tour-popular-dest-inner-parent .city-tour-heading-parent {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.city-tour-popular-destination-section .city-tour-popular-dest-inner-parent .sub-sec-heading-wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  margin: 0 auto;
}

.city-tour-popular-destination-section .city-tour-popular-dest-inner-parent .text-wrapper {
  font-size: 20px;
  color: #333;
  line-height: 30px;
  max-width: 750px;
  text-align: center;
  margin-top: 4.1vw;
}

.city-tour-popular-destination-section .city-tour-popular-dest-inner-parent .city-tour-carousel-area {
  width: 100%;
  height: auto;
}

.city-tour-popular-destination-section .city-tour-popular-dest-inner-parent .city-tour-carousel-area .news-events-slider-area {
  width: 100%;
  height: auto;
  margin-top: 20px;
  position: relative;
}

.city-tour-popular-destination-section .city-tour-popular-dest-inner-parent .city-tour-carousel-area .news-events-slider-area .looking-for-dotted-img {
  position: absolute;
  top: 0;
  left: -20px;
  width: 450px;
  height: 80%;
  z-index: 00;
}

.city-tour-popular-destination-section .city-tour-popular-dest-inner-parent .city-tour-carousel-area .news-events-slider-area .indicator-wrapper {
  display: none;
}

.city-tour-popular-destination-section .city-tour-popular-dest-inner-parent .city-tour-carousel-area .news-events-slider-area .owl-carousel {
  position: relative;
  margin-top: 10px;
}

.city-tour-popular-destination-section .city-tour-popular-dest-inner-parent .city-tour-carousel-area .news-events-slider-area .owl-nav {
  display: none;
}

.city-tour-popular-destination-section .city-tour-popular-dest-inner-parent .city-tour-carousel-area .news-events-slider-area .owl-next,
.city-tour-popular-destination-section .city-tour-popular-dest-inner-parent .city-tour-carousel-area .news-events-slider-area .owl-prev {
  background-color: white;
  border: none;
  font: inherit;
  width: 40px;
  border-radius: 50%;
  height: auto;
  color: #333;
  font-size: 25px;
  margin: 0px 10px;
  border: 1px solid gray;
}

.city-tour-popular-destination-section .city-tour-popular-dest-inner-parent .city-tour-carousel-area .news-events-slider-area .uk-card-primary {
  border-radius: 8px;
}

.city-tour-popular-destination-section .city-tour-popular-dest-inner-parent .city-tour-carousel-area .news-events-slider-area h3 {
  margin-top: 10px;
}

.city-tour-popular-destination-section .city-tour-popular-dest-inner-parent .city-tour-carousel-area .news-events-slider-area .uk-card > :last-child {
  margin-top: 0;
  margin-bottom: 10px;
}

.city-tour-popular-destination-section .city-tour-popular-dest-inner-parent .city-tour-carousel-area .news-events-slider-area p {
  margin-top: 30px;
  margin-bottom: 0;
}

.city-tour-popular-destination-section .city-tour-popular-dest-inner-parent .city-tour-carousel-area .news-events-slider-area .owl-theme .owl-nav [class*='owl-'] {
  background: #383838;
  width: 50px;
}

.city-tour-popular-destination-section .city-tour-popular-dest-inner-parent .city-tour-carousel-area .news-events-slider-area .owl-dots {
  margin-top: 30px;
}

.city-tour-popular-destination-section .city-tour-popular-dest-inner-parent .city-tour-carousel-area .news-events-slider-area .uk-card-title {
  padding-bottom: 20px;
}

.upcoming-events-section {
  width: 100%;
  height: auto;
  padding: 40px 20px;
}

.upcoming-events-section .upcoming-event-inner-parent {
  width: 100%;
  height: auto;
}

.upcoming-events-section .upcoming-event-inner-parent .upcoming-events-wrapper {
  width: 100%;
  height: auto;
  padding: 20px 0px;
  position: relative;
}

.upcoming-events-section .upcoming-event-inner-parent .upcoming-events-wrapper .looking-for-dotted-img {
  position: absolute;
  top: 0;
  left: -20px;
  height: 80%;
  z-index: 00;
}

.upcoming-events-section .upcoming-event-inner-parent .upcoming-events-wrapper .festival-event-card {
  width: auto;
  height: auto;
  min-height: 220px !important;
  background-color: whitesmoke;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  box-shadow: 0px 9px 37px -10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 9px 37px -10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 9px 37px -10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-top: 75px;
  border: 1px solid #a14a2e;
  margin-top: 20px;
}

.upcoming-events-section .upcoming-event-inner-parent .upcoming-events-wrapper .festival-event-card .festival-event-card-left-area {
  width: 35%;
  height: auto;
}

.upcoming-events-section .upcoming-event-inner-parent .upcoming-events-wrapper .festival-event-card .festival-event-card-left-area .img-wrapper {
  width: 80%;
  height: 80%;
  position: relative;
  margin: 0 auto;
}

.upcoming-events-section .upcoming-event-inner-parent .upcoming-events-wrapper .festival-event-card .festival-event-card-left-area .img-wrapper .img-area {
  width: 100%;
  height: 195px;
  border-radius: 8px;
  overflow: hidden;
  position: absolute;
  top: -40px;
}

.upcoming-events-section .upcoming-event-inner-parent .upcoming-events-wrapper .festival-event-card .festival-event-card-left-area .img-wrapper .img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.upcoming-events-section .upcoming-event-inner-parent .upcoming-events-wrapper .festival-event-card .festival-event-card-left-area .date-txt-wrapper {
  width: 100%;
  height: 20%;
  padding-left: 20px;
}

.upcoming-events-section .upcoming-event-inner-parent .upcoming-events-wrapper .festival-event-card .festival-event-card-left-area .date-txt-wrapper p {
  text-align: left;
  font-size: 14px;
}

.upcoming-events-section .upcoming-event-inner-parent .upcoming-events-wrapper .festival-event-card .festival-event-card-left-area .date-txt-wrapper p span {
  color: #a14a2e;
  font-weight: bold;
  font-size: 12px;
}

.upcoming-events-section .upcoming-event-inner-parent .upcoming-events-wrapper .festival-event-card .festival-event-card-right-area {
  width: 65%;
  height: auto;
  padding: 15px;
}

.upcoming-events-section .upcoming-event-inner-parent .upcoming-events-wrapper .festival-event-card .festival-event-card-right-area h3 {
  font-size: 22px;
}

.upcoming-events-section .upcoming-event-inner-parent .upcoming-events-wrapper .festival-event-card .festival-event-card-right-area .review-area {
  width: auto;
  height: auto;
}

.upcoming-events-section .upcoming-event-inner-parent .upcoming-events-wrapper .festival-event-card .festival-event-card-right-area .review-area .fa-star {
  color: #b5b5b5;
  font-size: 12px;
}

.upcoming-events-section .upcoming-event-inner-parent .upcoming-events-wrapper .festival-event-card .festival-event-card-right-area .review-area .star-active {
  color: #f2c94c;
}

.upcoming-events-section .upcoming-event-inner-parent .upcoming-events-wrapper .festival-event-card .festival-event-card-right-area p {
  font-size: 13px;
  line-height: 1.6 !important;
}

.upcoming-events-section .upcoming-event-inner-parent .upcoming-events-wrapper .festival-event-card .festival-event-card-right-area .celebrity-read-more {
  color: #a14a2e;
  text-decoration: underline;
  margin-top: 20px;
  display: block;
  margin: 0;
}

.upcoming-events-section .upcoming-event-inner-parent .upcoming-events-wrapper .festival-event-card .festival-event-card-right-area button {
  margin: 10px 0px;
  padding: 6px 25px;
  border: none;
  border-radius: 3px;
  background-color: #a14a2e;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 0;
}

.categories-listing-tabs-wrapper {
  width: 100%;
  height: auto;
  background-color: #a14a2e;
  padding: 10px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.categories-listing-tabs-wrapper .tabs-wrapper {
  width: auto;
  height: auto;
  cursor: pointer;
}

.categories-listing-tabs-wrapper .tabs-wrapper .content-div {
  width: auto;
  height: auto;
}

.categories-listing-tabs-wrapper .tabs-wrapper .content-div .circle-icon-area {
  width: 45px;
  height: 45px;
  background-color: white;
  border-radius: 50%;
  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;
  margin: 0 auto;
}

.categories-listing-tabs-wrapper .tabs-wrapper .content-div .circle-icon-area i {
  color: #fff;
  font-size: 30px;
  color: #cd5932;
}

.categories-listing-tabs-wrapper .tabs-wrapper .content-div p {
  color: #fff;
  text-align: center;
  font-size: 12px;
}

@-webkit-keyframes zoomin {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomin {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/*End of Zoom in Keyframes */
/* Zoom out Keyframes */
@-webkit-keyframes zoomout {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.67);
            transform: scale(0.67);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomout {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.67);
            transform: scale(0.67);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/*End of Zoom out Keyframes */
.tabs-area {
  background-color: rgba(255, 255, 255, 0.8) !important;
}

.home-map-section .map-section-parent .map-section-wrapper .map-category-tabs-wrapper .tab-serch-wrapper .tabs-area .nav .nav-item {
  width: 25% !important;
}

.home-map-section .map-section-parent .map-section-wrapper .map-wrapper .img-wrapper .all-cities .icon,
.home-map-section .map-section-parent .map-section-wrapper .map-wrapper .img-wrapper .all-cities .icon3 {
  width: 1.6vw !important;
}

.home-map-section .map-section-parent .map-section-wrapper .map-wrapper {
  width: 70% !important;
}

.tdcp-resort-map-listing-wrapper {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tdcp-resort-listing-area::-webkit-scrollbar {
  width: 5px;
  background-color: gray;
}

.tdcp-resort-listing-area::-webkit-scrollbar-thumb {
  width: 5px;
  background-color: lightgray;
  border-radius: 8px;
}

.tdcp-resort-listing-area {
  width: 30%;
  height: 500px;
  padding: 15px 8px;
  overflow-y: auto;
  border: 2px solid #cd5932;
  background-color: #f3f3f3;
  border-radius: 6px;
  margin-top: 50px;
}

.tdcp-resort-listing-area .north-resorts-listing-wrapper {
  width: 100%;
  height: auto;
}

.tdcp-resort-listing-area .hotel-carousel-card {
  width: auto;
  height: 170px;
  background-color: whitesmoke;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 3px solid #cd5932;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.tdcp-resort-listing-area .hotel-carousel-card .left-img-area {
  width: 40%;
  height: 100%;
}

.tdcp-resort-listing-area .hotel-carousel-card .left-img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.tdcp-resort-listing-area .hotel-carousel-card .right-content-area {
  width: 60%;
  height: 100%;
  padding: 10px;
}

.tdcp-resort-listing-area .hotel-carousel-card .right-content-area h3 {
  font-size: calc(10px + .5vw);
  font-weight: bold;
  font-size: 16px;
}

.tdcp-resort-listing-area .hotel-carousel-card .right-content-area p {
  font-size: 10px;
  color: #372c2c;
  margin: 0;
  font-weight: 500;
}

.tdcp-resort-listing-area .hotel-carousel-card .right-content-area .address-text {
  color: #cd5932;
  font-weight: 700;
  letter-spacing: 0px;
}

.hidetdcplisting {
  display: none !important;
}

.tdcp-resort-popular-card h3 {
  font-size: 24px !important;
}

@media screen and (max-width: 1376px) {
  .home-map-section .map-section-parent .map-section-wrapper .map-wrapper .img-wrapper .all-cities .icon,
  .home-map-section .map-section-parent .map-section-wrapper .map-wrapper .img-wrapper .all-cities .icon3 {
    width: 2vw !important;
  }
}

@media all and (max-width: 575px) and (min-width: 320px) {
  .home-map-section .map-section-parent .map-section-wrapper .map-wrapper {
    width: 100% !important;
  }
}

.topfixed-header {
  top: 87px !important;
  background-color: whitesmoke !important;
}

.top-destination-card-wrapper {
  width: 100%;
  height: 400px;
  background-color: wheat;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.top-destination-card-wrapper .col-lg-3 {
  padding: 0 5px !important;
}

.top-destination-card-wrapper .content-wrapper {
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.92)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.92) 100%);
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.top-destination-card-wrapper .content-wrapper .content-area {
  width: 100%;
  height: auto;
}

.top-destination-card-wrapper .content-wrapper h3 {
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
}

.top-destination-card-wrapper .content-wrapper p {
  text-align: center;
  color: #fff;
  font-size: 16px;
  margin: 3px 0 !important;
}

.top-destination-card-wrapper .content-wrapper .heart {
  display: block;
  margin: 0 auto;
  cursor: pointer;
  margin-top: 10px;
}

.top-destination-card-wrapper .content-wrapper .heart-path {
  fill: #cd5932;
}

.city-tour-heading-whole-parent {
  width: 100%;
  height: auto;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.city-tour-heading-parent {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.sub-sec-heading-wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  margin: 0 auto;
}

.text-wrapper {
  font-size: 20px;
  color: #333;
  line-height: 30px;
  max-width: 750px;
  text-align: center;
  margin-top: 4.1vw;
}

.text-wrapper {
  font-size: 20px;
  color: #333;
  line-height: 30px;
  max-width: 750px;
  text-align: center;
  margin-top: 4.1vw;
}

.home-map-section .map-section-parent .map-section-wrapper .map-category-tabs-wrapper .tab-serch-wrapper .tabs-area .nav .btn-map-img-area {
  width: 40px;
  height: 40px;
  padding: 3px;
}

.home-map-section .map-section-parent .map-section-wrapper .map-category-tabs-wrapper .tab-serch-wrapper .tabs-area .nav .nav-item .nav-link {
  padding: 0;
}

.home-map-section .map-section-parent {
  margin-top: 30px;
}

.home-map-section .map-section-parent .map-section-wrapper .map-category-tabs-wrapper .tab-serch-wrapper .tabs-area {
  -webkit-box-shadow: 0px 9px 37px -10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 9px 37px -10px rgba(0, 0, 0, 0.25);
}

.home-section2 {
  margin-top: 0 !important;
}

.owl-dots {
  display: none !important;
}
/*# sourceMappingURL=tdcp-resorts.css.map */