#mainCont {
    margin-top: 25px;
    display: grid;
    grid-template-columns: 8fr 3fr;
    grid-template-rows: auto;
}

#sideR {
    background-color: rgb(244, 253, 253);
    border-radius: 5px;
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 4;
}

h4 {
    text-align: center;
    color: white;
    padding: 3px;
    border-radius: 5px;
    background-color: #E65A3F;
}

.flexCont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    text-align: center;
}

.flexCont_end{
  align-items: center;
}

.entry{
    padding: 1%;
    font-size: 1.25rem;
    font-weight: 300;
}

.entry ul li{
    font-size: 1rem !important;
}

#avisoCurso{
}

.PersM{
    font-family: Segoe_Local;
    background-color: rgb(241, 50, 75, 0.7);
    color: white;
    padding: 10px;
    border-radius: 5px;
    display: flex; 
    justify-content: space-around;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
}

.PersM #popB{    
    font-size: 6vw;
}
.PersM #popM{    
    font-size: 4vw;
}

@media (max-width: 1199px) {
    #mainCont {
        margin-top: 25px;
        display: block;
    }

    #sideR {
        background-color: rgb(244, 253, 253);
        border-radius: 5px;
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 2;
        grid-row-end: 3;
    }

} 

@media (max-width: 991px) {
    #gridContM{
        display: none;
    }

    #mainCont {
        margin-top: 25px;
        display: block;
    }

    #headImg{
        display: none;
    }

}