/* <!-- content style --> */

.content {
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 5vw;
    margin: auto;
    padding-top: 36px;
}

.content * {
    text-align: justify;
}

.o_image {
    width: 25px;
    position: relative;
    top: 10px;
}

.content_head {
    font-size: 1.6rem;
    color: var(--head_color);
    font-weight: bold;
}

.content h2 {
    color: var(--title);
    text-align: center;
}

.content p {
    width: 100%;
    word-wrap: break-word;
    text-align: center;
    color: var(--small_text);
    margin-bottom: 6px;
}

.hr {
    width: 150px;
    border-style: solid;
    border-bottom-width: 3px;
    border-color: #7b5a14;
    margin: 10px auto 20px auto;
    border-top-width: 0;
}

.content ul {
    line-height: normal;
}

@media screen and (max-width:1350px) {
    .content {
        width: 80%;
    }

}

@media screen and (max-width:1050px) {
    .content {
        width: 90%;
    }

}

@media screen and (max-width:800px) {
    .content {
        width: 100%;
    }

}