@font-face {
  font-family: "Open Sans";
  src: url("/Fonts/Open_Sans/static/OpenSans-Regular.ttf") format(trueType);
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #000000;
}

navigation-bar {
  height: 7em;
  position: sticky;
  top: 0;
  z-index: 1000;
}

footer-info {
  height: 40em;
}

.Services {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 7em);
  background-color: white;
  gap: 6rem;
  padding-top: 3rem;
  padding-bottom: 8rem;
  background-image: url(/images/ServicesPageBackground-1.png), url(/images/ServicesPageBackground-2.png);
  background-position: center top, center bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 50%, 100% 50%;
  z-index: -2;
}
.Services .Service-Details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 50%;
  background-color: rgba(225, 255, 228, 0.8);
  padding: 2rem;
  border-radius: 1rem;
  position: relative;
}
.Services .Service-Details h1 {
  color: #000000;
  font-size: 2.5rem;
  font-family: "Open Sans", sans-serif;
}
.Services .Service-Details p {
  color: #000000;
  font-size: 1.5rem;
  margin-top: 1rem;
  font-family: "Open Sans", sans-serif;
}
.Services .Service-Details ul {
  margin: 0;
}
.Services .Service-Details li {
  color: #000000;
  font-size: 1.5rem;
  margin-top: 1rem;
  font-family: "Open Sans", sans-serif;
  margin: 0;
}
.Services .Service-Details::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0.25rem solid #33B941;
  border-radius: 1rem;
  left: 3rem;
  top: 1rem;
  z-index: -1;
}

contact-form {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}/*# sourceMappingURL=services.css.map */