body {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  background: #050214;
  color: white;
}

.infos-page {
  min-height: 100vh;
  padding: 150px 8% 110px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,61,127,.22), transparent 28%),
    linear-gradient(rgba(5,2,20,.45), rgba(5,2,20,.98)),
    url("images/img1.jpg") center/cover fixed no-repeat;
}

.infos-hero {
  margin-bottom: 80px;
}

.infos-hero span {
  display: inline-block;
  background: #84db41;
  color:#180ea5;
  padding: 8px 24px;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.infos-hero h1 {
  margin: 24px 0 18px;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: .82;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.infos-hero p {
  max-width: 560px;
  color: rgba(255,255,255,.78);
  font-size: 1.15rem;
  line-height: 1.6;
}

.infos-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 60px;
  align-items: start;
}

.infos-card {
  position: sticky;
  top: 120px;
  background: #fff7ec;
  color: #09041f;
  border-radius: 28px;
  padding: 36px;
  transform: rotate(-2deg);
  box-shadow: 0 35px 90px rgba(0,0,0,.45);
}

.infos-card strong {
  display: block;
  font-size: 2.6rem;
  line-height: .78;
  text-transform: uppercase;
  letter-spacing: -.07em;
}

.infos-card p {
  margin: 28px 0;
  color: rgba(9,4,31,.72);
  line-height: 1.55;
  font-weight: 700;
}

.infos-card a {
  display: inline-block;
  background: #84db41;
  color: white;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
}

.infos-list {
  width: 100%;
}

.info-line {
  border-top: 2px dashed rgba(255,255,255,.28);
}

.info-line:last-child {
  border-bottom: 2px dashed rgba(255,255,255,.28);
}

.info-line button {
  width: 100%;
  padding: 22px 0;
  border: none;
  background: transparent;
  color: white;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.info-line button span {
  max-width: 760px;
  font-size: clamp(1.05rem, 1.8vw, 1.55rem);
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

.info-line button em {
  font-style: normal;
  font-size: 2rem;
  color: #84db41;
  font-weight: 300;
}

.info-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.info-content p,
.info-content ul {
  max-width: 720px;
  margin: 0 0 24px;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
  font-size: 1.05rem;
}

.info-content ul {
  list-style: none;
  padding: 0;
}

.info-content li {
  padding: 8px 0;
}

.info-content strong {
  color: #ff3d7f;
}

.info-content a {
  display: inline-block;
  margin-bottom: 32px;
  background: #ff3d7f;
  color: white;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  padding: 13px 25px;
  border-radius: 999px;
}

.info-line.active .info-content {
  max-height: 420px;
}

.info-line:hover button span {
  color: #84db41;
}
.infos-location {
  margin-top: 90px;
  max-width: 520px;
  margin-left: auto;
  padding: 34px;
  border-top: 2px dashed rgba(255,255,255,.28);
  border-bottom: 2px dashed rgba(255,255,255,.28);
}

.infos-location span {
  color: #ff3d7f;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .14em;
  font-size: .8rem;
}

.infos-location h2 {
  margin: 10px 0 18px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  text-transform: uppercase;
  line-height: .9;
  letter-spacing: -.05em;
}

.infos-location p {
  margin: 0 0 24px;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}

.infos-location a {
  display: inline-block;
  background: #ff3d7f;
  color: white;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  padding: 13px 25px;
  border-radius: 999px;
}
.infos-hero,
.infos-card,
.info-line {
  opacity: 0;
  animation: infosReveal .8s ease forwards;
}

.infos-hero {
  animation-delay: .1s;
}

.infos-card {
  animation-delay: .3s;
}

.info-line:nth-child(1) { animation-delay: .35s; }
.info-line:nth-child(2) { animation-delay: .42s; }
.info-line:nth-child(3) { animation-delay: .49s; }
.info-line:nth-child(4) { animation-delay: .56s; }
.info-line:nth-child(5) { animation-delay: .63s; }
.info-line:nth-child(6) { animation-delay: .70s; }
.info-line:nth-child(7) { animation-delay: .77s; }
.info-line:nth-child(8) { animation-delay: .84s; }

@keyframes infosReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.info-line {
  transition: border-color .25s ease;
}

.info-line button span,
.info-line button em {
  transition: color .25s ease, transform .25s ease;
}

.info-line:hover {
  border-color: rgba(255,255,255,.55);
}

.info-line:hover button em {
  transform: rotate(90deg);
}
@media (max-width: 900px) {
  .infos-page {
    padding: 130px 7% 80px;
    background-attachment: scroll;
  }

  .infos-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .infos-card {
    position: relative;
    top: auto;
    max-width: 360px;
  }

  .info-line button {
    padding: 26px 0;
  }
@media (max-width: 650px) {
  .infos-page {
    background:
      radial-gradient(circle at 15% 20%, rgba(255,61,127,.22), transparent 28%),
      linear-gradient(rgba(5,2,20,.45), rgba(5,2,20,.98)),
      url("images/infomobile.png") center/cover no-repeat;
  }
}
}