.grant-benefits {
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.grant-benefits::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.benefits-title.main-title {
    font-size: 5.8rem;
    line-height: 5.8rem;
    margin-top: 4rem;
    font-style: italic;
    width: 100%;
    text-align: center;
}

.benefits-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 100%;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
    display: block;
    position: relative;
    z-index: 2;
}

.grant-benefits__inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    border-top: 1px solid white;
    position: relative;
    z-index: 2;
}

.grant-benefit {
    padding: 4rem 2.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.grant-benefit h3 {
    margin-bottom: 1rem;
}

.grant-benefit h3 svg {
    margin-right: 1rem;
}

.grant-benefit:not(:last-child) {
    border-right: 1px solid white;
}

.grant-benefit__text { 
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 140%;
    color: #ffffff;
    text-align: left;
    display: block;
}

@media (max-width: 900px) {
    .grant-benefits {
        height: auto;
        align-items: start;
    }

    .benefits-title.main-title  {
        margin-bottom: 8rem;
        margin-top: 8rem;
        font-size: 4rem;
    }

    .grant-benefits__inner {
        flex-direction: column;
    }

    .grant-benefit:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid white;
    }
}

