main {
  background-image: url('../img/home-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;
}

section p {
  text-align: justify;
}

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

.banner .content {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 80%;
}

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

.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 {
  font-size: 1.8em;
  font-style: italic;
  font-weight: 900;
  padding-top: 50px;
  word-break: break-word;
}

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

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

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

  .banner .content {
    width: 85%;
  }

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

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

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

@media (max-width: 650px) {
  .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: 550px) {
  .banner {
    padding: 20px 0 10px 0;
  }

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

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

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

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

.about-us .top-image {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.about-us .content {
  align-items: center;
  display: flex;
  width: 80%;
}

.about-us .content .left, .right {
  flex-basis: 50%;
}

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

.about-us .content .right {
  display: flex;
  justify-content: center;
}

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

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

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

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

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

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

  .about-us .top-image {
    display: none;
  }

  .about-us .content {
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }

  .about-us .content #about-us-img-1 {
    display: none;
  }

  .about-us #about-us-content-reverse {
    display: flex;
    flex-direction: column-reverse;
  }

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

.bottom {
  justify-content: center;
  margin-bottom: 30px;
  margin-top: 50px;
}

.bottom .content {
  align-items: center;
  display: flex;
  justify-content: center;
}

.bottom .content .left {
  display: flex;
  justify-content: center;
}

.bottom .content .right {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  margin-left: -20px;
  max-width: 300px;
}

@media (max-width: 900px) {
  .bottom .content .right {
    gap: 20px;
    max-width: 250px;
  }

  .bottom .content img {
    width: 250px;
  }
}

@media (max-width: 550px) {
  .bottom .content {
    align-items: center;
    flex-direction: column;
    gap: 40px;
  }

  .bottom .content h2 {
    margin-bottom: 10px;
  }

  .bottom .content .right {
    padding-bottom: 50px;
    width: 90%;
  }
}
