﻿/****** Elad Shechter's RESET *******/
/*** box sizing border-box for all elements ***/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin-block-start: 0;
  margin-block-end: 0;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  padding-right: 0 !important;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

ul, ol, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

.body {
  display: flex;
}
.body-content {
  width: 100%;
  min-height: calc(100vh - 250px);
}
@media (max-width: 650px) {
  .body-content {
    min-height: calc(100vh - 375px);
  }
}
.body-content-main {
  width: 80%;
  width: -webkit-fill-available;
  min-height: calc(100vh - 250px);
}
@media (max-width: 650px) {
  .body-content-main {
    min-height: calc(100vh - 375px);
  }
}

nav {
  min-height: 100%;
  background-color: #006838;
  color: white;
  width: 400px;
  min-width: 400px;
  transform: translateX(0);
}
@media (max-width: 1150px) {
  nav {
    transition: transform 500ms;
    transform: translateX(-100%);
    position: absolute;
    z-index: 101;
  }
}
@media (max-width: 400px) {
  nav {
    width: 100%;
    min-width: 0;
  }
}
nav.active {
  transform: translateX(0) !important;
}

.nav-content {
  height: 100%;
}
.nav-content-close {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 30px;
  display: none;
}
@media (max-width: 1150px) {
  .nav-content-close {
    display: block;
  }
}
.nav-content-close img {
  width: 100%;
}
.nav-logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
}
.nav-logo-container img {
  max-width: 100%;
  width: 250px;
  margin: 20px 35px 10px;
}
.nav-logo-container-buttons {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 120px);
}
.nav-links {
  margin-top: 35px;
}
.nav-links-entry {
  margin: 0;
  padding: 10px 0;
}
.nav-links-entry a {
  display: flex;
  align-items: center;
  color: #FFF;
  font-family: Nexa, sans-serif;
  font-size: 1.15rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-left: 50px;
}
.nav-links-entry img {
  max-width: 28px;
  margin-right: 15px;
}
.nav-links-entry.current {
  background: rgba(255, 255, 255, 0.2);
}
.nav-links-entry:hover {
  background: rgba(255, 255, 255, 0.2);
}
.nav-login-status {
  margin-left: 50px;
  margin-bottom: 20px;
}
.nav-login-status p {
  margin-bottom: 5px;
  font-size: 1.1rem;
}
.nav-login-status button {
  text-decoration: underline;
  font-weight: bold;
  font-size: 1.1rem;
}
.nav-mask {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms;
}
.nav-mask.active {
  pointer-events: auto;
  opacity: 1;
}

.mobile-nav-banner {
  width: 100%;
  background-color: #006838;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  height: 70px;
  transition: top 300ms;
  align-items: center;
  justify-content: center;
  display: none;
}
@media (max-width: 1150px) {
  .mobile-nav-banner {
    display: flex;
  }
}
.mobile-nav-trigger {
  padding: 6px 10px;
  position: absolute;
  left: 0;
}
.mobile-nav-trigger img {
  width: 50px;
}
.mobile-nav-logo {
  max-width: 45px;
}
.mobile-nav-logo img {
  max-width: 100%;
}

footer {
  background: #2B2B2B;
  text-align: center;
  color: white;
  width: 100%;
}
footer > h3 {
  padding-top: 20px;
}
footer .footer-links {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  /* margin-left: auto; */
  opacity: 0.5;
  text-align: left;
  text-transform: uppercase;
  width: 50%;
}
footer .footer-social-links {
  padding-bottom: 10px;
}
footer .footer-social-links-icon {
  font-size: 2rem;
  margin: 0 5px;
  color: white;
}
footer .footer-logo-bar {
  background: #2B2B2B;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 30px 6%;
  justify-content: space-between;
  height: 250px;
}
@media (max-width: 650px) {
  footer .footer-logo-bar {
    flex-direction: column;
    height: 375px;
    justify-content: start;
  }
}
footer .footer-logo-bar-left {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-right: 15px;
}
@media (max-width: 650px) {
  footer .footer-logo-bar-left {
    align-items: center;
    margin-right: 0;
  }
}
footer .footer-logo-bar-left img {
  max-width: 250px;
  margin-right: 50px;
}
@media (max-width: 650px) {
  footer .footer-logo-bar-left img {
    margin-right: 0;
    max-width: 200px;
  }
}
footer .footer-logo-bar-left-copyright {
  text-align: left;
  /*color: rgba(255,255,255,.5);*/
  font-size: 1rem;
}
@media (max-width: 650px) {
  footer .footer-logo-bar-left-copyright {
    text-align: center;
  }
}
@media (max-width: 500px) {
  footer .footer-logo-bar-left {
    flex-wrap: wrap;
  }
}
footer .footer-logo-bar-right {
  margin-right: 200px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
@media (max-width: 1150px) {
  footer .footer-logo-bar-right {
    margin-right: 0;
  }
}
@media (max-width: 650px) {
  footer .footer-logo-bar-right {
    align-items: center;
  }
}
footer .footer-logo-bar-right a {
  margin-bottom: 4px;
  color: white;
}
footer .footer-logo-bar-right p {
  margin: 0;
  text-align: start;
}
@media (max-width: 650px) {
  footer .footer-logo-bar-right p {
    text-align: center;
  }
}
footer .footer-logo-bar-right-contact {
  font-size: 1.25rem;
  margin-bottom: 15px !important;
}

.button {
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 20px;
  display: inline-block;
  margin-top: 30px;
  transition: all 200ms ease-out;
  transition-delay: 0s, 0.15s;
  background-size: 205%;
  min-width: 130px;
  text-align: center;
  text-transform: uppercase;
  font-style: italic;
}
.button-orange {
  background-color: #FA2B02;
  color: white;
}
.button-green {
  background-color: #006838;
  color: white;
}

.painted-header {
  width: 100%;
  min-height: 300px;
  background-image: url(/Images/gray-splatter.png);
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
}
.painted-header-content {
  padding-top: 50px;
  max-width: 1500px;
  display: flex;
  width: 80%;
}
.painted-header-content-text {
  margin-top: 75px;
}
.painted-header-content-text h1 {
  color: #000;
  font-family: Nexa, sans-serif;
  font-size: 4rem;
  font-style: normal;
  font-weight: bold;
  line-height: 2.25rem;
  text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Nexa, sans-serif;
  text-transform: uppercase;
}

h1 {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 769px) {
  h1 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}

h2 {
  font-size: 1.9rem;
  line-height: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}
@media (max-width: 769px) {
  h2 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}

h3 {
  font-size: 1.35rem;
  line-height: 1.25rem;
  font-weight: 500;
  margin-bottom: 10px;
}

body, p, a, li, ul, ol, span, div, button, input {
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.35rem;
}

p {
  margin: 15px 0;
}

ul li {
  margin-bottom: 15px;
}

.section-header {
  margin-bottom: 20px;
  border-bottom: 1px solid black;
  padding-bottom: 15px;
}

a {
  color: #FA2B02;
}
