.stop-fos-block {
    margin: 0 calc(50% - 50vw);
    background-color: #f2f2f2;
}

.stop-fos-block>.container {
    padding: 20px 35px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stop-fos-block__img {
    display: block;
}

p.stop-fos-block__text {
    margin: 0;
    margin-bottom: 10px;
    font-family: 'Inter Variable';
    font-size: 21px;
    line-height: normal;
    color: #333;
}

p.stop-fos-block__descr {
    margin: 0;
    font-family: 'Inter Variable';
    font-size: 18px;
    line-height: 1.4;
    color: #333;
}

.stop-fos-block__btn {
    padding: 7px 30px;
    background-color: #df8844;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-family: 'Inter Variable';
    font-size: 18px;
    line-height: normal;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color .3s ease-in-out;
}

.stop-fos-block__btn img {
    width: 20px;
    transform: rotate(-90deg);
}

.stop-fos-block__btn:hover {
    background-color: #333;
    text-decoration: none;
    transition: background-color .3s ease-in-out;
}

@media screen and (max-width: 768px) {
    .stop-fos-block>.container {
        padding-right: 15px;
        padding-left: 15px;
    }

    .stop-fos-block>.container {
        flex-direction: column;
    }

    p.stop-fos-block__text,
    p.stop-fos-block__descr {
        text-align: center;
    }
}