.content_blocks{
    padding: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 5rem;
    column-gap: 5rem;
}

.content_blocks .left_blocks , .content_blocks .right_blocks{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.content_blocks .block{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content_blocks .block .sub-blocks{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content_blocks .block .sub-blocks .sub-block{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.content_blocks .title h2{
    font-family: 'Verdana-bold';
    font-size: 20px;
    color: #000;
}
.content_blocks .sub_title h3{
    font-family: 'Verdana-bold';
    font-size: 16px;
    color: #000;
}

.content_blocks .text p{
    font-family: 'Verdana';
    font-size: 14px;
    color: #000;
    margin-bottom: 0.5rem;
    text-align: justify;
}

.content_blocks .text a{
    text-decoration: underline;
}