@charset "UTF-8";
:root {
  --lightBlue: #f3fbff;
}

:root {
  --lightBlue: #f3fbff;
}

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

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