:root {
    --green: #8c9e3b;
    --olive: #717a07;
    --light-olive :#8b9426;
    --cream: #f7ead9;
    --deep-cream: #f8dbb3;
    --linen: #fcf8f3;
    --black: #0f0f0f;
    --light-grey: #f1f1e6;
    --grey: #747474;
    --dark-grey: #666666;
    --white: #ffffff;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
    font-family: "Buenard", serif;
    margin-top: 0;
    margin-bottom: 1.2rem;
}

h1, .h1,
h2, .h2,
h4, .h4 {
    font-weight: 400;
}

h3, .h3,
h5, .h5,
h6, .h6 {
    font-weight: 700;
}

h1, .h1 {
    font-size: 2.25rem;
}

h2, .h2 {
    font-size: 1.75rem;
    margin-bottom: 3.125rem;
}

h3, .h3 {
    font-size: 1.5rem;
}

h4, .h4 {
    font-size: 1.875rem;
}

h5, .h5 {
    font-size: 1.6rem;
}

h6, .h6 {
    font-size: 1.2rem;
}
@media (min-width: 768px) {
    h2, .h2 {
        font-size: 2.4rem;
    }
}

body {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.2rem;
    color: var(--black);
}

.small {
    font-size: 90%;
}

:focus,
button {
    outline: 0 !important;
}

a {
    color: var(--light-olive);
    text-decoration: underline;
}
a:hover,
a:focus {
    color: var(--grey);
    text-decoration: none;
}

a.btn {
    text-decoration: none;
}

.btn {
    padding: 1rem 1.5rem;
    line-height: 1;
}
.btn.focus,
.btn:focus {
    box-shadow: none;
}

.btn + .btn {
    margin-left: 1rem;
}

.btn-white {
    background: var(--white);
    color: var(--black);
}
.btn-white:hover {
    color: var(--light-olive);
}
.btn-white:not(:disabled):not(.disabled).active,
.btn-white:not(:disabled):not(.disabled):active,
.show > .btn-white.dropdown-toggle {
    color: var(--white);
    background-color: var(--light-olive);
    border-color: var(--light-olive);
}

.btn-olive,
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    position: relative;
    color: var(--white) !important;
    background: linear-gradient(45deg, var(--olive) 0%, var(--light-olive) 50%);
    border-color: linear-gradient(45deg, var(--olive) 0%, var(--light-olive) 50%);
    padding-left: 1.875rem;
    padding-right: 1.875rem;
    z-index: 1;
    border-radius: 0;
    border: 0;
}

.btn-olive::before,
.woocommerce #respond input#submit::before, .woocommerce a.button::before, .woocommerce button.button::before, .woocommerce input.button::before,
.woocommerce #respond input#submit.alt::before, .woocommerce a.button.alt::before, .woocommerce button.button.alt::before, .woocommerce input.button.alt::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;    
    background: linear-gradient(135deg, var(--light-olive) 50%, var(--olive) 100%);
    opacity: 0;
    -webkit-transition: opacity 250ms ease-in;
    transition: opacity 250ms ease-in;
    z-index: -1;
}

.btn-olive:hover,
.woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover,
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
    color: var(--white);    
    background: linear-gradient(135deg, var(--light-olive) 50%, var(--olive) 100%);
}

.btn-olive:hover::before,
.woocommerce #respond input#submit:hover::before, .woocommerce a.button:hover::before, .woocommerce button.button:hover::before, .woocommerce input.button:hover::before,
.woocommerce #respond input#submit.alt:hover::before, .woocommerce a.button.alt:hover::before, .woocommerce button.button.alt:hover::before, .woocommerce input.button.alt:hover::before {
    opacity: 1;
}

.btn-outline-olive {
    color: var(--olive);
    border-color: var(--olive);
}

.btn-outline-olive:hover {
    color: var(--white);
    background-color: var(--olive);
}

blockquote {
    border-left: 5px solid var(--light-olive);
    margin: 1.5em 15px;
    padding: 0.5em 15px;
    text-indent: 1rem;
    font-style: italic;
}
/*blockquote:before {
  color: var(--light-olive);
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}*/
blockquote p {
    display: inline;
}

.object-fit-cover,
.image-and-text-section .has-img-object-fit-cover .image img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}

.font-italic {
    font-style: italic;
}

.green {
    color: var(--green);
}
.olive {
    color: var(--olive);
}

.bg-olive {
    background-color: var(--olive);
}

.bg-light-olive {
    background-color: var(--light-olive);
}

.bg-cream {
    background-color: var(--cream);
}

.bg-deep-cream {
    background-color: var(--deep-cream);
}

.bg-linen {
    background-color: var(--linen);
}

.bg-light-grey {
    background-color: var(--light-grey);
}

.bg-fade-top {
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0) 100%);
}

.shadow-inset-lr {
    box-shadow: inset 20px 0px 20px -25px rgba(0, 0, 0, 0.5), inset -20px 0px 20px -25px rgba(0, 0, 0, 0.5);
}

.border-cream {
    border-color: var(--cream) !important;
}

.border-citron {
    border-color: var(--light-olive) !important;
}

.border-olive {
    border-color: var(--olive) !important;
}

.mb-10 {
    margin-bottom: 0.625rem;
}

.mb-30 {
    margin-bottom: 1.875rem;
}

.mb-40 {
    margin-bottom: 2.5rem;
}

.mb-50 {
    margin-bottom: 3.125rem;
}

.mb-100 {
    margin-bottom: 6.25rem;
}

.p-30 {
    padding: 1.875rem;
}

.p-40 {
    padding: 2.5rem;
}

.py-40 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.py-50 {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
}

.py-60 {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
}

.py-80 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.pt-50 {
    padding-top: 3.125rem;
}

.pt-80 {
    padding-top: 5rem;
}

.pb-30 {
    padding-bottom: 1.875rem;
}

.pb-40 {
    padding-bottom: 2.5rem;
}

.pb-50 {
    padding-bottom: 3.125rem;
}

.pb-200 {
    padding-bottom: 12.5rem;
}

.px-30 {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
}

.px-40 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.m-n1 {
    margin: -.25rem!important
}

.mt-n1,.my-n1 {
    margin-top: -.25rem!important
}

.mr-n1,.mx-n1 {
    margin-right: -.25rem!important
}

.mb-n1,.my-n1 {
    margin-bottom: -.25rem!important
}

.ml-n1,.mx-n1 {
    margin-left: -.25rem!important
}

.m-n2 {
    margin: -.5rem!important
}

.mt-n2,.my-n2 {
    margin-top: -.5rem!important
}

.mr-n2,.mx-n2 {
    margin-right: -.5rem!important
}

.mb-n2,.my-n2 {
    margin-bottom: -.5rem!important
}

.ml-n2,.mx-n2 {
    margin-left: -.5rem!important
}

.m-n3 {
    margin: -1rem!important
}

.mt-n3,.my-n3 {
    margin-top: -1rem!important
}

.mr-n3,.mx-n3 {
    margin-right: -1rem!important
}

.mb-n3,.my-n3 {
    margin-bottom: -1rem!important
}

.ml-n3,.mx-n3 {
    margin-left: -1rem!important
}

.m-n4 {
    margin: -1.5rem!important
}

.mt-n4,.my-n4 {
    margin-top: -1.5rem!important
}

.mr-n4,.mx-n4 {
    margin-right: -1.5rem!important
}

.mb-n4,.my-n4 {
    margin-bottom: -1.5rem!important
}

.ml-n4,.mx-n4 {
    margin-left: -1.5rem!important
}

.m-n5 {
    margin: -3rem!important
}

.mt-n5,.my-n5 {
    margin-top: -3rem!important
}

.mr-n5,.mx-n5 {
    margin-right: -3rem!important
}

.mb-n5,.my-n5 {
    margin-bottom: -3rem!important
}

.ml-n5,.mx-n5 {
    margin-left: -3rem!important
}

.white-box {
    background: var(--white);
    padding: 8%;
    border-radius: 10px;
}
.white-box .btn-outline-light {
    border-color: var(--olive);
    color: var(--olive);
}
.white-box .btn-outline-light:hover,
.white-box .btn-outline-light:active,
.white-box .btn-outline-light:focus {
    background: var(--olive) !important;
    color: var(--white) !important;
}

/* Left & Right */
.left h2,
.right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}
.left h3,
.right h3 {
    margin-bottom: 0.25rem;
}

/* Card */

.card {
    -webkit-box-flex: 1;
    flex-grow: 1;
    border: none;
    overflow: hidden;
}

.card .wave {
    position: relative;
}

.card .wave::before {
    position: absolute;
    content: "";
    width: 105%;
    height: 100%;
    bottom: -2px;
    left: -5px;
    background-repeat: no-repeat;
    background-position: bottom;
}

.card .wave.wave-1::before {
    background-image: url("../svg/card-wave-4-1.svg");
}
.card .wave.wave-2::before {
    background-image: url("../svg/card-wave-4-2.svg");
}
.card .wave.wave-3::before {
    background-image: url("../svg/card-wave-4-3.svg");
}
.card .wave.wave-4::before {
    background-image: url("../svg/card-wave-4-4.svg");
}

.three-box-feature-section .card .wave.wave-1::before {
    background-image: url("../svg/card-wave-1.svg");
}
.three-box-feature-section .card .wave.wave-2::before {
    background-image: url("../svg/card-wave-2.svg");
}
.three-box-feature-section .card .wave.wave-3::before {
    background-image: url("../svg/card-wave-3.svg");
}

.card .card-img-top {
    background-color: var(--cream);
}
.card .card-body {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.card .card-body .card-text {
    -webkit-box-flex: 1;
    flex-grow: 1;
}
.card .wave.wave-5 + .card-body .card-text {
    text-align: left;
}
.card .card-body .card-text .meta {
    margin-bottom: 0.75rem;
}
.card .card-body .card-text .meta small {
    display: block;
    line-height: 1.6;
}

.card.flex-row,
.card.smaller-info {
    font-size: .7rem;
    line-height: 1.2;
}
.card.flex-row .card-body,
.card.smaller-info .card-body {
    padding: 1rem;
}
.card.flex-row .card-title,
.card.smaller-info .card-title {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}
.card.flex-row .card-title,
.flex-row .meta {
    text-align: left;
}
.card.smaller-info .meta {
    margin-bottom: 0.25rem !important;
}
.card.flex-row .card-text p,
.card.smaller-info .card-text p {
    font-size: .75rem;
}
.card.flex-row .card-img-top {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (min-width: 768px) {
    .card .card-img-top,
    .card.flex-row .card-img-top {
        height: 170px;
        -o-object-fit: cover;
        object-fit: cover;
    }
    .card .card-img-top.contain {
        -o-object-fit: contain;
        object-fit: contain;
    }
    .card .wave.wave-5 .card-img-top {
        height: 270px;
    }
    .col-lg-8 > .card .card-img-top {
        height: 300px;
    }
}
@media (min-width: 992px) {
    .card .wave.wave-5 .card-img-top {
        height: 120px;
    }
    .card .wave.wave-5::before {
        background-image: url("../img/wave-5.png");
    }
}

#slick-projects .slick-prev::before,
#slick-projects .slick-next::before,
#slick-gallery .slick-prev::before,
#slick-gallery .slick-next::before {
    font-family: "Font Awesome 5 Free";
    color: var(--olive);
    font-weight: 900;
    font-size: 16px;
}

#slick-projects .slick-prev::before,
#slick-gallery .slick-prev::before {
    content: "\f053";
}

#slick-projects .slick-next::before,
#slick-gallery .slick-next::before {
    content: "\f054";
}

#slick-projects .project img,
#slick-gallery .project img {
    height: 70px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

#slick-projects .project p,
#slick-gallery .project p {
    font-family: "Buenard", serif;
    font-size: 0.875rem;
    margin-bottom: 0;
}

#slick-projects .slick-prev,
#slick-projects .slick-next {
    top: 40%;
}

#slick-gallery .slick-prev,
#slick-gallery .slick-next {
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1;
    padding-top: 12px;
    padding-bottom: 27px;
}

#slick-gallery .slick-prev::before,
#slick-gallery .slick-next::before {
    top: 50%;
}

#slick-gallery .slick-prev {
    left: 10px;
}

#slick-gallery .slick-next {
    right: 10px;
}

#slick-gallery .slick-dots {
    bottom: 15px;
}

#slick-gallery .slick-dots li button::before {
    color: var(--white);
    opacity: 1;
    font-size: 10px;
}

#slick-gallery .slick-dots li.slick-active button::after {
    content: "\f111";
    color: var(--olive);
    font-family: "Font Awesome 5 Free";
    font-size: 5px;
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}
@media (min-width: 768px) {
    #slick-projects .project img,
    #slick-gallery .project img {
        height: 100px;
    }
}
@media (min-width: 1024px) {
    #slick-projects .project img,
    #slick-gallery .project img {
        height: 150px;
    }
}
@media (min-width: 1200px) {
    #slick-projects .project img,
    #slick-gallery .project img {
        height: 50px;
    }
}

footer {
    line-height: 1.2rem;
    font-weight: 400;
    background: var(--linen);
}

footer .sublinks {
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 3rem;
}

footer .sublinks .list-inline {
    margin-bottom: 0;
}

footer .sublinks .list-inline .list-inline-item {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    margin: 0;
    display: block;
}

footer .sublinks .list-inline .list-inline-item a {
    color: var(--black);
    font-weight: 400;
    text-decoration: none;
}

footer .sublinks .list-inline .list-inline-item a:hover {
    color: var(--green);
}
footer .sublinks .list-inline .list-inline-item.btn a:hover {
    color: var(--white);
}
footer p a {
    color: var(--black);
    text-decoration: underline;
}
footer p a:hover,
footer p a:focus {
    color: var(--olive);
}
footer > .container > .row > *:first-child img {
    max-width: 200px;
}
footer .btn {
    padding: 0;
    border-radius: 0;
}
@media (min-width: 768px) {
    footer .sublinks .list-inline .list-inline-item {
        display: inline-block;
    }
    footer .sublinks .list-inline .list-inline-item.btn {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

form .form-control {
    background-color: transparent;
    line-height: 1;
    padding: 1.25rem;
    border-color: #535354;
    border-width: 2px;
}
.form-control:focus {
    border-color: #717a06;
    box-shadow: none;
}

form .btn {
    padding: 0.825rem 1.875rem;
}
input,
textarea,
select {
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 6px 10px;
    color: #555555;
}
input[type="submit"] {
    background: var(--light-olive);
}
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active {
    background: var(--olive);
}

.newsletter input.form-control {
    background-color: white;
}

.jumbotron {
    position: relative;
    background-color: transparent;
    overflow: hidden;
    margin-bottom: 0;
}

.jumbotron .container h1 {
    text-transform: uppercase;
    font-size: 2.25rem;
}

.jumbotron .container p {
    font-size: 1.75rem;
}
.jumbotron.hero-1,
.jumbotron.hero-2 {
    background-image: url(../img/banner-background.jpg);
    background-size: cover;
    background-position: center;
}
.jumbotron.hero-1 .wave {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
    fill: var(--cream);
}
.jumbotron.hero-2 .wave {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
    fill: var(--white);
}
.jumbotron.hero-1 img,
.jumbotron.hero-2 img {
    display: block;
    margin: 0 auto;
}
.hero-image-caption {
    bottom: 1rem;
    padding: 0 0.25rem;
    background: var(--white);
    background: rgba(255, 255, 255, 0.5);
}
.slick figcaption,
.slick-slide .image-caption {
    background: var(--linen);
    padding: 0.25rem;
    text-align: center;
}
.image-caption,
.wp-caption-text {
    background: var(--white);
}
.image-caption,
.slick figcaption,
.wp-caption-text {
    bottom: 0;
    width: 100%;
}
.hero-image-caption,
.slick figcaption,
.image-caption,
.wp-caption-text {
    position: absolute;
    right: 0;
    font-size: 0.7rem;
    margin-bottom: 0;
    padding: 0.25rem;
}
.hero-image-caption,
.image-caption,
.wp-caption-text {
    text-align: right;
}
.wp-caption-text {
    margin-right: 10px;
    margin-left: 10px;
}
.image,
.slick figure,
.wp-caption,
.slick-slide {
    position: relative;
}

.jumbotron.newsletter {
    height: 49vh;
    /*margin-top: 2rem;*/
    padding: 2rem;
    background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(30%, rgba(255, 255, 255, 0))),
        -webkit-gradient(linear, left top, left bottom, from(white), color-stop(30%, rgba(255, 255, 255, 0)));
    background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0) 30%),
        linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0) 30%);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
    height: 0;
    padding-top: 24%;
}
.jumbotron.newsletter:before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--white);
    opacity: 0.5;
}

.jumbotron.newsletter p {
    font-size: 1rem;
}
@media (min-width: 768px) {
    .jumbotron.hero-1 img.small-image,
    .jumbotron.hero-2 img.small-image {
        border-left: 10px solid var(--white);
        border-right: 10px solid var(--white);
        -webkit-box-shadow: 0px 0px 27px 3px rgba(0, 0, 0, 0.37);
        box-shadow: 0px 0px 27px 3px rgba(0, 0, 0, 0.37);
    }
}
@media screen and (min-width: 1200px) {
    .image-caption,
    .hero-image-caption,
    .slick figcaption,
    .wp-caption-text {
        font-size: 0.8rem;
    }
    .hero-image-caption {
        bottom: 2rem;
    }
    .jumbotron.newsletter {
        background-size: 100%;
    }
}

.jumbotron.newsletter .wave {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
    fill: var(--linen);
}

.link-olive {
    color: var(--olive);
    text-decoration: underline;
}

.link-olive:hover {
    color: #afafaf;
}

.link-black {
    color: #000;
    text-decoration: underline;
}

.link-black:hover {
    color: #afafaf;
}

.link-grey {
    color: var(--grey);
}

.link-grey:hover {
    color: var(--olive);
}

.link-no-decoration {
    text-decoration: none;
    color: inherit;
}

.link-no-decoration:hover {
    color: var(--olive);
    text-decoration: none;
}

.fa-ul {
    margin-left: 1.5em;
}
.fa-ul .text-olive {
    color: var(--green);
}

ul {
    font-family: "Lato", sans-serif;
    padding-left: 0.9rem;
}

.navbar {
    margin-top: 0;
    -webkit-transition: all 0.6s ease-in;
    transition: all 0.6s ease-in;
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
    background: var(--white);
}

.navbar.scrolled {
    background-color: var(--white);
}
.navbar.scrolled:after {
    opacity: 0;
    height: 0;
}

.navbar:before {
    content: none;
    position: absolute;
    width: 100%;
    height: 30px;
    top: -30px;
    left: 0;
    background-color: var(--deep-cream);
}

.navbar .container {
    /*padding-top: 6px;
    padding-bottom: 6px;*/
    padding-left: 15px;
    padding-right: 15px;
    background: var(--white);
}

.navbar .navbar-collapse {
    background: var(--white);
}

.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    color: var(--black);
    font-weight: 400;
    font-size: 0.875rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.navbar .navbar-collapse .navbar-nav .nav-item .nav-link .fa-chevron-down {
    color: #9a9a9a;
}

.navbar .navbar-collapse .navbar-nav .nav-item .nav-link:active,
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
    color: var(--green);
}

.navbar .navbar-collapse .navbar-nav .nav-item .nav-link:active .fa-chevron-down,
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover .fa-chevron-down {
    color: var(--green);
}

.navbar .navbar-collapse .navbar-nav .nav-item.active .nav-link {
    color: var(--green);
}

.navbar .navbar-brand img {
    width: auto;
    height: 50px;
    -webkit-transition: width 500ms ease-in-out;
    transition: width 500ms ease-in-out;
    margin-bottom: -8px;
}

.navbar a {
    text-decoration: none;
}

.navbar-nav .btn {
    padding: 1px 0 0;
    border-radius: 0;
    margin: .5rem 1.25rem;
}
.navbar-nav .btn.btn-outline-olive > a {
    color: var(--olive) !important;
}
.navbar-nav .btn:hover > a {
    color: var(--white) !important;
}

.dropdown-menu {
    margin-top: 0;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--white);
    border-radius: 0;
    line-height: 1.2;
}
.dropdown-menu > li {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 1200px) {
    .navbar {
        margin-top: 30px;
        height: 70px;
        background-color: transparent;
        background: linear-gradient(0deg, rgba(247, 234, 217, 0) 0%, rgba(247, 234, 217, 1) 90%),
            linear-gradient(0deg, rgba(247, 234, 217, 0.5) 0%, rgba(247, 234, 217, 1) 100%);
    }
    .navbar:before {
        content: "";
        border-bottom: 1px solid #cdcdcd;
    }
    .navbar:after {
        transition: all 0.6s ease-in;
        background: linear-gradient(0deg, rgba(247, 234, 217, 0) 0%, rgba(247, 234, 217, 0.5) 100%);
        content: "";
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        height: 70px;
        z-index: -2;
    }
    .navbar .container {
        background: none;
    }
    .navbar.navbar-expand-xl .navbar-collapse {
        -webkit-box-pack: end;
        justify-content: flex-end;
        background: transparent;
    }
    .navbar .navbar-collapse .secondary-nav-group {
        position: absolute;
        top: -30px;
        height: 30px;
    }
    .navbar .navbar-collapse .secondary-nav .nav-item {
        line-height: 1.1;
        border-left: 1px solid #cdcdcd;
    }
    .navbar .navbar-collapse .secondary-nav .nav-item .nav-link {
        color: var(--dark-grey);
        font-size: .8rem;
    }
    .navbar .navbar-collapse .secondary-nav .nav-item .nav-link:active,
    .navbar .navbar-collapse .secondary-nav .nav-item .nav-link:hover {
        color: var(--dark-grey);
        background: var(--cream);
    }
    .navbar .navbar-collapse .secondary-nav .nav-item.active .nav-link {
        color: var(--dark-grey);
        background: var(--cream);
    }
    .navbar-nav .btn {
        margin: 0 1.25rem 0;
    }
    .navbar .navbar-brand img {
        position: absolute;
        top: 15px;
        width: 180px;
        height: auto;
        margin-bottom: 0;
    }

    .navbar .navbar-brand img.smaller {
        width: 85px;
        -webkit-transition: width 500ms ease-in-out;
        transition: width 500ms ease-in-out;
    }
    .dropdown-menu {
        -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    }
    .dropdown-menu > li {
        padding-left: 0;
        padding-right: 0;
    }
    .dropdown-item:focus,
    .dropdown-item:hover {
        background: var(--white);
        color: var(--green);
    }
    .dropdown-item.active,
    .dropdown-item:active {
        color: var(--white);
        background: var(--green);
    }
}

.triangle-top {
    position: relative;
}

.triangle-top::before {
    content: "";
    position: absolute;
    top: -30px;
    right: 50%;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 30px solid var(--olive);
    clear: both;
    margin-right: -30px;
    z-index: 1000;
}

.text-medium {
    font-size: 0.875rem;
}

.text-olive {
    color: var(--green);
}

.buenard-font {
    font-family: "Buenard", serif;
}

.font-lg {
    font-size: 1.25rem;
    line-height: 1.5;
}
h1.display {
    position: relative;
    font-size: 2.5rem;
    margin-bottom: 0;
    padding-bottom: 28px;
}

h1.display::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 2px;
    background-color: var(--olive);
    bottom: 0;
    left: 50%;
    margin-left: -75px;
}
.sub-heading {
    font-size: 1.25rem;
    line-height: 1.2;
    margin-top: 1.5rem;
    text-align: center;
}
.sub-heading .label {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    display: inline-block;
    vertical-align: top;
    font-family: "Lato", sans-serif;
    margin-right: 0.25rem;
}
@media (min-width: 768px) {
    h1.display {
        font-size: 3.75rem;
    }
    .sub-heading {
        font-size: 1.35rem;
    }
}



/* Full Width Section */
section.full-width {
    width: calc(100% - 30px);
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
section.full-width.achievements-and-fotm-section,
section.full-width.three-way-split-section {
    width: 100%;
}
section.full-width.three-way-split-section {
    padding-left: 0;
    padding-right: 0;
}
@media (min-width: 576px) {
    section.full-width {
        width: 100%;
        max-width: 510px;
    }
}
@media (min-width: 768px) {
    section.full-width {
        max-width: 690px;
    }
}
@media (min-width: 992px) {
    section.full-width {
        max-width: 930px;
    }
}
@media (min-width: 1200px) {
    section.full-width {
        max-width: 100%;
    }
}

/* Default Template */
.user-content {
  margin-top: 2.5rem;
}
.user-content h2 {
  margin: 2.5rem 0 0.75rem;
  font-size: 1.5rem;
}
.user-content .wp-caption,
.user-content img {
  max-width: 100%;
  height: auto;
}
.user-content .wp-caption .wp-caption-text {
  right: -10px;
}
.user-content ul {
    margin-left: 0.5rem;
}
@media (min-width: 992px) {
    .user-content {
        margin-top: 4rem;
    }
    .user-content h2 {
        font-size: 2rem;
        margin: 3rem 0 1rem;
    }
}
@media (min-width: 1200px) {
    .user-content h2 {
        font-size: 2.5rem;
    }
}

/* Payment Options */
.paymentOptions .box {
    border-radius: 10px;
}
.paymentOptions .box > .row > *:nth-child(2) {
    background: var(--cream);
}
.paymentOptions .box h3 {
    margin-bottom: 0;
    padding-bottom: 1.75rem;
}
.paymentOptions .box h6 {
    margin-bottom: 0.5rem;
    font-family: "Lato", sans-serif;
    font-size: 0.9rem;
}
.paymentOptions .box .price {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.paymentOptions .box .footnote {
    margin-top: 0.5rem;
}
.paymentOption {
    margin-bottom: 1rem;
    margin-top: 1rem;
}
@media (min-width: 992px) {
    .paymentOptions .box > .row > *:nth-child(1) {
        padding-left: 4rem !important;
        padding-right: 4rem !important;
    }
    .paymentOption {
        margin-bottom: 0;
        margin-top: 0;
    }
}

/* Template: Research  */
.page-template-research .triangle-top::before {
    display: none;
}

/* Three Way Split Section */
.three-way-split-section {
    overflow: hidden;
    margin-top: 2rem;
}
.three-way-split-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}
.three-way-split-section .left h3 {
    margin: 2rem 0 0.5rem;
}
.three-way-split-section .left {
    background-color: var(--linen);
}
.three-way-split-section .left,
.three-way-split-section .right > .row > * {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.three-way-split-section .right .bg-light-olive::before {
    background-image: url(../img/small-box-wave.png);
    position: absolute;
    content: "";
    width: 100%;
    height: 19px;
    top: -18px;
    left: 0;
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100% 100%;
}
.three-way-split-section img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}
@media (min-width: 768px) {
    .three-way-split-section {
        margin-top: 4rem;
    }
    .has-extended-bg {
        position: relative;
    }
    .has-extended-bg:after {
        content: "";
        display: block;
        position: absolute;
        width: 999em;
        z-index: -1000;
        top: 0;
        bottom: 0;
    }
    .three-way-split-section .left,
    .three-way-split-section .right > .row > * {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .three-way-split-section .left {
        padding-right: 4rem;
    }
    .three-way-split-section .right > .row > * {
        padding-left: 4rem;
    }
    .three-way-split-section .left:after {
        background-color: var(--linen);
        left: -999em;
        right: 0;
    }
    .three-way-split-section .right .bg-cream:after {
        background-color: var(--cream);
        left: 0;
        right: -999em;
    }
    .three-way-split-section .right .bg-light-olive:after {
        background-color: var(--light-olive);
        left: 0;
        right: -999em;
    }
    .three-way-split-section .white-box {
        position: relative;
    }
    .three-way-split-section .white-box:before {
        right: 100%;
        top: 45px;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(255, 255, 255, 0);
        border-right-color: var(--white);
        border-width: 20px;
        margin-top: -20px;
    }
}

/* Image and Text section */
.image-and-text-section h2 {
    margin-bottom: 1.25rem;
}
.image-and-text-section .row.border > .col-lg-6:last-child {
    padding: 2rem;
}
.image-and-text-section .row.swap-columns > .col-lg-6:first-child {
    order: 13;
}
.image-and-text-section .row.swap-columns > .col-lg-6:last-child {
    order: 0;
}

/* Achievements & FOTM section */
.achievements-and-fotm-section {
    overflow: hidden;
    margin-top: 2rem;
}
.achievements-and-fotm-section .left h3 {
    margin: 2rem 0 0.5rem;
}
.achievements-and-fotm-section .btn {
    margin-top: 1.5rem;
}
.achievements-and-fotm-section .left,
.achievements-and-fotm-section .right {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
@media (min-width: 992px) {
    .achievements-and-fotm-section {
        margin-top: 4rem;
    }
    .has-extended-bg {
        position: relative;
    }
    .has-extended-bg:after {
        content: "";
        display: block;
        position: absolute;
        width: 999em;
        z-index: -1000;
        top: 0;
        bottom: 0;
    }
    .achievements-and-fotm-section .left,
    .achievements-and-fotm-section .right {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .achievements-and-fotm-section .left {
        padding-right: 4rem;
    }
    .achievements-and-fotm-section .right {
        padding-left: 4rem;
    }
    .achievements-and-fotm-section .left:after {
        background-color: var(--linen);
        left: -999em;
        right: 0;
    }
    .achievements-and-fotm-section .right:after {
        background-color: var(--cream);
        left: 0;
        right: -999em;
    }
}

/* Friend of the Month box */
.fotm-box img {
    width: 200px;
    height: auto;
}
.fotm-box h6 {
    margin-top: 1.5rem;
}
.fotm-box p {
    text-align: left;
    margin-bottom: 1.5rem;
}

/* Single pages */
.alignleft,
.alignright,
.aligncenter {
    display: block;
    float: none;
    margin: 0 auto;
    margin-bottom: 5px;
}
.single .meta > * {
    margin-bottom: 0.5rem;
}
.single .meta > *:last-child {
    margin-bottom: 0;
}
@media (min-width: 768px) {
    .alignleft,
    .alignright,
    .aligncenter {
        display: inline;
    }
    .alignleft {
        float: left;
        margin-right: 20px;
    }
    .alignright {
        float: right;
        margin-left: 20px;
    }
    .aligncenter {
        display: block;
        margin: 10px auto;
    }
}

/* Article List Template */
.page-template-article-list .filter-btn.btn {
    padding: 0.75rem 1rem;
}
.card-title {
    line-height: 1.1;
    font-size: 1.5rem;
}
.card-title a {
    text-decoration: none;
    color: var(--black);
}
.card-title a:hover,
.card-title a:focus,
.card-title a:active {
    color: #afafaf;
}
.page-template-article-list .archive-items .meta {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}
.page-template-article-list .archive-items .meta p {
    margin-bottom: 0.6rem;
    line-height: 1.1;
}
.page-template-article-list .archive-items .meta > * {
    display: block;
    line-height: 1.6;
}
.post-grid .card > div {
    position: relative;
}
.post-grid .card > div .label {
    position: absolute;
    z-index: 50;
    top: 0;
    right: 0;
    padding: 0.4rem;
    line-height: 1;
    display: block;
    border-radius: 0 0 0 10px;
    font-weight: 600;
    font-size: 0.9rem;
}
.post-grid .card > div .label:before {
    background: var(--light-grey);
    width: 100px;
    height: 3rem;
    position: absolute;
    content: "";
    right: -42px;
    top: -17px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: -1;
    -webkit-box-shadow: 0 0 6px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 6px 4px rgba(0, 0, 0, 0.25);
}
.card .date-box {
    position: absolute;
    top: 1em;
    left: 1em;
    background-color: var(--olive);
    color: var(--white);
    padding: 0.5em 0.25em;
    width: 4em;
    text-align: center;
    border-radius: 4px;
    border: 1px solid var(--white);
}

/* Double Text Section */
.double-text-section .left {
    padding-bottom: 2rem;
}
@media (min-width: 992px) {
    .double-text-section .left {
        padding-right: 2rem;
        padding-bottom: 0;
    }
    .double-text-section .right {
        padding-left: 2rem;
    }
}

/* Slick */
.slick-slider {
    background-color: var(--linen);
}
#slick-projects.slick-slider {
    background: none;
}
.slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.slick-slide img {
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}
.slick-slide figure {
    margin-bottom: 0;
}
.slick-dots li button:before {
    content: none;
}
/* Slick - for the galleries that are inside the .col-lg-6 */
.col-lg-6 .slick-slide img {
    max-height: 195px;
}
.has-img-object-fit-cover .col-lg-6 .slick-slide img {
    max-height: none;
}
@media (min-width: 350px) {
    .col-lg-6 .slick-slide img {
        max-height: 230px;
    }
}
@media (min-width: 768px) {
    .col-lg-6 .slick-slide img {
        max-height: 460px;
    }
}
@media (min-width: 992px) {
    .col-lg-6 .slick-slide img {
        max-height: 300px;
    }
}
@media (min-width: 1200px) {
    .col-lg-6 .slick-slide img {
        max-height: 360px;
    }
}
/* Slick - for Single template (Plugin is used on this template) */
.user-content .slick-slider {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.user-content .slick-slide img {
    max-height: 195px;
    width: auto;
}
@media (min-width: 350px) {
    .user-content .slick-slide img {
        max-height: 230px;
    }
}
@media (min-width: 768px) {
    .user-content .slick-slide img {
        max-height: 460px;
    }
}
@media (min-width: 992px) {
    .user-content .slick-slide img {
        max-height: 406px;
    }
}
@media (min-width: 1200px) {
    .user-content .slick-slide img {
        max-height: 490px;
    }
}

/* Homepage - Projects */
#slick-projects .slick-prev {
    left: -1rem;
    background: none;
}
#slick-projects .slick-next {
    right: -1rem;
    background: none;
}

/* Supporters */
.logo-group img {
    max-width: 100%;
    height: auto;
}

/* Annual Reports Section */
.annual-reports-section .card-body {
    position: relative;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-width: 1px;
    border-style: solid;
    border-color: #b0b0b0;
    padding: 1rem;
}
.annual-reports-section .card-body * {
    color: #b1b1b1;
}
.annual-reports-section .card-body.hasReport {
    border-color: var(--olive);
}
.annual-reports-section .card-body.hasReport:hover,
.annual-reports-section .card-body.hasReport:focus,
.annual-reports-section .card-body.hasReport:active {
    background-color: var(--olive);
}
.annual-reports-section .card-body.hasReport:hover *,
.annual-reports-section .card-body.hasReport:focus *,
.annual-reports-section .card-body.hasReport:active * {
    color: var(--white);
}
.annual-reports-section .card-body h5 {
    font-family: "Lato", sans-serif;
    font-size: 1rem;
}
.annual-reports-section .card-body.hasReport h5 {
    color: var(--olive);
}
.annual-reports-section .card-body p {
    font-style: italic;
}
.annual-reports-section .card-body.hasReport p {
    color: var(--black);
    font-style: normal;
}
.annual-reports-section .card-body .row > *:nth-child(2) {
    font-size: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.annual-reports-section .card-body.hasReport .row > *:nth-child(2) * {
    color: var(--olive);
}

.annual-reports-section .card-body.hasReport:hover .row > *:nth-child(2) *,
.annual-reports-section .card-body.hasReport:focus .row > *:nth-child(2) *,
.annual-reports-section .card-body.hasReport:active .row > *:nth-child(2) * {
    color: var(--white);
}
.annual-reports-section .card-body > a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* Membership & Support Template */
ul#membership-menu.nav {
    border-top: 1px solid var(--light-olive);
    border-bottom: 1px solid var(--light-olive);
    margin-top: 3rem;
    background: #f9f9f2;
}
ul#membership-menu.nav li.current-menu-item a,
ul#membership-menu.nav li.current-menu-ancestor a {
    font-weight: 600;
}
ul#membership-menu.nav li a {
    text-decoration: none;
}
ul#membership-menu.nav .dropdown-menu {
    background: #f9f9f2;
}
.page-template-membership-and-support-landing .why-support-section section.image-and-text-section {
    padding: 0 0 4rem 0 !important;
}
@media (min-width: 768px) {
    .page-template-membership-and-support-landing .why-support-section section.image-and-text-section {
        padding: 1rem 0 5rem 0 !important;
    }
}
@media (min-width: 1200px) {
    ul#membership-menu.nav .dropdown-item:focus,
    ul#membership-menu.nav .dropdown-item:hover,
    ul#membership-menu.nav .dropdown-menu li.current-menu-item a {
        background: var(--light-olive);
        color: var(--white);
    }
}

/* Members Area -- Landing page */
.pmpro_content_message {
    text-align: center;
    border: 1px solid var(--cream);
    background-color: var(--linen);
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 500;
    padding: 2rem 1rem;
}
.pmpro_content_message p {
    margin-bottom: 1.5rem;
}
.pmpro_btn,
.pmpro_btn:link,
.pmpro_content_message a,
.pmpro_content_message a:link {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
    border-radius: 0;
    padding: 1rem 1.5rem;
    line-height: 1;
    position: relative;
    color: var(--white) !important;
    background: linear-gradient(45deg, var(--olive) 0%, var(--light-olive) 50%);
    border-color: linear-gradient(45deg, var(--olive) 0%, var(--light-olive) 50%);
    padding-left: 1.875rem;
    padding-right: 1.875rem;
    z-index: 1;
    margin: 0.5rem auto;
}
.pmpro_btn::before,
.pmpro_btn:link::before,
.pmpro_content_message a::before,
.pmpro_content_message a:link::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--light-olive) 50%, var(--olive) 100%);
    opacity: 0;
    -webkit-transition: opacity 250ms ease-in;
    transition: opacity 250ms ease-in;
    z-index: -1;
}
.pmpro_btn:hover::before,
.pmpro_btn:link:hover::before,
.pmpro_content_message a:hover::before,
.pmpro_content_message a:hover:link::before {
    opacity: 1;
}
@media (min-width: 768px) {
    .pmpro_content_message {
        padding: 3rem 1rem;
    }
}

/* Members Area -- Levels */
table#pmpro_levels_table {
    width: 100%;
    margin-bottom: 3rem;
}
table#pmpro_levels_table thead {
    display: none;
}
table#pmpro_levels_table thead tr th {
    font-family: "Buenard", serif;
    font-size: 1.25rem;
    padding-bottom: 1rem;
}
table#pmpro_levels_table tbody {
    border-top: 1px solid #ccc;
}
table#pmpro_levels_table tr {
    border-bottom: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 1rem;
}
table#pmpro_levels_table tr.active {
    background: #f9f9f9;
}
table#pmpro_levels_table a {
    max-width: 150px;
}
@media (min-width: 768px) {
    table#pmpro_levels_table thead {
        display: table-header-group;
    }
    table#pmpro_levels_table tr {
        display: table-row;
        text-align: left;
    }
    table#pmpro_levels_table a {
        margin-right: 0;
    }
}

/* Members Area -- Account */
#pmpro_account .pmpro_box {
    padding: 2em 0;
}
#pmpro_account .pmpro_box h3 {
    margin-bottom: 1rem;
}
.pmpro_table th,
.pmpro_table td {
    padding: 0.25rem 0;
}
.pmpro_table a {
    text-decoration: none;
}
#pmpro_account #pmpro_account-membership {
    border: 0;
    padding-top: 0;
    margin-top: 0;
}
.pmpro_actionlinks #pmpro_actionlink-levels {
    margin-top: 1rem;
}

/* Members Area -- Billing */
.pmpro_billing_wrap > ul {
    border: 1px solid var(--cream);
    background-color: var(--linen);
    margin: 1rem 0;
    padding: 1.5rem;
    border-radius: 5px;
    list-style: none;
}
form.pmpro_form hr {
    display: none;
}
form.pmpro_form .input,
form.pmpro_form textarea,
form.pmpro_form select {
    display: inline-block;
    max-width: 90%;
    margin-top: 0.5rem;
}
#pmpro_form .pmpro_checkout h3 {
    margin-bottom: 1rem;
}
#pmpro_form .pmpro_checkout h3 span.pmpro_checkout-h3-name {
    margin-bottom: 0;
}
#pmpro_form .pmpro_checkout h3 span.pmpro_checkout-h3-msg {
    display: block;
}
@media (min-width: 768px) {
    form.pmpro_form #pmpro_billing_address_fields,
    form.pmpro_form #pmpro_payment_information_fields {
        display: inline-block;
        width: 49%;
        vertical-align: top;
    }
}

/* Member Area -- Cancel */
.pmpro_cancel-membership-cancel a {
    display: block;
    border: 1px solid var(--olive);
    margin: 0 auto;
    text-align: center;
    padding: 0.25rem 0;
}
.pmpro_cancel-membership-cancel a:hover {
    background: var(--olive);
    color: var(--white);
}

/* Member Area -- Checkout */
#pmpro_payment_method,
#pmpro_payment_information_fields,
.pmpro_submit #pmpro_submit_span {
    display: none !important;
}
form.pmpro_form .pmpro_submit {
    margin-top: 2rem;
}
form.pmpro_form .pmpro_submit #pmpro_paypalexpress_checkout {
    display: block !important;
    text-align: left;
}
form.pmpro_form .pmpro_submit #pmpro_paypalexpress_checkout > * {
    border: none;
    padding: 0;
}

/* Map Section */
@media (min-width: 768px) {
    section#map iframe {
        height: 500px;
    }
}


/* Sidebar */
.sidebar {
    font-size: .8rem;
    padding-top: 2rem;
}
.sidebar .btn {
    font-size: .8rem;
    padding: .7rem;
}
.sidebar .card-title {
    font-size: 1.25rem;
}
.sidebox {
    border-top: 2px solid var(--olive);
    padding: 2rem 0;
    margin: 1rem 0;
}
.sidebox:first-child {
    margin-top: 0;
}
.sidebox:last-child {
    border-bottom: 2px solid var(--olive);
}
.d-flex + .sidebox {
    border-top: 0;
    margin-top: 1rem;
}
.sidebox .title {
    font-family: 'Lato', sans-serif;
    font-size: .75rem;
    text-transform: uppercase;
}
.sidebox ul {
    padding-left: 2rem;
    margin-bottom: 0;
}
.sidebox li {
    margin-bottom: .4rem;
    line-height: 1.2;
}
.sidebox a {
    color: var(--black);
    text-decoration: none;
}
.sidebox a:hover {
    color: var(--light-olive);
    text-decoration: underline;
}
@media (min-width: 992px) {
    .sidebar {
        padding-top: 0;
        padding-left: 2.5rem;
    }
}

/* WooCommerce */
.woocommerce ul.products li {
    border: 1px solid #dee2e6;
}
.woocommerce ul.products li > a:not(:first-child),
.woocommerce ul.products li > a > *:not(:first-child) {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    display: block;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
    color: var(--black);
    font-weight: 600;
}
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price, .woocommerce div.product span.price {
    color: var(--green);
}
.cart .button {
    margin-top: 0 !important;
}
.woocommerce ul.products, .woocommerce-page ul.products {
    display: flex;
    flex-wrap: wrap;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    float: none;
}
/*- Related content */
section.related.products {
    clear: both;
    padding-top: 1rem;
}
section.related.products > h2 {
    text-align: center;
}

/*============================*/
/* WooCommerce form */
/*============================*/
.woocommerce-columns--2 > * {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 2rem;
}
.woocommerce [class*="-set"] [class*="col-"] {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  float: none;
  width: 100%;
    padding: 0;
    margin-bottom: 4rem;
}
.woocommerce form .form-row {
    margin: 0 0 14px;
}
.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
    width: 49.5%;
}
.woocommerce form .form-row input + * {
    font-size: .75rem;
}
form label,
.woocommerce form .form-row label,
form .frm_primary_label {
  font-weight: 700;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
  min-width: 140px;
  position: static !important;
}
.woocommerce form .form-row .woocommerce-input-wrapper {
  width: 100%;
}
.woocommerce form .form-row#billing_first_name_field .woocommerce-input-wrapper,
.woocommerce form .form-row#billing_last_name_field .woocommerce-input-wrapper {
  width: 100%;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.form-control  {
  border: 1px solid #d6d6d6;
  border-radius: 2px;
  padding: .5rem .75rem;
}
.woocommerce-account .woocommerce form .form-row label,
.woocommerce-account .woocommerce form .form-row input:not([type="checkbox"]),
.woocommerce-account .woocommerce form .form-row input:not([type="radio"])
.woocommerce-account .woocommerce form .form-row label + *,
.woocommerce-account .woocommerce form .form-row label + *:not([type="checkbox"]),
.woocommerce-account .woocommerce form .form-row label + *:not([type="radio"]) {
    width: 100%;
}
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  margin-top: 1rem;
}
.woocommerce #respond table input#submit, .woocommerce table a.button, .woocommerce table button.button, .woocommerce table input.button {
  margin-top: 0;  
}
.woocommerce #respond table input#submit:hover, .woocommerce table a.button:hover, .woocommerce table button.button:hover, .woocommerce table input.button:hover {
  border-right-width: 5px;
}
.woocommerce-terms-and-conditions-wrapper {
  font-size: .8rem;
}
.woocommerce .woocommerce-customer-details address {
  font-size: .9rem;
}
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email,
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone {
  margin-top: .25rem;
}
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email:before,
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone:before {
  color: #00538e;
}
form .required {
  color: red;
  font-weight: 700;
  border: 0!important;
  text-decoration: none;
}
.main .woocommerce ul li:before {
    background-color: transparent;
}
@media (min-width: 1024px) {
    .woocommerce-checkout .woocommerce {
        width: 50%;
        margin: 0 auto;
    }
}

/* Collapsible section */
.text.collapsible>.content {
    overflow: hidden;
    position: relative
}

.text.collapsible>.content.expanded {
    max-height: none
}

.text.collapsible>.content.collapsed {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical
}

.text.collapsible>.content.collapsed:after {
    content: "";
    width: 100%;
    display: block;
    height: 50px;
    bottom: 0;
    position: absolute
}

.text.collapsible>.content+.collapsible-toggler {
    display: block;
    padding-top: 1rem;
    color: var(--green);
    text-decoration: underline;
    cursor: pointer;
    transition: all .3s ease;
    margin-bottom: 4rem
}

.text.collapsible>.content+.collapsible-toggler:hover {
    text-decoration: none;
    color: var(--gold)
}

@media (min-width: 768px) {
    .text.collapsible>.content+.collapsible-toggler {
        margin-bottom:0
    }
}


/* Quote */
.quote {
    font-style: italic;
    color: var(--olive);
    font-family: "Buenard", serif;
    font-weight: 600;
}
.quote .text {
    margin-bottom: 0;
    position: relative;
    padding: 0 1.5rem;
}
.quote .text:before,
.quote .text:after {
    position: absolute;
    content: '"';
    font-family: "Buenard", serif;
    font-size: 2rem;
    top: 6px;
}
.quote .text:before {
    left: 0;
}
.quote .text:after {
    right: 0;
}
.quote .author {
    margin-bottom: 0;
    text-align: right;
}