.reports-often {
    height: 196vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}
.text-reports {
    justify-content: space-evenly;
    flex-direction: column;
    display: flex;
    padding: 0 4%;
    background-color: #1B4A78;
    height: 60%;
    border-radius: 0 0 180px 0;
}
.text-reports h3 {
    font-size: 180%;
    color: #fff;
    margin-bottom: -16%;
    margin-top: -10%;
}
.text-reports p {
    font-weight: 400;
    font-size: 100%;
    color: #D3D3D3;
}
.text-reports p br {
    color: #fff;
    font-weight: 600;
}
.graphics-reports {
    height: 40%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.group {
    width: 90%;
    height: 16%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.group P {
    text-transform: uppercase;
    font-size: 80%;
}
.bar {
    height: 50%;
    background-color: #D3D3D3;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-right: 6%;
}
.bar p {
    font-weight: 600;
}
.level-bar {
    background-color: #2A6AA1;
}
.level-1 {
    height: 100%;
    width: 47.2%;
}
.level-2 {
    height: 100%;
    width: 35.6%;
}
.level-3 {
    height: 100%;
    width: 30.9%;
}
.level-4 {
    height: 100%;
    width: 25.2%;
}
.level-5 {
    height: 100%;
    width: 23.5%;
}

@media (min-width: 840px) {
    .reports-often {
        flex-direction: row-reverse;
        height: 140vh;
        justify-content: space-between;
    }
    .text-reports {
        width: 60%;
        height: 100%;
    }
    .graphics-reports {
        height: 80%;
        width: 40%;
    }
    .bar p {
        font-weight: 600;
        font-size: 110%;
    }
    .text-reports h3 {
        font-size: 220%;
        color: #fff;
        margin-bottom: -16%;
        margin-top: -10%;
    }
    .text-reports p {
        font-size: 120%;
    }
    .group p {
        font-size: 120%;
    }
    
}