/*
 * ACE — canonical site stylesheet
 *
 * Single hand-maintained stylesheet. There is no SCSS/build step:
 * edit this file directly. Rules are grouped in source order:
 * Reset, Lazy-load, Base/Theme, Global (Subscribe, Top Navigation,
 * Footer), Home, Donate, Get Involved, Contact, About ACE, Our Work.
 */

/* ===================== RESET ===================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
*,
:after,
:before {
  box-sizing: border-box;
}

/* ===================== LAZY-LOAD ===================== */
.lazy-fade {
  opacity: 0;
  transition:
    opacity 1s ease-out,
    transform 1s ease-out;
}
.lazy-fade.lazy-show {
  opacity: 1;
}
.lazy-fade.lazy-fade-left:not(.lazy-show) {
  transform: translate(25px, 0px);
}
.lazy-fade.lazy-fade-right:not(.lazy-show) {
  transform: translate(-25px, 0px);
}
.lazy-fade.lazy-fade-up:not(.lazy-show) {
  transform: translate(0px, 25px);
}
.lazy-fade.lazy-fade-down:not(.lazy-show) {
  transform: translate(0px, -25px);
}

/* ===================== BASE / THEME ===================== */
body {
  /* Offset for the fixed navbar. The 81px fallback covers the common single-row
     nav; JS (footer-scripts.php) updates --ace-nav-height to the navbar's real
     height so the urgent banner and hero aren't clipped when the nav links wrap
     onto extra rows at certain widths. */
  margin-top: var(--ace-nav-height, 81px) !important;
  font-size: 10px;
  font-family: "Raleway", sans-serif;
}
.theme-container {
  width: 450px;
  max-width: calc(100% - 30px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .theme-container {
    width: 100%;
    max-width: calc(100% - 20vw);
    margin: 0 10vw;
  }
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: 500;
  font-family: "Raleway", sans-serif;
  line-height: 1.4;
}
p,
span,
a {
  padding-bottom: 15px;
  line-height: 1.4;
  font-family: "Raleway", sans-serif;
}
p,
span,
li,
a,
button {
  font-size: calc(14px + (14 - 14) * (100vw - 350px) / 1250);
}
h1,
h2,
h3,
h4,
h5,
span,
p,
span,
li,
a {
  color: #6e6a5a;
}
a:hover {
  text-decoration: none;
  color: #6e6a5a;
}
.theme-text-orange {
  color: #f5ae1e;
}
.bg-theme-one {
  background-color: #45a55c;
  color: #fff;
}
.bg-theme-one:hover {
  color: #fff;
}
.bg-theme-two {
  background-color: #f5ae1e;
  color: #fff;
}
.bg-theme-two:hover {
  color: #fff;
}
.bg-theme-red {
  background-color: #de423e;
  color: #fff;
}
.bg-theme-red:hover {
  color: #fff;
}
.bg-theme-red-light {
  background-color: #ee918d;
  color: #fff;
}
.bg-theme-red-light:hover {
  color: #fff;
}
.m-t-0 {
  margin-top: 0px !important;
}
.m-t-10 {
  margin-top: 10px !important;
}
.m-t-20 {
  margin-top: 20px !important;
}
.m-t-30 {
  margin-top: 30px !important;
}
.m-t-40 {
  margin-top: 40px !important;
}
.m-t-50 {
  margin-top: 50px !important;
}
.m-r-0 {
  margin-right: 0px !important;
}
.m-r-10 {
  margin-right: 10px !important;
}
.m-r-20 {
  margin-right: 20px !important;
}
.m-r-30 {
  margin-right: 30px !important;
}
.m-r-40 {
  margin-right: 40px !important;
}
.m-r-50 {
  margin-right: 50px !important;
}
.m-b-0 {
  margin-bottom: 0px !important;
}
.m-b-10 {
  margin-bottom: 10px !important;
}
.m-b-20 {
  margin-bottom: 20px !important;
}
.m-b-30 {
  margin-bottom: 30px !important;
}
.m-b-40 {
  margin-bottom: 40px !important;
}
.m-b-50 {
  margin-bottom: 50px !important;
}
.m-l-0 {
  margin-left: 0px !important;
}
.m-l-10 {
  margin-left: 10px !important;
}
.m-l-20 {
  margin-left: 20px !important;
}
.m-l-30 {
  margin-left: 30px !important;
}
.m-l-40 {
  margin-left: 40px !important;
}
.m-l-50 {
  margin-left: 50px !important;
}
.text-underline {
  text-decoration: underline;
}
.theme-primary-btn {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 5px;
  font-size: calc(17px + (19 - 17) * (100vw - 350px) / 1250);
  border: none;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease-out;
  color: #fff;
}
.theme-primary-btn:hover {
  color: #fff !important;
  transform: translateY(-5px);
  text-decoration: none;
  font-weight: 600;
}

/* ===================== GLOBAL — SUBSCRIBE ===================== */
#subscribe-section {
  width: 100%;
  overflow: none;
  padding: 50px 0;
  background-color: #f5ae1e;
}
#subscribe-section form[id*="vcrm"] .v_fw .v_fr .v_fc {
  padding: 0px;
}
#subscribe-section .sub-tagline,
#subscribe-section .v_fc p {
  width: 1000px;
  max-width: 100%;
  color: #fefffe;
  font-size: calc(19px + (22 - 19) * (100vw - 350px) / 1250);
  font-weight: 500;
  letter-spacing: 0.32px;
  line-height: 45px;
  text-align: center;
  margin: 0 auto 35px;
}
#subscribe-section .sub-title-tagline,
#subscribe-section h2.v_fh__wb,
#subscribe-section .v_txm p {
  border: none;
  padding: 0;
  width: 1000px;
  max-width: 100%;
  color: #fefffe;
  font-size: calc(25px + (35 - 25) * (100vw - 350px) / 1250);
  font-weight: bold;
  letter-spacing: 0.32px;
  line-height: 45px;
  text-align: center;
  margin: 0 auto;
}
#subscribe-section .sub-input,
#subscribe-section input[type="text"],
#subscribe-section input[type="email"] {
  height: 50px;
  border: 1px solid #af7c14;
  background-color: #fff;
  font-size: calc(19px + (22 - 19) * (100vw - 350px) / 1250);
  font-weight: 300;
  letter-spacing: 0.2px;
  line-height: 29px;
}
#subscribe-section .sub-btn,
#subscribe-section button[type="submit"] {
  color: #fefffe;
  font-weight: bold;
  background-color: #af7c14;
  border: 1px solid #af7c14;
  text-transform: uppercase;
  padding: 12px 30px !important;
  width: 100%;
}
#subscribe-section .sub-btn:hover,
#subscribe-section button[type="submit"]:hover {
  background-color: #91660f;
}
@media screen and (min-width: 768px) {
  #subscribe-section #sub-alert-message {
    width: 35vw;
  }
}
#popup-subscribe-section {
  width: 100%;
  overflow: none;
  padding: 50px 0;
  background-color: #f5ae1e;
}
#popup-subscribe-section .sub-tagline {
  width: 1000px;
  max-width: 100%;
  color: #fefffe;
  font-size: calc(19px + (22 - 19) * (100vw - 350px) / 1250);
  font-weight: 500;
  letter-spacing: 0.32px;
  line-height: 45px;
  text-align: center;
  margin: 0 auto 35px;
}
#popup-subscribe-section .sub-title-tagline {
  width: 1000px;
  max-width: 100%;
  color: #fefffe;
  font-size: calc(25px + (35 - 25) * (100vw - 350px) / 1250);
  font-weight: bold;
  letter-spacing: 0.32px;
  line-height: 45px;
  text-align: center;
  margin: 0 auto;
}
#popup-subscribe-section .sub-input {
  height: 50px;
  border: 1px solid #af7c14;
  background-color: #fff;
  font-size: calc(19px + (22 - 19) * (100vw - 350px) / 1250);
  font-weight: 300;
  letter-spacing: 0.2px;
  line-height: 29px;
}
@media screen and (min-width: 992px) {
  #popup-subscribe-section .sub-input {
    width: 250px;
  }
}
#popup-subscribe-section .sub-btn,
#popup-subscribe-section button[type="submit"] {
  color: #fefffe;
  font-size: calc(19px + (22 - 19) * (100vw - 350px) / 1250);
  font-weight: bold;
  background-color: #af7c14;
  border: 1px solid #af7c14;
  text-transform: uppercase;
}
#popup-subscribe-section .sub-btn:hover,
#popup-subscribe-section button[type="submit"]:hover {
  background-color: #91660f;
}
@media screen and (min-width: 768px) {
  #popup-subscribe-section .sub-btn,
  #popup-subscribe-section button[type="submit"] {
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  #popup-subscribe-section #sub-alert-message {
    width: 35vw;
  }
}

/* ===================== GLOBAL — TOP NAVIGATION ===================== */
.navbar-brand {
  padding: 0 !important;
}
.navbar-brand img {
  display: block;
  height: 65px;
}
.navbar.bg-light {
  background-color: #fff !important;
  box-shadow: 0px 4px 18px -6px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 992px) {
  .navbar.bg-light .nav-item.nav-item-donate {
    margin-left: auto;
  }
}
.navbar.bg-light .nav-item.nav-item-donate a {
  color: #fff;
  padding: 10px 20px;
  margin: 10px 0;
  display: inline-block !important;
}
@media screen and (min-width: 992px) {
  .navbar.bg-light .nav-item.nav-item-donate a.donate {
    display: none !important;
  }
}
@media screen and (min-width: 1400px) {
  .navbar.bg-light .nav-item.nav-item-donate a.donate {
    display: inline-block !important;
  }
}
.navbar.bg-light .nav-item .nav-link {
  padding: 20px;
}
.navbar.bg-light .nav-item .nav-link.active {
  color: #45a55c;
  font-weight: bold;
}
.navbar.bg-light .nav-item .dropdown-toggle:focus {
  outline: none;
}
.navbar.bg-light .nav-item a {
  color: #6e6a5a;
  padding: 20px;
  text-decoration: none;
  font-size: calc(17px + (19 - 17) * (100vw - 350px) / 1250);
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}
.navbar.bg-light .nav-item .dropdown-item {
  text-align: left;
  padding-top: 15px;
  padding-bottom: 15px;
}
.navbar.bg-light .dropdown-menu {
  top: 90%;
}
@media screen and (max-width: 992px) {
  .navbar.bg-light ul.navbar-nav {
    max-height: 70vh;
    overflow-y: auto;
  }
}

/* ===================== GLOBAL — URGENT BANNER ===================== */
#urgent-banner {
  width: 100%;
  background-color: #45a55c;
  color: #fff;
  font-family: "Open Sans", sans-serif;
}
#urgent-banner .ub-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 14px;
  text-align: center;
}
#urgent-banner .ub-message {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  padding-bottom: 0;
}
#urgent-banner .ub-link {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 0;
}
#urgent-banner .ub-link:hover,
#urgent-banner .ub-link:focus {
  color: #fff;
  text-decoration: none;
}
#urgent-banner .ub-arrow {
  font-style: normal;
  color: #fff;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  #urgent-banner .ub-inner {
    padding: 8px 15px;
  }
  #urgent-banner .ub-message,
  #urgent-banner .ub-link {
    font-size: 14px;
  }
}

/* ===================== GLOBAL — FOOTER ===================== */
#footer {
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 20px;
}
#footer .foot-navigation {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  flex-wrap: wrap;
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  #footer .foot-navigation {
    flex-direction: row;
  }
}
#footer .foot-link {
  font-size: calc(19px + (22 - 19) * (100vw - 350px) / 1250);
  color: #6e6a5a;
  line-height: 1;
  margin-right: 40px;
  padding-bottom: 30px;
  white-space: nowrap;
}
#footer .foot-link:hover {
  text-decoration: none;
}
#footer .foot-info {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  flex-wrap: nowrap;
  margin: 30px 0px;
}
@media screen and (min-width: 768px) {
  #footer .foot-info {
    flex-direction: row;
  }
}
#footer .foot-info p,
#footer .foot-info a {
  color: #706f4a;
  font-size: calc(19px + (22 - 19) * (100vw - 350px) / 1250);
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 32px;
  padding: 0;
}
#footer .foot-info a {
  text-decoration: underline;
}
#footer .foot-address {
  margin: 0 0 20px 0;
}
#footer .foot-address p {
  margin: 0;
}
@media screen and (min-width: 768px) {
  #footer .foot-address {
    margin: 0 35px 0 0;
  }
}
#footer .foot-social {
  margin: 30px 0px;
}
#footer .foot-social i {
  height: 40px;
  width: 36px;
  color: #45a55c;
  font-family: "Font Awesome 5 Brands";
  font-size: 40px;
  letter-spacing: 0.33px;
  line-height: 40px;
  margin-right: 30px;
}
#footer .foot-copy p {
  color: #706f4a;
  font-size: calc(19px + (22 - 19) * (100vw - 350px) / 1250);
  font-weight: 300;
  letter-spacing: 0.2px;
  line-height: 29px;
}
#footer .foot-creds {
  color: #707045;
  letter-spacing: 0.2px;
}
@media screen and (min-width: 1024px) {
  #footer .foot-creds {
    position: absolute;
    top: 0;
    right: 0;
  }
}
#footer .foot-creds p,
#footer .foot-creds i,
#footer .foot-creds a {
  font-size: calc(19px + (22 - 19) * (100vw - 350px) / 1250);
  line-height: 32px;
  padding: 0;
}
#footer .foot-creds i {
  color: #45a55c;
}
#footer .foot-creds a {
  text-decoration: underline;
}
#footer .foot-creds a:not(.foot-link) {
  color: #45a55c;
}
#footer .theme-container {
  position: relative;
}
#footer .foot-seperator {
  width: 100%;
  height: 0;
  border-bottom: 1px dashed #6e6a5a;
}

/* ===================== HOME ===================== */
#feature-section-home {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 85vh;
  min-height: 300px;
  background-image: url("https://res.cloudinary.com/dken1avzn/image/upload/c_scale,f_auto,w_2000/Home/Header_2025_12_21_V2.jpg");
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width: 768px) {
  #feature-section-home {
    background-image: url("https://res.cloudinary.com/dken1avzn/image/upload/c_scale,f_auto,w_3000/Home/Header_2025_12_21_V2.jpg");
  }
}
@media screen and (min-width: 1366px) {
  #feature-section-home {
    background-image: url("https://res.cloudinary.com/dken1avzn/image/upload/f_auto/Home/Header_2025_12_21_V2.jpg");
  }
}
#feature-section-home .fs-feature-img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#feature-section-home .fs-feature-filter {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%);
}
#feature-section-home .fs-content-block {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 50px;
  color: #fff;
}
#feature-section-home .fs-title-one {
  color: #fff;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 15px;
  text-align: left;
  font-size: calc(25px + (35 - 25) * (100vw - 350px) / 1250);
}
@media screen and (min-width: 768px) {
  #feature-section-home .fs-title-one {
    margin: 0 0 5px;
  }
}
#feature-section-home .fs-title-two {
  color: #fff;
  line-height: 1.3;
  font-weight: 600;
  margin: 0 0 15px;
  text-align: left;
  font-size: calc(22px + (25 - 22) * (100vw - 350px) / 1250);
}
#feature-section-home .fs-title-three {
  color: #fff;
  line-height: 1.3;
  font-weight: 600;
  margin: 0 0 15px;
  text-align: left;
  font-size: calc(19px + (22 - 19) * (100vw - 350px) / 1250);
}
#feature-section-home .fs-title-four {
  color: #fff;
  line-height: 1.3;
  font-weight: 600;
  margin: 0 0 15px;
  text-align: left;
  font-size: calc(16px + (16 - 16) * (100vw - 350px) / 1250);
}
#overview-section {
  width: 100%;
  overflow: none;
}
#overview-section .os-flexbox {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  #overview-section .os-flexbox {
    flex-direction: row;
    height: 550px;
  }
}
#overview-section .os-content-block {
  flex: 1;
  padding: 25px 0;
  background-image: url("https://res.cloudinary.com/dken1avzn/image/upload/logo-color3.svg");
  background-repeat: no-repeat;
  background-size: 75vw auto;
  background-position: 50vw 75px;
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  #overview-section .os-content-block {
    background-size: 30vw auto;
    background-position: 25vw 75px;
    width: 50%;
    position: relative;
  }
}
#overview-section .os-content {
  width: 450px;
  max-width: calc(100% - 30px);
  margin: 0 auto;
  vertical-align: center;
}
@media screen and (min-width: 768px) {
  #overview-section .os-content {
    width: 450px;
    max-width: calc(100% - 8vw);
    margin: 0 auto 0 5vw;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 1366px) {
  #overview-section .os-content {
    width: 450px;
    max-width: calc(100% - 20vw);
    margin: 0 auto 0 10vw;
  }
}
#overview-section .os-content h2 {
  font-size: calc(22px + (25 - 22) * (100vw - 350px) / 1250);
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 15px;
}
#overview-section .os-content p,
#overview-section .os-content a {
  font-size: calc(19px + (22 - 19) * (100vw - 350px) / 1250);
}
#overview-section .os-graphic {
  height: 70vw;
  width: 100%;
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width: 768px) {
  #overview-section .os-graphic {
    flex: 1;
    height: 100%;
  }
}
#our-impact-home {
  width: 100%;
  overflow: none;
  padding: 50px 0;
  background-color: #45a55c;
  color: #fff;
  text-align: center;
  position: relative;
}
#our-impact-home .oi-title {
  color: #fff;
  font-size: 36px;
  line-height: 42px;
  font-size: calc(25px + (35 - 25) * (100vw - 350px) / 1250);
}
#our-impact-home .oi-flexbox {
  display: flex;
  flex-direction: column;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #our-impact-home .oi-flexbox {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
#our-impact-home .oi-card {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  #our-impact-home .oi-card {
    flex: 1 1 50%;
    margin-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  #our-impact-home .oi-card {
    flex: 1 1 25%;
  }
}
#our-impact-home .oi-card i {
  display: block;
  font-size: calc(50px + (65 - 50) * (100vw - 350px) / 1250);
  margin-bottom: 15px;
}
#our-impact-home .oi-card span {
  color: #fff;
  display: block;
  font-size: calc(50px + (65 - 50) * (100vw - 350px) / 1250);
  font-weight: bold;
  line-height: 76px;
  letter-spacing: -1.49px;
}
#our-impact-home .oi-card .oi-card-label {
  color: #fff;
  font-size: calc(22px + (25 - 22) * (100vw - 350px) / 1250);
  letter-spacing: 0.13px;
  line-height: 29px;
  text-align: center;
}
#our-impact-home .oi-subcontent {
  color: #fff;
  font-size: calc(25px + (35 - 25) * (100vw - 350px) / 1250);
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 45px;
  text-align: center;
  width: 750px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #our-impact-home .oi-subcontent {
    font-size: 38px;
  }
}
#our-impact-home hr {
  margin: 50px 0;
}
#our-impact-home .triangle {
  width: 0;
  height: 0;
  border-left: 123px solid rgba(0, 0, 0, 0);
  border-right: 123px solid rgba(0, 0, 0, 0);
  border-top: 83px solid #45a55c;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}
#card-navigation {
  width: 100%;
  overflow: none;
  padding: 100px 0 0;
}
#card-navigation .cnav-flexbox {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  #card-navigation .cnav-flexbox {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 850px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1250px) {
  #card-navigation .cnav-flexbox {
    max-width: 1200px;
  }
}
#card-navigation .cnav-card {
  max-width: 350px;
  position: relative;
  border-radius: 5px;
  align-self: center;
  margin-bottom: 125px;
  box-shadow: rgba(0, 0, 0, 0.25) 10px 14px 20px;
}
@media screen and (min-width: 1024px) {
  #card-navigation .cnav-card {
    min-height: 425px;
    flex: 1 1 350px;
  }
}
@media screen and (min-width: 1250px) {
  #card-navigation .cnav-card {
    min-height: 460px;
    margin-bottom: 75px;
  }
}
#card-navigation .cnav-card a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  z-index: 100;
}
#card-navigation .cnav-card a:hover ~ .cnav-card-footer .cnav-card-arrow {
  width: 42px;
  transition: width 0.2s linear;
  display: block;
}
#card-navigation .cnav-card .cnav-card-header,
#card-navigation .cnav-card .cnav-card-image {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  border-radius: 5px 5px 0 0;
}
#card-navigation .cnav-card .cnav-card-header-inner {
  text-align: center;
  width: 100%;
}
#card-navigation .cnav-card .cnav-card-header-inner h3,
#card-navigation .cnav-card .cnav-card-header-inner i {
  font-size: calc(22px + (25 - 22) * (100vw - 350px) / 1250);
  color: #fff;
  font-weight: bold;
  margin-bottom: 15px;
}
#card-navigation .cnav-card .cnav-card-header-inner h3 {
  margin-bottom: 0;
}
#card-navigation .cnav-card .cnav-card-image {
  background-position: center center;
  background-size: cover;
}
#card-navigation .cnav-card .cnav-card-content {
  padding: 25px;
}
#card-navigation .cnav-card .cnav-card-content p {
  font-size: calc(17px + (19 - 17) * (100vw - 350px) / 1250);
  color: #fff;
}
#card-navigation .cnav-card .cnav-card-footer {
  width: 100%;
  padding: 25px 0;
  text-align: center;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.35);
  border-radius: 0 0 5px 5px;
  transition: height 0.5s ease-out;
  display: block;
  height: 74px;
}
#card-navigation .cnav-card .cnav-card-footer p,
#card-navigation .cnav-card .cnav-card-footer i {
  display: inline-block;
  padding-bottom: 30px;
  line-height: 1;
  font-size: calc(22px + (25 - 22) * (100vw - 350px) / 1250);
  font-weight: bold;
  color: #fffffe;
  text-transform: uppercase;
}
#card-navigation .cnav-card .cnav-card-footer .cnav-card-arrow {
  float: right;
  width: 0px;
  transition: width 0.2s linear;
  display: invisible;
}
#card-navigation .cnav-card .cnav-card-footer .cnav-card-arrow i {
  padding-bottom: 0px;
}
@media screen and (min-width: 1024px) {
  #card-navigation .cnav-card .cnav-card-footer {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
#card-navigation .cnav-card.cnav-card-give {
  background-color: #de423f;
}
#card-navigation .cnav-card.cnav-card-volunteer {
  background-color: #f5ae1e;
}
#card-navigation .cnav-card.cnav-card-volunteer .cnav-card-image {
  background-image: url("https://res.cloudinary.com/dken1avzn/image/upload/c_scale,f_auto,w_1200/v1565451703/Home/Volunteer.jpg");
}
@media screen and (min-width: 768px) {
  #card-navigation .cnav-card.cnav-card-volunteer .cnav-card-image {
    background-image: url("https://res.cloudinary.com/dken1avzn/image/upload/c_scale,f_auto,w_2000/v1565451703/Home/Volunteer.jpg");
  }
}
#card-navigation .cnav-card.cnav-card-donate {
  background-color: #5dc2ce;
}
#card-navigation .cnav-card.cnav-card-donate .cnav-card-image {
  background-image: url("https://res.cloudinary.com/dken1avzn/image/upload/c_scale,f_auto,w_1200/v1565451704/Home/Donate.jpg");
}
@media screen and (min-width: 768px) {
  #card-navigation .cnav-card.cnav-card-donate .cnav-card-image {
    background-image: url("https://res.cloudinary.com/dken1avzn/image/upload/c_scale,f_auto,w_2000/v1565451704/Home/Donate.jpg");
  }
}
#card-navigation .cnav-card.cnav-card-mentor {
  background-color: #6e6a5a;
}
#card-navigation .cnav-card.cnav-card-mentor .cnav-card-image {
  background-image: url("https://res.cloudinary.com/dken1avzn/image/upload/c_scale,f_auto,w_1200/v1565451703/Home/Mentor.jpg");
}
@media screen and (min-width: 768px) {
  #card-navigation .cnav-card.cnav-card-mentor .cnav-card-image {
    background-image: url("https://res.cloudinary.com/dken1avzn/image/upload/c_scale,f_auto,w_2000/v1565451703/Home/Mentor.jpg");
  }
}
#card-navigation .cnav-card.cnav-card-fundraise {
  background-color: #ea6f13;
}
#card-navigation .cnav-card.cnav-card-fundraise .cnav-card-image {
  background-image: url("https://res.cloudinary.com/dken1avzn/image/upload/c_scale,f_auto,w_1200/v1566231916/Home/Fundraise.jpg");
}
@media screen and (min-width: 768px) {
  #card-navigation .cnav-card.cnav-card-fundraise .cnav-card-image {
    background-image: url("https://res.cloudinary.com/dken1avzn/image/upload/c_scale,f_auto,w_2000/v1566231916/Home/Fundraise.jpg");
  }
}
#card-navigation .cnav-card.cnav-card-details {
  background-color: #45a55c;
}

/* ===================== DONATE ===================== */
#feature-section-donate {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 90vh;
  min-height: 400px;
  background-image: url("https://res.cloudinary.com/dken1avzn/image/upload/c_scale,f_auto,w_1200/Donate/Header.jpg");
  background-size: cover;
  background-position: top center;
}
@media screen and (min-width: 1024px) {
  #feature-section-donate {
    background-image: url("https://res.cloudinary.com/dken1avzn/image/upload/c_scale,f_auto,w_2000/Donate/Header.jpg");
    height: 700px;
  }
  #feature-section-donate .theme-container {
    margin: 0;
    max-width: 100%;
  }
}
#feature-section-donate .fs-feature-img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#feature-section-donate .fs-feature-filter {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
#feature-section-donate .fs-africa-outline {
  position: relative;
  max-height: 80%;
  height: 650px;
  width: auto;
  top: 50%;
  left: 15vw;
  transform: translateY(-50%);
  display: none;
}
@media screen and (min-width: 1024px) {
  #feature-section-donate .fs-africa-outline {
    display: block;
  }
}
#feature-section-donate .fs-content-block {
  position: absolute;
  display: block;
  max-width: 100%;
  bottom: 50px;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  #feature-section-donate .fs-content-block {
    top: 28%;
    left: 40vw;
    bottom: unset;
    width: 750px;
    max-width: 60vw;
    padding-right: 15px;
  }
}
@media screen and (min-width: 1500px) {
  #feature-section-donate .fs-content-block {
    left: 33vw;
  }
}
#feature-section-donate .fs-title {
  color: #fff;
  line-height: 1.2;
  font-weight: bold;
  margin: 0 0 10px 0;
  text-align: left;
  font-size: calc(25px + (35 - 25) * (100vw - 350px) / 1250);
}
#feature-section-donate .fs-subtitle {
  color: #fff;
  line-height: 29px;
  font-size: calc(22px + (25 - 22) * (100vw - 350px) / 1250);
}
@media screen and (min-width: 1024px) {
  #feature-section-donate .fs-subtitle {
    font-size: calc(19px + (22 - 19) * (100vw - 350px) / 1250);
  }
}
#feature-section-donate .fs-quote-block {
  position: absolute;
  font-style: italic;
  color: #fff;
  display: none;
  font-size: calc(19px + (22 - 19) * (100vw - 350px) / 1250);
  top: 60%;
  left: 60vw;
  width: 540px;
  max-width: 40vw;
  padding-right: 25px;
}
@media screen and (min-width: 1024px) {
  #feature-section-donate .fs-quote-block {
    display: block;
  }
}
@media screen and (min-width: 1300px) {
  #feature-section-donate .fs-quote-block {
    left: 52vw;
  }
}
@media screen and (min-width: 1500px) {
  #feature-section-donate .fs-quote-block {
    left: 48vw;
  }
}
@media screen and (min-width: 1600px) {
  #feature-section-donate .fs-quote-block {
    left: 45vw;
  }
}
@media screen and (min-width: 1900px) {
  #feature-section-donate .fs-quote-block {
    left: 40vw;
  }
}
#subnavigation {
  width: 100%;
  overflow: none;
}
#subnavigation .subnav-flexbox {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  #subnavigation .subnav-flexbox {
    flex-direction: row;
  }
}
#subnavigation .subnav-card {
  padding: 50px 25px 150px;
  position: relative;
}
@media screen and (min-width: 768px) {
  #subnavigation .subnav-card {
    width: 33.3333333333%;
  }
}
#subnavigation .subnav-card a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  z-index: 100;
}
#subnavigation .subnav-card a:hover ~ .subnav-card-footer .subnav-card-arrow {
  width: 42px;
  transition: width 0.2s linear;
}
#subnavigation .subnav-card .subnav-card-footer {
  width: 100%;
  padding: 25px 0;
  text-align: center;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.35);
  border-radius: 0;
  transition: height 0.5s ease-out;
  display: block;
  height: 74px;
  position: absolute;
  bottom: 0;
  left: 0;
}
#subnavigation .subnav-card .subnav-card-footer p,
#subnavigation .subnav-card .subnav-card-footer i {
  display: inline-block;
  padding-bottom: 30px;
  line-height: 1;
  font-size: calc(22px + (25 - 22) * (100vw - 350px) / 1250);
  color: #fffffe;
  text-transform: uppercase;
}
#subnavigation .subnav-card .subnav-card-footer .subnav-card-arrow {
  float: right;
  width: 0px;
  transition: width 0.2s linear;
}
#subnavigation .subnav-card .subnav-card-footer .subnav-card-arrow i {
  padding-bottom: 0px;
}
#subnavigation .subnav-card .subnav-title {
  color: #fffffe;
  font-size: calc(25px + (35 - 25) * (100vw - 350px) / 1250);
  line-height: 1;
  padding-bottom: 15px;
}
#subnavigation .subnav-card .subnav-subtitle {
  font-style: italic;
}
#subnavigation .subnav-card p {
  color: #fffffe;
  font-size: calc(19px + (22 - 19) * (100vw - 350px) / 1250);
  padding-bottom: 15px;
}
#subnavigation .subnav-card:nth-child(1) {
  background-color: #45a55c;
}
#subnavigation .subnav-card:nth-child(2) {
  background-color: #ea6f13;
}
#subnavigation .subnav-card:nth-child(3) {
  background-color: #5dc2ce;
}
#subnavigation .subnav-card:nth-child(4) {
  background-color: #de423f;
}
#subnavigation .subnav-card:nth-child(5) {
  background-color: gray;
}
#subnavigation .subnav-card:nth-child(6) {
  background-color: #f5ae1e;
}
#our-impact-donate {
  width: 100%;
  overflow: none;
  padding: 50px 0;
  background-color: #45a55c;
  color: #fff;
  text-align: center;
  position: relative;
}
#our-impact-donate .oi-title {
  color: #fff;
  font-size: 36px;
  line-height: 42px;
  font-size: calc(19px + (22 - 19) * (100vw - 350px) / 1250);
}
#our-impact-donate .oi-flexbox {
  display: flex;
  flex-direction: column;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #our-impact-donate .oi-flexbox {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
#our-impact-donate .oi-card {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  #our-impact-donate .oi-card {
    flex: 1 1 50%;
    margin-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  #our-impact-donate .oi-card {
    flex: 1 1 25%;
  }
}
#our-impact-donate .oi-card i {
  display: block;
  font-size: calc(50px + (65 - 50) * (100vw - 350px) / 1250);
  margin-bottom: 15px;
}
#our-impact-donate .oi-card span {
  color: #fff;
  display: block;
  font-size: calc(50px + (65 - 50) * (100vw - 350px) / 1250);
  font-weight: bold;
  line-height: 76px;
  letter-spacing: -1.49px;
}
#our-impact-donate .oi-card .oi-card-label {
  color: #fff;
  font-size: calc(22px + (25 - 22) * (100vw - 350px) / 1250);
  letter-spacing: 0.13px;
  line-height: 29px;
  text-align: center;
}

/* ===================== GET INVOLVED ===================== */
#feature-section-involved {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 85vh;
  min-height: 300px;
  background-image: url("../img/Get Involved_Header_1200.jpeg");
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width: 768px) {
  #feature-section-involved {
    background-image: url("../img/Get Involved_Header_2000.jpeg");
  }
}
#feature-section-involved .fs-feature-img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#feature-section-involved .fs-feature-filter {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
#feature-section-involved .fs-content-block {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 50px;
  color: #fff;
}
#feature-section-involved .fs-title-one {
  color: #fff;
  line-height: 1.2;
  font-weight: 600;
  margin: 0;
  text-align: left;
  font-size: calc(25px + (35 - 25) * (100vw - 350px) / 1250);
}
#Get-Involved-Desktop {
  display: none;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  #Get-Involved-Desktop {
    display: block;
  }
}
#Get-Involved-Desktop .ginv-flexbox {
  display: flex;
  flex-direction: row;
  flex-direction: nowrap;
}
#Get-Involved-Desktop .ginv-flex-col {
  flex: 1;
  width: 50%;
  padding: 50px 0;
}
#Get-Involved-Desktop .ginv-flex-col:first-child {
  padding-right: 100px;
}
#Get-Involved-Desktop .ginv-flex-col * {
  color: #fff;
  line-height: 1.8;
}
#Get-Involved-Desktop .ginv-flex-col p,
#Get-Involved-Desktop .ginv-flex-col a {
  font-size: calc(17px + (19 - 17) * (100vw - 350px) / 1250);
}
#Get-Involved-Desktop .ginv-flex-col p.underline,
#Get-Involved-Desktop .ginv-flex-col a.underline {
  text-decoration: underline;
}
#Get-Involved-Desktop .ginv-flex-col .ginv-flex-img {
  width: 600px;
  max-width: 100%;
  box-shadow: rgba(0, 0, 0, 0.25) 10px 14px 20px;
}
#Get-Involved-Desktop .ginv-flex-title {
  font-size: calc(17px + (19 - 17) * (100vw - 350px) / 1250);
  text-transform: uppercase;
  padding-bottom: 25px;
  font-weight: 600;
}
#Get-Involved-Desktop .ginv-flex-btn {
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0.5);
}
#Get-Involved-Desktop #ginv-volunteer {
  background-color: #45a55c;
}
#Get-Involved-Desktop #ginv-mentor {
  background-color: #f5ae1e;
}
#Get-Involved-Desktop #ginv-jointeam {
  background-color: #ea6f13;
}
#Get-Involved-Desktop #ginv-joinboard {
  background-color: #6e6a5a;
}
#Get-Involved-Desktop #ginv-donate {
  background-color: #5dc2ce;
}
#Get-Involved-Desktop #ginv-shop {
  background-color: #5dc2ce;
}
#Get-Involved-Desktop .nav-tabs {
  border-bottom: 0px;
}
#Get-Involved-Desktop .nav-tabs li {
  margin-bottom: 0px;
}
#Get-Involved-Desktop .nav-tabs li a.active::after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 25px solid rgba(0, 0, 0, 0);
  border-right: 25px solid rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 20px;
}
#Get-Involved-Desktop .nav-tabs li.tab-volunteer a::after {
  border-bottom-color: #45a55c;
}
#Get-Involved-Desktop .nav-tabs li.tab-mentor a::after {
  border-bottom-color: #f5ae1e;
}
#Get-Involved-Desktop .nav-tabs li.tab-jointeam a::after {
  border-bottom-color: #ea6f13;
}
#Get-Involved-Desktop .nav-tabs li.tab-joinboard a::after {
  border-bottom-color: #6e6a5a;
}
#Get-Involved-Desktop .nav-tabs li.tab-donate a::after {
  border-bottom-color: #5dc2ce;
}
#Get-Involved-Desktop .nav-tabs li.tab-shop a::after {
  border-bottom-color: #5dc2ce;
}
#Get-Involved-Desktop .nav-tabs li.tab-volunteer > a.active,
#Get-Involved-Desktop .nav-tabs li.tab-volunteer > a.active:focus,
#Get-Involved-Desktop .nav-tabs li.tab-volunteer > a.active:hover {
  color: #45a55c;
}
#Get-Involved-Desktop .nav-tabs li.tab-mentor > a.active,
#Get-Involved-Desktop .nav-tabs li.tab-mentor > a.active:focus,
#Get-Involved-Desktop .nav-tabs li.tab-mentor > a.active:hover {
  color: #f5ae1e;
}
#Get-Involved-Desktop .nav-tabs li.tab-jointeam > a.active,
#Get-Involved-Desktop .nav-tabs li.tab-jointeam > a.active:focus,
#Get-Involved-Desktop .nav-tabs li.tab-jointeam > a.active:hover {
  color: #ea6f13;
}
#Get-Involved-Desktop .nav-tabs li.tab-joinboard > a.active,
#Get-Involved-Desktop .nav-tabs li.tab-joinboard > a.active:focus,
#Get-Involved-Desktop .nav-tabs li.tab-joinboard > a.active:hover {
  color: #6e6a5a;
}
#Get-Involved-Desktop .nav-tabs li.tab-donate > a.active,
#Get-Involved-Desktop .nav-tabs li.tab-donate > a.active:focus,
#Get-Involved-Desktop .nav-tabs li.tab-donate > a.active:hover {
  color: #5dc2ce;
}
#Get-Involved-Desktop .nav-tabs li.tab-shop > a.active,
#Get-Involved-Desktop .nav-tabs li.tab-shop > a.active:focus,
#Get-Involved-Desktop .nav-tabs li.tab-shop > a.active:hover {
  color: #5dc2ce;
}
#Get-Involved-Desktop .nav-tabs > li > a.active,
#Get-Involved-Desktop .nav-tabs > li > a.active:focus,
#Get-Involved-Desktop .nav-tabs > li > a.active:hover {
  font-weight: bold;
  cursor: default;
  background-color: #fff;
  border: 0px;
}
#Get-Involved-Desktop .nav > li > a:focus,
#Get-Involved-Desktop .nav > li > a:hover {
  color: #6e6a5a;
  background-color: rgba(0, 0, 0, 0);
}
#Get-Involved-Desktop .nav-tabs > li > a {
  color: #6e6a5a;
  margin-right: 2px;
  line-height: 1.42857143;
  border: 0px;
  font-size: calc(19px + (22 - 19) * (100vw - 350px) / 1250);
  padding: 25px 30px 0px;
}
#Get-Involved-Mobile {
  display: block;
  overflow: hidden;
  padding-top: 100px;
}
@media screen and (min-width: 1024px) {
  #Get-Involved-Mobile {
    display: none;
  }
}
#Get-Involved-Mobile .ginv-card {
  max-width: 500px;
  margin: 0 auto;
  border-radius: 5px;
  align-self: center;
  box-shadow: rgba(0, 0, 0, 0.25) 10px 14px 20px;
  margin-bottom: 125px;
}
#Get-Involved-Mobile .ginv-card:last-child {
  margin-bottom: 75px;
}
#Get-Involved-Mobile .ginv-card .ginv-card-image {
  background-position: center center;
  width: 100%;
  height: 250px;
  display: block;
  background-size: cover;
  border-radius: 5px 5px 0 0;
}
#Get-Involved-Mobile .ginv-card .ginv-card-content {
  padding: 25px;
}
#Get-Involved-Mobile .ginv-card .ginv-card-content h3 {
  font-size: calc(22px + (25 - 22) * (100vw - 350px) / 1250);
  color: #fff;
  font-weight: bold;
  margin-bottom: 15px;
}
#Get-Involved-Mobile .ginv-card .ginv-card-content p,
#Get-Involved-Mobile .ginv-card .ginv-card-content a {
  font-size: calc(17px + (19 - 17) * (100vw - 350px) / 1250);
  color: #fff;
}
#Get-Involved-Mobile .ginv-card .ginv-card-content p.underline,
#Get-Involved-Mobile .ginv-card .ginv-card-content a.underline {
  text-decoration: underline;
}
#Get-Involved-Mobile .ginv-card .ginv-flex-btn {
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0.5);
}
#Get-Involved-Mobile .ginv-card.ginv-card-volunteer {
  background-color: #45a55c;
}
#Get-Involved-Mobile .ginv-card.ginv-card-volunteer .ginv-card-image {
  background-image: url("https://res.cloudinary.com/dken1avzn/image/upload/c_scale,f_auto,w_1200/v1/Get%20Involved/Volunteer.jpg");
}
#Get-Involved-Mobile .ginv-card.ginv-card-mentor {
  background-color: #f5ae1e;
}
#Get-Involved-Mobile .ginv-card.ginv-card-mentor .ginv-card-image {
  background-image: url("https://res.cloudinary.com/dken1avzn/image/upload/c_scale,f_auto,w_1200/v1/Get%20Involved/Mentor.jpg");
}
#Get-Involved-Mobile .ginv-card.ginv-card-team {
  background-color: #ea6f13;
}
#Get-Involved-Mobile .ginv-card.ginv-card-team .ginv-card-image {
  background-image: url("https://res.cloudinary.com/dken1avzn/image/upload/c_scale,f_auto,w_1200/v1/Get%20Involved/Team.jpg");
}
#Get-Involved-Mobile .ginv-card.ginv-card-board {
  background-color: #6e6a5a;
}
#Get-Involved-Mobile .ginv-card.ginv-card-board .ginv-card-image {
  background-image: url("https://res.cloudinary.com/dken1avzn/image/upload/c_scale,f_auto,w_1200/v1/Get%20Involved/Board.jpg");
}
#Get-Involved-Mobile .ginv-card.ginv-card-donate {
  background-color: #5dc2ce;
}
#Get-Involved-Mobile .ginv-card.ginv-card-donate .ginv-card-image {
  background-image: url("https://res.cloudinary.com/dken1avzn/image/upload/c_scale,f_auto,w_1200/v1/Get%20Involved/Donate.jpg");
}
#Get-Involved-Mobile .ginv-card.ginv-card-shop {
  background-color: #5dc2ce;
}
#Get-Involved-Mobile .ginv-card.ginv-card-shop .ginv-card-image {
  background-image: url("https://res.cloudinary.com/dken1avzn/image/upload/c_scale,f_auto,w_1200/v1/Get%20Involved/Shop_1_15_2025.jpg");
}
#contact-section {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  padding: 75px 0px;
}
#contact-section .submit-message {
  text-align: center;
}
#contact-section .form-label {
  font-size: calc(16px + (16 - 16) * (100vw - 350px) / 1250);
  color: #6e6a5a;
  margin: 5px 0 0 0;
}
#contact-section p,
#contact-section a {
  font-size: calc(19px + (22 - 19) * (100vw - 350px) / 1250);
  color: #6e6a5a;
}
#contact-section #contact-submit-btn {
  color: #fff;
}

/* ===================== CONTACT ===================== */
#contact-section .contact-form {
  padding: 0 15px;
}
#contact-section .contact-form .form-container {
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
}
@media screen and (min-width: 768px) {
  #contact-section .contact-form .form-container {
    max-width: 500px;
  }
}
#contact-section .contact-form input,
#contact-section .contact-form textarea {
  color: #6e6a5a;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0px;
}
#contact-section .contact-form input:focus,
#contact-section .contact-form textarea:focus {
  border-color: #ffc02f;
  box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(255, 192, 47, 0.6);
}
#contact-section .contact-form textarea {
  height: 200px;
  resize: none;
}
#feature-section-contact {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 85vh;
  min-height: 300px;
  background-image: url("https://res.cloudinary.com/dken1avzn/image/upload/c_scale,f_auto,w_1200/Contact/Header.jpg");
  background-size: cover;
  background-position: center 20%;
}
@media screen and (min-width: 768px) {
  #feature-section-contact {
    background-image: url("https://res.cloudinary.com/dken1avzn/image/upload/c_scale,f_auto,w_2000/Contact/Header.jpg");
  }
}
#feature-section-contact .fs-feature-img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#feature-section-contact .fs-feature-filter {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
#feature-section-contact .fs-content-block {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 50px;
  color: #fff;
}
#feature-section-contact .fs-title-one {
  color: #fff;
  line-height: 1.2;
  font-weight: 600;
  margin: 0;
  text-align: left;
  font-size: calc(25px + (35 - 25) * (100vw - 350px) / 1250);
}

/* ===================== ABOUT ACE ===================== */
#about-ace {
  width: 100%;
  overflow: hidden;
}
#about-ace .nav-tabs {
  border-bottom: 0px;
}
#about-ace .nav-tabs li {
  margin-bottom: 25px;
}
@media screen and (min-width: 1300px) {
  #about-ace .nav-tabs li {
    margin-bottom: 0px;
  }
  #about-ace .nav-tabs li a::after {
    content: "";
  }
  #about-ace .nav-tabs li a.active::after {
    content: "";
    display: block;
    margin: 0 auto;
    float: unset;
    width: 0;
    height: 0;
    border-left: 25px solid rgba(0, 0, 0, 0);
    border-right: 25px solid rgba(0, 0, 0, 0);
    border-bottom-style: solid;
    border-bottom-width: 20px;
  }
  #about-ace .nav-tabs li.tab-story a::after {
    border-bottom-color: #45a55c;
  }
  #about-ace .nav-tabs li.tab-serve a::after {
    border-bottom-color: #f5ae1e;
  }
  #about-ace .nav-tabs li.tab-team a::after {
    border-bottom-color: #ea6f13;
  }
  #about-ace .nav-tabs li.tab-board a::after {
    border-bottom-color: #5dc2ce;
  }
  #about-ace .nav-tabs li.tab-funders a::after {
    border-bottom-color: #6e6a5a;
  }
}
#about-ace .nav-tabs li.tab-story > a.active,
#about-ace .nav-tabs li.tab-story > a.active:focus,
#about-ace .nav-tabs li.tab-story > a.active:hover {
  color: #45a55c;
}
#about-ace .nav-tabs li.tab-serve > a.active,
#about-ace .nav-tabs li.tab-serve > a.active:focus,
#about-ace .nav-tabs li.tab-serve > a.active:hover {
  color: #f5ae1e;
}
#about-ace .nav-tabs li.tab-team > a.active,
#about-ace .nav-tabs li.tab-team > a.active:focus,
#about-ace .nav-tabs li.tab-team > a.active:hover {
  color: #ea6f13;
}
#about-ace .nav-tabs li.tab-board > a.active,
#about-ace .nav-tabs li.tab-board > a.active:focus,
#about-ace .nav-tabs li.tab-board > a.active:hover {
  color: #5dc2ce;
}
#about-ace .nav-tabs li.tab-funders > a.active,
#about-ace .nav-tabs li.tab-funders > a.active:focus,
#about-ace .nav-tabs li.tab-funders > a.active:hover {
  color: #6e6a5a;
}
#about-ace .nav-tabs > li {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #about-ace .nav-tabs > li {
    width: auto;
  }
}
#about-ace .nav-tabs > li > a.active,
#about-ace .nav-tabs > li > a.active:focus,
#about-ace .nav-tabs > li > a.active:hover {
  color: #6e6a5a;
  font-weight: bold;
  cursor: default;
  background-color: rgba(0, 0, 0, 0);
  border: 0px;
}
#about-ace .nav > li > a:focus,
#about-ace .nav > li > a:hover {
  color: #6e6a5a;
  background-color: rgba(0, 0, 0, 0);
}
#about-ace .nav-tabs > li > a {
  color: #6e6a5a;
  margin-right: 2px;
  line-height: 1.42857143;
  border: 0px;
  font-size: calc(19px + (22 - 19) * (100vw - 350px) / 1250);
  padding: 25px 20px 0px;
}
#about-ace .abtus-panel#abtus-story .abtus-overview {
  background-color: #45a55c;
}
#about-ace .abtus-panel#abtus-serve .abtus-overview {
  background-color: #f5ae1e;
}
#about-ace .abtus-panel#abtus-team .abtus-overview {
  background-color: #ea6f13;
}
#about-ace .abtus-panel#abtus-board .abtus-overview {
  background-color: #5dc2ce;
}
#about-ace .abtus-panel#abtus-funders .abtus-overview {
  background-color: #6e6a5a;
}
#about-ace .abtus-overview {
  padding: 50px 0;
  text-align: center;
}
#about-ace .abtus-overview p,
#about-ace .abtus-overview a {
  font-size: calc(17px + (19 - 17) * (100vw - 350px) / 1250);
  line-height: 2;
  color: #fff;
}
#about-ace .abtus-overview p.underline,
#about-ace .abtus-overview a.underline {
  text-decoration: underline;
}
#about-ace .abtus-overview .abtus-btn {
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0.5);
}
#about-ace .tab-main {
  padding-bottom: 75px;
}
#about-ace .tab-main p {
  font-size: calc(17px + (19 - 17) * (100vw - 350px) / 1250);
}
#about-ace .abtus-header {
  padding-bottom: 10px;
  margin: 50px 0;
  border-bottom: 2px dashed #000;
}
#about-ace .abtus-header h4 {
  font-size: calc(22px + (25 - 22) * (100vw - 350px) / 1250);
  color: #6e6a5a;
  font-weight: 700;
  text-transform: uppercase;
}
#about-ace .abtus-header-solid {
  border-bottom: 2px solid #000;
}
#about-ace .abtus-text-highlight {
  font-size: calc(22px + (25 - 22) * (100vw - 350px) / 1250);
  color: #6e6a5a;
  font-weight: 700;
  margin: 15px 0;
}
#about-ace .abtus-col-img {
  display: block;
  max-width: 100%;
  margin: 0 auto 25px auto;
}
#about-ace .abtus-team-row {
  margin-bottom: 50px;
}
#about-ace .abtus-team-name {
  font-size: calc(22px + (25 - 22) * (100vw - 350px) / 1250);
  text-transform: uppercase;
  padding-bottom: 15px;
  line-height: 1;
  font-weight: 700;
}
#about-ace .abtus-team-title {
  font-size: calc(22px + (25 - 22) * (100vw - 350px) / 1250);
  text-transform: uppercase;
}
#about-ace .abtus-board-item {
  font-size: calc(17px + (19 - 17) * (100vw - 350px) / 1250);
  padding-bottom: 25px;
}
#feature-section-about-ace {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 85vh;
  min-height: 300px;
  background-image: url("https://res.cloudinary.com/dken1avzn/image/upload/c_scale,f_auto,w_1200/About%20Ace/Header.jpg");
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width: 768px) {
  #feature-section-about-ace {
    background-image: url("https://res.cloudinary.com/dken1avzn/image/upload/c_scale,f_auto,w_2000/About%20Ace/Header.jpg");
  }
}
#feature-section-about-ace .fs-feature-img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#feature-section-about-ace .fs-feature-filter {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
#feature-section-about-ace .fs-content-block {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 50px;
  color: #fff;
}
#feature-section-about-ace .fs-title-one {
  color: #fff;
  line-height: 1.2;
  font-weight: 600;
  margin: 0;
  text-align: left;
  font-size: calc(25px + (35 - 25) * (100vw - 350px) / 1250);
}

/* ===================== OUR WORK ===================== */
.our-work {
  width: 100%;
  overflow: hidden;
}
.our-work .nav-tabs {
  border-bottom: 0px;
}
.our-work .nav-tabs li {
  margin-bottom: 25px;
}
@media screen and (min-width: 1000px) {
  .our-work .nav-tabs li {
    margin-bottom: 0px;
  }
  .our-work .nav-tabs li a::after {
    content: "";
  }
  .our-work .nav-tabs li a.active::after {
    content: "";
    display: block;
    margin: 0 auto;
    float: unset;
    width: 0;
    height: 0;
    border-left: 25px solid rgba(0, 0, 0, 0);
    border-right: 25px solid rgba(0, 0, 0, 0);
    border-bottom-style: solid;
    border-bottom-width: 20px;
  }
  .our-work .nav-tabs li.tab-stories a::after {
    border-bottom-color: #45a55c;
  }
  .our-work .nav-tabs li.tab-programs a::after {
    border-bottom-color: #f5ae1e;
  }
  .our-work .nav-tabs li.tab-impact a::after {
    border-bottom-color: #ea6f13;
  }
  .our-work .nav-tabs li.tab-events a::after {
    border-bottom-color: #5dc2ce;
  }
}
.our-work .nav-tabs li.tab-stories > a.active,
.our-work .nav-tabs li.tab-stories > a.active:focus,
.our-work .nav-tabs li.tab-stories > a.active:hover {
  color: #45a55c;
}
.our-work .nav-tabs li.tab-programs > a.active,
.our-work .nav-tabs li.tab-programs > a.active:focus,
.our-work .nav-tabs li.tab-programs > a.active:hover {
  color: #f5ae1e;
}
.our-work .nav-tabs li.tab-impact > a.active,
.our-work .nav-tabs li.tab-impact > a.active:focus,
.our-work .nav-tabs li.tab-impact > a.active:hover {
  color: #ea6f13;
}
.our-work .nav-tabs li.tab-events > a.active,
.our-work .nav-tabs li.tab-events > a.active:focus,
.our-work .nav-tabs li.tab-events > a.active:hover {
  color: #5dc2ce;
}
.our-work .nav-tabs > li {
  width: 100%;
}
@media screen and (min-width: 540px) {
  .our-work .nav-tabs > li {
    width: auto;
  }
}
.our-work .nav-tabs > li > a.active,
.our-work .nav-tabs > li > a.active:focus,
.our-work .nav-tabs > li > a.active:hover {
  font-weight: bold;
  cursor: default;
  background-color: rgba(0, 0, 0, 0);
  border: 0px;
}
.our-work .nav > li > a:focus,
.our-work .nav > li > a:hover {
  color: #6e6a5a;
  background-color: rgba(0, 0, 0, 0);
}
.our-work .nav-tabs > li > a {
  color: #6e6a5a;
  margin-right: 2px;
  line-height: 1.42857143;
  border: 0px;
  font-size: calc(19px + (22 - 19) * (100vw - 350px) / 1250);
  padding: 25px 30px 0px;
}
.our-work .ourwork-panel#ourwork-stories .abtus-overview {
  background-color: #45a55c;
}
.our-work .ourwork-panel#ourwork-programs .abtus-overview {
  background-color: #f5ae1e;
}
.our-work .ourwork-panel#ourwork-impact .abtus-overview {
  background-color: #ea6f13;
}
.our-work .ourwork-panel#ourwork-events .abtus-overview {
  background-color: #5dc2ce;
}
.our-work .abtus-overview {
  padding: 50px 0;
  text-align: center;
}
.our-work .abtus-overview p,
.our-work .abtus-overview a {
  font-size: calc(17px + (19 - 17) * (100vw - 350px) / 1250);
  line-height: 2;
  color: #fff;
}
.our-work .abtus-overview p.underline,
.our-work .abtus-overview a.underline {
  text-decoration: underline;
}
.our-work .abtus-overview .abtus-btn {
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0.5);
}
.our-work .tab-main {
  padding-bottom: 75px;
}
.our-work .tab-main p {
  font-size: calc(17px + (19 - 17) * (100vw - 350px) / 1250);
}
.our-work .abtus-header {
  padding-bottom: 10px;
  margin: 50px 0;
  border-bottom: 2px dashed #000;
}
.our-work .abtus-header h4 {
  font-size: calc(22px + (25 - 22) * (100vw - 350px) / 1250);
  color: #6e6a5a;
  font-weight: 700;
  text-transform: uppercase;
}
.our-work .abtus-header-solid {
  border-bottom: 2px solid #000;
}
.our-work .abtus-text-highlight {
  font-size: calc(22px + (25 - 22) * (100vw - 350px) / 1250);
  color: #6e6a5a;
  font-weight: 700;
  margin: 15px 0;
}
.our-work .abtus-col-img {
  display: block;
  width: 350px;
  max-width: 100%;
  margin: 0 auto 25px auto;
}
.our-work .abtus-team-name {
  font-size: calc(22px + (25 - 22) * (100vw - 350px) / 1250);
  text-transform: uppercase;
  padding-bottom: 15px;
  line-height: 1;
  font-weight: 700;
}
.our-work .abtus-team-title {
  font-size: calc(22px + (25 - 22) * (100vw - 350px) / 1250);
  text-transform: uppercase;
}
.our-work .abtus-board-item {
  font-size: calc(17px + (19 - 17) * (100vw - 350px) / 1250);
  padding-bottom: 25px;
}
.our-work .ourwork-feature {
  box-shadow: 0px 4px 18px -6px rgba(0, 0, 0, 0.3);
  padding: 50px 0;
}
.our-work .ourwork-feature-content {
  padding: 0;
  font-size: calc(22px + (25 - 22) * (100vw - 350px) / 1250);
  line-height: 1.8;
  font-weight: 600;
}
.our-work .ourwork-feature-content span {
  padding: 0;
  font-size: calc(22px + (25 - 22) * (100vw - 350px) / 1250);
  line-height: 1.8;
  font-weight: 600;
  position: relative;
}
.our-work .ourwork-feature-content span::after {
  border-bottom: 0.18em solid #f5ae1e;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 50%;
}
.our-work .ourwork-overview {
  color: #fff;
}
.our-work .ourwork-overview .ourwork-oi-title {
  color: #fff;
  line-height: 42px;
  font-size: calc(25px + (35 - 25) * (100vw - 350px) / 1250);
}
.our-work .ourwork-overview .ourwork-oi-subcontent {
  color: #fff;
  font-size: calc(19px + (22 - 19) * (100vw - 350px) / 1250);
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 45px;
  text-align: center;
  max-width: 100%;
  margin: 50px auto 0px;
}
.our-work .ourwork-impact-quote {
  font-style: italic;
}
.our-work .ourwork-impact-author {
  font-style: italic;
  text-transform: uppercase;
  font-weight: bold;
  font-style: normal;
  font-size: calc(22px + (25 - 22) * (100vw - 350px) / 1250);
}
.our-work .ourwork-impact-author-subtitle {
  font-style: italic;
  font-size: calc(19px + (22 - 19) * (100vw - 350px) / 1250);
}
.abtus-overview {
  position: relative;
  color: #fff;
}
.abtus-overview .ourwork-col-img {
  display: block;
  width: 500px;
  max-width: 100%;
  margin: 0 auto 25px auto;
  box-shadow: rgba(0, 0, 0, 0.25) 10px 14px 20px;
}
.abtus-overview .oi-flexbox {
  display: flex;
  flex-direction: column;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .abtus-overview .oi-flexbox {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.abtus-overview .oi-card {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .abtus-overview .oi-card {
    flex: 1 1 50%;
    margin-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .abtus-overview .oi-card {
    flex: 1 1 20%;
  }
}
.abtus-overview .oi-card i {
  display: block;
  font-size: calc(50px + (65 - 50) * (100vw - 350px) / 1250);
  margin-bottom: 15px;
}
.abtus-overview .oi-card span {
  color: #fff;
  display: block;
  font-size: calc(50px + (65 - 50) * (100vw - 350px) / 1250);
  font-weight: bold;
  line-height: 76px;
  letter-spacing: -1.49px;
}
.abtus-overview .oi-card .oi-card-label {
  color: #fff;
  font-size: calc(22px + (25 - 22) * (100vw - 350px) / 1250);
  letter-spacing: 0.13px;
  line-height: 29px;
  text-align: center;
}
.abtus-overview .triangle {
  width: 0;
  height: 0;
  border-left: 123px solid rgba(0, 0, 0, 0);
  border-right: 123px solid rgba(0, 0, 0, 0);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}
.ourwork-img-band {
  padding-top: 50px;
  margin: 50px 0;
}
.ourwork-img-band .ourwork-img {
  display: block;
  width: 350px;
  max-width: 100%;
  margin: 0 auto 50px;
  box-shadow: rgba(0, 0, 0, 0.25) 10px 14px 20px;
}
.ourwork-events-btn {
  text-transform: uppercase;
  background-color: #5dc2ce;
  font-weight: bold;
}
.our-work .abtus-overview p.abtus-events-header-text {
  font-size: calc(19px + (22 - 19) * (100vw - 350px) / 1250);
  font-weight: 600;
}
