.grid-texts {
    /* display: grid; */
    justify-content: center;
    /* grid-template-columns: repeat(2, 30.27%);
    grid-template-rows: repeat(2, 37%);
    grid-template-areas: "A B" "C D"; */
    column-gap: 32px;
    row-gap: 115px;
}

.grid-texts h5 {
    color: #E5007E;
    letter-spacing: 3.2px;
    font-weight: 600;
}

.grid-texts p {
    color: black;
    font-size: 30px;
    line-height: 44px;
    font-weight: 400;
}

.text-card:nth-child(1),
.text-card:nth-child(2) {
    margin-bottom: 115px;
}

@media (max-width: 992px) {
    .text-card:nth-child(3) {
        margin-bottom: 115px;
    }
    .grid-texts h5 {
        text-align: center;
    }
    .grid-texts p {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .grid-texts {
        padding: 20px !important;
    }
    .grid-texts p {
        font-size: 28px;
    }
}