* {
  box-sizing: border-box;
}

body {
  width: 100%;
  background-color: #fff;
  max-width: 100vw;
  margin: 0px;
}
header {
  height: 600px;
  overflow-y: hidden;
  position: relative;
  z-index: 2;
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}
.sticky + .content {
  padding-top: 120px;
}
nav {
  top: 0;
  padding: 0 30px;
  width: 100%;
  background-color: #198a00;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.link {
  display: block;
  color: #fff;
  width: 100px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
}
.soc {
  width: 10px;
}
.one:hover {
  color: #de2010;
}
.two:hover {
  color: #000000;
}
.three:hover {
  color: #ef7d00;
}
.logo {
  max-width: 60px;
  padding: 3px;
}
main {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 60px;
  font-family: "Roboto", sans-serif;
  line-height: 24px;
  color: rgb(36, 36, 36);
  font-size: 16px;
}
footer {
  width: 100%;
  background-color: #000000;
  padding: 20px;
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-size: 12px;
  color: #fff;
}
.text {
  display: flex;
  flex-direction: column;
  width: 66.66667%;
  padding: 30px 8% 30px 30px;
  margin-bottom: 10px;
  font-size: 16px;
}
.full-width {
  width: 80%;
  margin: 0 auto;
  padding: 30px;
}
.list {
  display: flex;
  flex-direction: column;
}
.project {
  display: flex;
  flex-direction: row;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 30px;
  font-size: 16px;
  border: 1px #000000;
  padding: 20px 2%;
}
.projecttext {
  width: 60%;
  padding-left: 2%;
}
.projectpic {
  width: 40%;
  height: 40%;
  border: 1px solid;
}
.right {
  width: 33.3333%;
  padding: 30px;
}
.testimonials {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.tperson {
  flex-direction: row;
  width: 100%;
  margin-top: 10px;
}
.aligner {
  display: flex;
  align-items: center;
}
.tquote {
  width: 80%;
  display: inline-block;
}
.timage {
  width: 15%;
  margin-left: 5%;
}
.quote {
  margin-left: 10%;
  box-sizing: border-box;
}
.video {
  width: 100%;
  min-height: 220px;
}
.picture {
  width: 100%;
  min-height: 220px;
  margin-bottom: 10px;
}
.progress {
  font-size: 13px;
}
.progressbar {
  box-sizing: border-box;
  width: 100%;
  background-color: #dddddd;
}
.containerprogress {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  justify-content: space-between;
  color: #808080;
}
.zero {
  align-self: auto;
}
.total {
  align-self: auto;
  margin-bottom: 10px;
}
.achievement {
  text-align: center;
  color: #808080;
}
.colorbar {
  width: 100%;
  padding: 3px;
}
.percentage {
  position: absolute;
  right: 0;
  top: 6px;
}
.pencil {
  width: 60%;
  position: relative;
}
.notebook {
  width: 80%;
  position: relative;
}
.uniform {
  width: 50%;
  position: relative;
}
.toilet {
  width: 20%;
  position: relative;
}
.donor {
  width: 80%;
  margin: 0px 0px 10px 0px;
}
table {
  width: 100%;
  border-collapse: collapse;
}
td {
  width: 50%;
  padding: 5px;
}
.socialmedia {
  width: 60px;
}
.sociallink {
  text-decoration: none;
}
.mobile-only {
  display: none;
}
.mobile-nav {
  flex-direction: column;
}
.link-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.donatebutton {
  background-color: #198a00;
  text-align: center;
  border-radius: 15px;
  color: #fff;
  text-decoration: none;
  box-sizing: border-box;
  padding: 20px 10px;
  font-size: 14px;
}
.page-links > a {
  display: block;
  height: 40px;
  line-height: 40px;
}
footer a {
  text-decoration: none;
  color: #fff;
  padding: 0px 2px;
}

/* Responsive stuff */
@media only screen and (max-width: 1024px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: flex;
  }
  header {
    height: 300px;
  }
  main {
    flex-direction: column;
    margin-top: 40px;
  }
  .text {
    width: 100%;
  }
}
