.remark__info {
    padding: 40px 44px;
    display: grid;
    grid-template-columns: 32fr 72fr;
    gap: 30px;
    border-radius: 30px;
    background: linear-gradient(90deg, #d7e6e6 0%, #ebf4f3 100%);
    width: 100%;
}

.remark__info-title-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 12px;
    color: #1d1a1e;
    font-weight: 400;
    font-family:"Oswald";
    line-height: 120%;
    color: #2d2d2d;
    font-size: 28px;
    max-width: 326px;
}

.remark__info-title-wrap::after {
    content: '';
    display: block;
    min-width: 52px;
    height: 52px;
    background-image: url(../../assets/svg/question.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.remark__info-text {
    font-size: 20px;
    line-height: 148%;
}

.remark__info-text p {
    font-weight: 400;
    font-size: 20px;
   line-height: 154%;
    color: #323236;
    font-family: 'Manrope';
}

.remark__info-text>p:first-child {
    margin-top: 0;
}

.remark__info-text>p:last-child {
    margin-bottom: 0;
}

@media(max-width: 992px) {

    .remark__info {
        padding: 24px 24px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .remark__info-title-wrap {
        flex-direction: row-reverse;
        justify-content: flex-end;
        gap: 12px;
        max-width: 100%;
        align-items: center;
       
    }

    .remark__info-title-wrap::after {
        min-width: 52px;
        height: 52px;
    }

    .remark__info-title-wrap {
         font-size: 21px;
    }

    .remark__info-text p {
        font-size: 16px;
    }
}