section.title {
    padding: 60px 0 50px 0;
    text-align: center;
}

section.title h1 {
    font-size: 38px;
    font-weight: 700;
}

section.title p {
    max-width: 930px;
    margin: auto;
    line-height: 30px;
    font-size: 15px;
    font-weight: 400;
}

section.gallery {
    padding: 0;
    overflow: hidden;
}

section.gallery ul {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    margin-left: calc((100% - 1690px) / 2);
}

section.gallery li {
    flex: 550px;
    flex-shrink: 0;
    flex-grow: 0;
}

section.gallery li img {
    width: 100%;
    height: 325px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

section.benefits {
    padding-bottom: 0;
}

section.benefits ul {
    display: flex;
}

section.benefits ul li {
    box-sizing: content-box;
    flex: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

section.benefits ul li:not(:last-child) {
    border-right: 1px solid var(--benefits-border);
}

section.benefits ul li img {
    width: 90px;
    margin-bottom: 25px;
}
section.benefits ul li h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}
section.benefits ul li p {
    margin: 0;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 400;
}

section.article {
    padding-bottom: 150px;
}

section article {
    max-width: 740px;
    margin: auto;
    text-align: center;
}

section article.closed {
    max-height: 350px;
    overflow: hidden;
    position: relative;
}

section article.closed:after {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 125px;
    bottom: 0;
    background: linear-gradient(var(--about-hidden-text), var(--background));
    z-index: 1;
}

section article h2 {
    font-size: 38px;
    font-weight: 700;
}

section article p {
    font-size: 18px;
    font-weight: 600;
    line-height: 35px;
}

section.article button {
    border: 0;
    background: 0;
    display: block;
    margin: auto;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
}

section.article button svg {
    margin-left: 10px;
}

@media screen and (max-width: 600px) {
    section.benefits ul {
        flex-wrap: wrap;
    }

    section.benefits ul li {
        flex: 50%;
        box-sizing: border-box;
    }

    section.benefits ul li:nth-child(2n) {
        border: 0;
    }
    
    section.benefits ul li:nth-child(n+3) {
        border-top: 1px solid var(--benefits-border);
    }
}