div.item-info .p-8 {
  overflow-wrap: break-word;
}

div.item-info .map-single.ecosystem_types a {
  height: auto !important;
  white-space: normal;
}

/* Animations */
.slide-in-top,
.slide-in-right,
.slide-in-bottom,
.bounce-top,
.fade-in {
  opacity: 0;
}

.slide-in-top.active {
  opacity: 1;
  animation-name: slide-in-top;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation-fill-mode: both;
}

.slide-in-right.active {
  opacity: 1;
  animation-name: slide-in-right;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation-fill-mode: both;
}

.fade-in.active {
  opacity: 1;
  animation-name: fade-in;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation-fill-mode: both;
}

.bounce-top.active {
  opacity: 1;
  animation-name: bounce-top, slide-in-top;
  animation-duration: 3.5s, 0.5s;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94), cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation-iteration-count: infinite, 1;
}

.slide-in-bottom.active {
  opacity: 1;
  animation-name: slide-in-bottom;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation-fill-mode: both;
}

.scale-in-center {
  animation: scale-in-center 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.logo-rotate {
  animation: rotate 8s linear infinite;
}

/* Delays */
.first-delay {
  animation-delay: 250ms;
  transition: opacity 0.5s 250ms;
}

.second-delay {
  animation-delay: 750ms;
  transition: opacity 0.5s 750ms;
}

.third-delay {
  animation-delay: 1.25s;
  transition: opacity 0.5s 1.25s;
}

.fourth-delay {
  animation-delay: 1.75s;
  transition: opacity 0.5s 1.75s;
}

/* Keyframes */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes scale-in-center {
  0% {
    transform: scale(0);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-1000px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    transform: translateX(2000px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes bounce-top {
  0% {
    transform: translateY(0);
    animation-timing-function: ease-in;
    opacity: 1;
  }

  12% {
    opacity: 1;
  }

  20% {
    transform: translateY(-24px);
    animation-timing-function: ease-in;
  }

  33% {
    transform: translateY(-12px);
    animation-timing-function: ease-in;
  }

  41% {
    transform: translateY(-6px);
    animation-timing-function: ease-in;
  }

  47% {
    transform: translateY(-4px);
    animation-timing-function: ease-in;
  }

  13%,
  27%,
  37%,
  43% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }

  50% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
}

@keyframes slide-in-bottom {
  0% {
    transform: translateY(1000px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Banner */
@font-face {
  font-family: "Unbounded-Light";
  src:
    url("/wp-content/themes/munichstartup/resources/assets/fonts/Unbounded-Light.woff2") format("woff2"),
    url("/wp-content/themes/munichstartup/resources/assets/fonts/Unbounded-Light.woff") format("woff");
}

@font-face {
  font-family: "Unbounded-Semibold";
  src:
    url("/wp-content/themes/munichstartup/resources/assets/fonts/Unbounded-SemiBold.woff2") format("woff2"),
    url("/wp-content/themes/munichstartup/resources/assets/fonts/Unbounded-SemiBold.woff") format("woff");
}

#festival-banner {
  display: block;
  font-family: "Unbounded-Light", sans-serif;
}

#festival-banner .header {
  display: block;
  font-family: "Unbounded-Semibold", sans-serif;
}

@media (max-width: 767px) {
  .m-full-width {
    width: 100%;
  }

  .banner-podest {
    width: 300px;
    top: 8% !important;
    left: 10%;
  }

  .banner-halfcircle {
    width: 110px;
    top: -20% !important;
    left: 16% !important;
  }

  .banner-title {
    top: -3% !important;
    left: 30% !important;
    width: 225px;
  }

  .banner-pin {
    top: -7% !important;
    left: 14% !important;
    width: 50px;
  }

  .banner-text-field {
    height: auto !important;
    bottom: 0%;
    text-align: left;
    padding: 0 20px;
    padding-top: 20px;
  }

  .banner-banner {
    height: 500px !important;
  }

  .banner-one-stripe {
    bottom: 10% !important;
    right: 10% !important;
    width: 50px;
  }

  .banner-two-stripes {
    top: -9% !important;
    right: 2% !important;
  }

  .banner-four-stripes {
    bottom: 0% !important;
    left: 4% !important;
    width: 80px;
    top: 25%;
  }

  .banner-circle {
    top: 34% !important;
    left: auto !important;
    right: 8%;
    transform: none !important;
  }

  .banner-eclipse {
    bottom: -6% !important;
    right: 7% !important;
    transform: translateX(7%) !important;
  }
}

/* Logo */
#spinning-logo {
  opacity: 0;
  transition: opacity 0.5s;
}

#spinning-logo.active {
  opacity: 1;
}

/* ACTIVATE GOOGLE MAPS LINK ON VENUE */
.tribe-events-gmap {
  display: block !important;
}

.m-0-important {
  margin: 0 !important;
}
