.c4y-fcta {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  padding: 4rem 0;
  background: rgba(241, 245, 249, .5);
}

.c4y-fcta__inner {
  width: min(100% - 2rem, var(--global-content-width, 1200px));
  margin: 0 auto;
}

.c4y-fcta__content {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.c4y-fcta__icon {
  color: rgb(104, 200, 81);
  display: inline-flex;
  margin: 0 0 1.5rem;
}

.c4y-fcta__icon svg {
  width: 48px;
  height: 48px;
  display: block;
}

.c4y-fcta__title {
  margin: 0 0 1rem !important;
  padding: 0 !important;
  color: rgb(20, 31, 56) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: 24px !important;
  line-height: 32px !important;
}

.c4y-fcta__desc {
  margin: 0 auto 2rem !important;
  color: rgb(107, 114, 128) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 24px !important;
}

.c4y-fcta__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.c4y-fcta__btn,
.c4y-fcta__btn:link,
.c4y-fcta__btn:visited {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .5rem !important;
  min-height: 44px;
  padding: 0 2rem !important;
  border-radius: .375rem !important;
  border: 1px solid transparent !important;
  text-decoration: none !important;
  white-space: nowrap;
  font-style: normal !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  line-height: 20px !important;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.c4y-fcta__btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.c4y-fcta__btn--primary,
.c4y-fcta__btn--primary:link,
.c4y-fcta__btn--primary:visited {
  background: rgb(41, 54, 101) !important;
  color: rgb(255, 255, 255) !important;
}

.c4y-fcta__btn--primary:hover {
  background: rgba(41, 54, 101, .90) !important;
  color: rgb(255, 255, 255) !important;
}

.c4y-fcta__btn--secondary,
.c4y-fcta__btn--secondary:link,
.c4y-fcta__btn--secondary:visited {
  background: rgb(255, 255, 255) !important;
  border-color: rgb(228, 231, 236) !important;
  color: rgb(31, 41, 55) !important;
}

.c4y-fcta__btn--secondary:hover {
  background: rgb(104, 200, 81) !important;
  border-color: rgb(104, 200, 81) !important;
  color: rgb(255, 255, 255) !important;
}

.c4y-fcta__anim {
  opacity: 0;
  transform: translateY(20px);
}

.c4y-fcta.c4y-fcta-visible .c4y-fcta__anim {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s ease, transform .5s ease;
}

@media (min-width: 640px) {
  .c4y-fcta__inner {
    width: min(100% - 3rem, var(--global-content-width, 1200px));
  }

  .c4y-fcta__actions {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .c4y-fcta {
    padding: 6rem 0;
  }

  .c4y-fcta__title {
    font-size: 30px !important;
    line-height: 36px !important;
  }
}
