#content-info-formularios-c-r {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background-color: #e2e2e2;
    margin: 30px 0px;
    padding: 30px;
}

#content-info-formularios-c-r > span{
    text-align: center;
    font-size: 20px;
    color: #606060;
    margin-top: 15px;
}

#content-cards-info-v-r {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.card-v-r {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    overflow: hidden;
}

.card-v-r > div{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
}

.card-v-r > div svg{
    width: 35px;
    fill: #eb671b;
}

.card-v-r > h4{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eb671b;
    height: 100px;
    border-radius: 50% 50% 0px 0px;
    color: #fff;
	font-family: "SF UI Bold";
    font-size: 20px;
    padding: 5px 20px;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    #content-cards-info-v-r {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 30px;
    }

    .card-v-r > div {
        gap: 5px;
        padding: 10px;
    }

    .card-v-r > h4 {
        height: 100px;
        font-size: 16px;
        padding: 5px 10px;
        height: 80px;
    }

    .card-v-r {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
        border-radius: 5px;
        overflow: hidden;
    }

    .card-v-r > div span {
        font-size: 14px;
    }

    #content-trabaja > div {
        padding: 10px;
    }
}