hu-custom-form .f-4_header{
    text-align: center;
    margin-bottom: 100px;
}

hu-custom-form .f-4_title{
    font-size: var(--f-4-title-size, 58px);
    font-family: var(--font-akzidenz-grotesk-super);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 34px;
}

hu-custom-form .f-4_content{
    font-size: var(--f-4-content-size, 31px);
    font-weight: 500;
    font-family: var(--font-gotham-medium);
}

hu-custom-form .f-4_blocks{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px 30px;
}

hu-custom-form .f-4-item--span-1{
    grid-column: span 1;
    display: flex;
}

hu-custom-form .f-4-item--span-2{
    grid-column: span 2;
}

@media (max-width: 959px){
    hu-custom-form .f-4_blocks{
        grid-template-columns: minmax(0, 1fr);
    }

    hu-custom-form .f-4-item--span-1,
    hu-custom-form .f-4-item--span-2{
        grid-column: span 1;
    }
    hu-custom-form .f-4_title{
        font-size: var(--f-4-title-size-mobile, 45px);
        margin-bottom: 4vw;
    }
    hu-custom-form .f-4_content{
        font-size: var(--f-4-content-size-mobile, 25px);
    }
    hu-custom-form .f-4_blocks{
        gap: 30px;
    }
    hu-custom-form .f-4_header{
        margin-bottom: 8vw;
    }
}
