/**** ANIMATED ARROWED LINE ****/
.animated-line {
  height: 62px;
  width: 100%;
  padding: 12px 0;
  background-color: var(--black-color);
  flex-shrink: 0;
  overflow: hidden;
  border-top: 2px solid var(--white-color);
  border-bottom: 2px solid var(--white-color);
  display: flex;
  align-items: center;

  --line-segment-width: 1200px;
  --line-duration: 16s;
  --arrow-gap: 30;
  --arrow-gap-min: 28;
  --arrow-gap-max: 32;
  --arrow-edge-gap: 15px;
}
.animated-line__viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.animated-line__track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  will-change: transform;
  animation: marquee-left var(--line-duration) linear infinite;
}
.animated-line:hover .animated-line__track {
  animation-play-state: paused;
}
.animated-line--scroll-right .animated-line__track {
  animation-name: marquee-right;
}
.animated-line__segment {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
  box-sizing: border-box;
  padding-left: var(--arrow-edge-gap);
  padding-right: var(--arrow-edge-gap);
}
.animated-line__side {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: calc(var(--arrow-gap) * 1px);
  height: 100%;
  flex-shrink: 0;
}
.animated-line__side--left {
  justify-content: flex-end;
}
.animated-line__arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.animated-line__arrow-icon {
  width: 22px;
  height: 22px;
  fill: var(--white-color);
  display: block;
}
.animated-line__arrow-icon--up-right {
  transform: rotate(0deg);
}
.animated-line__arrow-icon--down-right {
  transform: rotate(90deg);
}
.animated-line__arrow-icon--down-left {
  transform: rotate(180deg);
}
.animated-line__arrow-icon--up-left {
  transform: rotate(270deg);
}
.animated-line__label {
  position: relative;
  padding: 0 14px;
  background-color: var(--black-color);
  flex-shrink: 0;
  margin: 0 20px;
}
.animated-line--label-left .animated-line__label {
  margin-left: 22px;
  margin-right: 20px;
}
.animated-line--label-center .animated-line__label {
  margin-left: 20px;
  margin-right: 20px;
}
.animated-line--label-right .animated-line__label {
  margin-left: 20px;
  margin-right: 22px;
}
.animated-line__text {
  font-family: "FrulaExtravagant";
  font-size: 28px;
  color: var(--white-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 400;
  white-space: nowrap;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--line-segment-width)));
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(calc(-1 * var(--line-segment-width)));
  }
  to {
    transform: translateX(0);
  }
}

/***** RESPONSIVE *****/

@media screen and (max-width: 560px) {
  .animated-line {
    height: 44px;
  }
  .animated-line__text {
    font-size: 16px;
  }
}
