@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;
}

.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: 10vw;
  top: 12vw;
  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;
}

.button-reastaurent-listing {
  width: 100%;
  height: auto;
  margin: 40px 0;
}

.button-area {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 20px;
}

.button-area button {
  background-color: #cd5932;
  color: #fff;
  border: none;
  padding: 4px 10px;
  text-transform: capitalize;
  border-radius: 6px;
  margin-top: 10px;
}

.resturant-listing-section {
  width: 100%;
  height: auto;
  padding: 20px 20px 40px 20px;
  padding-bottom: 0 !important;
}

.resturant-listing-section .resturant-listing-inner-parent {
  width: 100%;
  height: auto;
}

.resturant-listing-section .resturant-listing-inner-parent .resturant-listing-wrapper {
  width: 100%;
  height: auto;
  padding: 10px;
}

.resturant-listing-card {
  width: auto;
  height: auto;
  padding: 5px;
}

.resturant-listing-card .img-wrapper {
  width: 100%;
  height: 220px;
  background-color: yellowgreen;
  border-radius: 10px;
  border: 2px solid #cd5932;
  overflow: hidden;
}

.resturant-listing-card .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.resturant-listing-card .resturant-content-wrapper {
  width: 90%;
  margin: 0 auto;
  height: auto;
  padding: 10px;
  background-color: white;
  border-radius: 10px;
  margin-top: -50px;
  position: relative;
  z-index: 10;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.resturant-listing-card .resturant-content-wrapper h3 {
  text-align: left !important;
  font-size: 24px;
  font-weight: 700;
}

.resturant-listing-card .resturant-content-wrapper p {
  font-size: 13px;
}

.resturant-listing-card .resturant-content-wrapper p i {
  color: gray;
}

.resturant-listing-card .resturant-content-wrapper .resturant-address-txt {
  color: #cd5932;
  font-weight: 700;
  font-size: 14px;
}

.upcoming-events-section {
  width: 100%;
  height: auto;
  padding: 40px 20px;
  position: relative;
  z-index: -1;
}

.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;
}
/*# sourceMappingURL=resturant-listing.css.map */