:root {
  --lightBlue: #f3fbff;
}

:root {
  --lightBlue: #f3fbff;
}

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

.a-start-grid {
  margin-top: 60px;
  margin-bottom: 60px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  grid-template-areas: "a" "b" "d" "c" "e" "f";
}
@media only screen and (min-width: 768px) {
  .a-start-grid {
    margin-top: 120px;
    margin-bottom: 140px;
    grid-row-gap: 164px;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "a b" "c d" "e f";
  }
}
.a-start-grid h2.a-title {
  text-align: left;
}
.a-start-grid h2.a-title:after {
  display: none;
}
.a-start-grid .a-subtitle {
  text-align: left;
  font-size: 1.25rem;
  line-height: 2rem;
  margin-bottom: 32px;
}

.a-start__col1 {
  grid-area: a;
}
.a-start__col2 {
  grid-area: b;
}
.a-start__col3 {
  grid-area: c;
}
.a-start__col4 {
  grid-area: d;
}
.a-start__col5 {
  grid-area: e;
}
.a-start__col6 {
  grid-area: f;
}
.a-start__image {
  margin: 0 auto;
}
.a-start__image svg {
  width: 100%;
}
.a-start__text {
  max-width: 494px;
  margin-bottom: 88px;
}
@media only screen and (min-width: 768px) {
  .a-start__text {
    margin-bottom: 0;
  }
}

.a-btn-row {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}
.a-btn-row svg {
  margin-left: 24px;
}
.a-btn-row__text {
  color: #363943;
  margin-left: 24px;
  opacity: 0.8;
}

.a-svg-note {
  animation-name: slideUpDown;
  animation-delay: 1s;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.a-svg-clouds {
  animation-name: slideLeftRight;
  animation-delay: 1s;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.a-svg-lines {
  animation: dash 1s linear infinite;
  animation-delay: 1s;
}

@keyframes dash {
  to {
    stroke-dashoffset: -8; /* Adjust this value based on the dasharray length */
  }
}
@keyframes slideUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes slideLeftRight {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-20px);
  }
}