@font-face {
  font-family: "Roboto";
  src: url("fonts/Poppins.eot?#iefix") format("embedded-opentype"),
    url("fonts/Poppins.woff") format("woff"),
    url("fonts/Poppins.ttf") format("truetype"),
    url("fonts/Poppins.svg#Calibri") format("svg");
  font-weight: normal;
  font-style: normal;
}

body {
  color: #2f2f2f;
  font-family: "Roboto";
}

img {
  vertical-align: baseline;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a {
  color: royalblue;
}

a:visited {
  color: purple;
}

a:hover,
a:focus,
a:active {
  color: midnightblue;
}

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
  list-style: none;
}

/*--------------------------------------------------------------
# Flex
--------------------------------------------------------------*/
.flex {
  display: flex !important;
}

@media screen and (min-width: 992px) {
  .flex-lg {
    display: flex !important;
  }
}

/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/
.btn {
  padding: 16px 46px;
  border: 2px solid #9a24c1;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  color: #232127;
}

.btn.gradient {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZ3JhZGllbnQiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMCUiIHkyPSIxMDAlIj48c3RvcCBvZmZzZXQ9IjAlIiBzdHlsZT0ic3RvcC1jb2xvcjojQUEwMEZGOyIgLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0eWxlPSJzdG9wLWNvbG9yOiM1ODE2ODc7IiAvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IGZpbGw9InVybCgjZ3JhZGllbnQpIiBoZWlnaHQ9IjEwMCUiIHdpZHRoPSIxMDAlIiAvPjwvc3ZnPg==);
  background-image: -webkit-gradient(
    linear,
    left top,
    270deg,
    color-stop(0%, #aa00ff),
    color-stop(100%, #581687)
  );
  background-image: -moz-linear-gradient(270deg, #aa00ff 0%, #581687 100%);
  background-image: -webkit-linear-gradient(270deg, #aa00ff 0%, #581687 100%);
  background-image: -o-linear-gradient(270deg, #aa00ff 0%, #581687 100%);
  background-image: -ms-linear-gradient(270deg, #aa00ff 0%, #581687 100%);
  background-image: linear-gradient(270deg, #aa00ff 0%, #581687 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.btn.dark-purple {
  background: #9a24c1;
  color: #fff;
}
.btn.dark {
    background: -webkit-linear-gradient(#30a9ee, #2899df) !important;
    border-color: transparent;
    color: #fff;
}

.btn.gradient-bg {
  padding: 18px 46px;
  border: 0;
    background: -webkit-linear-gradient(#b47c0e, #e99d08) !important;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0%, rgba(88, 20, 121, 1)),
    color-stop(100%, rgba(171, 0, 229, 1))
  ); /* safari4+,chrome */
  background: -webkit-linear-gradient(
    180deg,
    rgba(171, 0, 229, 1) 0%,
    rgba(88, 20, 121, 1) 100%
  ); /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(
    180deg,
    rgba(171, 0, 229, 1) 0%,
    rgba(88, 20, 121, 1) 100%
  ); /* opera 11.10+ */
  background: -ms-linear-gradient(
    180deg,
    rgba(171, 0, 229, 1) 0%,
    rgba(88, 20, 121, 1) 100%
  ); /* ie10+ */
  background: linear-gradient(
    270deg,
    rgba(171, 0, 229, 1) 0%,
    rgba(88, 20, 121, 1) 100%
  ); /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#581479', endColorstr='#ab00e5',GradientType=1 ); /* ie6-9 */
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/*
# Site Header
--------------------------------*/
.site-header {
  position: relative;
}

.site-header .site-title img {
  max-height: 64px;
}

/*
# Header Bar
--------------------------------*/
.header-bar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  padding: 14px 0;
}

/*
# Site Branding
--------------------------------*/
.site-branding img {
  display: block;
  max-width: 100%;
}

@media screen and (min-width: 992px) {
  .site-branding {
    margin-left: 45px;
  }

  .site-header .site-title img {
    max-height: 999px;
    width: 200px;
  }
}

/*
  Hamburger Menu
----------------------------------------*/
.hamburger-menu {
  position: relative;
  width: 100%;
  max-width: 44px;
  height: 44px;
  margin-left: auto;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.hamburger-menu span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  opacity: 1;
  left: 0;
  transition: 0.25s ease-in-out;
}

.hamburger-menu span:nth-child(1) {
  top: 2px;
}

.hamburger-menu span:nth-child(2),
.hamburger-menu span:nth-child(3) {
  top: 10px;
}

.hamburger-menu span:nth-child(4) {
  top: 18px;
}

.hamburger-menu.open span:nth-child(1) {
  top: 18px;
  width: 0;
  left: 50%;
}

.hamburger-menu.open span:nth-child(2) {
  transform: rotate(45deg);
}

.hamburger-menu.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.hamburger-menu.open span:nth-child(4) {
  top: 18px;
  width: 0;
  left: 50%;
}

/*
# Main Menu
--------------------------------*/
.site-navigation {
  position: absolute;
  top: -22px;
  right: 15px;
  z-index: 9999;
  width: 100%;
  height: 22px;
  overflow: hidden;
  list-style: none;
  transition: all 0.35s;
}

.site-navigation.show {
  height: auto;
}

.site-navigation ul {
  position: fixed;
  top: 0;
  left: -320px;
  z-index: 9999;
  width: 320px;
  max-width: 80%;
  height: 100vh;
  overflow-x: scroll;
  padding: 30px;
  margin: 0;
  background: rgba(49,169,238,0.9);
  transition: all 0.35s;
}

.site-navigation.show ul {
  left: 0;
}

.site-navigation ul li {
  display: block;
  padding: 10px 16px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
}

.site-navigation ul li a {
  display: block;
  color: #fff;
  transition: all 0.35s;
  text-decoration: none;
}

.site-navigation ul li a:hover,
.site-navigation ul li.current-menu-item a {
  border-color: #2f2f2f;
}

@media screen and (min-width: 992px) {
  .site-navigation {
    position: relative;
    height: auto;
    background: transparent;
  }

  .site-navigation ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    padding: 0;
    overflow: auto;
    background: transparent;
  }

  .site-navigation ul li a {
    color: #fff;
  }
}

/*
# Buy Tickets
--------------------------------*/
.site-header .buy-tickets {
  margin-left: 115px !important;
  text-align: left;
  margin-top: -30px;
}
.Notification-btn {
    margin-top: -55px !important;
    text-align: right;
}
.site-header .buy-tickets .btn,
.hero-slider .btn {
  padding: 16px 46px;
  border: 2px solid #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-slider {
  height: 100vh;
}

.hero-content {
  padding-top: 150px;
  padding-bottom: 120px;
}

.hero-content .container,
.hero-content .row,
.hero-content .col {
  height: 100%;
}

.hero-slider .entry-title {
  font-size: 28px;
  line-height: 1.2;
  font-weight: bold;
  color: #fff;
}

.hero-slider .btn {
  margin-top: 45px;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  max-width: 1110px;
  right: 0;
  bottom: 48px;
  left: 0;
  padding: 0 15px;
  margin: 0 auto;
  text-align: left;
}

.swiper-button-next, .swiper-button-prev {
    visibility: hidden;
    width: 42px;
    height: 42px;
    margin-top: -21px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #30a9ee;
    transition: all 0.35s;
}

.swiper-button-next {
  right: 15px;
}

.swiper-button-prev {
  left: 15px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 1;
}

.swiper-button-next span,
.swiper-button-prev span {
  display: block;
  width: 20px;
  padding-top: 6px;
}

.swiper-button-next path,
.swiper-button-prev path {
  fill: #fff;
}

.swiper-pagination-bullet {
  position: relative;
  display: inline-block;
  height: 24px;
  border-radius: 0;
  font-size: 18px;
  font-weight: bold;
  text-align: right;
  color: #fff;
  background: transparent;
  opacity: 1;
  transition: all 0.35s;
}

.swiper-pagination-bullet-active {
  position: relative;
  width: 32px;
}

.swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  z-index: 99;
  width: 20px;
  height: 2px;
  background: #fff;
}

@media screen and (min-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    visibility: visible;
  }
}

/*
# Countdown
--------------------------------*/
.countdown-holder {
  margin-right: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.countdown-holder label {
  font-size: 13px;
}

@media screen and (min-width: 576px) {
  .hero-slider .entry-title {
    font-size: 42px;
  }

  .countdown-holder {
    margin-right: 24px;
    font-size: 42px;
  }

  .countdown-holder label {
    font-size: 18px;
  }
  
  .site-footer {
  padding: 75px 0;
  background: #002942;
  text-align: center;
      
  }
}

@media screen and (min-width: 992px) {
  .hero-slider {
    /*height: 100vh;*/
  }

  .hero-content {
    padding-top: 300px;
  }

  .hero-slider .entry-title {
    font-size: 72px;
  }

  .countdown-holder {
    margin-right: 52px;
    font-size: 60px;
  }

  .countdown-holder label {
    font-size: 24px;
  }
}

@media screen and (min-width: 1200px) {
  .hero-content {
    padding-top: 320px;
  }

  .swiper-button-next {
    right: 64px;
  }

  .swiper-button-prev {
    left: 64px;
  }
}

/*--------------------------------------------------------------
# Homepage - Info Section
--------------------------------------------------------------*/
.homepage-info-section {
  padding: 120px 0;
  background: #fff;
}

.homepage-info-section figure {
  padding-right: 30px;
}

.homepage-info-section figure img {
  max-width: 100%;
}

.homepage-info-section .entry-title {
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  color: #232127;
}

.homepage-info-section .entry-content {
  margin-top: 32px;
}

.homepage-info-section .entry-content p {
    font-size: 22px;
    line-height: 1.7;
    color: #777777;
}

.homepage-info-section .entry-footer a {
  margin-top: 32px;
  margin-right: 18px;
}

/*--------------------------------------------------------------
# Homepage - Featured Events
--------------------------------------------------------------*/
.homepage-featured-events {
  height: auto;
  padding: 110px 0 150px;
  background: url("images/featured-events-bg.png") no-repeat center;
  background-size: cover !important;
}

.homepage-featured-events .event-content-wrap {
  position: relative;
  padding: 36px 18px;
}

.homepage-featured-events .event-content-wrap figure {
  margin: -36px -18px;
}

.homepage-featured-events .event-content-wrap figure img {
  display: block;
  width: 100%;
}

.homepage-featured-events .event-content-wrap .entry-header {
  position: absolute;
  left: 18px;
  bottom: 24px;
  z-index: 99;
}

.homepage-featured-events .event-content-wrap .entry-header .entry-title {
    display: inline-block;
    padding: 12px 18px;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    background: #b47c0e;
}

.homepage-featured-events .event-content-wrap .entry-header .posted-date {
  padding: 2px 18px;
  font-size: 18px;
  color: #fff;
}

.featured-events-wrap {
  position: relative;
}

.featured-events-wrap .event-content-wrap:nth-last-of-type(1) {
  margin-bottom: 0;
}

.featured-events-wrap .event-content-wrap {
  width: 100%;
  margin-bottom: 30px;
}

@media screen and (max-width: 575px) {
  .featured-events-wrap .event-content-wrap.half {
    width: calc(50% - 15px);
  }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
  .featured-events-wrap .event-content-wrap {
    width: calc(50% - 15px);
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .featured-events-wrap .event-content-wrap {
    width: calc(50% - 15px);
  }

  .featured-events-wrap .event-content-wrap.half {
    width: calc(33.333333% - 15px);
  }
}

@media screen and (min-width: 992px) {
  .homepage-featured-events {
    min-height: 1260px;
  }

  .featured-events-wrap .event-content-wrap {
    position: absolute;
    top: 0;
    left: 0;
    margin-bottom: 0;
  }

  .homepage-featured-events .positioning-event-1 {
    width: 290px;
  }

  .homepage-featured-events .positioning-event-2 {
    width: 210px;
    top: 192px;
    left: 320px;
  }

  .homepage-featured-events .positioning-event-3 {
    width: 210px;
    top: 75px;
    left: 560px;
  }

  .homepage-featured-events .positioning-event-4 {
    width: 130px;
    top: 235px;
    left: 800px;
  }

  .homepage-featured-events .positioning-event-5 {
    width: 130px;
    top: 350px;
    left: 0;
  }

  .homepage-featured-events .positioning-event-6 {
    width: 130px;
    top: 344px;
    left: 560px;
  }

  .homepage-featured-events .positioning-event-7 {
    width: 210px;
    top: 457px;
    left: 160px;
  }

  .homepage-featured-events .positioning-event-8 {
    width: 290px;
    top: 457px;
    left: 400px;
  }

  .homepage-featured-events .positioning-event-9 {
    width: 210px;
    top: 395px;
    left: 720px;
  }

  .homepage-featured-events .positioning-event-10 {
    width: 130px;
    top: 653px;
    left: 720px;
  }

  .homepage-featured-events .positioning-event-11 {
                width: 160px;
        top: 535px;
        left: -25px;
  
}

@media screen and (min-width: 1200px) {
  .homepage-featured-events {
    min-height: 1480px;
  }

  .homepage-featured-events .positioning-event-1 {
    width: 350px;
  }

  .homepage-featured-events .positioning-event-2 {
    width: 255px;
    top: 230px;
    left: 380px;
  }

  .homepage-featured-events .positioning-event-3 {
    width: 255px;
    top: 90px;
    left: 665px;
  }

  .homepage-featured-events .positioning-event-4 {
    width: 160px;
    top: 280px;
    left: 950px;
  }

  .homepage-featured-events .positioning-event-5 {
    width: 160px;
    top: 417px;
    left: 0;
  }

  .homepage-featured-events .positioning-event-6 {
    width: 160px;
    top: 410px;
    left: 665px;
  }

  .homepage-featured-events .positioning-event-7 {
    width: 255px;
    top: 546px;
    left: 190px;
  }

  .homepage-featured-events .positioning-event-8 {
    width: 350px;
    top: 546px;
    left: 475px;
  }

  .homepage-featured-events .positioning-event-9 {
    width: 255px;
    top: 470px;
    left: 855px;
  }

  .homepage-featured-events .positioning-event-10 {
width: 160px;
            top: 650px;
            left: 0px;
  }

  .homepage-featured-events .positioning-event-11 {
    width: 160px;
    top: 963px;
    left: 475px;
  }
}

/*--------------------------------------------------------------
# Homepage - Next Events
--------------------------------------------------------------*/
.next-events-section-header {
  margin-top: 36px;
  text-align: center;
}

.next-events-section-header .entry-title,
.events-partners .entry-title {
  padding: 24px 0;
  font-size: 60px;
  font-weight: bold;
  line-height: 1;
  color: #232127;
/*  background: url("images/next-events-header-bg.png") no-repeat center;*/
  text-align: center;
}

    .next-events-section-header p {
        margin-top: 20px;
        font-size: 22px;
        line-height: 1.7;
        color: #616161;
    }
@media screen and (min-width: 1200px) {
  .next-events-section-header p {
    padding: 0 85px;
  }
}

.homepage-next-events .next-event-wrap {
  margin-top: 96px;
  text-align: center;
}

.homepage-next-events .next-event-wrap figure {
  position: relative;
  margin: 0;
}

.homepage-next-events .next-event-wrap figure img {
  width: 100%;
}

.homepage-next-events .next-event-wrap .event-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -32px;
  left: 32px;
  width: 78px;
  height: 78px;
  border: 2px solid #fff;
  border-radius: 50%;

  font-size: 22px;
  font-weight: bold;
  color: #fff;

  background: #219be6;
}

.homepage-next-events .next-event-wrap .entry-title {
  margin-top: 32px;
  font-size: 28px;
  font-weight: bold;
  color: #232127;
}

.homepage-next-events .next-event-wrap .posted-date {
  margin-top: 12px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #777777;
}

.homepage-next-events .next-event-wrap .posted-date span {
  color: #219be6;
}

.homepage-next-events .next-event-wrap .entry-content p {
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.7;
  color: #777777;
}

.homepage-next-events .next-event-wrap .entry-footer {
  margin-top: 40px;
}
.entry-content.text p {
        font-size: 17px;
        line-height: 1.7;
        color: #5e5e5e;
    }
h3.entry-title {
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #232127;
}
.homepage-next-events .next-event-wrap .entry-footer a {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 2px solid #bec0cc;
  text-decoration: none;
  color: #bec0cc;
}

.homepage-next-events .next-event-wrap .entry-footer a:hover {
  border-color: #9a28d7;
  color: #9a28d7;
}

/*--------------------------------------------------------------
# Homepage - Regional Events
--------------------------------------------------------------*/
.homepage-regional-events {
  min-height: 1000px;
  padding-top: 280px;
  background: url("images/regional-events-bg.jpg") no-repeat;
  background-size: cover;
}

.homepage-regional-events .regional-events-heading .entry-title {
  font-size: 60px;
  font-weight: bold;
  color: #fff;
}

.homepage-regional-events .select-location select {
  padding: 14px 32px;
  margin: 20px 0;
  border: 2px solid #fff;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  background: -moz-linear-gradient(
    180deg,
    rgba(171, 0, 229, 1) 0%,
    rgba(88, 20, 121, 1) 100%
  ); /* ff3.6+ */
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0%, rgba(88, 20, 121, 1)),
    color-stop(100%, rgba(171, 0, 229, 1))
  ); /* safari4+,chrome */
  background: -webkit-linear-gradient(
    180deg,
    rgba(171, 0, 229, 1) 0%,
    rgba(88, 20, 121, 1) 100%
  ); /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(
    180deg,
    rgba(171, 0, 229, 1) 0%,
    rgba(88, 20, 121, 1) 100%
  ); /* opera 11.10+ */
  background: -ms-linear-gradient(
    180deg,
    rgba(171, 0, 229, 1) 0%,
    rgba(88, 20, 121, 1) 100%
  ); /* ie10+ */
  background: linear-gradient(
    270deg,
    rgba(171, 0, 229, 1) 0%,
    rgba(88, 20, 121, 1) 100%
  ); /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#581479', endColorstr='#ab00e5',GradientType=1 ); /* ie6-9 */
  color: #fff;
  outline: none;
}

.homepage-regional-events .select-location select option {
  background: #9a28d7;
  padding: 5px 0;
  outline: none;
}

.homepage-regional-events-slider {
  position: relative;
  margin-top: 100px;
  color: #fff;
  text-align: center;
}

.homepage-regional-events-slider figure {
  position: relative;
  margin: 0;
}

.homepage-regional-events-slider figure img {
  display: block;
  width: 100%;
}

.homepage-regional-events-slider .entry-title {
  margin-top: 28px;
  font-size: 18px;
  font-weight: bold;
}

.homepage-regional-events-slider .entry-footer {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.homepage-regional-events-slider .entry-footer span {
  color: #9a28d7;
}

.homepage-regional-events-slider .swiper-button-next,
.homepage-regional-events-slider .swiper-button-prev {
  top: calc(50% - 40px);
}

.homepage-regional-events-slider .swiper-button-next {
  right: 20px;
}

.homepage-regional-events-slider .swiper-button-prev {
  left: 20px;
}

.event-overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(154, 40, 215, 0.85);

  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;

  visibility: hidden;
  opacity: 0;
  transition: all 0.35s;
}

.event-overlay-link:hover {
  text-decoration: none;
  color: #fff;
}

.homepage-regional-events-slider .swiper-slide:hover .event-overlay-link {
  visibility: visible;
  opacity: 1;
}

.events-partners {
  padding: 120px 0;
}

.events-partners .entry-title {
  color: #fff;
}

.events-partners-logos .event-partner-logo {
  width: 20%;
  min-width: 220px;
  margin-top: 80px;
  text-align: center;
}

/*--------------------------------------------------------------
# Newsletter
--------------------------------------------------------------*/
.newsletter-subscribe {
  padding: 150px 0;
  background: url("images/newsletter-bg.jpg") no-repeat;
  background-size: cover;
  text-align: center;
}

.newsletter-subscribe .entry-title {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}

.newsletter-subscribe header p {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}
.newsletter-subscribe form input[type="text"],
.newsletter-subscribe form input[type="email"] {
  width: 100%;
  color: #232127;
  padding: 15px 24px;
  border: 0;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
}

.newsletter-subscribe form input[type="text"]::placeholder,
.newsletter-subscribe form input[type="email"]::placeholder {
  font-style: italic;
}

.newsletter-subscribe form input[type="text"],
.newsletter-subscribe form input[type="email"],
.newsletter-subscribe form input[type="submit"] {
  margin-top: 30px;
}

@media screen and (min-width: 992px) {
  .newsletter-subscribe form input[type="text"],
  .newsletter-subscribe form input[type="email"],
  .newsletter-subscribe form input[type="submit"] {
    margin: 80px 8px 0;
  }
}

.newsletter-subscribe form input[type="submit"] {
  border: 2px solid #fff;
  outline: none;
}

.newsletter-subscribe form input[type="submit"]:focus {
  background: #9a28d7;
}

/*--------------------------------------------------------------
# Single Page Header
--------------------------------------------------------------*/
.page-header {
  height: 250px;
  padding: 100px 0 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover !important;
}

.page-header .entry-title {
  font-size: 42px;
  font-weight: bold;
  color: #fff;
}

@media screen and (min-width: 576px) {
  .page-header {
    height: 300px;
  }

  .page-header .entry-title {
    font-size: 52px;
  }
}

@media screen and (min-width: 992px) {
  .page-header {
    height: 400px;
    padding: 150px 0;
  }

  .page-header .entry-title {
    font-size: 72px;
  }
}

@media screen and (min-width: 1200px) {
  .page-header {
    height: 525px;
    padding: 220px 0;
  }
}

.events-page-header {
  background-image: url("images/single-event-bg.jpg");
}

.single-event-page-header {
  background-image: url("images/single-event-bg.jpg");
}

.events-news-page-header {
  background-image: url("images/events-news-bg.jpg");
}

.contact-page-header {
  background-image: url("images/contact-bg.jpg");
}

.elements-page-header {
  background-image: url("images/elements-bg.jpg");
}

/*--------------------------------------------------------------
# Events List
--------------------------------------------------------------*/
.events-search {
  padding: 50px 0;
}

.events-search input[type="date"],
.events-search input[type="text"] {
  width: 100%;
  padding: 12px 24px;
  margin: 0 6px 30px;
  border: 1px solid #e5e5e5;
  font-size: 16px;
  outline: none;
  background: #f3f8f9;
  color: #232127;
}

.events-search input[type="text"]::placeholder {
  font-style: italic;
}

.events-search .btn {
  border-color: transparent;
  outline: none;
}

.events-search .btn:focus {
  background: #9a28d7;
  outline: none;
}

.events-list-page .single-event {
  display: none;
  margin-bottom: 30px;
}

.events-list-page .single-event.visible {
  display: block;
}

.events-list-page .events-thumbnail {
  margin: 0;
}

.events-list-page .events-thumbnail img {
  display: block;
  width: 100%;
}

.events-list-page .event-content-wrap {
  padding: 48px 36px 36px;
  border: 1px solid #e5e5e5;
  border-top: 0;
  background: #f3f8f9;
}

.events-list-page .event-content-wrap .entry-title {
  font-size: 28px;
  font-weight: bold;
  color: #232127;
  text-decoration: none;
}

.events-list-page .event-content-wrap .entry-title a {
  color: #232127;
}

.events-list-page .event-content-wrap .event-location {
  padding-left: 32px;
  margin-top: 12px;
  background: url("images/location-icon.png") no-repeat left top;
}

.events-list-page .event-content-wrap .event-location a {
  font-size: 14px;
  font-weight: bold;
  color: #232127;
  text-decoration: none;
}

.events-list-page .event-content-wrap .event-date {
  margin-top: 6px;
  font-size: 16px;
  color: #9a28d7;
}

.events-list-page .event-content-wrap .event-cost {
  width: 124px;
  height: 52px;
  margin-right: -37px;
  font-size: 14px;
  color: #777777;
  background: #fff;
}

.events-list-page .event-content-wrap .event-cost span {
  margin-left: 4px;
  font-size: 24px;
  font-weight: bold;
  color: #9a28d7;
}

.events-list-page .event-content-wrap .entry-content p {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.7;
  color: #777777;
}

.events-list-page .event-content-wrap .entry-footer {
  margin-top: 36px;
}

.events-list-page .event-content-wrap .entry-footer a {
  padding-bottom: 2px;
  font-size: 18px;
  font-weight: bold;
  color: #9a28d7;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 2px solid #9a28d7;
}

.events-list-page .load-more-btn {
  text-align: center;
  margin: 84px 0;
}

.events-list-page .load-more-btn .btn:focus {
  background: #9a28d7;
}

/*--------------------------------------------------------------
# Upcoming Events
--------------------------------------------------------------*/
.upcoming-events-outer {
  padding: 400px 0 120px;
  margin-top: -200px;
  background: url("images/upcoming-events-bg.jpg") no-repeat;
  background-size: cover;
}

.upcoming-events {
  background: #fff;
}

.upcoming-events-header {
  padding: 20px 42px;
  background: #9a28d7;
}

.upcoming-events-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.upcoming-events-list .upcoming-event-wrap {
  padding: 30px 20px;
  border-bottom: 2px solid #e0e3e4;
}

.upcoming-events-list .upcoming-event-wrap:nth-last-of-type(1) {
  border-bottom: 0;
}

.upcoming-events-list .events-thumbnail {
  width: 104px;
  height: 104px;
  margin: 0;
}

.upcoming-events-list .events-thumbnail img {
  display: block;
  width: 100%;
}

.upcoming-events-list .entry-header {
  margin-top: 30px;
  width: 100%;
}

.upcoming-events-list .entry-meta .event-date {
  font-size: 48px;
  line-height: 1.2;
  color: #232127;
  text-align: center;
}

.upcoming-events-list .entry-meta .event-date span {
  display: block;
  font-size: 18px;
  font-weight: bold;
}

.upcoming-events-list .entry-title {
  margin: 0;
}

.upcoming-events-list .entry-title a {
  font-size: 24px;
  font-weight: bold;
  color: #232127;
  text-decoration: none;
}

.upcoming-events-list .entry-header .event-date-time {
  font-size: 16px;
  color: #9a28d7;
}

.upcoming-events-list .entry-header .event-speaker {
  margin-top: 12px;
  font-size: 16px;
  color: #777777;
}

.upcoming-events-list .entry-header .event-speaker {
  margin-top: 12px;
  font-size: 16px;
  color: #777777;
}

.upcoming-events-list .entry-footer {
  width: 100%;
  margin-top: 30px;
}

.upcoming-events-list .entry-footer a {
  padding-bottom: 2px;
  font-size: 18px;
  font-weight: bold;
  color: #9a28d7;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 2px solid #9a28d7;
}

@media screen and (min-width: 992px) {
  .upcoming-events-list .upcoming-event-wrap {
    padding: 35px 15px;
  }

  .upcoming-events-list .entry-header,
  .upcoming-events-list .entry-footer {
    width: 45%;
    margin-top: 0;
  }

  .upcoming-events-list .entry-footer {
    width: auto;
  }
}

/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/
ul.tabs-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.tabs-nav .tab-nav {
  padding: 6px 10px;
  border: 1px solid #e5e5e5;
  margin-right: 5px;
  background: #f3f8f9;
  font-size: 18px;
  font-weight: bold;
  color: #232127;
  cursor: pointer;
  transition: all 0.35s;
}

ul.tabs-nav .tab-nav.active {
  border-color: transparent;
  background: #9a28d7;
  color: #fff;
}

.tabs .tab-nav {
  margin-bottom: -1px;
  z-index: 99;
}

.tabs-container {
  border: 1px solid #e5e5e5;
  background: #f3f8f9;
  padding: 15px;
}

.tab-content {
  display: none;
}

.tab-content p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #777777;
}

@media screen and (min-width: 992px) {
  ul.tabs-nav .tab-nav {
    width: 235px;
    padding: 14px 24px;
    margin-right: 12px;
  }

  .tabs-container {
    padding: 48px;
  }
}

/*--------------------------------------------------------------
# Accordion
--------------------------------------------------------------*/
.accordion-wrap {
  position: relative;
}

.accordion-wrap .entry-content {
  margin: 0;
}

.accordion-wrap .entry-title {
  padding: 18px 28px;
  margin-bottom: 15px;
  border: 1px solid #e5e5e5;
  background: #f3f8f9;
  font-size: 18px;
  font-weight: bold;
  color: #232127;
  cursor: pointer;
}

.accordion-wrap .entry-title.active {
  background: #9a28d7;
  color: #fff;
}

.accordion-wrap .entry-title .arrow-r::before {
  content: "+";
}

.accordion-wrap .entry-title .arrow-d::before {
  content: "-";
}

/*
# Content
----------------------------------*/
.accordion-wrap .entry-content {
  display: none;
}

.accordion-wrap .entry-content p {
  padding: 24px 0;
  font-size: 18px;
  line-height: 1.7;
  color: #777777;
}

/*--------------------------------------------------------------
# Single Events Page
--------------------------------------------------------------*/
.single-event-page .event-content-wrap {
  margin-top: 20px;
}

.single-event-page .single-event-heading {
  width: 100%;
}

.single-event-page .event-content-wrap .entry-title {
  font-size: 36px;
  font-weight: bold;
  color: #232127;
  text-decoration: none;
}

.single-event-page .event-content-wrap .event-location {
  padding-left: 32px;
  margin-top: 12px;
  background: url("images/location-icon.png") no-repeat left top;
}

.single-event-page .event-content-wrap .event-location a {
  font-size: 14px;
  font-weight: bold;
  color: #232127;
  text-decoration: none;
}

.single-event-page .event-content-wrap .event-date {
  margin-top: 6px;
  font-size: 16px;
  color: #9a28d7;
}

/*.single-event-page .buy-tickets {
    margin-top: 30px;
}*/

.single-event-page .buy-tickets .btn:focus {
  background: #9a28d7;
}

.single-event-page .event-content-wrap .events-thumbnail {
  margin-top: 36px;
  margin-bottom: 0;
}

.single-event-page .event-content-wrap .events-thumbnail img {
  display: block;
  width: 100%;
}

.single-event-page .tabs {
  margin-top: 64px;
}

.single-event-page .tabs-container {
  padding: 15px;
}

@media screen and (min-width: 992px) {
  .single-event-page .tabs-container {
    padding: 25px 35px;
  }
}

.single-event-details {
  width: 100%;
}

.single-event-page .single-event-details-row {
  margin-bottom: 40px;
}

.single-event-page .single-event-details-row:nth-last-of-type(1) {
  margin-bottom: 0;
}

.single-event-details,
.single-event-details a,
.single-event-details label {
  font-size: 18px;
  font-weight: bold;
  color: #777777;
}

.single-event-details label {
  display: block;
  color: #232127;
}

.single-event-details-row span {
  color: #ff005a;
}

.single-event-map {
  width: 100%;
  margin-top: 30px;
}

.single-event-map iframe {
  width: 100%;
  height: 460px;
}

.event-tickets {
  padding: 15px;
  margin-top: 36px;
  border: 1px solid #e5e5e5;
  background: #f3f8f9;
}

.event-tickets .ticket-row {
  margin-bottom: 60px;
}

.event-tickets .ticket-row:nth-last-of-type(1) {
  margin-bottom: 0;
}

.ticket-type,
.event-tickets .number-of-ticket {
  padding: 15px 24px;
  margin-right: 15px;
  margin-bottom: 20px;
  background: #fff;
}

.ticket-type {
  width: 100%;
}

.event-tickets .ticket-type .entry-title,
.event-tickets .ticket-type .ticket-price,
.event-tickets .number-of-ticket {
  font-size: 18px;
  font-weight: bold;
  color: #232127;
}

.event-tickets .ticket-type .entry-title span {
  margin-right: 18px;
  font-size: 18px;
  font-weight: bold;
  color: #232127;
}

.event-tickets .ticket-type .entry-title,
.event-tickets .clear-ticket-count {
  font-size: 16px;
  font-weight: normal;
  color: #777777;
}

.event-tickets .ticket-type .entry-title {
  display: inline-block;
}

.event-tickets .ticket-type .ticket-price {
  color: #9a28d7;
}

.event-tickets .number-of-ticket {
  width: 120px;
}

.event-tickets .number-of-ticket .ticket-count {
  width: 32px;
  border: 0;
  text-align: center;
}

.event-tickets .number-of-ticket .decrease-ticket,
.event-tickets .number-of-ticket .increase-ticket {
  width: 18px;
  height: 28px;
  cursor: pointer;
  text-align: center;
}

.event-tickets .number-of-ticket .ticket-count::-webkit-outer-spin-button,
.event-tickets .number-of-ticket .ticket-count::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.event-tickets .clear-ticket-count {
  width: 80px;
  text-align: center;
  cursor: pointer;
}

.event-tickets .btn {
  cursor: pointer;
}

.event-tickets .btn:focus {
  background: #9a28d7;
}

.single-event-page .upcoming-events {
  margin-top: 36px;
  border: 2px solid #d6d6d6;
  border-top: 0;
}

.single-event-page .upcoming-events-header {
  margin: 0 -2px;
}

@media screen and (min-width: 768px) {
  .single-event-page .single-event-heading {
    width: auto;
  }

  .single-event-details {
    width: 220px;
  }

  .single-event-map {
    width: calc(100% - 220px);
    margin: 0;
  }

  .event-tickets {
    padding: 30px 25px;
  }
}

@media screen and (min-width: 992px) {
  .single-event-details {
    width: 320px;
  }

  .single-event-map {
    width: calc(100% - 320px);
    margin: 0;
  }

  .event-tickets .ticket-row {
    margin-bottom: 15px;
  }

  .ticket-type {
    width: calc(100% - 400px);
    margin-bottom: 0;
  }

  .event-tickets .number-of-ticket {
    margin-bottom: 0;
  }
}

/*--------------------------------------------------------------
# Events News
--------------------------------------------------------------*/
.events-news-page .events-news-post {
  margin-top: 80px;
  margin-bottom: 40px;
}

.events-news-page .events-news-post .entry-title,
.events-news-page .events-news-post .entry-title a {
  font-size: 36px;
  font-weight: bold;
  color: #232127;
}

.events-news-page .events-news-post .entry-meta {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
  color: #777;
}

.events-news-page .events-news-post .entry-meta > div {
  padding-right: 15px;
  margin-right: 15px;
  border-right: 2px solid #777;
}

.events-news-page .events-news-post .entry-meta > div:nth-last-of-type(1) {
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
}

.events-news-page .events-news-post .entry-meta a {
  color: #777;
  text-decoration: none;
}

.events-news-page .events-news-post figure {
  position: relative;
  margin: 25px 0 0;
}

.events-news-page .events-news-post figure img {
  display: block;
  width: 100%;
}

.events-news-page .events-news-post .posted-date {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 52px;
  padding: 12px 10px;
  border: 2px solid #fff;
  border-radius: 50px;
  background: -moz-linear-gradient(
    180deg,
    rgba(171, 0, 229, 1) 0%,
    rgba(88, 20, 121, 1) 100%
  ); /* ff3.6+ */
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0%, rgba(88, 20, 121, 1)),
    color-stop(100%, rgba(171, 0, 229, 1))
  ); /* safari4+,chrome */
  background: -webkit-linear-gradient(
    180deg,
    rgba(171, 0, 229, 1) 0%,
    rgba(88, 20, 121, 1) 100%
  ); /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(
    180deg,
    rgba(171, 0, 229, 1) 0%,
    rgba(88, 20, 121, 1) 100%
  ); /* opera 11.10+ */
  background: -ms-linear-gradient(
    180deg,
    rgba(171, 0, 229, 1) 0%,
    rgba(88, 20, 121, 1) 100%
  ); /* ie10+ */
  background: linear-gradient(
    270deg,
    rgba(171, 0, 229, 1) 0%,
    rgba(88, 20, 121, 1) 100%
  ); /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#581479', endColorstr='#ab00e5',GradientType=1 ); /* ie6-9 */

  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 576px) {
  .events-news-page .events-news-post .posted-date {
    top: 25px;
    left: -27px;
    padding: 24px 10px;
  }
}

.events-news-page .events-news-post .posted-date span {
  display: block;
}

.events-news-page .events-news-post .entry-content {
  margin-top: 40px;
}

.events-news-page .events-news-post .entry-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #777777;
}

.blog-pagination ul {
  padding: 0;
  margin: 65px 0 120px;
  list-style: none;
}

.blog-pagination li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;

  font-size: 18px;
  font-weight: bold;
  color: #232127;
}

.blog-pagination li a {
  display: block;
  color: #232127;
  text-decoration: none;
}

.blog-pagination li.active {
  width: 60px;
  padding-left: 30px;
}

.blog-pagination li.active::before {
  content: "";
  position: absolute;
  bottom: 9px;
  left: 0;
  z-index: 99;
  width: 32px;
  height: 2px;
  background: #232127;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-location-details {
  margin-top: 80px;
}

.contact-location-details .entry-title {
  font-size: 60px;
  font-weight: bold;
  color: #232127;
}

.contact-location-details .entry-content {
  margin-top: 26px;
  font-size: 18px;
  line-height: 1.7;
  color: #777777;
}

.contact-location-details .entry-footer ul {
  padding: 0;
  margin: 42px 0 0;
  list-style: none;
}

.contact-location-details .entry-footer li {
  padding-left: 48px;
  margin-bottom: 12px;
  font-size: 18px;
  color: #232127;
}
.contact-location-details .entry-footer li a {
  color: #232127;
  text-decoration: none;
}

.contact-location-details .entry-footer li.contact-address {
  background: url("images/location-icon.png") no-repeat left center;
}

.contact-location-details .entry-footer li.contact-number {
  background: url("images/phone-icon.png") no-repeat left center;
}

.contact-location-details .entry-footer li.contact-email {
  background: url("images/folder-icon.png") no-repeat left center;
}

.contact-page-map {
  margin-top: 80px;
}

.contact-page-map iframe {
  width: 100%;
  height: 540px;
}

.contact-form {
  margin: 120px 0;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 14px 22px;
  margin-bottom: 30px;
  border: 1px solid #e5e5e5;
  background: #f3f8f9;
  color: #232127;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  outline: none;
}

.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form textarea::placeholder {
  font-style: italic;
}

.contact-form input[type="submit"] {
  margin-top: 36px;
  border: 0;
}

.contact-form input[type="submit"]:focus {
  outline: none;
  background: #9a28d7;
}

/*--------------------------------------------------------------
# Elements Page
--------------------------------------------------------------*/
.elements-wrap {
  margin-top: 80px;
}

.elements-page .elements-heading .entry-title {
  font-size: 60px;
  font-weight: bold;
  color: #232127;
}

.elements-page .elements-container {
  margin-top: 54px;
}

/*
# Circular Progress Bar
----------------------------------*/
.circular-progress-bar {
  margin: 20px 0;
  text-align: center;
}

.circular-progress-bar .circle {
  position: relative;
  width: 124px;
  height: 124px;
  margin: 0 auto;
}

.circular-progress-bar .circle strong {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -18px;
  width: 100%;
  font-size: 24px;
  color: #232127;
}

.circular-progress-bar .entry-title {
  margin-top: 24px;
  font-size: 22px;
  font-weight: bold;
  color: #232127;
}

.circular-progress-bar p {
  font-size: 18px;
  color: #777;
}

/*
# Counter Box
----------------------------------*/
.counter-box {
  margin: 20px 0;
  text-align: center;
}

.counter-box .start-counter {
  margin-top: 24px;
  font-size: 60px;
  color: #232127;
}

.counter-box .entry-title {
  font-size: 18px;
  color: #777777;
}

/*
# Icon Box
----------------------------------*/
.icon-box {
  margin: 20px 0;
}

.icon-box figure {
  width: 84px;
  margin: 0;
  text-align: center;
}

.icon-box figure img {
  max-width: 100%;
}

.icon-box .entry-header {
  width: calc(100% - 94px);
}

.icon-box .entry-title {
  font-size: 28px;
  font-weight: bold;
  color: #232127;
}

.icon-box .date {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #777;
}

.icon-box .date span {
  color: #9a28d7;
}

.icon-box .entry-content {
  margin-top: 24px;
}

.icon-box .entry-content p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #777;
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  padding: 75px 0;
  background: #002942;
  text-align: center;
}

.footer-logo img {
  max-width: 100%;
}

.footer-navigation ul,
.footer-social ul {
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.footer-navigation li {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}

.footer-navigation li a {
  display: block;
  padding: 8px 12px;
  color: #fff;
}

.footer-social li a {
  display: block;
  width: 16px;
  height: 22px;
  margin: 12px;
  color: #8f8f8f;
  transition: all 0.35s;
}

.footer-social li a:hover {
  color: #fff;
}

.back-to-top {
  position: fixed;
  z-index: 9999;
  right: 64px;
  bottom: 84px;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #379dff;
  transition: all 0.35s;
  cursor: pointer;

  visibility: hidden;
  opacity: 0;
}

.back-to-top.show {
  visibility: visible;
  opacity: 1;
}

.back-to-top span {
  display: block;
  width: 20px;
  padding-top: 4px;
}

.back-to-top path {
  fill: #fff;
}

.original-price {
  font-size: 24px;
  font-weight: bold;
  color: #9a28d7;
}
.showcase {
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.travel-card {
  position: relative;
  display: inline-flex;
  flex-flow: column nowrap;
  font-weight: 300;
  background-color: white;
  box-shadow: 0px 0px 100px -10px rgba(0, 0, 0, 0.2);
  width: 350px;
  
  &:hover > .button-favorite {
    display: inline-flex;
  }
  
  &:hover > .image > img {
    transform: scale(1.2);
  }
  
  & .image {
    width: 100%;
    height: 250px;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    overflow: hidden;
 
    & > img {
      width: 100%;
      height: 100%;
      background-position: center;
      background-size: cover;
      border-top-left-radius: inherit;
      border-top-right-radius: inherit;
      transition: all .28s ease-in-out;
    }
  }
  
  & > .content {
        color: #545454;
        padding: 1em 1.5em;
        border: 1px solid #e5e5e5;
        border-top: 0;
        background: #f3f8f9;
    
    & > :nth-child(1n+2) {
      margin-top: 1em;
    }
    
    & > .category {
      font-size: 1.2em;
      color: #bababa;
    }
    
    & > .topic {
      font-size: 24px;
      line-height: calc(1rem * 2.);
      max-height: calc(1rem * 2.8 * 2);
      overflow: hidden;
      position: relative;
      color: #000;
    }
    
    & > .recommendation {
      display: flex;
      align-items: center;

      & > .score {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        background: rgb(254,207,139);
        background: linear-gradient(130deg, rgb(154 40 215) 0%, rgb(154 40 215) 75%, rgb(154 40 215) 100%);
        color: white;
        padding: 5px 8px;
        border-radius: 30px;
        user-select: none;
        
        & > :first-child {
          padding-top: 1px;
          padding-left: 4px;
        }

        & > :last-child {
          font-size: 1.1em;
          padding-left: 6px;
        }
      }
      
      & > .comment {
        color: #bababa;
        margin-left: 1.5em;
      }
    }
    
    & > .price {
      display: flex;
      justify-content: space-between;
      align-items: center;
      
      & > .discount-info {
        color: #9a28d7;
      }
      
      & > .original-price {
        font-size: 2em;
      }
    }
  }
  

        .auth-container {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .auth-container *,
        .auth-container *::before,
        .auth-container *::after {
            box-sizing: border-box;
        }

        .form-wrapper {
            position: relative;
            width: 420px;
            height: auto;
            min-height: 680px;
            perspective: 1000px;
        }

        .form-container {
            position: relative;
            width: 100%;
            height: auto;
            min-height: 680px;
            transform-style: preserve-3d;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .form-container.flipped {
            transform: rotateY(180deg);
        }

        .form-side {
            position: absolute;
            width: 100%;
            height: auto;
            min-height: 680px;
            backface-visibility: hidden;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 24px;
            padding: 32px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .signup-form {
            transform: rotateY(0deg);
        }

        .login-form {
            transform: rotateY(180deg);
        }

        .form-header {
            text-align: center;
            margin-bottom: 24px;
        }

        .form-title {
            font-size: 28px;
            font-weight: 700;
            color: #1e293b;
            margin: 0 0 8px 0;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .form-subtitle {
            color: #64748b;
            font-size: 14px;
            margin: 0;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-label {
            display: block;
            color: #334155;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .form-input {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 16px;
            background: rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
            outline: none;
        }

        .form-input:focus {
            border-color: #6366f1;
            background: rgba(255, 255, 255, 1);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
        }

        .form-input::placeholder {
            color: #a0aec0;
        }

        .password-group {
            position: relative;
        }

        .password-toggle {
            position: absolute;
            right: 10px;
            top: 67%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #a0aec0;
            cursor: pointer;
            padding: 4px;
            transition: color 0.2s;
        }

        .password-toggle:hover {
            color: #667eea;
        }

        .password-icon {
            width: 20px;
            height: 20px;
        }

        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
            font-size: 14px;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .form-checkbox {
            width: 16px;
            height: 16px;
            accent-color: #667eea;
        }

        .forgot-link {
            color: #667eea;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }

        .forgot-link:hover {
            color: #764ba2;
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border: none;
            padding: 16px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(99, 102, 241, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .form-divider {
            text-align: center;
            margin: 16px 0;
            position: relative;
            color: #94a3b8;
            font-size: 14px;
        }

        .form-divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: #e2e8f0;
            z-index: 1;
        }

        .form-divider span {
            background: rgba(255, 255, 255, 0.95);
            padding: 0 16px;
            position: relative;
            z-index: 2;
        }

        .social-login {
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
        }

        .social-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.8);
            color: #475569;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .social-btn:hover {
            border-color: #6366f1;
            background: rgba(255, 255, 255, 1);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .social-icon {
            width: 20px;
            height: 20px;
        }

        .form-switch {
            text-align: center;
            margin-top: 16px;
        }

        .switch-text {
            color: #64748b;
            font-size: 14px;
            margin: 0;
        }

        .switch-link {
            color: #6366f1;
            font-weight: 600;
            cursor: pointer;
            transition: color 0.2s;
        }

        .switch-link:hover {
            color: #8b5cf6;
        }

        .form-row {
            display: flex;
            gap: 12px;
        }

        .form-row .form-group {
            flex: 1;
        }

        .terms-text {
            color: #64748b;
            font-size: 12px;
            line-height: 1.4;
            margin-top: 8px;
            margin-bottom: 16px;
        }

        .terms-link {
            color: #6366f1;
            text-decoration: none;
        }

        .terms-link:hover {
            text-decoration: underline;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .form-side {
            animation: fadeInUp 0.6s ease-out;
        }



/* Card Styling */
.contest-card {
  position: relative;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(212, 175, 55, 0.1);
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  max-width: 600px;
  margin: 20px auto;
}
.contest-card:hover {
  transform: scale(1.02);
}

/* Header */
.contest-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.contest-header-main {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contest-icon {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.75rem;
  border-radius: 50%;
  color: #d4af37;
}
.contest-title {
  font-size: 1.25rem;
  font-weight: bold;
}
.contest-subtext {
  font-size: 0.875rem;
  color: #6b6b6b;
}
.contest-badge {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: #d4af37;
  border-radius: 9999px;
}

/* Content Info */
.contest-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .contest-content {
    grid-template-columns: repeat(3, 1fr);
  }
}
.contest-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contest-info i {
  color: #6b6b6b;
  font-size: 1rem;
}
.info-title {
  font-size: 0.875rem;
  font-weight: 600;
}
.info-sub {
  font-size: 0.75rem;
  color: #6b6b6b;
}

/* Featured Contests */
.contest-featured {
  margin-top: 1.5rem;
}
.featured-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  border: 1px solid #ccc;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
}

/* Footer */
.contest-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}
.btn-details {
  border: 1px solid #ccc;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-details:hover {
  background: #f0f0f0;
  transform: scale(1.05);
}

/* Layer Number Overlay */
.contest-layer-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3rem;
  font-weight: bold;
  opacity: 0.1;
}
a.copyright-text {
    font-size: 16px;
    color: #d6d6d6 !important;
}

select#contests {
    width: 100%;
    padding: 12px 24px;
    margin: 0 6px 30px;
    border: 1px solid #e5e5e5;
    font-size: 16px;
    outline: none;
    background: #f3f8f9;
    color: #232127;
}
.event-description {
    font-size: 16px;
    color: #5e5e5e;
    line-height: 1.5;
    margin-bottom: 20px;
}
p.footer-text.text-white {
    font-size: 16px !important;
}

.Notification-btn {
    background: -webkit-linear-gradient(#30a9ee, #2899df) !important;
    color: #fff;
    padding: 15px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.btn:hover, .open-btn:hover {
    background: -webkit-linear-gradient(#b47c0e, #e99d08) !important;
}
.btn:hover, .open-btn:hover {
    background: -webkit-linear-gradient(#b47c0e, #e99d08) !important;
}
.btn, .open-btn {
    background: -webkit-linear-gradient(#30a9ee, #2899df) !important;
    color: #fff;
    padding: 15px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.homepage-featured-events .event-content-wrap .entry-header .entry-title {
    display: inline-block;
    padding: 12px 18px;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    background: #30a9ee;
}
button#openModal {
    background: -webkit-linear-gradient(#30a9ee, #2899df) !important;
}

/* Mobile View */

/* 0) Global mobile-safe defaults */
*, *::before, *::after { box-sizing: border-box; }
img, video { max-width: 100%; height: auto; display: block; }
html { -webkit-text-size-adjust: 100%; }
body { overflow-wrap: anywhere; word-break: break-word; }

/* Respect reduced motion on mobile */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* 1) Navigation — bigger tap target, smoother drawer, lock scroll when open */
.hamburger-menu {
  width: 44px; height: 44px; max-width: none; margin-left: 12px; /* min 44x44 */
}
.hamburger-menu span { height: 3px; }
.hamburger-menu span:nth-child(1) { top: 10px; }
.hamburger-menu span:nth-child(2),
.hamburger-menu span:nth-child(3) { top: 21px; }
.hamburger-menu span:nth-child(4) { top: 32px; }

/* Off-canvas tweaks */
.site-navigation { right: 12px; }
.site-navigation ul {
  width: 90%; max-width: 420px; padding: 20px; height: 100svh; /* 'safe' viewport */
  overflow-y: auto;
}
.site-navigation.show::after { /* page overlay when menu is open */
  content: ""; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 9998;
}
/* Use body.nav-open via JS when opening the menu (prevents background scroll) */
body.nav-open { overflow: hidden; }

/* 2) Hero — avoid 100vh traps; use safe viewport & fluid type */
.hero-slider { height: auto !important; min-height: 100svh; }
.hero-content { padding-top: clamp(80px, 12vh, 140px); padding-bottom: clamp(40px, 10vh, 100px); }
.hero-slider .entry-title { font-size: clamp(22px, 6vw, 36px); line-height: 1.25; }

/* 3) Buttons — slimmer padding on mobile to avoid overflow */
.btn { padding: 12px 18px !important; font-size: 16px; line-height: 1.1; }

/* 4) Page header — reduce vertical space on phones */
.page-header { height: auto; padding: 80px 0 60px; }
.page-header .entry-title { font-size: clamp(28px, 7vw, 40px); }

/* 5) Featured & Next Events — prevent cramped overlays */
.homepage-featured-events { padding: 64px 0 96px; }
.featured-events-wrap .event-content-wrap { width: 100% !important; margin-bottom: 16px; position: static !important; }
.homepage-next-events .next-event-wrap .entry-title { font-size: clamp(20px, 5vw, 24px); }
.homepage-next-events .next-event-wrap .entry-content p { font-size: 16px; }

/* Rating pill stays visible but smaller on phones */
.homepage-next-events .next-event-wrap .event-rating {
  width: 64px; height: 64px; top: -24px; left: 16px; font-size: 18px;
}

/* 6) Regional/Upcoming sections — trim padding, remove large negative offset */
.homepage-regional-events { padding-top: 140px; }
.upcoming-events-outer { padding: 80px 0; margin-top: 0; }
.upcoming-events-header h4 { font-size: 16px; }

/* 7) Lists, cards & text — readable sizes on small screens */
.events-list-page .event-content-wrap { padding: 28px 20px; }
.events-list-page .event-content-wrap .entry-title { font-size: 22px; }
.entry-content.text p, .homepage-info-section .entry-content p { font-size: 16px; }

/* 8) Newsletter — less padding on mobile */
.newsletter-subscribe { padding: 80px 0; }
.newsletter-subscribe .entry-title { font-size: clamp(24px, 6vw, 32px); }

/* 9) Maps — shrink embed height on mobile */
.single-event-map iframe, .contact-page-map iframe { height: 320px; }

/* 10) Footer — comfortable spacing and tappable “back to top” */
.site-footer { padding: 48px 0; }
.back-to-top { right: 16px; bottom: 16px; width: 48px; height: 48px; }

/* 11) Auth / forms — fluid container */
.auth-container { min-height: 100svh; padding: 16px; }
.form-wrapper, .form-container, .form-side { width: 100%; min-height: unset; }
.form-side { padding: 20px; border-radius: 16px; }
.form-row { flex-direction: column; gap: 0; }
.social-login { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

/* 12) Travel card — flatten SCSS-like nesting so it works in plain CSS + make fluid */
.travel-card { width: 100%; max-width: 360px; }
.travel-card .image { width: 100%; height: 220px; overflow: hidden; border-top-left-radius: inherit; border-top-right-radius: inherit; }
.travel-card .image > img { width: 100%; height: auto; background-position: center; background-size: cover;
  border-top-left-radius: inherit; border-top-right-radius: inherit; transition: transform .28s ease-in-out; }
.travel-card:hover .image > img { transform: scale(1.2); }
.travel-card > .content { color: #545454; padding: 1em 1.25em; border: 1px solid #e5e5e5; border-top: 0; background: #f3f8f9; }
.travel-card > .content > .category { font-size: 1rem; color: #bababa; }
.travel-card > .content > .topic { font-size: 20px; line-height: 1.3; max-height: calc(1.3em * 2.8 * 2); overflow: hidden; color: #000; }
.travel-card > .content > .recommendation { display: flex; align-items: center; gap: .75rem; }
.travel-card > .content > .recommendation > .score { display: inline-flex; align-items: center; background: linear-gradient(130deg, #9a28d7 0%, #9a28d7 100%); color: #fff; padding: 4px 8px; border-radius: 30px; }
.travel-card > .content > .price { display: flex; justify-content: space-between; align-items: center; }

/* 13) Highly targeted mobile overrides for small screens */
@media (max-width: 575.98px) {
  .site-header .buy-tickets,
  .Notification-btn { margin: 12px 0 0 0 !important; text-align: right; }

  .homepage-info-section { padding: 64px 0; }
  .homepage-info-section .entry-title { font-size: 20px; }

  .events-partners { padding: 80px 0; }
  .events-partners-logos .event-partner-logo { min-width: 160px; margin-top: 40px; }

  .event-tickets { padding: 16px; }
  .ticket-type, .event-tickets .number-of-ticket { margin-right: 8px; }
  .event-tickets .number-of-ticket { width: 100px; }
  .site-footer { padding: 75px 0; background: #002942; text-align: center; }
}

@media screen and (max-width: 768px) {
    .site-footer { padding: 75px 0; background: #002942; text-align: center; }
}
