.about-page {
    width: 100%;
}

.about-page .about-content {
    width: 100%;
    height: fit-content;
    background-color: var(--light-gray-color);
    padding: 60px 120px;
}

.about-page .about-content article {
    width: 100%;
    background-color: var(--main-white-color);
    padding: 15px;
    box-shadow: 0 0 10px #ddd;
    margin-bottom: 50px;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
}
.about-page .about-content article:hover {
    box-shadow: 0 0 7px 0 #333;
}

.about-page .about-content article h3.title {
    background-color: var(--light-gray-color);
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-green-color);
}

.about-page .about-content article .content {
    width: 100%;
    padding: 20px;
}

.about-page .about-content article .content ol,
.about-page .about-content article .content ul {
    padding: 10px 20px;
}

.about-page .about-content article .content ol li,
.about-page .about-content article .content ul li {
    padding: 5px 0;
}

.about-page .about-content article .content img,
.about-page .about-content article .content iframe,
.about-page .about-content article .content video {
    width: 100%;
    max-width: 100%;
}

@media only screen and (max-width: 820px) {
    .about-page .about-content {
        padding: 60px;
    }

    .about-page .about-content article h3.title {
        padding: 15px;
        font-size: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .about-page .about-content {
        padding: 30px;
    }

    .about-page .about-content article {
        font-size: 15px;
    }
}
