@keyframes fadeInOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes autoplayLine {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
full-width-banner {
  margin-left: calc((100vw - var(--scrollbarWidth)) * -1 / 2 + var(--internalWidth) / 2);
  margin-right: calc((100vw - var(--scrollbarWidth)) * -1 / 2 + var(--internalWidth) / 2);
  position: relative;
  overflow: hidden;
  display: flex;
  background: var(--colorPrimary);
}
@media screen and (max-width: 1520px) {
  full-width-banner {
    margin-left: -3.75rem;
    margin-right: -3.75rem;
  }
}
@media screen and (max-width: 768px) {
  full-width-banner {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }
}
@media screen and (max-width: 374px) {
  full-width-banner {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }
}
full-width-banner .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100%;
  opacity: 0.15;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
@media screen and (max-width: 978px) {
  full-width-banner .bg {
    display: none;
  }
}
full-width-banner .bg svg {
  width: auto;
  height: 37.5rem;
}
full-width-banner .bg svg path {
  fill: #fff;
}
full-width-banner .img {
  position: absolute;
  top: -0.125rem;
  left: -0.125rem;
  bottom: -0.125rem;
  right: -0.125rem;
}
full-width-banner .img img {
  position: absolute;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.01);
  width: 100%;
  height: 100%;
}
full-width-banner .mask {
  position: absolute;
  top: -0.125rem;
  left: -0.125rem;
  bottom: -0.125rem;
  right: -0.125rem;
  background: rgba(var(--colorSecondaryVals), 0.45);
}
full-width-banner .text {
  position: relative;
  min-height: 31.25rem;
  padding: 7.5rem 3.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 58.75rem;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  full-width-banner .text {
    padding: 3.75rem;
  }
}
@media screen and (max-width: 978px) {
  full-width-banner .text {
    min-height: initial;
  }
}
@media screen and (max-width: 768px) {
  full-width-banner .text {
    padding: 3.75rem 2.5rem;
  }
}
@media screen and (max-width: 374px) {
  full-width-banner .text {
    padding: 3.75rem 1.25rem;
  }
}
full-width-banner .text h2 {
  font-size: clamp(2rem, 3.4285714286vw, 3rem);
  margin: 0 0 1.5rem;
}
full-width-banner .text p {
  margin: 0 0 2rem;
}
full-width-banner .text * {
  color: #fff;
}

full-width-banner[hastext="0"] .text {
  min-height: 37.5rem;
  padding: 0;
}
@media screen and (max-width: 978px) {
  full-width-banner[hastext="0"] .text {
    min-height: 31.25rem;
  }
}
@media screen and (max-width: 768px) {
  full-width-banner[hastext="0"] .text {
    min-height: 25rem;
  }
}
