/* ========================== */
/* Global
/* ========================== */
:root {
  --icofblue: #283781;
  --icofyellow: #dcb93e;
}
html {
scroll-behavior: smooth;
font-size: 62.5%;
overflow-x: hidden;
}
body {
  margin: 0;
  font-weight: normal !important;
  overflow-x: hidden;
  font-family: 'Nunito Sans', sans-serif;
}
a {
  text-decoration: none !important;
}

/* ========================== */
/* Header
/* ========================== */ 
.header-container {
  width: 100%;
  height: auto;
  margin: 1% 0 0;
}
.icof-banner-logo{
  display: block;
  width: 95% !important;
  height: auto;
  margin: auto;
}

/* NavBar */
.nav-container {
  width: 100%;
  height: auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 0.5em;
  background-color: #fff;
}
.nav-item {
  color: rgb(0, 0, 0) !important;
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  height: 4ch !important;
  background-color: #fff !important;
  border-color: #fff !important;
}
.nav-item:hover,.nav-item:focus {
  background-color: var(--icofblue) !important;
  color: var(--icofyellow) !important;
}
@media (min-width: 40rem) {
  .icof-banner-logo {
    width: 50% !important;
  }
  .nav-container {
    gap: 3em;
  }
}

/* ========================== */
/* Who We Are
/* ========================== */
.founders {
  width: 100%;
  height: auto;
  position: relative;
}
.founders-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2%;
  box-shadow: black 0.2em 0.2em 0.2em 0.1em;
  border-radius: 4px;
}
.founders-text {
  padding-left: 2%;
  padding-right: 2%;
}
.founders-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin: auto;
  padding-bottom:2%;
}
.founders-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3%;
}
.founders-paragraph {
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0%;
  line-height: 2em;
}
@media (min-width: 40rem) {
  .founders-img {
    max-width: 60%;
  }
  .founders-text {
    padding-left: 16%;
    padding-right: 16%;
  }
  .founders-paragraph {
    text-align: left;
  }
  .support-button {
    margin-left: 16% !important;
  }
}
/* ========================== */
/* Donors
/* ========================== */
.donors-content {
  background-color: #f1f1f1;
}
.donors-title {
  font-size: 5.1rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: 0%;
}
.donors-subtitle {
  font-size: 1.7rem;
  font-weight: 600;
  text-align: center;
  padding-left: 23%;
  padding-right: 23%;
  line-height: 1.5em;
}
.donors-subtitle-year {
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: 2%;
}
.donors-paragraph {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  padding-left: 23%;
  padding-right: 23%;
  line-height: 1.5em;
}
.donors-text{
  padding-top: 5%;
  padding-bottom: 8%;
}
.support-button {
  font-weight: 800 !important;
  font-size: 1.2rem !important;
  border: solid black !important;
  /* border-radius: 0 !important; */
  color: white !important;
  background-color: black !important;
  text-align: center;
  margin-bottom: 2%;
  margin-left: 2%;
}
.support-button:hover {
  border: solid rgb(90, 90, 90) !important;
  font-weight: 800 !important;
  background-color: rgb(90, 90, 90) !important;
  color: white !important;
}

/* ========================== */
/* Footer
/* ========================== */
.footer {
  font-family: "Nunito Sans", sans-serif !important;
  font-weight: 500;
  text-align: center;
  font-size: 1.2rem;
  margin-left: 2%;
  margin-right: 2%;
}
.footer-text1 {
  margin-top: 5%;
  margin-bottom: 3%;
}
.footer-text2 {
  font-style: italic;
}
.footer-text3 {
  margin-bottom: 3%;
}
@media (min-width:40rem){
  .footer {
    margin-left: 15%;
    margin-right: 15%;
  }
}