.front-about {
    margin-top: 10px;
}

.front-about__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 12px;

}

.front-about__column {
    border-radius: 6px;
    background: #f2f2f2;
    padding: 40px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 20px;
}

.front-about__column.important {
    position: relative;
    padding-right: 90px;
}

.front-about__column.important::after {
    content: "!";
    font-weight: 500;
    font-size: 160px;
    letter-spacing: -0.04em;
    color: #dfdfdf;
    line-height: 125px;
    position: absolute;
    right: 40px;
    bottom: 40px;
}

.front-about__column-body {
    margin-right: 18%;
}

.front-about__column.important .front-about__column-body {
    margin: 0;
}

.front-about__column-body > p:first-child {
    margin-top: 0;
}

.front-about__column-body .title {
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -0.02em;
}

.front-about__link {
    font-weight: 400;
    font-size: 16px;
    color: #911504;
    text-decoration: none;
}

.front-about__link:hover, .front-about__link:focus, .front-about__link:active {
    text-decoration: underline;
}

.front-about__link.file-pdf {
    position: relative;
    padding-left: 34px;
}

.front-about__link.file-pdf::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(../icons/pdf.png);
    background-repeat: no-repeat;
    background-size: contain;

    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 1000px) {
    .front-about__wrapper {
        grid-template-columns: auto;
        row-gap: 12px;
    }
}

@media (max-width: 767px) {
    .front-about__column-body {
        margin-right: 0;
    }
}

@media (max-width: 575px) {
    .front-about__column-body .title {
        font-size: 18px;
    }
}