.aboutus-banner {
  display: flex;
  position: relative;
  height: 50vh;
}

.aboutus-banner img {
  display: block;
  width: 100vw;
  object-fit: cover;
}

.aboutus-banner span {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background: #0c1e3a;
  transition: 0.5s;
}

.aboutus-description {
  padding: 3rem 0;
}

.aboutus-description div h2 {
  color: #204B96;
  margin-bottom: 1.5rem;
}

.aboutus-description div p {
  font-size: 1.15rem;
  margin-bottom: 4rem;
}

.aboutus-description div p:last-child {
  margin-bottom: 0;
}

.aboutus-topics {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

.aboutus-topics-row {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.aboutus-topic {
  background-color: #36bedd;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0.5rem;
  width: 25%;
  height: 15rem;
  margin: 0.5rem;
}

.aboutus-topic img {
  width: 50%;
}

.aboutus-contactus {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
  width: 100%;
  background-color: #eaeaea;
}

.aboutus-contactus h2 {
  margin-bottom: 1rem;
}

.aboutus-contactus a {
  text-decoration: none;
  color: #000;
  padding: 0 0.5rem;
  font-size: 1.2rem;
  border: 1px solid #000;
  border-radius: 2.5rem;
}

.aboutus-partners-logos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

.aboutus-partners-logos img {
  width: 75%;
  margin: 0 auto;
} 

@media only screen and (max-width: 768px) {
  .aboutus-partners-logos {
    grid-template-columns: 1fr;
  }

  .aboutus-partners-logos img {
    margin: 1rem auto;
    width: 100%;
  }
}

@media only screen and (max-width: 1024px) {
  .aboutus-title {
    width: 100%;
  }

  .aboutus-topics-row {
    flex-direction: column;
  }

  .aboutus-topic {
    width: 100%;
    height: 20rem;
    padding: 0.5rem 0;
    margin: 0.5rem 0;
  }

  .aboutus-topic-invisible {
    display: none;
  }
}
