@import url("https://fonts.googleapis.com/css2?family=Questrial&family=Quicksand:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600&family=Unbounded:wght@200;300;400;500;600;700;800;900&family=Urbanist:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

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

a {
  text-decoration: none;
}

.about-banner {
  width: 100%;
  height: 100vh;
  background: #27b4e9;
  padding: 120px 60px;
}

.about-banner .text {
  position: absolute;
  color: #f4f5fd;
  top: 50%;
  transform: translate(0, -50%);
  width: 40%;
}

.about-banner .text h1 {
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  margin-bottom: 40px;
}

.about-banner .text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
}

.about-banner .image {
  position: absolute;
  left: 90%;
  top: 55%;
  transform: translate(-90%, -55%);
  width: 42%;
}

.about-banner .image img {
  width: 100%;
}

.impact {
  padding: 100px 60px;
  text-align: center;
  color: #404040;
}

.impact h2 {
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 20px;
}

.impact p {
  line-height: 25px;
  width: 70%;
  margin: auto;
}

.us {
  padding: 100px 60px;
  background: #f4f5fd;
}

.about-us,
.mission,
.vision {
  width: 1200px;
  height: 200px;
  margin: auto;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 30px;
  position: relative;
}

.about-us div {
  position: absolute;
  width: 250px;
  padding: 10px 20px 0;
  text-align: center;
  background: #404040;
  color: #fff;
}

.mission div {
  position: absolute;
  width: 250px;
  padding: 10px 20px 0;
  text-align: center;
  background: #830000;
  color: #fff;
}

.vision div {
  position: absolute;
  width: 250px;
  padding: 10px 20px 0;
  text-align: center;
  background: #0986cf;
  color: #fff;
}

.us h3 {
  font-size: 18px;
}

article {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

article h2 {
  font-size: 30px;
  font-weight: 900;
  line-height: 40px;
  margin-bottom: 15px;
}

article p {
  line-height: 22px;
  color: #404040;
}

.about-us article h2 {
  color: #404040;
}

.mission article h2 {
  color: #830000;
}

.vision article h2 {
  color: #0986cf;
}

@media screen and (max-width: 1320px) {
  .us {
    padding: 100px 0;
  }

  .about-us,
  .mission,
  .vision {
    width: 100%;
  }
}

@media screen and (max-width: 700px) {
  .impact p {
    width: 100%;
  }

  article {
    width: 100%;
  }
}

@media screen and (max-width: 700px) {
  .impact {
    padding: 100px 20px;
  }

  .impact p {
    width: 100%;
  }

  .us h3 {
    font-size: 15px;
  }

  .about-us div,
  .mission div,
  .vision div {
    width: 200px;
  }

  article {
    top: 40px;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 0 10px;
  }

  article h2 {
    font-size: 20px;
    line-height: 30px;
  }
}
