@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;
  }
}

.event-listing-page-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.event-listing-page-wrapper .top-banner-animated-section-parent {
  width: 94%;
  height: 70vh;
  box-shadow: 0px 9px 37px -10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 9px 37px -10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 9px 37px -10px rgba(0, 0, 0, 0.3);
  position: relative;
  margin: 0 auto;
  border-radius: 0 0 20px 20px;
  position: relative;
  overflow: hidden;
}

.event-listing-page-wrapper .top-banner-animated-section-parent .new-header-heading-area {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  padding: 10px;
  position: relative;
  z-index: 1;
  margin-top: 3vw;
}

.event-listing-page-wrapper .top-banner-animated-section-parent .new-header-heading-area .heading-wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.event-listing-page-wrapper .top-banner-animated-section-parent .new-header-heading-area .heading-wrapper h1 {
  margin-top: 20px;
}

.event-listing-page-wrapper .top-banner-animated-section-parent .new-header-heading-area .heading-wrapper h1 .its-beautiful {
  font-family: 'Allison', cursive;
  font-size: 13vw;
  color: #FFC700;
  font-weight: 400;
  text-shadow: 0px 10px 3px rgba(0, 0, 0, 0.25);
}

.event-listing-page-wrapper .top-banner-animated-section-parent .new-header-heading-area .heading-wrapper h1 .place-name-heading {
  font-size: 3vw;
  top: 13vw;
  position: absolute;
  left: -3vw;
  color: #fff;
}

.event-listing-page-wrapper .top-banner-animated-section-parent::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: calc(20px + 4vw);
  color: #fff;
  font-weight: 600;
  text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.45);
  border-radius: 0 0 20px 20px;
}

.event-listing-page-wrapper .event-listing-top-image-section {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: visible;
  padding: 0px 20px;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0 0 20px 20px;
  background-position: top right;
}

.event-listing-page-wrapper .event-listing-section {
  width: 100%;
  height: auto;
  padding: 20px 20px 40px 20px;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent {
  width: 100%;
  height: auto;
  padding: 20px 0px;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .punjab-culture-content-area {
  width: 100%;
  height: auto;
  padding: 10px;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .punjab-culture-content-area h3 {
  font-size: 20px;
  font-weight: bold;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .punjab-culture-content-area p {
  letter-spacing: 1px;
  text-align: justify;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .punjab-culture-content-area .see-more-btn {
  padding: 5px 25px;
  border-radius: 4px;
  border: 1px solid #cd5932;
  font-weight: bold;
  margin: 15px 0px;
}

.event-listing-page-wrapper .punjab-culture-destaination-listing-section {
  width: 100%;
  height: auto;
  padding: 40px 0;
}

.event-listing-page-wrapper .punjab-culture-destaination-listing-section .punjab-destination-listing-parent {
  width: 100%;
  height: auto;
}

.event-listing-page-wrapper .punjab-culture-destaination-listing-section .punjab-destination-listing-parent .punjab-destination-listing-area {
  width: 100%;
  height: auto;
  padding-top: 40px;
  position: relative;
}

.event-listing-page-wrapper .punjab-culture-destaination-listing-section .punjab-destination-listing-parent .punjab-destination-listing-area .looking-for-dotted-img {
  position: absolute;
  top: -10px;
  right: -60px;
  z-index: 10;
  width: 35%;
}

.event-listing-page-wrapper .punjab-culture-destaination-listing-section .punjab-destination-listing-parent .punjab-destination-listing-area .popular-destination-card {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background-color: white;
  position: relative;
  z-index: 10;
  -webkit-transition: .5s;
  transition: .5s;
  box-shadow: 0px 9px 37px -10px rgba(0, 0, 0, 0.46);
  -webkit-box-shadow: 0px 9px 37px -10px rgba(0, 0, 0, 0.46);
  -moz-box-shadow: 0px 9px 37px -10px rgba(0, 0, 0, 0.46);
}

.event-listing-page-wrapper .punjab-culture-destaination-listing-section .punjab-destination-listing-parent .punjab-destination-listing-area .popular-destination-card .image-area {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
}

.event-listing-page-wrapper .punjab-culture-destaination-listing-section .punjab-destination-listing-parent .punjab-destination-listing-area .popular-destination-card .image-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.event-listing-page-wrapper .punjab-culture-destaination-listing-section .punjab-destination-listing-parent .punjab-destination-listing-area .popular-destination-card .image-area .weather-card-area {
  width: 100%;
  min-height: 60px;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.event-listing-page-wrapper .punjab-culture-destaination-listing-section .punjab-destination-listing-parent .punjab-destination-listing-area .popular-destination-card .image-area .weather-card-area .temprature-text-area {
  width: 70%;
  height: 100%;
  padding: 7px 10px;
}

.event-listing-page-wrapper .punjab-culture-destaination-listing-section .punjab-destination-listing-parent .punjab-destination-listing-area .popular-destination-card .image-area .weather-card-area .temprature-text-area p {
  margin: 0;
  font-weight: bold;
  color: #fff;
  font-size: 14px;
}

.event-listing-page-wrapper .punjab-culture-destaination-listing-section .punjab-destination-listing-parent .punjab-destination-listing-area .popular-destination-card .image-area .weather-card-area .temprature-text-area p small {
  font-weight: 400;
  font-size: 12pxg;
}

.event-listing-page-wrapper .punjab-culture-destaination-listing-section .punjab-destination-listing-parent .punjab-destination-listing-area .popular-destination-card .image-area .weather-card-area .temprature-icon-area {
  width: 30%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.event-listing-page-wrapper .punjab-culture-destaination-listing-section .punjab-destination-listing-parent .punjab-destination-listing-area .popular-destination-card .image-area .weather-card-area .temprature-icon-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.event-listing-page-wrapper .punjab-culture-destaination-listing-section .punjab-destination-listing-parent .punjab-destination-listing-area .popular-destination-card .image-area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.event-listing-page-wrapper .punjab-culture-destaination-listing-section .punjab-destination-listing-parent .punjab-destination-listing-area .popular-destination-card .content-area {
  width: 100%;
  height: auto;
  padding: 10px 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding-bottom: 30px;
}

.event-listing-page-wrapper .punjab-culture-destaination-listing-section .punjab-destination-listing-parent .punjab-destination-listing-area .popular-destination-card .content-area .destination-card-heading {
  font-size: 18px;
  letter-spacing: 2px;
  text-align: left;
  padding-top: 10px;
  margin: 0;
}

.event-listing-page-wrapper .punjab-culture-destaination-listing-section .punjab-destination-listing-parent .punjab-destination-listing-area .popular-destination-card .content-area p {
  margin: 0;
  font-size: 14px;
  color: gray;
}

.event-listing-page-wrapper .punjab-culture-destaination-listing-section .punjab-destination-listing-parent .punjab-destination-listing-area .popular-destination-card .content-area p i {
  font-size: 12px;
}

.event-listing-page-wrapper .punjab-culture-destaination-listing-section .punjab-destination-listing-parent .punjab-destination-listing-area .popular-destination-card .content-area .button-area {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: -20px;
}

.event-listing-page-wrapper .punjab-culture-destaination-listing-section .punjab-destination-listing-parent .punjab-destination-listing-area .popular-destination-card .content-area .button-area button {
  padding: 6px 20px;
  background-color: #a14a2e;
  color: #fff;
  border: none;
  border-radius: 4px;
  display: block;
  margin: 0 auto;
}

.event-listing-page-wrapper .tabs-area {
  width: 75%;
  margin: 0 auto;
  height: auto;
  padding: 0px;
  background-color: rgba(255, 255, 255, 0.55);
  border-radius: 24px;
  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;
}

.event-listing-page-wrapper .tabs-area .nav .btn-map-img-area {
  width: 40px;
  height: 40px;
  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;
}

.event-listing-page-wrapper .tabs-area .nav .map-tab-img {
  display: block;
  width: 95%;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.event-listing-page-wrapper .tabs-area .nav .nav-item {
  width: 19.99%;
  border-radius: 0px;
  overflow: hidden;
}

.event-listing-page-wrapper .tabs-area .nav .nav-item .nav-link {
  width: 100%;
  height: 100%;
  padding-top: 2px;
  padding-bottom: 2px;
  border-radius: 0px;
  color: #a14a2e;
  border-right: 1px solid #a14a2e;
  border-left: 1px solid #a14a2e;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: capitalize;
  position: relative;
}

.event-listing-page-wrapper .tabs-area .nav .nav-link.active {
  color: #fff !important;
  background-color: #a14a2e !important;
  border-radius: 0px;
  height: 100%;
}

.event-listing-page-wrapper .tabs-area .nav .map-tabs-icon-mob {
  display: none;
}

.event-listing-page-wrapper .tabs-area .nav .map-tabs-icon-mob-white {
  display: none;
}

.event-listing-page-wrapper .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%);
}

.subcategory-navs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.subcategory-navs .nav-tabs {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-color: #cd5932;
}

.subcategory-navs .nav-link {
  font-size: 18px;
  font-weight: 500;
  padding: 6px 20px;
  color: #000;
}

.subcategory-navs .mall-svg {
  fill: #000;
  width: 22px !important;
  height: auto !important;
}

.subcategory-navs .nav-link.active {
  color: #fff;
  background-color: #cd5932;
  border-bottom: 1px solid #cd5932;
}

.subcategory-navs .nav-link.active .mall-svg {
  fill: #fff !important;
}

.subcategory-navs .nav-link.active .mall-svg .mall-svg-path {
  color: #fff !important;
}

.subcategory-navs .nav-tabs .nav-link:hover,
.subcategory-navs .nav-tabs .nav-link:focus {
  border-color: #cd5932 #cd5932 #fff;
  isolation: isolate;
}

.sub-category-details-listing-area {
  width: 100%;
  height: auto;
  background-color: whitesmoke;
  padding: 20px;
  border: 1px solid lightgray;
  padding-top: 25px;
  border-top: none;
}

.selected-input {
  display: block;
}

.fixed-header {
  max-width: 1000px;
  position: fixed;
  top: 93px;
  left: 0;
  right: 0;
  z-index: 999;
  margin: 0 auto;
}

.topfixed-header {
  top: 93px !important;
  background-color: whitesmoke !important;
}

.ankerhometab {
  position: relative;
}

.category-tab-anker {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.event-listing-page-wrapper .punjab-culture-destaination-listing-section .punjab-destination-listing-parent .punjab-destination-listing-area .popular-destination-card .content-area .destination-card-heading {
  width: 100%;
  overflow: hidden;
}
/*# sourceMappingURL=punjab-culture.css.map */