/** Reset CSS **/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline; }

/* remember to define focus styles! */
:focus {
  outline: 0; }

body {
  line-height: 1;
  color: black;
  background: white; }

ol, ul {
  list-style: none; }

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: separate;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  font-weight: normal; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: ""; }

blockquote, q {
  quotes: "" ""; }

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html {
  height: 100%; }

body {
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url("/assets/pcb-bg.jpg") fixed center center/cover; }
  body.home {
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url("/assets/pcb-bg.jpg") fixed center center/cover; }

#container {
  min-height: calc(100% - 186px); }

#header #menu {
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.3); }
  #header #menu ul {
    text-align: right; }
    #header #menu ul li {
      display: inline-block; }
      #header #menu ul li a {
        display: inline-block;
        padding: 15px 4px;
        color: #0a650c;
        font-size: 1.1rem;
        text-decoration: none; }
        @media (min-width: 450px) {
          #header #menu ul li a {
            font-size: 1.3rem;
            padding: 15px; } }
  @media (max-width: 767px) {
    #header #menu {
      grid-template-columns: 1fr;
      justify-items: center; }
      #header #menu .logo img {
        width: 100%; } }
#header .slogan {
  display: grid;
  grid-template-rows: 4rem 1fr;
  grid-template-columns: 1fr 1fr;
  color: black;
  text-align: left;
  margin: 30px;
  font-size: 1.3rem;
  line-height: 2rem;
  padding: 0 2rem; }
  #header .slogan .head {
    grid-column: 1 / span 2;
    display: flex;
    flex-wrap: nowrap;
    align-items: center; }
    #header .slogan .head h1 {
      flex-grow: 0;
      font-size: 2.2rem;
      font-weight: bold;
      padding-right: 1rem; }
    #header .slogan .head .separator {
      flex-grow: 1;
      height: 10px;
      border-top: 2px solid white;
      border-bottom: 2px solid white; }
  #header .slogan p {
    margin: 30px 0; }
  #header .slogan .right {
    text-align: right; }
  #header .slogan ul {
    list-style-type: disc;
    margin-left: 20px; }
  @media (max-width: 768px) {
    #header .slogan {
      padding: 0 1rem; }
    #header .slogan .left {
      grid-column: 1 / span 2;
      grid-row: 2 / span 1; }
    #header .slogan .right {
      grid-column: 1 / span 2;
      grid-row: 3 / span 1;
      text-align: center; }
      #header .slogan .right img {
        width: 100%; } }

body.home #header #menu {
  background: rgba(255, 255, 255, 0.3); }

#body h1 {
  font-size: 2rem;
  font-weight: bold;
  padding: 45px 45px 45px 0; }

.samples {
  background: rgba(255, 255, 255, 0.8);
  padding: 0 2rem 45px; }
  .samples .center, .samples .samples-grid {
    width: 100%;
    max-width: 1000px;
    margin: auto; }
  @media (max-width: 768px) {
    .samples {
      padding: 0 1rem 45px; } }

.samples-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-template-areas: "video video video" "label1 label2 label3" "img1 img2 img3";
  grid-gap: 2rem;
  text-align: center;
  justify-items: center; }
  .samples-grid .video:nth-of-type(1) {
    grid-area: video; }
  .samples-grid .video {
    width: 100%; }
    .samples-grid .video iframe {
      width: 100%;
      height: 100%; }
  .samples-grid img {
    width: 100%; }
  .samples-grid .title {
    font-size: 1.5rem;
    font-weight: bold; }
    .samples-grid .title a {
      color: #0a650c; }
  .samples-grid .label1 {
    grid-area: label1; }
  .samples-grid .label2 {
    grid-area: label2; }
  .samples-grid .label3 {
    grid-area: label3; }
  .samples-grid .img1 {
    grid-area: img1; }
  .samples-grid .img2 {
    grid-area: img2; }
  .samples-grid .img3 {
    grid-area: img3; }

@media (max-width: 520px) {
  .samples-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "video" "label1" "img1" "label2" "img2" "label3" "img3"; } }
.contact {
  background: rgba(255, 255, 255, 0.4);
  margin-top: 90px;
  padding-bottom: 45px; }
  .contact .center {
    width: 100%;
    max-width: 1000px;
    margin: auto; }
  .contact form {
    width: 100%; }
    .contact form label, .contact form input, .contact form textarea, .contact form button {
      display: block;
      width: 100%;
      padding: 8px;
      font-size: 1rem; }
    .contact form input, .contact form textarea, .contact form button {
      border: 1px solid rgba(10, 101, 12, 0.4);
      margin-bottom: 16px; }
    .contact form textarea {
      height: 228px; }
    .contact form button {
      background: rgba(10, 101, 12, 0.4);
      color: white;
      padding: 16px;
      cursor: pointer;
      grid-column: 1 / 3; }
  @media (min-width: 769px) {
    .contact form {
      display: grid;
      grid-gap: 25px;
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 1024px) {
    .contact {
      padding-left: 1rem;
      padding-right: 1rem; } }

.designs {
  width: 100%;
  max-width: 1000px;
  margin: auto; }
  .designs img {
    width: 100%;
    max-width: 1000px; }
    .designs img:last-of-type {
      margin-bottom: 100px; }

#footer {
  display: grid;
  grid-template-columns: 1fr 1fr; }
  #footer p {
    padding: 25px; }
    #footer p, #footer p a {
      color: black; }
  #footer p:nth-of-type(2) {
    text-align: right; }
