.first-page-mobile {
    display: none
}

.first-page {
    display: flex;
    padding: 20px 120px 80px 120px;
    flex-direction: column;
    align-items: center;
    gap: 56px;
    align-self: stretch;
    z-index: 5;
    justify-content: center;
}

.first-page-text {
    gap: 16px;
    flex-direction: column;
    align-items: center;
    display: flex;
}

.first-page-title {
    text-align: center;
}

.first-page-title-italic, .first-page-title-normal {
    color: #1C1C1C;
    text-align: center;
    font-weight: 400;
    line-height: 110%;
}

.first-page-title-italic {
    font-family: "PT Serif", serif;
    font-size: 40px;
    font-style: italic;
}

.first-page-title-normal {
    font-family: Manrope, serif;
    font-size: 40px;
    font-style: normal;
}

.first-page-subtitle {
    color: #4D4E55;
    text-align: center;
    font-family: Manrope, serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
}

.card-icon {
    background: var(--primary-200, #e5e4ff);
    border-radius: 28px;
    padding: 14px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    position: relative;
    box-sizing: border-box;
}

.sphere-text {
    color: #1C1C1C;
    font-family: Manrope, serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 450;
    line-height: 140%;
}

.sphere-card {
    display: flex;
    padding: 16px 24px 16px 16px;
    align-items: center;
    gap: 24px;
    flex: 1 0 0;
    border-radius: 16px;
    background: #F8F8FA;
    max-width: 360px;
}

.sphere-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.spheres {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

@media (max-width: 768px) {
    .first-page {
        display: none;
    }

    .first-page-mobile {
        display: flex;
        padding: 0px 16px 32px 16px;
        flex-direction: column;
        align-items: center;
        gap: 32px;
        align-self: stretch;
    }

    .first-page-text-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        align-self: stretch;
    }

    .first-page-title-mobile {
        align-self: stretch;
        font-size: 24px;
        line-height: 110%;
    }

    .first-page-text-italic-mobile {
        color: #1C1C1C;
        font-family: "PT Serif", serif;
        font-style: italic;
        font-weight: 300;
    }

    .first-page-text-normal-mobile {
        color: #1C1C1C;
        font-family: Manrope, serif;
        font-style: normal;
        font-weight: 300;
    }

    .first-page-subtitle-mobile {
        color: #4D4E55;
        font-family: Manrope, serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
    }

    .first-page-spheres-mobile {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
        align-self: stretch;
    }

    .sphere-card-mobile {
        display: flex;
        padding: 16px;
        align-items: center;
        gap: 16px;
        align-self: stretch;
        border-radius: 16px;
        background: #F8F8FA;
    }

    .card-icon-mobile {
        display: flex;
        padding: 14px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        border-radius: 28px;
        background: #E5E4FF;
    }

    .sphere-text-mobile {
        color: #1C1C1C;
        font-family: Manrope, serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 450;
        line-height: 140%;
    }
}