/* Grid

font-family: 'Hepta Slab', serif;
font-family: 'Inter', sans-serif;

================================================== */
.container {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.col, .cols {
    width: 100%;
    float: left;
    box-sizing: border-box;
}

/* For devices larger than 400px */
@media (min-width: 400px) {
    .container {
        width: 85%;
        padding: 0;
    }
}

/* For devices larger than 800px */
@media (min-width: 800px) {
    .container {
        width: 80%;
    }

    .col, .cols {
        margin-left: 4%;
    }

    .col:first-child, .cols:first-child {
        margin-left: 0;
    }

    .one.col, .one.cols {
        width: 4.66666666667%;
    }

    .two.cols {
        width: 13.3333333333%;
    }

    .three.cols {
        width: 22%;
    }

    .four.cols {
        width: 30.6666666667%;
    }

    .five.cols {
        width: 39.3333333333%;
    }

    .six.cols {
        width: 48%;
    }

    .seven.cols {
        width: 56.6666666667%;
    }

    .eight.cols {
        width: 65.3333333333%;
    }

    .nine.cols {
        width: 74.0%;
    }

    .ten.cols {
        width: 82.6666666667%;
    }

    .eleven.cols {
        width: 91.3333333333%;
    }

    .twelve.cols {
        width: 100%;
        margin-left: 0;
    }

    .one-third.col {
        width: 30.6666666667%;
    }

    .two-thirds.col {
        width: 65.3333333333%;
    }

    .one-half.col {
        width: 48%;
    }/* Offsets */

    .offset-by-one.col, .offset-by-one.cols {
        margin-left: 8.66666666667%;
    }

    .offset-by-two.col, .offset-by-two.cols {
        margin-left: 17.3333333333%;
    }

    .offset-by-three.col, .offset-by-three.cols {
        margin-left: 26%;
    }

    .offset-by-four.col, .offset-by-four.cols {
        margin-left: 34.6666666667%;
    }

    .offset-by-five.col, .offset-by-five.cols {
        margin-left: 43.3333333333%;
    }

    .offset-by-six.col, .offset-by-six.cols {
        margin-left: 52%;
    }

    .offset-by-seven.col, .offset-by-seven.cols {
        margin-left: 60.6666666667%;
    }

    .offset-by-eight.col, .offset-by-eight.cols {
        margin-left: 69.3333333333%;
    }

    .offset-by-nine.col, .offset-by-nine.cols {
        margin-left: 78.0%;
    }

    .offset-by-ten.col, .offset-by-ten.cols {
        margin-left: 86.6666666667%;
    }

    .offset-by-eleven.col, .offset-by-eleven.cols {
        margin-left: 95.3333333333%;
    }

    .offset-by-one-third.col, .offset-by-one-third.cols {
        margin-left: 34.6666666667%;
    }

    .offset-by-two-thirds.col, .offset-by-two-thirds.cols {
        margin-left: 69.3333333333%;
    }

    .offset-by-one-half.col, .offset-by-one-half.cols {
        margin-left: 52%;
    }
}

/* Base Styles
================================================== */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
    font-size: 62.5%;
}

var {
    font-style: normal;
}

body, body.mceContentBody, .mceContentBody table, .mceContentBody td {
    font-size: 1.8em;
    /* currently ems cause chrome bug misinterpreting rems on body element */
    line-height: 1.4;
    font-weight: 400;
    color: #003D00;
    font-family: 'Inter', sans-serif;
}

body.mceContentBody, .mceContentBody table, .mceContentBody td {
    font-size: 18px;
    line-height: 1.5;
}

.mceContentBody {
    margin: 5px;
    background-image: none;
    background-color: #fff
}

body.mceContentBody img[style^="float: left"] {
    margin: 0px 3rem 3rem 0px !important;
    width: 40vw !important;
    max-width: 400px !important;
}

body.mceContentBody img[style^="float: right"] {
    margin: 0px 0px 2rem 3rem !important;
    width: 40vw !important;
    max-width: 400px !important;
}

iframe {
    max-width: 100%;
    border: 0;
}

/* Typography
================================================== */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    margin-bottom: 3rem;
    font-weight: 600;
    line-height: 1;
    color: #003D00;
    font-family: 'Hepta Slab', serif;
}

h1.pagename {
    font-style: normal;
    margin: 5rem 0;
    margin-top: -5rem;
    font-size: 2rem;
    position: relative;
    text-align: left;
    z-index: 1;
    padding: 2rem 0;
    padding-right: 6rem;
    display: inline-block;
}

h1.pagename:after {
    content: "";
    position: absolute;
    left: -100vw;
    top: 0;
    width: calc(110vw + 85%);
    height: 100%;
    background: rgba(229, 238, 230, 0.8);
    box-shadow: 0px 0px 40px rgba(0, 61, 0, 0.5);
    font-style: normal;
    font-size: 6rem;
    color: #A5C5A3;
    z-index: -1;
    border-radius: 100rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 500px) {
    h1.pagename {
        padding-right: 10rem;
        font-size: 3rem;
    }
}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 800px) {
    h1.pagename {
        font-size: 5rem;
    }
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 3.4rem;
}

h4 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

h5 {
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

h6 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

/* Links
================================================== */
a {
    text-decoration: none;
    color: #006600;
    text-decoration: underline;
}

a:hover {
    color: #004400;
    text-decoration: underline;
}

/* Buttons
================================================== */
.button, a.button, button, input[type="submit"], input[type="reset"], input[type="button"] {
    display: inline-block;
    padding: 0rem 2.5rem;
    height: 34px;
    display: inline-flex;
    width: auto;
    align-content: center;
    justify-content: center;
    align-items: center;
    background: #003D00;
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: 1.4rem;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
    transition: all ease 0.3s;
    border: 0;
    border-radius: 10rem;
    text-transform: capitalize;
}

.button-small, input[type="button"].button-small {
    padding: .5rem 4rem;
}

.button:hover, a.button:hover, button:hover, input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover, .button:focus, button:focus, input[type="submit"]:focus, input[type="reset"]:focus, input[type="button"]:focus {
    outline: 0;
    background: #336433;
    text-decoration: none;
}

/* Forms
================================================== */
input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select {
    height: 33px;
    font-size: 85%;
    width: 100%;
    max-width: 500px;
    padding: 0px 10px;
    line-height: 1;
    /* The 6px vertically centers text on FF, ignored by Webkit */
    background-color: #F2F7F2;
    border: 1px solid #9BC39B;
    box-shadow: none;
    box-sizing: border-box;
    color: #003D00;
    box-shadow: 0px;
    border-radius: 7px;
    margin-bottom: 1rem;
    box-sizing: border-box;
    transition: box-shadow ease 0.3s;
}

/* Removes awkward default styles on some inputs for iOS */
input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

textarea {
    min-height: 65px;
    padding-top: 6px;
    padding-bottom: 6px;
}

input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="text"]:focus, input[type="tel"]:focus, input[type="url"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
    box-shadow: 0px 0px 10px #9BC39B;
    ;
    outline: 0;
}

select {
    border: 0;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTBweCIgaGVpZ2h0PSIxM3B4IiB2aWV3Qm94PSIwIDAgMTAgMTMiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+QXJ0Ym9hcmQ8L3RpdGxlPgogICAgPGcgaWQ9IkFydGJvYXJkIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iR3JvdXAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuMDAwMDAwLCA3LjAwMDAwMCkiIGZpbGw9IiMwMDNEMDAiPgogICAgICAgICAgICA8cG9seWdvbiBpZD0iVHJpYW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQuOTczMzQzLCAzLjE2MzI0OSkgcm90YXRlKC0xODAuMDAwMDAwKSB0cmFuc2xhdGUoLTQuOTczMzQzLCAtMy4xNjMyNDkpICIgcG9pbnRzPSI0Ljk3MzM0MzMzIDAuMzQwNTQwNTQxIDkuOTQ2Njg2NjYgNS45ODU5NTczIDAgNS45ODU5NTczIj48L3BvbHlnb24+CiAgICAgICAgPC9nPgogICAgICAgIDxwb2x5Z29uIGlkPSJUcmlhbmdsZSIgZmlsbD0iIzAwM0QwMCIgcG9pbnRzPSI0Ljk3MzM0MzMzIC0yLjIyMDQ0NjA1ZS0xNCA5Ljk0NjY4NjY2IDUuNjQ1NDE2NzUgLTIuNDg2ODk5NThlLTE0IDUuNjQ1NDE2NzUiPjwvcG9seWdvbj4KICAgIDwvZz4KPC9zdmc+) no-repeat 99% 50%;
    padding: .5rem;
    background-color: #F2F7F2;
    border: 1px solid #9BC39B;
}

select option {
    color: #9BC39B;
}

select:focus {
    box-shadow: 0px 0px 10px #9BC39B;
    ;
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #799A79;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #799A79;
}

::-ms-input-placeholder {
    /* IE 10+ */
    color: #799A79;
}

::-moz-placeholder {
    /* Firefox 18- */
    color: #799A79;
}

label, legend {
    display: block;
    margin-bottom: .5rem;
    font-weight: 600;
}

fieldset {
    padding: 0;
    border-width: 0;
}

input[type="checkbox"], input[type="radio"] {
    display: inline;
}

label > .label-body {
    display: inline-block;
    margin-left: .5rem;
    font-weight: normal;
}

/* Lists
================================================== */
ul, ol {
    margin: 0;
    padding: 0;
    margin-bottom: 2rem;
}

ul {
    list-style: disc;
    margin-left: 2.5rem;
    margin-bottom: 2rem;
}

ol {
    list-style: decimal
}

.main li, .mceContentBody li {
    margin-bottom: 0;
    position: relative;
}

/* Code
================================================== */
code {
    padding: .2rem .5rem;
    margin: 0 .2rem;
    font-size: 90%;
    white-space: nowrap;
    background: #F1F1F1;
    border: 1px solid #E1E1E1;
    border-radius: 4px;
}

pre > code {
    display: block;
    padding: 1rem 1.5rem;
    white-space: pre;
}

/* Tables
================================================== */
th, td {
    padding: 5px 15px;
    text-align: left;
}

th:first-child, td:first-child {
    padding-left: 0;
}

th:last-child, td:last-child {
    padding-right: 0;
}

strong {
    font-weight: 600;
}

/* Spacing
================================================== */
button, .button {
    margin-bottom: 1rem;
}

input, textarea, select, fieldset {
    margin-bottom: 1.5rem;
}

pre, blockquote, dl, figure, table, p, form {
    margin: 0;
    margin-bottom: 2.5rem;
}

/* Utilities
================================================== */
.u-full-width {
    width: 100%;
    box-sizing: border-box;
}

.u-max-full-width {
    max-width: 100%;
    box-sizing: border-box;
}

.u-pull-right {
    float: right;
}

.u-pull-left {
    float: left;
}

.button {
}

.small {
    font-size: 70%;
    display: block;
}

/* Misc
================================================== */
hr {
    margin-top: 3rem;
    margin-bottom: 3.5rem;
    border-width: 0;
    border-top: 1px solid #CECFCF;
}

/* Slider Fix for Chrome */
.owl-carousel .owl-wrapper, .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.fc-tbx table td {
    margin: 0;
    padding: 0;
    border: 0;
}

.jarallax {
    position: relative;
    z-index: 0;
}

.jarallax > .jarallax-img {
    position: absolute;
    object-fit: cover;
    /* support for plugin https://github.com/bfred-it/object-fit-images */
    font-family: 'object-fit: cover;';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

body img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}

.main img[style^="float: left"] {
    margin: 0px 0rem 3rem 0px !important;
    width: 100vw !important;
}

.main img[style^="float: right"] {
    margin: 0px 0px 2rem 0rem !important;
    width: 100vw !important;
    height: auto;
    border-radius: 1rem;
}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 800px) {
    .main img[style^="float: left"] {
        margin: 0px 3rem 3rem 0px !important;
        width: 40vw !important;
        max-width: 400px !important;
    }

    .main img[style^="float: right"] {
        margin: 0px 0px 2rem 3rem !important;
        width: 40vw !important;
        max-width: 400px !important;
    }
}

table.equal-images img {
    max-height: 15vw;
    width: auto;
}

/* Clearing
================================================== */
/* Self Clearing Goodness */
.container:after, .row:after, .u-cf {
    content: "";
    display: table;
    clear: both;
}

/* Media Queries
================================================== */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/
/* Larger than mobile */
@media (min-width: 400px) {
}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 800px) {
}

/* Larger than desktop */
@media (min-width: 1000px) {
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
}


