.text-component-content {
    
    color: #1D1D1F;
    text-align: center;
    
    font-family: Helvetica;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px; /* 120% */
    padding-bottom: 100px;
    padding-top: 50px;
    padding-right: 150px;
    padding-left: 150px;
}

.text-component-button-wrapper {
    text-align: center;
    margin-top: 20px;
}

.text-component-button {
    display: inline-flex;
    width: 246px;
    height: 42px;
    padding: 5px 40px;
    border-radius: 10px;
    background: linear-gradient(90deg, #0070B2 0%, #00A6BD 100%);
    color: #fff;
    text-decoration: none;
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    border: none;
    outline: none;
    align-items: center;
    margin-top: 50px;
}




@media only screen and (max-width: 768px) {
    .text-component-content {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        font-size: 30px;
        line-height: 40px;
        padding: 0;
        margin-left: 20px;
        margin-right: 20px;
        text-align: left;
    }
    .text-component-button-wrapper{
        display: flex;
        justify-content: center;
        width: 100%;
        align-items: center;
        padding-top: 20px;
        
    }
    .text-component-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
}