.services-container {
  display: flex;
  flex-flow: column;
  width: 100%;
  max-width: 1000px;
  margin: 25px auto 75px auto;
}

.title-container {
  width: 90%;
  display: flex;
  flex-direction: column;
}

.title {
  font-weight: 600;
  font-size: 1.875rem;
  line-height: 45px;
  margin-left: 20px;
}

.services-about {
  font-weight: 400;
  font-size: 1.25rem;
  margin-left: 20px;
}

.volunteer_education-container {
  display: flex;
  flex-direction: row;
  gap: 6vh;
  align-items: center;
  justify-content: center;
}

.volunteer-container {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  margin-top: 3vh;
  max-width: 450px;
  width: 90%;
  height: 225px;
  flex-shrink: 0;
  border-radius: 10px;
  background-image:
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.8)
    ),
    url('/site/templates/assets/images/volunteer-img.jpg');
  background-color: lightgray;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  justify-content: center;
}

.education-container {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  margin-top: 3vh;
  max-width: 450px;
  width: 90%;
  height: 225px;
  flex-shrink: 0;
  border-radius: 10px;
  background-image:
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.8)
    ),
    url('/site/templates/assets/images/education-img.jpg');
  background-color: lightgray;
  background-position: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.volunteer-content {
  color: #21536c;
  text-align: center;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  text-decoration-line: underline;
  cursor: pointer;
}
.education-content {
  color: #21536c;
  text-align: center;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  text-decoration-line: underline;
  cursor: pointer;
}

.report-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.volunteer-oppurtunities {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  border-top: solid 1px #d9d4d7;
  border-bottom: solid 1px #d9d4d7;
  padding-top: 7vh;
  padding-bottom: 7vh;
  margin-top: 15vh;
  margin-left: 20px;
  margin-right: 20px;
}

.opportunities-contents {
  color: #000;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 400;
}

@media screen and (max-width: 360px) {
  header {
    margin-bottom: 0vh;
  }
  .title {
    font-size: 1.25rem;
    line-height: 30px;
  }
  .title-container {
    width: 100%;
    margin-left: 0px;
  }
  .volunteer_education-container {
    gap: 3vh;
  }
  .services-about {
    font-size: 0.875rem;
  }
  .volunteer-content {
    font-size: 0.875rem;
  }
  .education-content {
    font-size: 0.875rem;
  }
  .volunteer-container {
    height: 150px;
  }
  .education-container {
    height: 150px;
  }
  .opportunities-contents {
    font-size: 0.875rem;
    margin: 12px;
  }
}

@media screen and (min-width: 361px) and (max-width: 500px) {
  .title {
    font-size: 1.5rem;
  }
  .services-about {
    font-size: 1.125rem;
  }
  .volunteer-content {
    font-size: 1rem;
  }
  .education-content {
    font-size: 1rem;
  }
  .education-container {
    max-width: 401px;
    width: 90%;
  }
  .opportunities-contents {
    font-size: 1rem;
  }
  .volunteer-container {
    max-width: 401px;
    width: 90%;
  }
}

@media screen and (max-width: 1050px) {
  .volunteer_education-container {
    flex-direction: column;
  }
  .title-container {
    justify-content: center;
    align-self: center;
  }
}
@media screen and (min-width: 361px) and (max-width: 1050px) {
  .report-container {
    margin-top: 38vh;
    position: relative;
    align-self: center;
    align-items: center;
  }
}
