main .content {
    display: block;
    margin: auto;
    width: 100%;
    max-width: 1300px;
}

.content .subtitle {
    display: block;
    float: left;
    margin-top: 22px;
    color: #173250;
    font-size: 18px;
    text-align: center;
    line-height: 22px;
    width: 100%;
}

@media(min-width:768px) {
    .content .subtitle {
        margin-top: 48px;
        font-size: 22px;
        line-height: 27px;
    }
}

.content .title {
    display: block;
    float: left;
    margin-top: 15px;
    color: #00789c;
    font-size: 32px;
    font-weight: normal;
    text-align: center;
    line-height: 39px;
    width: 100%;
}

@media(min-width:768px) {
    .content .title {
        margin-top: 10px;
        font-size: 36px;
        line-height: 44px;
    }
}

.content .section-links-container {
    display: block;
    float: left;
    margin-top: 80px;
    margin-bottom: 10px;
    border-bottom: 11px solid #00789C;
    width: 100%;

    h2 {
        display: block;
        float: left;
        background-color: #00789C;
        color: #fff;
        font-size: 20px;
        font-weight: bold;
        text-transform: uppercase;
        line-height: 25px;
        padding: 15px 24px;
        width: 100%;

        @media(min-width:1024px) {
            padding: 15px 28px;
        }
    }

    ul {
        display: block;
        float: left;
        margin-top: 10px;
        width: 100%;

        li {
            display: block;
            float: left;
            width: 100%;

            li+& {
                border-top: 1px solid #00789C;
            }

            a {
                display: block;
                float: left;
                color: #173250;
                font-size: 18px;
                font-weight: bold;
                text-decoration: none;
                line-height: 25px;
                padding: 15px 28px;
                width: 100%;

                &.blue {
                    color: #00789C;
                }

                &:hover {
                    text-decoration: underline;
                }
            }
        }
    }
}

.content .links-container {
    display: block;
    float: left;
    scroll-margin-top: 75px;
    margin: 35px 0px 60px;
    padding: 0px 24px 0px;
    width: 100%;

    @media(min-width:1024px) {
        scroll-margin-top: 90px;
        border-bottom: 1px solid #00789C;
        padding: 0px 28px 14px;
    }

    .links-container + & {
        margin-top: -35px;
    }

    h2 {
        display: block;
        float: left;
        color: #00789C;
        font-size: 18px;
        font-weight: bold;
        text-transform: uppercase;
        width: 100%;
    }

    ul {
        display: block;
        float: left;
        margin-top: 20px;
        width: 100%;

        ul & {
            display: none;
            margin-top: 0px;
            padding: 0px 20px;
        }

        li {
            display: block;
            float: left;
            width: 100%;

            a,
            button {
                display: block;
                float: left;
                border: none;
                background-color: transparent;
                color: #02789C;
                font-size: 18px;
                font-weight: bold;
                text-align: left;
                text-decoration: underline;
                line-height: 25px;
                padding: 15px 0px;
                width: 100%;

                &:hover {
                    text-decoration: none;
                }

                .links-container>ul>li>& {
                    background-image: url(../_img/arrow.png);
                    background-repeat: no-repeat;
                    background-position: left center;
                    background-size: 9px 14px;
                    color: #173250;
                    text-decoration: none;
                    padding: 15px 0px 15px 20px;

                    &:hover {
                        text-decoration: underline;
                    }
                }
            }
        }
    }
}