.text_content h1 {
    font-size: 2.2vw;
}

.text_content {
    margin-left: auto;
    margin-right: auto;
    padding-left: 4vw;
    padding-right: 4vw;
}

.text_content section {
    margin-bottom: 40px;
}

.text_content h2 {
    font-size: 2vw;
    margin-bottom: 10px;
}

.text_content p {
    text-align: justify;
    text-justify: auto;
    font-size: 1.8vw;
    line-height: 1.5;
}

.text_content blockquote {
    font-style: italic;
    text-align: justify;
    text-justify: auto;
    font-size: 1.8vw;
    line-height: 1.5;
    margin-bottom: 10px;
}

.text_content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.text_content li {
    line-height: 1.5;
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
    font-size: 1.8vw;
    line-height: 1.5;
}

.text_content li:before {
    content: '\2022';
    font-size: 1.8vw;
    position: absolute;
    left: 0;
    top: 0;
}

.text_content .important {
    color: #af0a0a;
}

.text_content a {
    color: #5671b2;
}

.text_content a:hover {
    color: #6d8cd7;
}

@media (max-width: 810px) {
    .text_content {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 4vw;
        padding-right: 4vw;
    }

    .text_content h1 {
        font-size: 5vw;
    }

    .text_content h2 {
        font-size: 4.2vw;
    }

    .text_content p {
        font-size: 3.6vw;
    }

    .text_content blockquote {
        font-size: 3.6vw;
    }

    .text_content li {
        font-size: 3.6vw;
    }

    .text_content li:before {
        font-size: 3.6vw;
    }
}


