@keyframes bounceDown {
  0% {
    transform: scale(1, 1) translateX(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateX(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(-4px);
  }
  50% {
    transform: scale(1.05, 0.95) translateY(6px);
  }
  57% {
    transform: scale(1, 1) translateY(-2px);
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes bounce2 {
  0% {
    transform: scale(1, 1) translateX(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateX(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateX(-4px);
  }
  50% {
    transform: scale(1.05, 0.95) translateX(2px);
  }
  57% {
    transform: scale(1, 1) translateX(-2px);
  }
  64% {
    transform: scale(1, 1) translateX(0);
  }
  100% {
    transform: scale(1, 1) translateX(0);
  }
}
/* Fonts */
.features {
  padding: 64px 0;
}
.features .row-reverse {
  flex-direction: row-reverse;
}
.features__outline, .features__sub, .features__subtitle {
  font-size: 16px;
  line-height: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.features__title {
  font-size: 32px;
  line-height: 48px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
}
.features h3.features__title {
  font-size: 20px;
  line-height: 28px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  margin-bottom: 16px;
}
.features__desc {
  margin-bottom: 24px;
}
.features__actions {
  margin-top: 24px;
}
.features__actions a {
  margin-right: 16px;
}
.features__actions a:last-child {
  margin-right: 0;
}
.features__custom-list ul li {
  display: flex;
  position: relative;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.features__custom-list ul li:last-child {
  margin-bottom: 0;
}
.features__custom-list ul li span.icon {
  content: "";
  min-width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.features__img .media {
  text-align: center;
}
.features.features--img-border .features__img img {
  border-radius: 16px;
  border: 1px solid #E2E2E2;
}
.features.alt-style h2.features__title,
.features.alt-style h3.features__title {
  font-size: 32px;
  line-height: 48px;
}
.features.alt-style .features__img {
  max-width: 480px;
  margin-left: auto;
}
.features.alt-style .row-reverse .features__img {
  margin-left: 0;
}
@media (max-width: 991px) {
  .features {
    padding: 32px 0;
  }
  .features__img {
    margin-top: 24px;
    display: block;
  }
  .features__img .media {
    text-align: center;
  }
  .features__actions a {
    margin-right: 0;
    margin-bottom: 16px;
  }
  .features__actions a:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 560px) {
  .features h3.features__title {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
  }
  .features__custom-list ul li {
    align-items: flex-start;
  }
}/*# sourceMappingURL=features.css.map */