:root{
    --PrimaryColor: #137695;
    --TitlesColor: #043c4d;
    --LegendsColor: #818181;
    --MenuHoverColor: #00c3ff;
    --ButonTextColor : #ffffff;
}

.reporting{
    width: 100%;
    background-color: #f3f3f3;
    padding-top: 30px;
    padding-bottom: 30px;
}

.reporting .container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.reporting .text-container{
    text-align: start;
}

.reporting .text-container h2{
    font-size: 32px;
    color: var(--TitlesColor);
}

.reporting .text-container span{
    color: var(--LegendsColor);
    padding-top: 20px;
    display: inline-block;
}
.reporting .container img{
    height: 500px;
    margin: 30px 0;
    border-radius: 10px;
}

@media (max-width:768px){
    .reporting .container{
        flex-direction: column;
    }
    .reporting .text-container span{
        text-align: justify;
    }
}