.attention__info {

    border: 2px dashed var(--dark-blue);
    padding: 40px 44px;

    border-radius: 30px;
    display: grid;
    grid-template-columns: 32fr 72fr;
    gap: 30px;
    margin-top: 34px;
    margin-bottom: 80px;

}

.attention__info-head-title {
    position: relative;
    padding-left: 62px;
    padding-top: 6px;
    font-size: 28px;
    font-weight: 400;
    line-height: 120%;
    color: var(--chernyy);
    font-family: "Oswald";
}

.attention__info-head-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    min-width: 52px;
    height: 52px;
    background-image: url(../../assets/svg/attend.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.attention__info-text p {
    margin: 0 !important;
    font-weight: 400;
    font-size: 20px !important;
    line-height: 154% !important;
    color: var(--chernyy-75) !important;
}

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

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

@media(max-width: 992px) {
    .attention__info {
        padding: 20px 24px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
        margin-bottom: 60px;

    }

    .attention__info-head-title {
        padding-top: 3px;
        padding-left: 48px;
        font-size: 25px;
    }

    .attention__info-head-title::before {
        min-width: 38px;
        height: 38px;
    }

    .attention__info-text p {
        font-size: 16px !important;
    }
}