@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;
}

.Hero-Section {
  background-image: url(/images/HomePageBackground-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: calc(100vh - 7em);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.Hero-Section div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 55%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 4rem;
  border-radius: 1rem;
}
.Hero-Section div h1 {
  align-self: flex-end;
  margin: 0;
  font-size: 3rem;
  font-family: "Open Sans", sans-serif;
  color: #e1b231;
}
.Hero-Section div h2 {
  align-self: flex-end;
  margin: 0;
  font-size: 1.5em;
  font-family: "Open Sans", sans-serif;
  color: #788d01;
}
.Hero-Section div p {
  margin: 1.75rem;
  font-size: 1.25rem;
  font-family: "Open Sans", sans-serif;
  color: #000000;
}
.Hero-Section div p::after {
  content: "\a";
  white-space: pre;
}
.Hero-Section div img {
  width: 18%;
  align-self: flex-end;
}

.Services-Brief {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.Services-Brief .services-brief-title {
  margin: 0;
  font-size: 3rem;
  font-family: "Open Sans", sans-serif;
  color: white;
}
.Services-Brief .Service-Button-Container {
  width: 65%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
}
.Services-Brief .Service-Button-Container .Service-Buttons-row {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 4rem;
}

.Action-Call {
  background-image: url(/images/HomePageBackground-2.png);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: calc(100vh - 7em);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.Action-Call div {
  background-color: rgba(225, 255, 228, 0.8);
  border-radius: 0.75rem;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}
.Action-Call div h1 {
  margin: 0;
  font-size: 2.25em;
  font-family: "Open Sans", sans-serif;
  color: #000000;
  text-align: center;
}
.Action-Call div p {
  margin: 1.75rem;
  font-size: 1.25rem;
  font-family: "Open Sans", sans-serif;
  color: #000000;
  text-align: center;
}
.Action-Call div button {
  margin-top: 2rem;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-family: "Open Sans", sans-serif;
  color: #000000;
  background-color: #e1b231;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}

contact-form {
  position: fixed;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

service-brief {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 900;
}
service-brief li {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 0.5rem;
  font-family: "Open Sans", sans-serif;
}/*# sourceMappingURL=index.css.map */