@font-face {
  font-family: "Orbitron";
  src: url("/fonts/Orbitron-VariableFont_wght.woff2") format("woff2"), url("/fonts/Orbitron-VariableFont_wght.woff2") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("/fonts/OpenSans-VariableFont_wdth,wght.woff2") format("woff2"), url("/fonts/OpenSans-VariableFont_wdth,wght.woff2") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
html {
  height: 100%;
}

body {
  background-image: url("../images/bg.jpg");
  background-attachment: fixed;
  font-family: "Open Sans", system-ui, sans-serif;
  background-position: center;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

section {
  padding: 1em;
}

.navblock {
  background-color: rgba(186, 186, 186, 0.9);
  padding: 1em;
  margin: 0;
  text-align: center;
  display: block;
}
.navblock ul {
  display: flex;
  place-content: space-between;
}
.navblock ul li .burger {
  cursor: pointer;
  margin: 1em;
  margin-top: 1.5em;
}

nav {
  display: none;
  background-color: rgba(245, 245, 245, 0.9);
  position: fixed;
  z-index: 998;
  width: 60%;
  max-width: 20em;
  top: 0;
  right: 0;
  height: 100vh;
}
nav.menu-btn {
  display: block;
}
nav ul {
  list-style-type: none;
  margin-top: 0.5em;
  margin-right: 1em;
  padding: 1em;
  text-align: right;
  text-transform: uppercase;
  font-family: "Orbitron", system-ui, sans-serif;
}
nav ul li {
  margin-top: 1em;
}
nav ul li img {
  margin-bottom: 1em;
  cursor: pointer;
}
nav ul li a {
  font-size: 1.2em;
}
nav ul li a:link, nav ul li a:visited {
  text-decoration: none;
  color: black;
}
nav ul li a:hover, nav ul li a:active {
  color: yellowgreen;
  text-decoration: underline;
}

.hero {
  margin-bottom: 2em;
  text-align: center;
}
.hero a {
  display: inline-block;
  text-decoration: none;
  width: clamp(250px, 50vw, 900px);
}
.hero a .subhero {
  display: block;
  margin: 0 auto;
  background-color: rgba(154, 205, 50, 0.9);
  border-radius: 0.75em;
  padding: 1em;
  margin-top: 3em;
}
.hero a .subhero .calltoaction {
  text-align: center;
  font-family: "Orbitron", system-ui, sans-serif;
  text-transform: uppercase;
  font-size: 2em;
  color: black;
}
.hero a .subhero .actionbutton {
  text-align: center;
  display: block;
  margin: 0.5em auto;
  padding: 0.5em;
  background-color: green;
  text-decoration: none;
  border-radius: 0.5em;
  font-family: "Orbitron", system-ui, sans-serif;
  text-transform: uppercase;
  border-style: none;
  color: black;
  font-size: 1.5em;
  cursor: pointer;
}
.hero a .subhero .actionbutton:hover, .hero a .subhero .actionbutton:active {
  background-color: yellowgreen;
  color: whitesmoke;
}
.hero h1 {
  text-align: center;
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: clamp(40px, 6vw, 100px);
  color: yellowgreen;
  text-shadow: 2px 2px 5px black;
}

.mainbody {
  flex: 1 0 auto;
  background-color: rgba(82, 81, 81, 0.9);
}
.mainbody .container {
  margin-top: 2em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.mainbody .container .column {
  margin: 2em;
}
.mainbody .container .column h3 {
  text-align: center;
  text-transform: uppercase;
  font-family: "Orbitron", system-ui, sans-serif;
  color: yellowgreen;
}
.mainbody .container .column p {
  font-family: "Open Sans", system-ui, sans-serif;
  color: whitesmoke;
  text-align: center;
  width: 20em;
}
.mainbody h1 {
  font-family: "Orbitron", system-ui, sans-serif;
  text-transform: uppercase;
  font-size: 4em;
  text-align: center;
  color: yellowgreen;
}
.mainbody p {
  text-align: center;
  color: whitesmoke;
}
.mainbody a {
  text-decoration: none;
  text-align: center;
}
.mainbody a p {
  color: yellowgreen;
}
.mainbody a:hover, .mainbody a:active {
  color: yellowgreen;
  text-decoration: underline;
}
.mainbody h2 {
  color: whitesmoke;
  font-family: "Open Sans", system-ui, sans-serif;
  text-align: center;
}

.servicesprovided h3 {
  font-family: "Orbitron", system-ui, sans-serif;
  text-transform: uppercase;
  text-align: center;
  color: yellowgreen;
  font-size: 1.5em;
}
.servicesprovided .servicestable {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.servicesprovided .servicestable li {
  margin: 1%;
}
.servicesprovided .servicestable li .service-icon {
  height: 6em;
  margin: 0.5em;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.servicesprovided .servicestable li .service-icon.active {
  transform: scale(1.05);
}
.servicesprovided .servicestable li p {
  font-family: "Orbitron", system-ui, sans-serif;
  text-transform: uppercase;
  color: whitesmoke;
  text-align: center;
  max-width: 8em;
  font-size: 0.8em;
  margin: auto;
}

.service-description {
  margin-top: 2em;
  text-align: center;
  margin-bottom: 5em;
}
.service-description .service-text {
  display: none;
  max-width: 800px;
  margin: auto;
}
.service-description .service-text h3 {
  font-family: "Orbitron", system-ui, sans-serif;
  color: yellowgreen;
  font-size: 1.5em;
  text-transform: uppercase;
}
.service-description .service-text p {
  font-family: "Open Sans", system-ui, sans-serif;
  color: whitesmoke;
  font-style: italic;
  font-size: 1.1em;
}
.service-description .service-text.active {
  display: block;
}

form {
  font-family: "Open Sans", system-ui, sans-serif;
  color: whitesmoke;
  max-width: 70vw;
  margin: auto;
  margin-bottom: 2em;
  display: block;
}
form h3 {
  font-style: italic;
}
form fieldset {
  display: flex;
  gap: 2em;
  border: none;
  margin: 0;
}
form fieldset legend {
  width: 100%;
  margin-bottom: 0.5em;
}
form fieldset label {
  display: flex;
  gap: 0.4em;
  cursor: pointer;
}
form fieldset label input {
  width: 20px;
  height: 20px;
}
form label {
  margin-bottom: 1em;
}
form label input {
  width: 100%;
  padding: 0.6em;
  margin-top: 0.25em;
}
form label textarea {
  width: 100%;
  padding: 0.6em;
  margin-top: 0.25em;
}
form label select {
  width: 100%;
  padding: 0.6em;
  font-family: "Open Sans", system-ui, sans-serif;
}
form p {
  font-size: 0.6em;
  text-align: left !important;
}
form button {
  display: flex;
  margin: auto;
  margin-top: 1em;
  padding: 0.3em;
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 2em;
  background-color: yellowgreen;
  border-radius: 0.2em;
  border: none;
  cursor: pointer;
}
form button:hover, form button:active {
  background-color: whitesmoke;
  color: black;
}
form .conditional {
  display: none;
}
form div #checkbox {
  display: block;
}
form div fieldset legend {
  margin-top: 0.5em;
}
form div label input {
  font-family: "Open Sans", system-ui, sans-serif;
}

.footer {
  background-color: rgba(82, 81, 81, 0.9);
}
.footer .footerList {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: calc(9px + 0.1vw);
}
.footer .footerList li {
  color: whitesmoke;
  margin: 0;
  margin-left: 1em;
  margin-right: 1em;
  text-transform: uppercase;
}
.footer .footerList li a {
  text-decoration: none;
  color: yellowgreen;
  text-align: center;
}/*# sourceMappingURL=main.css.map */