.c4y-cc {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  background: linear-gradient(90deg, #293665 0%, rgb(104, 200, 81) 100%);
  padding: 80px 0;
}

.c4y-cc__inner {
  width: min(100% - 3rem, var(--global-content-width, 1200px));
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.c4y-cc__icon {
  color: rgba(255, 255, 255, .82);
  display: inline-flex;
  margin: 0 0 1.5rem;
}

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

.c4y-cc__title {
  margin: 0 0 1rem !important;
  padding: 0 !important;
  color: rgb(255, 255, 255) !important;
  font-size: 36px !important;
  line-height: 40px !important;
  font-style: normal !important;
  font-weight: 700 !important;
}

.c4y-cc__desc {
  margin: 0 auto 2rem !important;
  max-width: 860px;
  color: rgb(255, 255, 255) !important;
  font-size: 18px !important;
  line-height: 28px !important;
  font-style: normal !important;
  font-weight: 400 !important;
}

.c4y-cc__btn-wrap {
  display: inline-block;
}

.c4y-cc__btn,
.c4y-cc__btn:link,
.c4y-cc__btn:visited {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .5rem !important;
  min-width: 228px;
  padding: 16px 32px !important;
  border-radius: 12px !important;
  background: rgb(255, 255, 255) !important;
  color: rgb(41, 54, 101) !important;
  text-decoration: none !important;
  font-size: 16px !important;
  line-height: 24px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  border: 1px solid rgba(255, 255, 255, .6) !important;
  transition: background .2s ease, transform .2s ease !important;
}

.c4y-cc__btn:hover {
  background: rgba(255, 255, 255, .92) !important;
  transform: translateY(-1px);
}

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

.c4y-cc.c4y-cc-visible .c4y-cc__anim {
  transition: opacity .6s ease, transform .6s ease;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .c4y-cc {
    padding: 64px 0;
  }

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

  .c4y-cc__title {
    font-size: 30px !important;
    line-height: 36px !important;
    font-weight: 700 !important;
    font-style: normal !important;
    color: rgb(255, 255, 255) !important;
  }

  .c4y-cc__desc {
    font-size: 18px !important;
    line-height: 28px !important;
  }

  .c4y-cc__btn,
  .c4y-cc__btn:link,
  .c4y-cc__btn:visited {
    width: 100%;
    padding: 14px 20px !important;
    font-size: 16px !important;
    line-height: 24px !important;
  }

  .c4y-cc__btn-wrap {
    display: block;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .c4y-cc {
    height: 400px;
    padding: 0;
    display: flex;
    align-items: center;
  }
}
