/*! 
 * * Theme Name: LARAPRESS
 * * Theme URI: none
 * * Description: Larapress is a custom wordpress theme.
 * * Author: Fast Eddy
 * * Author URI:
 * * Version: 1.0
 * * License: GNU General Public License v2
 * * License URI: http://www.gnu.org/licenses/gpl-2.0.html 
 * */
/* Keyframes */
@keyframes bounceZoom {
    0% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.08);
    }
    60% {
        transform: scale(0.95);
    }
    80% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@font-face {
  font-family: "Oliver Quin";
  src:
    url("public/webfonts/oliver_quin-webfont.woff2") format("woff2"),
    url("public/webfonts/oliver_quin-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Avenir";
  src:
    url("public/webfonts/avenir_regular-webfont.woff2") format("woff2"),
    url("public/webfonts/avenir_regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Avenir";
  src:
    url("public/webfonts/avenir_heavy-webfont.woff2") format("woff2"),
    url("public/webfonts/avenir_heavy-webfont.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Avenir";
  src:
    url("public/webfonts/avenir_black-webfont.woff2") format("woff2"),
    url("public/webfonts/avenir_black-webfont.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
:root {
  --primary: #163a3a;
  --secondary: #6fcf97;
  --primaryAlt: #123131;
  --secondaryAlt: #4bc37d;
}
body {
  max-width: 100vw;
  overflow-x: hidden;
  font-family: "DM Sans", sans-serif;
}
@media (min-width: 1600px) {
  body .container {
    max-width: 1560px;
  }
}
img {
  max-width: 100%;
}
.title {
  font-weight: 400;
  color: #000;
}
.title--main {
  font-size: 75px;
  font-weight: 300;
}
@media (max-width: 1399px) {
  .title--main {
    font-size: 68px;
  }
}
@media (max-width: 1199px) {
  .title--main {
    font-size: 58px;
  }
}
@media (max-width: 991px) {
  .title--main {
    font-size: 52px;
  }
}
@media (max-width: 767px) {
  .title--main {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .title--main {
    font-size: 34px;
  }
}
.title--section {
  font-size: 60px;
  font-weight: 300;
}
@media (max-width: 1399px) {
  .title--section {
    font-size: 54px;
  }
}
@media (max-width: 1199px) {
  .title--section {
    font-size: 46px;
  }
}
@media (max-width: 991px) {
  .title--section {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .title--section {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .title--section {
    font-size: 26px;
  }
}
.title--secondary {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 1.5px;
}
@media (max-width: 991px) {
  .title--secondary {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .title--secondary {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .title--secondary {
    font-size: 20px;
  }
}
.title--block {
  font-size: 35px;
  font-weight: 300;
}
@media (max-width: 1399px) {
  .title--block {
    font-size: 32px;
  }
}
@media (max-width: 1199px) {
  .title--block {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .title--block {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .title--block {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .title--block {
    font-size: 18px;
  }
}
.title--block a {
  text-decoration: none;
  transition: 0.3s ease-out;
  color: #333;
}
.title--block a:hover {
  text-decoration: underline;
}
.title--block.c-white a {
  color: #fff;
}
.title--block.c-white a:hover {
  color: #5c7457;
}
.title.c-white {
  color: #fff;
}
.title strong {
  font-weight: 600;
}
.subtitle {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 10px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .subtitle {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .subtitle {
    font-size: 16px;
  }
}
.subtitle.c-white {
  color: #fff;
}
.paragraph {
  color: #000;
  font-size: 18px;
  line-height: 35px;
}
@media (max-width: 575px) {
  .paragraph {
    font-size: 16px;
  }
}
.paragraph.c-white {
  color: #fff;
}
.paragraph.decoration {
  padding-bottom: 15px;
  position: relative;
}
.paragraph.decoration::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 25px;
  height: 1px;
  background: #fff;
}
.paragraph.s-big {
  font-size: 25px;
}
@media (max-width: 1199px) {
  .paragraph.s-big {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .paragraph.s-big {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .paragraph.s-big {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .paragraph.s-big {
    font-size: 16px;
  }
}
.btn {
  font-size: 18px;
  font-weight: 500;
  padding: 16px 45px;
  outline: none;
  box-shadow: none;
  border-radius: 10px;
  transition: 0.3s ease-out;
  border: none !important;
  transition: .3s ease-in-out;
}
.btn:hover{
    animation: bounceZoom .5s ease-in-out;
    box-shadow: 0 0 6px rgba(0,0,0,.1);
}
.btn.btn-primary {
  color: #fff;
  background: var(--secondary);;
}
.btn.btn-primary:hover {
  background: var(--secondaryAlt);
  color: #000;
}
.btn.btn-secondary {
  color: var(--primary);
  background: var(--secondary);
}
.btn.btn-secondary:hover {
  background: var(--secondaryAlt);
}
.btn.btn-outline-white {
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0);
  border-radius: 5px;
  color: #fff;
}
.btn.btn-outline-white:hover {
  background: #5c7457;
}
.btn.btn-outline-black {
  border: 1px solid #c8c8c8 !important;
}
.btn.btn-underline {
  border: none;
  padding: 0;
  color: #fff;
  text-decoration: underline;
}
.e404 {
  padding: 175px 0 100px;
  min-height: calc(100vh - 745px);
  background: rgba(92, 116, 87, 0.3);
  border-bottom: solid 1px #fff;
  text-align: center;
}
.e404 h1 {
  font-size: 24px;
  line-height: 1;
  color: #fff;
  font-weight: 100;
}
.e404 h1 strong {
  font-size: 150px;
  line-height: 1;
  color: #5c7457;
  display: block;
}
@media (max-width: 575px) {
  .e404 h1 strong {
    font-size: 80px;
  }
}
.e404 p {
  color: #fff;
  font-size: 24px;
  margin: 0 0 50px;
}
#mainHeader {
  position: relative;
  background: #FFFFFF;
  box-shadow: 0 0 3px rgba(0,0,0,.1);
  z-index: 999;
}
#mainHeader.style-front {
  margin-bottom: -85px;
}

#mainHeader.style-front .navbar {
    padding: 20px 0;
  transition: 0.3s ease-out;
}
@media (max-width: 991px) {
  #mainHeader.style-front .navbar.menu-open {
    background: #5c7457;
  }
}
#mainHeader.style-front #navbarNav .nav-item .nav-link {
  color: var(--primary);
}
#mainHeader.style-front .navbar-toggler {
  color: var(--primary);
}
#mainHeader .navbar-nav{
    align-items: center;
}
#mainHeader #navbarNav .nav-item {
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s ease-out;
}
@media (min-width: 992px) {
  #mainHeader #navbarNav .nav-item {
    margin-right: 20px;
  }
}
#mainHeader #navbarNav .nav-item:hover .nav-link,
#mainHeader #navbarNav .nav-item.active .nav-link {
  color: var(--primaryAlt);
}

#mainHeader #navbarNav .nav-item .nav-link {
  color: #000;
}
.main-footer {
  padding: 100px 0 0;
  background: var(--primary);
}
.main-footer__bottom {
  margin-top: 50px;
  border-top: 1px solid #4d4d4d;
}
.main-footer .title--footer {
  font-size: 24px;
  color: #fff;
  font-weight: 500;
}
.main-footer h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
}
.main-footer h4 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  padding: 0 0 15px 0;
}
.main-footer ul {
  list-style: none;
  padding: 0;
}
.main-footer p,
.main-footer li,
.main-footer a {
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 5px;
}
.main-footer a {
  color: #fff;
  transition: 0.3s ease-out;
}
.main-footer a:hover {
  color: #5c7457;
}
.main-footer .widget_block .container-fluid {
  padding: 0;
}
.main-footer .widget_block .mc4wp-form-fields input {
  outline: none;
  box-shadow: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.main-footer .widget_block .mc4wp-form-fields .btn {
  background: #3c812a;
  border-radius: 0;
  border-color: #3c812a;
}
.main-footer .widget_block .mc4wp-form-fields .btn:hover {
  background: #fff;
}
.main-footer .widget_block .social-links {
  list-style: none;
  padding: 0;
}
.main-footer .widget_block .social-links li + li {
  margin-left: -10px;
}
.main-footer .widget_block .social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  width: 30px;
  height: 30px;
  background: #5c7457;
  border-radius: 5px;
  padding: 2px;
  color: #fff;
  transition: 0.3s ease-out;
}
.main-footer .widget_block .social-links a:hover {
  background: rgb(68.8866995074, 86.8571428571, 65.1428571429);
}
.owl-carousel {
  position: relative;
}
.owl-carousel .owl-nav button {
  color: #fff !important;
  font-size: 26px !important;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
}
.owl-carousel .owl-nav .owl-prev {
  left: 15px;
}
.owl-carousel .owl-nav .owl-next {
  right: 15px;
}
.section {
  padding: 100px 0;
}
@media (max-width: 991px) {
  .section {
    padding: 75px 0;
  }
}
@media (max-width: 575px) {
  .section {
    padding: 55px 0;
  }
} /*# sourceMappingURL=style.css.map */

@media (min-width: 1600px) {
  body .container {
    max-width: 1560px;
  }
}
img {
  max-width: 100%;
}
.title {
  font-weight: 400;
  color: #000;
}
.title--main {
  font-size: 75px;
  font-weight: 300;
}
@media (max-width: 1399px) {
  .title--main {
    font-size: 68px;
  }
}
@media (max-width: 1199px) {
  .title--main {
    font-size: 58px;
  }
}
@media (max-width: 991px) {
  .title--main {
    font-size: 52px;
  }
}
@media (max-width: 767px) {
  .title--main {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .title--main {
    font-size: 34px;
  }
}
.title--section {
  font-size: 60px;
  font-weight: 300;
}
@media (max-width: 1399px) {
  .title--section {
    font-size: 54px;
  }
}
@media (max-width: 1199px) {
  .title--section {
    font-size: 46px;
  }
}
@media (max-width: 991px) {
  .title--section {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .title--section {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .title--section {
    font-size: 26px;
  }
}
.title--secondary {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 1.5px;
}
@media (max-width: 991px) {
  .title--secondary {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .title--secondary {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .title--secondary {
    font-size: 20px;
  }
}
.title--block {
  font-size: 35px;
  font-weight: 300;
}
@media (max-width: 1399px) {
  .title--block {
    font-size: 32px;
  }
}
@media (max-width: 1199px) {
  .title--block {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .title--block {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .title--block {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .title--block {
    font-size: 18px;
  }
}
.title--block a {
  text-decoration: none;
  transition: 0.3s ease-out;
  color: #333;
}
.title--block a:hover {
  text-decoration: underline;
}
.title--block.c-white a {
  color: #fff;
}
.title--block.c-white a:hover {
  color: #5c7457;
}
.title.c-white {
  color: #fff;
}
.title strong {
  font-weight: 600;
}
.subtitle {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 10px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .subtitle {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .subtitle {
    font-size: 16px;
  }
}
.subtitle.c-white {
  color: #fff;
}
.paragraph {
  color: #000;
  font-size: 18px;
  line-height: 35px;
}
@media (max-width: 575px) {
  .paragraph {
    font-size: 16px;
  }
}
.paragraph.c-white {
  color: #fff;
}
.paragraph.decoration {
  padding-bottom: 15px;
  position: relative;
}
.paragraph.decoration::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 25px;
  height: 1px;
  background: #fff;
}
.paragraph.s-big {
  font-size: 25px;
}
@media (max-width: 1199px) {
  .paragraph.s-big {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .paragraph.s-big {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .paragraph.s-big {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .paragraph.s-big {
    font-size: 16px;
  }
}

.section--projects {
  width: 100%;
  overflow: hidden;
}
.section--projects.type-projects {
  background: #5c7457;
}
.section--projects.type-projects .block:hover .content {
  background: #c9d6c5;
}
.section--projects.type-projects .block:hover .content .title a {
  color: #000;
}
.section--projects.type-projects .block .content {
  background: hsla(0, 0%, 100%, 0.2);
}
.section--projects.type-projects .block .content .title a {
  color: #fff;
}
.section--projects.type-post {
  background: #f9f4ee;
}
.section--projects.type-post .title--section,
.section--projects.type-post .subtitle {
  color: #000;
}
.section--projects.type-post .block .content {
  background: #fff;
}
.section--projects .sidebar-filters {
  border-radius: 10px;
  border: 1px solid #d4d4d4;
}
@media (max-width: 991px) {
  .section--projects .sidebar-filters {
    margin-bottom: 25px;
  }
}
.section--projects .sidebar-filters .filters-title {
  padding: 15px 20px;
  border-bottom: 1px solid #d4d4d4;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}
.section--projects .sidebar-filters ul {
  list-style: none;
}
.section--projects .sidebar-filters fieldset {
  padding-top: 15px;
}
.section--projects .sidebar-filters legend {
  font-size: 18px;
  font-weight: 500;
}
.section--projects .sidebar-filters legend,
.section--projects .sidebar-filters ul {
  padding: 0 20px;
}
.section--projects .sidebar-filters ul {
  padding-bottom: 20px;
  border-bottom: 1px solid #d4d4d4;
}
.section--projects .sidebar-filters ul li {
  font-size: 18px;
  font-weight: 500;
}
.section--projects .sidebar-filters .filter-actions {
  display: flex;
  padding: 15px 20px;
}
.section--projects .sidebar-filters .filter-actions .btn + .btn {
  margin-left: 10px;
}
.section--projects .carousel {
  transform: translateX(calc((100vw - 1560px) / 2));
}
@media (max-width: 1399px) {
  .section--projects .carousel {
    transform: translateX(calc((100vw - 1320px) / 2));
  }
}
@media (max-width: 1199px) {
  .section--projects .carousel {
    transform: translateX(calc((100vw - 960px) / 2));
  }
}
@media (max-width: 991px) {
  .section--projects .carousel {
    transform: translateX(calc((100vw - 720px) / 2));
  }
}
@media (max-width: 767px) {
  .section--projects .carousel {
    transform: translateX(calc((100vw - 540px) / 2));
  }
}
@media (max-width: 575px) {
  .section--projects .carousel {
    transform: translateX(0);
    padding: 0 15px;
  }
}
.section--projects .title--section {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .section--projects .title--section {
    margin-bottom: 25px;
  }
}
@media (max-width: 575px) {
  .section--projects .title--section {
    margin-bottom: 15px;
  }
}
.section--projects .paragraph {
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .section--projects .paragraph {
    margin-bottom: 55px;
  }
}
@media (max-width: 575px) {
  .section--projects .paragraph {
    margin-bottom: 35px;
  }
}
.section--projects .block {
  margin-bottom: 75px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}
@media (max-width: 991px) {
  .section--projects .block {
    margin-bottom: 55px;
  }
}
@media (max-width: 575px) {
  .section--projects .block {
    margin-bottom: 35px;
  }
}
.section--projects .block figure {
  height: 500px;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .section--projects .block figure {
    height: 420px;
  }
}
@media (max-width: 991px) {
  .section--projects .block figure {
    height: 380px;
  }
}
@media (max-width: 767px) {
  .section--projects .block figure {
    height: 300px;
  }
}
@media (max-width: 575px) {
  .section--projects .block figure {
    height: 260px;
  }
}
.section--projects .block figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.section--projects .block .content {
  padding: 30px 22px;
  transition: 0.3s ease-out;
}
@media (max-width: 991px) {
  .section--projects .block .content {
    padding: 20px 15px;
  }
}
@media (max-width: 575px) {
  .section--projects .block .content {
    padding: 14px 10px;
  }
}
.section--projects .block .content:hover {
  background: #c9d6c5;
}
.section--projects .block .content .title {
  transition: 0.3s ease-out;
  margin-bottom: 0;
}
.section--projects .block .content .title a {
  text-decoration: none;
  transition: 0.3s ease-out;
  color: #000;
} /*# sourceMappingURL=projects.css.map */
.social-links a {
  color: inherit;
}
.w-dmm_recurring_interval {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}
.fs-2,
.woocommerce-products-header__title {
  font-size: 40px !important;
}

@media (max-width: 767px) {
  .fs-2,
  .woocommerce-products-header__title {
    font-size: 24px !important;
  }
}

.fs-3 {
  font-size: 35px !important;
}

@media (max-width: 767px) {
  .fs-3 {
    font-size: 20px !important;
  }
}

.fs-4 {
  font-size: 26px !important;
}

@media (max-width: 767px) {
  .fs-4 {
    font-size: 18px !important;
  }
}

.fs-5 {
  font-size: 20px !important;
}

@media (max-width: 767px) {
  .fs-5 {
    font-size: 16px !important;
  }
}

.fs-6 {
  font-size: 18px !important;
}

@media (max-width: 767px) {
  .fs-6 {
    font-size: 16px !important;
  }
}

.fs-7 {
  font-size: 16px !important;
}

.fs-8 {
  font-size: 15px !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.uppercase {
  text-transform: uppercase;
}
.bg-primary {
  background: var(--primary) !important;
}

.bg-secondary {
  background: var(--secondary) !important;
}

.bg-gray {
  background: #f8f8f8 !important;
}

.section--breadcrumb a {
  text-decoration: none;
  color: #000;
}

.searchandfilter {
  border-radius: 10px;
  border: solid 1px #e9e9e9;
  padding: 0;
}

.searchandfilter .sf-input-checkbox {
  display: none;
}

.searchandfilter .sf-input-checkbox:checked + label::before {
  color: var(--primary);
}

.searchandfilter .sf-input-checkbox + label {
  position: relative;
  display: block;
  padding-left: 30px !important;
}

.searchandfilter .sf-input-checkbox + label::before {
  content: "";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0);
  width: 24px;
  height: 24px;
  font-size: 13px;
  line-height: 1;
  border-radius: 5px;
  position: absolute;
  left: -5px;
  top: 0;
  border: solid 1px #e6e6e6;
  transition: 0.3s ease-out;
}

.searchandfilter > ul {
  padding: 0;
}

.searchandfilter > ul > li {
  padding: 0 25px;
}

.searchandfilter > ul > li h4 {
  padding-top: 20px;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
}

.searchandfilter > ul > li h4:not(.collapsed)::before {
  transform: rotate(180deg) translateY(3px);
}

.searchandfilter > ul > li h4::before {
  content: "";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  position: absolute;
  color: var(--primary);
  left: 0;
  top: 21px;
  transition: 0.3s ease-out;
}

.searchandfilter > ul > li + li {
  border-top: solid 1px #e9e9e9;
}

.searchandfilter ul > li ul > li:last-child {
  padding-bottom: 20px;
}

.searchandfilter ul > li > ul:not(.children) {
  padding: 0;
}

.content-editor a:not(.btn) {
  color: var(--primary);
}
.p-gallery figure {
  position: relative;
  padding-bottom: 120%;
  border-radius: 5px;
  overflow: hidden;
  border: solid 1px #ebebeb;
  background: #000000;
}
.p-gallery figure img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-out;
}
.p-gallery figure:hover img {
  opacity: 0.8;
}
.project__status strong {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.project__status span {
  border: solid 1px #ebebeb;
  border-top: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.project__files {
  margin: 20px 0;
  padding: 20px 0;
  border-top: solid 1px #ebebeb;
  border-top: solid 1px #ebebeb;
}
.project__partners {
  margin: 20px 0;
  padding: 20px 0;
  border-top: solid 1px #ebebeb;
}
.project-sidebar {
  position: sticky;
  top: 0;
}
.cloud-tag {
  flex-wrap: wrap;
}

.cloud-tag a {
  border: solid 1px var(--primary);
  border-radius: 20px;
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  transition: 0.3s ease-out;
}
.cloud-tag a:hover {
  background: var(--primary);
  color: #ffffff;
}

.section--single-agenda figure {
  position: relative;
  padding-bottom: 50%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
  margin: 0 0 30px;
}

.btn.btn-white-secondary {
  background: #fff;
  color: var(--primary);
  border: solid 1px var(--primary);
}

.btn.btn-white-secondary::before {
  background: var(--primary);
}

.btn.btn-white-secondary:hover {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.8) !important;
}

.main-footer .mc_container {
  color: #ffffff;
}
.main-footer .mc_container .mc_custom_border_hdr {
  font-weight: 700;
}
.main-footer .mc_container .mc_input {
  color: #000;
  border-radius: 40px;
  border: solid 1px #ffffff;
  padding-left: 30px;
}
.main-footer .mc_container .mc_success_msg {
  color: var(--primary) !important;
}
.main-footer .mc_container .mc_signup_submit_button {
  margin: 0;
  background: var(--primary);
  border: solid 1px var(--primary);
  color: #ffffff;
  width: 100%;
  border-radius: 40px;
  text-transform: uppercase;
}
.section--payment{
    background: var(--primary) !important;
}
.section--simple-hero.c-green{
    background: var(--primary) !important;
}
.cc-color-override--1951263631.cc-window{
    background: var(--secondary) !important;
}
.cc-color-override--1951263631 .cc-btn{
    background: var(--primary) !important;
    color: #FFFFFF!important;
}
.section--simple-content blockquote{
    background: var(--secondary) !important;
}
.section--simple-content blockquote+blockquote{
    background: var(--primary) !important;
}
.section--simple-hero.c-beige{
    background: var(--secondary) !important;
}
.custom-logo-link img{
    width: 80px !important;
}