.value-banner {
  position: relative;
  top: -85px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 974px;
  height: 192px;
  padding: 60px;
  margin: 0 auto;
  margin-bottom: 35px;
  background: url('/assets/img/pages/value/img-value_banner.png');
  background-position: right;
  background-size: cover;
  border-radius: 10px;
}

.value-banner__title {
  width: fit-content;
  font-size: 22.143px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 31px */
  background: linear-gradient(91deg, #7fb439 16%, #00645a 78.79%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.value-banner__link {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  transition: color var(--transition-hover);
}

.value-banner__link-icon--circle {
  position: absolute;
}

@media (hover: hover) {
  .value-banner:hover .value-banner__link {
    color: var(--green);
  }

  .value-banner:hover .value-banner__link-icon--internal {
    animation: icon-forward 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  }
}

@media (width <= 1240px) {
  .value-banner {
    width: calc(100% - 38px * 2);
  }
}

@media (width < 768px) {
  .value-banner {
    top: -110px;
    width: calc(100% - 38px * 2);
    max-width: 300px;
    height: 184px;
    padding: 56px 16px 30px;
    margin-bottom: -46px;
    background: url('/assets/img/pages/value/img-value_banner_sp.png');
    background-size: cover;
  }

  .value-banner__title {
    font-size: 18px;
    line-height: 160%; /* 28.8px */
  }

  .value-banner__link {
    font-size: 16px;
  }
}

@keyframes icon-forward {
  0% {
    transform: translate(0);
  }

  25% {
    opacity: 0;
    transform: translate(50%);
  }

  25.1% {
    opacity: 0;
    transform: translate(-50%);
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}
