.home-hero {
    background-position: 0 0;
    background-size: 105% auto;
}

.home-hero-content{
    padding-top: 40px
}

.home-hero-title {
    font-size: 48px;
    line-height: 1.29;
    font-weight: 500;
    margin-bottom: 44px;
    max-width: 80vw;
}

.home-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .home-hero {
        background-position: right 0 top -17px;
        background-size: 413px auto;
        padding-bottom: 82px;
    }

    .home-hero-title {
        font-size: 72px;
        line-height: 1.1944;
        background: linear-gradient(90deg, #437AC7, #AFCDF8, #437AC7);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .home-hero-buttons {
        flex-direction: row;
        gap: 26px;
    }
}

@media (min-width: 1200px) {
    .home-hero {
        padding-bottom: 38px;
        background-position: left 60vw top 0;
        background-size: max(350px, 26.13vw) auto;
    }

    .home-hero-title {
        max-width: 60vw;
        font-size: clamp(4.5rem, -4.25rem + 11.6667vw, 8rem);
        line-height: 1.0469;
        margin-bottom: 70px;
    }
}