.impact {
    font-family: "FuturaPT";
    font-weight: 400;
    width: 100%;
    background-color: black;
    overflow: hidden;
}

.container-impact {
    display: flex;
    flex-direction: column;
}

.impact-top-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    margin: 0 -15px;
    background-image: url(/assets/img/philanthropy/impact-bg.png);
    background-position: center;
}

.impact-top-image--diploma {
    background-image: none;
}

.impact-top-image__left {
    height: 100%;
    width: auto;
    max-height: 448px;
}

.impact-top-content {
    margin-top: -50px;
}

.impact-top-content h1 {
    font-family: narzissmediumregular;
    font-size: 66px;
    line-height: 74px;
    margin: 0 0 40px 0;
    word-break: auto-phrase;
}

.impact-top-content p {
    font-size: 26px;
    line-height: 26px;
    font-style: italic;
    font-weight: 300;
}

.impact-text__title {
    position: relative;
    font-size: 46px;
    line-height: 46px;
    font-weight: 400;
    padding-bottom: 20px;
    margin-bottom: 40px;
    font-family: "FuturaPT";
}

.impact-text__title:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 4px;
    background: linear-gradient(
        90deg,
        rgba(209, 169, 106, 1) 0%,
        rgba(195, 143, 60, 1) 100%
    );
}

.impact-text p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 24px;
}

.impact-text-action {
    display: block;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 100%;
    color: black;
    background-color: #d8a342;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    margin-bottom: 40px;
    text-decoration: none;
}

.impact-text-donat {
    display: block;
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 24px;
    color: #d8a342;
    text-decoration: underline;
}

.impact-text-donat:hover {
    text-decoration: none;
}

@media only screen and (min-width: 768px) {
    .impact {
        margin-top: 250px;
        margin-bottom: 80px;
    }
    .container-impact {
        flex-direction: row;
        margin-bottom: 80px;
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
            url(/assets/img/philanthropy/impact-bg.png) no-repeat;
    }

    .container-impact--diploma {
        background: none;
    }

    .impact-top-image {
        flex: 0 0 50%;
        margin: 0;
        background: none;
    }

    .impact-top-content {
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .impact-text__title:after {
        width: 210px;
    }

    .impact-text-action {
        width: 270px;
    }
}