:root {
  --primary: #009bd4;
  --dark: #00395a;
}

* {
  font-family: "Lato", sans-serif;
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}

.hidden {
  display: none !important;
}

h1,
h2,
h3,
h4 {
  font-family: "Lato", sans-serif;
  /* font-weight: normal; */
  margin: 10px 0px 0px 0px;
  font-weight: 700;
  text-transform: uppercase;
  /* line-height: 5rem; */
}

a {
  text-decoration: none;
}

h1 {
  font-size: 70px;
}

h2 {
  font-size: 50px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 25px;
}

section {
  padding: 30px 10px;
  /* margin-inline: 50px; */
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;

  transition: transform 1s, opacity 1s;
}

.section--hidden {
  opacity: 0;
  transform: translateY(8rem);
}

.section-dark {
  color: white;
  background-color: var(--dark);
  margin: 0px;
}

.section-image {
  width: 100%;
}

.hr {
  border-top: 3px solid var(--dark);
}

.row {
  display: flex;
  width: 100%;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}

#statistics {
  align-items: flex-start;
}

.center {
  text-align: center;
  justify-content: center;
  align-content: center;
}

.start {
  align-items: flex-start;
}


.col-text {
  font-size: 50px;
  font-weight: 900;
}

.col {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: flex-start;
  align-items: center;
}

.row > .col {
  flex-basis: 100%;
  padding: 10px 30px;
}

.column {
  display: flex;
  flex-flow: column nowrap;
}

.btn {
  display: inline-block;

  padding: 12px 25px;
  margin: 10px 10px;

  /* max-width: 250px; */
  text-align: center;
  text-transform: uppercase;

  font-weight: 600;
  font-size: 14px;

  color: aliceblue;
  background-color: var(--primary);

  border-radius: 10px;
  border: solid 2px white;
  box-shadow: black 0px 0px 5px;

  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.btn:hover {
  background-color: white;
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: black 0px 5px 8px;
}

.btn-group {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-content: center;
}

.btn-white {
  padding: 12px 25px;
  margin: 10px 10px;

  max-width: 250px;
  text-align: center;

  font-weight: 600;

  color: aliceblue;
  background-color: var(--dark);

  border: solid white 2px;
  border-radius: 10px;
  box-shadow: black 0px 0px 10px;

  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.btn-white:hover {
  background-color: var(--dark);
  border-color: var(--primary);
  box-shadow: black 0px 5px 15px;
}

.btn-outline {
  background-color: rgba(0, 0, 0, 0);

  color: var(--dark);
  border: solid var(--dark) 2px;
  border-radius: 10px;
  /* box-shadow: black 0px 0px 5px; */

  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.btn-outline:hover {
  color: var(--dark);
  background-color: var(--primary);
  border: solid var(--dark) 2px;
  /* color: white; */
}

.btn-outline-primary {
  color: black;
  background-color: rgba(0, 0, 0, 0);

  border: solid var(--primary) 2px;
  border-radius: 10px;
  box-shadow: black 0px 0px 5px;

  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.btn-outline-primary:hover {
  color: var(--primary);
}

/* Navbar */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background-color: #d9d9d9b0;
  }

  .logo {
    display: flex;
    justify-content: left;
    align-items: center;

    max-width: 300px;
    gap: 40px;
    text-transform: uppercase;
  }

  .logo h4 {
    font-weight: bold;
  }

  .logo > a > img {
    width: 5rem;
  }

.hero {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;

  margin: 0px;
  padding: 150px 0px;

  color: white;

  background-color: var(--dark);
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}

.hero-heading {
  font-size: 90px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0px;
  text-shadow: black 0px 10px 12px;
}

.hero-text {
  margin: 30px 30px;
  text-shadow: black 0px 5px 3px;
  font-size: 1.2em;
}

footer {
  width: 100%;
  padding-block: 30px;

  color: white;
  background-color: var(--primary);

  display: flex;
  flex-flow: row nowrap;
  justify-content: space-evenly;
  align-items: center;
  align-content: center;
}

.footer-title {
  margin: 80px;
  width: 60%;
}

.footer-text {
  padding-inline: 30px;
  text-align: center;
}

.contact {
  width: 50%;
  margin: 30px;
}

.footer-heading {
  color: white;
  font-size: 3.2em;
  text-align: center;
}

footer > form {
  max-width: 45%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

.icon {
  margin: 0px 10px 0px 0px;
}

.contact-form > input,
textarea {
  margin: 10px 10px 15px 0px;
  width: 95%;
  padding: 10px;
  background-color: white;
  border: 2px solid var(--dark);
  border-radius: 20px;
}

.contact-form > label {
  color: white;
  font-size: 1em;
}

.attrib {
  color: white;
  background-color: var(--dark);
  padding: 20px;
}

.attrib a {
  color: var(--primary);
  font-weight: bold;
}

.hr-dark {
  color: var(--dark);
  width: 100%;
  margin-block: 15px;
}

.hr-short {
  color: var(--dark);
  width: 15%;
  margin-block: 30px;
  margin-inline: auto;
}

.hr-short-light {
  color: white;
  width: 15%;
  margin-block: 30px;
}

td,
th {
  padding-inline: 20px;
  text-align: center;
}

.li {
  color: black;
  text-align: left;
  text-transform: capitalize;
}

section > p, ul, ol {
  max-width: 70%;
  padding: 0px 30px 30px 15px;
}

section > p {
  text-align: center;
}

.activities-group {
  align-items: start;
}

.activities {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.activities > h4 {
  text-align: center;
}

.activities > ul {
  width: 100%;
}


.supporter-display {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.supporter {
  height: 4.5em;
  margin: 10px 20px;
}
@media screen and (max-width: 960px) {
  .row {
    flex-flow: column nowrap;
  }

  #statistics {
    flex-flow: column nowrap;
    align-items: center;
  }
}

@media screen and (max-width: 960px) {

  footer {
    flex-flow: column nowrap;
  }

  .partner-grid {
    flex-flow: column nowrap;
    width: 100%;
    max-height: none;
    align-content: center;
  }

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

@media screen and (max-width: 960px) {
  .board-mobile {
    display: block !important;
  }

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

@media all and (min-width: 960px) {
  nav {
    position: fixed;
    width: 100%;
    top: 0px;
    background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  }

  .item {
    order: 1;
    position: relative;
    display: block;
    width: auto;
  }

  .button {
    order: 2;
  }

  .submenu-active .submenu {
    display: block;
    position: fixed;
    left: 0;
    top: 68px;
    color: white;
    background: #111;
  }

  .toggle {
    display: none;
  }

  .submenu-active {
    border-radius: 0;
  }
}

.contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;

  position: fixed;
  bottom: 20px;
  right: 20px;

  padding: 10px;

  background-color: white;
  border: 3px var(--primary) solid;
  border-radius: 100px;

  box-shadow: black 0px 0px 20px 0px;
}

.contact-btn > img {
  width: 32px;
}

.inspire-img {
  width: 8rem;  
  height: 8rem;  
  object-fit: cover;
  border-radius: 50%;
}

/* Tab Menu */
@media all and (min-width: 700px) {
  .grid {
    flex-flow: row wrap;
    justify-content: center;
  }

  .col {
    padding: 10px 30px;
  }

  .menu {
    justify-content: center;
  }

  .logo {
    flex: 1;
  }

  .item.button {
    width: auto;
    order: 1;
    display: block;
  }

  .item.button.secondary {
    border-bottom: none;
  }

  .toggle {
    flex: 1;
    text-align: right;
    order: 2;
  }

  .contact-text {
    max-width: 50%;
  }
}


.charityHome {
  padding-inline: 50px;
}