/* Scss Document */
/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */
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, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* Scss Document */
#top-info #inner-top-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 12px 0;
  color: #252523; }
  #top-info #inner-top-info #inner-top-left, #top-info #inner-top-info #inner-top-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    #top-info #inner-top-info #inner-top-left p, #top-info #inner-top-info #inner-top-right p {
      margin: 0 7px;
      font-size: 14px;
      color: #1468b0;
      font-weight: 700; }
      #top-info #inner-top-info #inner-top-left p i, #top-info #inner-top-info #inner-top-right p i {
        color: #44bd32; }
    #top-info #inner-top-info #inner-top-left a:hover, #top-info #inner-top-info #inner-top-right a:hover {
      color: #57bb6d; }

header {
  position: fixed;
  background: #fff;
  width: 100%;
  z-index: 500;
  -webkit-transition: .2s all ease-in-out;
  -o-transition: .2s all ease-in-out;
  transition: .2s all ease-in-out;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-top: 5px solid #44bd32;
  border-bottom: 5px solid #44bd32; }
  header.active {
    -webkit-box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.3); }
  header #inner-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    header #inner-header.active #logo {
      transition: .2s all ease-in-out; }
      header #inner-header.active #logo img {
        max-width: 210px;
        transition: .2s all ease-in-out; }
    header #inner-header.active #nav .header-item {
      padding: 10px 15px;
      transition: .2s all ease-in-out; }
    header #inner-header #logo {
      position: relative;
      margin: 5px 0;
      /*h1 {
      	font-size: 27px;
      	font-weight: 900;
      	text-transform: uppercase;
      	color: $darkblue;
      	letter-spacing: 1px;
      	}*/ }
      header #inner-header #logo img {
        position: absolute;
        top: -45px;
        left: 0;
        z-index: 500;
        max-width: 270px; }
    header #inner-header #menuBtn {
      display: none; }
    header #inner-header #nav {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      header #inner-header #nav .header-item {
        padding: 25px 15px;
        position: relative; }
        header #inner-header #nav .header-item p {
          text-transform: capitalize;
          color: #1c950a;
          font-size: 18px;
          font-weight: 700; }
        header #inner-header #nav .header-item:hover {
          cursor: pointer; }
          header #inner-header #nav .header-item:hover > p, header #inner-header #nav .header-item:hover a > p {
            color: #44bd32; }
        header #inner-header #nav .header-item .dropDown {
          position: absolute;
          top: 100%;
          -webkit-transform: scaleY(0);
          -ms-transform: scaleY(0);
          transform: scaleY(0);
          -webkit-transform-origin: top;
          -ms-transform-origin: top;
          transform-origin: top;
          left: 0;
          z-index: 500;
          display: block;
          visibility: hidden; }
        header #inner-header #nav .header-item:hover > .dropDown {
          background: -webkit-gradient(linear, left top, left bottom, from(#44bd32), to(#1c950a));
          background: -webkit-linear-gradient(#44bd32, #1c950a);
          background: -o-linear-gradient(#44bd32, #1c950a);
          background: linear-gradient(#44bd32, #1c950a);
          color: #fff;
          visibility: visible;
          -webkit-animation: slideDown .17s linear;
          animation: slideDown .17s linear;
          -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }
          header #inner-header #nav .header-item:hover > .dropDown a {
            display: block;
            padding: 20px 10px;
            position: relative;
            width: 180px;
            text-transform: capitalize;
            border-bottom: 1px solid #fff; }
            header #inner-header #nav .header-item:hover > .dropDown a:last-of-type {
              border-bottom: none; }
            header #inner-header #nav .header-item:hover > .dropDown a:hover {
              background: #252523;
              color: #fff; }
    header #inner-header #logo-mobile {
      display: none; }

@-webkit-keyframes slideDown {
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1); } }
@keyframes slideDown {
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1); } }
@media all and (max-width: 1040px) {
  #top-info #inner-top-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    #top-info #inner-top-info #inner-top-left p, #top-info #inner-top-info #inner-top-right p {
      margin: 3px; }

  header #inner-header #logo {
    z-index: 1000000000000000000000; }
    header #inner-header #logo img {
      max-width: 170px; }
  header #inner-header #nav .header-item {
    padding: 30px 5px; }
    header #inner-header #nav .header-item p {
      font-size: 14px; } }
@media all and (max-width: 900px) {
  header #inner-header #nav .header-item {
    padding: 30px 5px; }
    header #inner-header #nav .header-item p {
      font-size: 14px; } }
@media all and (max-width: 770px) {
  #top-info #inner-top-info p {
    margin: 3px;
    font-size: 14px; }
  #top-info #inner-top-info #inner-top-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center; }

  header {
    position: relative;
    background: #fff;
    -webkit-box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.3); }
    header #inner-header {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      padding: 8px 0; }
      header #inner-header #logo img {
        max-width: 210px; }
      header #inner-header .header-item {
        display: none; }
      header #inner-header #menuBtn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        color: #252523;
        font-size: 28px; }
      header #inner-header #nav.active {
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
        -ms-flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
        padding-bottom: 0;
        width: 100%;
        background: #44bd32;
        top: 100%;
        right: 0;
        -webkit-transform: translateX(80%);
        -ms-transform: translateX(80%);
        transform: translateX(80%);
        -webkit-transform-origin: top;
        -ms-transform-origin: top;
        transform-origin: top;
        -webkit-animation: mobile-nav .15s linear;
        animation: mobile-nav .15s linear;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        margin: 0;
        position: absolute;
        -webkit-box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.5);
        box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.5);
        z-index: 100000000; }
        header #inner-header #nav.active .header-item {
          display: -ms-flexbox;
          display: -webkit-box;
          display: flex;
          -ms-flex-direction: column;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          flex-direction: column;
          -ms-flex-align: center;
          -webkit-box-align: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          padding: 8vh 0;
          width: auto;
          margin: 0;
          text-align: center;
          width: 100%;
          border-bottom: 2px solid rgba(0, 0, 0, 0.2); }
          header #inner-header #nav.active .header-item p {
            color: #fff; }
            header #inner-header #nav.active .header-item p i {
              display: none; }
          header #inner-header #nav.active .header-item .dropDown {
            display: none; }
          header #inner-header #nav.active .header-item:hover {
            background: rgba(255, 255, 255, 0.2); }
            header #inner-header #nav.active .header-item:hover > p, header #inner-header #nav.active .header-item:hover a > p {
              color: #fff; } }
@-webkit-keyframes mobile-nav {
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes mobile-nav {
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
footer {
  background: -webkit-gradient(linear, left top, right top, from(#1468b0), to(#57bb6d));
  background: -webkit-linear-gradient(left, #1468b0, #57bb6d);
  background: -o-linear-gradient(left, #1468b0, #57bb6d);
  background: linear-gradient(90deg, #1468b0, #57bb6d); }
  footer #inner-footer {
    padding: 40px 0; }
    footer #inner-footer #inner-footer-contents {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      width: 100%; }
      footer #inner-footer #inner-footer-contents #inner-footer-left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 20px 5px; }
        footer #inner-footer #inner-footer-contents #inner-footer-left ul.footer-list {
          margin: 0 15px; }
          footer #inner-footer #inner-footer-contents #inner-footer-left ul.footer-list li {
            color: #fff;
            line-height: 1.4;
            font-size: 14px; }
            footer #inner-footer #inner-footer-contents #inner-footer-left ul.footer-list li.title {
              font-size: 16px;
              text-transform: uppercase; }
            footer #inner-footer #inner-footer-contents #inner-footer-left ul.footer-list li a {
              color: inherit; }
              footer #inner-footer #inner-footer-contents #inner-footer-left ul.footer-list li a:hover {
                color: #eee; }
            footer #inner-footer #inner-footer-contents #inner-footer-left ul.footer-list li i {
              margin-right: 5px; }
      footer #inner-footer #inner-footer-contents #inner-footer-right {
        margin: 20px 5px; }
        footer #inner-footer #inner-footer-contents #inner-footer-right p {
          max-width: 36ch;
          line-height: 1.4;
          color: #fff; }

@media all and (max-width: 1175px) {
  footer #inner-footer #inner-footer-contents #inner-footer-left ul.footer-list {
    margin: 0 10px; } }
@media all and (max-width: 1115px) {
  footer #inner-footer {
    padding: 20px 0; }
    footer #inner-footer #inner-footer-contents {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start; } }
@media all and (max-width: 767px) {
  footer #inner-footer #inner-footer-contents #inner-footer-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    footer #inner-footer #inner-footer-contents #inner-footer-left ul.footer-list {
      margin: 5px 0; } }
#map-wrap {
  width: 95%;
  margin: 20px 20px 20px 10px;
  border: 1px solid #252523;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.6); }
  #map-wrap iframe {
    width: 100%;
    height: 270px; }

#directions-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin: 10px 0 30px; }
  #directions-wrap .directions {
    margin: 0 20px;
    flex: 1; }
    #directions-wrap .directions li {
      line-height: 1.4;
      font-size: 14px;
      max-width: 85%;
      list-style: disc outside; }
      #directions-wrap .directions li:nth-of-type(1) {
        margin-bottom: 5px;
        font-size: 17px;
        list-style: none;
        font-weight: 700;
        color: #128b00; }

@media all and (max-width: 800px) {
  #directions-wrap {
    flex-direction: column; }
    #directions-wrap .directions {
      margin: 10px; } }
.overlay {
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500; }

.overlay p:last-child {
  margin-bottom: 0; }

.modal {
  background-color: #fff;
  color: #000;
  display: block;
  max-width: 90%;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 520; }

.formSent {
  width: 35ch;
  top: calc( 50% - 5rem );
  left: calc( 50% - ( 35ch / 2 )); }

.modal h1 {
  font-weight: 700;
  margin-bottom: 1rem; }

.modalX {
  color: #000;
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1em;
  position: absolute;
  top: .5rem;
  right: .75rem; }

.modal a {
  text-decoration: none; }

.modal a:hover, .modal a:active {
  text-decoration: underline; }

.modalX:hover {
  cursor: pointer; }

.modal ul.sheets {
  margin-left: 40px;
  list-style-type: disc; }

@media screen and (max-width: 399px) {
  .formSent {
    width: calc( 90% - 2.5rem );
    top: calc( 50% - 5rem );
    left: 5%; } }
/*form*/
.cForm {
  max-width: 80%;
  margin: 20px 10px;
  background: #44bd32;
  color: #fff;
  padding: 20px; }

.cForm input, .cForm textarea {
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  border: 1px inset #eee;
  border-radius: .25rem;
  padding: .35rem;
  max-width: 65ch; }

.cForm textarea {
  margin-top: .25rem;
  min-height: 5rem;
  height: auto; }

.cForm input:focus, .cForm textarea:focus {
  border: 1px inset #ccc;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); }

.cForm input[type="radio"], .cForm input[type="checkbox"] {
  box-shadow: none; }

.cForm .flex, .cForm textarea {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  outline: none;
  resize: none; }

.cForm input[type="submit"], .cForm input[type="reset"] {
  background: #ccc;
  background: -moz-linear-gradient(top, #fff 0%, #ccc 100%);
  background: -webkit-linear-gradient(top, #fff 0%, #ccc 100%);
  background: linear-gradient(to bottom, #fff 0%, #ccc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#ccc',GradientType=0 );
  border: 2px outset #eee;
  box-shadow: 0;
  color: #111;
  font-size: 1rem;
  padding: .5rem; }

.cForm input[type="submit"]:hover, .cForm input[type="reset"]:hover {
  background: #f00;
  background: -moz-linear-gradient(top, #ddd 0%, #aaa 100%);
  background: -webkit-linear-gradient(top, #ddd 0%, #aaa 100%);
  background: linear-gradient(to bottom, #ddd 0%, #aaa 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ddd', endColorstr='#aaa',GradientType=0 );
  border: 2px indset #aaa; }

.cForm ul .reqFields, .cForm .hiddenInput {
  /* Fields are hidden anyway, but never hurts to overdo it a little... */
  display: none; }

.cForm ul.formStructure {
  display: block;
  margin: auto; }

.cForm li.sectionLabel {
  display: block;
  font-weight: 700;
  margin-bottom: .5rem; }

.cForm li.blockInput {
  display: block;
  margin: 0 0 1rem 0; }

.cForm li.inlineInput {
  display: inline-block;
  margin: 0 .75rem .75rem 0; }

.cForm .detailSection {
  border: 1px outset #eee;
  border-radius: .25rem;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  display: block;
  max-width: 100%;
  margin: 2rem 1rem;
  padding: 1rem 1rem .25rem 1rem; }

.cForm label, .cForm .label {
  font-weight: 400; }

.cForm .note {
  margin: 1em 0; }

@media screen and (max-width: 599px) {
  .cForm {
    margin-left: auto;
    margin-right: auto;
    text-align: center; }

  .cForm ul {
    margin: auto; }

  .cForm .detailSection li.inlineInput {
    display: block; }

  .cForm .detailSection .label {
    display: block;
    margin-bottom: .5em; }

  .cForm .flex, .cForm textarea {
    min-width: 30ch;
    max-width: 45ch; } }
/* Scss Document */
.info {
  background: #fff;
  position: relative;
  min-height: 250px; }
  .info .inner-info {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #33bfc4;
    border-radius: 10px;
    width: calc(100% - 20px);
    max-width: 1000px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5); }
    .info .inner-info .info-section-wrap {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center; }
      .info .inner-info .info-section-wrap .top-info {
        padding: 40px 20px;
        text-align: center; }
        .info .inner-info .info-section-wrap .top-info h1 {
          margin: 20px 0;
          font-size: 44px;
          color: #fff;
          font-weight: 700; }
        .info .inner-info .info-section-wrap .top-info p {
          color: #fff;
          line-height: 1.5;
          max-width: 45ch;
          margin: 20px 0;
          font-size: 19px; }
      .info .inner-info .info-section-wrap .mid-info {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding-bottom: 20px; }
        .info .inner-info .info-section-wrap .mid-info .mid-left {
          display: flex;
          margin: 20px; }
          .info .inner-info .info-section-wrap .mid-info .mid-left .mid-left-icon {
            margin-right: 10px; }
            .info .inner-info .info-section-wrap .mid-info .mid-left .mid-left-icon i {
              height: 50px;
              width: 50px;
              background: linear-gradient(90deg, #1468b0, #33bfc4);
              border-radius: 4px;
              display: flex;
              justify-content: center;
              align-items: center;
              font-size: 32px;
              color: #fff; }
          .info .inner-info .info-section-wrap .mid-info .mid-left .mid-left-info h1 {
            font-size: 24px;
            margin-bottom: 10px; }
          .info .inner-info .info-section-wrap .mid-info .mid-left .mid-left-info p {
            line-height: 1.5;
            max-width: 44ch;
            font-size: 15px; }
        .info .inner-info .info-section-wrap .mid-info .mid-right img {
          max-width: 100%; }
      .info .inner-info .info-section-wrap .btm-wrap {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
        padding: 20px 20px 40px; }
        .info .inner-info .info-section-wrap .btm-wrap .btm-left, .info .inner-info .info-section-wrap .btm-wrap .btm-right {
          display: flex;
          align-items: flex-start;
          width: 100%;
          padding: 10px; }
        .info .inner-info .info-section-wrap .btm-wrap .btm-icon {
          margin-right: 10px; }
          .info .inner-info .info-section-wrap .btm-wrap .btm-icon i {
            height: 50px;
            width: 50px;
            background: linear-gradient(90deg, #57bb6d, #44bd32);
            border-radius: 4px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 32px;
            color: #fff; }
        .info .inner-info .info-section-wrap .btm-wrap .btm-info {
          display: flex;
          flex-direction: column; }
          .info .inner-info .info-section-wrap .btm-wrap .btm-info h1 {
            font-size: 24px;
            margin-bottom: 10px; }
          .info .inner-info .info-section-wrap .btm-wrap .btm-info p {
            line-height: 1.5;
            max-width: 44ch;
            font-size: 15px; }

@media all and (max-width: 770px) {
  .info .inner-info {
    top: 0px; }
    .info .inner-info .info-section-wrap .top-info {
      padding: 10px 20px; }
      .info .inner-info .info-section-wrap .top-info h1 {
        font-size: 34px; }
      .info .inner-info .info-section-wrap .top-info p {
        font-size: 16px; }
    .info .inner-info .info-section-wrap .mid-info {
      flex-direction: column;
      justify-content: center;
      align-items: center; }
      .info .inner-info .info-section-wrap .mid-info .mid-right {
        display: none; } }
/* Scss Document */
.overlay {
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500; }

.modal {
  background-color: #fff;
  color: #000;
  display: block;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 520; }

.modal h1 {
  font-weight: 700;
  margin-bottom: 1rem; }

.modalX {
  color: #000;
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1em;
  position: absolute;
  top: .5rem;
  right: .75rem; }

.modal a {
  text-decoration: none; }

.modal a:hover, .modal a:active {
  text-decoration: underline; }

.modalX:hover {
  cursor: pointer; }

.modal ul.sheets {
  margin-left: 40px;
  list-style-type: disc; }

#cutSheetsBox {
  width: 260px;
  height: 11em;
  margin-left: -150px;
  margin-top: -100px; }

#cutSheetsOverlay {
  z-index: 100000000; }

#cutSheetsBtn:hover {
  cursor: pointer; }

#outer-slider-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%; }
  #outer-slider-wrap #slider-info {
    text-align: center;
    padding: 10px;
    width: 50%; }
    #outer-slider-wrap #slider-info h1 {
      margin: 10px;
      font-size: 24px;
      line-height: 1.2;
      font-weight: 700;
      color: #1468b0; }
    #outer-slider-wrap #slider-info p {
      margin: 10px;
      line-height: 1.4; }
      #outer-slider-wrap #slider-info p:nth-of-type(2) {
        margin-bottom: 30px; }
    #outer-slider-wrap #slider-info a#btm-srch-btn {
      padding: 10px 20px;
      background: #30a91e;
      color: #fff; }
  #outer-slider-wrap .slider-wrap {
    width: 50%;
    margin: 0 auto 2rem;
    overflow-x: hidden;
    border: 5px solid #44bd32; }
    #outer-slider-wrap .slider-wrap #slider {
      width: 400vw;
      overflow: hidden;
      max-height: 380px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-animation: slide 16s infinite;
      animation: slide 16s infinite; }
      #outer-slider-wrap .slider-wrap #slider li {
        background-size: cover;
        background-position: 50% 30%;
        background-repeat: no-repeat;
        max-height: 380px;
        width: 100vw;
        /*&:nth-of-type(1) {
        	background-image: url("../graphics/building.jpg");
        	}
        &:nth-of-type(2) {
        	background-image: url("../graphics/desk.jpg");
        	}
        &:nth-of-type(3) {
        	background-image: url("../graphics/lot1.jpg");
        	}
        &:nth-of-type(4) {
        	background-image: url("../graphics/lift.jpg");
        	}*/ }
        #outer-slider-wrap .slider-wrap #slider li img {
          max-width: 100%; }

@-webkit-keyframes slide {
  0%, 24.5% {
    margin-left: 0; }
  25% {
    margin-left: -100vw; }
  49.5% {
    margin-left: -100vw; }
  50% {
    margin-left: -200vw; }
  74.5% {
    margin-left: -200vw; }
  75% {
    margin-left: -300vw; }
  99.9% {
    margin-left: -300vw; } }
@keyframes slide {
  0%, 24.5% {
    margin-left: 0; }
  25% {
    margin-left: -100vw; }
  49.5% {
    margin-left: -100vw; }
  50% {
    margin-left: -200vw; }
  74.5% {
    margin-left: -200vw; }
  75% {
    margin-left: -300vw; }
  99.9% {
    margin-left: -300vw; } }
@media all and (max-width: 767px) {
  #outer-slider-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-left: -5%; }
    #outer-slider-wrap #slider-info {
      width: 90%; }
    #outer-slider-wrap .slider-wrap {
      max-width: 512px;
      width: 90%; } }
body {
  font-family: "Maven Pro", sans-serif;
  position: relative;
  overflow-x: hidden;
  background-color: #fafaf9; }

a {
  text-decoration: none;
  color: inherit; }
  a:hover {
    color: inherit; }

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px; }

#hero {
  background-image: url("../graphics/dark.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: multiply;
  min-height: 250px;
  margin-top: -5px;
  border-bottom: 5px solid #44bd32; }
  #hero.about-hero {
    background-image: url("../graphics/abouthero.jpg");
    background-position: 50% 33%;
    background-color: rgba(0, 0, 0, 0.3); }
  #hero.location-hero {
    background-image: url("../graphics/bg.png"); }
  #hero.contact-hero {
    background-image: url("../graphics/lot3.jpg"); }
  #hero #inner-hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 5rem 0; }
    #hero #inner-hero #top-call h1 {
      font-size: 38px;
      font-weight: 900;
      color: #fff;
      margin: 20px 0; }
    #hero #inner-hero #top-call p {
      color: #fff;
      font-size: 21px;
      line-height: 1.5;
      max-width: 45ch; }
    #hero #inner-hero #top-call #srchBtn {
      max-width: 180px;
      background: -webkit-gradient(linear, left top, right top, from(#1468b0), to(#33bfc4));
      background: -webkit-linear-gradient(left, #1468b0, #33bfc4);
      background: -o-linear-gradient(left, #1468b0, #33bfc4);
      background: linear-gradient(90deg, #1468b0, #33bfc4);
      padding: 10px 30px;
      display: inline-block;
      -webkit-transition: .2s all ease-in-out;
      -o-transition: .2s all ease-in-out;
      transition: .2s all ease-in-out;
      text-align: center;
      margin: 20px 0; }
      #hero #inner-hero #top-call #srchBtn p {
        color: #fff; }
      #hero #inner-hero #top-call #srchBtn:hover {
        padding: 10px 50px; }

@-webkit-keyframes heroFade {
  33% {
    opacity: 1; }
  66% {
    opacity: 0; } }
@keyframes heroFade {
  33% {
    opacity: 1; }
  66% {
    opacity: 0; } }
article #inner-article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 2rem 0; }
  article #inner-article #left-info {
    width: 70%;
    margin: 10px; }
    article #inner-article #left-info h1 {
      margin: 10px;
      font-size: 28px;
      color: #1468b0;
      font-weight: 700; }
    article #inner-article #left-info p {
      line-height: 1.5;
      color: #252523;
      text-align: justify;
      margin: 15px 10px; }
      article #inner-article #left-info p a {
        text-decoration: underline; }
    article #inner-article #left-info #btm-images {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      article #inner-article #left-info #btm-images .bg-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%; }
        article #inner-article #left-info #btm-images .bg-wrap .bg {
          margin: 0 10px;
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center;
          height: 150px;
          width: calc(100% - 10px); }
        article #inner-article #left-info #btm-images .bg-wrap:nth-of-type(1) > .bg {
          background-image: url("../graphics/lift.jpg"); }
        article #inner-article #left-info #btm-images .bg-wrap:nth-of-type(2) > .bg {
          background-image: url("../graphics/lot3.jpg"); }
        article #inner-article #left-info #btm-images .bg-wrap:nth-of-type(3) > .bg {
          background-image: url("../graphics/shelf.jpg"); }
      article #inner-article #left-info #btm-images .bg-call {
        margin: 0 10px;
        background: #44bd32;
        width: calc(100% - 10px); }
        article #inner-article #left-info #btm-images .bg-call p {
          color: #fff;
          text-align: center;
          font-size: 14px; }
  article #inner-article #sidebar {
    width: 30%;
    margin: 20px 10px 10px; }
    article #inner-article #sidebar p {
      text-align: center;
      font-size: 14px;
      color: #252523; }
    article #inner-article #sidebar .btn {
      background: #44bd32;
      padding: 20px 50px;
      margin: 20px 10px; }
      article #inner-article #sidebar .btn:hover {
        background: #1468b0; }
      article #inner-article #sidebar .btn:nth-of-type(3) {
        background: #252523; }
        article #inner-article #sidebar .btn:nth-of-type(3):hover {
          background: #252523; }
      article #inner-article #sidebar .btn p {
        font-weight: 700;
        color: #fff;
        text-align: center;
        font-size: 16px; }
    article #inner-article #sidebar img {
      max-width: 90%;
      margin: 10px; }
      article #inner-article #sidebar img:nth-of-type(2) {
        max-width: 75%; }

#contact-btn {
  background: #44bd32;
  padding: 20px 50px;
  margin: 40px 10px 20px;
  color: #fff; }
  #contact-btn:hover {
    background: #1468b0; }

@media all and (max-width: 800px) {
  article #inner-article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    article #inner-article #left-info {
      width: 100%; }
    article #inner-article #sidebar {
      width: 100%; }
      article #inner-article #sidebar img {
        max-width: 300px;
        margin: 10px auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; } }
@media all and (max-width: 767px) {
  #hero {
    min-height: auto; }
    #hero img#tires {
      display: none; }
    #hero #inner-hero {
      padding: 4rem 0; }
      #hero #inner-hero #top-call {
        padding-bottom: 2rem; }

  .about {
    padding-top: 250px; }

  #main-btm {
    margin: 20px; }
    #main-btm h1#service-call {
      font-size: 32px;
      line-height: 1.1; }
    #main-btm #about-info {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
    #main-btm #services {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      margin: 0; }
      #main-btm #services .service-list {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        margin: 10px 0; }
        #main-btm #services .service-list h1 {
          font-size: 21px;
          margin: 15px 0 5px; }
        #main-btm #services .service-list p {
          max-width: none; }

  .about .inner-about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    .about .inner-about .inner-info, .about .inner-about .inner-photo {
      width: 100%;
      min-height: auto; }
    .about .inner-about .inner-info {
      padding: 2rem 0; }
    .about .inner-about .inner-photo {
      min-height: 150px; }
      .about .inner-about .inner-photo#inner-pic-2 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1; }

  .spacer {
    display: none; } }
@media all and (max-width: 599px) {
  article #inner-article #left-info #btm-images {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    article #inner-article #left-info #btm-images .bg-wrap {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      margin: 10px 0; }
      article #inner-article #left-info #btm-images .bg-wrap .bg {
        width: calc(90% - 10px); }
      article #inner-article #left-info #btm-images .bg-wrap .bg-call {
        width: calc(90% - 10px); } }

/*# sourceMappingURL=main.css.map */
