.b-wave-layout__container {
  position: relative;
  height: 100%;
  width: 100%;
  color: white;
}
.b-want-layout__wave-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.b-want-layout__wave-box {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.b-want-layout__wave,
.b-want-layout__wave-two,
.b-want-layout__wave-three {
  position: absolute;
  top: 50%;
  left: 0;
  width: 200vw;
  height: 200vw;
  min-width: 1000px;
  min-height: 1000px;
  border-radius: 43%;
  transform-origin: 50% 48%;
  animation: drift linear infinite;
}

/* Desktop */
@media (min-width: 768px) {
.b-want-layout__wave,
  .b-want-layout__wave-two,
  .b-want-layout__wave-three {
    --wave-x: -35%;
    width: 120vmax;
    height: 120vmax;
}
}
/* Mobile */
@media (max-width: 767px) {
.b-want-layout__wave,
  .b-want-layout__wave-two,
  .b-want-layout__wave-three {
    --wave-x: -50%;
    top: 45%;
}
}
.b-want-layout__wave {
  background: #295F98;
  opacity: 0.4;
  animation-duration: 70000ms;
}
.b-want-layout__wave-two {
  background: #1D1D1D;
  opacity: 0.1;
  animation-duration: 30000ms;
}
.b-want-layout__wave-three {
  background: #295F98;
  animation-duration: 75000ms;
}
.b-want-layout__content-layer {
  display: flex;
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@keyframes drift {
from {
    transform: translate(var(--wave-x), -50%) rotate(0deg);
}
to {
    transform: translate(var(--wave-x), -50%) rotate(360deg);
}
}
.b-error-page {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.b-error-page__content {
  text-transform: uppercase;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 5rem;
}
