@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;
  }
}

.clear-float {
  display: block;
  clear: both;
}

.star-active {
  color: #f2c94c !important;
}

.fa-star {
  color: lightgray;
}

.subheading {
  font-size: 15px;
  text-transform: capitalize;
}

@-webkit-keyframes animatedBackground {
  from {
    background-position: 0 0;
  }
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 50% 0;
  }
  100% {
    background-position: 100% 0;
  }
  to {
    background-position: 100% 0;
  }
}

@keyframes animatedBackground {
  from {
    background-position: 0 0;
  }
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 50% 0;
  }
  100% {
    background-position: 100% 0;
  }
  to {
    background-position: 100% 0;
  }
}

.destination-page-wrapper {
  width: 100%;
  height: auto;
}

.destination-page-wrapper #mydiv {
  position: fixed;
  z-index: 99999;
  text-align: center;
}

.destination-page-wrapper #mydivheader {
  cursor: move;
  z-index: 99999;
  background-color: transparent;
  color: #fff;
}

.destination-page-wrapper .virtual-tour-section {
  width: 100%;
  height: auto;
  background-color: antiquewhite;
}

.destination-page-wrapper .virtual-tour-section .virtual-tour-inner-parent {
  width: 100%;
  height: 90vh;
  background-color: whitesmoke;
  position: relative;
}

.destination-page-wrapper .virtual-tour-section .virtual-tour-inner-parent iframe {
  width: 100%;
  height: 100%;
}

.destination-page-wrapper .virtual-tour-section .virtual-tour-inner-parent #panorama {
  width: 100%;
  height: 100%;
}

.destination-page-wrapper .virtual-tour-section .virtual-tour-inner-parent #controls {
  position: absolute;
  bottom: 0;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding-bottom: 3px;
}

.destination-page-wrapper .virtual-tour-section .virtual-tour-inner-parent .ctrl {
  padding: 8px 5px;
  width: 30px;
  text-align: center;
  background: rgba(200, 200, 200, 0.8);
  display: inline-block;
  cursor: pointer;
}

.destination-page-wrapper .virtual-tour-section .virtual-tour-inner-parent .ctrl:hover {
  background: #c8c8c8;
}

.destination-page-wrapper .virtual-tour-section .virtual-tour-inner-parent .down-arrow {
  width: 50px;
  position: absolute;
  bottom: 8px;
  right: 30px;
  z-index: 100;
}

.destination-page-wrapper .virtual-tour-section .virtual-area-gallery-wrapper {
  width: 100%;
  height: 130px;
  background-color: white;
}

.destination-page-wrapper .virtual-tour-section .virtual-area-gallery-wrapper .gallery-items-container {
  max-width: 800px;
  margin: 0 auto;
  height: 100%;
  background-color: whitesmoke;
  border: 1px solid lightgray;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
}

.destination-page-wrapper .virtual-tour-section .virtual-area-gallery-wrapper .gallery-items-container .gallery-item {
  width: 165px;
  height: 100%;
  cursor: pointer;
}

.destination-page-wrapper .virtual-tour-section .virtual-area-gallery-wrapper .gallery-items-container .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.weather-time-section {
  width: 100%;
  height: auto;
  background-color: #fff;
  padding: 20px 20px;
}

.weather-time-section .weather-time-inner-parent {
  width: 100%;
  height: auto;
}

.weather-time-section .weather-time-inner-parent .time-weather-col-wrapper {
  width: 100%;
  height: 210px;
  padding: 15px;
}

.weather-time-section .weather-time-inner-parent .time-weather-col-wrapper .direction-btn {
  width: 90%;
  height: 60px;
  background-color: #cd5932;
  color: #fff;
  padding: 2px 25px;
  border: none;
  border-radius: 15px;
  font-size: 20px;
  font-weight: bold;
}

.weather-time-section .weather-time-inner-parent .time-weather-col-wrapper .direction-btn i {
  color: #fff;
}

.weather-time-section .weather-time-inner-parent .time-weather-col-wrapper .fa-angle-right {
  font-weight: bold;
  color: #cd5932;
}

.weather-time-section .weather-time-inner-parent .time-weather-col-wrapper .destination-name {
  color: #cd5932;
}

.weather-time-section .weather-time-inner-parent .time-weather-col-wrapper h1 {
  text-align: left;
  margin-top: 20px;
  font-weight: bold;
}

.weather-time-section .weather-time-inner-parent .time-weather-col-wrapper .rating-area-parent {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}

.weather-time-section .weather-time-inner-parent .time-weather-col-wrapper .rating-area-parent .review-area {
  width: auto;
  padding: 0px 10px;
}

.weather-time-section .weather-time-inner-parent .time-weather-col-wrapper .rating-area-parent .text-area {
  width: auto;
  height: 100%;
  padding: 0px 10px;
}

.weather-time-section .weather-time-inner-parent .time-weather-col-wrapper .rating-area-parent .text-area .fa-circle {
  font-size: 7px;
  margin: 6px 10px;
  color: #a14a2e;
}

.weather-time-section .weather-time-inner-parent .time-weather-col-wrapper .weather-area {
  width: 130px;
  height: 100%;
  background-color: #DAEFFF;
  border-radius: 10px;
  overflow: hidden;
}

.weather-time-section .weather-time-inner-parent .time-weather-col-wrapper .weather-area .weather-inside-area1 {
  width: 100%;
  height: 25%;
  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;
}

.weather-time-section .weather-time-inner-parent .time-weather-col-wrapper .weather-area .weather-inside-area1 h3 {
  color: #cd5932;
  font-weight: bold;
  font-size: 22px;
}

.weather-time-section .weather-time-inner-parent .time-weather-col-wrapper .weather-area .weather-inside-area2 {
  width: 100%;
  height: 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;
}

.weather-time-section .weather-time-inner-parent .time-weather-col-wrapper .weather-area .weather-inside-area2 img {
  width: 80%;
}

.weather-time-section .weather-time-inner-parent .time-weather-col-wrapper .weather-area .weather-inside-area3 {
  width: 100%;
  height: 25%;
  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;
}

.weather-time-section .weather-time-inner-parent .time-weather-col-wrapper .weather-area .weather-inside-area3 h3 {
  color: #cd5932;
  font-weight: bold;
  font-size: 22px;
}

.weather-time-section .weather-time-inner-parent .time-weather-col-wrapper .clock-area-parent {
  width: 110px;
  height: 100%;
  background-color: #fff;
  border-radius: 70px;
  text-align: center;
  border: 2px solid #a14a2e;
}

.weather-time-section .weather-time-inner-parent .time-weather-col-wrapper .clock-area-parent h4 {
  color: #cd5932;
  font-size: 24px;
}

.weather-time-section .weather-time-inner-parent .time-weather-col-wrapper .clock-area-parent p {
  color: #cd5932;
  font-size: 14px;
}

.weather-time-section .weather-time-inner-parent .time-weather-col-wrapper .clock-area-parent #clock {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  margin: 0px auto;
  margin-bottom: 10px;
  position: relative;
  background-color: #e7e7e7;
  background-image: url("/web/assets/img/clock.png");
  background-size: 100%;
  background-repeat: no-repeat;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.weather-time-section .weather-time-inner-parent .time-weather-col-wrapper .clock-area-parent #clock .hand {
  width: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -1px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
}

.weather-time-section .weather-time-inner-parent .time-weather-col-wrapper .clock-area-parent #clock #secondHand {
  height: 50px;
  background-color: #999;
  margin-top: -50px;
  z-index: 3;
}

.weather-time-section .weather-time-inner-parent .time-weather-col-wrapper .clock-area-parent #clock #minuteHand {
  height: 50px;
  background-color: #cd5932;
  margin-top: -50px;
  z-index: 2;
}

.weather-time-section .weather-time-inner-parent .time-weather-col-wrapper .clock-area-parent #clock #hourHand {
  height: 40px;
  margin-top: -40px;
  background-color: #cd5932;
  z-index: 1;
}

.weather-time-section .weather-time-inner-parent .time-weather-col-wrapper .clock-area-parent #clock:after {
  content: ' ';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #a14a2e;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -5px;
  margin-top: -5px;
  z-index: 5;
}

.destination-detail-nav-section {
  width: 100%;
  height: auto;
  background-color: #000;
  padding: 10px 10px;
}

.destination-detail-nav-section .destination-nav-parent {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden !important;
  border-top: none;
  white-space: nowrap;
}

.destination-detail-nav-section .destination-nav-parent .nav-list {
  padding: 0;
  list-style: none;
  margin: 0;
}

.destination-detail-nav-section .destination-nav-parent .nav-list li {
  display: inline-block;
  padding: 0px 15px;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.container {
  max-width: 70rem;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: white;
}

.utility-nav__list,
.main-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

section {
  min-height: auto;
  margin: 0;
  float: left;
  width: 100%;
}

h2 {
  margin: 0;
}

.header {
  display: block;
  width: 100%;
}

.blacknavfixed {
  position: fixed;
  top: 87px;
  left: 0;
  z-index: 100;
}

.main-nav {
  display: block;
  width: 100%;
  background: #000;
  height: 3.5rem;
  color: #fff;
}

.main-nav .container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden !important;
  border-top: none;
  white-space: nowrap;
  height: auto;
}

.main-nav .container .main-nav__item--active .main-nav__link {
  color: whitesmoke !important;
}

.main-nav__list {
  height: 3.5rem;
  display: inline-block;
  position: relative;
}

.main-nav__item {
  display: inline-block;
  height: 3.5rem;
  margin-right: 2rem;
}

.main-nav__link {
  color: #fff;
  font-weight: 500;
  height: 3.5rem;
  padding: 1rem 5px;
  float: left;
  font-size: 19px;
}

.main-nav__active {
  -webkit-transition: width .22s ease-in-out, left .22s ease-in-out;
  transition: width .22s ease-in-out, left .22s ease-in-out;
  background: #fff;
  height: 3px;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 3px;
}

.utility-nav {
  display: block;
  width: 100%;
  height: 2rem;
  background: #1c1c1c;
  background: -webkit-gradient(linear, left bottom, left top, from(#1c1c1c), color-stop(45%, #252525), color-stop(55%, #252525), to(#1c1c1c));
  background: linear-gradient(to top, #1c1c1c 0%, #252525 45%, #252525 55%, #1c1c1c 100%);
}

.utility-nav__list {
  display: inline-block;
}

.utility-nav__item {
  display: inline-block;
  height: 13px;
  margin-top: 0.5rem;
  margin-left: 1rem;
  border-left: 2px solid #fff;
  padding-left: 1rem;
}

.utility-nav__item:first-child {
  margin-left: 0;
  border-left: 0;
  padding-left: 0;
}

.utility-nav__link {
  font-weight: 600;
  display: inline-block;
  height: 0.5rem;
  line-height: 1;
  font-size: rem(12px);
}

.description-section {
  width: 100%;
  height: auto;
  padding: 40px 20px;
}

.description-section .description-details-area {
  width: 100%;
  height: auto;
  padding: 15px;
}

.description-section .description-details-area p {
  padding-bottom: 20px;
}

.description-section .description-details-area .see-more-btn {
  padding: 3px 15px;
  border: none;
  border: 1px solid #cd5932;
  color: #333;
  border-radius: 10px;
  background-color: whitesmoke;
  font-size: 14px;
}

.weather-forecast-section {
  width: 100%;
  height: auto;
  padding: 10px 20px;
}

.weather-forecast-section .weather-forecast-inner-parent {
  width: 100%;
  height: 250px;
  margin-top: 40px;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .today-weather-area {
  width: 27%;
  height: 100%;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .today-weather-area .today-weather-curvy-parent {
  width: 100%;
  height: 100%;
  background-color: whitesmoke;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 15px;
  border: 1px solid lightgray;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .today-weather-area .today-weather-curvy-parent .txt-area {
  width: 40%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .today-weather-area .today-weather-curvy-parent .txt-area .txt-wrapper {
  width: 100%;
  height: auto;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .today-weather-area .today-weather-curvy-parent .txt-area .txt-wrapper .today-heading {
  font-size: 28px;
  color: #a14a2e;
  font-weight: bold;
  text-align: left;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .today-weather-area .today-weather-curvy-parent .txt-area .txt-wrapper p {
  text-align: left;
  font-size: 18px;
  font-weight: 600;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .today-weather-area .today-weather-curvy-parent .card-area {
  width: 45%;
  height: 100%;
  background-color: whitesmoke;
  border-radius: 8px;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .today-weather-area .today-weather-curvy-parent .card-area .weather-area {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .today-weather-area .today-weather-curvy-parent .card-area .weather-area .weather-inside-area1 {
  width: 100%;
  height: 25%;
  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;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .today-weather-area .today-weather-curvy-parent .card-area .weather-area .weather-inside-area1 h3 {
  color: #cd5932;
  font-weight: bold;
  font-size: 22px;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .today-weather-area .today-weather-curvy-parent .card-area .weather-area .weather-inside-area2 {
  width: 100%;
  height: 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;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .today-weather-area .today-weather-curvy-parent .card-area .weather-area .weather-inside-area2 img {
  width: 80%;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .today-weather-area .today-weather-curvy-parent .card-area .weather-area .weather-inside-area3 {
  width: 100%;
  height: 25%;
  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;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .today-weather-area .today-weather-curvy-parent .card-area .weather-area .weather-inside-area3 h3 {
  color: #cd5932;
  font-weight: bold;
  font-size: 22px;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .other-days-weather-area {
  width: 73%;
  height: 100%;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .other-days-weather-area .other-days-slide-card-wrapper {
  width: 100%;
  height: auto;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .other-days-weather-area .other-days-slide-card-wrapper .dbranding-tabs-wrapper {
  width: 100%;
  height: auto;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .other-days-weather-area .other-days-slide-card-wrapper .dbranding-tabs-wrapper .nav-tabs {
  border-bottom: 0px solid #dee2e6;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .other-days-weather-area .other-days-slide-card-wrapper .dbranding-tabs-wrapper .nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  background-color: #fff;
  padding: 0;
  display: inline-block;
  border-radius: 4px;
  margin: 0px 5px;
  border-radius: 18px;
  border: 2px solid #cd5932;
  box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.32);
  margin: 0px 15px;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .other-days-weather-area .other-days-slide-card-wrapper .dbranding-tabs-wrapper .nav-tabs .nav-link .other-day-card {
  width: 90px;
  height: 150px;
  overflow: hidden;
  cursor: auto;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .other-days-weather-area .other-days-slide-card-wrapper .dbranding-tabs-wrapper .nav-tabs .nav-link .other-day-card .weather-inside-area1 {
  width: 100%;
  height: 25%;
  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;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .other-days-weather-area .other-days-slide-card-wrapper .dbranding-tabs-wrapper .nav-tabs .nav-link .other-day-card .weather-inside-area1 h3 {
  color: #cd5932;
  font-weight: bold;
  font-size: 18px;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .other-days-weather-area .other-days-slide-card-wrapper .dbranding-tabs-wrapper .nav-tabs .nav-link .other-day-card .weather-inside-area2 {
  width: 100%;
  height: 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;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .other-days-weather-area .other-days-slide-card-wrapper .dbranding-tabs-wrapper .nav-tabs .nav-link .other-day-card .weather-inside-area2 img {
  width: 80%;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .other-days-weather-area .other-days-slide-card-wrapper .dbranding-tabs-wrapper .nav-tabs .nav-link .other-day-card .weather-inside-area3 {
  width: 100%;
  height: 25%;
  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;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .other-days-weather-area .other-days-slide-card-wrapper .dbranding-tabs-wrapper .nav-tabs .nav-link .other-day-card .weather-inside-area3 h3 {
  color: #cd5932;
  font-weight: bold;
  font-size: 18px;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .other-days-weather-area .other-days-slide-card-wrapper .dbranding-tabs-wrapper .tabs-popup-wrapper {
  width: 100%;
  height: 100%;
  padding: 20px;
  margin: 20px 0px;
  box-shadow: -1px 10px 24px 0px rgba(0, 0, 0, 0.33);
  -webkit-box-shadow: -1px 10px 24px 0px rgba(0, 0, 0, 0.33);
  -moz-box-shadow: -1px 10px 24px 0px rgba(0, 0, 0, 0.33);
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .other-days-weather-area .other-days-slide-card-wrapper .dbranding-tabs-wrapper .tabs-popup-wrapper p {
  text-align: left;
  line-height: 1.6;
  font-size: calc(9px + .5vw);
  margin: 30px 0px 20px 0px;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .other-days-weather-area .other-days-slide-card-wrapper .dbranding-tabs-wrapper .tabs-popup-wrapper button {
  padding: 4px 22px;
  background-color: #333;
  color: #fff;
  border: 1px solid #fff;
  font-weight: 300;
  border-radius: 3px;
  font-size: calc(10px + .5vw);
  margin: 20px 0px;
}

.weather-forecast-section .weather-forecast-inner-parent .weather-flex-parent .other-days-weather-area .other-days-slide-card-wrapper .dbranding-tabs-wrapper .tabs-list {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border-top: none;
  white-space: nowrap;
  height: auto;
}

.gallery-section {
  width: 100%;
  height: auto;
  padding: 40px 20px;
}

.gallery-section .gallery-inner-parent {
  width: 100%;
  height: auto;
}

.gallery-section .gallery-inner-parent .gallery-main-area {
  width: 100%;
  height: auto;
  margin-top: 40px;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-tabs-area {
  width: 100%;
  height: auto;
  background-color: white;
  padding: 10px 0px;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-tabs-area .nav-pills .nav-link.active {
  color: #cd5932;
  background-color: transparent;
  border-bottom: 2px solid #cd5932;
  border-radius: 0px;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-tabs-area .nav-pills .nav-link {
  color: #000;
  background-color: transparent;
  border-radius: 0px;
  font-weight: bold;
  font-size: 18px;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper {
  width: 100%;
  height: auto;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper {
  width: 100%;
  height: 400px;
  background-color: white;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .main-img-area {
  width: 40%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 5px 5px 15px 1px rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 15px 1px rgba(0, 0, 0, 0.3);
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .main-img-area .tab-pane {
  height: 100%;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .main-img-area .img-wrapper {
  width: 100%;
  height: 100%;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .main-img-area .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .main-img-area .img-wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .all-images-area {
  width: 60%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .all-images-area .tabs-list::-webkit-scrollbar {
  height: 10px;
  background-color: whitesmoke;
  border-radius: 10px;
  cursor: pointer;
  scroll-behavior: smooth;
  margin-top: 10px;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .all-images-area .tabs-list::-webkit-scrollbar-thumb {
  height: 7px;
  background-color: lightgray;
  border-radius: 10px;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .all-images-area .all-images-wrapper {
  width: 100%;
  height: 94%;
  padding: 10px 15px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden !important;
  border-top: none;
  white-space: nowrap;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .all-images-area .all-images-wrapper ul,
.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .all-images-area .all-images-wrapper li,
.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .all-images-area .all-images-wrapper button {
  height: 100%;
  padding: 0;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .all-images-area .all-images-wrapper ul li {
  margin: 0px 10px;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .all-images-area .all-images-wrapper .all-img-1 {
  width: 160px;
  height: 100%;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .all-images-area .all-images-wrapper .all-img-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .all-images-area .all-images-wrapper .dbranding-tabs-wrapper {
  width: 100%;
  height: 100%;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .all-images-area .all-images-wrapper .dbranding-tabs-wrapper .nav-tabs {
  border-bottom: 0px solid #dee2e6;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .all-images-area .all-images-wrapper .dbranding-tabs-wrapper .nav-tabs .nav-link:hover {
  -webkit-box-shadow: 5px 5px 15px 1px rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 15px 1px rgba(0, 0, 0, 0.3);
  -webkit-transition: .5s;
  transition: .5s;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .all-images-area .all-images-wrapper .dbranding-tabs-wrapper .nav-tabs .nav-link {
  height: 100%;
  border: 1px solid transparent;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  background-color: #fff;
  padding: 0;
  display: inline-block;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 5px 5px 15px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 15px 1px rgba(0, 0, 0, 0.1);
  -webkit-transition: .5s;
  transition: .5s;
  border: none;
  margin: 0px 7px;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .all-images-area .all-images-wrapper .dbranding-tabs-wrapper .nav-tabs .nav-link .other-day-card {
  width: 200px;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .all-images-area .all-images-wrapper .dbranding-tabs-wrapper .nav-tabs .nav-link .other-day-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .all-images-area .all-images-wrapper .dbranding-tabs-wrapper .nav-tabs .nav-link .other-day-card .video-thumbnail-layer {
  opacity: 0.50 !important;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .all-images-area .all-images-wrapper .dbranding-tabs-wrapper .nav-tabs .nav-link .other-day-card .thumbnail-layer {
  background-color: #000;
  opacity: 0.30;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  width: 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;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .all-images-area .all-images-wrapper .dbranding-tabs-wrapper .nav-tabs .nav-link .other-day-card .thumbnail-layer i {
  color: #fff;
  font-size: calc(10px + 4vw);
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .all-images-area .all-images-wrapper .dbranding-tabs-wrapper .tabs-popup-wrapper {
  width: 100%;
  height: 100%;
  padding: 20px;
  margin: 20px 0px;
  box-shadow: -1px 10px 24px 0px rgba(0, 0, 0, 0.33);
  -webkit-box-shadow: -1px 10px 24px 0px rgba(0, 0, 0, 0.33);
  -moz-box-shadow: -1px 10px 24px 0px rgba(0, 0, 0, 0.33);
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .all-images-area .all-images-wrapper .dbranding-tabs-wrapper .tabs-popup-wrapper p {
  text-align: left;
  line-height: 1.6;
  font-size: calc(9px + .5vw);
  margin: 30px 0px 20px 0px;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .all-images-area .all-images-wrapper .dbranding-tabs-wrapper .tabs-popup-wrapper button {
  padding: 4px 22px;
  background-color: #333;
  color: #fff;
  border: 1px solid #fff;
  font-weight: 300;
  border-radius: 3px;
  font-size: calc(10px + .5vw);
  margin: 20px 0px;
}

.gallery-section .gallery-inner-parent .gallery-main-area .gallery-images-videos-wrapper .img-gallery-wrapper .all-images-area .all-images-wrapper .dbranding-tabs-wrapper .tabs-list {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border-top: none;
  white-space: nowrap;
  height: 100%;
  padding-bottom: 5px;
}

.recent-checkin-section {
  width: 100%;
  height: auto;
  padding: 40px 20px;
}

.recent-checkin-section .recent-check-in-parent-area {
  width: 100%;
  height: auto;
}

.recent-checkin-section .recent-check-in-parent-area .recent-checkin-wrapper {
  width: 100%;
  height: auto;
  margin-top: 40px;
}

.recent-checkin-section .recent-check-in-parent-area .recent-checkin-wrapper .see-more-btn-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;
  margin-top: 20px;
}

.recent-checkin-section .recent-check-in-parent-area .recent-checkin-wrapper .see-more-btn-area .see-more-btn {
  background-color: #ebf1f6;
  padding: 5px 15px;
  border: none;
  border: 1px solid #cd5932;
  color: #333;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
}

.recent-checkin-section .recent-check-in-parent-area .recent-checkin-wrapper .checkin-cards-main-wrapper {
  width: 100%;
  height: auto;
  padding: 20px 0px;
}

.recent-checkin-section .recent-check-in-parent-area .recent-checkin-wrapper .checkin-cards-main-wrapper .custom-row {
  height: auto;
  padding: 0px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.recent-checkin-section .recent-check-in-parent-area .recent-checkin-wrapper .checkin-cards-main-wrapper .custom-row .card-wrapper {
  width: 48%;
  height: auto;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  background-color: whitesmoke;
  border: 2px solid #93b4ce;
  margin-top: 20px;
  padding: 10px 0px;
  box-shadow: -2px 3px 5px -1px rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: -2px 3px 5px -1px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: -2px 3px 5px -1px rgba(0, 0, 0, 0.7);
  margin: auto 11px;
  margin-top: 20px;
}

.recent-checkin-section .recent-check-in-parent-area .recent-checkin-wrapper .checkin-cards-main-wrapper .custom-row .card-wrapper .img-area {
  width: 25%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.recent-checkin-section .recent-check-in-parent-area .recent-checkin-wrapper .checkin-cards-main-wrapper .custom-row .card-wrapper .img-area .circle-img-area {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  margin-top: 10px;
  border: 2px solid #cd5932;
  background-color: white;
  overflow: hidden;
}

.recent-checkin-section .recent-check-in-parent-area .recent-checkin-wrapper .checkin-cards-main-wrapper .custom-row .card-wrapper .img-area .circle-img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recent-checkin-section .recent-check-in-parent-area .recent-checkin-wrapper .checkin-cards-main-wrapper .custom-row .card-wrapper .card-content-area {
  width: 75%;
  height: 100%;
  padding: 10px;
}

.recent-checkin-section .recent-check-in-parent-area .recent-checkin-wrapper .checkin-cards-main-wrapper .custom-row .card-wrapper .card-content-area .highlighted-txt {
  color: #cd5932;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 20px;
}

.recent-checkin-section .recent-check-in-parent-area .recent-checkin-wrapper .checkin-cards-main-wrapper .custom-row .card-wrapper .card-content-area .date-and-time {
  font-size: 13px;
}

.recent-checkin-section .recent-check-in-parent-area .recent-checkin-wrapper .checkin-cards-main-wrapper .custom-row .card-wrapper .card-content-area .date-and-time .time {
  margin-left: 30px;
}

.recent-checkin-section .recent-check-in-parent-area .recent-checkin-wrapper .checkin-cards-main-wrapper .custom-row .card-wrapper:hover {
  background-color: #cd5932;
  -webkit-transition: .5s;
  transition: .5s;
  color: #fff !important;
}

.recent-checkin-section .recent-check-in-parent-area .recent-checkin-wrapper .checkin-cards-main-wrapper .custom-row .card-wrapper:hover .highlighted-txt {
  color: #fff !important;
  -webkit-transition: .5s;
  transition: .5s;
}

.popular-buying-section {
  width: 100%;
  height: auto;
  padding: 40px 20px;
  padding-bottom: 60px;
}

.popular-buying-section .popular-buying-parent {
  width: 100%;
  height: auto;
}

.popular-buying-section .popular-buying-parent .popular-things-slider-wrapper {
  width: 100%;
  height: auto;
  margin-top: 40px;
}

.popular-buying-section .popular-buying-parent .popular-things-slider-wrapper .tabs-area {
  width: 100%;
  height: auto;
  background-color: white;
  padding: 15px;
}

.popular-buying-section .popular-buying-parent .popular-things-slider-wrapper .tabs-area .nav-pills .nav-link.active {
  color: #cd5932;
  background-color: transparent;
  border-bottom: 2px solid #cd5932;
  border-radius: 0px;
}

.popular-buying-section .popular-buying-parent .popular-things-slider-wrapper .tabs-area .nav-pills .nav-link {
  color: #000;
  background-color: transparent;
  border-radius: 0px;
  font-weight: bold;
  font-size: 18px;
}

.popular-buying-section .popular-buying-parent .popular-things-slider-wrapper .tabs-slider-area {
  width: 100%;
  height: 450px;
}

.popular-buying-section .popular-buying-parent .popular-things-slider-wrapper .tabs-slider-area .tab-content,
.popular-buying-section .popular-buying-parent .popular-things-slider-wrapper .tabs-slider-area .tab-pane {
  height: 100%;
}

.popular-buying-section .popular-buying-parent .popular-things-slider-wrapper .tabs-slider-area .slider-wrapper {
  width: 100%;
  height: 100%;
}

.popular-buying-section .popular-buying-parent .popular-things-slider-wrapper .tabs-slider-area .slider-wrapper .carousel-item {
  -webkit-transition: .5s;
  transition: .5s;
  height: 100%;
}

.popular-buying-section .popular-buying-parent .popular-things-slider-wrapper .tabs-slider-area .slider-wrapper .carousel-indicators {
  bottom: -35px !important;
}

.popular-buying-section .popular-buying-parent .popular-things-slider-wrapper .tabs-slider-area .slider-wrapper .carousel-indicators [data-bs-target] {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: #cd5932;
  margin: 0px 10px;
  border: 1px solid #a14a2e;
}

.popular-buying-section .popular-buying-parent .popular-things-slider-wrapper .tabs-slider-area .slider-wrapper .slider1-area {
  width: 100%;
  height: 100%;
  padding: 20px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.popular-buying-section .popular-buying-parent .popular-things-slider-wrapper .tabs-slider-area .slider-wrapper .slider1-area .slide1-left-area {
  width: 50%;
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #cd5932;
  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;
}

.popular-buying-section .popular-buying-parent .popular-things-slider-wrapper .tabs-slider-area .slider-wrapper .slider1-area .slide1-left-area img {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
}

.popular-buying-section .popular-buying-parent .popular-things-slider-wrapper .tabs-slider-area .slider-wrapper .slider1-area .slider1-right-area {
  width: 50%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popular-buying-section .popular-buying-parent .popular-things-slider-wrapper .tabs-slider-area .slider-wrapper .slider1-area .slider1-right-area .right-content-area {
  width: 95%;
  height: auto;
  background-color: #cd5932;
  margin-left: -60px;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 30px 40px 30px 60px;
  color: #fff;
  overflow: hidden;
  border: 2px solid #dfdfdf;
}

.popular-buying-section .popular-buying-parent .popular-things-slider-wrapper .tabs-slider-area .slider-wrapper .slider1-area .slider1-right-area .right-content-area p {
  font-size: 14px;
  padding-top: 20px;
}

.popular-buying-section .popular-buying-parent .popular-things-slider-wrapper .tabs-slider-area .slider-wrapper .slider1-area .slider1-right-area .right-content-area button {
  background-color: #cd5932;
  color: #fff;
  border-radius: 8px;
  border: 1px solid #fff;
  padding: 5px 10px;
  margin-top: 15px;
  font-size: 14px;
}

.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;
}

.nearby-section {
  width: 100%;
  height: auto;
  padding: 40px 20px;
}

.nearby-section .nearby-main-parent {
  width: 100%;
  height: auto;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper {
  width: 100%;
  height: auto;
  margin-top: 40px;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-area {
  width: auto;
  height: auto;
  padding: 10px 0px;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-area .nav-pills .nav-link {
  padding: 7px 15px;
  border: 1px solid #cd5932;
  border-radius: 6px;
  margin: 0px 10px;
  background-color: whitesmoke;
  color: #cd5932;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-area .nav-pills .nav-link.active {
  background-color: #a14a2e;
  color: #fff;
  box-shadow: 2px 6px 11px 1px rgba(0, 0, 0, 0.24);
  -webkit-box-shadow: 2px 6px 11px 1px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 2px 6px 11px 1px rgba(0, 0, 0, 0.24);
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area {
  width: 100%;
  height: auto;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .location-area-main-wrapper {
  width: 100%;
  height: 100%;
  margin-top: 20px;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .location-area-main-wrapper .location-hotel-area {
  width: 100%;
  height: 190px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.5vw;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .location-area-main-wrapper .location-hotel-area .hotel-tab-area {
  width: 16%;
  height: 100%;
  background-color: #cd5932;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 3px solid #a14a2e;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .location-area-main-wrapper .location-hotel-area .hotel-tab-area .content-div {
  width: auto;
  height: auto;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .location-area-main-wrapper .location-hotel-area .hotel-tab-area .content-div .circle-icon-area {
  width: 65px;
  height: 65px;
  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;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .location-area-main-wrapper .location-hotel-area .hotel-tab-area .content-div .circle-icon-area i {
  color: #fff;
  font-size: 30px;
  color: #cd5932;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .location-area-main-wrapper .location-hotel-area .hotel-tab-area .content-div p {
  color: #fff;
  text-align: center;
  padding-top: 10px;
  font-weight: bold;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .location-area-main-wrapper .location-hotel-area .hotel-carousel-wrapper {
  width: 84%;
  height: 100%;
  padding-left: 5px;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .location-area-main-wrapper .location-hotel-area .hotel-carousel-wrapper .hotel-carousel-card {
  width: auto;
  height: 190px;
  background-color: whitesmoke;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 3px solid #cd5932;
  border-radius: 10px;
  overflow: hidden;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .location-area-main-wrapper .location-hotel-area .hotel-carousel-wrapper .hotel-carousel-card .left-img-area {
  width: 40%;
  height: 100%;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .location-area-main-wrapper .location-hotel-area .hotel-carousel-wrapper .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;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .location-area-main-wrapper .location-hotel-area .hotel-carousel-wrapper .hotel-carousel-card .right-content-area {
  width: 60%;
  height: 100%;
  padding: 10px;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .location-area-main-wrapper .location-hotel-area .hotel-carousel-wrapper .hotel-carousel-card .right-content-area h3 {
  font-size: calc(10px + .5vw);
  font-weight: bold;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .location-area-main-wrapper .location-hotel-area .hotel-carousel-wrapper .hotel-carousel-card .right-content-area p {
  font-size: 12px;
  color: #372c2c;
  margin: 0;
  font-weight: 500;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .location-area-main-wrapper .location-hotel-area .hotel-carousel-wrapper .hotel-carousel-card .right-content-area .review-area {
  margin-top: 10px;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .location-area-main-wrapper .location-hotel-area .hotel-carousel-wrapper .hotel-carousel-card .right-content-area .address-text {
  color: #cd5932;
  margin-top: 10px;
  font-weight: 700;
  letter-spacing: 0px;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .location-area-main-wrapper .location-hotel-area .hotel-carousel-wrapper .hotel-carousel-card .right-content-area .great-place {
  margin-top: 10px;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .map-detail-area {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 650px;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .map-detail-area .map-listing-area {
  width: 34%;
  height: 100%;
  border: 4px solid #cd5932;
  overflow: hidden;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .map-detail-area .map-listing-area .map-tab-detail-left-listing-wrapper {
  width: 100%;
  height: 100%;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .map-detail-area .map-listing-area .map-tab-detail-left-listing-wrapper .transport-map-detail-list-area {
  width: 100%;
  height: 100%;
  background-color: #f3f3f3;
  padding: 8px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-transition: .5s !important;
  transition: .5s !important;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .map-detail-area .map-listing-area .map-tab-detail-left-listing-wrapper .transport-map-detail-list-area .hotel-carousel-card {
  width: 100%;
  height: auto;
  background-color: whitesmoke;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 3px solid #cd5932;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .map-detail-area .map-listing-area .map-tab-detail-left-listing-wrapper .transport-map-detail-list-area .hotel-carousel-card .left-img-area {
  width: 30%;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .map-detail-area .map-listing-area .map-tab-detail-left-listing-wrapper .transport-map-detail-list-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;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .map-detail-area .map-listing-area .map-tab-detail-left-listing-wrapper .transport-map-detail-list-area .hotel-carousel-card .right-content-area {
  width: 66%;
  height: 100%;
  padding: 10px;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .map-detail-area .map-listing-area .map-tab-detail-left-listing-wrapper .transport-map-detail-list-area .hotel-carousel-card .right-content-area h3 {
  font-size: calc(10px + .5vw);
  font-weight: bold;
  color: black;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .map-detail-area .map-listing-area .map-tab-detail-left-listing-wrapper .transport-map-detail-list-area .hotel-carousel-card .right-content-area p {
  font-size: 12px;
  color: gray;
  margin: 0;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .map-detail-area .map-listing-area .map-tab-detail-left-listing-wrapper .transport-map-detail-list-area .hotel-carousel-card .right-content-area .review-area {
  margin-top: 0px;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .map-detail-area .map-listing-area .map-tab-detail-left-listing-wrapper .transport-map-detail-list-area .hotel-carousel-card .right-content-area .address-text {
  color: #cd5932;
  font-weight: 700;
  letter-spacing: 0px;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .map-detail-area .map-listing-area .map-tab-detail-left-listing-wrapper .transport-map-detail-list-area .hotel-carousel-card .right-content-area .great-place {
  margin-top: 0px;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .map-detail-area .map-listing-area .map-tab-detail-left-listing-wrapper .transport-map-detail-list-area::-webkit-scrollbar {
  width: 12px;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .map-detail-area .map-listing-area .map-tab-detail-left-listing-wrapper .transport-map-detail-list-area::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .map-detail-area .map-listing-area .map-tab-detail-left-listing-wrapper .transport-map-detail-list-area::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .map-detail-area .map-listing-area .map-tab-detail-left-listing-wrapper #tourOperatorDetailListing {
  display: none;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .map-detail-area .map-listing-area .map-tab-detail-left-listing-wrapper #restaurantsDetailListing {
  display: none;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .map-detail-area .map-listing-area .map-tab-detail-left-listing-wrapper #hotelDetailListing {
  display: none;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .map-detail-area .map-wrapper {
  width: 70%;
  height: 100%;
  background-color: whitesmoke;
}

.nearby-section .nearby-main-parent .nearby-sec-wrapper .nearby-tabs-detail-area .map-detail-area .map-wrapper iframe {
  width: 100%;
  height: 100%;
}

.trending-places-section .trending-places-area-parent .trending-places-card-slider-wrapper .news-events-slider-area .popular-destination-card .image-area {
  height: 270px;
}

.owl-dots {
  display: none;
}

.city-tour-popular-destination-section {
  width: 100%;
  height: auto;
  padding: 20px 20px 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: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.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 .sub-sec-heading-wrapper .top-destination-heading {
  text-align: center;
  font-size: 6.5vw;
  color: #fff;
}

.city-tour-popular-destination-section .city-tour-popular-dest-inner-parent .sub-sec-heading-wrapper .top-destination-heading .popular {
  color: #cd5932;
  font-family: 'Allison', cursive;
}

.city-tour-popular-destination-section .city-tour-popular-dest-inner-parent .sub-sec-heading-wrapper .top-destination-heading .heading-part2 {
  color: #333;
  position: absolute;
  top: 6.5vw;
  left: 1vw;
  font-size: 4vw;
}

.city-tour-popular-destination-section .city-tour-popular-dest-inner-parent .sub-sec-heading-wrapper::after {
  content: "";
  position: absolute;
  bottom: -42%;
  left: 50%;
  width: 30px;
  height: 10px;
  margin: 0 auto;
  background-color: #F1A78E;
  border-radius: 20px;
}

.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: 75px;
  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;
}

.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;
}
/*# sourceMappingURL=destination-details.css.map */