@keyframes fadeInOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes autoplayLine {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
full-width-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  background: var(--colorBlack);
}
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: linear-gradient(180deg, #000 2.44%, rgba(0, 0, 0, 0) 95.78%);
}
full-width-banner .graphic {
  position: absolute;
  top: -0.125rem;
  left: -0.125rem;
  bottom: -0.125rem;
  right: -0.125rem;
}
@media screen and (max-width: 1100px) {
  full-width-banner .graphic {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  full-width-banner .graphic {
    opacity: 0.5;
  }
}
full-width-banner .graphic svg {
  transform: rotate(30deg);
  transition: all 2s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
  position: absolute;
  top: -7.5rem;
  right: -7.5rem;
  width: 25rem;
  height: 25rem;
}
@media screen and (max-width: 768px) {
  full-width-banner .graphic svg {
    width: 20rem;
    height: 20rem;
  }
}
full-width-banner .text {
  position: relative;
  min-height: 25rem;
  padding: 5.625rem 4.875rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1100px) {
  full-width-banner .text {
    padding: 3.75rem;
  }
}
@media screen and (max-width: 768px) {
  full-width-banner .text {
    min-height: initial;
  }
}
@media screen and (max-width: 580px) {
  full-width-banner .text {
    padding: 2.5rem 1.875rem;
  }
}
full-width-banner .text * {
  color: #fff;
}
full-width-banner .text--only {
  max-width: calc(100% - 170px);
}
@media screen and (max-width: 1100px) {
  full-width-banner .text--only {
    max-width: 100%;
  }
}

full-width-banner.show .graphic svg {
  transform: rotate(0deg);
}
