main {
  background-image: url('../img/our-projects-bg.svg');
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

footer {
  background-color: #1A9462;
  text-align: center;
}

footer a {
  color: black;
}

section h2 {
  color: #1A9462;
}

.banner {
  color: white;
  display: flex;
  justify-content: center;
  padding: 20px 0 10px 0;
}

.banner .content {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 10px;
  width: 80%;
}

.banner .content .left {
  color: black;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 350px;
}

.banner .content a {
  background-color: #FFD862;
  border-radius: 16px;
  color: #1A9462;
  font-size: 1.1em;
  font-weight: 800;
  padding: 8px 0px 8px 0px;
  text-align: center;
  text-decoration: none;
  width: 200px;
}

.banner .content h1 {
  color: #1A9462;
  font-size: 1.8em;
  font-style: italic;
  font-weight: 900;
  padding-top: 20px;
  word-break: break-word;
}

.banner .content p {
  text-align: left;
}

@media (max-width: 1150px) {
  .banner .content .right img {
    width: 480px;
  }

  .banner .content h1 {
    font-size: 1.7em;
  }
}

@media (max-width: 900px) {
  .banner {
    padding: 30px 0 10px 0;
  }

  .banner .content {
    width: 85%;
  }

  .banner .content .right img {
    width: 400px;
  }

  .banner .content h1 {
    font-size: 1.5em;
  }

  .banner .content a {
    font-size: 1em;
    width: 160px;
  }
}

@media (max-width: 750px) {
  .banner .content h1 {
    font-size: 1.4em;
  }

  .banner .content a {
    font-size: 0.9em;
    width: 120px;
  }

  .banner .content .right img {
    width: 350px;
  }
}

@media (max-width: 650px) {
  .banner {
    padding: 20px 0 10px 0;
  }

  .banner .content {
    align-items: center;
    flex-direction: column;
    gap: 30px;
    text-align: left;
    width: 95%;
  }

  .banner .content .left a {
    margin: 0 auto;
    width: 80%;
  }

  .banner .content .right img {
    width: 90%;
  }
}

.about-us {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 30px 0px;
}

.about-us .content {
  display: flex;
  flex-direction: column;
  width: 80%;
}

.about-us .content .left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-us .content .right {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 20px 0px;
}

@media (max-width: 1150px) {
  .about-us .top-image img {
    width: 600px;
  }

  .about-us .content {
    width: 90%;
  }

  .about-us .content img {
    width: 200px;
  }
}

@media (max-width: 800px) {
  .about-us .content img {
    width: 190px;
  }
}

@media (max-width: 650px) {
  .about-us {
    gap: 20px;
  }

  .about-us .content {
    flex-direction: column;
    gap: 10px;
  }

  .about-us .content .right {
    flex: 1;
    margin: 0px;
  }

  .about-us .content .right .img-optional {
    display: none;
  }

  .about-us .content .right div {
    width: 100%;
  }

  .about-us .content .right img {
    width: 100%;
  }
}
