/** NAVIGATION **/

#main-nav {
    position: sticky;
    top: 0;
    background-color: #fff;
}

#main-nav a {
    text-decoration: none;
}
nav {
    z-index: 1000;
    position: relative;
}
nav ul {
    list-style-type: none;
}

nav .lang {
    display: flex;
    margin: 0;
    padding-left: 0;
}

nav .lang.lang-desktop {
    min-width: 78px;
}

nav .lang-mobile {
    display: none;
}

nav .lang li {
    padding: 20px 0 !important;
}

nav .lang li > a {
    padding: 0 10px;
    color: var(--black);
    font-weight: 600;
}

nav .lang li.current-lang a {
    color: var(--green);
}

nav .lang li > a.current-lang{
    color: var(--green)
}

nav .lang li > a {
    border-right: 2px solid gainsboro;
}

nav .lang li:last-child  > a {
    border-right: none;
}

.border-nav {
    border-right: 2px solid gainsboro;
    padding-right: 10px;
}

nav .main-menu-wrapper  ul  li  a {
    color: var(--black);
    text-transform: none;
    font-weight: 600;
}

.nav-container {
    display: flex;
    justify-content: space-between;
}

.logo img {
    height: 35px;
    margin-right: 20px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
}

.wrapper-menu {
    display: flex;
}

.main-menu-wrapper ul {
    display: flex;
    margin: 0;
}

.main-menu-wrapper ul li {
    display: flex;
    padding: 20px;
    font-weight: 600;
    position: relative;
    align-items: center;
    justify-content: center;
}

.main-menu-wrapper ul.main-menu > li::after {
    content: '';
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--green);
}

.main-menu-wrapper ul.main-menu > li:hover:after,
.main-menu-wrapper ul.main-menu > li.active:after{
    opacity: 1;
}

.main-menu-wrapper ul .submenu {
    position: absolute;
    flex-direction: column;
    top: 100%;
    /*left: 0;*/
    padding-left: 0;
    min-width: 200px;
    background-color: var(--green);
    display: none;
    box-shadow: 2px 2px 5px rgba(0,0,0,.3);
}

@media all and (min-width: 992px) {
    .main-menu-wrapper ul .submenu {
        max-height: 70vh;
        /*overflow-y: auto;*/
    }
}



.main-menu-wrapper ul .submenu li {
    padding: 0;
}

.main-menu-wrapper ul .submenu li > a {
    color: #ffffff;
    padding: 15px 35px 15px 20px;
    width: 100%;
    background-color: var(--green);
    transition: .5s;
}

.main-menu-wrapper ul .submenu .inner-submenu li > a {
    color: var(--green);
    padding: 15px 20px;
    width: 100%;
    background-color: var(--lightgreen);
    transition: .5s;
}




.wrapper-menu ul li .nav-item-underline {
    top: 90%;
    height: 10%;
    left: 0;
    display: none;
    padding: 0;
    position: absolute;
    width: 100%;
    z-index: 1;
    background-color: var(--green);
}

/* menu item trigger */
.wrapper-menu ul.main-menu > li:hover > a {
    color: var(--green);
}
.wrapper-menu ul li:hover .nav-item-underline {
    display:block;
}

nav .nav-search {
    height: 100%;
    padding: 20px;
    display: flex;align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

nav .nav-search.active i {
    display: none;
}

nav .nav-search.active:before,
nav .nav-search.active:after {
    width: 20px;
    height: 2px;
    background-color: var(--black);
    content: '';
    position: absolute;
    transform: rotate(-45deg);
}

nav .nav-search.active:after {
    transform: rotate(45deg);
}

.mobile-menu-trigger {
    display: none;
    font-weight: 600;
    font-size: 1.3em;
}

.lang-mobile {
    display: none;
}

.nav-triggers {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.desktop-sub-menu-trigger {
    position: absolute;
    right: 15px;
}

@media (hover: hover) {

    .main-menu-wrapper ul.main-menu > li:hover > .submenu {
        display: flex;
    }

    nav .lang li > a:hover{
        color: var(--green)
    }

    .main-menu-wrapper ul .submenu li:hover > a {
        background-color: #0E391D;
    }

    .main-dropdown:hover > .inner-submenu {
        display:flex;
        top: 0;
        left: 100%;
    }

    .main-menu-wrapper ul .submenu .inner-submenu li:hover > a {
        color: #fff;
    }

    .main-menu-wrapper ul.main-menu > li:last-child > .submenu .main-dropdown:hover > .inner-submenu {
        left: unset;
        right: 100%;
    }

}

/** MAIN ARTICLE ELEMENT **/

.wwd-bottom-container {
    position: relative;
    padding-top: 0;
    padding-bottom: 150px;
}

.wwd-bottom-container .overlap {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 100px;
    width: 400px;
    background-color: white;
    -webkit-box-shadow: -1px 1px 26px 7px rgba(0,0,0,0.12);
    -moz-box-shadow: -1px 1px 26px 7px rgba(0,0,0,0.12);
    box-shadow: -1px 1px 26px 7px rgba(0,0,0,0.12);
}

.wwd-bottom-container .overlap .mini-img {
    background-image: url("../images/wwb2.png");
    background-position: center;
    background-size: contain;
    padding-top: 60%;
    width: 100%;
}

.wwd-bottom {
    display: flex;
}

.wwd-left {
    width: 25%;
}

.wwd-right {
    width: 75%;
    max-width: 1100px;
    padding-top: 40%;
    background-image: url("../images/wwb1.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position:50% 50%;
}


.wwd-bottom-container .overlap-btm {
    padding: 35px;
}

.wwd-bottom-container .hilight {
    text-transform: uppercase;
    background-color: var(--green) ;
    color: white;
    padding: 3px 10px;
    font-size: 0.8em;
    width: fit-content;
    font-weight: 600;
}

.wwd-bottom-container .overlap-btm p {
    font-weight: 500;
}

.wwd-bottom-container .article-item .article-content > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

/** RESOURCE LIBRARY **/

.resource-library .filters-section .wrapper {
    padding-top: 0;
    padding-bottom: 20px;
    margin-top: -20px;
}

.resource-library .filters-section {
    position: relative;
    z-index: 1;
}

.resource-library .post-slider {
    padding: 20px 0 0 0;
}

.resource-library .title {
    background-color: var(--lightgreen);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px;
}

.resource-library .title h1 {
    color: var(--green);
}

.filters-section .wrapper {
    min-height: 30px;
}

.filters-section * {
    color: white;
}

.filters-section h6 {
    margin: 0;
}

.filters-section .filters-and-x {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 5px 0 15px;
}

.filters-section .x-container {
    width: 20%;
    display: flex;
    justify-content: center;
}

.filters-section .filters-and-search {
    width: 100%;
}

.filters-section .filters-container {
    display: flex;
    padding-bottom: 20px;
}
.filters-section .filter-search-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid white;
}

.filters-section .filter-search-container input {
    padding: 5px 0;
    outline: none;
}

.filters-section input {
    background-color: var(--green);
    border: none;
}
.filters-section input {
    flex:1;
}

/* BLOG */

.blog .hero-cta-container {
    background-color: var(--lightgreenblog);
    min-height: 550px;
}

.feature-article-container {
    padding: 50px 0 50px;
}

.featured-article-image {
    width: 50%;
    max-width: 550px;
    margin: 0 0 0 auto;
    padding: 30px 2% 60px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;

}

.featured-article-content .hero-cta p.fp-text {
    font-size: .8em;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.featured-article-image img {
    width: 100%;

}

.ap-featured-event-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 30px;
}

.ap-featured-event-container .article-item {
    max-width: 400px;
    width: 100%;
}

.featured-article-content {
    width: 50%;
    margin: 0 auto 0 0;
    max-width: 550px;
    padding: 30px 2% 60px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.feature-article-container h1 a {
    text-decoration: none;
    transition: .2s;
}

.feature-article-container h1 a:hover {
    color: var(--darkgreen);
    text-decoration: none;
}

.featured-article-content.fa-no-image {
    width: 100%;
    margin: 0 auto;
    max-width: 1300px;
}

.featured-article-content .hero-cta h1 {
    color: #0E391D;
    margin: 0 0 15px;
    font-size: 2.2em !important;
}

.featured-article-content .hero-cta p {
    margin: 0 0 15px;
    color: #0E391D;
    font-weight: 400;
}



.blog-nav,
.hero + div.blog-nav{
    background-color: var(--green);
    min-height: 125px;
    width: 100%;
    /*margin-top: -75px !important;*/
    padding-top: 50px !important;

}

.blog-nav a {
    text-decoration: none;
}

.blog-nav .wrapper {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
}

.blog-nav .wrapper > div {
    width: 100%;
}

.blog-nav ul {
    padding: 50px 0 0;
    list-style: none;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin: 0;
}

.blog-nav ul li {
    cursor: pointer;
}

.blog-nav ul li a,
.blog-nav ul li span{
    color: #fff;
    font-weight: 600;
    padding: 0 0 30px;
    width: 100%;
    min-width: 100px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 1.2em;
    text-transform: uppercase;
}

.blog-nav ul li a:after,
.blog-nav ul li span:after{
    position: absolute;
    content: '';
    width: 100%;
    height: 8px;
    background-color: #D3E5D7;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: .5s;
}

.blog-nav ul li a:hover:after,
.blog-nav ul li a.active:after,
.blog-nav ul li.active a:after,
.blog-nav ul li span:hover:after,
.blog-nav ul li span.active:after,
.blog-nav ul li.active span:after{
    opacity: 1;
}


.blog-search-container input {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    padding: 10px 0;
    outline: none;
    display: none;
}

.blog-search-container input::placeholder {
    color: #fff;
    opacity: 1;
}

.blog-search-container input:-ms-input-placeholder {
    color: #fff;
}

.blog-search-container input::-ms-input-placeholder {
    color: #fff;
}

.article-container {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    margin: 0 -15px;
    flex-wrap: wrap;
}

.article-container .article-item {
    width: 33.3%;
}

.article-item {
    display: flex;
    flex-direction: column;

    padding: 15px;
}

.article-item > div {
    box-shadow: 1px 1px 10px 5px rgba(0,0,0,.1);
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.article-item.rl-article-item > div {
    box-shadow: none;

}

.article-item > div:after {
    content: '';
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background-color: #000;
    opacity: 0;
    transition: .2s;
}

.article-item:hover > div:after {
    opacity: 1;
}

.article-img {
    /*background-image: url("../images/pexels-mentatdgt-2173508.png");*/
    padding-top: 60%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.article-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    flex-grow: 1;
}

.article-content h4 {
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    font-family: "Source Sans Pro", sans-serif;
}

.article-content p {
    font-weight: 400;
    color: var(--black);
}

.article-content p.article-date {
    font-weight: 600;
}

.cat-tag {
    padding: 10px 0;
    position: relative;
}

.cat-tag p {
    color: var(--verylightgrey);
    font-size: .9em;
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: 600;
}

.article-item.ai-green > div {
    background-color: var(--lightgreenblog);
}

.article-item.ai-green:hover > div {
    background-color: var(--lightgreenblog);
}

.article-item.ai-green:hover h4,
.article-item.ai-feature:hover h4,
.article-item.ai-default:hover h4{
    color: var(--green);
}

.article-item.ai-green > div:after,
.article-item.ai-feature > div:after,
.article-item.ai-default > div:after{
    background-color: var(--green);
}



.article-item.ai-blue  > div {
    background-color: var(--lightblue);
}

.article-item.ai-blue:hover > div {
    background-color: var(--lightblue);
}

.article-item.ai-blue:hover h4 {
    color: var(--darkblue);
}

.article-item.ai-blue > div:after {
    background-color: var(--darkblue);
}

.article-item.ai-tan  > div {
    background-color: var(--tan);
}

.article-item.ai-tan:hover > div {
    background-color: var(--tan);
}

.article-item.ai-tan:hover h4 {
    color: var(--darktan);
}

.article-item.ai-tan > div:after {
    background-color: var(--darktan);
}

.article-item.ai-pink  > div {
    background-color: var(--lightpink);
}

.article-item.ai-pink:hover > div {
    background-color: var(--lightpink);
}

.article-item.ai-pink:hover h4 {
    color: var(--pink);
}

.article-item.ai-pink > div:after {
    background-color: var(--pink);
}

.ai-main-tag {
    padding: 2px 5px;
    background-color: var(--green);
    color: #fff;
    margin-bottom: 15px;
}

.ai-feature .article-content > div {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

.ai-feature .article-content {
    padding: 25px;
}

.ai-feature .article-content h4 {
    margin-bottom: 15px;
    color: var(--darkgreen);
    text-align: left;
}

.blog-wrapper {
    display: flex;
    align-items: stretch;
    min-height: 325px;
    flex-wrap: wrap;
}

.blog-content {
    width: calc(100% - 325px);
    border-right: 1px solid grey;
    padding-right: 5%;
}

.blog-title {
    margin-bottom: 50px;
    font-weight: 700;
}

.blog-home {
    color: var(--green);
    font-weight: 700;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20px;
}

.blog-home .fas {
    font-size: .8em;
    position: absolute;
    left: 0;
    transition: .2s;
    top: 8px;
}



.blog-home:hover .fas{
    left: -10px;
}

.back-cta {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 30px;
}

.blog-image {
    width: 100%;
    margin-bottom: 10px;
}

.article-image {
    margin-bottom: 40px;
}

.article-image p {
    margin-bottom: 0;
    font-size: .95rem;
}

.article-image p a {
    color: inherit;
    text-decoration: underline;
    font-weight: inherit;
}

.blog-side-bar {
    width: 325px;
    padding-left: 5%;
}

.blog-related-posts {
    background-color: #0E391D;
}

.blog-divider {
    width: 100%;
    height: 1px;
    background-color: grey;
    margin: 30px 0;
}

.blog-date {
    color: var(--green);
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-author {
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-author span {
    color: var(--green);
}

.blog-related-posts h2 {
    color: #fff;
}

#blog-post-subscribe-trigger {
    width: 40px;
    transition: .5s;
    cursor: pointer;
    opacity: 1;

}

.btn-sub:focus {
    outline: none;
}

.cta-arrow {
    cursor: pointer;
}

#blog-post-subscribe-trigger:hover{
    opacity: .8;
}

#blog-post-subscribe-trigger.show {
    transform: rotate(90deg);
}

#blog-post-subscribe {
    max-height: 0;
    display: flex;
    transition: .5s;
    overflow: hidden;
}

#blog-post-subscribe.show {

    max-height: 500px;
}

#blog-post-subscribe form {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
    padding: 20px 0;
}

.subscribe-divider {
    width: 100%;
    margin-bottom: 20px;
}

.subscribe-divider label {
    font-weight: 600;
    font-size: .8em;
    text-transform: uppercase;
}

.subscribe-divider input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #606060;
    border-radius: 0;
    outline: none;
}

.subscribe-divider.info-language {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

footer .subscribe-divider.info-language {
    justify-content: flex-start;
}

.blog-related-topics  {
    font-size: 1.5em;
    color: grey;
    font-weight: 700;
}

.blog-related-topics h4,
.blog-subscribe h1{
    font-weight: 700;
}

.blog-related-topics a {

    color: var(--green);
}
.blog-related-topics a:hover {
    text-decoration: underline;
}


    /* english/french checkbox style */
.subscribe-divider .container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.subscribe-divider .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.subscribe-divider .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #EAF4EC;
}

/* When the checkbox is checked, add a blue background */
.subscribe-divider input:checked ~ .checkmark {
    background-color: green;
}

/* Create the checkmark/indicator (hidden when not checked) */
.subscribe-divider .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.subscribe-divider input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.subscribe-divider .checkmark:after {
    left: 6px;
    top: 1px;
    width: 8px;
    height: 15px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.share-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.share-container p {
    margin: 0 15px 0 0;
    font-weight: 700;
}


.a2a_menu {
    border-radius: 0 !important;
}

.a2a_menu svg path {
    fill: #2b2727 !important;
}

.a2a_menu a.a2a_i:visited, .a2a_menu a.a2a_more,
.a2a_menu a span,
.a2a_menu a.a2a_i,
.a2a_menu a{
    color: #2b2727 !important;
}
.a2a_menu .a2a_i:hover svg path,
.a2a_menu a:hover,
.a2a_svg:hover svg path,
.a2a_more:hover{
    fill: var(--green) !important;
    color:var(--green) !important;
}

.addtoany_list a:hover img,
.addtoany_list a:hover span {
    opacity: 1 !important;
}

.filters-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.filters-container .custom-select {
    width: 33%;
}

.article-slider .slick-track
{
    display: flex !important;
}

.article-slider .slick-slide
{
    height: inherit !important;
}

.slick-arrow {
    position: absolute;
    top: -65px;
    right: 0;
    cursor: pointer;
    transition: .2s;
}

.article-slider .arrow-right.slick-arrow:hover {
    right: -10px;
}

.article-slider .arrow-left.slick-arrow:hover {
    right: 80px;
}

.arrow-left.slick-arrow {
    right: 70px;
}

.article-slider .slick-list {
    overflow: visible;
    clip-path: inset( -100vw -100vw -100vw 0 );
}

.article-slider .slick-track {
    margin: 0 auto 0 0;
}

.article-slider-container {
    margin-bottom: 35px;
    opacity: 1;
    transition: .2s;
}

.article-slider-container.as-loading {
    opacity: 0;
}

.acf-block-preview .article-slider-container.as-loading {
    opacity: 1;
}

.acf-block-preview .article-slider-container.as-loading .article-slider {
    max-width: 100%;
    overflow-x: auto;
    flex-wrap: wrap;
}

.acf-block-preview .article-slider-container .article-slider .article-item {
    width: 33.3%;
}

.article-slider-header h2 {
    margin-bottom: 20px;
}

.view-more-link {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-transform: uppercase;
}

.view-more-link:hover {
    text-decoration: none;
}

.green-right-arrow {
    transition: .5s;
}

.article-slider {
    left: -15px;
    margin-bottom: 5px;
}

.article-slider .article-item {
    height: 100%;
}

.article-item:hover {
    text-decoration: none;
}

.slick-slide > div {
    height: 100%;
}


.filter-list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    color: #fff;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-list-wrapper  {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.filter-list-wrapper >div {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.filter-list-wrapper >div > span {
    margin-right: 20px;
    font-weight: 500;
    padding: 5px;
    color: #9D9D9D;
}

.resources-clear {
    color: #0E391D;
    font-weight: 700;
    cursor: pointer;
}

.resources-clear:hover {
    color: var(--green)
}

.filter-list > div {
    color: #0E391D;
    font-weight: 400;
    cursor: pointer;
    padding: 5px 0;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid  #fff;
}

.filter-list > div:hover {
    color: #0E391D;
    border-bottom: 1px solid  #0E391D;
}

.fi-close {
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    bottom: 1.5px;
    top: 1px;
}

.fi-close:before,
.fi-close:after {
    width: 100%;
    height: 1px;
    background-color: #0E391D;
    content: '';
    position: absolute;
}

.filter-list > div:hover .fi-close:before,
.filter-list > div:hover .fi-close:after {
    background-color: #0E391D;
}

.fi-close:after {
    transform: rotate(90deg);
}

.filter-search-trigger {
    cursor: pointer;
}

#resources-filter .filter-search-trigger .x-btn {
    display: none;
}

.res-submit {
    border: none;
    background-color: transparent;
    cursor: pointer;
    outline: none;
}

.fa-search{ transition: .2s}

.res-submit:hover .fa-search{
    color: var(--darkgreen);
}

.filter-search-trigger:hover .fa-search{
    color: var(--darkgreen);
}

#resources-filter .filter-search-container {
    display: none;
}

#resources-filter.show-search .filter-search-container {
    display:flex;
}

#resources-filter.show-search .filter-search-trigger .x-btn {

    display: flex;
}

#resources-filter .filter-search-trigger .fa-search{
    display: block;
    margin-top: 15px;
}

#resources-filter.show-search .filter-search-trigger .fa-search{

    display: none;
}

.banner-header-container {
    min-height: 250px;
    background-color: #D3E5D7;
}

.banner-header-container.tag-header-container {
    min-height: unset;
}

.banner-header-container h1 {
    text-align: center;
    color: var(--green);
}

.banner-divider {
    background-color: var(--green);
    position: sticky;
    top: 45px;
    z-index: 3;
}

.banner-divider:before {
    content: '';
    width:   100%;
    height: 75px;
    background-color: var(--green);
    position: absolute;
    top: -40px;
    left: 0;
    transform: skewY(2deg);
    z-index: 0;

}

.filters-section .wrapper {
    padding: 25px 5% 60px;
}

.filters-section h6 {
    font-family: "Source Sans Pro", sans-serif;
}

.rt-additional-info {
    margin-bottom: 20px;
}

.rl-nav-container {
    background-color: var(--green);
}

.rl-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    list-style: none;
    margin: 0;

}

.rl-nav li {
    padding: 20px 30px;
    color: #fff;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    font-weight: 400;
    cursor: pointer;
}
.rl-nav-container .wrapper {
    padding-top: 0;
    padding-bottom: 0;
}


.rl-nav li.active {
    border-bottom: 5px solid #EAF4EC;
}

.rl-nav.rl-nav-bottom li.active {
    border-top: 5px solid #EAF4EC;
    border-bottom: 5px solid transparent;
}

.blog-related-resources {

}

.rt-cta p {
    margin: 0;
    font-weight: 600;
}

.rt-event-cta p span {
    color: #969696;
}

.rt-cta-description {
    color: #969696;
}

.contact-info-container {
    margin-bottom: 50px;
}

.rt-cta .btn-cta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-item.hide {
    display: none;
}

.wrapper.rl-wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
}

.rl-date {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--green);
}

.wwd-bottom-container .overlap .article-item {
    padding: 0;
}

.search-header {
    background-color: var(--lightgreen);
}

.search-header h1 {
    text-align: center;
    color: var(--green);
}

.search-results-container a:hover {
    text-decoration: underline;
}




.ai-subscribe > div {
    padding: 20px 35px 20px 25px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    cursor: pointer;
    min-height: 400px;
}
.ai-subscribe > div > div {
    width: 100%;
}
.ai-subscribe.ai-display > div {
    background-color: var(--darkgreen);
    cursor: pointer;
    position: relative;
}

.ai-subscribe.ai-display > div p,
.ai-subscribe.ai-display > div h2 {
    color: #fff;
}

.ai-subscribe > div p {
    font-weight: 400;
}

.ai-subscribe > div h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.ai-subscribe.ai-display .green-right-arrow-r {
    padding-left: 0;
    transition: .2s;
    height: 30px;
}

.ai-subscribe.ai-display:hover .green-right-arrow-r {
    padding-left: 20px;
}

.ai-subscribe .ais-subscribe {
    display: flex;
}

.ai-subscribe.ai-display .ais-subscribe {
    display: none !important;
}

.ai-subscribe.ai-display .ais-arrow {
    display: block;
}

.ai-subscribe .ais-arrow {

    display: none;
}

.article-item:hover.ai-subscribe  > div:after {
    display: none;
}

.ai-subscribe button {
    margin-bottom: 0;
}

.social-media-container {
    margin-top: 30px;
    margin-bottom: 15px;
}

.social-media-container a {
    color: var(--black);
}

.social-media-container a:hover {
    text-decoration: none;
    color: var(--green);
}

.social-media-container i {
    padding-right: 20px;
}

.footer-nav {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.footer-nav li {
    padding-left: 20px;
}

.footer-nav li a {
    text-transform: uppercase;
}

.blog-home {
    text-transform: uppercase;
}

.article-container-single .article-item {
    width: 100%;
}

.article-container-single .article-item > div{
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
}

.article-container-single .article-item > div .article-img {
    width: 50%;
    padding-top: 30%;
}

.article-container-single .article-item > div .article-content {
    width: 50%;
}

.article-container-double,
.article-container-single {
    margin-left: -15px;
    margin-right: -15px;
}

.article-container-double {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.article-container-double .article-item > div .article-img {
    padding-top: 50%;
}

.article-container-double .article-item {
    width: 50%;
}

.blog-fsc {
    width: 100%;
    display: none;
    padding-top: 30px;
    margin-bottom: 30px;
/*    padding-left: 35px;
    padding-right: 35px;*/

}

.blog-fsc.active {
    display: block;
}

.blog-fsc form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #fff;

}

.blog-fsc input[type=search] {
    width: 100%;
    color: #fff;
    background-color: transparent;
    border: none;
    padding: 5px 0;
    outline: none;
    font-size: 1.2em;
}

.blog-fsc  .fa-search {
    color: #fff;
}

#blog_search.active .fa-search {
    display: none;
}

#blog_search .blog-search-close {
    display:none;
}

#blog_search.active .blog-search-close {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    min-width: unset;
    transform: rotate(45deg);

}

#blog_search.active .blog-search-close:before,
#blog_search.active .blog-search-close:after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
}

#blog_search.active .blog-search-close:after {
    transform: rotate(90deg);
}

#blog_search:hover span {
    color: var(--darkgreen) !important;
}

#blog_search:hover span:after,
#blog_search.active span:after{
    color: var(--darkgreen) !important;
    opacity: 0 !important;
}

#blog_search.active:hover .blog-search-close:before,
#blog_search.active:hover .blog-search-close:after {
    background-color: var(--darkgreen);
}

.blog-fsc input::placeholder {
    color: #fff;
    opacity: 1;
}

.blog-fsc input:-ms-input-placeholder {
    color: #fff;
}

.blog-fsc input::-ms-input-placeholder {
    color: #fff;
}

span a {
    color: inherit;
}

span a:hover {
    color: inherit;
}

.rt-additional-info img {
    max-width: 100%;
}

.input-container label {
    font-weight:700;
    font-size:.8em;
}

.input-container input {
    border: none;
    border-bottom: 1px solid #000;
    width: 100%;
    border-radius: 0;
}

.input-container textarea {
    border: 1px solid #000;
    width: 100%;
    padding: 5px;
    border-radius: 0;
}

.input-container {
    margin-bottom: 20px
}

.input-container input::placeholder {
    font-style: italic;
    opacity: 1;
}

.input-container input:-ms-input-placeholder {
    font-style: italic;
}

.input-container input::-ms-input-placeholder {
    font-style: italic;
}

/** FOOTER **/

a.social i.fa {
    color: var(--black);
}

footer {
    background-color: var(--lightgreen);
}

footer .footer-top {
    display: flex;
    justify-content: space-between;
}

footer .footer-top .left,
footer .footer-top .right
{
    width: 50%;
    padding: 20px 3vw;
}

footer .footer-top .left {
    padding-left: 0;
}
footer .footer-top .right {
    padding-left: 0;
}

footer .footer-top .right i {
    padding-right: 20px;
    cursor: pointer;
}

footer .footer-top .email {
    text-transform: none;
    font-weight: 400;
}

footer .footer-top h3 {
    margin-top: 0;
    color: var(--green);
}

footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 10px 3% 25px;
}

footer hr {
    margin-bottom: 1em;
}

div {
    box-sizing: border-box;
}

footer .form-subscribe ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #BFBFBF;
    opacity: 1; /* Firefox */
}

#trigegr-form1 {
    cursor: pointer;
}

.form-info-subscribe {
    margin-bottom: 40px;
}

footer .form-subscribe {
    border-width: 2px;
    font-weight: 550;
    padding: 10px 0;
    border-radius: 1px;
}


footer .form-subscribe .eng,
footer .form-subscribe .fr
{
    font-weight: 300;
}

footer .form-subscribe .info {
    line-height: 1.15;
    border: none;
    border-bottom: 1px solid #606060;
    border-radius: 0;
    margin: 0 0 20px;
    width: 100%;
    outline: none;
    background-color: transparent;
    padding: 5px 0;
    font-family: "Open Sans", sans-serif;
    font-weight: 345;

}

footer .info-language {
    display: flex;
}

footer .info-language .language-right {
    display: flex;
    flex-direction: column;
    padding-left: 80px;
}

footer .info-language .language-right span {
    padding-left: 15px;
}

.footer .form-subscribe .btn-sub button {
    margin-top:0;
}

/* english/french checkbox style */
footer .container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
footer .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
footer .checkmark,
footer .subscribe-divider .checkmark{
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
footer .container input:checked ~ .checkmark {
    background-color: green;
}

/* Create the checkmark/indicator (hidden when not checked) */
footer .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
footer .container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
footer .container .checkmark:after {
    left: 6px;
    top: 1px;
    width: 8px;
    height: 15px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/** SEARCH **/

.search-container.show {
    display: block;
}

.mobile-search-container {
    display: none;
}

.search-container {
    position: fixed;
    top: 0;
    padding: 20px 0 50px;
    width: 100%;
    left: 0;
    background-color: var(--green);
    z-index: 300;
    display: none;
}

.search-container form,
.mobile-search-container form{
    position: relative;
    width: 1300px;
    max-width: 90%;
    margin: 10px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #fff;
}

.search-container form input,
.mobile-search-container form input{
    width: 100%;
    height: 50px;
    padding: 0 3px;
    display: flex;align-items: center;
    justify-content: flex-start;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    outline: none;
    background-color: transparent;
    font-size: 1.5em;
    font-weight: 300;
    color: #fff;
    font-style: italic;
}

.mobile-search-container form input {
    font-size: 1em;
}

.search-container form i,
.mobile-search-container form i {
    color: #fff;
}

.search-container button,
.mobile-search-container button{
    box-shadow: none;
    border: none;
    height: 50px;
    width: 50px;
    outline: none;
    cursor: pointer;
    margin-left: 20px;
    background-color: transparent;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 0;
}

.autocomplete-suggestions {
    width: 100% !important;
    left: 0 !important;
    background-color: var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border:none;
    box-shadow: none;
    /*max-height: 60vh;*/
    padding: 0;
}

.as-wrapper {
    max-height: 50vh;
    overflow: auto;
    /*margin-bottom: 20px;*/
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}

.autocomplete-suggestions > div > div  {
    max-width: 1300px;
    width: 90%;
    padding: 10px;
}

.autocomplete-suggestions > div > div a {
    color: #fff;
    font-weight: 300;
    font-size: 1.1em;
}

.autocomplete-suggestions > div a:hover {
    text-decoration: underline;
}

.autocomplete-suggestions.search-resources,
.autocomplete-suggestions.search-blog{
    margin-top: -20px;
}

.autocomplete-suggestions.search-resources > div > div,
.autocomplete-suggestions.search-blog > div > div{
    padding: 10px 5%;
}

.autocomplete-suggestions.search-blog > div > div {
    padding: 10px 5.5%;
    max-height: 45vh;

}

.search-container input::placeholder,
.mobile-search-container input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1; /* Firefox */
}

.search-container input:-ms-input-placeholder,
.mobile-search-container input:-ms-input-placeholder{ /* Internet Explorer 10-11 */
    color: #fff;
}

.search-container input::-ms-input-placeholder,
.mobile-search-container input::-ms-input-placeholder{ /* Microsoft Edge */
    color: #fff;
}

.search-container input::-webkit-search-cancel-button,
.mobile-search-container input::-webkit-search-cancel-button{
    display: none;
}

.search-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 100;
    display: none;
}

.search-overlay.show {
    display: block;
}

.slanted-top-cta h1 {
    margin-bottom: 25px;
    font-size: 2.6em;
}

.page-not-found-header-wrapper {
    background-color: var(--lightgreen);
}

.page-not-found-header-wrapper h1 {
    color: var(--green);
}

.mobile-filter-header {
    display: none;
    text-transform: uppercase;
}

@media all and (max-width: 992px) {

    .wrapper-menu {
        display: none;
    }

    .logo {
        width: unset;
        padding-left: 0;
    }

    .nav-container {
        min-height: 80px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
    }

    .mobile-menu-trigger {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-trigger span {
        opacity: 1;
        transition: .2s;
    }

    .main-nav.open .mobile-menu-trigger span {
        opacity: 0;
    }

    .main-nav.open .mobile-menu-trigger {
        min-height: 80px;
        min-width: 50px;
    }

    .mobile-menu-trigger {
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        min-height: 80px;
    }

    .main-nav.open .mobile-menu-trigger {
        border-bottom-color: var(--green);
    }

    .mobile-menu-trigger:before,
    .mobile-menu-trigger:after {
        transition: .2s;
        opacity: 0;
        content: '';
        width: 20px;
        height: 2px;
        position: absolute;
        transform: rotate(0deg);
        background-color: var(--darkgreen);
    }

    .main-nav.open .mobile-menu-trigger:before,
    .main-nav.open .mobile-menu-trigger:after{
        opacity: 1;
    }

    .main-nav.open .mobile-menu-trigger:before {
        transform: rotate(-45deg);
    }

    .main-nav.open .mobile-menu-trigger:after {
        transform: rotate(45deg);
    }

    .nav-triggers {
        min-height: 80px;
    }

    .main-nav {
        border-bottom: 1px solid rgba(0,0,0,.1);
    }

    #main-nav.open .wrapper-menu {
        display: flex;
        position: fixed;
        left: 0;
        width: 100%;
        min-height: calc(100vh - 80px);
        top: 80px;
        z-index: 100000;
        background-color: var(--green);
        flex-direction: column;
    }

    #main-nav.open .main-menu {
        display: flex;
        flex-direction: column;
        padding: 0 0 30px;
    }

    #main-nav.open .main-menu-wrapper ul li a {
        color: #fff;
    }

    #main-nav .main-menu-wrapper ul.submenu > li > a {
        padding: 15px 0;
        font-weight: 500;
    }

    .main-menu-wrapper ul .submenu .inner-submenu li > a {
        color: var(--green);
        padding: 15px 20px !important;
        width: 100%;
        background-color: transparent;
        transition: .5s;
        font-weight: 500;
    }

    .main-menu-wrapper ul .submenu li > a {
        background-color: var(--darkgreen) !important;
    }

    .main-menu-wrapper ul.main-menu > li.current-menu-item > a,
    .main-menu-wrapper ul.main-menu > li.current_page_ancestor > a{
        color: var(--darkgreen) !important;
    }

    .main-menu-wrapper .main-menu .submenu .main-dropdown.submenu-open >  a {
        color: var(--green) !important;
    }

    .main-menu .main-dropdown.submenu-open {
        background-color: var(--darkgreen);
    }

    .lang-desktop {
        display: none !important;
    }

    nav .lang-mobile {
        display: flex;
        margin-right: 25px;

    }

    .nav-search {
        display: none !important;
    }

    .main-menu-wrapper ul.submenu > li.current-menu-item > a {
        position: relative;
    }

    .main-menu-wrapper ul.submenu > li.current-menu-item > a:before {
        content: url("../images/white-arrow.svg");
        position:absolute;
        left: -5px;
    }
    .desktop-sub-menu-trigger {
        display: none;
    }

    .menu-main-menu-container{
        max-height: calc(100vh - 131px);
        overflow-x: auto;
    }

    .main-menu-wrapper ul .submenu {
        width: 100%;
    }


    .sub-menu-trigger {
        height: 40px;
        width: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 20px;
    }

    .sub-menu-trigger:before,
    .sub-menu-trigger:after {
        content: '';
        width: 50%;
        height: 3px;
        background-color: #fff;
        position: absolute;
    }

    .sub-menu-trigger:after {
        transform: rotate(90deg);
    }

    .sub-menu-trigger.open:after,
    .submenu-open > .sub-menu-trigger:after{
        transform: rotate(0);
    }

    .sub-menu-trigger.open + .submenu,
    .main-menu-wrapper ul .submenu-open > .submenu{
        display: flex;
        position: relative;
        /*top: 10px;*/
        flex-direction: column;
    }

    .submenu .sub-menu-trigger {
        right: 0;
    }

    .submenu .sub-menu-trigger {
        height: 30px;
        width: 30px;
        right: 0;
    }

    .submenu .sub-menu-trigger:before,
    .submenu .sub-menu-trigger:after {
        height: 1px;
    }

    .submenu .sub-menu-trigger {
        right: 0;
        top: 12px;
    }

    .main-menu-wrapper  ul > li {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    #main-nav .main-menu-wrapper ul li.main-level-dropdown.submenu-open > .submenu {
        border-top: 1px solid var(--green);
        margin-top: 15px;
    }

/*    .main-menu-wrapper ul > li {
        justify-content: center;
    }*/

    .main-menu-wrapper ul .submenu {
        box-shadow: none;
    }

    footer .footer-top .left,
    footer .footer-top .right {
        width: 100%;
    }

    footer .footer-top {
        flex-wrap: wrap;
    }

    footer .footer-top .left {
        width: 100%;
    }

    footer .footer-top .right {
        width: 100%;
    }

    .hero .hero-text {
        flex-direction: column;
        width: 100%;
        padding: 70px 5% 0;
    }

    .hero .hero-cta-container {
        display: block;
    }

    .hero-img.col-50 {
        width: 100%;
    }

    .hero-img {
        padding-top: 100%;
        background-size: cover;
    }

    .symbol-section.bg-darkgreen .wrapper {
        margin-top: 400px;
    }

    .wrapper.what-we-do .wwd-bottom-container {
        padding: 5px 0;
    }

    .symbol-section.bg-darkgreen .wrapper {
        padding: 90px 5%;
    }

    .symbol-section .shadow {
        top: -20px;
        left: 10px;
    }

    .symbol-section .text-container {
        padding: 100px 30px 70px;
    }

    .symbol-section-container .symbol {
        bottom: -50px;
        left: -25%;
        height: 200px;
        width: 200px;
    }

    .symbol-section {
        background-size: 250px 250px;
    }

    .wwd-bottom-container .overlap {
        position: relative;
        margin: 0;
        width: 80%;
        max-width: 400px;
        left: 10px;
        margin-top: -50px;
    }

    .wwd-bottom {
        display: block;
    }

    .symbol-section.bg-darkgreen .wrapper {
        margin-top: 0;
    }

    .wwd-bottom-container {
        display: flex;
        flex-direction: column-reverse;
    }

    .wwd-right {
        width: 100%;
        padding-top: 60%;
    }

    .circles-and-text .ct-content {
        width: 100%;
    }

    .circles-and-text .ct-image {
        max-width: 250px;
        width: 80%;
        padding: 0;
        margin-bottom: 25px;
    }

    .circles-and-text .ct-content p {
        text-align: left;
    }

    .wrapper.circles-and-text {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .circles-and-text.ct-right,
    .circles-and-text.ct-left{
        flex-direction: column-reverse;
    }

/*    .circles-and-text.ct-right .ct-image {
        padding: 0;
        margin-bottom: 20px;
    }*/

    .circles-and-text .ct-image {

    }

    .wrapper.circles-and-text {
        margin-bottom: 50px;
    }

    .slick-arrow {
        height: 20px;
        top: -48px;
    }
    .arrow-left.slick-arrow {
        right: 40px;
    }

    .article-slider-header h2 {
        max-width: calc(100% - 100px);
        font-size: 1.3em;
    }
    .call-to-action a {
        padding: 40px 5% !important;
        width: 100% !important;
    }

    .call-to-action a {
        border-bottom: 1px solid #2E814C;
    }

    .call-to-action a:last-child {
        border-bottom: none;
    }

    .quote-section .quote-container {
        padding: 0;
    }

    .symbol-section-container .symbol-right {
        height: 200px;
        width: 200px;
        bottom: -50px;
        right: -25%;
    }

    .quote-section.bg-green .wrapper.circles-and-text {
       margin-bottom: 0;
    }

    .article-container .article-item {
        width: 100%;
    }

    .article-content p {
        word-break: break-word;
    }

    .acc-header {
        padding: 10px 15px;
    }

    .acc-header h3 {
        font-size: 1.6em;
    }

    .acc-header > div {
        padding: 15px 0 25px;
    }

    .acc-header .acc-close {
        height: 20px;
        width: 20px;
    }

    .acc-2 .acc-header h3 {
        font-size: 1.3em;
        width: calc(100% - 30px);
    }

    .acc-2 .acc-header .acc-close {
        height: 16px;
        width: 16px;
    }

    .filters-section .filters-and-x {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .filters-and-search {
        width: 100%;
    }

    .filters-container {
        width: 100%;
        align-items: flex-start;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .filters-container .custom-select {
        width: 100%;
        border-bottom: 1px solid #fff;
        margin-bottom: 20px;
    }

    .filter-search-trigger.x-container {
        position: absolute;
        top: -10px;
        right: 3vw;
        width: 40px;
        display: none;
    }

    .filter-list-wrapper > div:first-child {
        flex-direction: column;
    }

    .filter-list {
        flex-direction: column;
    }

    .filter-list > div {
        margin: 0;
    }

    .filter-list-wrapper >div > span {
        margin-bottom: 15px;
    }

    .filter-list-wrapper >div > span {
        padding: 0;
    }

    .filters-and-search {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
    }

    .giant-bg-img-section .slanted-top-cta {
        width: 100%;
        max-width: unset;
        padding: 80px 5% 40px;
        margin-left: 0;
    }

    .slanted-top-cta h1 {
        font-size: 2em;
    }

    .feature-article-container > div {
        width: 100%;
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .feature-article-container > div:first-child {
        padding-top: 0;
        padding-bottom: 0;
    }

    #resources-filter > h6 {
        display: none;
    }

    .hero {
        min-height: 500px;
        color: unset;
        position: relative;
        /*  padding: 200px 0;*/
        overflow: visible;
        z-index: 2;
        -webkit-clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
    }

    .hero h1 {
        font-size: 2.4em !important;
    }

    .blog-nav ul {
        display: flex;
        flex-direction: column;
    }

    .blog-nav ul li {
        margin-bottom: 20px;
    }

    .full-bg .hero-cta-container .wrapper {
        margin-top: 0;
    }
    .blog-content {
        width: 100%;
        padding-right: unset;
        border-right: none;
        padding-bottom: 40px;
        margin-bottom: 40px;
        border-bottom: 1px solid grey;
    }

    .blog-side-bar {
        width: 100%;
        padding-left: unset;
    }

    .input-container textarea {
        height: 150px;
    }

    .banner-divider {
        position: relative;
        top: 25px;
        margin-bottom: 45px;
    }

    .banner-header-container {
        min-height: 150px;
    }

    #resources-filter .filter-search-container {
        display: flex;
    }

/*    .article-slider .slick-slide {
        height: 100% !important;
    }

    .slick-slide > div {
        height: unset;
    }*/

    .mobile-filter-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin: 20px 0;
    }

    .mobile-filter-menu {
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .mobile-filter-menu:before,
    .mobile-filter-menu:after{
        width: 100%;
        height: 2px;
        background-color: #fff;
        position: absolute;
        content: '';
    }

    .mobile-filter-menu:after {
        transform: rotate(90deg);
    }

    .mobile-filter-menu.open:after {
        transform: rotate(0);
    }

    .filters-section  .filters-and-search {
        display: none;
    }

    .filters-section  .filters-and-search.open {
        display: flex;
        margin-bottom: 20px;
    }

    .select-items div, .select-selected {
        padding: 8px 0;
    }

    .blog-nav ul {
        padding-top: 0;
    }

    #blog_search {
        display: none;
    }

    .blog-fsc {
        display: flex;
        margin-bottom: 40px
    }

    .mobile-filter-blog-header {
        color: #fff;
        margin-top: 30px;
        padding-bottom: 20px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .blog-open .mobile-filter-blog-header {
        border-bottom: 1px solid var(--lightgreen);
    }
    .blog-fsc input[type=search] {
        font-size: 1em;
    }


    .blog-nav ul li span,
    .blog-nav ul li a{
        font-size: .9em;
        padding: 0;
        justify-content: flex-start;
    }

    .blog-nav ul li.active span,
    .blog-nav ul li.active a{
        color: var(--darkgreen);
    }

    .blog-nav ul li a:after, .blog-nav ul li span:after {
        display: none;
    }

    .blog-fsc {
        padding-top: 0;
    }

    .blog-nav ul,
    .blog-nav .blog-fsc{
        display: none;
    }

    .blog-nav .blog-open ul,
    .blog-nav .blog-open .blog-fsc{
        display: flex;
    }
}

.as-wrapper {
    /*padding-bottom: 10px;*/
}

@media all and (max-width: 992px) {
    .autocomplete-suggestions {
        justify-content: flex-start;
        max-height: calc(100vh - 131px);
        /*min-height: 200px;*/
    }
   .mobile-search-container {
       display: flex;
   }

   .autocomplete-suggestions.search-resources {
       max-height: 250px;
   }
}

.qtip.qtip-default {
    border-radius: 0;
    background-color: var(--lightgreen);
    border: 0;
    font-size: 1em;
    padding: 5px;
    color: var(--black);
    line-height: 1.3;
    z-index: 1;
}

/*.qtip.qtip-default:before {
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: -25px;
    left: 50%;
    margin-left: -25px;
    background: var(--lightgreen);
    transform: rotate(45deg);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}*/

.qtip.qtip-default:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    box-shadow: 0px 0px 10px #b2b2b2;
    bottom: -8px;
    left: calc(50% - 8px);
    background: var(--lightgreen);
    transform: rotate(45deg);
    z-index: -2;
}

.qtip.qtip-default:before {
    content: "";
    width: 60px;
    height: 30px;
    position: absolute;
    background: var(--lightgreen);
    left: calc(50% - 30px);
    bottom: 0;
    z-index: -1;
}

.qtip-tip {
    display: none !important;
}

.tooltipsincontent {
    border: none !important;
}