.how-to-use {
    padding: 120px 0;
}

.how-to-use__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.how-to-use__content {
    width: calc(52% - 60px);
}

.how-to-use__image {
    width: calc(48% - 60px);
}

.how-to-use__title {
    position: relative;
    display: flex;
    justify-content: left;
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 32px;
    font-size: 32px;
    font-weight: 600;
    line-height: 42px;
    color: var(--se-heading-color);
    text-align: start;
    letter-spacing: -0.32px;
}

.how-to-use__text {
    font-size: 16px;
    line-height: 22px;
    color: var(--se-text-color);
}

.how-to-use__content .how-to-use__image {
    display: none;
}

@media screen and (max-width: 1199px) {
    .how-to-use {
        padding: 80px 0
    }

    .how-to-use__inner {
        flex-direction: column;
    }

    .how-to-use__inner > .how-to-use__image {
        display: none;
    }

    .how-to-use__content .how-to-use__image {
        display: block;
        margin: 0 auto;
    }

    .how-to-use__content,
    .how-to-use__image {
        width: 100%;
    }

    .how-to-use__content {
        display: flex;
        flex-direction: column;
    }

    .how-to-use__text {
        text-align: center;
    }

    .how-to-use__image {
        order: 3;
    }

    .how-to-use__title {
        justify-content: center;
        width: fit-content;
        margin-right: auto;
        margin-left: auto;
        font-size: 28px;
    }

    .how-to-use__image {
        max-width: 700px;
        padding-top: 50px;
    }
}

@media screen and (max-width: 767px) {
    .how-to-use {
        padding: 48px 0
    }

    .how-to-use__title {
        justify-content: start;
        margin-left: 0;
        font-size: 26px;
        line-height: 32px;
    }

    .how-to-use__text {
        text-align: start;
    }

    .how-to-use__title:after {
        display: none;
    }

    .how-to-use__content .how-to-use__image {
        padding-top: 32px;
        margin: 0;
    }
}