.wrapper {
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.wrapper .empower {
  background: #ecf5f7;
  padding: 3rem;
  text-align: center;
}
.wrapper .empower .title {
  color: #000;
  text-align: center;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}
.wrapper .empower .body {
  color: #000;
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-top: 1.5rem;
}
.wrapper .empower .register {
  margin-top: 3rem;
  background: var(--secondary-color);
  padding: 1rem 2rem;
}
.wrapper .image {
  overflow: auto;
  background-repeat: no-repeat;
  background-position: fit;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  object-fit: cover;
  width: 100%;
  height: 65vh;
  background-image: url("../assets/images/empower-image.jpeg");
}
.wrapper .mission-vision {
  margin-top: 4rem;
  margin-bottom: 4rem;
  background: #007053;
  padding: 2rem;
}
.wrapper .mission-vision .title {
  color: var(--white);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
.wrapper .mission-vision .body {
  margin-top: 0.5rem;
  color: var(--white);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.wrapper .mission-vision hr {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.wrapper .overview {
  margin-top: 3rem;
  margin-bottom: 4rem;
}
.wrapper .overview .title {
  color: #475367;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
.wrapper .overview .body {
  margin-top: 0.5rem;
  color: #475367;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.wrapper .overview hr {
  margin-top: 2rem;
}
.wrapper .blog-card-p {
  margin-top: 2rem;
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
}
.wrapper .blog-card-p .blog-card .blog-img {
  height: 14rem;
  width: 100%;
}
.wrapper .blog-card-p .blog-card .blog-title {
  color: var(--black);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-top: 1rem;
  text-align: center;
}
.wrapper .blog-card-p .blog-card .blog-body {
  color: #475367;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  text-align: center;
}
.wrapper .functions {
  margin-top: 4rem;
  margin-bottom: 4rem;
  background: #111;
  padding: 2rem;
}
.wrapper .functions .title {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 10px;
}
.wrapper .functions ul li {
  color: var(--white);
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .wrapper {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .wrapper .empower {
    padding: 1rem;
    text-align: center;
  }
  .wrapper .empower .title {
    font-size: 1.5rem;
  }
  .wrapper .empower .body {
    margin-top: 1rem;
  }
  .wrapper .image {
    height: 50vh;
  }
  .wrapper .mission-vision {
    padding: 1rem;
  }
  .wrapper .mission-vision .body {
    font-size: 0.9rem;
  }
  .wrapper .overview .body {
    font-size: 0.9rem;
  }
  .wrapper .blog-card-p {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.3rem;
  }
  .wrapper .functions {
    padding: 1rem;
  }
}
@media (max-width: 550px) {
  .wrapper .blog-card-p {
    grid-template-columns: repeat(1, 1fr);
  }
}
