
.your-story {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #0a0a1e;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.main-title {
    color: #F7F8FC;
    font-family: "Plus Jakarta Sans";
    /* 64 of 1440 is 4.444% */
    font-size: clamp(24px, 4.444vw, 999rem);
    font-style: normal;
    font-weight: 800;
    /* 110 of 64 is 6.944 */
    line-height: 1.7188em;
    text-transform: uppercase;
    margin: 0 0 6px 0;
}

.your-story__subtitle {
    font-family: 'Patrick Hand', cursive;
    color: #ED4264;
    font-size: 2.5vw;
    line-height: 1;
    margin: 0 0 81px 0;
    font-weight: 400;
}

.title-spaced {
    color: #F7F8FC;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: clamp(20px, 2.08vw, 9999em);
    font-style: normal;
    font-weight: 300;
    line-height: 1.3333em;
    letter-spacing: 0.91em;
    text-transform: uppercase;
    margin: 0 0 68px 0;
}
@media (max-width: 768px) {
    .your-story__subtitle {
        font-size: 20px;
    }
    .title-spaced {
        letter-spacing: 0.5em;
    }
}

.your-story__benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.your-story__benefit-card {
    background-color: #1a1a2e;
    border-radius: 10px;
    padding:
        clamp(84px, 5.56vw, 999rem)
        clamp(23px, 1.74vw, 999rem)
        clamp(100px, 1.94vw, 999rem)
        clamp(23px, 1.74vw, 999rem);
    width: 300px;
    position: relative;
    /* overflow: hidden; */

    border-radius: clamp(24px, 1.67vw, 999rem);
    border: 1px solid rgba(243, 243, 246, 0.08);
    background: rgba(243, 243, 246, 0.04);
    /* backdrop-filter: blur(4px); */
}

.your-story__benefit-card .deco {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    right: 0;
    fill: var(--Gradient-2, linear-gradient(329deg, #3739AF 14.7%, #3A3BBB 26.3%, #7732E0 80.56%));
    filter: drop-shadow(0px 0px 38px #653BCF) blur(2px);
    width: 200px;
    height: auto;
    flex-shrink: 0;
    transform: translate(-50%, -42%);
}

.your-story__benefit-card .deco svg{
    width: 100%;
    height: 100%;
}

.your-story__benefit-card--purple::before {
    background-color: #8a2be2;
}

.your-story__benefit-card--orange::before {
    background-color: #ffa500;
}

.your-story__benefit-card--blue::before {
    background-color: #4169e1;
}

.your-story__benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.your-story__benefit-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.your-story__benefit-description {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {

    .your-story__subtitle {
    font-size: 1.25rem;
    }

    .title-spaced {
    font-size: 1.25rem;
    }

    .your-story__benefit-card {
    width: 100%;
    max-width: 300px;
    }
}