/* ==========================================================
   Content
   ========================================================== */

   .content {
    width: min(calc(100% - 40px), var(--content-width));
    margin: 0 auto;
    padding-top: 70px;
    padding-bottom: 0px;
}

.content h1,
.content h2,
.content h3 {
    margin: 0 0 40px;
    color: var(--color-dark);
    font-size: var(--font-size-heading);
    font-weight: var(--font-extra-bold);
    line-height: 1.1;
    text-transform: uppercase;
}

.content h1,
.content h2 {
    text-align: center;
}

.content h3 {
    text-align: left;
    font-size: 20px;
}

.content p {
    margin: 0 0 20px;
    color: var(--color-dark);
    font-size: var(--font-size-body);
    font-weight: var(--font-regular);
    line-height: 1.7;
    text-align: justify;
    hyphens: auto;
    text-indent: 30px;
}

.content p:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   Mobile
   ========================================================== */

@media screen and (max-width: 700px) {

    .content {
        width: calc(100% - 40px);
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .content h1,
    .content h2 {
        font-size: 24px;
        text-align: center;
        margin: 0 0 20px;
    }
    
    .content h3 {
        font-size: 18px;
        text-align: center;
        margin: 0 0 20px;
    }

    .content p {
        font-size: 15px;
        line-height: 1.7;
    }

}