@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: 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;
}

.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: 0;
  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.3);
  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;
  background-position: center;
  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;
}

.event-listing-page-wrapper .event-listing-section {
  width: 100%;
  height: auto;
  padding: 40px 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 .main-event-listing-wrapper {
  width: 100%;
  height: auto;
  margin-top: 40px;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-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;
  position: relative;
  z-index: 100;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper {
  width: auto;
  height: auto;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /** Custom field plugin **/
  /* SELECT */
  /**************************/
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper .label-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper .label-area label {
  font-weight: 700;
  margin-right: 10px;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper .selectCF {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
  font-family: 'Neucha', cursive;
  font-size: 17px;
  font-weight: bold;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper .selectCF li {
  list-style: none;
  cursor: pointer;
  perspective: 900px;
  -webkit-perspective: 900px;
  text-align: left;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper .selectCF > li {
  position: relative;
  font-size: 0;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper .selectCF span {
  display: inline-block;
  height: 45px;
  line-height: 45px;
  color: #FFF;
  z-index: 1;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper .selectCF .arrowCF {
  transition: .3s;
  -webkit-transition: .3s;
  width: 45px;
  text-align: center;
  vertical-align: top;
  font-size: 17px;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper .selectCF .titleCF {
  padding: 0 10px 0 20px;
  border-left: dotted 1px rgba(244, 244, 244, 0.5);
  font-size: 16px;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100px !important;
  background-color: #cd5932 !important;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper .selectCF .searchCF {
  padding: 0 10px 0 20px;
  border-left: dotted 1px rgba(244, 244, 244, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

@keyframes searchActive {
  from {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  to {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

@-webkit-keyframes searchActive {
  from {
    -webkit-transform: rotateY(180deg);
  }
  to {
    -webkit-transform: rotateY(0deg);
  }
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper .searchActive .searchCF {
  z-index: 1;
  animation: searchActive 0.3s alternate 1;
  -moz-animation: searchActive 0.3s alternate 1;
  -webkit-animation: searchActive 0.3s alternate 1;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper .searchActive .titleCF {
  opacity: 0;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper .selectCF .searchCF input {
  font-family: 'Neucha', cursive;
  line-height: 45px;
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  font-size: 17px;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper .selectCF .searchCF input:active,
.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper .selectCF .searchCF input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  outline: none;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper .selectCF li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 0 !important;
  width: 100%;
  background: #FFF;
  max-height: 255px;
  overflow-y: auto;
  transition: .2s;
  -webkit-transition: .2s;
  z-index: 2;
  background: rgba(253, 253, 253, 0.9);
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper .selectCF li ul li {
  padding: 9px 0 9px 20px;
  border-bottom: 1px solid rgba(240, 240, 240, 0.9);
  font-weight: normal;
  font-size: 14px;
  transition: .2s;
  -webkit-transition: .2s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper .selectCF li ul li:hover {
  background: #666;
  color: #FFF;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper .selectCF .selected {
  background: #666;
  color: #FFF;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper .selectCF li ul li:last-child {
  border-bottom: none;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper .onCF .arrowCF {
  content: "<";
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper .onCF .arrowCF::after {
  content: "<";
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper .ion-chevron-right {
  background-color: #cd5932 !important;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper .ion-chevron-right::after {
  content: ">";
}

@-webkit-keyframes effect1 {
  from {
    -webkit-transform: translateY(15px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0px);
    opacity: 1;
  }
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper .onCF li ul {
  display: block;
  -moz-animation: effect1 0.3s alternate 1;
  -webkit-animation: effect1 0.3s alternate 1;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper h2,
.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper ul.info li,
.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper #event-change {
  font-family: 'Oswald', cursive;
  color: #FFF;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper ul.info {
  padding: 0;
  margin: 0 0 20px 0;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper ul.info li {
  display: inline-block;
  border: solid 1px #FFF;
  border-radius: 5px;
  padding: 0 5px;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper #event-change {
  padding: 20px 0;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .sort-btn-area .sort-btn-wrapper .custom-link {
  position: absolute;
  bottom: 30px;
  right: 30px;
  color: #FFF;
  font-size: 12px;
  text-decoration: none;
  transition: .3s;
  -webkit-transition: .3s;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .event-listing-area-main {
  width: 100%;
  height: auto;
  padding: 10px 0px;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .event-listing-area-main .event-listing-card {
  width: 100%;
  height: 370px;
  border-radius: 10px;
  background-color: #f6f6f6;
  -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;
  margin-top: 20px;
  overflow: hidden;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .event-listing-area-main .event-listing-card .img-area {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 5px;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .event-listing-area-main .event-listing-card .img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .event-listing-area-main .event-listing-card .content-area {
  width: 100%;
  height: auto;
  padding: 15px;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .event-listing-area-main .event-listing-card .content-area .review-area {
  width: auto;
  height: auto;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .event-listing-area-main .event-listing-card .content-area .review-area .fa-star {
  color: #b5b5b5;
  font-size: 12px;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .event-listing-area-main .event-listing-card .content-area .review-area .star-active {
  color: #f2c94c;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .event-listing-area-main .event-listing-card .content-area .text-area {
  width: 100%;
  height: 60px;
  overflow: hidden;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .event-listing-area-main .event-listing-card .content-area .text-area p {
  font-size: 12px;
  text-align: justify;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .event-listing-area-main .event-listing-card .content-area .date-wrapper {
  width: 100%;
  height: auto;
  margin-top: 5px;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .event-listing-area-main .event-listing-card .content-area .date-wrapper p {
  font-size: 16px;
  font-weight: 700;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .event-listing-area-main .event-listing-card .content-area .date-wrapper .date {
  color: #cd5932;
  font-weight: 600;
}

.event-listing-page-wrapper .event-listing-section .event-listing-inner-parent .main-event-listing-wrapper .event-listing-area-main .event-listing-card: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;
  -webkit-transform: scaleY(-100px);
          transform: scaleY(-100px);
}

.event-listing-page-wrapper .upcoming-events-section {
  width: 100%;
  height: auto;
  padding: 40px 20px;
}

.event-listing-page-wrapper .upcoming-events-section .upcoming-event-inner-parent {
  width: 100%;
  height: auto;
}

.event-listing-page-wrapper .upcoming-events-section .upcoming-event-inner-parent .upcoming-events-wrapper {
  width: 100%;
  height: auto;
  padding: 20px 0px;
  position: relative;
}

.event-listing-page-wrapper .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;
}

.event-listing-page-wrapper .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;
}

.event-listing-page-wrapper .upcoming-events-section .upcoming-event-inner-parent .upcoming-events-wrapper .festival-event-card .festival-event-card-left-area {
  width: 35%;
  height: auto;
}

.event-listing-page-wrapper .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;
}

.event-listing-page-wrapper .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;
}

.event-listing-page-wrapper .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;
}

.event-listing-page-wrapper .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;
  padding-top: 5px;
}

.event-listing-page-wrapper .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: 18px;
}

.event-listing-page-wrapper .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: 20px;
}

.event-listing-page-wrapper .upcoming-events-section .upcoming-event-inner-parent .upcoming-events-wrapper .festival-event-card .festival-event-card-right-area {
  width: 65%;
  height: auto;
  padding: 15px;
}

.event-listing-page-wrapper .upcoming-events-section .upcoming-event-inner-parent .upcoming-events-wrapper .festival-event-card .festival-event-card-right-area h3 {
  font-size: 22px;
}

.event-listing-page-wrapper .upcoming-events-section .upcoming-event-inner-parent .upcoming-events-wrapper .festival-event-card .festival-event-card-right-area .review-area {
  width: auto;
  height: auto;
}

.event-listing-page-wrapper .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;
}

.event-listing-page-wrapper .upcoming-events-section .upcoming-event-inner-parent .upcoming-events-wrapper .festival-event-card .festival-event-card-right-area .review-area .star-active {
  color: #f2c94c;
}

.event-listing-page-wrapper .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;
}

.event-listing-page-wrapper .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;
}

.event-listing-page-wrapper .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;
}

.event-list-card {
  background-color: #fff;
  -webkit-box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.48);
  box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.48);
  border-radius: 10px;
  border: none !important;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  background-position: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.event-list-card:hover .card-spacing {
  padding-top: 0 !important;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
}

.card-spacing {
  padding-top: 250px;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
}

.card-content {
  width: 100%;
  padding-top: 78px;
  padding-left: 12px;
  padding-right: 12px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(22%, rgba(255, 255, 255, 0.81)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.81) 22%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#000000', GradientType=0);
  height: 100vh;
}

.card-content h2 {
  font-weight: bold;
  font-size: 18px;
  color: #3e3b3b;
}

.card-content .event-date {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  margin-top: 15px;
}

.description {
  padding: 15px 0 0 0;
}

.description p {
  font-size: 13px;
  font-weight: 400;
  color: #000;
}

.tagbox {
  display: inline-block;
  color: white;
  padding: 2px 5px;
  border-radius: 5px;
  font-size: 0.75rem;
}

.purple {
  background-color: purple;
}

.pink {
  background-color: pink;
}

.cast-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cast-circle {
  position: relative;
  width: 50px;
  height: 50px;
}

.cast-circle img {
  position: absolute;
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: white 3px solid;
}
/*# sourceMappingURL=event-listing-page.css.map */