:root {
  --lightBlue: #f3fbff;
}

:root {
  --lightBlue: #f3fbff;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.a-anim {
  animation-name: slideUp;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.a-anim:nth-child(1) {
  animation-delay: 0s;
}
.a-anim:nth-child(2) {
  animation-delay: 0.2s;
}
.a-anim:nth-child(3) {
  animation-delay: 0.4s;
}

.a-qs-steps {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 120px 0 60px;
}
@media only screen and (min-width: 768px) {
  .a-qs-steps {
    padding: 120px 0 140px;
    gap: 140px;
  }
}
.a-qs-steps h2.a-title {
  font-size: 2.25rem;
  text-align: left;
  line-height: 2.75rem;
}
.a-qs-steps h2.a-title:after {
  display: none;
}
.a-qs-steps .a-subtitle {
  text-align: left;
  font-size: 1.25rem;
  line-height: 2rem;
  margin-bottom: 32px;
}

.a-qs-step {
  display: grid;
  background-color: white;
  position: relative;
  grid-template-columns: 1fr;
  box-shadow: 0px 8px 4px 0px #C9E6F0;
}
@media only screen and (min-width: 768px) {
  .a-qs-step {
    grid-template-columns: 1fr auto;
  }
}
.a-qs-step__content {
  padding: 20px;
}
@media only screen and (min-width: 768px) {
  .a-qs-step__content {
    padding: 40px;
  }
}
.a-qs-step__video {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.a-qs-step__video-cover {
  max-width: 100%;
  background-color: #01a9c1;
  aspect-ratio: 16/9;
  position: relative;
}
.a-qs-step__video-cover img.video-cover {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media only screen and (min-width: 768px) {
  .a-qs-step__video-cover {
    max-width: 400px;
  }
}
.a-qs-step__video-play-btn {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(1, 169, 193, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.a-qs-step__video-play-btn img {
  transform: scale(1.5);
  transition: all 0.1s ease-in-out;
}
.a-qs-step__video-play-btn:hover > img {
  transform: scale(1.7);
}
.a-qs-step__link {
  padding: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: center;
  text-decoration: underline;
  line-height: 140%;
}
.a-qs-step__link img {
  max-width: 32px;
}
.a-qs-step__link:hover {
  color: #01a9c1;
  text-decoration: none;
}
.a-qs-step-1::before, .a-qs-step-2::before {
  content: "1.";
  position: absolute;
  top: -58px;
  left: 20px;
  font-size: 3.75rem;
  font-weight: bold;
  color: #01a9c1;
}
@media only screen and (min-width: 768px) {
  .a-qs-step-1::before, .a-qs-step-2::before {
    font-size: 4rem;
    top: -62px;
    left: 40px;
  }
}
.a-qs-step-2::before {
  content: "2.";
}
.a-qs-step__list {
  line-height: 162%;
  border-left: 2px solid #01a9c1;
  padding: 10px 0 10px 30px;
  font-size: 1.125rem;
  margin-top: 40px;
}
.a-qs-step__list li {
  margin-bottom: 8px;
  color: #747474;
}
.a-qs-step__list a {
  color: #01a9c1;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-skip-ink: none;
  text-decoration-color: transparent;
}
.a-qs-step__list a:hover {
  text-decoration-color: #019ab8;
}

/* */
.a-video-popup {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #000;
  display: none;
}
@media (min-width: 768px) {
  .a-video-popup {
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.75);
  }
}
@media (min-width: 1025px) {
  .a-video-popup {
    padding: 56px;
  }
}
@media (min-width: 1025px) {
  .a-video-popup {
    padding: 64px;
  }
}
.a-video-popup.open {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease-in-out 0s 1 normal both;
}
@media (min-width: 768px) {
  .a-video-popup.open {
    animation-duration: 0.3s;
  }
}
.a-video-popup__wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1288px;
}
.a-video-popup .plyr--video {
  max-height: 100vh;
  width: 100%;
  aspect-ratio: 16/9;
}
.a-video-popup__close-btn {
  width: 32px;
  height: 32px;
  background: url("../images/quick-start/close-btn.svg") transparent;
  border: none;
  outline: none;
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
}
.a-video-popup__close-btn:hover {
  opacity: 1;
}
.a-video-popup .plyr--video {
  flex-grow: 1;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}