.two-column-content {
    margin-bottom: 34px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    position: relative;
}
.two-column-content h1 {
    font-size: 76px;
    line-height: 76px;
    width: 50%;
    margin-bottom: 0;
}
.two-column-content p {
    align-items: end;
    width: 32%;
    /* text-align: justify; */
    margin: 0;
    font-size: 20px;
}
@media only screen and (max-width: 1280px) {
    .two-column-content h1 {
        font-size: 64px;
    }
}
@media only screen and (max-width: 991px) {
    .two-column-content h1 {
        font-size: 38px;
        line-height: 38px;
        width: 100%;
    }
    .two-column-content {
        display: block;
    }
    .two-column-content p {
        width: 100%;
        margin-top: 16px;
        text-align: left;
    }
}
