.title-with-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.title-with-text__title {
    margin-bottom: 30px;
    font: 300 36px/1.1 'Pluto Sans DPD', sans-serif;
}

.title-with-text__text {
    font-family: 'Pluto Sans DPD', sans-serif;
    line-height: 1.5;
}

.title-with-text__buttons {
    display: flex;
    flex-wrap: wrap;
    column-gap: 12px;
    row-gap: 15px;
    margin-top: 25px;
}

.title-with-text__button {
    display: inline-block;
    width: calc(50% - 12px);
    padding: 12px 15px;
    font: 400 12px / 1.42 'Pluto Sans DPD', sans-serif;
    text-transform: capitalize;
    text-align: center;
    border-width: 1px!important;
    border-style: solid!important;
    border-radius: 4px;
    transition: opacity 0.2s ease;
}

.title-with-text__button:hover {
    opacity: 0.9;
}

@media screen and (min-width: 768px) {
    .title-with-text {
        padding: 0 20px 40px;
    }

    .title-with-text__title {
        font-size: 48px;
    }

    .title-with-text__buttons {
        column-gap: 30px;
        margin-top: 35px;
        justify-content: center;
    }

    .title-with-text__button {
        width: calc(25% - 30px);
        font-size: 14px;
    }
}