/*! festivals ======================================== */

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

main {
  position: relative;
  width: 100%;
  min-height: 100vh;
  /* overflow: hidden; */
}
/*! class="bubbles" ====================================*/
.bubbles {
  --height-bubbles: 100vh;
  /* position: relative; */
  position: absolute;
  /* position: fixed; */
  display: flex;

  & span {
    position: relative;
    width: 30px;
    aspect-ratio: 1;
    /* height: 30px; */
    background: #2a04ca;
    margin: 0 4px;
    border-radius: 50%;
    /* box-shadow: 0 0 0 10px #4fc3dc44, 0 0 0 50px #4fc3dc44; */
    box-shadow: 0 0 0 10px#2a04ca44, 0 0 30px #2a04ca, 0 0 50px #2a04ca;
    animation: animateBubbles 15s linear infinite;
    animation-duration: calc(125s / var(--i));
  }
  & span:nth-child(even) {
    background: #c40951;
    box-shadow: 0 0 0 10px #c4095144, 0 0 30px #c40951, 0 0 50px #c40951;
  }
}
@keyframes animateBubbles {
  0% {
    transform: translateY(var(--height-bubbles)) scale(0);
  }
  100% {
    transform: translateY(-10vh) scale(1);
  }
}
/*! section"festivals" ====================================*/
.festivals {
  width: 100%;

  /* height: 100vh; */
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.glowing-text {
  position: relative;
  /* font-size: 5em; */
  text-transform: uppercase;
  color: transparent;
  font-family: var(--font-text);
  /* font-family: "Roboto", sans-serif; */
  font-style: italic;
  font-size: clamp(4em, 11.1vw, 7.5em);
  font-weight: 800;
  /* background: linear-gradient(to bottom, #222 0%, #222 50%, #111 50%, #111 100%); */
  background: linear-gradient(to bottom, #222 0%, #229 50%, #10c 50%, #111 100%);
  -webkit-background-clip: text;
  background-clip: text;
  &::before {
    content: attr(data-text);
    position: absolute;
    top: 4px;
    left: 4px;
    z-index: -1;
    /* background: linear-gradient(45deg, #0f0, #00f, #f00, #0f0, #ff0); */
    background: linear-gradient(45deg, #ff0, #00f, #f00, #0048ff, #d9d945);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
  }
  &::after {
    content: attr(data-text);
    position: absolute;
    top: 30px;
    left: 20px;
    z-index: -2;
    /* background: linear-gradient(45deg, #0f0, #00f, #f00, #0f0, #ff0); */
    background: linear-gradient(45deg, #ff0, #00f, #f00, #0048ff, #d9d945);
    /* background: linear-gradient(45deg, #ff0, #0f0, #f00, #00f, #0f0); */
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    filter: blur(20px);
  }
}
/*! .festivals .content ====================================*/
.festivals .content {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  /* flex-wrap: wrap; */
  /* flex-direction: row; */
  margin-top: 5vh;
  gap: 5vw;
  /* justify-content: center; */
  /* flex-wrap: wrap;
  flex-direction: row; */
  & .content-img {
    position: relative;
    width: 30vw;
    & img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  & .fabula {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 10px 0;
    width: 28vw;
    height: 70vh;
    z-index: 15;
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .festivals .content {
    margin-top: 20px;
    & .box {
      margin: 10px;
      & .img-bx {
        height: 260px;
      }
    }
  }
}
