: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-anim:nth-child(4) {
  animation-delay: 0.6s;
}
.a-anim:nth-child(5) {
  animation-delay: 0.8s;
}
.a-anim:nth-child(6) {
  animation-delay: 1s;
}
.a-anim:nth-child(7) {
  animation-delay: 1.2s;
}

.a-header__image {
  box-shadow: 0px 0px 40px 0px rgba(12, 154, 180, 0.24);
}

.a-indep {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media only screen and (min-width: 768px) {
  .a-indep {
    padding-top: 120px;
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 1025px) {
  .a-indep {
    padding-top: 120px;
    padding-bottom: 60px;
  }
}

.a-types {
  padding: 48px 0 24px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .a-types {
    padding: 48px 0 28px;
  }
}
@media only screen and (min-width: 1025px) {
  .a-types {
    padding: 48px 0 48px;
  }
}

.a-video {
  padding: 32px 0 24px;
  text-align: center;
  margin-bottom: 60px;
}
@media only screen and (min-width: 768px) {
  .a-video {
    margin-bottom: 120px;
    padding: 48px 0 28px;
  }
}
@media only screen and (min-width: 1025px) {
  .a-video {
    padding: 64px 0 48px;
  }
}

.a-speed {
  padding: 32px 0 24px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .a-speed {
    padding: 48px 0 28px;
  }
}
@media only screen and (min-width: 1025px) {
  .a-speed {
    padding: 64px 0 48px;
  }
}
.a-speed__gfx {
  margin-top: 68px;
  margin-bottom: 68px;
  max-width: 100%;
}

@media only screen and (min-width: 768px) {
  .a-types .a-title, .a-business .a-title, .a-video .a-title, .a-blog .a-title, .a-indep .a-title {
    text-align: left;
  }
}
@media only screen and (min-width: 768px) {
  .a-types .a-title:after, .a-business .a-title:after, .a-video .a-title:after, .a-blog .a-title:after, .a-indep .a-title:after {
    margin: 20px 0 0 0;
  }
}

.a-platform-grid {
  margin-top: 60px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 48px;
  justify-content: center;
}
.a-platform-grid .a-button {
  min-width: 250px;
}
@media only screen and (min-width: 1025px) {
  .a-platform-grid {
    grid-template-columns: repeat(auto-fill, 360px);
  }
}
.a-platform-grid__card {
  text-align: center;
  padding-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 60px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0px 0px 40px 0px rgba(12, 154, 180, 0.24);
}
.a-platform-grid__card:nth-child(1) {
  animation-delay: 0s; /* First card, no delay */
}
.a-platform-grid__card:nth-child(2) {
  animation-delay: 0.2s; /* Second card, delay of 0.2s */
}
.a-platform-grid__card:nth-child(3) {
  animation-delay: 0.4s; /* Third card, delay of 0.4s */
}
.a-platform-grid__card--white {
  background-color: #ffffff;
}
.a-platform-grid__card--color {
  background-color: #01a9c1;
  color: #ffffff;
}
.a-platform-grid .a-card__os {
  margin-bottom: 48px;
}
.a-platform-grid .a-card__title {
  font-size: 1.5625rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 16px;
}
.a-platform-grid .a-card__subtitle {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 162%; /* 25.92px */
}
.a-platform-grid .a-card__price {
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 48.1px */
  margin-bottom: 48px;
}
.a-platform-grid .a-card__price span {
  font-size: 1rem;
  font-weight: normal;
}

.a-blog {
  background: #f3fbff;
  padding: 32px 0 48px;
}
@media only screen and (min-width: 768px) {
  .a-blog {
    padding: 40px 0;
  }
}
@media only screen and (min-width: 1025px) {
  .a-blog {
    padding: 64px 0 96px;
  }
}
.a-blog__buttons {
  margin: 40px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .a-blog__buttons {
    margin: 60px 0 0 0;
  }
}