/* CSS Document */
html, body {
  width: 100vw;
  height: 100vh;
  padding: 0px;
  margin: 0px;
}
body {
  font-family: "Cabin", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.015em
}
#container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
/* HEADER


*/
#header {
  background: #fff;
  position: absolute;
  width: 168px;
  height: calc(100vh - 104px);
  z-index: 250;
  box-shadow: inset -9px 1px 18px -12px;
}
#logo {
  top: 80px;
  left: 40px;
  position: absolute;
  width: 96px;
  cursor: pointer;
}
#navs {
  width: 96px;
  top: 300px;
  left: 40px;
  position: absolute;
  text-align: right;
  font-family: "Cabin Condensed", "Cabin", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  z-index: 200;
}
#navs a {
  display: block;
  padding: 8px 0px;
  text-decoration: none;
  color: #000;
  position: relative;
  transition: color .3s;
}
#navs a:after {
  content: "";
  position: absolute;
  right: -32px;
  top: 8px;
  height: 15px;
  width: 0px;
  background-color: #5d1b34;
  transition: width .3s;
}
#navs a:hover, #navs a:active, #navs a:focus {
  color: #5e5e5e;
}
#navs a:hover:after {
  content: "";
  position: absolute;
  right: -32px;
  top: 8px;
  height: 15px;
  width: 4px;
  background-color: #5d1b34;
}
/* ACTIVE NAVS */
body.about #navs a.about {
  color: #787878;
}
body.about #navs a.about:after {
  content: "";
  position: absolute;
  right: -32px;
  top: 8px;
  height: 15px;
  width: 4px;
  background-color: #5d1b34;
}
body.team #navs a.team {
  color: #787878;
}
body.team #navs a.team:after {
  content: "";
  position: absolute;
  right: -32px;
  top: 8px;
  height: 15px;
  width: 4px;
  background-color: #5d1b34;
}
body.products #navs a.products {
  color: #787878;
}
body.products #navs a.products:after {
  content: "";
  position: absolute;
  right: -32px;
  top: 8px;
  height: 15px;
  width: 4px;
  background-color: #5d1b34;
}
body.news #navs a.news {
  color: #787878;
}
body.news #navs a.news:after {
  content: "";
  position: absolute;
  right: -32px;
  top: 8px;
  height: 15px;
  width: 4px;
  background-color: #5d1b34;
}
body.contact #navs a.contact {
  color: #787878;
}
body.contact #navs a.contact:after {
  content: "";
  position: absolute;
  right: -32px;
  top: 8px;
  height: 15px;
  width: 4px;
  background-color: #5d1b34;
}
/* SLIDESHOW 


*/
#backSlideshow {
  background: #5e5e5e;
  position: absolute !important;
  height: calc(100vh - 104px);
  width: calc(100vw - 168px);
  top: 0px;
  right: 0px;
  overflow: hidden;
  z-index: 1;
}
#backSlideshow div {
  background-color: #5e5e5e;
  height: 100%;
  width: 100%;
}
#backSlideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transition: filter 0.8s, opacity 0.8s;
}
body:not(.home) #backSlideshow img, body.news #backSlideshow img {
  filter: grayscale(100%) brightness(50%) !important;
  -webkit-filter: grayscale(100%) brightness(50%) !important;
  opacity: 0.5 !important;
}
/* CONTENT 


*/
#content, .content-wrapper {
  line-height: 180%;
  font-size: 14px;
}
.content-wrapper {
  width: calc(100vw - 330px);
  max-width: 890px;
  margin: 75px 83px;
}
hr {
  border: none;
  border-top: 1px solid #9a9a9a;
  margin-top: 30px;
  margin-bottom: 18px;
}
h1, h2 {
  font-size: 120%;
}
.panel {
  position: absolute;
  width: 0px;
  z-index: 200;
  overflow: hidden;
  right: 0px;
  top: 0px;
  height: calc(100vh - 104px);
  color: #fff;
  box-sizing: border-box;
  opacity: 0;
  transition: width 0.8s ease-in-out, opacity 0.2s;
}
.panel p, .panel blockquote, .panel .columns, .panel h1, .panel h2, .panel .date {
  margin: 1em 0px;
}
.news .panel h2 {
  margin: 0px;
}
.panel p:first-child, .panel h1:first-child, .panel .blogpost:first-child {}
.panel p:last-child {}
.panel img {}
.panel a {
  text-decoration: none;
  color: #fff;
}
/* active panels */
body.about #content-about.panel {
  opacity: 1;
  width: calc(100vw - 168px);
  overflow-y: auto;
}
body.team #content-team.panel {
  opacity: 1;
  width: calc(100vw - 168px);
  overflow-y: auto;
}
body.products #content-products.panel {
  opacity: 1;
  width: calc(100vw - 168px);
  overflow-y: auto;
}
body.news #content-news.panel {
  opacity: 1;
  width: calc(100vw - 168px);
  overflow-y: auto;
}
body.news-detail #content-news-detail.panel {
  opacity: 1;
  width: calc(100vw - 168px);
  overflow-y: auto;
}
body.contact #content-contact.panel {
  opacity: 1;
  width: calc(100vw - 168px);
  overflow-y: auto;
}
#content-products img, #content-contact img {
  float: right;
  max-width: 415px;
  margin-left: 90px;
  margin-bottom: 30px;
  width: 42%;
}
/* CONTACT 


*/
.company-name {
  font-family: "Cabin Condensed", Arial, Helvetica, sans-serif;
  margin-bottom: 3px;
  font-size: 120%;
  font-weight: 700;
}
.location-name {
  font-family: "Cabin Condensed", Arial, Helvetica, sans-serif;
  margin-bottom: 3px;
  font-weight: 700;
}
.location-address, .phones {
  line-height: 140%;
}
.location-address {
  margin-bottom: 5px;
}
form {
  max-width: 50%;
}
input, textarea, select, button {
  font-family: "Cabin", Arial, Helvetica, sans-serif;
}
#contactFormHolder {
  font-family: "Cabin Condensed", Arial, Helvetica, sans-serif;
}
label {
  display: block;
  margin-top: 10px;
  font-weight: 700;
}
.formOptions {
  column-count: 2;
  width: 75%;
}
.formOptions label {
  font-weight: 400;
  margin-top: 0px;
}
textarea, input[type='text'] {
  background: #bcbcbc;
  border: none;
  padding: 5px;
  width: 300px;
  max-width: 100%;
}
textarea {
  height: 90px;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; /* remove default arrow */
  background: #bcbcbc url("/images/select-arrow.png") no-repeat; /* add custom arrow */
  padding: 5px 30px 5px 5px;
  background-position: 95% center;
  background-size: 10px 9px;
}
#content-contact a:not(.contactAnchor)::before {
  content: "";
  background: #5d1b34;
  height: 10px;
  width: 10px;
  display: inline-block;
  margin-right: 7px;
}
.contactAnchor {
  color: white;
  text-decoration: underline !important;
}
#content-contact .disclaimer {
  color: #9a9a9a;
  font-style: italic;
  font-size: 11px;
  line-height: 140%;
}
.gray {
  color: #9a9a9a;
  font-weight: 700;
}
.address {
  margin-bottom: 18px;
}
/* ABOUT 


*/
#content-about p, #content-about blockquote, #content-about img {
  max-width: 594px;
}
#content-about.panel img {
  width: 100%;
  margin-bottom: 15px;
}
.panel blockquote {
  padding: 20px 10px;
  margin: 0px;
  border-top: #9a9a9a 1px solid;
  border-bottom: #9a9a9a 1px solid;
  line-height: 200%;
  opacity: 0px;
  margin-block-start: 0px;
  margin-block-end: 0px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
#testimonials-slider {
  margin-top: 30px;
}
.panel blockquote span {
  font-family: "Courgette", cursive;
  font-size: 26px;
  text-shadow: 3px 3px 4px rgba(0, 0, 0, .75);
}
.bio {
  margin-top: 30px;
  padding-bottom: 15px;
  border-bottom: 1px #9a9a9a solid;
  max-width: 594px;
}
.bio:last-child {
  border-bottom: none;
}
.bio p:first-child::before {
  content: "";
  background: #5d1b34;
  height: 10px;
  width: 10px;
  display: inline-block;
  margin-right: 7px;
}
/* TEAM


*/
#content-team p, #content-team img {
  max-width: 608px;
  margin-bottom: 15px;
  width: 100%;
}
#content-team .left, #content-team .right, #content-products .left, #content-products .right {
  display: inline-block;
  border-left: 1px solid #9a9a9a;
  padding: 3px 27px 8px 27px;
  vertical-align: top;
}
#content-team h3, #content-products h3 {
  margin: 0px;
  color: #9a9a9a;
  font-size: 13px;
  text-transform: uppercase;
}
/* PRODUCTS


*/
#content-products h1 {
  font-family: "Cabin Condensed", Arial, Helvetica, sans-serif;
  color: #9a9a9a;
  font-weight: 700;
  font-size: 125%;
  margin-bottom: 0px;
}
#content-products p {
  margin-top: 0px;
}
/* NEWS 


*/
#content-news .date, #content-news-detail .date {
  font-style: italic;
  margin-top: 0px;
  margin-bottom: 10px;
}
#content-news h2, #content-news-detail h1 {
  margin-bottom: 0px !important;
}
body:not(.single) #content-news img, body:not(.single) #content-news-detail img {
  position: block;
  float: right;
  max-width: 30%;
  height: auto;
  margin: 0px 0px 12px 12px;
}
body.single .alignright {
  float: right;
  margin: 0 0 1em 1em
}
body.single .alignleft {
  float: left;
  margin: 0 1em 1em 0
}
body.single .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto
}
body.single a .alignright {
  float: right;
  margin: 0 0 1em 1em
}
body.single a .alignleft {
  float: left;
  margin: 0 1em 1em 0
}
body.single a .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto
}
.meta {
  clear: both;
	font-size:13px;color:#ffffffbb;
}
.wp-caption-text {
  margin-top: 0 !important;
  font-size: 12px;
  font-style: italic;
  color: #ffffff88;
}
.blogpost {
  width: 890px;
  padding-bottom: 30px;
  border-bottom: 1px solid #9a9a9a;
  margin-bottom: 10px;
  margin-left: 0px;
  max-width: 100%;
}
#content-news-detail .blogpost {
  padding-bottom: 0px;
}
.blogpost::after {
  content: "";
  display: table;
  clear: both;
}
#content-news-detail .blogpost {
  border-bottom: none;
}
.panel .blogpost h1, .panel .blogpost h2, .panel .blogpost p, .panel .blogpost .date, .panel .blogpost hr {
  margin-left: 0px;
}
#content-news.panel p:last-child {
  margin-bottom: 0px;
}
#content-news.panel .blogpost:last-child {
  margin-bottom: 75px;
  border-bottom: none;
}
.prev, .next {
  display: inline-block;
  width: 88px;
  height: 22px;
  text-align: center;
  background-size: contain;
  background-position: center;
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  font-size: 120%;
  font-weight: 700;
  transition: color .3s;
}
.prev {
  background-image: url("/images/prev.png");
}
.next {
  background-image: url("/images/next.png");
}
.prev:hover, .prev:active, .prev:focus, .next:hover, .next:active, .next:focus {
  color: #fff;
}
.next {
  margin-left: 30px;
}
/* FOOTER 


*/
#footer {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 131px;
  color: #fff;
  text-align: right;
  background: #1e1e1e;
  box-sizing: border-box;
  font-size: 11px;
  z-index: 250;
}

footer #social {
  margin-bottom:7px;
}
footer #social a {
  opacity: .6;
  transition: opacity 0.3s;
}
footer #social a:hover {
  opacity: 1;
}
footer #social img {
  width: 25px;
  height: 25px;
}
footer #social img.black{display:inline-block;}
footer #social img.white{display:none;}

#copyright {
  margin: 30px 50px 5px 50px;
}
#disclaimer {
  margin: 0px 50px 0px 50px;
  color: rgba(255, 255, 255, 0.45);
}
#footer a {
  text-decoration: none;
  transition: opacity .3s;
  color: #fff;
}
#footer a:hover, #footer a:active, #footer a:focus {
  opacity: 0.7;
}
#footer span {
  white-space: nowrap;
}
#footer #footerLocations:after {
  content: "";
  background-color: #5d1b34;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 0px;
  bottom: -20px;
}
#footer #footerLocations {
  position: absolute;
  top: -185px;
  text-align: right;
  right: calc(100% - 136px);
  color: #000;
  font-size: 16px;
}
.top {
  text-transform: uppercase;
  color: #707070;
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 700;
}
#footer .footerLocation {
  margin-top: 4px;
  font-family: "Cabin Condensed", "Cabin", Arial, Helvetica, sans-serif;
  font-weight: 700;
}
#footer .footerLocation a {
  display: block;
  color: #707070;
  font-family: "Cabin Condensed", "Cabin", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 13px;
}
.article {
  padding-top: 30px;
  margin-bottom: 30px;
  border-top: 1px solid #ffffff99;
}
.article::after {
  content: "";
  clear: both;
  display: table;
}
/* CONTENT COLLAPSE 


*/
@media screen and (max-width:1220px) {
  #content-products img, #content-contact img {
    margin-left: 30px;
  }
}
@media screen and (max-width:980px) {
  #content-products img, #content-contact img {
    width: 33%;
  }
  #content-contact .disclaimer {}
}
@media screen and (max-height:760px) {
  #navs a {
    padding: 3px 0px;
  }
  #logo {
    top: 40px;
  }
  #navs {
    top: 240px;
  }
}
/* FOOTER BREAK */
@media screen and (max-width:740px), (max-height:645px) {
  body {
    background: #1e1e1e;
  }
  #backSlideshow {
    width: 100vw;
    height: calc(100% - 280px) !important;
    top: 156px;
    position: fixed !important;
  }
  #header {
    position: fixed;
    width: 100vw;
    height: 176px;
    box-shadow: none;
  }
  #logo {
    top: 24px;
    left: 24px;
    width: 64px;
  }
  /* NAVS */
  #navs {
    width: 96px;
    top: 18px;
    left: auto;
    right: 32px;
    text-align: right;
  }
  #navs a {
    padding: 3px 0px;
  }
  #navs a:after {
    content: "";
    position: absolute;
    right: -32px;
    top: 4px;
    height: 15px;
    width: 0px;
    background-color: #5d1b34;
    transition: width .3s;
  }
  #navs a:hover, #navs a:active, #navs a:focus {
    color: #5e5e5e;
  }
  #navs a:hover:after {
    content: "";
    position: absolute;
    right: -32px;
    top: 4px;
    height: 15px;
    width: 4px;
    background-color: #5d1b34;
  }
  /* ACTIVE NAVS */
  body.about #navs a.about {
    color: #787878;
  }
  body.about #navs a.about:after {
    content: "";
    position: absolute;
    right: -32px;
    top: 4px;
    height: 15px;
    width: 4px;
    background-color: #5d1b34;
  }
  body.team #navs a.team {
    color: #787878;
  }
  body.team #navs a.team:after {
    content: "";
    position: absolute;
    right: -32px;
    top: 4px;
    height: 15px;
    width: 4px;
    background-color: #5d1b34;
  }
  body.products #navs a.products {
    color: #787878;
  }
  body.products #navs a.products:after {
    content: "";
    position: absolute;
    right: -32px;
    top: 4px;
    height: 15px;
    width: 4px;
    background-color: #5d1b34;
  }
  body.news #navs a.news {
    color: #787878;
  }
  body.news #navs a.news:after {
    content: "";
    position: absolute;
    right: -32px;
    top: 4px;
    height: 15px;
    width: 4px;
    background-color: #5d1b34;
  }
  body.contact #navs a.contact {
    color: #787878;
  }
  body.contact #navs a.contact:after {
    content: "";
    position: absolute;
    right: -32px;
    top: 4px;
    height: 15px;
    width: 4px;
    background-color: #5d1b34;
  }
  /* PANELS */
  .panel {
    position: absolute;
    overflow-y: scroll;
    right: 0px;
    top: 176px;
    width: 100vw;
    height: 0%;
    transition: opacity 0s, width 0s;
  }
  .panel:after {
    content: "";
    display: table;
    clear: both;
  }
  /* active panels */
  body.about #content-about.panel {
    height: calc(100% - 300px);
    width: 100vw;
    overflow-y: scroll;
  }
  body.team #content-team.panel {
    height: calc(100% - 300px);
    width: 100vw;
    overflow-y: scroll;
  }
  body.products #content-products.panel {
    height: calc(100% - 300px);
    width: 100vw;
    overflow-y: scroll;
  }
  body.news #content-news.panel {
    height: calc(100% - 300px);
    width: 100vw;
    overflow-y: scroll;
  }
  body.news-detail #content-news-detail.panel {
    height: calc(100% - 300px);
    width: 100vw;
    overflow-y: scroll;
  }
  body.contact #content-contact.panel {
    height: calc(100% - 300px);
    width: 100vw;
    overflow-y: scroll;
  }
  #content-about img, #content-products img, #content-contact img {
    display: none;
  }
  .content-wrapper {
    width: calc(100% - 48px);
    margin: 24px;
    box-sizing: border-box;
  }
  .content-wrapper:after {
    content: "";
    display: table;
    clear: both;
  }
  .blogpost {
    width: 100%;
    padding-bottom: 30px;
    border-bottom: 1px solid #9a9a9a;
    margin-bottom: 10px;
    margin-left: 0px;
  }
  #footer {
    height: 174px;
  }
  #content-products img, #content-contact img {
    display: none;
  }
  #copyright {
    margin: 12px 24px 4px 24px;
  }
  #disclaimer {
    margin: 0px 24px;
  }
  #footer #footerLocations {
    position: relative;
    top: auto;
    text-align: right;
    right: auto;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin: 20px 24px 0 24px;
  }
  #footer #footerLocations:after {
    content: "";
    background-color: transparent;
    width: 0px;
    height: 0px;
  }
  .top {
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 700;
  }
  .top:after {
    content: ": ";
  }
  #footer .footerLocation {
    padding-left: 10px;
    display: inline-block;
    margin-top: 4px;
    font-family: "Cabin Condensed", "Cabin", Arial, Helvetica, sans-serif;
    font-weight: 700;
  }
  #footer .footerLocation a {
    display: inline-block;
    color: #fff;
    font-family: "Cabin Condensed", "Cabin", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 13px;
  }
footer #social img.black{display:none;}
footer #social img.white{display:inline-block;}
}
@media screen and (max-width:550px) {
  #footer {
    font-size: 10px;
    line-height: 130%;
  }
  #copyright {
    margin: 12px 24px 5px 24px;
  }
}
/* VERTICAL BREAK */
@media screen and (max-height:645px) {}