html {
  height: 100%;
}

body {
  background-color: #1d1d1d;
  font-family: "Changa", sans-serif;
  color: white;
}

a {
  color: white;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.flexxy {
  display: flex;
  justify-content: space-between;
  height: 600px;
  margin-top: 2rem;
}
@media (max-width: 530px) {
  .flexxy {
    height: 750px;
  }
}

.half {
  display: flex;
  justify-content: center;
}
.half img {
  height: 100%;
}

@media (max-width: 1200px) {
  .right {
    display: none;
  }
}

.left {
  flex-grow: 2;
}

section.header {
  background-color: #1d1d1d;
  color: white;
  font-family: "Changa", sans-serif;
}

.outer {
  border-bottom: 1px solid grey;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
}
@media (max-width: 1200px) {
  .topbar {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.logo {
  font-family: "Changa", sans-serif;
}
@media (max-width: 1000px) {
  .logo {
    margin: 0 auto;
    padding: 24px;
  }
}
.logo img {
  height: 120px;
}

.contact {
  display: flex;
  align-items: center;
  height: 100%;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}
.contact p {
  color: white;
  padding: 0;
  font-size: 1rem;
}
.contact p span {
  letter-spacing: 0.05rem;
  font-family: "Changa", sans-serif;
}
.contact img {
  height: 75px;
  margin-right: 1rem;
}
.contact_text {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact_text p {
  font-size: 1.1rem;
}
.contact_text a {
  font-size: 1.25rem;
}
.contact > div {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1000px) {
  .contact {
    display: none;
  }
}

.email {
  height: 100%;
  margin-right: 2rem;
}

.call {
  height: 100%;
}

.menu {
  display: none;
  height: 4rem;
  font-size: 1.2rem;
}
@media (max-width: 1200px) {
  .menu {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.menu-item {
  display: flex;
  align-content: center;
  padding: 1rem;
}
.menu-item:hover {
  background-color: #519839;
  color: white;
}

.main {
  background-color: #1d1d1d;
  padding: 1rem;
}
.main .h1 {
  letter-spacing: 0.1rem;
  font-size: 2.5rem;
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 1000px) {
  .main .h1 {
    margin-top: 2rem;
  }
}

.subtitle {
  max-width: 1200px;
  font-weight: 400;
  margin: 0 auto 48px auto;
  text-align: center;
  font-family: "Sen", sans-serif;
  color: #519839;
  font-size: 1.75rem;
}
@media (max-width: 1000px) {
  .subtitle {
    margin: 0 auto 24px auto;
  }
}

form {
  position: relative;
  background-color: white;
  max-width: 600px;
  font-family: "Sen", sans-serif;
  padding: 1rem;
  border-radius: 0.5rem;
  z-index: 1;
  color: #1d1d1d;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  display: flex;
  flex-direction: column;
}

.form_fields {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
}
.form_fields .form_description {
  margin-bottom: 24px;
}

.form_field {
  min-width: 200px;
  flex-grow: 1;
  padding: 0.5rem;
}
.form_field label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
}
.form_field-full {
  width: 100%;
  height: 200px;
}
.form_field input {
  width: 100%;
  border-radius: 0.25rem;
  padding: 0.5rem;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.39), 0 -1px 1px #FFF, 0 1px 0 #FFF;
  border: 1px solid rgba(0, 0, 0, 0.16);
}
.form_field input:focus {
  outline: none;
  border: 1px solid #519839;
}

.message {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 0.5rem;
}
.message label {
  font-size: 1.1rem;
}

textarea {
  width: 100%;
  height: auto;
  border-radius: 0.25rem;
  padding: 0.5rem;
  resize: none;
  flex-grow: 1;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.39), 0 -1px 1px #FFF, 0 1px 0 #FFF;
  border: 1px solid rgba(0, 0, 0, 0.25);
}
textarea:focus {
  outline: none;
  border: 1px solid #519839;
}

button {
  background-color: #519839;
  height: 3rem;
  color: white;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 0.25rem;
  align-self: flex-start;
  margin: 0.5rem;
  font-size: 1.1rem;
}
button:active {
  background-color: #366b2a;
}

p {
  padding: 0.5rem;
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 0;
  color: #333;
  font-family: "Sen", sans-serif;
}
p strong {
  text-decoration: underline;
}

h2 {
  letter-spacing: 0.1rem;
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 24px;
  font-size: 2.5rem;
  font-weight: 400;
}

.services {
  background-color: #519839;
  margin-top: -10rem;
  padding-top: 10rem;
  padding-bottom: 4rem;
}
.services h2 {
  color: white;
  margin-bottom: 0;
}
.services .subtitle {
  color: #1d1d1d;
  padding: 0;
}

.container_services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}

.service {
  background-color: white;
  width: 300px;
  max-width: 350px;
  min-height: 300px;
  position: relative;
  border-radius: 0.2rem;
  margin: 1rem;
  padding: 1.8rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.service_image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  height: 150px;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}
.service_image img {
  height: 100%;
}
.service_image_security {
  background-image: url(images/securitycamera.png);
}
.service_image_ev {
  background-image: url(images/EV.png);
}
.service_image_lightbulb {
  background-image: url(images/lightbulb.png);
}
.service_image_report {
  background-image: url(images/clipboard.png);
}
.service_image_switchboard {
  background-image: url(images/fuseboard.png);
}
.service_image_fan {
  background-image: url(images/fan.png);
}
.service_image_switchboard {
  background-image: url(images/fuseboard.png);
}
.service_image_aircon {
  background-image: url(images/aircon.png);
}
.service h3 {
  font-size: 1.5rem;
  color: #519839;
  text-align: center;
  margin: 0.5rem;
  margin-top: 1rem;
  font-weight: 600;
}
.service p {
  text-align: center;
}

.features {
  background-color: white;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.features h2 {
  color: #519839;
  margin-top: 0;
  margin-bottom: 36px;
}
.features .subtitle {
  color: #1d1d1d;
  padding: 0;
  margin-bottom: 3rem;
}
.features h3 {
  color: #519839;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.container_features {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 12px auto;
}
@media (max-width: 1000px) {
  .container_features {
    grid-template-columns: 1fr 1fr;
    justify-items: end;
  }
  .container_features .feature:nth-child(even) {
    justify-self: start;
  }
}
@media (max-width: 530px) {
  .container_features {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .container_features .feature:nth-child(even) {
    justify-self: center;
  }
}

.feature {
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  padding: 2rem;
  max-width: 350px;
  min-width: 200px;
  align-items: center;
  text-align: center;
  margin-bottom: 1.5rem;
}
.feature .symbol_container {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  background-color: white;
}
.feature img {
  align-self: center;
  width: 65%;
  margin: 0 auto;
}

.footer {
  display: grid;
  grid-auto-flow: column;
  padding: 3rem 0;
  align-items: stretch;
}
@media (max-width: 1000px) {
  .footer {
    grid-auto-flow: row;
    padding: 2rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 530px) {
  .footer {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
}
.footer .about {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 48px;
}
@media (max-width: 1000px) {
  .footer .about {
    grid-column: span 2;
  }
}
@media (max-width: 530px) {
  .footer .about {
    grid-column: span 1;
    padding-top: 2rem;
  }
}
.footer p {
  color: white;
}

.accreditations, .details {
  border-left: 2px solid grey;
  padding-left: 2rem;
  color: white;
  margin-left: 2rem;
  margin-bottom: 2rem;
}
.accreditations p, .details p {
  color: white;
  font-size: 1.2rem;
  font-weight: 400;
}
.accreditations p span, .accreditations p span a, .details p span, .details p span a {
  color: #519839;
}
@media (max-width: 1000px) {
  .accreditations, .details {
    margin-left: 0;
  }
}
@media (max-width: 530px) {
  .accreditations, .details {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 1000px) {
  .accreditations {
    border-left: none;
    padding-left: 0;
  }
}

.recaptcha {
  font-size: 0.75rem;
}
.recaptcha a {
  color: black;
}

/*# sourceMappingURL=style.css.map */
