*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --textColor: #808080;
    --bluePrimary: #0077ff;
}
body{
    font-family: 'Roboto', sans-serif;
    height: 100%;
    background-color: rgb(255, 255, 255);
}

.content{
    margin: 4vw 0;
    margin: 2.5%;
    width: auto;
    min-height: 85vh;
    align-items: center;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.content .infocontent{

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: auto;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    margin: 2rem 0 10rem 0;
    position: relative;

}
.infoicon{
    z-index: -1;
    opacity: 0.1;
    width: 5rem;
    height: auto;
    align-self: center;
    position: absolute;
}
.info{
    width: 45rem;
    height: auto;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 2rem;
    font-size: 1.25rem;

}
.text{
    align-items: center;
    margin: 2.5%;
    display: flex;
    font-size: calc(15px + 0.8vw);
    width: 98rem;
}
.text h2{
    margin-left: 3rem;
}
.content .head{
    align-items: center;
    display: flex;
    height: 5rem;
}

.info_charts{
    display: flex;
    flex-direction: column;
}

@media only screen and (max-width:1549px){
    .info{
        text-align: center;
    }
    .text{
        width: auto;
    }
}