@keyframes fadeInOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes autoplayLine {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
full-width-banner {
  margin: 0 -7rem;
}
@media screen and (max-width: 1740px) {
  full-width-banner {
    margin: 0 0 3rem;
  }
}
@media screen and (max-width: 1200px) {
  full-width-banner {
    margin: 0 0 1.5rem;
  }
}

full-width-banner[type=text] {
  position: relative;
  overflow: hidden;
  display: flex;
  border-radius: 3.75rem;
  background: var(--colorTertiary);
}
@media screen and (max-width: 978px) {
  full-width-banner[type=text] {
    border-radius: 2.5rem;
  }
}
full-width-banner[type=text] .graphic {
  position: absolute;
  top: 60%;
  left: 60%;
  transform: translate(-50%, -50%);
}
full-width-banner[type=text] .graphic svg {
  width: 52.875rem;
  height: 50.5625rem;
  opacity: 0.05;
}
full-width-banner[type=text] .graphic svg path {
  fill: #fff;
}
full-width-banner[type=text] .img {
  position: absolute;
  top: -0.125rem;
  left: -0.125rem;
  bottom: -0.125rem;
  right: -0.125rem;
}
full-width-banner[type=text] .img img {
  position: absolute;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.01);
  width: 100%;
  height: 100%;
}
full-width-banner[type=text] .mask {
  position: absolute;
  top: -0.125rem;
  left: -0.125rem;
  bottom: -0.125rem;
  right: -0.125rem;
  background: rgba(var(--colorPrimaryVals), 0.8);
}
full-width-banner[type=text] .text {
  position: relative;
  min-height: 31.25rem;
  padding: 3.75rem;
  max-width: 56.25rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  full-width-banner[type=text] .text {
    padding: 3.75rem 2.5rem;
    min-height: initial;
  }
}
@media screen and (max-width: 580px) {
  full-width-banner[type=text] .text {
    padding: 2.5rem 1.875rem;
  }
}
full-width-banner[type=text] .text * {
  color: #fff;
  margin: 0;
}

full-width-banner[type=img] {
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 978px) {
  full-width-banner[type=img] {
    flex-direction: column;
    gap: 1rem;
  }
}
full-width-banner[type=img] .mask {
  display: none;
}
full-width-banner[type=img] .text {
  position: relative;
  left: 1.25rem;
  opacity: 0;
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
  flex-basis: 43.75rem;
  min-width: 43.75rem;
  border-radius: 3.75rem;
  background: rgba(var(--colorPrimaryVals), 0.5);
  padding: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: flex-end;
  min-height: 32.5rem;
}
@media screen and (max-width: 1400px) {
  full-width-banner[type=img] .text {
    flex-basis: 50%;
    min-width: 50%;
    padding: 3.75rem;
    border-radius: 2.5rem;
    min-height: 26.25rem;
  }
}
@media screen and (max-width: 1200px) {
  full-width-banner[type=img] .text {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 978px) {
  full-width-banner[type=img] .text {
    min-height: auto;
  }
}
@media screen and (max-width: 768px) {
  full-width-banner[type=img] .text {
    padding: 3.75rem 2.5rem;
  }
}
@media screen and (max-width: 580px) {
  full-width-banner[type=img] .text {
    padding: 2.5rem 1.875rem;
  }
}
full-width-banner[type=img] .text * {
  margin: 0;
}
full-width-banner[type=img] .img {
  position: relative;
  left: -1.25rem;
  opacity: 0;
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
  order: 2;
  background: rgba(var(--colorPrimaryVals), 0.25);
  overflow: hidden;
  border-radius: 3.75rem;
  flex-grow: 1;
}
@media screen and (max-width: 1400px) {
  full-width-banner[type=img] .img {
    border-radius: 2.5rem;
  }
}
@media screen and (max-width: 978px) {
  full-width-banner[type=img] .img {
    height: 21.875rem;
  }
}
full-width-banner[type=img] .img img {
  position: absolute;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.01);
  width: 100%;
  height: 100%;
}

full-width-banner[type=img].show .text, full-width-banner[type=img].show .img {
  left: 0;
  opacity: 1;
}
