@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 */
.cta-box {
  padding: 64px 0;
}
.cta-box__wrap {
  border-radius: 16px;
  background: #F7F4FF;
  padding: 54px 54px 86px 54px;
  display: flex;
  justify-content: space-between;
}
.cta-box__wrap.talenta {
  background: #FCF1F2;
}
.cta-box__wrap .box__left {
  max-width: 600px;
}
.cta-box__wrap .box__left .box__icon {
  margin-bottom: 24px;
}
.cta-box__wrap .box__left .box__icon img {
  height: 48px;
  width: auto;
}
.cta-box__wrap .box__left .box__title {
  font-size: 32px;
  line-height: 48px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  margin-bottom: 16px;
}
.cta-box__wrap .box__right {
  display: flex;
  align-items: center;
}
.cta-box__wrap .box__right .box__action {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cta-box__meta {
  display: flex;
  justify-content: center;
  margin-top: -50px;
}
.cta-box__meta .items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 96px;
  background: #10243e;
  border-radius: 16px;
  padding: 24px;
  max-width: 1100px;
}
.cta-box__meta .items .item {
  max-width: 286px;
  width: 100%;
  text-align: center;
  color: #FFF;
  position: relative;
}
.cta-box__meta .items .item__icon {
  margin-bottom: 12px;
}
.cta-box__meta .items .item__icon img {
  height: 32px;
  width: auto;
}
.cta-box__meta .items .item__title {
  color: #FFF;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.cta-box__meta .items .item::after {
  content: "";
  width: 2px;
  height: 88px;
  background: #FFF;
  border-radius: 34px;
  display: inline-block;
  position: absolute;
  right: -48px;
  top: calc((100% - 88px) / 2);
}
.cta-box__meta .items .item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cta-box {
    padding: 32px 0;
  }
  .cta-box__wrap {
    padding: 32px 32px 64px 32px;
    flex-direction: column;
  }
  .cta-box__wrap .box__left {
    margin-bottom: 24px;
  }
  .cta-box__wrap .box__right .box__action {
    flex-direction: row;
  }
}
@media (max-width: 560px) {
  .cta-box__wrap .box__left .box__title {
    font-size: 28px;
    line-height: 36px;
  }
  .cta-box__wrap .box__right .box__action {
    flex-wrap: wrap;
    gap: 16px;
  }
  .cta-box__wrap .box__right .box__action a {
    width: 100%;
    flex: 0 0 100%;
    margin-bottom: 0;
  }
  .cta-box__meta {
    margin: -40px auto 0 auto;
    max-width: 311px;
  }
  .cta-box__meta .items {
    flex-wrap: wrap;
    padding: 24px;
  }
  .cta-box__meta .items .item::after {
    width: 88px;
    height: 2px;
    bottom: -48px;
    right: calc((100% - 88px) / 2);
    top: unset;
  }
}/*# sourceMappingURL=cta-box.css.map */