/* Hero section styles  */
.hero {
  background-image: url("../images/landing.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 90vh;
  text-align: center;
  color: var(--gray-100);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.25);
}
.hero-container h1 {
  padding: 1rem;
}
.ct-btn a {
  text-decoration: none;
  color: var(--gray-100);
}
.main-cta {
  font-size: 1.6rem;
  margin: 1rem;
}
/* Section container styles below  */
.section-container {
  max-width: 80%;
  min-width: 300px;
  margin: 4rem auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  padding: 2rem 1rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
.section-container h2 {
  color: var(--gray-700);
}
.img-container {
  max-width: 40%;
}

.content {
  max-width: 40%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem;
}
