/* UTILS */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.gap-s {
  gap: var(--space-s);
}
.gap-m {
  gap: var(--space-m);
}
.gap-l {
  gap: var(--space-l);
}
w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.text-center {
  text-align: center;
}
.px-section {
  padding-left: var(--section-padding-x);
  padding-right: var(--section-padding-x);
}
.py-section {
  padding-top: var(--section-space-m);
  padding-bottom: var(--section-space-m);
}
.pb-m {
  padding-bottom: var(--space-m);
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.container {
  width: 100%;
  max-width: var(--width-content);
  margin: 0 auto;
}
.mb-s {
  margin-bottom: var(--space-s);
}
.mb-m {
  margin-bottom: var(--space-m);
}
.mb-l {
  margin-bottom: var(--space-l);
}
.rounded {
  border-radius: 10rem;
}
.radius--media {
  border-radius: 0.4rem;
}
.overflow-hidden {
  overflow: hidden;
}
.video-iframe-wrap {
  align-items: center;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}
.video-iframe-wrap iframe {
  border: none;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.animation--pulse {
  animation: pulse 2s infinite;
  transition: transform 0.4s, background-color 0.2s;
  transition-behavior: normal, normal;
}
.animation--pulse:hover {
  animation-play-state: paused;
  background: var(--primary);
  background-repeat: repeat;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  65% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
