:root {
    --dblue: #414042;
    --lblue: #72849C;
    --green: #4D753E;
    --red: #FF0000;

    --black: #000;
    --text: #515B69;
    --border: #CACDD1;
    --lgray: #F0F0F0;
    --white: #FFF;
}

body {
    background-color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
}

.c { text-align: center; }

.r { text-align: right; }

.hide { display: none; }

main hgroup {
    max-width: 800px;
    margin: 40px auto 0 auto;
    text-align: center;
    padding: 20px;
}

main section {
    max-width: 1240px;
    margin: 0 auto;
}

main h1,
main h3 {
    font-family: 'Tinos', serif;
    font-weight: 400;
    color: var(--dblue);
}

main h1 {
    font-size: 36px;
    margin: 0 0 20px 0;
}

main h3 {
    font-size: 28px;
    margin: 0 0 10px 0;
}

main p {
    margin: 10px 0;
    line-height: 24px;
    color: var(--text);
}

main a {
    line-height: 24px;
    color: var(--blue);
    text-decoration: underline;
}

main a:hover {
    text-decoration: none;
    color: var(--green);
}


main ul li,
main ol li {
    padding: 5px;
    font-size: 15px;
    line-height: 24px;
    color: var(--text);
}

main ul li {
    list-style: none;
    position: relative;
}

main ul li::before {
    position: absolute;
    display: block;
    content: ' ';
    border-bottom: 1px solid var(--green);
    border-right: 1px solid var(--green);
    width: 6px;
    height: 12px;
    top: 12px;
    left: -20px;
    transform: translateY(-50%) rotate(45deg);
}

main hr.line {
    margin: 20px auto;
    padding: 0;
    width: 120px;
    height: 1px;
    border: none;
    background-color: var(--green);
}

main .topspace { height: 120px; }

picture.section {
    position: relative;
    display: block;
}

picture.section section {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 15%;
}

picture.section section h3 { color: var(--white); }

a.button {
    background-color: var(--green);
    color: var(--white);

    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 20px;
    text-decoration: none;
    padding: 11px 30px 10px 30px;
    display: inline-block;
    border-radius: 8px;
    cursor: pointer;
    box-sizing: border-box;

    transition: background-color 0.5s ease;
}

a.button:hover {
    background-color: var(--lblue);
    color: var(--white);
}