﻿@charset "UTF-8";
/*
    Overwrite settings, font, colors definitions, etc.
*/
/******************************************* 
    SETTINGS
    overwrite settings, font, colors definitions, etc.
********************************************/
/******************************************* 
    TOOLS
    Globally used mixins and functions. 
********************************************/
/*
  Functions
*/
/*
  Mixins
*/
/*
    TOOLS
    Globally used mixins and functions. 
    It’s important not to output any CSS in the first 2 layers.
*/
/******************************************* 
    TOOLS
    Globally used mixins and functions. 
********************************************/
/*
  Functions
*/
/*
  Mixins
*/
/*
    ELEMENTS
    Styling for bare HTML elements (like H1, A, etc.). 
    These come with default styling from the browser so we can redefine them here.
*/
/******************************************* 
    ELEMENTS
    Styling for bare HTML elements (like H1, A, etc.). 
    These come with default styling from the browser so we can redefine them here.
********************************************/
html {
    position: relative;
    min-height: 100%;
    font-size: 16px;
}

body {
    background-color: #FFFFFF;
    font-size: 1rem;
    line-height: 22px;
    color: #383838;
    font-family: Georgia W01 Regular;
    overflow-x: hidden;
}

*, *:focus, *:hover {
    outline: none;
}

@media (min-width: 576px) {
    body {
        font-size: 1.25rem;
        line-height: 26px;
    }
}

@media (min-width: 992px) {
    body {
        font-size: 1.375rem;
        line-height: 33px;
    }
}

h1, .h1 {
    font-family: Georgia W01 Regular;
    font-size: 2.5rem;
    line-height: 42px;
    color: #086132;
    font-weight: normal;
    margin-top: 0;
}

@media (min-width: 576px) {
    h1, .h1 {
        font-size: 3.6250rem;
        line-height: 65px;
    }
}

@media (min-width: 1230px) {
    h1, .h1 {
        font-size: 5.125rem;
        line-height: 90px;
    }
}

h2, .h2 {
    font-family: Georgia W01 Regular;
    font-size: 2.1875rem;
    line-height: 36px;
    color: #086132;
    font-weight: normal;
    margin-top: 0;
}

@media (min-width: 576px) {
    h2, .h2 {
        font-size: 3.1375rem;
        line-height: 55px;
    }
}

@media (min-width: 1230px) {
    h2, .h2 {
        font-size: 3.975rem;
        line-height: 80px;
    }
}

h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: "Avenir LT W01_65 Medium1475532";
    color: #086132;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
}

h3, .h3 {
    font-size: 1.1675rem;
    line-height: 31px;
}

@media (min-width: 576px) {
    h3, .h3 {
        font-size: 1.1875rem;
        line-height: 33px;
    }
}

h4, .h4 {
    font-size: 1.0675rem;
    line-height: 30px;
}

@media (min-width: 576px) {
    h4, .h4 {
        font-size: 1.0875rem;
        line-height: 32px;
    }
}

h5, .h5 {
    font-size: 1.0175rem;
    line-height: 29px;
}

@media (min-width: 576px) {
    h5, .h5 {
        font-size: 1.0375rem;
        line-height: 31px;
    }
}

h6, .h6 {
    font-size: 1.0rem;
    line-height: 28px;
}

@media (min-width: 576px) {
    h6, .h6 {
        font-size: 1.01rem;
        line-height: 30px;
    }
}

a {
    color: #4E9A33;
    cursor: pointer;
    text-decoration: none;
}

    a:hover {
        color: #64B446;
        text-decoration: none;
    }

small {
    font-size: 80%;
}

img {
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

p {
    margin: 0 0 10px 0;
}

table {
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    margin-top: 4px;
}

tr {
    vertical-align: top;
    border-bottom: 1px solid #4E9A33;
}

    tr:last-child {
        border-bottom: none;
    }

    tr > * {
        padding: 10px 0;
        padding-right: 10px;
    }

    tr:first-child > * {
        padding-top: 0;
    }

    tr:last-child > * {
        padding-bottom: 0;
    }

    tr > *:last-child {
        padding-right: 0;
    }

    tr > *:first-child {
        text-align: left;
    }

@media (min-width: 768px) {
    tr > *:first-child {
        min-width: 180px;
    }
}

@media (min-width: 1230px) {
    tr > *:first-child {
        min-width: 200px;
    }
}

tr > *:only-child {
    font-family: "Avenir LT W01_45 Book1475508";
}

td, th {
    font-family: "Avenir LT W01_45 Book1475508";
    font-size: 0.875rem;
    line-height: 19px;
}

@media (min-width: 768px) {
    td, th {
        font-size: 0.92rem;
        line-height: 21px;
    }
}

.tbl-title {
    font-family: "Avenir LT W01_65 Medium1475532";
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

li {
    padding: 0;
    margin-bottom: 10px;
}

button, input, optgroup, select, textarea {
    display: block;
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.775rem;
    line-height: 18px;
}

@media (min-width: 768px) {
    button, input, optgroup, select, textarea {
        font-size: 0.9rem;
        line-height: 22px;
    }
}


video {
    max-width: 100%;
}

.hidden {
    display: none;
}

section.no-top-padding {
    padding-top: 0;
}

/* Alternating Section BG colours*/

.body-content > section:not(.hidden):nth-of-type(odd) {
    background-color: #F8F8F8;
}

/*
    COMPONENTS
    Specific UI components. 
    This is where majority of our work takes place and our UI components 
    are often composed of Objects and Components.
*/
/******************************************* 
    COMPONENTS
	Specific UI components. This is where majority 
	of our work takes place and our UI components 
    are often composed of Objects and Components.
********************************************/
/*
	Project Components
 
    Going forward Sass is to be written in the following convention:
     - Define a region (to enable collapsibility - ctrl+a ctrl+m+l)
     - Write Sass per element with fully written names, abandoning the '&' prefix     
     - Modified elements are to use greater specifity to override the elements default styling
     - The SASS can be written in single line or multi-line, per preference, as blocks/elements should be easily searchable 
       from web insepecting then copy and pasting or collapsing to regions and searching manually

    Never use !important in this file, it should only ever be used in the utilities.scss
*/
/*#region Example SASS*/
/*#endregion*/

/*#region c-btn*/
.c-btn {
    display: inline-flex;
    align-items: center;
    position: relative;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 0.875rem;
    line-height: 1;
    text-transform: uppercase;
    padding: 15px 15px;
    border: none;
    border: 1px solid #64B446;
    background-color: transparent;
    color: #64B446;
    border-radius: 0;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out, border-color 0.5s ease-in-out;
}

@media (min-width: 768px) {
    .c-btn {
        font-size: 1rem;
    }
}

@media (min-width: 1230px) {
    .c-btn {
        font-size: 1.125rem;
    }
}

.c-btn:not([disabled]):hover, .c-btn:not([disabled]).active {
    text-decoration: none;
    background-color: #64B446;
    color: #134F33;
}

.c-btn[disabled], .c-btn[disabled]:hover {
    background-color: transparent;
    color: rgba(171, 252, 141, 0.4);
    border-color: transparent;
    cursor: not-allowed;
}

.c-btn.c-splash-legal-agree {
    background-color: inherit;
    border: none;
    color: #ABFC8D;
}

.c-btn.c-splash-legal-disagree {
    background-color: inherit;
    border: none;
    color: rgba(171, 252, 141, 0.4);
}

.c-btn.c-splash-legal-agree:hover {
    background-color: #ABFC8D;
    color: #134F33;
}

.c-nav-splash .c-btn.c-splash-legal-disagree:hover {
    background-color: #ABFC8D;
}
/*#endregion*/

/*#region c-nav*/
.c-nav {
    position: relative;
    display: block;
    transition: background-color 0.5s ease-in-out, top 0.5s ease-in-out;
    z-index: 10000;
    background-color: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

    .c-nav.open {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(255, 255, 255, 0);
    }

    .c-nav.change {
        background-color: #64b446;
    }

.c-nav-container {
    /*background-color: $white;*/
    padding: 15px 25px;
    transition: padding-top 0.1s ease-in-out, padding-bottom 0.1s ease-in-out;
}

@media (min-width: 992px) {
    .c-nav-container {
        padding: 30px 25px;
    }
}

.c-nav.open .c-nav-container {
    background-color: transparent;
}

.c-nav-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.c-nav-event {
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-nav-brand {
    display: block;
}

.c-nav-logo {
    position: relative;
    width: 145px;
    transition: width 0.1s ease-in-out;
}

@media (min-width: 768px) {
    .c-nav-logo {
        width: 195px;
    }
}

.c-nav.change .c-nav-logo > span {
    opacity: 1;
}

.c-nav-navbar {
    position: relative;
    margin-top: 45px;
    transition: 0.5s ease-in-out;
}

@media (min-width: 992px) {
    .c-nav-navbar {
        margin-top: 90px;
    }
}

@media (min-width: 1230px) {
    .c-nav-navbar {
        margin-top: 120px;
    }
}

.c-nav-navbar.fade-in {
    transition-property: opacity;
    opacity: 0;
    display: none;
}

    .c-nav-navbar.fade-in.trigger {
        opacity: 1;
    }

.c-nav-navbar.slide-down {
    top: calc(-100% - 200px);
    transition-property: top;
}

@media (min-width: 992px) {
    .c-nav-navbar.slide-down {
        top: auto;
    }
}

.c-nav-navbar.slide-down.trigger {
    top: 100%;
}

@media (min-width: 992px) {
    .c-nav-navbar.slide-down.trigger {
        top: auto;
    }
}

.c-nav-navbar.slide-left {
    left: auto;
    right: -100%;
    transition-property: right;
}

@media (min-width: 992px) {
    .c-nav-navbar.slide-left {
        right: auto;
    }
}

.c-nav-navbar.slide-left.trigger {
    right: 0;
}

.c-nav-navbar.slide-right {
    left: -100%;
    transition-property: left;
}

@media (min-width: 992px) {
    .c-nav-navbar.slide-right {
        left: auto;
    }
}

.c-nav-navbar.slide-right.trigger {
    left: 0;
}

.c-nav.open .c-nav-navbar {
    display: block;
    overflow: auto;
}

.c-nav-navigation {
    margin: 0;
    padding: 0;
    list-style: none;
    max-width: 1180px;
    margin: 0 auto;
    margin-bottom: 60px;
}

@media (min-width: 992px) {
    .c-nav-navigation {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .c-nav-navigation.c-nav-left {        
        justify-content: flex-start;
    }
}

.c-nav-item {
    position: relative;
    display: block;
    padding: 15px 0;
    border-top: 1px solid #D8D8D8;
    vertical-align: top;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 1.375rem;
    line-height: 30px;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .c-nav-item {
        padding: 0;
        border-top: 0;
        width: 25%;
        padding-right: 30px;
    }
}

@media (min-width: 1230px) {
    .c-nav-item {
        font-size: 2rem;
        line-height: 33px;
    }
}

@media (min-width: 992px) {
    .c-nav-child:nth-child(4n) {
        padding-right: 0;
    }
}

.c-nav-item:first-child {
    border-top: 0;
}

.c-nav-item:last-child {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .c-nav-item:last-child {
        margin-right: 0;
    }
}

.c-nav-item.open {
    padding-bottom: 30px;
}

@media (min-width: 768px) {
    .c-nav-item.open {
        /*padding-bottom: 60px;*/
    }
}

@media (min-width: 1230px) {
    .c-nav-item.open {
        padding-bottom: 0;
    }
}

.c-nav-item.c-nav-contact {
    border-top: none;
    padding: 0;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 21px;
}

@media (min-width: 1230px) {
    .c-nav-item.c-nav-contact {
        font-size: 1.125rem;
        line-height: 25px;
    }
}

.c-nav-link {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
    position: relative;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-nav-link {
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-nav-link {
        margin-bottom: 20px;
        letter-spacing: 0.8px;
    }
}

.c-nav-link.subnav {
    padding-left: 30px;
}

@media (min-width: 992px) {
    .c-nav-link.subnav {
        padding-left: 0;
    }
}

.c-nav-link:hover, .c-nav-link:focus {
    color: #FFFFFF;
}

.c-nav-link.subnav:before, .c-nav-link.subnav:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    height: 2px;
    width: 16px;
    background-color: #FFFFFF;
    transition: transform 0.5s ease-in-out;
    transform: rotate(-180deg);
}

@media (min-width: 992px) {
    .c-nav-link.subnav:before, .c-nav-link.subnav:after {
        content: none;
    }
}

.c-nav-link.subnav:after {
    transform: rotate(-90deg);
}

.c-nav-link.subnav:hover, .c-nav-link:focus {
    text-decoration: none;
}

.c-nav-item.open .c-nav-link.subnav:after, .c-nav-item.open .c-nav-link.subnav:before {
    transform: rotate(0deg);
}

.c-nav-item.open .c-nav-link.subnav {
    text-decoration: none;
}

.c-nav-toggler {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.c-nav-hamburger {
    width: 30px;
    display: inline-block;
}

@media (min-width: 992px) {
    .c-nav-hamburger {
        margin-right: 20px;
    }
}

.c-nav-hamburger span {
    display: block;
    margin-bottom: 5px;
    width: 100%;
    height: 2px;
    background-color: #4E9A33;
    transition: transform 0.5s ease-in-out;
    position: relative;
}

    .c-nav-hamburger span:last-child {
        margin-bottom: 0;
    }

.c-nav-toggler.open .c-nav-hamburger span {
    background-color: #FFFFFF;
    transform: rotate(-45deg);
}

    .c-nav-toggler.open .c-nav-hamburger span:first-child {
        top: 7px;
    }

    .c-nav-toggler.open .c-nav-hamburger span:nth-child(2) {
        transform: rotate(45deg);
    }

    .c-nav-toggler.open .c-nav-hamburger span:last-child {
        opacity: 0;
    }

.c-nav-cta-text {
    display: none;
    font-size: 0.875rem;
    line-height: 21px;
    font-family: "Avenir LT W01_95 Black1475556";
    color: #4E9A33;
    text-transform: uppercase;
    /*transition: color $transition-speed $transition-timing;*/
    display: none;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-nav-cta-text {
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-nav-cta-text {
        display: inline-block;
        letter-spacing: 0.8px;
    }
}

.c-nav.change .c-nav-cta-text {
    color: #FFFFFF;
}

.c-nav-text-close {
    display: none;
}

.c-nav.change .c-nav-text-close {
    display: inline-block;
}

.c-nav-login {
    display: block;
}

    .c-nav-login a {
        display: flex;
        align-items: center;
        text-decoration: none;
    }

.c-nav-login-icon {
    position: relative;
    width: 24px;
}

@media (min-width: 992px) {
    .c-nav-login-icon {
        margin-left: 20px;
    }
}

.c-nav-login-icon > span {
    width: 24px;
    height: 26px;
    height: 26px;
    background-position: -30px -2px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s;
}

.c-nav.change .c-nav-login-icon > span {
    opacity: 1;
}

.c-nav-subnav {
    margin: 0;
    padding: 0;
    list-style: none;
    height: 0;
    min-height: 0;
    overflow: hidden;
    transition: min-height 0.5s ease-in-out;
}

@media (min-width: 992px) {
    .c-nav-subnav {
        height: auto;
        overflow: visible;
    }
}

.c-nav-subnav-item {
    position: relative;
    display: block;
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.875rem;
    line-height: 19px;
    margin-top: 10px;
}

@media (min-width: 576px) {
    .c-nav-subnav-item {
        font-size: 1.0625rem;
        line-height: 26px;
    }
}

@media (min-width: 992px) {
    .c-nav-subnav-item {
        line-height: 32px;
    }
}

@media (min-width: 1230px) {
    .c-nav-subnav-item {
        font-size: 1.125rem;
        line-height: 38px;
    }
}

.c-nav-subnav-link {
    color: #134F33;
}

    .c-nav-subnav-link:hover, .c-nav-subnav-link:focus {
        color: #ABFC8D;
    }

.c-nav .nav-closed {
    display: block;
}

.c-nav .nav-open {
    display: none;
}

.c-nav.change .nav-closed {
    display: none;
}

.c-nav.change .nav-open {
    display: block;
}

.c-nav-scrolling .c-nav-logo {
    width: 145px;
}

.c-nav-scrolling .c-nav-container {
    padding-top: 15px;
    padding-bottom: 15px;
}

.c-nav-col-left {
    display: flex;
    width: 30%;
    justify-content: flex-start;
}

.c-nav-col-mid {
    display: flex;
    width: 40%;
    justify-content: center;
}

.c-nav-col-right {
    display: flex;
    width: 30%;
    justify-content: flex-end;
}

.c-nav-contact-splash {
    display: block;
}

@media (min-width: 768px) {
    .c-nav-contact-splash {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.c-nav-splash {
    display: none;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .c-nav-splash {
        margin-bottom: 45px;
    }
}

@media (min-width: 1230px) {
    .c-nav-splash {
        margin-bottom: 60px;
    }
}

.c-nav-splash-toggle {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    color: #FFFFFF;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 0.875rem;
    line-height: 16px;
    text-transform: uppercase;
    margin-top: 15px;
}

@media (min-width: 768px) {
    .c-nav-splash-toggle {
        margin-top: 0;
        font-size: 1rem;
        line-height: 20px;
    }
}

@media (min-width: 1230px) {
    .c-nav-splash-toggle {
        font-size: 1.125rem;
        line-height: 22px;
    }
}

.c-nav-splash-legal-title {
    display: none;
    font-family: "Avenir LT W01_95 Black1475556";
    color: #FFFFFF;
    font-size: 1.5rem;
    line-height: 26px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .c-nav-splash-legal-title {
        font-size: 1.75rem;
        line-height: 32px;
    }
}

@media (min-width: 1230px) {
    .c-nav-splash-legal-title {
        font-size: 2rem;
        line-height: 36px;
    }
}

/*#endregion*/
/*#region c-footer*/
.c-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #134F33;
}

.c-footer-container {
    padding: 15px 25px;
}

@media (min-width: 768px) {
    .c-footer-container {
        display: flex;
        padding: 25px;
    }
}

@media (min-width: 1230px) {
    .c-footer-container {
        padding: 35px;
    }
}

.c-footer-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    column-count: 2;
    margin-bottom: 20px;
}

@media (min-width: 576px) {
    .c-footer-nav {
        column-count: 3;
        column-gap: 9.5%;
    }
}

@media (min-width: 768px) {
    .c-footer-nav {
        order: 2;
        margin-bottom: 0;
        width: calc(80%);
    }
}

@media (min-width: 992px) {
    .c-footer-nav {
        width: calc(75%);
    }
}

.c-footer-nav-item {
    display: block;
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.75rem;
    line-height: 22px;
}

@media (min-width: 768px) {
    .c-footer-nav-item {
        font-size: 0.875rem;
    }
}

.c-footer-nav-link {
    color: #FFFFFF;
}

.c-footer-copyright {
    color: #FFFFFF;
}

@media (min-width: 768px) {
    .c-footer-copyright {
        width: 280px;
        margin-right: 60px;
        order: 1;
    }
}

@media (min-width: 992px) {
    .c-footer-copyright {
        width: 20%;
    }
}

.c-footer-copyright p {
    display: block;
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.75rem;
    line-height: 16px;
    margin: 0;
}

@media (min-width: 768px) {
    .c-footer-copyright p {
        font-size: 0.875rem;
        line-height: 21px;
    }
}

/*#endregion*/
/*#region c-col*/
.c-col-25 {
    display: block;
}

@media (min-width: 768px) {
    .c-col-25 {
        width: 25%;
        padding-right: 30px;
    }
}

@media (min-width: 992px) {
    .c-col-25 {
        padding-right: 45px;
    }
}

.c-col-50 {
    display: block;
    width: 100%;
}

@media (min-width: 992px) {
    .c-col-50 {
        width: 50%;
    }
}

.c-col-50 > *:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .c-col-right {
        padding-right: 0;
        padding-left: 30px;
    }
}

.c-col-75 {
    display: block;
    width: 100%;
}

@media (min-width: 992px) {
    .c-col-75 {
        width: 75%;
    }
}

.c-col-75 > *:last-child {
    margin-bottom: 0;
}

.c-col-100 {
    display: block;
    width: 100%;
}

    .c-col-100 > *:last-child {
        margin-bottom: 0;
    }

/*#endregion*/
/*#region c-cta*/
.c-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #4E9A33;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 0.75rem;
    line-height: 16px;
    /*margin-left: 15px;*/
    text-transform: uppercase;
    z-index: 100;
    cursor: pointer;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-cta {
        /*margin-left: 30px;*/
        font-size: 0.9375rem;
        line-height: 22px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-cta {
        letter-spacing: 0.8px;
    }
}

.c-cta:hover, .c-cta:focus {
    color: #4E9A33;
}

.c-cta-text {
    position: relative;
}

.c-cta-arrow {
    position: relative;
    width: 40px;
    height: 2px;
    background-color: #134F33;
    transition: width 0.3s ease-in-out;
}

@media (min-width: 992px) {
    .c-cta:hover .c-cta-arrow, .c-cta:focus .c-cta-arrow {
        width: 100%;
    }
}

.c-cta-arrow::after, .c-cta-arrow::before {
    content: '';
    background-color: inherit;
    display: block;
    position: absolute;
    right: -1px;
    margin-top: auto;
    margin-bottom: auto;
    height: 10px;
    width: 2px;
}

.c-cta-arrow::before {
    top: 1px;
    transform-origin: top right;
    transform: rotate(45deg);
}

.c-cta-arrow::after {
    transform: rotate(-45deg);
    bottom: 1px;
    transform-origin: bottom right;
}

.c-cta-light {
    color: #ABFC8D;
}

    .c-cta-light .c-cta-arrow {
        background-color: #FFFFFF;
    }

    .c-cta-light:hover, .c-cta-light:focus {
        color: #ABFC8D;
    }

.c-cta-white {
    color: #FFFFFF;
}

    .c-cta-white .c-cta-arrow {
        background-color: #ABFC8D;
    }

    .c-cta-white:hover, .c-cta-white:focus {
        color: #FFFFFF;
    }

.c-cta-back {
    flex-direction: row-reverse;
}

    .c-cta-back .c-cta-arrow {
        margin-left: 0;
        margin-right: 10px;
    }

        .c-cta-back .c-cta-arrow::after, .c-cta-back .c-cta-arrow::before {
            right: auto;
            left: -1px;
        }

        .c-cta-back .c-cta-arrow::before {
            transform: rotate(-45deg);
            transform-origin: top left;
        }

        .c-cta-back .c-cta-arrow::after {
            transform: rotate(45deg);
            transform-origin: bottom left;
        }

    .c-cta-back .c-cta-arrow-container {
        justify-content: flex-end;
        margin-right: 10px;
        margin-left: 0;
    }

.c-cta-arrow-container {
    position: relative;
    display: flex;
    margin-left: 10px;
}

@media (min-width: 992px) {
    .c-cta-arrow-container {
        width: 70px;
    }
}

/*#endregion*/
/*#region c-overlay*/
.c-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100000;
    background-color: rgba(3, 18, 6, 0.51);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
    overflow: auto;
}

    .c-overlay.display {
        display: block;
    }

    .c-overlay .contained {
        height: 100%;
    }

.c-overlay-container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-overlay-close-container {
    text-align: right;
    height: 40px;
}

.c-overlay-close {
    display: block;
    position: absolute;
    cursor: pointer;
    width: 16px;
    height: 25px;
    right: 15px;
    top: auto;
}

    .c-overlay-close::before, .c-overlay-close::after {
        content: '';
        display: block;
        width: 16px;
        height: 2px;
        position: absolute;
        right: 0px;
        transition: transform 0.5s ease-in-out;
        opacity: 1;
        background-color: #4E9A33;
        margin-top: auto;
        margin-bottom: auto;
        top: 0;
        bottom: 0;
        transform: rotate(45deg);
    }

    .c-overlay-close::after {
        transform: rotate(135deg);
    }

.c-overlay-content {
    max-height: 100%;
}

/*#endregion*/
/*#region c-breadcrumb*/
.c-breadcrumb {
    display: block;
    padding-top: 15px;
    background-color: white !important;
}

.c-breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.c-breadcrumb-item {
    display: none;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 0.75rem;
    line-height: 16px;
    color: #AFAFAF;
    text-transform: uppercase;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-breadcrumb-item {
        margin-right: 5px;
        display: block;
        font-size: 0.9375rem;
        line-height: 22px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-breadcrumb-item {
        letter-spacing: 0.8px;
    }
}

.c-breadcrumb-item::after {
    content: '/';
    display: inline-block;
    padding-left: 5px;
}

@media (min-width: 768px) {

    .c-breadcrumb-item.c-breadcrumb-current::after {
        content: '/';
    }
}

.c-breadcrumb-item:last-child {
    margin-right: 0;
}

    .c-breadcrumb-item:last-child::after, .c-breadcrumb-item.c-breadcrumb-current::after {
        content: none;
    }

.c-breadcrumb-current {
    display: block;
}

.c-breadcrumb-link {
    color: #AFAFAF;
}

/*#endregion*/
/*#region c-pagination*/
.c-pagination {
    padding: 30px 0;
}



.c-pagination-back {
    align-items: center;
    margin-bottom: 8px;
    text-align: center;
}

    .c-pagination-back .c-cta-back {
        margin-left: 16px;
    }

@media (min-width: 768px) {
    .c-pagination-back {
        display: block;
        margin-right: 45px;
        margin-bottom: 0;
        text-align: initial;
    }

        .c-pagination-back .c-cta-back {
            margin-left: 0;
        }
}

.c-pagination-next {
    align-items: center;
    text-align: center;
}

    .c-pagination-next .c-cta {
        margin-right: 11px;
    }

.c-pagination-pages {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .c-pagination-container {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        justify-content: center;
    }

    .c-pagination-next {
        display: block;
        text-align: initial;
    }

        .c-pagination-next .c-cta {
            margin-right: 0;
        }
}

.c-pagination-pages {
    padding: 0;
    margin: 0;
    display: flex;
}

@media (min-width: 768px) {
    .c-pagination-pages {
        margin-right: 45px;
    }
}

.c-pagination-page {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border: 2px solid #64B446;
    color: #086132;
    text-transform: uppercase;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 0.9375rem;
    line-height: 22px;
    padding: 5px;
    text-align: center;
    outline: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    margin-right: 15px;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-pagination-page {
        width: 50px;
        height: 50px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-pagination-page {
        letter-spacing: 0.8px;
    }
}

.c-pagination-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    color: #086132;
    text-transform: uppercase;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 0.9375rem;
    line-height: 22px;
    padding: 5px;
    text-align: center;
    outline: none;
    width: 40px;
    height: 40px;
    margin-right: 15px;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-pagination-dots {
        width: 50px;
        height: 50px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-pagination-dots {
        letter-spacing: 0.8px;
    }
}

.c-pagination-page:hover {
    color: #086132;
}

.c-pagination-page.selected:hover {
    color: #FFFFFF;
}

.c-pagination-page:last-child {
    margin-right: 0;
}

.c-pagination-page.current {
    background-color: #64B446;
    color: #FFFFFF;
}

.c-pagination .c-cta {
    align-items: center;
    height: 16px;
}

@media (min-width: 768px) {
    .c-pagination .c-cta {
        /*align-items: baseline;*/
        height: auto;
    }
}

.c-pagination .c-cta-text {
    display: none;
}

@media (min-width: 768px) {
    .c-pagination .c-cta-text {
        display: block;
    }
}

/*#endregion*/
/*#region c-cookie*/

.c-cookie {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100000;
    background-color: #086132;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

@media print {
    .c-cookie {
        display: none;
    }
}

.c-cookie-container {
    padding: 20px 0;
    position: relative;
}

.c-cookie-text {
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 1rem;
    line-height: 23px;
    max-width: 100%;
    color: #FFFFFF;
}

    .c-cookie-text a {
        color: #ABFC8D;
    }

.c-cookie-close {
    top: 20px;
    right: 0;
}

    .c-cookie-close::before, .c-cookie-close::after {
        background-color: #ABFC8D;
    }

.c-cookie-buttons {
    display: flex;
    margin-top: 40px;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

    .c-cookie-buttons a {
        margin-left: 20px;
        width: 100%;
        height: 44px;
    }

        .c-cookie-buttons a:first-of-type {
            margin-left: 0;
        }


@media (min-width: 900px) {
    .c-cookie-container {
        display: flex;
    }

    .c-cookie-buttons {
        margin: auto;
    }

    .c-cookie-text {
        font-size: 0.875rem;
        line-height: 21px;
        padding: 0 30px;
    }
}


/*#endregion*/
/*#region c-dropdown*/
.c-dropdown {
    border: 1px solid #4E9A33;
    background-color: #FFFFFF;
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

@media (min-width: 425px) {
    .c-dropdown {
        display: inline-block;
        margin-right: 20px;
        width: auto;
        min-width: 270px;
    }
}

.c-dropdown-container {
    position: relative;
}

.c-dropdown-content {
    display: block;
    bottom: 0;
    width: 100%;
    max-height: 230px;
    overflow-y: auto;
}

.c-dropdown-selected {
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 0.75rem;
    line-height: 16px;
    color: #086132;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    text-transform: uppercase;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-dropdown-selected {
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-dropdown-selected {
        letter-spacing: 0.8px;
    }
}

.c-dropdown-selected:after, .c-dropdown-selected:before {
    content: '';
    display: block;
    position: absolute;
    right: 20px;
    width: 9px;
    height: 2px;
    background-color: #134F33;
    transition: transform ease-in-out 0.5s;
    top: 23px;
}

.c-dropdown-selected:before {
    transform: rotate(45deg);
    right: 25px;
}

.c-dropdown-selected:after {
    transform: rotate(-45deg);
}

.c-dropdown.open .c-dropdown-selected:before {
    transform: rotate(135deg);
}

.c-dropdown.open .c-dropdown-selected:after {
    transform: rotate(-135deg);
}

.c-dropdown-menu {
    display: block;
    padding: 0;
    height: 0;
    min-height: 0;
    overflow: hidden;
    transition: min-height 0.5s ease-in-out;
    /*comment below to make relative*/
    position: absolute;
    top: 100%;
    left: -1px;
    width: calc(100% + 2px);
    background-color: #FFFFFF;
    border: 1px solid #4E9A33;
    border-top: none;
    margin-bottom: 15px;
    z-index: 1000;
    opacity: 0;
}

.c-dropdown-item {
    display: block;
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.875rem;
    line-height: 20px;
    cursor: pointer;
    padding: 0 20px;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .c-dropdown-item {
        font-size: 1rem;
        line-height: 24px;
    }
}

.c-dropdown-item:first-child {
    margin-top: 15px;
}

.c-dropdown-link, .c-dropdown-link:hover, .c-dropdown-link:focus {
    color: #383838;
}

.c-dropdown-item:hover {
    font-family: "Avenir LT W01_95 Black1475556";
}

.c-dropdown-item-selected {
    display: none;
}

/*#endregion*/
/*#region c-announcement*/
.body-content .c-announcement {
    margin-left: auto;
    position: fixed;
    right: 25px;
    left: 25px;
    top: 50vh;
    background-color: #64B446 !important;
    padding: 15px;
    max-width: 290px;
    z-index: 1001;
    opacity: 1;
    transition: opacity ease-in-out 0.5s;
}

@media (min-width: 425px) {
    .body-content .c-announcement {
        left: auto;
    }
}

@media (min-width: 576px) {
    .body-content .c-announcement {
        max-width: 350px;
    }
}

@media (min-width: 768px) {
    .body-content .c-announcement {
        max-width: 580px;
        padding: 30px;
        left: 50%;
    }
}

@media (min-width: 1230px) {
    .body-content .c-announcement {
        right: calc((100% - 1180px) / 2);
        left: auto;
    }
}

.c-announcement > *:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .c-announcement-close {
        right: 30px;
    }
}

.c-announcement-close::before, .c-announcement-close::after {
    background-color: #FFFFFF;
}

.c-announcement-title {
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-right: 20px;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 1rem;
    line-height: 21px;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-announcement-title {
        letter-spacing: 0.4px;
        font-size: 1.125rem;
        line-height: 25px;
    }
}

@media (min-width: 992px) {
    .c-announcement-title {
        letter-spacing: 0.8px;
    }
}

.c-announcement-text {
    font-family: Georgia W01 Regular;
    font-size: 0.8125rem;
    line-height: 20px;
    margin-bottom: 20px;
    color: #383838;
}

@media (min-width: 768px) {
    .c-announcement-text {
        font-size: 1.125rem;
        line-height: 30px;
    }
}

@media (min-width: 1230px) {
    .c-announcement-text {
        font-size: 1rem;
        line-height: 26px;
    }
}

.c-announcement-contact {
    color: #FFFFFF;
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.75rem;
    line-height: 16px;
    margin-bottom: 5px;
    display: block;
}

@media (min-width: 768px) {
    .c-announcement-contact {
        font-size: 0.875rem;
        line-height: 21px;
    }
}

.c-announcement-contact a {
    color: #FFFFFF;
}

    .c-announcement-contact a:hover, .c-announcement-contact a:focus {
        color: #FFFFFF;
    }

/*#endregion*/
/*#region c-in-nav*/
.c-in-nav {
    padding: 30px 0;
    border-top: 1px solid #4E9A33;
    border-bottom: 1px solid #4E9A33;
}

@media (min-width: 768px) {
    .c-in-nav {
        padding: 0;
        border: 0;
        height: 0;
        overflow: hidden;
    }
}

.c-in-nav-menu {
    border: 1px solid #4E9A33;
    background-color: #FFFFFF;
    display: block;
}

@media (min-width: 768px) {
    .c-in-nav-menu {
        position: absolute;
        width: 230px;
        top: 20vh;
        right: 25px;
        z-index: 1000;
        /*transition: top $transition-speed $transition-timing;*/
    }
}

@media (min-width: 1230px) {
    .c-in-nav-menu {
        width: 280px;
        right: calc((100% - 1180px) / 2);
    }
}

.c-in-nav-container {
    position: relative;
    padding: 0 20px;
}

.c-in-nav-item {
    position: relative;
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 1rem;
    line-height: 19px;
    color: #383838;
    margin-bottom: 15px;
}

    .c-in-nav-item.current {
        font-family: "Avenir LT W01_95 Black1475556";
    }

    .c-in-nav-item.parent {
        font-family: "Avenir LT W01_95 Black1475556";
        font-size: 0.9375rem;
        line-height: 22px;
        margin-top: 15px;
        text-transform: uppercase;
        color: #086132;
        letter-spacing: 0.15px;
    }

@media (min-width: 768px) {
    .c-in-nav-item.parent {
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-in-nav-item.parent {
        letter-spacing: 0.8px;
    }
}

.c-in-nav-children .c-in-nav-children .c-in-nav-item .c-in-nav-link {
    padding-left: 7px;
}

.open .c-in-nav-link, .c-in-nav-toggler-link {
    display: block;
}

.open .c-in-nav-toggler-link {
    display: none;
}

.c-in-nav-item.parent .c-in-nav-link, .c-in-nav-item.parent .c-in-nav-link:hover, .c-in-nav-item.parent .c-in-nav-link:focus {
    color: #086132;
}

.c-in-nav-link, .c-in-nav-link:hover, .c-in-nav-link:focus {
    color: #383838;
}

    .c-in-nav-link.current, .c-in-nav-link:hover {
        font-weight: 800;
        letter-spacing: -.4px;
    }

.parent .c-in-nav-link:hover {
    letter-spacing: 0.5px;
}

.c-in-nav-toggler {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: inline-block;
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin-top: auto;
    margin-bottom: auto;
}

    .c-in-nav-toggler::before, .c-in-nav-toggler::after {
        content: '';
        display: block;
        width: 16px;
        height: 2px;
        position: absolute;
        /*right: 20px;*/
        right: 0px;
        transition: opacity 0.5s ease-in-out, transform 0.75s ease-in-out;
        opacity: 1;
        background-color: #4E9A33;
        top: 0;
        bottom: 0;
        margin-bottom: auto;
        margin-top: auto;
    }

    .c-in-nav-toggler::before {
        transform: rotate(-90deg);
    }

.open .c-in-nav-toggler::before {
    transform: rotate(0);
}

.open .c-in-nav-toggler::after {
    transform: rotate(90deg);
    opacity: 0;
}

.c-in-nav-children {
    display: none;
    /*padding: 0;
    height: 0; 
    min-height: 0;
    overflow: hidden;
    transition: min-height 0.75s $transition-timing;*/
    position: relative;
}

.c-in-nav-item.open + .c-in-nav-children {
    /*height: 100%;*/
}

.c-in-nav-content {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
}

@media (min-width: 768px) {
    .c-in-nav .contained {
        padding-left: 0;
        padding-right: 0;
    }
}

/*#endregion*/
/*#region c-form*/

.c-overlay .c-form {
    background-color: #fff;
}

.c-form-fields {
    display: block;
}

@media (min-width: 768px) {
    .c-form-fields {
        display: flex;
        flex-wrap: wrap;
    }
}

.c-form-field {
    display: block;
    margin-bottom: 20px;
    position: relative;
}

.sitecore-form {
    padding: 10px 30px 30px 30px;
}

    .sitecore-form .c-form-field {
        width: 100%;
    }

@media (min-width: 768px) {
    .c-form-field {
        margin-right: 20px;
        width: calc(50% - 10px);
    }
}

@media (min-width: 1230px) {
    .c-form-field {
        margin-right: 40px;
        width: calc(50% - 20px);
    }
}

.c-form-field:nth-child(even) {
    margin-right: 0;
}

.c-form-label {
    text-transform: uppercase;
    display: block;
    font-family: "Avenir LT W01_65 Medium1475532";
    color: #AFAFAF;
    font-size: 0.75rem;
    line-height: 16px;
    width: 100%;
    margin-bottom: 10px;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-form-label {
        font-size: 0.875rem;
        line-height: 21px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-form-label {
        letter-spacing: 0.8px;
    }
}

.c-form-control {
    display: block;
    font-family: "Avenir LT W01_65 Medium1475532";
    color: #383838;
    font-size: 0.875rem;
    line-height: 19px;
    width: 100%;
    border: none;
    border-bottom: 1px solid #AFAFAF;
    padding-bottom: 5px;
    outline: none;
    background-color: transparent;
    border-radius: 0;
}

@media (min-width: 768px) {
    .c-form-control {
        line-height: 21px;
    }
}

.c-form-control:focus {
    border-bottom-color: #4E9A33;
}

.c-form-submit {
    display: block;
    background-color: #64B446;
    color: #FFFFFF;
    text-transform: uppercase;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 1rem;
    line-height: 21px;
    padding: 12px 30px;
    text-align: center;
    min-width: 150px;
    outline: none;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    letter-spacing: 0.15px;
}

    .c-form-submit:hover {
        color: #FFFFFF;
    }

@media (min-width: 425px) {
    .c-form-submit {
        width: auto;
    }
}

@media (min-width: 768px) {
    .c-form-submit {
        font-size: 0.9375rem;
        line-height: 22px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-form-submit {
        letter-spacing: 0.8px;
    }
}

.c-form-group-title {
    display: block;
    margin-bottom: 15px;
}

.c-form-group {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    margin-top: 15px;
}

@media (min-width: 768px) {
    .c-form-group {
        display: flex;
    }
}

.c-form-group-item {
    display: block;
    width: 100%;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .c-form-group-item {
        width: calc(50% - 10px);
        margin-bottom: 0;
    }
}

@media (min-width: 768px) {
    .c-form-group-item {
        width: calc(50% - 20px);
    }
}

@media (min-width: 768px) {
    .c-form-group-item:first-child {
        margin-right: 20px;
    }
}

@media (min-width: 1230px) {
    .c-form-group-item:first-child {
        margin-right: 40px;
    }
}

.c-form-field-radio {
    width: 100%;
    margin-right: 0;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 10px;
}

    .c-form-field-radio .c-form-label, .c-form-field-radio .c-form-control {
        width: auto;
        margin-bottom: 0;
    }

    .c-form-field-radio .c-form-control {
        cursor: pointer;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        margin-top: auto;
        margin-bottom: auto;
        opacity: 0;
        z-index: 1;
    }

    .c-form-field-radio .c-form-label {
        position: relative;
        padding-left: 20px;
    }

        .c-form-field-radio .c-form-label:after {
            content: '';
            width: 10px;
            height: 10px;
            background-color: transparent;
            border: 1px solid #AFAFAF;
            border-radius: 50%;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            margin-top: auto;
            margin-bottom: auto;
        }

    .c-form-field-radio .c-form-control:checked + .c-form-label:after {
        border-color: #383838;
    }

    .c-form-field-radio .c-form-control:checked + .c-form-label:before {
        content: '';
        width: 6px;
        height: 6px;
        background-color: #4E9A33;
        border-radius: 50%;
        position: absolute;
        left: 3px;
        top: 0;
        bottom: 0;
        margin-top: auto;
        margin-bottom: auto;
    }

.c-form-submission {
    background-color: #F8F8F8;
}

.c-form-privacy {
    display: block;
    margin-bottom: 30px;
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.875rem;
    line-height: 21px;
}

    .c-form-privacy a {
        color: #4E9A33;
    }

.c-form-title {
    display: block;
    color: #086132;
    font-family: Georgia W01 Regular;
    font-size: 1.375rem;
    line-height: 28px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .c-form-title {
        font-size: 2.375rem;
        line-height: 43px;
        margin-bottom: 30px;
    }
}

.c-form-content {
    display: block;
}

.c-form-container {
    display: block;
    position: relative;
}

.c-form-container-smaller {
    display: block;
    position: relative;
}

@media (min-width: 768px) {
    .c-form-container-smaller {
        width: 75%;
    }
}

@media (min-width: 1230px) {
    .c-form-container-smaller {
        width: 60%;
    }
}

.c-form-search {
    position: relative;
    width: auto;
    min-width: 270px;
    display: inline-block;
    height: 48px;
    background-color: #FFFFFF;
    border: 1px solid #4E9A33;
    padding: 0 20px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .c-form-search {
        margin-right: 20px;
    }
}

/*#endregion*/
/*#region c-header*/
.c-header {
    display: block;
    padding: 0 0 20px;
}

@media (min-width: 992px) {
    .c-header {
        padding-bottom: 30px;
    }
}

@media (min-width: 992px) {
    .c-header.home {
        /*height: 77vh;*/
    }
}

@media (min-width: 768px) {
    .c-header-container {
        display: flex;
        justify-content: space-between;
    }
}

.c-header-content {
    width: 100%;
    margin-bottom: 20px;
    padding-top: 30px;
}

@media (min-width: 768px) {
    .c-header-content {
        max-width: 70%;
        margin-bottom: 30px;
        padding-top: 50px;
    }
}

.c-header-heading {
    display: block;
    width: fit-content;
}

.c-header-text {
    color: #383838;
    font-family: "Avenir LT W01_65 Medium1475532";
    display: block;
    margin-bottom: 22px;
    font-size: 1rem;
    line-height: 22px;
}

@media (min-width: 768px) {
    .c-header-text {
        font-size: 1.375rem;
        line-height: 33px;
        margin-bottom: 30px;
    }
}

@media (min-width: 992px) {
    .c-header-text {
        font-size: 1.5625rem;
    }
}

.c-header-image-container {
    display: block;
    max-width: 500px;
}

@media (min-width: 768px) {
    .c-header-image-container {
        max-width: calc(50%);
    }
}

.c-header-image {
    display: block;
}

@media (min-width: 768px) {
    .c-header-image {
        margin-left: auto;
    }
}

.c-hero-animation-container {
    overflow: hidden;
}

.c-hero-animation-video {
    position: relative;
    left: 1px;
}
/*#endregion*/
/*#region c-signpost*/
.c-signpost {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .c-signpost {
        flex-direction: row;
    }
}

.c-signpost-item {
    width: 100%;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .c-signpost-item {
        padding: 65px 30px;
        width: 50%;
    }
}

@media (min-width: 1230px) {
    .c-signpost-item {
        /* IF xl ISNT = 1230px THEN UPDATE TO desktop */
        padding: 110px 130px;
    }
}

.c-signpost-item:first-child {
    background-color: #086132;
}

@media (min-width: 1230px) {
    .c-signpost-item:first-child {
        /* IF xl ISNT = 1230px THEN UPDATE TO desktop */
        padding-left: calc((100% - 1180px) / 2);
    }
}

.c-signpost-item:last-child {
    background-color: #134F33;
}

@media (min-width: 1230px) {
    .c-signpost-item:last-child {
        /* IF xl ISNT = 1230px THEN UPDATE TO desktop */
        padding-right: calc((100% - 1180px) / 2);
    }
}

.c-signpost-title {
    text-transform: uppercase;
    color: #ABFC8D;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 1rem;
    line-height: 21px;
    margin-bottom: 15px;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-signpost-title {
        font-size: 1.3125rem;
        line-height: 33px;
        margin-bottom: 25px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-signpost-title {
        letter-spacing: 0.8px;
    }
}

@media (min-width: 1230px) {
    .c-signpost-title {
        font-size: 1.5625rem;
        line-height: 33px;
        margin-bottom: 35px;
    }
}

.c-signpost-text {
    color: #FFFFFF;
    font-size: 1rem;
    line-height: 25px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .c-signpost-text {
        font-size: 1.375rem;
        line-height: 39px;
    }
}

@media (min-width: 1230px) {
    .c-signpost-text {
        font-size: 1.75rem;
    }
}

.c-signpost-item > *:last-child {
    margin-top: auto;
}

/*#endregion*/
/*#region c-article - used in c-article-carousel, c-article-featured and c-article-list variations*/
.c-article {
    position: relative;
    padding: 50px 0;
}

@media (min-width: 992px) {
    .c-article {
        padding: 70px 0;
    }
}

.c-article-link {
    display: block;
    height: 100%;
}

.c-article-header {
    display: block;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 0.75rem;
    line-height: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #AFAFAF;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-article-header {
        font-size: 0.9375rem;
        line-height: 22px;
        margin-bottom: 30px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-article-header {
        letter-spacing: 0.8px;
    }
}

.c-article-image {
    display: block;
    margin-bottom: 0;
    width: 100%;
}

.c-article-carousel .c-article-image, .c-article-carousel .c-article-image-wide {
    height: 210px;
}

.c-article-carousel .two .c-article-image, .c-article-carousel .three .c-article-image {
    overflow: hidden;
}

.c-article-content {
    background-color: #FFFFFF;
    margin-left: 15px;
    margin-top: -30px;
    padding: 20px;
    position: relative;
    z-index: 1;
    width: calc(100% - 15px);
}

.body-content > section:nth-of-type(even) .c-article-content {
    background-color: #f8f8f8;
}


.white-on-grey .c-article-content {
    background-color: #FFF !important;
}

.grey-on-white .c-article-content {
    background-color: #F8F8F8 !important;
}

@media (min-width: 768px) {
    .c-article-content {
        margin-top: -40px;
    }
}

.c-article-date {
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.75rem;
    line-height: 16px;
    display: block;
    margin-bottom: 10px;
    color: #383838;
}

@media (min-width: 768px) {
    .c-article-date {
        font-size: 0.875rem;
        line-height: 21px;
    }
}

.c-article-title {
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 1rem;
    line-height: 21px;
    display: block;
    margin-bottom: 15px;
    color: #4E9A33;
    text-transform: uppercase;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-article-title {
        letter-spacing: 0.4px;
        font-size: 1.125rem;
        line-height: 25px;
    }
}

@media (min-width: 992px) {
    .c-article-title {
        letter-spacing: 0.8px;
    }
}

.c-article-text {
    /*font-family: $georgia;*/
    font-size: 0.8125rem;
    line-height: 20px;
    color: #505050;
    margin-bottom: 20px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .c-article-text {
        font-size: 1rem;
        line-height: 26px;
    }
}

.c-article-icons {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.c-article-icon {
    display: block;
    margin-right: 10px;
    width: 20px;
}

@media (min-width: 768px) {
    .c-article-icon {
        width: 25px;
    }
}

.c-article-icon:last-child {
    margin-right: 0;
}

.c-article-icon-image {
    display: block;
}

.c-article-author {
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 12px;
    line-height: 16px;
    display: block;
    color: #383838;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .c-article-author {
        font-size: 14px;
        line-height: 21px;
    }
}

.c-article-info {
    display: block;
    color: #AFAFAF;
    font-size: 12px;
    line-height: 16px;
    font-family: "Avenir LT W01_65 Medium1475532";
}

    .c-article-info a {
        color: #AFAFAF;
    }

        .c-article-info a:hover {
            color: #4E9A33;
        }

@media (min-width: 768px) {
    .c-article-info {
        font-size: 14px;
        line-height: 21px;
    }
}

.c-article-content-bottom {
    display: block;
}

.c-article-linkedin {
    display: block;
}

.c-article-linkedin-link {
    display: inline-flex;
    align-items: center;
    color: #4E9A33;
}

    .c-article-linkedin-link:hover {
        color: #4E9A33;
    }

.c-article-linkedin-icon {
    width: 26px;
    margin-right: 15px;
}

@media (min-width: 768px) {
    .c-article-linkedin-icon {
        width: 34px;
    }
}

.c-article-linkedin-icon img {
    width: 100%;
    display: block;
}

.c-article-linkedin-text {
    color: #4E9A33;
    font-size: 0.875rem;
    line-height: 18px;
    font-family: "Avenir LT W01_65 Medium1475532";
}

@media (min-width: 768px) {
    .c-article-linkedin-text {
        font-size: 1.125rem;
        line-height: 22px;
    }
}

/*#endregion*/
/*#region c-article-carousel*/


section.grey-on-white.c-article-carousel {
    background-color: #FFF !important;
}

section.white-on-grey.c-article-carousel {
    background-color: #F8F8F8 !important;
}

.c-article-carousel .c-article-header {
    padding-left: 15px;
}

@media (min-width: 576px) {
    .c-article-carousel .c-article-header {
        padding-left: 25px;
    }
}

@media (min-width: 1230px) {
    .c-article-carousel .c-article-header {
        padding-left: 0px;
    }
}

.c-article-carousel-list {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.c-article-carousel-item {
    display: block;
    width: 270px;
    margin-top: 0;
    transition: margin-top 0.5s ease-in-out;
    padding-left: 10px;
}


@media (min-width: 768px) {
    .c-article-carousel-item {
        width: 320px;
        padding-left: 20px;
    }
}

@media (min-width: 1230px) {
    .c-article-carousel-item {
        width: 280px;
        margin-right: 20px;
        padding-left: 0;
    }
}

.c-article-carousel-item .c-article-image-wide {
    display: none;
}

@media (min-width: 1230px) {
    .c-article-carousel-item.one {
        width: 580px;
    }

        .c-article-carousel-item.one .c-article-image {
            display: none;
        }

        .c-article-carousel-item.one .c-article-image-wide {
            display: block;
        }
}

@media (min-width: 768px) {
    .c-article-carousel-item.two {
        margin-top: 30px;
    }
}

@media (min-width: 768px) {
    .c-article-carousel-item.three {
        margin-top: 60px;
    }
}

/*.c-article-carousel-item.slick-active + .c-article-carousel-item {
    @include media-breakpoint-up(md) {
        margin-top: 30px;
    }
}
.c-article-carousel-item.slick-active + .c-article-carousel-item + .c-article-carousel-item {
    @include media-breakpoint-up(md) {
        margin-top: 60px;
    }
}*/
.c-article-carousel-controls {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 576px) {
    .c-article-carousel-controls {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (min-width: 1230px) {
    .c-article-carousel-controls {
        padding-left: 0;
        padding-right: 0;
    }
}

.c-article-carousel-controls .c-cta {
    margin-right: 20px;
}

@media (min-width: 768px) {
    .c-article-carousel-controls .c-cta {
        margin-right: 0;
    }
}

.c-article-carousel-controls .c-cta-arrow {
    width: 0;
}

@media (min-width: 768px) {
    .c-article-carousel-controls .c-cta-arrow {
        width: 40px;
    }
}

.c-article-carousel-controls .c-cta-arrow-container {
    width: 0;
    margin-left: 20px;
}

@media (min-width: 768px) {
    .c-article-carousel-controls .c-cta-arrow-container {
        width: 40px;
        margin-left: 10px;
    }
}

@media (min-width: 992px) {
    .c-article-carousel-controls .c-cta-arrow-container {
        width: 70px;
    }
}

.c-article-carousel-controls .c-cta:hover .c-cta-arrow, .c-article-carousel-controls .c-cta:focus .c-cta-arrow {
    width: 0;
}

@media (min-width: 768px) {
    .c-article-carousel-controls .c-cta:hover .c-cta-arrow, .c-article-carousel-controls .c-cta:focus .c-cta-arrow {
        width: 40px;
    }
}

@media (min-width: 992px) {
    .c-article-carousel-controls .c-cta:hover .c-cta-arrow, .c-article-carousel-controls .c-cta:focus .c-cta-arrow {
        width: 100%;
    }
}

@media (min-width: 1230px) {
    .c-article-carousel-controls .slick-dots {
        display: none !important;
    }
}

.c-article-carousel .c-article-content {
    /*background-color: $light-grey;*/
    padding-top: 24px;
    /*padding-bottom: 120px;*/
    display: flex;
    flex-direction: column;
}

.c-article-carousel .one .c-article-content {
    padding-right: 20%;
}

.c-article-carousel .c-article-content-bottom {
    margin-top: auto;
}

.c-article-carousel.c-band-grey .c-article-content {
    /*background-color: $white;*/
}

.c-article-carousel .contained {
    padding-right: 0;
    padding-left: 0;
}

/*#endregion*/
/*#region c-article-featured*/
.c-article-featured-container {
    width: 100%;
    display: block;
}

.white-on-grey.c-article-featured {
    background-color: #F8F8F8 !important;
}

.grey-on-white.c-article-featured {
    background-color: #FFF !important;
}

.c-article-featured-header {
    display: block;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 0.75rem;
    line-height: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #AFAFAF;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-article-featured-header {
        font-size: 0.9375rem;
        line-height: 22px;
        margin-bottom: 30px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-article-featured-header {
        letter-spacing: 0.8px;
    }
}

.c-article-featured .c-article-link {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .c-article-featured .c-article-link {
        flex-direction: row;
        padding-bottom: 20px;
    }
}

.c-article-featured .c-article-image {
    display: block;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 200px;
}

@media (min-width: 768px) {
    .c-article-featured .c-article-image {
        order: 2;
        top: 20px;
        margin-left: -20px;
        min-height: 300px;
        width: calc(50% + 20px);
    }
}

@media (min-width: 1230px) {
    .c-article-featured .c-article-image {
        margin-left: -60px;
        width: calc(50% + 60px);
        min-height: 380px;
    }
}

.c-article-featured .c-article-content {
    /*display: block;*/
    background-color: #F8F8F8;
    padding: 20px;
    position: relative;
    z-index: 1;
    margin-top: 0;
    margin-left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .c-article-featured .c-article-content {
        order: 1;
        width: 50%;
    }
}

.c-article-featured.c-band-grey .c-article-content {
    background-color: #FFFFFF;
}

.c-article-featured .c-article-icons {
    margin-top: auto;
}

/*#endregion*/
/*#region c-article-list*/
@media (min-width: 768px) {
    .c-article-list {
        padding-bottom: 30px;
    }
}

@media (min-width: 992px) {
    .c-article-list {
        padding-bottom: 50px;
    }
}

.c-article-list-group {
    width: 100%;
    display: block;
}

@media (min-width: 768px) {
    .c-article-list-group {
        display: flex;
        flex-wrap: wrap;
    }
}

.c-article-list-item {
    display: block;
    border-top: 1px solid #AFAFAF;
    padding-top: 20px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .c-article-list-item {
        width: calc(50% - 25px);
        margin-right: 50px;
    }
}

@media (min-width: 1230px) {
    .c-article-list-item {
        width: calc(50% - 60px);
        margin-right: 120px;
        padding-top: 30px;
        margin-bottom: 30px;
    }
}

.c-article-list-item:first-child {
    padding-top: 0;
    border-top: none;
}

.c-article-list-item:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .c-article-list-item:last-child {
        margin-bottom: 20px;
    }
}

@media (min-width: 768px) {
    .c-article-list-item:nth-child(2) {
        padding-top: 0;
        border-top: none;
    }
}

.c-article-list-item:nth-child(even) {
    margin-right: 0;
}

.c-article-list-left-content {
    width: 80px;
    margin-right: 15px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .c-article-list-left-content {
        margin-right: 20px;
        justify-content: flex-start;
    }
}

.c-article-list-right-content {
    width: calc(100% - 95px);
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .c-article-list-right-content {
        width: calc(100% - 100px);
    }
}

.c-article-list .c-article-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 80px;
    margin-bottom: 20px;
}

.c-article-list .c-article-link {
    display: flex;
}

.c-article-list .c-article-author {
    margin-top: auto;
}

@media (min-width: 992px) {
    .c-article-list .c-article-author {
        margin-bottom: 20px;
    }
}

.c-article-list .c-pagination {
    padding-bottom: 20px;
}

/*#endregion*/
/*#region c-article-related*/
.c-article-related {
    position: relative;
    top: 50%;
}

    .c-article-related.animated {
        position: sticky;
        top: 20%;
    }

@media (min-width: 1230px) {
    .c-article-related {
        border-left: 1px solid #AFAFAF;
        padding-left: 30px;
    }
}

.c-article-related-item {
    display: block;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #AFAFAF;
}

    .c-article-related-item:last-child {
        padding-bottom: 0;
        border-bottom: none;
        margin-bottom: 0;
    }

.c-article-related .c-article-text {
    margin-bottom: 15px;
}

/*#endregion*/
/*#region c-author*/
.c-author {
    display: block;
}

@media (min-width: 1230px) {
    .c-author {
        display: flex;
        flex-direction: column;
    }
}

.c-author-date {
    display: block;
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.75rem;
    line-height: 16px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .c-author-date {
        font-size: 0.875rem;
        line-height: 21px;
        margin-bottom: 5px;
        margin-top: 25px;
    }
}

@media (min-width: 1230px) {
    .c-author-date {
        order: 1;
        margin-top: 0;
    }
}

.c-author-content {
    padding-bottom: 10px;
    border-bottom: 1px solid #AFAFAF;
    margin-bottom: 30px;
    display: flex;
}

@media (min-width: 768px) {
    .c-author-content {
        padding-bottom: 20px;
        padding-top: 20px;
        border-bottom: 1px solid #bbb;
        display: block;
        display: flex;
        flex-direction: column;
        margin-bottom: 5px;
    }
}

@media (min-width: 1230px) {
    .c-author-content {
        order: 2;
    }
}

.c-author-picture {
    display: block;
}

.c-author-image {
    height: 200px;
    width: 160px;
    background-position: 53% 0%;
    background-size: 160%;
}

.c-author-picture-container {
    display: block;
    max-width: 175px;
}

@media (min-width: 768px) {
    .c-author-picture-container {
        order: 2;
    }

        .c-author-picture-container img {
            padding-bottom: 25px;
        }
}

.c-author-bio {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 75%;
    padding-left: 20px;
}

@media (min-width: 768px) {
    .c-author-bio {
        display: block;
        width: 100%;
        padding-left: 0;
        margin-bottom: 20px;
    }
}

@media (min-width: 768px) {
    .c-author-bio {
        order: 1;
    }
}

.c-author-name {
    display: block;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 0.875rem;
    line-height: 19px;
    margin-bottom: 5px;
    color: #086132;
    text-transform: uppercase;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-author-name {
        font-size: 1.125rem;
        line-height: 25px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-author-name {
        letter-spacing: 0.8px;
    }
}

.c-author-job {
    display: block;
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.75rem;
    line-height: 16px;
}

@media (min-width: 768px) {
    .c-author-job {
        font-size: 0.875rem;
        line-height: 21px;
    }
}

/*#endregion*/
/*#region c-article-banner*/
.c-article-banner {
    position: relative;
}

    .c-article-banner::after {
        content: '';
        display: block;
        position: absolute;
        width: 100%;
        height: 90%;
        bottom: 0;
        left: 0;
        background-color: #F8F8F8;
        z-index: -1;
    }

    .c-article-banner.c-article-banner-no-overlap::after {
        height: 100%;
    }

.c-article-banner-container img {
    display: block;
}

@media (min-width: 1230px) {
    .c-article-banner-container, .c-article-banner .c-audio-container, .c-article-banner .c-video-container {
        max-width: 75%;
    }
}


/*#endregion*/
/*#region c-article-detail*/
.c-article-detail {
    padding: 30px 0;
}

.c-article-detail-container {
    position: relative;
}

.c-article-detail-content {
    display: block;
}

@media (min-width: 1230px) {
    .c-article-detail-content {
        display: flex;
    }
}

.c-article-detail-left {
    display: block;
}

@media (min-width: 1230px) {
    .c-article-detail-left {
        width: 75%;
    }
}

.c-article-detail-right {
    display: none;
}

@media (min-width: 1230px) {
    .c-article-detail-right {
        display: block;
        width: 25%;
        padding-left: 30px;
    }
}

.c-article-detail-intro {
    display: block;
}

@media (min-width: 768px) {
    .c-article-detail-intro {
        display: flex;
    }
}

@media (min-width: 768px) {
    .c-article-detail-intro .c-author {
        width: 25%;
    }
}

@media (min-width: 1230px) {
    .c-article-detail-intro .c-author {
        width: 33%;
        padding-right: 7%;
    }
}

.c-article-detail-text {
    display: block;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .c-article-detail-text {
        margin-left: auto;
        width: 75%;
    }
}

@media (min-width: 768px) {
    .c-article-detail-text {
        width: 67%;
    }
}

.c-article-detail-text-stop {
    display: inline-block;
}

    .c-article-detail-text-stop:after {
        content: '';
        width: 10px;
        height: 10px;
        background-color: #134F33;
        border-radius: 50%;
        display: inline-block;
    }

p.c-article-detail-text-stop:after {
    margin-left: 5px;
}

.c-article-detail .c-image-image {
    margin-bottom: 30px;
}

.c-article-detail-quote {
    display: block;
    position: relative;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .c-article-detail-quote {
        width: 85%;
        margin-left: auto;
    }
}

@media (min-width: 992px) {
    .c-article-detail-quote {
        width: 75%;
    }
}

.c-article-detail-quote-text {
    display: block;
    font-size: 1.375rem;
    line-height: 28px;
    position: relative;
    padding-top: 30px;
    quotes: "“" "”" "‘" "’";
}

@media (min-width: 768px) {
    .c-article-detail-quote-text {
        font-size: 1.75rem;
        line-height: 39px;
    }
}

.c-article-detail-quote-text:before {
    content: open-quote;
    font-size: 4.3125rem;
    color: #086132;
    position: absolute;
    top: 15px;
    left: 0;
}

@media (min-width: 1230px) {
    .c-article-detail .c-author-date {
        line-height: 33px;
    }
}

@media (min-width: 768px) {
    .c-article-detail .c-text-text {
        line-height: 33px;
    }
}

@media (min-width: 768px) {
    .c-article-detail .c-text-intro {
        font-size: 1.375rem;
    }
}

.c-article-detail-content .c-image {
    margin-top: 0;
    margin-bottom: 30px;
}

.c-article-detail-content .c-col-75 {
    width: 100%;
}

.c-article-detail-content .c-col-50 {
    display: block;
    margin-bottom: 20px;
}

.c-article-detail-content .c-text-content {
    width: 100%;
}

.c-article-detail-content .contained {
    padding: 0;
}

@media (min-width: 768px) {
    .c-article-detail-content .c-col-50 {
        margin-left: auto;
        width: 75%;
    }
}

@media (min-width: 768px) {
    .c-article-detail-content .c-col-50 {
        width: 67%;
    }
}

.c-article-detail-content .c-text {
    padding: 20px 0 10px 0;
}

@media (min-width: 768px) {
    .c-article-detail-content .c-inlinequote {
        width: 127%;
        margin-left: -27%;
    }
}

@media (min-width: 950px) {
    .c-article-detail-content .c-inlinequote {
        width: 112%;
        margin-left: -12%;
    }
}

.c-article-reference-container ol {
    margin: 0;
    padding: 0;
}

.c-article-reference-container li {
    display: block;
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.75rem;
    line-height: 16px;
    margin-bottom: 5px;
    color: #505050;
    counter-increment: step-counter;
    padding-left: 45px;
    position: relative;
}

@media (min-width: 768px) {
    .c-article-reference-container li {
        font-size: 0.875rem;
        line-height: 21px;
    }
}

.c-article-reference-container li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
}

/*#endregion*/
/*#region c-article-reference*/
.c-article-reference {
    display: block;
}

@media (min-width: 1230px) {
    .c-article-reference {
        width: 75%;
    }
}

.c-article-reference-container {
    display: block;
    border-top: 1px solid #AFAFAF;
    padding-top: 30px;
}

.c-article-reference-list {
    margin: 0;
    padding: 0;
    margin: 14px 0;
    padding: 0;
    display: block;
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.75rem;
    line-height: 16px;
    margin-bottom: 5px;
    color: #505050;
}

@media (min-width: 768px) {
    .c-article-reference-list {
        width: 67%;
        margin-left: auto;
        font-size: 0.875rem;
        line-height: 21px;
    }
}

.c-article-reference-item {
    display: block;
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.75rem;
    line-height: 16px;
    margin-bottom: 5px;
    color: #505050;
    counter-increment: step-counter;
    padding-left: 45px;
    position: relative;
}

@media (min-width: 768px) {
    .c-article-reference-item {
        font-size: 0.875rem;
        line-height: 21px;
    }
}

.c-article-reference-item:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
}

/*#endregion*/

/*#region c-article-tag*/
.c-article-tags {    
    position: relative;
    top: -10px;
    padding-bottom: 20px;
}
/*#endregion*/

/*#region c-quote*/
.c-quote {
    display: block;
    padding: 50px 0;
}

@media (min-width: 992px) {
    .c-quote {
        padding: 70px 0;
    }
}

.c-quote-container {
    position: relative;
}

.c-quote-list {
    position: relative;
    margin-bottom: 0 !important;
}

    .c-quote-list .slick-track {
        display: flex !important;
    }

.c-quote-item {
    position: relative;
    height: inherit !important;
    display: flex !important;
    flex-direction: column;
}

@media (min-width: 1230px) {
    .c-quote-item {
        justify-content: space-between;
        flex-direction: row;
    }
}

@media (min-width: 1230px) {
    .c-quote-content {
        width: 760px;
    }
}

.c-quote-cta {
    display: flex;
    justify-content: flex-end;
    padding: 0 1px 1px 0;
    margin-top: auto;
}

    /*@media (min-width: 1230px) {
    .c-quote-cta {
        margin-top: 15px;
        align-items: flex-start;
    }
}*/

    .c-quote-cta .c-cta {
        /*align-items: center;

    @include media-breakpoint-up(md) {
        align-items: baseline;
    }*/
    }

    .c-quote-cta .c-cta-arrow {
        width: 0;
        margin-left: 20px;
    }

@media (min-width: 768px) {
    .c-quote-cta .c-cta-arrow {
        width: 40px;
        margin-left: 10px;
    }
}

.c-quote-cta .c-cta:hover .c-cta-arrow, .c-quote-cta .c-cta:focus .c-cta-arrow {
    width: 0;
}

@media (min-width: 768px) {
    .c-quote-cta .c-cta:hover .c-cta-arrow, .c-quote-cta .c-cta:focus .c-cta-arrow {
        width: 40px;
    }
}

/*@media (min-width: 992px) {
    .c-quote-cta .c-cta:hover .c-cta-arrow, .c-quote-cta .c-cta:focus .c-cta-arrow {
        width: 100%;
    }
}*/

.c-quote-quote {
    /*font-family: $georgia;*/
    font-size: 1.375rem;
    line-height: 28px;
    color: #383838;
    margin-bottom: 30px;
    position: relative;
    quotes: "“" "”" "‘" "’";
}

@media (min-width: 768px) {
    .c-quote-quote {
        font-size: 1.875rem;
        line-height: 40px;
    }
}

/*@media (min-width: 992px) {
    .c-quote-quote {
        width: 75%;
    }
}*/

@media (min-width: 1230px) {
    .c-quote-quote {
        font-size: 2.1875rem;
        line-height: 50px;
        /*width: 100%;*/
    }
}

span.c-quote-span:before {
    content: open-quote;
    position: absolute;
    left: -12px;
}

@media (min-width: 768px) {
    span.c-quote-span:before {
        left: -15px;
    }
}

@media (min-width: 1230px) {
    span.c-quote-span:before {
        left: -18px;
    }
}

span.c-quote-span:after {
    content: close-quote;
}

.c-quote-person {
    text-transform: uppercase;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 0.75rem;
    line-height: 16px;
    color: #AFAFAF;
    /*display: flex;
    flex-direction: row;
    flex-wrap: wrap;*/
    margin-bottom: 30px;
    display: block;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-quote-person {
        /*flex-direction: row;*/
        font-size: 1.0625rem;
        line-height: 25px;
        /*margin-bottom: 45px;*/
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-quote-person {
        letter-spacing: 0.8px;
    }
}

@media (min-width: 1230px) {
    .c-quote-person {
        font-size: 1.125rem;
        /*margin-bottom: 60px;*/
    }
}

.c-quote-person span {
    /*margin-right: 5px;*/
}

.c-quote-person-green {
    color: #086132;
}

.c-quote .slick-dots {
    display: block;
    width: 100%;
    left: 0;
    list-style: none;
    max-width: 1180px;
    margin: -25px auto 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 576px) {
    .c-quote .slick-dots {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (min-width: 1230px) {
    .c-quote .slick-dots {
        padding-left: 0;
        padding-right: 0;
    }
}

.c-quote-single .c-quote-person {
    margin-bottom: 0;
}

.c-quote-single .slick-dots {
    display: none !important;
}

.c-quote-item .contained {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/*@media (min-width: 1230px) {
    .c-quote-item .contained {
        justify-content: space-between;
        flex-direction: row;
    }
}*/

/*HERE WRAPPING QUOTE CONTAINER IN CONTAINED CLASS */
/*#endregion*/
/*#region c-help*/
.c-help {
    background-color: #64B446;
    /*padding: 50px 0;*/
    padding: 30px 0;
}

@media (min-width: 992px) {
    .c-help {
        padding: 70px 0;
    }
}

.c-help-container {
    position: relative;
}

@media (min-width: 768px) {
    .c-help-container {
        display: flex;
    }
}

.c-help-content {
    display: block;
}

@media (min-width: 768px) {
    .c-help-content {
        flex: 1 1 55%;
    }
}

.c-help-image-container {
    display: block;
}

@media (min-width: 768px) {
    .c-help-image-container {
        position: relative;
        flex: 1 1 45%;
        padding-left: 100px;
    }
}

.c-help-title {
    color: #FFFFFF;
    font-size: 2.1875rem;
    line-height: 36px;
    max-width: 65%;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .c-help-title {
        font-size: 4.0625rem;
        line-height: 65px;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .c-help-title {
        text-align: center;
    }
}

@media (min-width: 1230px) {
    .c-help-title {
        font-size: 5.625rem;
        line-height: 90px;
        text-align: left;
    }
}

.c-help-title-top {
    display: block;
    /*margin-bottom: 15px;*/
}

.c-help-title-bottom {
    display: block;
    margin-left: 45px;
}

@media (min-width: 1230px) {
    .c-help-title-bottom {
        margin-left: 90px;
    }
}

.c-help-image {
    display: block;
    max-width: 80px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    right: 40px;
    max-height: 132px;
    padding-bottom: 20px;
}

@media (min-width: 768px) {
    .c-help-image {
        position: relative;
        right: 0;
        max-height: 100%;
        padding-bottom: 0;
        max-width: 250px;
    }
}

.c-help-dropdown {
    position: relative;
    border: 1px solid #4E9A33;
    background-color: #FFFFFF;
    z-index: 10;
    width: 100%;
}

@media (min-width: 768px) {
    .c-help-dropdown {
        max-width: 420px;
    }
}

@media (min-width: 992px) {
    .c-help-dropdown {
        margin-left: auto;
    }
}

.c-help-dropdown-selected {
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.875rem;
    line-height: 19px;
    color: #383838;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px 30px;
}

@media (min-width: 768px) {
    .c-help-dropdown-selected {
        font-size: 1.375rem;
        line-height: 33px;
    }
}

@media (min-width: 1230px) {
    .c-help-dropdown-selected {
        font-size: 1.5625rem;
    }
}

.c-help-dropdown-selected:after, .c-help-dropdown-selected:before {
    content: '';
    display: block;
    position: absolute;
    right: 30px;
    width: 13px;
    height: 2px;
    background-color: #134F33;
    transition: transform ease-in-out 0.5s;
    top: 23px;
}

@media (min-width: 768px) {
    .c-help-dropdown-selected:after, .c-help-dropdown-selected:before {
        top: 31px;
    }
}

.c-help-dropdown-selected:before {
    transform: rotate(45deg);
    right: 38px;
}

.c-help-dropdown-selected:after {
    transform: rotate(-45deg);
}

.c-help-dropdown.open .c-help-dropdown-selected:before {
    transform: rotate(135deg);
}

.c-help-dropdown.open .c-help-dropdown-selected:after {
    transform: rotate(-135deg);
}

.c-help-dropdown-menu {
    /*display: block;
    background-color: inherit;
    width: calc(100% + 2px);
    position: absolute;
    top: 100%;
    left: -1px;
    padding-bottom: 15px;
    z-index: 1000;
    border: inherit;
    border-top: none;
    pointer-events: none;
    transition: opacity $transition-speed $transition-timing;
    margin-bottom: 20px;*/
    display: block;
    padding: 0;
    height: 0;
    min-height: 0;
    overflow: hidden;
    transition: min-height 0.5s ease-in-out;
    position: absolute;
    top: 100%;
    left: -1px;
    width: calc(100% + 2px);
    background-color: #FFFFFF;
    border: 1px solid #4E9A33;
    border-top: none;
    margin-bottom: 15px;
    z-index: 1000;
    opacity: 0;
}

.c-help-dropdown-content {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.c-help-dropdown-item {
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.75rem;
    line-height: 16px;
    margin-bottom: 15px;
    display: block;
    color: #383838;
    padding: 0px 30px;
}

@media (min-width: 768px) {
    .c-help-dropdown-item {
        font-size: 1.25rem;
        line-height: 28px;
    }
}

@media (min-width: 1230px) {
    .c-help-dropdown-item {
        font-size: 1.375rem;
    }
}

.c-help-dropdown-item:last-child {
    /*margin-bottom: 0;*/
}

/*#endregion*/
/*#region c-contact*/
.c-contact {
    display: block;
    padding: 30px 0px;
}

@media (min-width: 768px) {
    .c-contact {
        padding-bottom: 0;
    }
}

@media (min-width: 992px) {
    .c-contact {
        padding: 70px 0 40px;
    }
}

.c-contact a {
    color: #4E9A33;
}

    .c-contact a:hover, .c-contact a:focus {
        color: #086132;
    }

@media (min-width: 768px) {
    .c-contact-container {
        display: flex;
        justify-content: space-between;
    }
}

.c-contact-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .c-contact-main {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 25%;
        padding-right: 50px;
    }
}

@media (min-width: 768px) {
    .c-contact-location {
        display: flex;
        flex-wrap: wrap;
        width: 75%;
    }
}

.c-contact-item {
    display: block;
    margin-bottom: 0;
    border-top: 1px solid #4E9A33;
}

@media (min-width: 768px) {
    .c-contact-item {
        border-top: none;
        /*display: flex;
        flex-direction: column;*/
        width: calc(80% / 3);
        margin-right: 9.5%;
    }
}

@media (min-width: 992px) {
    .c-contact-item {
        max-width: 200px;
    }
}

@media (min-width: 1230px) {
    .c-contact-item {
        max-width: 250px;
    }
}

@media (min-width: 768px) {
    .c-contact-item:nth-child(3n) {
        margin-right: 0;
    }
}

.c-contact-title {
    text-transform: uppercase;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 1rem;
    line-height: 21px;
    color: #006233;
    padding: 15px 0;
    position: relative;
    display: flex;
    align-items: center;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-contact-title {
        letter-spacing: 0.4px;
        display: block;
        padding: 0;
        margin-bottom: 15px;
    }
}

@media (min-width: 992px) {
    .c-contact-title {
        letter-spacing: 0.8px;
    }
}

.c-contact-item .c-contact-title {
    cursor: pointer;
}

@media (min-width: 768px) {
    .c-contact-item .c-contact-title {
        cursor: default;
    }
}

.c-contact-item .c-contact-title::before, .c-contact-item .c-contact-title::after {
    content: '';
    display: block;
    width: 16px;
    height: 2px;
    position: absolute;
    right: 20px;
    transition: opacity 0.3s ease-in-out, transform 0.5s ease-in-out;
    opacity: 1;
    background-color: #4E9A33;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
}

@media (min-width: 768px) {
    .c-contact-item .c-contact-title::before, .c-contact-item .c-contact-title::after {
        content: none;
    }
}

.c-contact-item .c-contact-title::before {
    transform: rotate(-90deg);
}

.c-contact-item.open .c-contact-title::before {
    transform: rotate(0);
}

.c-contact-item.open .c-contact-title::after {
    transform: rotate(90deg);
    opacity: 0;
}

.c-contact-main .c-contact-title {
    color: #B3B3B3;
}

.c-contact-email {
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.8125rem;
    line-height: 20px;
}

@media (min-width: 768px) {
    .c-contact-email {
        font-size: 0.875rem;
        line-height: 21px;
    }
}

.c-contact-content {
    display: block;
    padding: 0;
    height: 0;
    min-height: 0;
    overflow: hidden;
    transition: min-height 0.5s ease-in-out;
}

@media (min-width: 768px) {
    .c-contact-content {
        overflow: visible;
        height: auto;
        display: flex;
        flex-direction: column;
        flex: 1 1;
    }
}

.c-contact-address {
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.875rem;
    line-height: 21px;
    display: block;
    margin-bottom: 20px;
}

    .c-contact-address p {
        margin-bottom: 0px;
    }

.c-contact-links {
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.875rem;
    line-height: 21px;
    margin-bottom: 30px;
    margin-top: auto;
    color: #086132;
}

    .c-contact-links a {
        display: block;
        margin-bottom: 5px;
    }

.c-contact-direction {
    display: flex;
    flex-wrap: wrap;
}

.c-contact-direction-item {
    display: inline-flex;
    margin-right: 5px;
}

    .c-contact-direction-item::after {
        content: '|';
        display: inline-block;
        padding-left: 5px;
    }

    .c-contact-direction-item:last-child::after {
        content: none;
    }

.c-contact-direction a {
    display: inline;
}

/*#endregion*/
/*#region c-sitemap*/
.c-sitemap {
    display: block;
    padding: 30px 0px;
}

@media (min-width: 768px) {
    .c-sitemap {
        padding-bottom: 0;
    }
}

@media (min-width: 992px) {
    .c-sitemap {
        padding: 70px 0 40px;
    }
}

.c-sitemap a {
    color: #4E9A33;
}

    .c-sitemap a:hover, .c-sitemap a:focus {
        color: #086132;
    }

@media (min-width: 768px) {
    .c-sitemap-container {
        display: flex;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    .c-sitemap-location {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }
}

.c-sitemap-item {
    display: block;
    margin-bottom: 0;
    border-top: 1px solid #4E9A33;
}

@media (min-width: 768px) {
    .c-sitemap-item {
        border-top: none;
        /*display: flex;
        flex-direction: column;*/
        width: calc(100% / 4);
        padding-right: 20px;
    }
}

@media (min-width: 768px) {
    .c-sitemap-item:nth-child(4n) {
        padding-right: 0;
    }
}

.c-sitemap-title, .c-sitemap-title a {
    text-transform: uppercase;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 1.1rem;
    line-height: 23px;
    color: #B3B3B3;
    padding: 15px 0;
    position: relative;
    display: flex;
    align-items: center;
    letter-spacing: 0.15px;
}

    .c-sitemap-title a:hover, .c-sitemap-title a:focus {
        color: #A1A1A1;
    }

@media (min-width: 768px) {
    .c-sitemap-title {
        letter-spacing: 0.4px;
        display: block;
        padding: 0;
        margin-bottom: 10px;
    }
}

@media (min-width: 992px) {
    .c-sitemap-title {
        letter-spacing: 0.8px;
    }
}

.c-sitemap-item .c-sitemap-title {
    cursor: pointer;
}

@media (min-width: 768px) {
    .c-sitemap-item .c-sitemap-title {
        cursor: default;
    }
}

.c-sitemap-content {
    display: block;
    padding: 0;
    height: auto;
    min-height: 0;
    overflow: hidden;
    transition: min-height 0.5s ease-in-out;
}

@media (min-width: 768px) {
    .c-sitemap-content {
        overflow: visible;
        display: flex;
        flex-direction: column;
        flex: 1 1;
    }
}

.c-sitemap-address {
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.875rem;
    line-height: 21px;
    display: block;
    margin-bottom: 20px;
}

    .c-sitemap-address p {
        margin-bottom: 0px;
    }

.c-sitemap-links {
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.975rem;
    line-height: 23px;
    margin-bottom: 30px;
    margin-top: auto;
    color: #086132;
}

    .c-sitemap-links a {
        display: block;
        margin-bottom: 5px;
    }

.c-sitemap-innerlink {
    margin-left: 10px;
}

/*#endregion*/
/*#region c-section-link*/
.c-section-link {
    position: relative;
    padding: 50px 0;
}

@media (min-width: 992px) {
    .c-section-link {
        padding: 70px 0;
    }
}

.c-section-link-container {
    position: relative;
}

.c-section-link-name {
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 0.75rem;
    line-height: 16px;
    color: #B3B3B3;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-section-link-name {
        font-size: 0.9375rem;
        line-height: 22px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-section-link-name {
        letter-spacing: 0.8px;
    }
}

@media (min-width: 1230px) {
    .c-section-link-name {
        margin-bottom: 40px;
    }
}

.c-section-link-group {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.c-section-link-item {
    width: 100%;
    background-color: #134F33;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    position: relative;
    transition: box-shadow 0.2s ease-in-out, top 0.2s ease-in-out;
    top: 0;
    padding: 0;
}

.c-sign-up.c-section-link-item {
    padding: 0;
}

@media (min-width: 768px) {
    .c-section-link-item {
        margin-right: 20px;
        width: calc(50% - 10px);
        margin-bottom: 0;
        min-height: 210px;
    }
}

@media (min-width: 1230px) {
    .c-section-link-item {
        margin-bottom: 0;
        /*width: calc((100% - 40px) / 3);*/
        width: 380px;
        min-height: 220px;
    }
}

.c-section-link-item:hover {
    /*box-shadow: 0px 0px 7px 1px rgba(0,0,0,0.5);
    top: -5px;*/
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.3);
    top: -2px;
}


.c-section-link-clear .c-section-link-name {
    color: #B3B3B3;
}


.c-section-link-clear .c-section-link-item {
    background-color: #FFFFFF;
    border: 1px solid #4E9A33;
}

    .c-section-link-clear .c-section-link-item:hover {
        box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.3);
        top: -2px;
    }

.c-section-link-clear .c-section-link-title {
    color: #4E9A33;
}

.c-section-link-clear .c-section-link-text {
    color: #383838;
}

@media (min-width: 768px) {
    .c-section-link-item:nth-child(2n) {
        margin-right: 0;
        margin-top: 30px;
    }
}

@media (min-width: 1230px) {
    .c-section-link-item:nth-child(2n) {
        margin-top: 0;
        margin-right: 20px;
    }
}

@media (min-width: 1230px) {
    .c-section-link-item:nth-child(3n + 2) {
        margin-right: 20px;
        margin-top: 30px;
    }
}

@media (min-width: 1230px) {
    .c-section-link-item:nth-child(3n) {
        margin-top: 60px;
        margin-right: 0;
    }
}

.c-section-link-title {
    text-transform: uppercase;
    color: #ABFC8D;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 1rem;
    line-height: 21px;
    margin-bottom: 10px;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-section-link-title {
        margin-bottom: 20px;
        font-size: 1.0625rem;
        line-height: 25px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-section-link-title {
        letter-spacing: 0.8px;
    }
}

@media (min-width: 1230px) {
    .c-section-link-title {
        font-size: 1.125rem;
    }
}

.c-section-link-text {
    color: #FFFFFF;
    /*font-family: $georgia;*/
    font-size: 0.9375rem;
    line-height: 25px;
    /*overflow: hidden;*/
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .c-section-link-text {
        font-size: 1.125rem;
        line-height: 30px;
    }
}

@media (min-width: 1230px) {
    .c-section-link-text {
        font-size: 1rem;
        line-height: 26px;
    }
}

.c-section-link-cta {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
}

@media (min-width: 768px) {
    .c-section-link-group-half-split .c-section-link-item {
        width: calc(50% - 10px);
    }
}

@media (min-width: 768px) {
    .c-section-link-group-half-split .c-section-link-item:nth-child(2n + 2) {
        margin-right: 0;
        margin-top: 30px;
    }
}

@media (min-width: 768px) {
    .c-section-link-group-half-split .c-section-link-item:nth-child(2n + 1) {
        margin-top: 0;
        margin-right: 20px;
    }
}

.c-section-link-item-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px;
    flex: 1 1 auto;
}

/*#endregion*/
/*#region c-page-link*/
.c-page-link {
    position: relative;
    padding: 50px 0;
}

@media (min-width: 992px) {
    .c-page-link {
        padding: 70px 0;
    }
}

.c-page-link-container {
    position: relative;
}

.c-page-link-name {
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 0.75rem;
    line-height: 16px;
    color: #B3B3B3;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-page-link-name {
        font-size: 0.9375rem;
        line-height: 22px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-page-link-name {
        letter-spacing: 0.8px;
    }
}

@media (min-width: 1230px) {
    .c-page-link-name {
        margin-bottom: 40px;
    }
}

.c-page-link-group {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.c-page-link-item {
    width: 100%;
    background-color: #FFFFFF;
    border: 1px solid #4E9A33;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    position: relative;
    top: 0;
    transition: box-shadow 0.2s ease-in-out, top 0.2s ease-in-out;
}

@media (min-width: 768px) {
    .c-page-link-item {
        margin-right: 20px;
        width: calc(50% - 10px);
        margin-bottom: 0;
        min-height: 210px;
    }
}

@media (min-width: 1230px) {
    .c-page-link-item {
        margin-bottom: 0;
        /*width: calc((100% - 40px) / 3);*/
        width: 380px;
        min-height: 260px;
    }
}

.c-page-link-item:hover {
    /*box-shadow: 0px 0px 7px 1px rgba(0,0,0,0.5);
    top: -5px;*/
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.3);
    top: -2px;
}

@media (min-width: 768px) {
    .c-page-link-item:nth-child(2n) {
        margin-right: 0;
        margin-top: 30px;
    }
}

@media (min-width: 1230px) {
    .c-page-link-item:nth-child(2n) {
        margin-top: 0;
        margin-right: 20px;
    }
}

@media (min-width: 1230px) {
    .c-page-link-item:nth-child(3n + 2) {
        margin-right: 20px;
        margin-top: 30px;
    }
}

@media (min-width: 1230px) {
    .c-page-link-item:nth-child(3n) {
        margin-top: 60px;
        margin-right: 0;
    }
}

.c-page-link-item-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px;
    flex: 1 1 auto;
}

.c-page-link-title {
    text-transform: uppercase;
    color: #4E9A33;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 1rem;
    line-height: 21px;
    margin-bottom: 10px;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-page-link-title {
        margin-bottom: 20px;
        font-size: 1.0625rem;
        line-height: 25px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-page-link-title {
        letter-spacing: 0.8px;
    }
}

@media (min-width: 1230px) {
    .c-page-link-title {
        font-size: 1.125rem;
    }
}

.c-page-link-text {
    color: #383838;
    /*font-family: $georgia;*/
    font-size: 0.9375rem;
    line-height: 25px;
    /*overflow: hidden;*/
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .c-page-link-text {
        font-size: 1.125rem;
        line-height: 30px;
    }
}

@media (min-width: 1230px) {
    .c-page-link-text {
        font-size: 1rem;
        line-height: 26px;
    }
}

.c-page-link-cta {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
}

@media (min-width: 768px) {
    .c-page-link-group-half-split .c-page-link-item {
        width: calc(50% - 10px);
    }
}

@media (min-width: 768px) {
    .c-page-link-group-half-split .c-page-link-item:nth-child(2n + 2) {
        margin-right: 0;
        margin-top: 30px;
    }
}

@media (min-width: 768px) {
    .c-page-link-group-half-split .c-page-link-item:nth-child(2n + 1) {
        margin-top: 0;
        margin-right: 20px;
    }
}

/*#endregion*/
/*#region c-page-category*/
.c-page-category {
    position: relative;
    padding: 50px 0;
}

@media (min-width: 855px) {
    .c-page-category {
        padding: 70px 0;
    }
}

.c-page-category-container {
    position: relative;
}

.c-page-category-name {
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 0.75rem;
    line-height: 16px;
    color: #B3B3B3;
    letter-spacing: 0.15px;
    margin-left: 15px;
}

@media (min-width: 576px) {
    .c-page-category-name {
        margin-left: 25px;
    }
}

@media (min-width: 855px) {
    .c-page-category-name {
        font-size: 0.9375rem;
        line-height: 22px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-page-category-name {
        letter-spacing: 0.8px;
    }
}

@media (min-width: 1230px) {
    .c-page-category-name {
        margin-bottom: 40px;
        margin-left: 0;
    }
}

.c-page-category-list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.c-page-category-item {
    position: relative;
    /*height: 190px;*/
    margin-top: 0;
    transition: margin-top ease-in-out 0.5s;
    padding-left: 10px;
    display: block;
}

@media (min-width: 855px) {
    .c-page-category-item {
        padding-left: 20px;
        width: calc(100% /3);
        /*height: 210px;*/
    }
}

@media (min-width: 1230px) {
    .c-page-category-item {
        /*height: 280px;*/
        margin-right: 20px;
        padding-left: 0;
        width: calc(100% / 4 - 20px);
    }
}

.c-page-category-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px 25px;
    background-color: #FFFFFF;
    border: 1px solid #4E9A33;
    width: 270px;
}

@media (min-width: 855px) {
    .c-page-category-inner {
        width: 100%;
    }
}

.c-page-category-item:last-child {
    margin-right: 0;
}

/*.c-page-category-item.slick-active + .c-page-category-item {
    @include media-breakpoint-up(md) {
        margin-top: 30px;
    }
}
.c-page-category-item.slick-active + .c-page-category-item + .c-page-category-item {
    @include media-breakpoint-up(md) {
        margin-top: 60px;
    }
}
.c-page-category-item.slick-active + .c-page-category-item + .c-page-category-item + .c-page-category-item {
    @include media-breakpoint-up(md) {
        margin-top: 90px;
    }
}*/
@media (min-width: 855px) {
    .c-page-category-item:nth-child(3n+1) {
        margin-top: -40px;
    }

    .c-page-category-item:nth-child(3n+2) {
        margin-top: -10px;
    }

    .c-page-category-item:nth-child(3n+3) {
        margin-top: 20px;
    }

    .c-page-category-item:nth-child(1) {
        margin-top: 0px;
    }

    .c-page-category-item:nth-child(2) {
        margin-top: 30px;
    }

    .c-page-category-item:nth-child(3) {
        margin-top: 60px;
    }
}

@media (min-width: 1230px) {
    .c-page-category-item:nth-child(4n+1) {
        margin-top: -70px;
    }

    .c-page-category-item:nth-child(4n+2) {
        margin-top: -40px;
    }

    .c-page-category-item:nth-child(4n+3) {
        margin-top: -10px;
    }

    .c-page-category-item:nth-child(4n+4) {
        margin-top: 20px;
    }

    .c-page-category-item:nth-child(1) {
        margin-top: 0px;
    }

    .c-page-category-item:nth-child(2) {
        margin-top: 30px;
    }

    .c-page-category-item:nth-child(3) {
        margin-top: 60px;
    }

    .c-page-category-item:nth-child(4) {
        margin-top: 90px;
    }
}


.c-page-category-title {
    text-transform: uppercase;
    color: #4E9A33;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 1rem;
    line-height: 21px;
    margin-bottom: 10px;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-page-category-title {
        margin-bottom: 20px;
        font-size: 1.0625rem;
        line-height: 25px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-page-category-title {
        letter-spacing: 0.8px;
    }
}

@media (min-width: 1230px) {
    .c-page-category-title {
        font-size: 1.125rem;
    }
}

.c-page-category-text {
    color: #383838;
    /*font-family: $georgia;*/
    font-size: 0.9375rem;
    line-height: 25px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .c-page-category-text {
        font-size: 1.125rem;
        line-height: 30px;
    }
}

@media (min-width: 1230px) {
    .c-page-category-text {
        font-size: 1rem;
        line-height: 26px;
    }
}

.c-page-category-cta {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    /*position: absolute;
    left: 25px;
    right: 25px;
    bottom: 30px;*/
}

    .c-page-category-cta .c-cta {
        /*align-items: center;*/
    }

@media (min-width: 768px) {
    .c-page-category-cta .c-cta {
        height: 16px;
    }
}

.c-page-category-cta .c-cta-arrow {
    width: 0;
    margin-left: 20px;
}

@media (min-width: 768px) {
    .c-page-category-cta .c-cta-arrow {
        width: 40px;
        margin-left: 10px;
    }
}

.c-page-category-cta .c-cta:hover .c-cta-arrow, .c-page-category-cta .c-cta:focus .c-cta-arrow {
    width: 0;
}

@media (min-width: 768px) {
    .c-page-category-cta .c-cta:hover .c-cta-arrow, .c-page-category-cta .c-cta:focus .c-cta-arrow {
        width: 40px;
    }
}

@media (min-width: 992px) {
    .c-page-category-cta .c-cta:hover .c-cta-arrow, .c-page-category-cta .c-cta:focus .c-cta-arrow {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .c-page-category-cta .c-cta-text {
        display: none;
    }
}

.c-page-category-controls {
    display: flex;
    justify-content: start;
    margin-left: 15px;
}

@media (min-width: 576px) {
    .c-page-category-controls {
        margin-left: 25px;
    }
}

@media (min-width: 768px) {
    .c-page-category-controls {
        display: none;
    }
}

@media (min-width: 1230px) {
    .c-page-category-controls {
        margin-left: 0;
    }
}

.c-page-category .contained {
    padding-right: 0;
    padding-left: 0;
}

/*#endregion*/
/*#region c-text*/
.c-text {
    position: relative;
    padding: 50px 0;
}

@media (min-width: 992px) {
    .c-text {
        padding: 70px 0;
    }
}

.c-text-container {
    position: relative;
    display: block;
}

@media (min-width: 768px) {
    .c-text-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 992px) {
    .c-text-container {
        justify-content: flex-start;
    }
}

.c-text-subheader {
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 0.75rem;
    line-height: 16px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #B3B3B3;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-text-subheader {
        font-size: 0.9375rem;
        line-height: 26px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-text-subheader {
        letter-spacing: 0.8px;
    }
}

@media (min-width: 1230px) {
    .c-text-subheader {
        line-height: 33px;
    }
}

.c-text-content {
    display: block;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .c-text-content {
        width: 85%;
    }
}

@media (min-width: 992px) {
    .c-text-content {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .c-text-left .c-text-content {
        margin-left: calc(100% / 12);
        width: 75%;
    }
}

@media (min-width: 1230px) {
    .c-text-left .c-text-content {
        margin-left: 0;
        width: 100%;
    }
}

.c-text-left .c-col-50 {
    width: 100%;
}

@media (min-width: 1230px) {
    .c-text-left .c-col-50 {
        width: 50%;
    }
}

.c-text-intro {
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 1rem;
    line-height: 22px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .c-text-intro {
        font-size: 1.25rem;
        line-height: 26px;
        margin-top: -2px;
    }
}

@media (min-width: 1230px) {
    .c-text-intro {
        font-size: 1.375rem;
        line-height: 33px;
    }
}

.c-text-text {
    /*font-family: $georgia;*/
    font-size: 0.9375rem;
    line-height: 25px;
}

@media (min-width: 768px) {
    .c-text-text {
        font-size: 1.125rem;
        line-height: 30px;
    }
}

@media (min-width: 1230px) {
    .c-text-text {
        font-size: 1.1875rem;
    }
}

.c-text li {
    color: #383838;
    font-size: 0.9375rem;
    line-height: 20px;
}

@media (min-width: 768px) {
    .c-text li {
        font-size: 1.0625rem;
        line-height: 25px;
    }
}

@media (min-width: 1230px) {
    .c-text li {
        font-size: 1.1875rem;
        line-height: 30px;
    }
}

.c-text-text ul li {
    padding: 0;
    background: url("/assets/images/bullet.png") no-repeat;
    padding-left: 30px;
    background-position: left 5px;
}

@media (min-width: 768px) {
    .c-text-text ul li {
        background-position: left 7px;
    }
}

@media (min-width: 1230px) {
    .c-text-text ul li {
        background-position: left 10px;
    }
}

.c-text-accordion {
    position: relative;
    width: 100%;
}

    .c-text-accordion .c-text-accordion-item {
        display: block;
        margin-bottom: 0;
        border-top: 1px solid #4E9A33;
    }

    .c-text-accordion .c-text-accordion-title {
        text-transform: uppercase;
        font-family: "Avenir LT W01_95 Black1475556";
        font-size: 0.875rem;
        line-height: 18px;
        color: #006233;
        padding: 15px 0;
        padding-left: 30px;
        position: relative;
        display: flex;
        align-items: center;
        cursor: pointer;
        letter-spacing: 0.15px;
    }

@media (min-width: 768px) {
    .c-text-accordion .c-text-accordion-title {
        font-size: 1rem;
        line-height: 21px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-text-accordion .c-text-accordion-title {
        letter-spacing: 0.8px;
    }
}

.c-text-accordion .c-text-accordion-title::before, .c-text-accordion-title::after {
    content: '';
    display: block;
    width: 16px;
    height: 2px;
    position: absolute;
    left: 0px;
    transition: opacity 0.3s ease-in-out, transform 0.5s ease-in-out;
    opacity: 1;
    background-color: #4E9A33;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
}

.c-text-accordion .c-text-accordion-title::before {
    transform: rotate(-90deg);
}

.c-text-accordion .c-text-accordion-item.open .c-text-accordion-title::before {
    transform: rotate(0);
}

.c-text-accordion .c-text-accordion-item.open .c-text-accordion-title::after {
    transform: rotate(90deg);
    opacity: 0;
}

.c-text-accordion-content {
    display: block;
    padding: 0;
    height: 0;
    min-height: 0;
    overflow: hidden;
    transition: min-height 0.5s ease-in-out;
}

    .c-text-accordion-content .c-text-text {
        margin-bottom: 30px;
    }

    .c-text-accordion-content table {
        margin: 20px 0 40px;
    }

    .c-text-accordion-content tr > * {
        text-align: right;
    }

        .c-text-accordion-content tr > *:first-child {
            min-width: 0;
            text-align: left;
        }


.c-text-text img {
    display: block;
}

.c-text-split {
    display: block;
}

@media (min-width: 768px) {
    .c-text-split {
        display: flex;
    }
}

.c-text-split-content {
    display: block;
}

@media (min-width: 768px) {
    .c-text-split-content {
        width: calc(50% - 20px);
        margin-right: 40px;
    }
}

@media (min-width: 768px) {
    .c-text-split-content:nth-child(even) {
        margin-right: 0;
    }
}

.c-text-link {
    padding-top: 15px;
    text-align: right;
}

/*#endregion*/
/*#region c-control*/
.c-control {
    position: relative;
    padding: 50px 0;
}

@media (min-width: 992px) {
    .c-control {
        padding: 70px 0;
    }
}

@media (min-width: 768px) {
    .c-control-container {
        display: flex;
    }
}

.c-control-item {
    padding: 30px;
    display: flex;
    flex-direction: column;
    background-color: #134F33;
    margin-bottom: 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .c-control-item {
        margin-bottom: 0;
        width: calc((100% - 20px) / 2);
        margin-right: 20px;
    }
}

.c-control-item:last-child {
    margin-right: 0;
}

    .c-control-item:last-child .c-control-cta {
        justify-content: flex-end;
    }

.c-control-title {
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 1rem;
    line-height: 21px;
    color: #ABFC8D;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-control-title {
        font-size: 1.125rem;
        line-height: 25px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-control-title {
        letter-spacing: 0.8px;
    }
}

.c-control-text {
    /*font-family: $georgia;*/
    font-size: 1rem;
    line-height: 21px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .c-control-text {
        font-size: 1.125rem;
        line-height: 30px;
    }
}

@media (min-width: 1230px) {
    .c-control-text {
        font-size: 1.1875rem;
    }
}

.c-control-cta {
    display: flex;
    margin-top: auto;
}

/*#endregion*/
/*#region c-download*/
.c-download {
    padding: 50px 0;
}

@media (min-width: 992px) {
    .c-download {
        padding: 70px 0;
    }
}

.c-download-container {
    position: relative;
}

.c-download-name {
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #AFAFAF;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 0.75rem;
    line-height: 16px;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-download-name {
        font-size: 0.9375rem;
        line-height: 22px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-download-name {
        letter-spacing: 0.8px;
    }
}

@media (min-width: 1230px) {
    .c-download-name {
        margin-bottom: 30px;
    }
}

.c-download-list {
    display: flex;
    flex-wrap: wrap;
}

.c-download-item {
    width: 100%;
    min-height: 110px;
    margin-bottom: 15px;
    background-color: #134F33;
}

@media (min-width: 768px) {
    .c-download-item {
        width: calc(50% - 10px);
        margin-right: 20px;
        margin-bottom: 20px;
    }
}

@media (min-width: 1230px) {
    .c-download-item {
        width: calc((100% - 40px) / 3);
    }
}

.c-download-item:nth-child(even) {
    margin-right: 0;
}

@media (min-width: 1230px) {
    .c-download-item:nth-child(even) {
        margin-right: 20px;
    }
}

@media (min-width: 1230px) {
    .c-download-item:nth-child(3n) {
        margin-right: 0;
    }
}

.c-download-link {
    position: relative;
    padding: 15px;
    padding-left: 70px;
    display: block;
    height: 100%;
}

@media (min-width: 768px) {
    .c-download-link {
        padding: 20px;
        padding-left: 60px;
    }
}

.c-download-pagelink {
    position: relative;
    padding: 15px;
    padding-left: 70px;
    display: block;
    height: 100%;
}

@media (min-width: 768px) {
    .c-download-pagelink {
        padding: 20px;
        padding-left: 60px;
    }
}

.c-download-link::before {
    content: '';
    display: block;
    background-image: url("/assets/images/icon-download.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 30px;
    height: 40px;
    position: absolute;
    left: 15px;
    top: 15px;
}

@media (min-width: 768px) {
    .c-download-link::before {
        left: 20px;
        top: 20px;
    }
}

@media (min-width: 768px) {
    .c-download-link::before {
        width: 23px;
        height: 30px;
    }
}

.c-download-btn {
    position: relative;
    padding: 10px 15px;
    display: inline-flex;
    align-items: center;
    background-color: #134F33;
    text-transform: uppercase;
    color: #FFFFFF;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 0.75rem;
    line-height: 19px;
    min-width: 270px;
    margin-right: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-download-btn {
        font-size: 0.9375rem;
        line-height: 22px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-download-btn {
        letter-spacing: 0.8px;
    }
}

.c-download-btn:hover, .c-download-btn:focus {
    color: #FFFFFF;
}

.c-download-btn::before {
    content: '';
    display: inline-block;
    background-image: url("/assets/images/icon-download.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 23px;
    height: 30px;
    position: relative;
    margin-right: 15px;
}

.c-download-title {
    color: #FFFFFF;
    text-transform: uppercase;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 1rem;
    line-height: 21px;
    margin-bottom: 10px;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-download-title {
        font-size: 1.0625rem;
        line-height: 22px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-download-title {
        letter-spacing: 0.8px;
    }
}

.c-download-text {
    color: #FFFFFF;
    /*font-family: $georgia;*/
    font-size: 0.8125rem;
    line-height: 20px;
}

@media (min-width: 768px) {
    .c-download-text {
        font-size: 1.125rem;
        line-height: 24px;
    }
}

@media (min-width: 1230px) {
    .c-download-text {
        font-size: 1rem;
        line-height: 22px;
    }
}

/*#endregion*/
/*#region c-team*/
.c-team {
    padding: 50px 0;
}

.body-content .c-team.white-on-grey {
    background-color: #f9f9f9;
}

.body-content .c-team.grey-on-white {
    background-color: #fff;
}

@media (min-width: 992px) {
    .c-team {
        padding: 70px 0;
    }
}

.c-team-container {
    position: relative;
}

.c-team-group {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.c-team-item {
    display: block;
    width: 100%;
    cursor: pointer;
    width: calc(50% - 20px);
    margin: 0 10px 20px 10px;
}

@media (min-width: 768px) {
    .c-team-item {
        width: calc((100% / 3) - 20px);
    }
}

@media (min-width: 992px) {
    .c-team-item {
        width: calc(25% - 20px);
    }
}

.c-team-item.cloned {
    cursor: default;
}

    .c-team-item.cloned .c-team-content {
        height: auto !important;
    }

.c-team-content {
    position: relative;
    background-color: #F8F8F8;
    padding: 15px;
    display: block;
    display: flex;
    flex-direction: column;
}

.body-content > section:nth-of-type(2n+1):not(.grey-on-white) .c-team-content, .white-on-grey .c-team-content {
    background-color: #fff;
}

@media (min-width: 768px) {
    .c-team-content {
        width: calc(100% - 20px);
        margin-left: auto;
        margin-top: -30px;
    }
}

@media (min-width: 1230px) {
    .c-team-content {
        margin-top: -40px;
    }
}

.c-band-grey .c-team-content {
    background-color: #FFFFFF;
}

.c-team-content a {
    color: #4E9A33;
    font-family: "Avenir LT W01_65 Medium1475532";
}

.c-team-toggler {
    display: block;
    position: absolute;
    cursor: pointer;
    width: 16px;
    height: 25px;
    right: 10px;
    top: 10px;
}

@media (min-width: 576px) {
    .c-team-toggler {
        right: 15px;
        top: 15px;
    }
}

.c-team-toggler::before, .c-team-toggler::after {
    content: '';
    display: block;
    width: 16px;
    height: 2px;
    position: absolute;
    right: 0px;
    transition: transform 0.5s ease-in-out;
    opacity: 1;
    background-color: #4E9A33;
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    bottom: 0;
}

.c-team-toggler::before {
    transform: rotate(-90deg);
}

.c-team-item.cloned.open .c-team-toggler::before {
    transform: rotate(45deg);
}

.c-team-item.cloned.open .c-team-toggler::after {
    transform: rotate(135deg);
}

.c-team-image {
    display: block;
    width: 100%;
}

.c-team-image-container {
    display: block;
    width: 100%;
}

.c-team-item.cloned .c-team-image-container {
    background-image: none !important;
}

.c-team-name {
    display: block;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 0.75rem;
    line-height: 16px;
    color: #4E9A33;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-right: 30px;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-team-name {
        font-size: 1.0625rem;
        line-height: 25px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-team-name {
        letter-spacing: 0.8px;
    }
}

@media (min-width: 1230px) {
    .c-team-name {
        font-size: 1.125rem;
    }
}

.c-team-job {
    display: block;
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.75rem;
    line-height: 16px;
    margin-bottom: 15px;
    margin-top: 0;
}

@media (min-width: 768px) {
    .c-team-job, c-team-popup-link {
        font-size: 0.875rem;
        line-height: 21px;
    }
}

.c-team-phone, .c-team-email {
    display: none;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 0.75rem;
    line-height: 16px;
    color: #086132;
    margin-bottom: 5px;
}

    .c-team-phone.show, .c-team-email.show {
        display: block;
    }

@media (min-width: 768px) {
    .c-team-phone, .c-team-email {
        font-family: "Avenir LT W01_65 Medium1475532";
        font-size: 0.875rem;
        line-height: 21px;
    }
}

.c-team-phone a, .c-team-email a {
    padding-left: 15px;
}

.c-team-popup {
    display: block;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 0.75rem;
    line-height: 16px;
    color: #086132;
    margin-bottom: 5px;
}

@media (min-width: 768px) {
    .c-team-popup {
        font-family: "Avenir LT W01_65 Medium1475532";
        font-size: 0.875rem;
        line-height: 21px;
    }
}

.c-team-popup a {
    padding-left: 15px;
}

.c-team-text {
    display: none;
    /*font-family: $georgia;*/
    font-size: 0.8125rem;
    line-height: 20px;
    margin-top: 10px;
}

.c-team-popup {
    display: block;
    font-size: 0.8125rem;
    line-height: 20px;
}

.c-team .c-sign-up {
    padding: 0;
}

.c-team-overlay .c-sign-up {
    display: none;
}

@media (min-width: 768px) {
    .c-team-text {
        font-size: 0.9rem;
        line-height: 24px;
    }

    .c-team-popup {
        font-size: 1rem;
        line-height: 26px;
    }
}

.c-team-center .contained {
    max-width: 1200px;
}

.c-team-center .c-team-group {
    justify-content: center;
}

@media (min-width: 425px) {
    .c-team-center .c-team-item {
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media (min-width: 992px) {
    .c-team-center .c-team-item {
        width: calc(25% - 20px);
    }

    .c-team-text {
        font-size: 1rem;
        line-height: 26px;
    }
}

.c-team-center .c-team-item:nth-child(odd) {
    margin-left: 0;
}

@media (min-width: 992px) {
    .c-team-center .c-team-item:nth-child(odd) {
        margin-left: 10px;
    }
}

.c-team-center .c-team-item:nth-child(even) {
    margin-right: 0;
}

@media (min-width: 992px) {
    .c-team-center .c-team-item:nth-child(even) {
        margin-right: 10px;
    }
}

.c-team-overlay .c-team-item {
    width: 100%;
    max-width: 330px;
    margin-right: 0;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .c-team-overlay .c-team-item {
        max-width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        max-width: 710px;
    }
}

@media (min-width: 1230px) {
    .c-team-overlay .c-team-item {
        max-width: 780px;
    }
}

.c-team-overlay .c-team-image-container {
    width: calc(100% - 10px);
}

@media (min-width: 768px) {
    .c-team-overlay .c-team-image-container {
        width: calc(50% + 5px);
        position: relative;
        z-index: 1;
        background-repeat: no-repeat;
    }
}

.c-team-overlay .c-team-content {
    padding: 20px;
    width: calc(100% - 10px);
    margin-left: 10px;
    margin-top: -10px;
    max-height: 45vh;
    overflow: auto;
    flex: none;
}

@media (min-width: 768px) {
    .c-team-overlay .c-team-content {
        margin-top: 0;
        margin-left: -20px;
        width: calc(50% + 15px);
        position: relative;
        top: 20px;
        padding: 25px 40px;
        padding-left: 50px;
        max-height: 70vh;
    }
}

.c-team-overlay .c-team-name {
    margin-bottom: 10px;
}

.c-team-overlay .c-team-job {
    margin-top: 0;
}

.c-team-overlay .c-team-phone, .c-team-overlay .c-team-email, .c-team-overlay .c-team-text {
    display: block;
}

.c-team-overlay .c-team-toggler {
    right: 20px;
    top: 20px;
}

.c-team-search {
    display: block;
}

.c-team-filter {
    display: block;
    margin-bottom: 30px;
    width: 100%;
}

@media (min-width: 768px) {
    .c-team-filter {
        display: flex;
    }
}

.c-team-filter .c-form-search {
    width: 100%;
}

.c-team-filter > div.c-team-filter-item {
    display: block;
    width: 100%;
    max-width: 450px;
}

@media (min-width: 768px) {
    .c-team-filter > div.c-team-filter-item {
        width: calc((100% / 3) - (40px / 3));
    }
}

@media (min-width: 992px) {
    .c-team-filter > div.c-team-filter-item {
        width: calc(25% - 15px);
    }
}

/*#endregion*/
/*#region c-accordion*/
.c-accordion {
    padding: 40px 0 25px;
}

@media (min-width: 992px) {
    .c-accordion {
        padding: 70px 0 55px;
    }
}

.c-accordion-group {
    display: block;
    width: 100%;
}

.c-accordion-expandbtn {
    margin-top: -30px;
    position: absolute;
    font-size: 0.85rem;
    color: #aaa;
}

@media (min-width: 992px) { 

    .c-accordion-expandbtn {
        margin-top: -40px;
    }
}

.c-accordion-item, .c-accordion .c-text-accordion-item {
    display: block;
    margin-bottom: 0;
    border-top: 1px solid #AFAFAF;
}

    .c-accordion-item:first-child, .c-accordion .c-text-accordion-item:first-child {
        border-top: none;
    }

        .c-accordion-item:first-child .c-accordion-title, .c-accordion .c-text-accordion-item:first-child .c-text-accordion-title {
            padding-top: 0;
        }

            .c-accordion-item:first-child .c-accordion-title::before, .c-accordion-item:first-child .c-accordion-title::after,
            .c-accordion .c-text-accordion-item:first-child .c-text-accordion-title::before, .c-accordion .c-text-accordion-item:first-child .c-text-accordion-title::after {
                top: 11px;
                bottom: auto;
            }

.c-accordion-title, .c-accordion .c-text-accordion-title {
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.875rem;
    line-height: 19px;
    color: #505050;
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-accordion-title, .c-accordion .c-text-accordion-title {
        font-size: 1.125rem;
        line-height: 23px;
        padding-top: 20px;
        padding-bottom: 20px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-accordion-title, .c-accordion .c-text-accordion-title {
        letter-spacing: 0.8px;
    }
}

@media (min-width: 1230px) {
    .c-accordion-title, .c-accordion .c-text-accordion-title {
        padding-top: 25px;
        padding-bottom: 25px;
    }
}

.c-accordion-title::before, .c-accordion-title::after, .c-accordion .c-text-accordion-title::before, .c-accordion .c-text-accordion-title::after {
    content: '';
    display: block;
    width: 16px;
    height: 2px;
    position: absolute;
    left: 0px;
    transition: opacity 0.3s ease-in-out, transform 0.5s ease-in-out;
    opacity: 1;
    background-color: #4E9A33;
    top: 0;
    bottom: 0;
    margin-bottom: auto;
    margin-top: auto;
}

.c-accordion-title::before, .c-accordion .c-text-accordion-title::before {
    transform: rotate(-90deg);
}

.c-accordion-item.open .c-accordion-title::before, .c-accordion .c-text-accordion-item.open .c-text-accordion-title::before {
    transform: rotate(0);
}

.c-accordion-item.open .c-accordion-title::after, .c-accordion .c-text-accordion-item.open .c-text-accordion-title::after {
    transform: rotate(90deg);
    opacity: 0;
}

.c-accordion-content {
    display: block;
    padding: 0;
    height: 0;
    min-height: 0;
    overflow: hidden;
    transition: min-height 0.5s ease-in-out;
}

.c-accordion-content-area {
    display: block;
    margin-bottom: 30px;
}

@media (min-width: 1230px) {
    .c-accordion-content-area-indent, .c-accordion .c-text-accordion-content {
        padding-left: 150px;
    }
}

/*#endregion*/
/*#region c-logo-wall*/
.c-logo-wall {
    padding: 50px 0;
}

@media (min-width: 992px) {
    .c-logo-wall {
        padding: 70px 0;
    }
}

.c-logo-wall .c-text-container {
    padding-bottom: 30px;
}

@media (min-width: 992px) {
    .c-logo-wall .c-text-container {
        padding-bottom: 50px;
    }
}

.c-logo-wall-container {
    position: relative;
}

.c-logo-wall-list {
    display: flex;
    flex-wrap: wrap;
}

    .c-logo-wall-list .slick-list {
        width: calc(100% - 50px);
        margin-left: 25px;
    }

    .c-logo-wall-list .slick-track {
        display: flex;
        justify-content: center;
        align-items: center;
    }

.c-logo-wall-item {
    width: 100%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    margin-right: 10px;
}

@media (min-width: 1230px) {
    .c-logo-wall-item {
        height: 130px;
        margin-left: 0;
        margin-bottom: 60px;
        margin-right: 20px;
        max-width: 280px;
    }
}

@media (min-width: 1230px) {
    .c-logo-wall-item:nth-child(4n) {
        margin-right: 0;
    }
}

.c-logo-wall-logo {
    display: block;
    max-width: 100%;
    overflow: hidden;
}

.c-logo-wall-controls {
    position: relative;
}

.c-logo-wall-link {
    display: block;
}

/*#endregion*/
/*#region c-image*/
.c-image {
    padding: 50px 0;
}

@media (min-width: 992px) {
    .c-image {
        padding: 70px 0;
    }
}

.c-image-container {
    position: relative;
}

.c-image-header {
    display: block;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 0.75rem;
    line-height: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #AFAFAF;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-image-header {
        font-size: 0.9375rem;
        line-height: 22px;
        margin-bottom: 30px;
        width: 50%;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-image-header {
        letter-spacing: 0.8px;
    }
}

.c-image-image {
    width: 100%;
    display: block;
    margin: 0 auto;
}

.c-image-parallax {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 200px;
}

.c-image-parallax-container .mob {
    display: block;
}

@media (min-width: 1230px) {
    .c-image-parallax-container .mob {
        display: none;
    }
}

.c-image-parallax-container .desk {
    display: none;
}

@media (min-width: 1230px) {
    .c-image-parallax-container .desk {
        display: block;
    }
}


.c-image-inline, .c-article-detail .c-image-inline {
    padding: 0;
    margin-top: -40px;
}

/*#endregion*/
/*#region c-sign-up*/
.c-sign-up {
    padding: 30px 0;
}

@media (min-width: 992px) {
    .c-sign-up {
        padding: 30px 0;
    }
}

.c-sign-up.hiddenform
{
    padding: 0;
    margin: 0;
}

.c-sign-up-container {
    display: block;
}

@media (min-width: 768px) {
    .c-sign-up-container {
        display: flex;
        align-items: center;
    }
}

.c-sign-up-picture {
    display: none;
}

@media (min-width: 1230px) {
    .c-sign-up-picture {
        display: flex;
        align-items: center;
        width: calc(25% - 40px);
        margin-right: 40px;
    }
}

.c-sign-up-image {
    display: block;
}

.c-sign-up-content {
    display: block;
    width: 100%;
}

@media (min-width: 1230px) {
    .c-sign-up-content {
        width: calc(75% - 20px);
    }
}

.c-sign-up-title {
    font-size: 2.1875rem;
    line-height: 36px;
    display: block;
    color: #086132;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .c-sign-up-title {
        font-size: 1.875rem;
        line-height: 40px;
    }
}

@media (min-width: 1230px) {
    .c-sign-up-title {
        font-size: 2.1875rem;
        line-height: 50px;
    }
}

.c-sign-up-text {
    display: block;
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.875rem;
    line-height: 19px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .c-sign-up-text {
        font-size: 1.125rem;
        line-height: 23px;
    }
}

@media (min-width: 768px) {
    .c-sign-up-form {
        display: flex;
    }
}

@media (min-width: 768px) {
    .c-sign-up-form-info {
        width: calc(70% - 10px);
        margin-right: 20px;
    }
}

@media (min-width: 1230px) {
    .c-sign-up-form-info {
        width: calc(76% - 20px);
        margin-right: 40px;
    }
}

.c-sign-up-form-cta {
    display: block;
}

@media (min-width: 768px) {
    .c-sign-up-form-cta {
        display: flex;
        align-items: flex-end;
        padding-bottom: 20px;
        width: calc(30% - 10px);
    }
}

@media (min-width: 1230px) {
    .c-sign-up-form-cta {
        width: calc(24% - 20px);
    }
}

@media (min-width: 768px) {
    .c-sign-up-form .c-form-submit {
        width: 100%;
    }
}

.c-sign-up-overlay-content {
    position: relative;
    background-color: #FFFFFF;
    max-width: 825px;
    width: 100%;
}

@media (min-width: 768px) {
    .c-sign-up-overlay .c-overlay-close {
        right: 20px;
    }

    .c-sign-up-overlay-content {
        width: 85%;
    }
}

.c-sign-up-overlay .c-form-content {
    padding: 20px;
    padding-bottom: 10px;
}

@media (min-width: 768px) {
    .c-sign-up-overlay .c-form-content {
        padding: 30px;
        padding-bottom: 15px;
    }
}

@media (min-width: 1230px) {
    .c-sign-up-overlay .c-form-content {
        padding: 20px 40px 20px 40px;
        padding-bottom: 20px;
    }
}

.c-sign-up-overlay .c-form-title {
    padding-right: 20px;
}

.c-sign-up-overlay .c-form-fields {
    margin-bottom: 10px;
}

/*#endregion*/

/*#region hidden-popup-form*/

.hidden-popup-form {
    cursor: pointer;
    color: #4E9A33;
}
/*#endregion*/
/*#region c-page-header*/
.c-page-header {
    padding: 20px 0;
}

@media (min-width: 768px) {
    .c-page-header {
        padding: 40px 0;
    }
}

.c-page-header-container {
    display: block;
    width: 100%;
}

@media (min-width: 768px) {
    .c-page-header-container {
        width: calc(100% - 320px);
    }
}

.c-page-header-heading {
    display: block;
}

/*#endregion*/
/*#region c-archive*/
.c-archive {
    padding: 50px 0;
}

@media (min-width: 992px) {
    .c-archive {
        padding: 70px 0;
    }
}

.c-archive .c-download-btn {
    min-width: 220px;
    margin-right: 10px;
}

@media (min-width: 768px) {
    .c-archive .c-download-btn {
        min-width: calc(33% - 9px);
    }

    .c-archive-latest a:last-child {
        margin-right: 0;
    }
}

.c-archive-container {
    display: block;
}

@media (min-width: 768px) {
    .c-archive-container {
        display: flex;
    }
}

.c-archive-text {
    display: block;
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.75rem;
    line-height: 16px;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .c-archive-text {
        font-size: 0.875rem;
        line-height: 21px;
        margin-bottom: 15px;
    }
}

.c-archive-latest {
    display: block;
    margin-bottom: 45px;
}

.c-archive-dropdowns {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.reports-dropdowns {
    display: block;
}

.c-archive-dropdowns .c-dropdown {
    display: block;
}

@media (min-width: 576px) {
    .c-archive-dropdowns .c-dropdown {
        width: calc(50% - 10px);
        margin-right: 20px;
        min-width: 0;
        max-width: 420px;
    }
}

.c-archive-dropdowns .c-dropdown:nth-child(even) {
    margin-right: 0;
}

/*#endregion*/
/*#region c-map*/
.c-map {
    padding: 50px 0;
}

@media (min-width: 992px) {
    .c-map {
        padding: 70px 0;
    }
}

.c-map-container {
    display: block;
}

.c-map-place {
    display: block;
    padding-bottom: 20px;
}

@media (min-width: 768px) {
    .c-map-place {
        display: flex;
    }
}

.c-map-filter {
    display: block;
    margin-bottom: 30px;
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.875rem;
    line-height: 21px;
}

.c-map-filter-text {
    display: block;
}

.c-map-dropdown {
    display: inline-block;
    margin-right: 10px;
}

    .c-map-dropdown .c-map-filter-text {
        display: inline-block;
        margin-right: 10px;
    }

.c-map-info {
    display: block;
    background-color: #64B446;
    padding: 20px 15px;
    padding-bottom: 30px;
    width: calc(100% - 10px);
}

@media (min-width: 768px) {
    .c-map-info {
        padding: 30px;
        width: 230px;
        position: relative;
        z-index: 1;
    }
}

@media (min-width: 1230px) {
    .c-map-info {
        width: 280px;
    }
}

.c-map-map {
    position: relative;
    display: block;
    min-height: 300px;
    width: calc(100% - 10px);
    margin-left: auto;
    margin-top: -10px;
}

@media (min-width: 768px) {
    .c-map-map {
        margin-left: -20px;
        margin-top: 0;
        position: relative;
        top: 20px;
        width: calc(100% - 210px);
    }
}

@media (min-width: 1230px) {
    .c-map-map {
        min-height: 350px;
        margin-left: -40px;
        width: calc(100% - 240px);
    }
}

.c-map-render {
    display: block;
    height: 100%;
    min-height: 300px;
}

.c-map-title {
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 1rem;
    line-height: 21px;
    text-transform: uppercase;
    color: #134F33;
    margin-bottom: 5px;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-map-title {
        font-size: 1.125rem;
        line-height: 25px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-map-title {
        letter-spacing: 0.8px;
    }
}

.c-map-location {
    color: #FFFFFF;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .c-map-location {
        margin-bottom: 30px;
    }
}

.c-map-address {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .c-map-address {
        margin-bottom: 30px;
    }
}

.c-map-text {
    color: #FFFFFF;
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.875rem;
    line-height: 21px;
}

    .c-map-text a, .c-map-text a:hover, .c-map-text a:focus {
        color: #FFFFFF;
    }

.c-map-button {
    display: none;
    position: absolute;
    right: 10px;
    bottom: 15px;
    background-color: #FFFFFF;
    border: 2px solid #4E9A33;
    color: #086132;
    padding: 12px 30px;
    align-items: center;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 0.9375rem;
    line-height: 22px;
    text-transform: uppercase;
    z-index: 1;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-map-button {
        display: flex;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-map-button {
        letter-spacing: 0.8px;
    }
}

.c-map-zoom {
    display: none;
}

@media (min-width: 768px) {
    .c-map-zoom {
        display: block;
        margin: 15px 10px;
    }
}

.c-map-zoom-btn {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #FFFFFF;
    border: 2px solid #4E9A33;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.c-map-zoom-in {
    margin-bottom: 10px;
}

.c-map-zoom-in, .c-map-zoom-out {
    position: relative;
}

    .c-map-zoom-in::before, .c-map-zoom-in::after, .c-map-zoom-out::before {
        content: '';
        width: 16px;
        height: 2px;
        display: block;
        background-color: #4E9A33;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
    }

    .c-map-zoom-in::after {
        transform: rotate(90deg);
    }

/*#endregion*/
/*#region c-category*/
.c-category {
    padding: 30px 0;
}

@media (min-width: 768px) {
    .c-category {
        padding: 50px 0;
    }
}

@media (min-width: 992px) {
    .c-category {
        /*padding: 70px 0;*/
    }
}

.c-category-container {
    position: relative;
}

.c-category-list {
    display: flex;
}

.c-category .c-band-header {
    padding-left: 20px;
}

.c-category-item {
    display: block;
    padding-left: 20px;
}

@media (min-width: 1230px) {
    .c-category .c-band-header {
        padding-left: 0;
    }

    .c-category-item {
        margin-right: 20px;
        padding-left: 0;
    }
}

.c-category-btn {
    display: block;
    background-color: #FFFFFF;
    border: 2px solid #64B446;
    color: #086132;
    text-transform: uppercase;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 0.9375rem;
    line-height: 22px;
    padding: 10px 30px;
    outline: none;
    cursor: pointer;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-category-btn {
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-category-btn {
        letter-spacing: 0.8px;
    }
}

.c-category-btn.selected {
    background-color: #64B446;
    color: #FFFFFF;
}

.c-category-btn:hover {
    color: #086132;
}

.c-category-btn.selected:hover {
    color: #FFFFFF;
}

.c-category .contained {
    padding-left: 0;
    padding-right: 0;
}

.c-category .slick-prev {
    left: 5px;
    z-index: 1000;
}

.c-category .slick-next {
    right: 5px;
    z-index: 1000;
}

@media (min-width: 992px) {
    .c-category .slick-next, .c-category .slick-prev {
        display: none !important;
    }
}

/*#endregion*/
/*#region c-hover*/
.c-hover {
    position: relative;
}

.c-hover-default {
    opacity: 1;
    transition: opacity ease-in-out 0.5s;
}

.c-hover-swap {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity ease-in-out 0.5s;
}

.c-hover:hover .c-hover-swap {
    opacity: 1;
}

.c-hover:hover .c-hover-default {
    opacity: 0;
}

/*#endregion*/
/*#region c-event*/
.c-event {
    padding: 0;
    display: block;
    position: relative;
}

    .c-event::after {
        content: '';
        display: block;
        position: absolute;
        width: 100%;
        height: calc(100% - 25px);
        bottom: 0;
        left: 0;
        background-color: #F8F8F8;
        z-index: -1;
    }

.c-event-container {
    display: block;
}

.c-event-content {
    display: block;
}

@media (min-width: 768px) {
    .c-event-content {
        display: flex;
    }
}

.c-event-image {
    max-width: 75%;
    display: block;
    margin-bottom: 45px;
}

.c-event-detail {
    display: block;
}

@media (min-width: 768px) {
    .c-event-detail {
        width: 75%;
        padding-right: 75px;
    }
}

@media (min-width: 1230px) {
    .c-event-detail {
        padding-right: 150px;
    }
}

.c-event-info {
    display: block;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .c-event-info {
        width: 25%;
        margin-top: 6px;
    }
}

.c-event-info-item {
    display: block;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .c-event-info-item {
        margin-bottom: 30px;
    }
}

.c-event-info-title {
    display: block;
    text-transform: uppercase;
    font-family: "Avenir LT W01_95 Black1475556";
    color: #086132;
    font-size: 1rem;
    line-height: 21px;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-event-info-title {
        font-size: 1.125rem;
        line-height: 25px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-event-info-title {
        letter-spacing: 0.8px;
    }
}

.c-event-info-text {
    font-size: 0.8125rem;
    line-height: 20px;
}

@media (min-width: 768px) {
    .c-event-info-text {
        font-size: 1rem;
        line-height: 26px;
    }
}

.c-event-info-text p {
    margin-bottom: 0;
}

/*#endregion*/
/*#region c-button-group*/
.c-button-group {
    display: block;
    padding: 50px 0;
}

@media (min-width: 992px) {
    .c-button-group {
        padding: 70px 0;
    }
}

/*#endregion*/
/*#region c-video*/
.c-video-video {
    position: relative;
    display: block;
}

    .c-video-video video {
        display: block;
        width: 100%;
    }

.c-video-controls {
    display: none;
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.playing .c-video-controls {
    display: flex;
}

.finished .c-video-controls {
    display: none !important;
}

.c-video-control-left {
    width: 50px;
    margin-right: 20px;
}

.c-video-control-middle {
    width: calc(100% - 70px);
}

@media (min-width: 768px) {
    .c-video-control-middle {
        width: calc(100% - 250px);
    }
}

.c-video-control-right {
    width: 150px;
    margin-left: 30px;
    display: none;
    justify-content: flex-end;
}

@media (min-width: 768px) {
    .c-video-control-right {
        display: flex;
    }
}

.playing .c-video-play {
    display: none;
}

.finished .c-video-play {
    display: flex !important;
}

.c-video-play {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
}

.c-video-play-icon {
    display: block;
    width: 97px;
}

.c-video-pause {
    display: block;
    width: 33px;
    cursor: pointer;
}

.c-video-pause-icon {
    display: block;
    width: 100%;
}

.c-video-volume {
    display: flex;
    align-items: center;
    width: 100%;
    height: 34px;
}

.c-video-volume-icon {
    display: block;
    width: 30px;
    margin-right: 10px;
    cursor: pointer;
}

    .c-video-volume-icon img {
        display: block;
        width: 100%;
    }

.c-video-volume-bar-container {
    position: relative;
    display: block;
    width: calc(100% - 40px);
}

.c-video-volume-bar {
    display: block;
    height: 18px;
    background: transparent;
    border: 1px solid #FFFFFF;
    position: relative;
    width: 100%;
    cursor: pointer;
}

.c-video-volume-bar-bar {
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 0%;
    height: 100%;
    background-color: #4E9A33;
    cursor: pointer;
}

    .c-video-volume-bar-bar.unmuted:after {
        content: '';
        height: 34px;
        width: 5px;
        background-color: #FFFFFF;
        position: absolute;
        right: 0;
        top: -8px;
    }

    .c-video-volume-bar-bar.muted {
        width: 0 !important;
    }

        .c-video-volume-bar-bar.muted::after {
            content: none !important;
        }

.c-video-progress {
    display: flex;
    align-items: center;
    height: 34px;
}

.c-video-progress-container {
    position: relative;
    display: block;
    width: 100%;
}

.c-video-progress-bar {
    display: block;
    height: 18px;
    background: transparent;
    border: 1px solid #FFFFFF;
    position: relative;
    width: 100%;
    cursor: pointer;
}

.c-video-progress-bar-bar {
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 0%;
    height: 100%;
    background-color: #4E9A33;
    cursor: pointer;
}

    .c-video-progress-bar-bar.active:after {
        content: '';
        height: 34px;
        width: 5px;
        background-color: #FFFFFF;
        position: absolute;
        right: 0;
        top: -8px;
    }

.c-video-time {
    color: #FFFFFF;
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.875rem;
    line-height: 21px;
    margin-right: 10px;
    position: relative;
    top: 1px;
}

    .c-video-time.end {
        margin-left: 10px;
        margin-right: 0;
    }

/*#endregion*/
/*#region c-audio*/
.c-audio {
    padding: 30px 0;
}

.c-audio-controls {
    display: flex;
    position: relative;
    align-items: center;
    flex-wrap: wrap;
}

.c-audio-control-left {
    width: 50px;
    margin-right: 20px;
}

.c-audio-control-middle {
    width: calc(100% - 70px);
}

@media (min-width: 768px) {
    .c-audio-control-middle {
        width: calc(100% - 250px);
    }
}

.c-audio-control-right {
    width: 150px;
    margin-left: 30px;
    display: none;
    justify-content: flex-end;
}

@media (min-width: 768px) {
    .c-audio-control-right {
        display: flex;
    }
}

.c-audio-play-pause {
    display: block;
    width: 33px;
    cursor: pointer;
}

.c-audio-pause-icon {
    display: none;
    width: 100%;
}

.playing .c-audio-pause-icon {
    display: block;
}

.c-audio-play-icon {
    width: 100%;
    display: block;
}

.playing .c-audio-play-icon {
    display: none;
}

.c-audio-volume {
    display: flex;
    align-items: center;
    width: 100%;
    height: 34px;
}

.c-audio-volume-icon {
    display: block;
    width: 30px;
    margin-right: 10px;
    cursor: pointer;
}

    .c-audio-volume-icon img {
        display: block;
        width: 100%;
    }

.c-audio-volume-bar-container {
    position: relative;
    display: block;
    width: calc(100% - 40px);
}

.c-audio-volume-bar {
    display: block;
    height: 18px;
    background: #FFFFFF;
    border: 1px solid #086132;
    position: relative;
    width: 100%;
    cursor: pointer;
}

.c-audio-volume-bar-bar {
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 0%;
    height: 100%;
    background-color: #4E9A33;
    cursor: pointer;
}

    .c-audio-volume-bar-bar.unmuted:after {
        content: '';
        height: 34px;
        width: 5px;
        background-color: #086132;
        position: absolute;
        right: 0;
        top: -8px;
    }

    .c-audio-volume-bar-bar.muted {
        width: 0 !important;
    }

        .c-audio-volume-bar-bar.muted::after {
            content: none !important;
        }

.c-audio-progress {
    display: flex;
    align-items: center;
    height: 34px;
}

.c-audio-progress-container {
    position: relative;
    display: block;
    width: 100%;
}

.c-audio-progress-bar {
    display: block;
    height: 18px;
    background: #FFFFFF;
    border: 1px solid #086132;
    position: relative;
    width: 100%;
    cursor: pointer;
}

.c-audio-progress-bar-bar {
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 0%;
    height: 100%;
    background-color: #4E9A33;
    cursor: pointer;
}

    .c-audio-progress-bar-bar.active:after {
        content: '';
        height: 34px;
        width: 5px;
        background-color: #086132;
        position: absolute;
        right: 0px;
        top: -8px;
    }

.c-audio-time {
    color: #AFAFAF;
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.875rem;
    line-height: 21px;
    margin-right: 10px;
    position: relative;
    top: 1px;
}

    .c-audio-time.end {
        margin-left: 10px;
        margin-right: 0;
    }

/*#endregion*/
/*#region c-band*/
.c-band {
    background-color: #FFFFFF;
}

.c-band-grey {
    background-color: #F8F8F8;
}

.c-band-with-padding {
    padding: 50px 0;
}

@media (min-width: 768px) {
    .c-band-with-padding {
        padding: 70px 0;
    }
}

.c-band-container {
    display: block;
}

.c-band-header {
    display: block;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 0.75rem;
    line-height: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #AFAFAF;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-band-header {
        font-size: 0.9375rem;
        line-height: 22px;
        margin-bottom: 30px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-band-header {
        letter-spacing: 0.8px;
    }
}

.c-band-content {
    display: block;
    margin-bottom: 40px;
}

.c-band-cta {
    display: flex;
    justify-content: flex-end;
}

/*#endregion*/
/*#region c-table*/
.c-table {
    display: block;
    width: 100%;
    overflow-x: auto;
}

.c-table-heading {
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 0.75rem;
    line-height: 16px;
    color: #086132;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.15px;
}

@media (min-width: 768px) {
    .c-table-heading {
        font-size: 1.0rem;
        line-height: 20px;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 992px) {
    .c-table-heading {
        letter-spacing: 0.8px;
    }
}

.c-table-striped-grey tr {
    border-bottom: none;
}

    .c-table-striped-grey tr:nth-of-type(odd) {
        background-color: #f0f0f0;
    }

    .c-table-striped-grey tr:nth-of-type(even) {
        background-color: rgba(100,100,100,0.02);
    }

.c-band-grey .c-table-striped-grey tr:nth-of-type(even) {
    background-color: white;
}

.c-table-striped-grey tr > *:first-child {
    padding-left: 15px;
}

.c-table-striped-grey tr:first-child > * {
    padding-top: 5px;
}

@media (min-width: 768px) {
    .c-table-striped-grey tr:first-child > * {
        padding-top: 8px;
    }
}

.c-table-striped-grey tr:last-child > * {
    padding-bottom: 5px;
}

@media (min-width: 768px) {
    .c-table-striped-grey tr:last-child > * {
        padding-bottom: 8px;
    }
}

.c-table-border-top tr {
    border-top: 1px solid #4E9A33;
}

.c-table-align-right tr > * {
    text-align: right;
}

    .c-table-align-right tr > *:first-child {
        min-width: 0;
        text-align: left;
    }

    .c-table-align-right tr > *:last-child {
        padding-right: 15px;
    }

.c-asset-table .c-table-align-right tr > *:last-child {
    padding-right: 0px;
}

.c-asset-table-text {
    margin-top: 20px;
}

@media (min-width: 768px) {
    .c-asset-table-text {
        margin-top: 30px;
    }
}

.c-table-align-right.c-table-striped-grey tr > *:last-child {
    padding-right: 15px;
}

.c-table-title {
    font-family: "Avenir LT W01_65 Medium1475532";
}

.c-table-topper {
    margin-bottom: 14px;
}

    .c-table-topper tr:last-child {
        border-bottom: 1px solid #4E9A33;
    }

    .c-table-topper.c-table-striped-grey tr:last-child {
        border-bottom: none;
    }

@media (min-width: 768px) {
    .c-table-topper tr:last-child > * {
        padding-bottom: 15px;
    }
}
/*#endregion*/

/*#region share widgets*/

.c-share-widget-small {
    display: flex;
}

/*#endregion*/

/*#region c-article-filters*/
.c-article-filters {
    position: relative;
    padding: 35px 0;
}

.c-article-filters-container {
    position: relative;
    display: block;
}

@media (min-width: 768px) {
    .c-article-filters-container {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
    }
}

.c-article-filters .c-band-header {
    color: #8F8F8F;
    margin-top: auto;
    padding-right: 20px;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .c-article-filters .c-band-header {
        margin-bottom: auto;
    }
}

.c-article-filters .c-dropdown {
    margin-bottom: 15px;
    min-width: 270px;
}

@media (min-width: 576px) {
    .c-article-filters .c-dropdown {
        margin-bottom: 0;
    }
}

.c-article-filters .c-dropdown-container {
    min-width: 200px;
}

.c-article-filters .c-dropdown-selected {
    padding: 12px 18px;
}

    .c-article-filters .c-dropdown-selected::after, .c-article-filters .c-dropdown-selected::before {
        top: 18px;
    }

/*#endregion*/

/*#region lightbox-image*/
.c-lightbox-overlay .c-lightbox-item {
    height: auto;
    width: auto;
}



    .c-lightbox-overlay .c-lightbox-item img {
        max-height: 90vh;
        width: auto;
        height: auto;
    }

.c-lightbox-overlay .c-overlay-content {
    position: relative;
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
}

@media screen and (min-width:0\0) {
    .c-lightbox-overlay .c-overlay-content {
        width: 100%;
    }

    .c-lightbox-overlay .c-lightbox-item {
        display: block;
    }
}

/*#endregion*/

/*#region c-splash*/
body.splash
{
    overflow: hidden;
}

.c-splash .c-header-heading, .c-splash .c-header-subtext {
    color: #FFFFFF;
}

.c-splash .c-header-heading {
    margin-bottom: 35px;
}

.c-splash .c-header-text {
    color: #64B446;
    line-height: 29px;
    margin-bottom: 20px;
}

.c-splash .c-header-subtext {
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 1.1rem;
    margin-right: 8%;
    line-height: 1.6rem;
}

    .c-splash {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #134F33;
        z-index: 1100;
        padding: 15px 0;
        transition: background-color 0.5s ease-in-out, top 0.5s ease-in-out;
        overflow-y: auto;
    }

@media (min-width: 768px) {
    .c-splash {
        padding: 30px;
    }
}

@media (min-width: 992px) {
    .c-splash {
        padding: 40px 0;
    }
}

@media (min-width: 1230px) {
    .c-splash {
        padding: 50px 0;
    }
}

.splash .c-splash {
    display: block;
}

.c-splash .c-contact {
    background-color: white;
    margin: 80px 0 0 0;
}

.c-splash-row {
    display: block;
}

@media (min-width: 768px) {
    .c-splash-row {
        display: flex;
        flex-wrap: nowrap;
    }
}

.c-splash-col {
    display: block;
    width: 100%;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .c-splash-col {
        /*display: flex;
        flex-direction: column;
        justify-content: center;*/
        width: 50%;
        padding: 0 30px;
        /*border-right: 1px solid #D8D8D8;*/
        margin-bottom: 0px;
    }
}

@media (min-width: 992px) {
    .c-splash-col {
        padding: 0 45px;
    }
}

@media (min-width: 1230px) {
    .c-splash-col {
        padding: 0 60px;
    }
}

@media (min-width: 1440px) {
    .c-splash-col {
        padding: 0 75px;
    }
}

.c-splash-col:first-child {
    padding-left: 0;
}

.c-splash-col:last-child {
    padding-right: 0;
    border-right: none;
    margin-bottom: 0px;
}

.c-splash-screen {
    display: none;
}

    .c-splash-screen.open {
        display: block;
    }

.c-splash-section {
    display: block;
    margin-bottom: 20px;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.5s ease-in-out;
}

    .c-splash-section.chosen {
        border-bottom-color: #FFFFFF;
        padding-bottom: 20px;
    }

    .c-splash-section:last-child {
        margin-bottom: 0;
        border-bottom: 0;
        padding-bottom: 0;
    }

.c-splash-section-title {
    display: flex;
    align-items: center;
    position: relative;
    color: #FFFFFF;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 1.5rem;
    line-height: 26px;
    margin-bottom: 0;
    transition: color 0.5s ease-in-out;
}

@media (min-width: 768px) {
    .c-splash-section-title {
        font-size: 1.75rem;
        line-height: 32px;
    }
}

@media (min-width: 1230px) {
    .c-splash-section-title {
        font-size: 2rem;
        line-height: 36px;
    }
}

.c-splash-section.chosen .c-splash-section-title {
    color: #64B446;
    cursor: pointer;
}

.c-nav-splash .c-splash-section.chosen .c-splash-section-title {
    color: #ABFC8D;
}

.c-splash-section.open .c-splash-section-title, .c-nav-splash .c-splash-section.open .c-splash-section-title {
    color: #FFFFFF;
}

.c-splash-section-title::before, .c-splash-section-title::after {
    content: '';
    display: none;
    width: 12px;
    height: 2px;
    background-color: #FFFFFF;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    transition: right 0.5s ease-in-out, width 0.5s ease-in-out;
}

@media (min-width: 992px) {
    .c-splash-section-title::before, .c-splash-section-title::after {
        width: 18px;
    }
}

.c-splash-section.chosen .c-splash-section-title::before, .c-splash-section.chosen .c-splash-section-title::after {
    display: block;
}

.c-splash-section-title::before {
    transform: rotate(45deg);
    right: 8px;
}

@media (min-width: 992px) {
    .c-splash-section-title::before {
        right: 12px;
    }
}

.c-splash-section-title::after {
    transform: rotate(-45deg);
}

.c-splash-section.open .c-splash-section-title::before, .c-splash-section.open .c-splash-section-title::after {
    width: 20px;
}

@media (min-width: 992px) {
    .c-splash-section.open .c-splash-section-title::before, .c-splash-section.open .c-splash-section-title::after {
        width: 32px;
    }
}

.c-splash-section.open .c-splash-section-title::before {
    right: 0px;
}

.c-splash-section-content {
    display: none;
    padding-top: 10px;
}

.c-splash-section-title + .c-splash-section-content {
    padding-top: 30px;
}

.c-btn.c-splash-select-location {
    background-color: transparent;
    color: #64B446;
    border: 3px solid #64B446;
}

    .c-btn.c-splash-select-location:not([disabled]):hover, .c-btn.c-splash-select-location:not([disabled]).active {
        text-decoration: none;
        background-color: #64B446;
        color: #134F33;
    }

@media (min-width: 992px) {
    .c-splash-location .c-splash-section-content {
        column-count: 3;
        margin-left: -20px;
    }
}

.c-splash-location .c-splash-option {
    display: inline-block;
    margin: 0px 20px 20px 0;
}

@media (min-width: 992px) {
    .c-splash-location .c-splash-option {
        display: block;
        margin-left: 20px;
    }
}

.c-splash-option {
    display: block;
    font-family: "Avenir LT W01_65 Medium1475532";
    font-size: 0.875rem;
    line-height: 16px;
    margin-bottom: 20px;
    color: #ABFC8D;
    transition: color 0.5s ease-in-out;
    cursor: pointer;
}

@media (min-width: 768px) {
    .c-splash-option {
        font-size: 1rem;
        line-height: 20px;
    }
}

@media (min-width: 1230px) {
    .c-splash-option {
        font-size: 1.125rem;
        line-height: 22px;
    }
}

.c-nav-splash .c-splash-option {
    color: #134F33;
}

.c-splash-option.selected, .c-splash-option:hover {
    color: #64B446;
}

.c-nav-splash .c-splash-option.selected, .c-nav-splash .c-splash-option:hover {
    color: #ABFC8D;
}

.c-splash-legal-text {
    overflow-y: auto;
    max-height: 340px;
    display: block;
    font-size: 0.875rem;
    line-height: 16px;
    font-family: "Avenir LT W01_45 Book1475508";
    color: #FFFFFF;
    color: white;
    padding-right: 10px;
}

@media (min-width: 768px) {
    .c-splash-legal-text {
        overflow-y: auto;
        max-height: 340px;
    }
}

.c-splash-legal-text strong, .c-splash-legal-text b {
    font-family: "Avenir LT W01_95 Black1475556";
}

.c-splash-legal-text > * {
    margin-bottom: 15px;
}

    .c-splash-legal-text > *:last-child {
        margin-bottom: 0;
    }

.c-splash-legal-compliance {
    display: block;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

@media (min-width: 992px) {
    .c-splash-legal-compliance {
        display: flex;
    }
}

.c-splash-legal-checkbox {
    font-family: "Avenir LT W01_95 Black1475556";
    color: #FFFFFF;
    font-size: 0.875rem;
    line-height: 16px;
}

.c-splash-legal-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 15px;
}

@media (min-width: 992px) {
    .c-splash-legal-buttons {
        margin-top: 0;
    }
}

.c-splash-legal-buttons .c-btn {
    margin-right: 15px;
}

    .c-splash-legal-buttons .c-btn:last-child {
        margin-right: 0;
    }

.c-splash-legal-btn {
    border: none;
}

.c-splash-copyright {
    display: block;
    margin-top: 15px;
    width: auto;
}

    .c-splash-copyright.c-footer-copyright p{
        font-size: 0.77rem;
    }

    @media (min-width: 768px) {
        .c-splash-copyright {
        margin-top: 30px;
    }
}

/*#endregion*/
/*#region c-splash-banner*/
.c-splash-banner {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #134F33;
}

.c-nav.open .c-splash-banner {
    display: none;
}

.c-splash-banner-content {
    display: block;
    text-align: right;
    line-height: 1;
    padding: 10px 0;
    font-size: 0;
}

.c-splash-banner-toggle {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-family: "Avenir LT W01_95 Black1475556";
    font-size: 0.75rem;
    line-height: 14px;
    color: #FFFFFF;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .c-splash-banner-toggle {
        font-size: 0.875rem;
        line-height: 16px;
    }
}

.c-splash-banner-toggle-location {
    display: block;
    color: #ABFC8D;
}

.c-splash-banner-toggle-action {
    display: block;
    padding-left: 10px;
    margin-left: 10px;
    border-left: 1px solid #FFFFFF;
}

.c-splash-select-container {
    display: block;
    margin-top: 30px;
}

.c-splash-nav {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .c-splash-nav {
        margin-top: 35px;
    }
}

.c-splash-nav-item {
    display: block;
    margin: 0 20px 20px 0;
    line-height: 1;
}

@media (min-width: 768px) {
    .c-splash-nav-item {
        margin-right: 30px;
    }
}

@media (min-width: 1230px) {
    .c-splash-nav-item {
        margin-right: 45px;
    }
}

.c-splash-nav-link {
    display: inline-block;
    font-family: "Avenir LT W01_95 Black1475556";
    text-decoration: none;
    color: #FFFFFF;
    font-size: 0.875rem;
    line-height: 16px;
    text-transform: uppercase;
    transition: color 0.5s ease-in-out;
}

@media (min-width: 768px) {
    .c-splash-nav-link {
        font-size: 1rem;
        line-height: 18px;
    }
}

.c-splash-nav-link:hover {
    color: #64B446;
}

/*#endregion*/
/*#region c-scrollbar*/
.c-scrollbar::-webkit-scrollbar {
    width: 7px;
}

.c-scrollbar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.c-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px;
}

/*.c-scrollbar::-webkit-scrollbar-thumb:hover {
    background: $scrollbar-thumb-hover;
}*/
/*#endregion*/


/*
    UTILITIES
    Utilities and helper classes with ability to override anything which 
    goes before in the triangle, eg. hide helper class.
*/
/******************************************* 
    UTILITIES
    Helper classes that you can add to force
    certain behaviour e.g. uppercase
    Also add any bootstrap overrides in here
********************************************/
/*
	Project Utilities
 
    Always use !important for everything declared here so that it supersedes specificity
*/
.u-left {
    text-align: left !important;
}

.u-center {
    text-align: center !important;
}

.u-center--mobile-only {
    text-align: center !important;
}

@media (min-width: 576px) {
    .u-center--mobile-only {
        text-align: left !important;
    }
}

@media (min-width: 576px) {
    .u-center--desktop-only {
        text-align: center !important;
    }
}

.u-right {
    text-align: right !important;
}

.u-left-mobile-only {
    text-align: left !important;
}

@media (min-width: 768px) {
    .u-left-mobile-only {
        text-align: right !important;
    }
}

.u-mobile-only {
    display: block !important;
}

@media (min-width: 576px) {
    .u-mobile-only {
        display: none !important;
    }
}

.u-mobile-only--inline {
    display: inline-block !important;
}

@media (min-width: 576px) {
    .u-mobile-only--inline {
        display: none !important;
    }
}

.u-web-only {
    display: none !important;
}

@media (min-width: 576px) {
    .u-web-only {
        display: block !important;
    }
}

.u-web-only--inline {
    display: none !important;
}

@media (min-width: 576px) {
    .u-web-only--inline {
        display: inline-block !important;
    }
}

.u-uppercase {
    text-transform: uppercase !important;
}

.u-lowercase {
    text-transform: lowercase !important;
}

.u-no-margin {
    margin: 0 !important;
}

.u-no-padding {
    padding: 0 !important;
}

.u-rel {
    position: relative !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.u-no-scroll {
    overflow: hidden;
}

.u-bold {
    font-weight: bold;
}

.u-light {
    font-weight: lighter;
}

.u-normal {
    font-weight: normal;
}

.nav-sprite {
    background-image: url("/assets/images/nav-sprite.png");
    background-repeat: no-repeat;
    display: block;
    background-size: 200px;
}

.sprite-icon-user {
    width: 23px;
    height: 26px;
    background-position: -2px -2px;
}

.sprite-icon-user-white {
    width: 23px;
    height: 26px;
    background-position: -30px -2px;
}

.sprite-logo {
    width: 195px;
    height: 63px;
    background-position: -2px -33px;
}

.sprite-logo-white {
    width: 195px;
    height: 63px;
    background-position: -2px -101px;
}

.contained {
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 576px) {
    .contained {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (min-width: 1230px) {
    .contained {
        padding-left: 0;
        padding-right: 0;
    }
}

.u-bg-white {
    background-color: #FFFFFF;
}

.u-bg-grey {
    background-color: #F8F8F8;
}

.u-white {
    color: #FFFFFF;
}

.slick-dots {
    position: relative;
    bottom: 0;
    line-height: 1;
    font-size: 0;
    width: auto;
    text-align: left;
}

    .slick-dots li {
        width: 12px;
        height: 12px;
        margin: 0;
        margin-right: 10px;
    }

        .slick-dots li button {
            width: 100%;
            height: 100%;
        }

            .slick-dots li button:before {
                width: 100%;
                height: 100%;
                color: transparent;
                opacity: 1;
                background-color: #ececec;
                font-size: 0;
                border-radius: 50%;
            }

        .slick-dots li.slick-active button:before {
            opacity: 1;
            background-color: #c2c2c2;
        }

        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
            background-color: #c2c2c2;
        }

.slick-slide:focus {
    outline: none;
}

.component-container h2 {
    margin-left: 15px;
    margin-bottom: 10px;
}

.component-container h3 {
    margin-left: 30px;
    color: #086132;
}

.control-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    margin-bottom: auto;
    margin-top: auto;
    width: 12px;
    height: 20px;
    cursor: pointer;
    z-index: 1000;
}

    .control-arrow:before, .control-arrow:after {
        content: '';
        display: block;
        height: 2px;
        width: 100%;
        transform: rotate(45deg);
        transform-origin: left center;
        background-color: #B3B3B3;
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto 0;
    }

    .control-arrow:after {
        transform: rotate(-45deg);
        /*transform-origin: top left;*/
        top: 2px;
    }

    .control-arrow.control-active:before, .control-arrow.control-active:after {
        background-color: #64B446;
    }

.control-next {
    right: 0px;
    top: 2px;
}

    .control-next:before, .control-next:after {
        transform-origin: right center;
    }

    .control-next:after {
        top: -2px;
    }

.u-bg-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.body-content {
    margin-top: 80px;
    /*transition: margin-top 0.5s ease-in-out;*/
}

@media (min-width: 992px) {
    .body-content {
        margin-top: 123px;
    }
}

/*
    Being animation
*/
[data-be_effect] {
    opacity: 0;
}

.animated[data-be_effect] {
    opacity: 1;
}

.animated {
    animation-duration: 1.5s;
}

.slick-cloned[data-be_effect] {
    opacity: 1;
}

.preventScrolling {
    height: 100%;
    overflow: hidden;
    /*position: fixed;
    width: 100%;*/
}

    .preventScrolling .c-footer {
        position: relative;
    }


/* SLICK */

.slick-prev:before, .slick-next:before {
    color: #4E9A33;
}


/* Sitecore Forms */

.field-validation-error {
    font-size: 0.8rem;
    color: red;
}

/* RolePicker */
.rolepicker{
    font-size: 0.8rem;
    background-color: green;
}

.rolepicker_opener_container{
    display: flex;
    flex-direction:row-reverse;
}

.rolepicker_inner {
    display: none;
}

/* #region Faux Check */

.faux-check {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    user-select: none;
    line-height: 20px;
}

/* Hide the browser's default checkbox */
.faux-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.faux-check.no-text {
    padding-left: 0;
}

    .faux-check.no-text input {
        width: 20px;
        height: 20px;
    }

/* Create a custom checkbox */
.faux-check-mark {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 15px;
    width: 15px;
    margin-top: auto;
    margin-bottom: auto;
    background-color: transparent;
    border: 1px solid #FFFFFF;
    transition: border-color 0.5s ease-in-out;
}

/* On mouse-over, add a grey background color */
.faux-check:hover input ~ .faux-check-mark {
    border-color: #ABFC8D;
}

/* When the checkbox is checked, add a blue background */
.faux-check input:checked ~ .faux-check-mark {
    border-color: #FFFFFF;
}

/* Create the faux-check-mark/indicator (hidden when not checked) */
.faux-check-mark:after {
    content: "";
    position: absolute;
    display: block;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* Show the faux-check-mark when checked */
.faux-check input:checked ~ .faux-check-mark:after {
    opacity: 1;
}

/* Style the faux-check-mark/indicator */
.faux-check .faux-check-mark:after {
    left: 6px;
    top: -6px;
    width: 4px;
    height: 14px;
    border: solid #ABFC8D;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* #endregion */

.splash .c-nav, .splash-banner .c-nav {
    background-color: #134F33;
}

.splash .c-splash-banner {
    display: none;
}

.splash .c-nav-toggler {
    display: none;
}

