@charset "utf-8";
.benefits {
      padding-top: 40px;
    padding-bottom: 102px;
    position: relative;
}
.benefits-deco {
      position: absolute;
    object-fit: contain;
    z-index: -1;
    bottom: 0;
}
.benefits__inner {
  padding: 0 clamp(2.5rem, -15.214rem + 27.68vw, 18rem);
}
.benefits__items {
      display: grid;
    column-gap: clamp(2.5rem, -0.357rem + 4.46vw, 5rem);
    row-gap: clamp(2.5rem, -0.357rem + 4.46vw, 5rem);
    grid-template-columns: repeat(2, 1fr);
}
.benefits-item__top {
      display: flex;
    column-gap: 16px;
    align-items: center;
}
.benefits-item__number {
      font-size: clamp(1.5rem, 0.929rem + 0.89vw, 2rem);
    font-weight: 700;
    color: #FF6F00;
    padding: clamp(0.25rem, -0.036rem + 0.45vw, 0.5rem);
    letter-spacing: -0.05em;
    border: 2px solid #FF6F00;
    border-radius: 10px;
}
.benefits-item__title {
      font-size: clamp(1.5rem, 0.929rem + 0.89vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.05em;
}
.benefits-item__img {
  margin-top: 12px;
}
.benefits-item__subtitle {
      margin-top: 22px;
    font-size: clamp(1rem, 0.714rem + 0.45vw, 1.25rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 2;
    padding-bottom: clamp(0.5rem, -0.214rem + 1.12vw, 1.125rem);
    border-bottom: 1px solid #000;
}
.benefits-item__text {
      margin-top: 16px;
    font-size: clamp(0.875rem, 0.732rem + 0.22vw, 1rem);
    font-weight: 400;
    line-height: 1.7;
}
.benefits__cta {
      margin-top: 14%;
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

@media (max-width: 1023px) {
  .benefits__items {
    grid-template-columns: repeat(1, 1fr);
  }
  .benefits__cta {
        width: 594px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .benefits__inner {
    padding: 0 20px;
  }
  .benefits-item__top {
    column-gap: 8px;
  }
  .benefits-item__number {
    font-size: 20px;
  }
  .benefits-item__title {
    font-size: 20px;
  }
  .benefits-item__img {
    margin-top: 16px;
  }
  .benefits-item__text {
    margin-top: 10px;
  }
  
  .benefits__cta {
        width: 100%;
    margin-top: 40px;
  }
}