body {
  margin: 0;
  padding: 0;
}

.ad-container {
  width: 970px;
  height: 250px;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  border: 1px solid black;
  display: block;
}

.ad-content {
  transform: scale(0.5);
  transform-origin: top left;
  position: relative;
}

.logo {
  opacity: 0;
  transform: translateY(25px);
}
.logo.frame-2 {
  animation-name: uivd2lz;
  animation-duration: 0.75s;
  animation-fill-mode: forwards;
  animation-delay: 0s;
  animation-timing-function: initial;
}
@keyframes uivd2lz {
  to {
    opacity: 1;
    transform: unset;
  }
}

.bg-images {
  position: absolute;
  width: 100%;
  height: 250px;
  top: 0;
  left: 0;
  transform: scale(2);
  transform-origin: top left;
}
.bg-images .bg-image {
  --slideDuration: 0.75s;
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.bg-images .bg-image-bg.frame-4 {
  opacity: 1;
  filter: blur(25px);
  transform: scale(2);
}

.text-keyframes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.text-keyframes .text-keyframe {
  --lineOffset: 25px;
  --lineDuration: 1.2s;
  --keyframeDuration: 0.5s;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity var(--keyframeDuration);
}
.text-keyframes .text-keyframe [id^=line-] {
  --lineDelay: 0s;
  opacity: 0;
  transform: translateY(var(--lineOffset));
}
.text-keyframes .text-keyframe-1.frame-3 [id^=line-] {
  animation-name: uivd2mw;
  animation-duration: var(--lineDuration);
  animation-fill-mode: forwards;
  animation-delay: var(--lineDelay);
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
@keyframes uivd2mw {
  to {
    transform: unset;
    opacity: 1;
  }
}
.text-keyframes .text-keyframe-1.frame-5 {
  animation-name: uivd2n9;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-delay: 0s;
  animation-timing-function: initial;
}
@keyframes uivd2n9 {
  to {
    opacity: 0;
  }
}
.text-keyframes .text-keyframe-2.frame-5 [id^=line-] {
  animation-name: uivd2nk;
  animation-duration: var(--lineDuration);
  animation-fill-mode: forwards;
  animation-delay: calc(var(--lineDelay) + 0.35s);
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
@keyframes uivd2nk {
  to {
    transform: unset;
    opacity: 1;
  }
}
.text-keyframes .text-keyframe-2.frame-6 {
  animation-name: uivd2o8;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-delay: 0s;
  animation-timing-function: initial;
}
@keyframes uivd2o8 {
  to {
    opacity: 0;
  }
}
.text-keyframes .text-keyframe-3.frame-6-a [id^=line-] {
  animation-name: uivd2op;
  animation-duration: var(--lineDuration);
  animation-fill-mode: forwards;
  animation-delay: var(--lineDelay);
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
@keyframes uivd2op {
  to {
    transform: unset;
    opacity: 1;
  }
}

.logo {
  position: absolute;
  top: 0;
  left: 0;
}

.cta {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.cta svg #cta-bg,
.cta svg #cta-copy {
  transition: fill 0.25s, stroke 0.25s;
}
.cta.frame-6 {
  animation-name: uivd2pg;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 1.35s;
  animation-timing-function: initial;
}
@keyframes uivd2pg {
  from {
    opacity: 0;
    transform: translateY(5%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ad-container:hover .cta svg #cta-bg {
  fill: white;
  stroke: white;
}
.ad-container:hover .cta svg #cta-copy {
  fill: #67788A;
}
