body,html 
{
    margin: 0;
    padding: 0;
}

#institucional
{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4,15vw);
    grid-template-rows: repeat(2,15vw);
    grid-gap: 3px;
    justify-content: center;
    margin-top: 200px;
}

#institucional span
{
    background: grey;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding:15%;
}

#institucional span:nth-child(1)
{
    grid-column: span 2;
    grid-row: span 2;
    background: #3598C1;
}

#institucional span:nth-child(2)
{
    grid-column: span 2;
    background: #FFDD57;
}

#institucional span:nth-child(3)
{
    background: #83C7D4;
}

#institucional span:nth-child(4)
{
    background: #FF8357;
}

#institucional span h2, #institucional span p
{
    font-family: 'Raleway', sans-serif;
    color: white;
    margin: 5px;
}

#institucional span h2
{
    font-size: 1vw;
    font-weight: bold;
}

#institucional span p
{
    font-size: 0.8vw;
    font-weight: 600;
}

@media (max-width:768px)
{
    #institucional
    {
        margin-top: 350px;
        grid-template-columns: repeat(2,45vw);
        grid-template-rows: repeat(4,45vw);
    }

    #institucional span h2
    {
        font-size: 4vw;
    }

    #institucional span p
    {
        font-size: 2.7vw;
    }
}