@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;
  }
}

@-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 */
.top-banner-animated-section-parent {
  width: 100%;
  height: 500px;
  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);
  position: relative;
}

.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.35);
  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;
}

.event-listing-top-image-section {
  width: 100%;
  height: 100%;
  background-color: antiquewhite;
  position: relative;
  overflow: visible;
  padding: 0px 20px;
  padding: 50px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.event-listing-top-image-section .section-heading-home {
  color: #fff;
  position: relative;
  z-index: 5;
}

.event-listing-top-image-section .city-tour-banner-heading-area {
  width: 70%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.event-listing-top-image-section .city-tour-banner-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;
}

.event-listing-top-image-section .city-tour-banner-heading-area h1 {
  margin-left: 5vw;
  margin-top: 20px;
}

.event-listing-top-image-section .city-tour-banner-heading-area 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);
}

.event-listing-top-image-section .city-tour-banner-heading-area h1 .lahore {
  font-size: 10vw;
  top: 10vw;
  position: absolute;
  left: 7vw;
  color: #fff;
}

.event-listing-top-image-section .city-tour-banner-card-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;
  position: relative;
  z-index: 1;
}

.event-listing-top-image-section .city-tour-banner-card-area .banner-card-wrapper-city-tour {
  width: 300px;
  height: 450px;
  background-color: red;
  border-radius: 10px;
  overflow: hidden;
  position: absolute;
  bottom: -45%;
}

.event-listing-top-image-section .city-tour-banner-card-area .banner-card-wrapper-city-tour .food-street-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.city-tour-tabs-parent {
  width: 100%;
  height: auto;
  background-color: #cd5932;
  position: relative;
}

.city-tour-tabs-parent .tabs-area {
  max-width: 350px;
  margin: 0 auto;
  height: auto;
  padding: 0px;
  background-color: whitesmoke;
  border-radius: 10px;
  overflow: hidden;
  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);
  border: 1px solid #a14a2e;
  padding: 2px;
  position: absolute;
  left: 50%;
  margin-left: -175px;
  bottom: -30px;
  z-index: 100;
}

.city-tour-tabs-parent .tabs-area .nav .btn-map-img-area {
  width: 55px;
  height: 55px;
  margin: 0 auto;
  padding: 6px;
  background-color: whitesmoke;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}

.city-tour-tabs-parent .tabs-area .nav .map-tab-img {
  display: block;
  width: 95%;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.city-tour-tabs-parent .tabs-area .nav .nav-item {
  width: 50%;
  border-radius: 0px;
  overflow: hidden;
}

.city-tour-tabs-parent .tabs-area .nav .nav-item .nav-link {
  width: 100%;
  height: 100%;
  padding: 7px 0px;
  border-radius: 14px;
  color: #a14a2e;
  font-weight: initial;
  letter-spacing: 1px;
  text-transform: capitalize;
  position: relative;
}

.city-tour-tabs-parent .tabs-area .nav .nav-link.active {
  color: #fff !important;
  background-color: #cd5932 !important;
  border-radius: 0px;
  height: 100%;
  border-radius: 8px;
}

.city-tour-tabs-parent .tabs-area .nav .map-tabs-icon-mob {
  display: none;
}

.city-tour-tabs-parent .tabs-area .nav .map-tabs-icon-mob-white {
  display: none;
}

.city-tour-tabs-parent .tabs-area .nav .map-tabs-icon-mob-white {
  width: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.city-tour-main-section {
  width: 100%;
  height: auto;
  padding: 40px 20px;
  display: none;
}

.city-tour-main-section .city-tour-inner-parent {
  width: 100%;
  height: auto;
  padding: 10px;
}

.city-tour-main-section .city-tour-inner-parent .city-tour-main-content-area {
  width: 100%;
  height: auto;
}

.city-tour-main-section .city-tour-inner-parent .city-tour-main-content-area .content-section-city-tour {
  width: 100%;
  height: auto;
  padding: 10px;
}

.city-tour-main-section .city-tour-inner-parent .city-tour-main-content-area .content-section-city-tour .see-more-btn {
  padding: 6px 25px;
  font-size: 12px;
  color: #fff;
  background-color: #cd5932;
  text-transform: capitalize;
  border: none;
  margin-top: 20px;
  border-radius: 8px;
}

.city-tour-main-section .city-tour-inner-parent .weather-detail-city-tour-section {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  -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);
}

.city-tour-main-section .city-tour-inner-parent .weather-detail-city-tour-section h3 {
  color: #cd5932;
}

.city-tour-main-section .city-tour-inner-parent .weather-detail-city-tour-section .today-weather-city-tour-card {
  width: 120px;
  height: 160px;
  background-color: #f5f8fa;
  border-radius: 8px;
  margin: 0 auto;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
  -moz-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
  margin-bottom: 20px;
}

.city-tour-main-section .city-tour-inner-parent .weather-detail-city-tour-section .today-weather-city-tour-card .weather-area {
  width: 130px;
  height: 100%;
  background-color: #DAEFFF;
  border-radius: 10px;
  overflow: hidden;
}

.city-tour-main-section .city-tour-inner-parent .weather-detail-city-tour-section .today-weather-city-tour-card .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;
}

.city-tour-main-section .city-tour-inner-parent .weather-detail-city-tour-section .today-weather-city-tour-card .weather-area .weather-inside-area1 h3 {
  color: #cd5932;
  font-weight: bold;
  font-size: 22px;
}

.city-tour-main-section .city-tour-inner-parent .weather-detail-city-tour-section .today-weather-city-tour-card .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;
}

.city-tour-main-section .city-tour-inner-parent .weather-detail-city-tour-section .today-weather-city-tour-card .weather-area .weather-inside-area2 img {
  width: 60%;
}

.city-tour-main-section .city-tour-inner-parent .weather-detail-city-tour-section .today-weather-city-tour-card .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;
}

.city-tour-main-section .city-tour-inner-parent .weather-detail-city-tour-section .today-weather-city-tour-card .weather-area .weather-inside-area3 h3 {
  color: #cd5932;
  font-weight: bold;
  font-size: 22px;
}

.city-tour-main-section .city-tour-inner-parent .weather-detail-city-tour-section .weekdays-row-weather-area {
  width: 100%;
  height: auto;
  background-color: white;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.24);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.24);
  padding: 0 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #cd5932;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5px;
}

.city-tour-main-section .city-tour-inner-parent .weather-detail-city-tour-section .weekdays-row-weather-area .day-name-weekdays-wrapper {
  width: auto;
  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;
}

.city-tour-main-section .city-tour-inner-parent .weather-detail-city-tour-section .weekdays-row-weather-area .day-name-weekdays-img-area {
  width: auto;
  height: 45px;
}

.city-tour-main-section .city-tour-inner-parent .weather-detail-city-tour-section .weekdays-row-weather-area .day-name-weekdays-img-area img {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.fixed-header {
  max-width: 350px;
  position: fixed !important;
  top: 87px;
  left: 0 !important;
  right: 0;
  z-index: 999;
  height: -webkit-fit-content !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
  margin: 0 auto !important;
}

.trip-planner-section {
  width: 100%;
  height: auto;
  padding: 40px 20px;
}

.trip-planner-section .trip-planner-inner-parent {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-date-area {
  width: 10%;
  height: auto;
  padding: 20px 5px;
  position: relative;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-date-area ul {
  list-style: none;
  padding: 0;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-date-area ul li {
  padding-top: 8px;
  text-align: center;
  color: #007eb5;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-date-area ul li a:focus {
  color: #333;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-date-area ul li a {
  color: #007eb5;
  font-weight: bold;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-date-area p {
  text-align: center;
  color: #333;
  font-weight: bold;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-main-wrapper {
  width: 90%;
  height: auto;
  padding: 10px;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-main-wrapper .explore-btn {
  padding: 5px 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  background-color: transparent;
  color: #333;
  border: 1px solid lightgray;
  border-radius: 100px;
  margin-top: 15px;
  display: inline-block;
  -webkit-transition: .4s;
  transition: .4s;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-main-wrapper .straight-line {
  width: 2px;
  height: 100%;
  background-color: lightgray;
  position: absolute;
  left: 63px;
  top: 100px;
  z-index: -1;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-main-wrapper .route-area {
  width: 100%;
  height: auto;
  padding: 10px;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-main-wrapper .route-area .find-place {
  color: #007eb5;
  margin: 30px 20px;
  font-style: italic;
  text-decoration: underline;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-main-wrapper .route-area .day1-tag-area {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  padding: 8px 45px;
  background-color: #333;
  color: #fff;
  font-weight: bold;
  border-radius: 100px;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-main-wrapper .route-area .city-name {
  background-color: white;
  color: #000;
  margin-top: 25px;
  margin-left: 20px;
  margin-right: 20px;
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-main-wrapper .route-area .rest-icon-txt-wrapper {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-main-wrapper .route-area .rest-icon-wrapper {
  width: 40px;
  height: 40px;
  background-color: whitesmoke;
  border: 1px solid lightgray;
  border-radius: 50%;
  margin-top: 25px;
  margin-left: 25px;
  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;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-main-wrapper .route-area .car-icon {
  margin-top: 25px;
  background-color: white;
  font-size: 20px;
  margin-left: 34px;
  color: gray;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-main-wrapper .place-card-area {
  max-width: 900px;
  height: auto;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 15px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  border: 2px solid #f0eded;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-main-wrapper .place-card-area .must-see-btn {
  color: #007eb5;
  font-style: italic;
  padding-left: 10px;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-main-wrapper .place-card-area .time-area {
  width: 15%;
  height: 100%;
  padding: 10px;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-main-wrapper .place-card-area .time-area p {
  text-align: left;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-main-wrapper .place-card-area .img-area {
  width: 20%;
  max-height: 140px;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-main-wrapper .place-card-area .img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-main-wrapper .place-card-area .content-area {
  width: 65%;
  height: 100%;
  padding: 0 15px;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-main-wrapper .place-card-area .content-area .review-area {
  width: auto;
  height: auto;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-main-wrapper .place-card-area .content-area .review-area .fa-star {
  color: #b5b5b5;
  font-size: 12px;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-main-wrapper .place-card-area .content-area .review-area .star-active {
  color: #f2c94c;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-main-wrapper .place-card-area .content-area h4 {
  font-size: 18px;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-main-wrapper .place-card-area .content-area p {
  color: #333;
  line-height: 21px;
  margin-top: 2px;
}

.trip-planner-section .trip-planner-inner-parent .trip-planner-main-wrapper .place-card-area .content-area .explore-btn:hover {
  background-color: whitesmoke;
  -webkit-transition: .4s;
  transition: .4s;
}

.fixed-sidebar {
  position: fixed;
  top: 15%;
}

.date-list {
  padding: 20px;
  height: auto;
  width: 100px;
}

.city-tour-heading {
  color: #FFD600;
  font-size: 5em;
  font-family: 'Allison', cursive;
}

.city-tour-description-section {
  width: 100%;
  height: auto;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(6.53%, #CD5932), to(rgba(237, 169, 147, 0)));
  background: linear-gradient(180deg, #CD5932 6.53%, rgba(237, 169, 147, 0) 100%);
  padding: 40px 20px;
}

.city-tour-description-section .city-tour-description-inner-parent {
  width: 100%;
  height: auto;
  padding: 40px 0;
}

.city-tour-description-section .city-tour-description-inner-parent .city-tour-description-wrapper {
  width: 100%;
  height: auto;
  padding: 10px;
}

.city-tour-description-section .city-tour-description-inner-parent .city-tour-description-wrapper p {
  color: #fff;
  font-size: 18px;
  text-align: justify;
}

.city-tour-description-section .city-tour-description-inner-parent .city-tour-weather-area {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.city-tour-description-section .city-tour-description-inner-parent .city-tour-weather-area .weather-card-wrapperr {
  width: 100%;
  height: auto;
  border-radius: 10px;
  background-color: white;
  padding: 25px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.city-tour-description-section .city-tour-description-inner-parent .city-tour-weather-area .weather-card-wrapperr .weather-text-area {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.city-tour-description-section .city-tour-description-inner-parent .city-tour-weather-area .weather-card-wrapperr .weather-txt {
  width: 50%;
  height: 100%;
}

.city-tour-description-section .city-tour-description-inner-parent .city-tour-weather-area .weather-card-wrapperr .weather-txt p {
  color: #cd5932;
  font-size: 18px;
  font-weight: 700;
}

.city-tour-description-section .city-tour-description-inner-parent .city-tour-weather-area .weather-card-wrapperr .weather-txt ul {
  list-style: none;
  padding: 0;
  margin: 30px 0 !important;
}

.city-tour-description-section .city-tour-description-inner-parent .city-tour-weather-area .weather-card-wrapperr .weather-txt ul li {
  padding-bottom: 5px;
  font-size: 16px;
  font-weight: bold;
}

.city-tour-description-section .city-tour-description-inner-parent .city-tour-weather-area .weather-card-wrapperr .weather-txt .weather-forecast-btn {
  padding: 8px 25px;
  background-color: #cd5932;
  font-size: 14px;
  color: #fff;
  border-radius: 4px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
  -moz-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.city-tour-description-section .city-tour-description-inner-parent .city-tour-weather-area .weather-card-wrapperr .safety-txt {
  width: 50%;
  height: 100%;
}

.city-tour-description-section .city-tour-description-inner-parent .city-tour-weather-area .weather-card-wrapperr .safety-txt .other-day-card {
  width: 90px;
  height: 130px;
  margin: 0 auto;
  overflow: hidden;
  border: 2px solid brown;
  border-radius: 15px;
}

.city-tour-description-section .city-tour-description-inner-parent .city-tour-weather-area .weather-card-wrapperr .safety-txt .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;
}

.city-tour-description-section .city-tour-description-inner-parent .city-tour-weather-area .weather-card-wrapperr .safety-txt .other-day-card .weather-inside-area1 h3 {
  color: #cd5932;
  font-weight: bold;
  font-size: 18px;
}

.city-tour-description-section .city-tour-description-inner-parent .city-tour-weather-area .weather-card-wrapperr .safety-txt .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;
}

.city-tour-description-section .city-tour-description-inner-parent .city-tour-weather-area .weather-card-wrapperr .safety-txt .other-day-card .weather-inside-area2 img {
  width: 80%;
}

.city-tour-description-section .city-tour-description-inner-parent .city-tour-weather-area .weather-card-wrapperr .safety-txt .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;
}

.city-tour-description-section .city-tour-description-inner-parent .city-tour-weather-area .weather-card-wrapperr .safety-txt .other-day-card .weather-inside-area3 h3 {
  color: #cd5932;
  font-weight: bold;
  font-size: 18px;
}

.city-tour-description-section .city-tour-description-inner-parent .city-tour-weather-area .weather-card-wrapperr .safety-txt p {
  color: #cd5932;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
}

.city-tour-description-section .top-destination-sec-inner-parent {
  width: 100%;
  height: auto;
}

.city-tour-description-section .top-destination-sec-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-description-section .top-destination-sec-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-description-section .top-destination-sec-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-description-section .top-destination-sec-inner-parent .text-wrapper {
  font-size: 20px;
  color: #fff;
  line-height: 30px;
  max-width: 750px;
  text-align: center;
  margin-top: 1em;
}

.city-tour-description-section .top-destination-sec-inner-parent .top-destination-listing-wrapper {
  width: 100%;
  height: auto;
  padding: 10px;
}

.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;
}

.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-page-wrapper {
  width: 100%;
  height: auto;
  position: relative;
}

.city-tour-page-wrapper .citytour-bg-lines {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
/*# sourceMappingURL=city-tour.css.map */