@import url("https://fonts.jimstatic.com/css?family=PT+Sans+Narrow|PT+Sans&subset=latin,latin-ext");

:root {
    --green: #68a94a;
    --green-hover: #3c622b;
    --green-soft: #b5d8a6;
    --text: #525b56;
    --border: #acb4af;
    --sidebar: #f2f3f2;
    --footer: #292e2b;
    --footer-text: #848f89;
    --panel-shadow: 0 0 0.2em 0.2em rgba(0, 0, 0, 0.2);
    --radius: 6px;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "PT Sans Narrow", "Century Gothic", "Apple Gothic", sans-serif;
    font-size: 1.8rem;
    line-height: 1.7;
    background: #d6dae8 url("../images/background.jpg") center top / cover fixed no-repeat;
}

a {
    color: var(--green);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover,
a:focus,
a:active {
    color: #4a68a9;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 30px;
}

.nav-toggle {
    display: none;
}

.site-shell {
    position: relative;
}

.site-all {
    position: relative;
}

.hero-panel {
    position: relative;
}

.main-nav,
.page-panel {
    background-color: #fff;
    box-shadow: var(--panel-shadow);
}

.main-nav {
    padding: 1.5em 0;
}

.main-nav ul,
.mobile-nav ul,
.subnav ul,
.footer-links,
.share-links {
    margin: 0;
    padding: 0;
}

.main-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
}

.main-nav li,
.mobile-nav li,
.subnav li {
    list-style: none;
}

.main-nav a {
    display: inline-block;
    margin: 0.5em 1em 0.5em 0;
    padding: 0.5em 1em;
    border-radius: var(--radius);
    color: var(--green);
    font-family: "PT Sans Narrow", sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.main-nav li.current a,
.main-nav a:hover,
.main-nav a:focus,
.main-nav a:active {
    background-color: var(--green);
    color: #fff;
}

.site-header {
    padding: 10rem 0;
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 5%;
}

.site-logo {
    display: inline-flex;
    width: 35%;
    min-width: 137px;
    max-width: 220px;
}

.site-title-wrap {
    flex: 1;
}

.site-title {
    margin: 0;
    color: #fff;
    font-family: "PT Sans", "Century Gothic", "Apple Gothic", sans-serif;
    font-size: 5rem;
    line-height: 1.05;
    text-transform: uppercase;
}

.content-layout {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
}

.content-area {
    min-height: 300px;
    padding-bottom: 1.5rem;
    word-wrap: break-word;
}

.content-area h1,
.content-area > h2:first-child {
    margin: 0 0 1.5rem;
    color: var(--green);
    font-family: "PT Sans", "Century Gothic", "Apple Gothic", sans-serif;
    font-size: 4.8rem;
    font-weight: normal;
    line-height: 1.05;
}

.content-area h2 {
    margin: 0 0 1rem;
    color: var(--green);
    font-family: "PT Sans", "Century Gothic", "Apple Gothic", sans-serif;
    font-size: 3.2rem;
    font-weight: normal;
    line-height: 1.25;
}

.content-area h3 {
    margin: 0 0 1rem;
    color: var(--green);
    font-family: "PT Sans", "Century Gothic", "Apple Gothic", sans-serif;
    font-size: 2.4rem;
    font-weight: normal;
    line-height: 1.25;
}

.content-area p,
.content-area li,
.sidebar-meta p {
    font-size: 1.8rem;
}

.content-area p,
.sidebar-meta p {
    margin: 0 0 1em;
}

.content-area ul,
.content-area ol {
    margin: 0 0 1em;
    padding-left: 2em;
}

.content-area li {
    margin-bottom: 0.5em;
}

.content-area hr {
    margin: 3rem 0 0;
    border: 0;
    border-top: 1px solid var(--border);
}

.page-intro {
    margin-bottom: 2rem;
}

.main-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4%;
    margin-top: 2rem;
}

.content-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.content-box p:last-of-type {
    margin-bottom: 1.5rem;
}

.content-box-media {
    width: 100%;
    margin: 0 0 1.5rem;
}

.content-box-media img {
    width: 100%;
    border-radius: var(--radius);
}

.content-box > a:last-child,
.btn,
button,
.j-calltoaction-link-style-1 {
    display: inline-block;
    width: auto;
    margin: auto 0 0;
    padding: 1rem 2rem;
    border: 2px solid var(--green);
    border-radius: var(--radius);
    background-color: var(--green) !important;
    color: #fff !important;
    font-family: inherit;
    font-size: 1.6rem;
    line-height: 1.5;
    cursor: pointer;
    text-decoration: none;
}

.content-box > a:last-child:hover,
.content-box > a:last-child:focus,
.btn:hover,
.btn:focus,
button:hover,
button:focus,
.j-calltoaction-link-style-1:hover,
.j-calltoaction-link-style-1:focus {
    background-color: var(--green-hover) !important;
    border-color: var(--green-hover) !important;
    color: #fff !important;
}

.content-layout--with-subnav {
    display: grid;
    grid-template-columns: minmax(0, 67%) 29%;
    gap: 4%;
    align-items: start;
}

.subnav {
    margin-top: -1rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.subnav a {
    display: block;
    padding: 1rem 2rem;
    background-color: var(--green);
    color: #fff;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.subnav li:first-child a {
    padding-top: 2rem;
}

.subnav li:last-child a {
    padding-bottom: 2rem;
}

.subnav li.current a,
.subnav a:hover,
.subnav a:focus,
.subnav a:active {
    background-color: var(--green-soft);
    color: #fff;
}

.site-sidebar {
    padding: 3rem 0;
    background: var(--sidebar) url("../images/backblue.gif") right center / auto 100% no-repeat;
    color: var(--footer-text);
}

.sidebar-grid {
    display: grid;
    grid-template-columns: minmax(180px, 23%) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}

.sidebar-heading {
    margin: 0 0 1.5rem;
    color: var(--text);
    font-family: "PT Sans", "Century Gothic", "Apple Gothic", sans-serif;
    font-size: 1.8rem;
    font-weight: normal;
}

.share-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.share-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 4.6rem;
    padding: 0.8rem 1.4rem;
    border-radius: var(--radius);
    background-color: var(--green);
    color: #fff;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.share-links a:hover,
.share-links a:focus {
    background-color: var(--green-hover);
    color: #fff;
}

.sidebar-meta a {
    color: inherit;
}

.sidebar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.site-footer {
    padding: 2rem 0 4rem;
    background-color: var(--footer);
    color: var(--footer-text);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    color: var(--footer-text);
    font-size: 1.4rem;
}

.footer-links a {
    color: var(--footer-text);
}

.contact-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--text);
    border-radius: var(--radius);
    background-color: #fff;
    color: var(--text);
    font: inherit;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.bank-info {
    margin: 2rem 0;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-buttons .j-calltoaction-link-style-1 {
    flex: 0 0 auto;
}

.small-text {
    font-size: 1.6rem;
}

.mobile-nav-toggle {
    position: fixed;
    top: 25px;
    right: 0;
    z-index: 4;
    display: none;
    width: 70px;
    padding: 1.6rem 2.2rem;
    border-top-left-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
    background-color: #ececec;
    box-shadow: inset 0 0 0.2em 0.2em rgba(0, 0, 0, 0.03);
    cursor: pointer;
}

.mobile-nav-overlay {
    display: none;
}

.mobile-nav-toggle span,
.mobile-nav-toggle span::before,
.mobile-nav-toggle span::after {
    display: block;
    width: 25px;
    border-top: 3px solid #444;
    border-radius: 999px;
    transition: all 0.3s ease;
    content: "";
}

.mobile-nav-toggle span {
    position: relative;
    margin: 5px 0;
}

.mobile-nav-toggle span::before {
    position: absolute;
    top: -8px;
}

.mobile-nav-toggle span::after {
    position: absolute;
    top: 2px;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -320px;
    z-index: 3;
    width: min(320px, 75vw);
    height: 100vh;
    overflow-y: auto;
    background-color: #fff;
    box-shadow: 1px 1px 0.2em 0.1em rgba(0, 0, 0, 0.2);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem 2rem 1.5rem 3rem;
    border-bottom: 1px solid #d8ddd8;
    color: var(--text);
    font-family: "PT Sans", "Century Gothic", "Apple Gothic", sans-serif;
    font-size: 2.2rem;
    text-transform: uppercase;
}

.mobile-nav__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius);
    background-color: #ececec;
    color: var(--text);
    cursor: pointer;
    font-family: "PT Sans Narrow", sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.mobile-nav a {
    display: block;
    padding: 1.2rem 2rem 1.2rem 3rem;
    border-bottom: 1px dotted #c6c6c6;
    color: var(--green);
    font-size: 1.8rem;
    text-transform: uppercase;
}

.mobile-subnav a {
    padding-left: 4rem;
    font-size: 1.5rem;
    text-transform: none;
}

.mobile-nav li.current > a,
.mobile-nav a:hover,
.mobile-nav a:focus {
    background-color: var(--green);
    color: #fff;
}

.nav-toggle:checked + .site-shell .mobile-nav {
    left: 0;
}

.nav-toggle:checked + .site-shell .mobile-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 2;
    background: rgba(17, 24, 21, 0.45);
}

.nav-toggle:checked + .site-shell .site-all::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.65);
    z-index: 1;
    pointer-events: none;
}

.nav-toggle:checked + .site-shell .mobile-nav-toggle span {
    border-color: transparent;
}

.nav-toggle:checked + .site-shell .mobile-nav-toggle span::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle:checked + .site-shell .mobile-nav-toggle span::after {
    top: 0;
    transform: rotate(-45deg);
}

@media (max-width: 767px) {
    body {
        font-size: 1.7rem;
        background-attachment: scroll;
        background-position: center top;
    }

    .container {
        padding: 0 18px;
    }

    .mobile-nav-toggle {
        display: block;
        top: 16px;
        width: 64px;
        padding: 1.4rem 1.8rem;
    }

    .main-nav {
        display: none;
    }

    .site-header {
        padding: 2.8rem 0 3.6rem;
    }

    .site-header__inner {
        display: block;
        padding-right: 5.6rem;
    }

    .site-logo {
        width: 104px;
        max-width: 100%;
        min-width: 0;
        margin-bottom: 1.4rem;
    }

    .site-title {
        font-size: 2.8rem;
        line-height: 1.1;
    }

    .content-layout,
    .content-layout--with-subnav {
        display: flex;
        flex-direction: column;
        gap: 1.8rem;
        padding-top: 1.8rem;
        padding-bottom: 1.8rem;
    }

    .subnav {
        order: -1;
        margin: 0;
    }

    .main-content,
    .sidebar-grid {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }

    .main-content {
        margin-top: 1.2rem;
    }

    .content-area h1,
    .content-area > h2:first-child {
        font-size: 3rem;
    }

    .content-area h2 {
        font-size: 2.6rem;
    }

    .content-area h3 {
        font-size: 2.2rem;
    }

    .content-area p,
    .content-area li,
    .sidebar-meta p {
        font-size: 1.7rem;
    }

    .page-intro {
        margin-bottom: 2.2rem;
        padding: 1.6rem 1.5rem;
        border-radius: var(--radius);
        background: linear-gradient(135deg, rgba(104, 169, 74, 0.12), rgba(104, 169, 74, 0.03));
    }

    .content-box {
        padding: 1.6rem 1.5rem;
        border: 1px solid rgba(172, 180, 175, 0.7);
        border-radius: var(--radius);
        background-color: #fbfcfb;
        box-shadow: 0 0.8rem 2rem rgba(41, 46, 43, 0.06);
    }

    .content-box-media {
        margin-bottom: 1.2rem;
    }

    .content-box > a:last-child,
    .btn,
    button {
        width: 100%;
        margin-top: 1rem;
        text-align: center;
    }

    .subnav a {
        padding: 1.2rem 1.5rem;
        font-size: 1.6rem;
    }

    .subnav li:first-child a,
    .subnav li:last-child a {
        padding-top: 1.2rem;
        padding-bottom: 1.2rem;
    }

    .site-sidebar {
        padding: 2.2rem 0;
        background-image: none;
    }

    .sidebar-grid {
        gap: 1.8rem;
    }

    .share-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .share-links a {
        width: 100%;
        min-width: 0;
    }

    .sidebar-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 420px) {
    html {
        font-size: 56.25%;
    }

    .mobile-nav {
        left: -100%;
        width: 88vw;
    }

    .mobile-nav__header {
        padding-left: 2rem;
    }

    .mobile-nav a {
        padding-left: 2rem;
        padding-right: 1.6rem;
    }

    .mobile-subnav a {
        padding-left: 3rem;
    }

    .site-title {
        font-size: 2.4rem;
    }

    .page-intro,
    .content-box {
        padding: 1.4rem 1.2rem;
    }

    .content-area h1,
    .content-area > h2:first-child {
        font-size: 2.6rem;
    }

    .content-area h2 {
        font-size: 2.3rem;
    }

    .content-area h3 {
        font-size: 2rem;
    }
}
