@charset "UTF-8";
/* COLORS */
* {
  box-sizing: border-box;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
  font-family: "akzidenz-grotesk";
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  background: white;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: white;
}

h1,
h2,
h3,
h4,
p,
blockquote,
figure,
ol,
ul {
  margin: 0;
  padding: 0;
}

section,
main,
li {
  display: block;
}

h1,
h2,
h3,
h4 {
  font-size: inherit;
  font-weight: normal;
}

a,
button {
  color: inherit;
  transition: 0.3s;
}

a {
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}

button {
  overflow: visible;
  border: 0;
  font: inherit;
  -webkit-font-smoothing: inherit;
  letter-spacing: inherit;
  background: none;
  cursor: pointer;
}

main {
  position: relative;
  width: 100%;
  transition: 0.3s;
  transform: translateX(0);
}

::-moz-focus-inner {
  padding: 0;
  border: 0;
}

:focus {
  outline: 0;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

.fixed {
  position: fixed;
  overflow: hidden;
}

.body-fixed {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cover {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.btn {
  position: relative;
  display: inline-block;
  padding: 20px 40px;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}
.btn.small {
  padding: 15px 40px;
  font-size: 13px;
  font-size: 1.3rem;
}
.btn.red {
  background: #e2231a;
  color: white;
  text-align: center;
  overflow: hidden;
}
.btn.red:not(.disabled):hover {
  transform: translateY(-3px);
}
.btn.red:not(.disabled):hover::before {
  opacity: 1;
  transform: scale(3) translateY(0);
}
.btn.red::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: url("//cdn.bardmaterials.com/global/arc-red.svg");
  width: 100%;
  transform: scale(1.2) translateY(100%);
  transform-origin: center;
  transition: 0.3s;
  opacity: 0;
  z-index: -1;
}
.btn.gray {
  background: #4d4d4d;
  color: white;
  text-align: center;
  overflow: hidden;
}
.btn.gray:not(.disabled):hover {
  transform: translateY(-3px);
}
.btn.gray:not(.disabled):hover::before {
  opacity: 1;
  transform: scale(2) translateY(0);
}
.btn.gray::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: url("//cdn.bardmaterials.com/global/arc-gray.svg");
  width: 100%;
  transform: scale(1.2) translateY(100%);
  transform-origin: center;
  transition: 0.3s;
  opacity: 0;
  z-index: -1;
}
.btn.yellow {
  background: #f7a800;
  color: white;
  text-align: center;
  overflow: hidden;
}
.btn.yellow:hover {
  transform: translateY(-3px);
}
.btn.yellow:hover::before {
  opacity: 1;
  transform: scale(2) translateY(0);
}
.btn.yellow::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: url("//cdn.bardmaterials.com/global/arc-yellow.svg");
  width: 100%;
  transform: scale(1.2) translateY(100%);
  transform-origin: center;
  transition: 0.3s;
  opacity: 0;
  z-index: -1;
}
.btn.careers {
  border: 1px solid white;
  color: white;
  padding: 0;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  letter-spacing: 3px;
  font-size: 13px;
  font-size: 1.3rem;
}
.btn.careers:hover {
  background: #1a1a1a;
  border: 1px solid #a2a2a2;
}
.btn.careers:hover img {
  transform: translateX(3px);
}
.btn.careers span {
  padding: 0 15px 0 30px;
  transition: 0.6s;
  transform: translateX(0);
}
.btn.careers span.arrow {
  display: inline-block;
  padding: 10px 15px 10px 0;
}
.btn.careers span img {
  vertical-align: middle;
  transition: 0.6s;
}
.btn.outline {
  border: 0.15rem solid white;
  color: white;
  overflow: hidden;
  font-weight: 500;
}
.btn.outline.white {
  border: 0.15rem solid white;
  color: white;
}
.btn.outline:hover {
  color: #4d4d4d;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}
.btn.outline:hover::before {
  opacity: 1;
  transform: scale(2) translateY(0);
}
.btn.outline::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: url("//cdn.bardmaterials.com/global/arc.svg");
  width: 100%;
  transform: scale(1.2) translateY(100%);
  transform-origin: center;
  transition: 0.3s;
  opacity: 0;
  z-index: -1;
}

.link {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  display: inline-block;
  transition: 0.3s;
}
.link.white {
  color: white;
}
.link.yellow {
  color: #f7a800;
}
.link:hover {
  transform: translateX(5px);
}
.link:hover img {
  transform: translateX(10px);
}
.link span {
  position: relative;
  top: 1px;
  vertical-align: middle;
}
.link img {
  vertical-align: middle;
  transform: translateX(5px);
  transition: 0.3s;
  display: inline-block;
}

.hide-overflow {
  overflow: hidden;
  display: block;
}

.appear {
  transition: 0.6s;
  display: block;
}
.appear.down {
  transform: translateY(-100%);
}
.appear.up {
  transform: translateY(100%);
}
.appear.in-view {
  transform: translateY(0%);
}

.home-appear {
  transition: 0.3s;
  transition-delay: 0.6s;
  display: block;
}
.home-appear.down {
  transform: translateY(-100%);
}
.home-appear.up {
  transform: translateY(100%);
}
.slick-active .home-appear.in-view {
  transition-delay: 0.5s;
  transform: translateY(0%);
}

@media (min-width: 641px) {
  .delay-15 {
    transition-delay: 0.15s;
  }
}

@media (min-width: 641px) {
  .delay-25 {
    transition-delay: 0.25s;
  }
}

@media (min-width: 641px) {
  .delay-50 {
    transition-delay: 0.5s;
  }
}

@media (min-width: 641px) {
  .delay-75 {
    transition-delay: 0.75s;
  }
}

@media (min-width: 641px) {
  .delay-100 {
    transition-delay: 1s;
  }
}

.fadeup {
  opacity: 0;
  transition-duration: 1s;
  transform: translate3d(0, 8%, 0);
}
.fadeup.in-view {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.fadeup-cascade > *:nth-child(1) {
  transition-delay: calc(1 * 0.2s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(2) {
  transition-delay: calc(2 * 0.2s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(3) {
  transition-delay: calc(3 * 0.2s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(4) {
  transition-delay: calc(4 * 0.2s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(5) {
  transition-delay: calc(5 * 0.2s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(6) {
  transition-delay: calc(6 * 0.2s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(7) {
  transition-delay: calc(7 * 0.2s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(8) {
  transition-delay: calc(8 * 0.2s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(9) {
  transition-delay: calc(9 * 0.2s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *.in-view:nth-child(1) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(2) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(3) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(4) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(5) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(6) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(7) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(8) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(9) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(1) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(2) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(3) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(4) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(5) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(6) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(7) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(8) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(9) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.slidedown {
  opacity: 0;
  transition-duration: 1s;
  transform: translate3d(0, -8%, 0);
}
.slidedown.in-view {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: none;
}

.slideleft {
  opacity: 0;
  transition-duration: 1s;
  transform: translate3d(-20px, 0, 0);
}
.slideleft.in-view {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: none;
}

.slideright {
  opacity: 0;
  transition-duration: 1s;
  transform: translate3d(20px, 0, 0);
}
.slideright.in-view {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.fadein {
  opacity: 0;
  transition-duration: 1s;
}
.fadein.in-view {
  transition-timing-function: linear;
  opacity: 1;
  transform: none;
}

nav .banner {
  background-color: #e2231a;
  transition: 0.5s ease-in-out;
  width: 100%;
  color: white;
  position: absolute;
  top: 0;
  padding: 16px;
  height: 80px;
  cursor: pointer;
  z-index: 4;
}
@media (min-width: 641px) {
  nav .banner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    height: 50px;
    padding: 6px 16px;
  }
}
@media (min-width: 768px) {
  nav .banner {
    margin-top: 0;
  }
}
nav .banner:hover {
  background-color: rgb(203.130952381, 31.4583333333, 23.369047619);
}
.nav-open nav .banner {
  transform: translateY(-80px);
}
nav .banner .close {
  position: fixed;
  top: 24px;
  right: 24px;
  opacity: 0;
  z-index: 999999999;
  cursor: pointer;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav .banner .close svg {
  pointer-events: none;
}
nav .banner.expanded {
  background-color: rgba(45, 45, 45, 0.95);
  overflow: scroll;
  position: fixed;
  height: 100vh;
  transition: background-color 0.5s ease-in-out 0.15s, height 0.5s ease-in-out;
}
nav .banner.expanded .close {
  opacity: 1;
  transition: 0.5s ease-in-out;
}
nav .banner.expanded .header {
  opacity: 0;
  transition: 0s ease-in-out;
  display: none;
}
nav .banner.expanded .copy {
  opacity: 1;
  transform: translateY(0);
  transition: 0.5s ease-in-out 0.4s;
  overflow: scroll;
}
nav .banner.expanded .copy p.title {
  transition: 0.5s ease-in-out 0.35s;
}
@media (min-width: 641px) {
  nav .banner.expanded .copy p.title {
    margin-top: 60px;
  }
}
nav .banner .header {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transition: 0 ease-in-out;
  width: 100%;
}
@media (min-width: 641px) {
  nav .banner .header {
    padding: 8px;
  }
}
@media (min-width: 768px) {
  nav .banner .header {
    flex-direction: row;
  }
}
nav .banner .header p {
  font-family: "akzidenz-grotesk";
  font-size: 1.4rem;
  color: white;
  margin-bottom: 0;
  padding-right: 0;
  padding-bottom: 0.35em;
  text-align: center;
  line-height: 1.75em;
}
@media (min-width: 641px) {
  nav .banner .header p {
    font-size: 1.6rem;
  }
}
nav .banner .header p span {
  color: white;
  white-space: nowrap;
}
@media (min-width: 768px) {
  nav .banner .header p {
    text-align: left;
    padding-bottom: 0;
  }
}
nav .banner .header .link {
  font-size: 1.3rem;
  padding-left: 12px;
}
nav .banner .header .link img {
  height: 16px;
  margin-top: -4px;
}
nav .banner .copy {
  width: 100%;
  pointer-events: none;
  opacity: 0;
  text-align: center;
  overflow: hidden;
  transition: 0.1s ease-in-out;
  position: relative;
  z-index: 2;
  transform: translateY(-60px);
  padding: 80px 6px;
}
nav .banner .copy img {
  padding-bottom: 80px;
}
nav .banner .copy .contain {
  max-width: 775px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
nav .banner .copy p.title {
  font-family: "akzidenz-grotesk-condensed";
  text-transform: uppercase;
  font-size: 4.2rem;
  line-height: 1em;
  color: #f7a800;
  margin-bottom: 0.5em;
  padding-top: 50px;
}
@media (min-width: 641px) {
  nav .banner .copy p.title {
    font-size: 4.8rem;
  }
}
nav .banner .copy p {
  font-size: 1.5rem;
  line-height: 1.5em;
  margin-bottom: 2em;
  color: white;
}
@media (min-width: 641px) {
  nav .banner .copy p {
    font-size: 1.8rem;
  }
}
nav.main-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
nav.main-nav .nav-contain {
  padding: 15px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 0;
}
@media (min-width: 1024px) {
  nav.main-nav .nav-contain {
    justify-content: space-between;
    padding: 15px 40px 15px 32px;
  }
}
.nav-open nav.main-nav {
  z-index: 200;
  background: transparent;
  box-shadow: none;
}
nav.main-nav .links {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  transform: none;
  margin: auto;
}
@media (min-width: 1024px) {
  nav.main-nav .links {
    margin: initial;
  }
}
.nav-open nav.main-nav .links {
  opacity: 0;
  transform: translateY(-100%);
}
nav.main-nav .links a {
  font-family: "akzidenz-grotesk";
  font-weight: 700;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: #4d4d4d;
  transition: 0.3s;
}
@media (min-width: 1024px) {
  nav.main-nav .links a {
    margin: 0 8px;
  }
}
@media (min-width: 1280px) {
  nav.main-nav .links a {
    margin: 0 18px;
    font-size: 17px;
    font-size: 1.7rem;
  }
}
nav.main-nav .links a.nav-link {
  display: none;
}
@media (min-width: 890px) {
  nav.main-nav .links a.nav-link {
    display: inline;
  }
}
@media (min-width: 1024px) {
  nav.main-nav .links img {
    margin: 0 8px;
  }
}
nav.full-nav {
  background: white;
  box-shadow: 10px 0 20px rgba(0, 0, 0, 0);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  padding: 100px 25px 25px 25px;
  z-index: 100;
  overflow: scroll;
  transition: 0.3s;
  transform: translateX(-100%);
}
.nav-open nav.full-nav {
  opacity: 1;
  transform: none;
  box-shadow: 10px 0 20px rgba(0, 0, 0, 0.2);
}
.nav-open nav.full-nav .links-contain {
  transform: none;
  opacity: 1;
}
.nav-open nav.full-nav .links-contain .main-link span {
  transform: none;
  opacity: 1;
}
nav.full-nav .links-contain {
  padding: 20px 8px 19px 8px;
  transform: translateY(-20px);
  transition: 0.2s;
  opacity: 0;
  border-bottom: 1px solid #bcbcbc;
}
nav.full-nav .links-contain:nth-of-type(1) {
  transition-delay: 0.3s;
}
nav.full-nav .links-contain:nth-of-type(2) {
  transition-delay: 0.36s;
}
nav.full-nav .links-contain:nth-of-type(3) {
  transition-delay: 0.42s;
}
nav.full-nav .links-contain:nth-of-type(4) {
  transition-delay: 0.48s;
}
nav.full-nav .links-contain:nth-of-type(5) {
  transition-delay: 0.54s;
}
nav.full-nav .links-contain:nth-of-type(6) {
  transition-delay: 0.6s;
}
nav.full-nav .links-contain:nth-of-type(7) {
  transition-delay: 0.66s;
}
nav.full-nav .links-contain:nth-of-type(8) {
  transition-delay: 0.72s;
}
nav.full-nav .links-contain:nth-of-type(9) {
  transition-delay: 0.78s;
}
nav.full-nav .links-contain:nth-of-type(10) {
  transition-delay: 0.84s;
}
nav.full-nav .main-link {
  font-family: "akzidenz-grotesk-extended";
  font-weight: 700;
  color: #4d4d4d;
  font-size: 17px;
  font-size: 1.7rem;
  display: flex;
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
}
nav.full-nav .main-link.toggled img {
  transform: rotate(-225deg);
}
nav.full-nav .main-link span {
  margin-right: 25px;
  transform: translateY(100%);
  opacity: 0;
  transition-duration: 0.3s;
}
nav.full-nav .main-link img {
  margin-left: auto;
  display: inline-block;
  height: 12px;
  transition: 0.6s;
  transform: none;
}
nav.full-nav .links {
  display: none;
}
nav.full-nav .links.active a {
  opacity: 1;
  transition: 1.3s;
}
nav.full-nav .links a {
  font-size: 16px;
  font-size: 1.6rem;
  color: #4d4d4d;
  display: block;
  margin: 10px 0;
  margin-left: 5px;
  transition: 0.3s;
}
nav.full-nav .links a:hover {
  color: #e2231a;
}
nav.full-nav .links a:first-child {
  margin-top: 20px;
}
nav.full-nav .links a.inset {
  margin-left: 20px;
  color: #e2231a;
}
nav.full-nav .links a.nuw:hover {
  color: #6dcff6;
}

#outter {
  overflow-x: hidden;
}

.nav-open main {
  transform: translateX(200px);
  opacity: 0.2;
  transition: 0.3s;
}

#insights-login {
  right: 25px;
  font-family: "akzidenz-grotesk-extended";
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 10px;
  line-height: 1rem;
  font-weight: 500;
  color: white;
  display: none;
  transition: 0.3s;
  transform: none;
  position: relative;
  cursor: pointer;
}
@media (min-width: 1024px) {
  #insights-login {
    display: block;
  }
}
.nav-open #insights-login {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
}
#insights-login > a.btn {
  padding: 10px;
  font-size: 1.1rem;
  letter-spacing: 0;
  line-height: 10px;
  line-height: 1rem;
}
#insights-login > a.btn:hover {
  transform: none;
  background-color: rgb(203.130952381, 31.4583333333, 23.369047619);
}
#insights-login > a.btn svg {
  position: relative;
  top: 1px;
  margin-left: 12px;
}
#insights-login > a.btn svg polyline {
  stroke-width: 1.5;
}
#insights-login .dropdown {
  max-height: 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  padding: 0;
  overflow: hidden;
  transition: 0.25s ease;
}
#insights-login .dropdown a {
  font-family: "akzidenz-grotesk";
  font-size: 1.2rem;
  padding: 10px;
  color: #1a1a1a;
  display: block;
  transition: 0.15s ease;
}
#insights-login .dropdown a:hover {
  color: #e2231a;
}
#insights-login.open-dropdown .dropdown {
  padding: 8px 0;
  max-height: 165px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

#nav-icon {
  position: absolute;
  left: 20px;
  width: 30px;
  height: 19px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
@media (min-width: 640px) {
  #nav-icon {
    position: relative;
    left: 0;
  }
}
#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #e2231a;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
#nav-icon span:nth-child(1) {
  top: 0px;
}
#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
  top: 8px;
}
#nav-icon span:nth-child(4) {
  top: 16px;
}
.nav-open #nav-icon {
  z-index: 20001;
}
.nav-open #nav-icon span {
  background: #e2231a;
}
.nav-open #nav-icon span:nth-child(1), .nav-open #nav-icon span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}
.nav-open #nav-icon span:nth-child(2) {
  transform: rotate(45deg);
}
.nav-open #nav-icon span:nth-child(3) {
  transform: rotate(-45deg);
}

footer {
  background: #1a1a1a;
  padding: 90px 0 60px 0;
}
footer .footer-links-contain {
  display: flex;
  flex-wrap: wrap;
  padding: 0 5%;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 641px) {
  footer .footer-links-contain {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  footer .footer-links-contain {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}
@media (min-width: 1298px) {
  footer .footer-links-contain {
    flex-wrap: wrap;
  }
}
@media (min-width: 1440px) {
  footer .footer-links-contain {
    max-width: 1298px;
    margin-left: auto;
    margin-right: auto;
  }
}
footer .footer-links {
  display: flex;
  padding-bottom: 30px;
  width: 100%;
}
@media (min-width: 1024px) {
  footer .footer-links {
    width: auto;
    width: initial;
  }
}
footer .footer-links:nth-child(1) {
  padding-top: 0;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  footer .footer-links:nth-child(1) {
    width: 47%;
  }
}
@media (min-width: 1440px) {
  footer .footer-links:nth-child(1) {
    width: auto;
  }
}
footer .footer-links:nth-child(1) .set-one {
  display: flex;
  padding-top: 30px;
}
footer .footer-links:nth-child(1) ul {
  padding-right: 12%;
}
@media (min-width: 1024px) {
  footer .footer-links:nth-child(1) ul {
    padding-right: 6%;
  }
}
@media (min-width: 1440px) {
  footer .footer-links:nth-child(1) ul {
    padding-right: 35px;
  }
}
footer .footer-links:nth-child(1) ul:last-child {
  padding-right: 0;
}
footer .footer-links:nth-child(2) {
  padding-top: 10px;
}
@media (min-width: 1024px) {
  footer .footer-links:nth-child(2) {
    padding-top: 75px;
    width: 45%;
  }
}
@media (min-width: 1440px) {
  footer .footer-links:nth-child(2) {
    width: auto;
    border-right: 1px solid #4d4d4d;
    margin-left: 35px;
    padding-right: 3%;
  }
}
footer .footer-links:nth-child(2) ul {
  margin-top: 4px;
  padding-right: 12%;
}
@media (min-width: 641px) {
  footer .footer-links:nth-child(2) ul {
    padding-right: 6%;
  }
}
@media (min-width: 1440px) {
  footer .footer-links:nth-child(2) ul {
    padding-right: 35px;
  }
}
footer .footer-links:nth-child(2) ul:last-child {
  padding-right: 0;
}
footer .footer-links:nth-child(3) {
  flex-direction: column;
}
@media (min-width: 1024px) {
  footer .footer-links:nth-child(3) {
    width: 47%;
  }
}
@media (min-width: 1440px) {
  footer .footer-links:nth-child(3) {
    padding-left: 3%;
    padding-top: 9rem;
    padding-bottom: 9rem;
    width: auto;
  }
}
footer .footer-links:nth-child(3) ul {
  padding-right: 12%;
}
@media (min-width: 641px) {
  footer .footer-links:nth-child(3) ul {
    padding-right: 6%;
  }
}
@media (min-width: 1440px) {
  footer .footer-links:nth-child(3) ul {
    padding-right: 35px;
  }
}
footer .footer-links:nth-child(3) ul:last-child {
  padding-right: 0;
}
footer .footer-links a {
  white-space: nowrap;
}
footer .footer-links a, footer .footer-links span {
  color: #9e9e9e;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
  transition: 0.3s;
}
footer .footer-links a:hover, footer .footer-links span:hover {
  color: #f7a800;
}
footer .footer-links a.top-label, footer .footer-links span.top-label {
  font-family: "akzidenz-grotesk-extended";
  font-size: 18px;
  font-size: 1.8rem;
  color: #c6c6c6;
  padding-bottom: 5px;
}
footer .footer-links a.top-label.line, footer .footer-links span.top-label.line {
  border-top: 2px solid #e2231a;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-right: 10px;
  padding-right: 20px;
}
footer .footer-links a.top-label.line:hover, footer .footer-links span.top-label.line:hover {
  margin-right: 0;
  padding-right: 30px;
  border-top-color: #a2a2a2;
}
footer .footer-links a.top-label.bard-pro, footer .footer-links span.top-label.bard-pro {
  margin-top: 20px;
}
footer .footer-links a.nuw:hover, footer .footer-links span.nuw:hover {
  color: #6dcff6;
}
footer .footer-links .support-military {
  font-family: "akzidenz-grotesk-extended";
  font-weight: 700;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.2;
  color: white;
  transition: 0.3s;
  white-space: initial;
  margin-bottom: 10px;
  max-width: 300px;
}
footer .footer-links .support-military span {
  color: #f7a800;
  font-size: 12px;
  font-size: 1.2rem;
  display: inline;
}
footer .insight-login-contain {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 5px;
}
footer .insight-login-contain img {
  margin-left: 10px;
  transform: none;
  transition: 0.3s;
}
footer .insight-login-contain .insight-login {
  font-family: "akzidenz-grotesk-extended";
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 20px;
  line-height: 2rem;
  font-weight: 700;
  color: white;
  opacity: 0.6;
  transition: 0.3s;
}
footer .insight-login-contain .insight-login span {
  display: block;
  opacity: 0.5;
  color: white;
  margin-bottom: 0;
}
footer .bard-logo svg path {
  transition: 0.3s;
}
footer .bard-logo:hover svg path {
  fill: #f7a800;
}
footer .footer-callout {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
}
@media (min-width: 1024px) {
  footer .footer-callout {
    width: 50%;
  }
}
@media (min-width: 1440px) {
  footer .footer-callout {
    flex-direction: row;
    top: -25rem;
    width: 90%;
    margin-right: auto;
  }
}
footer .footer-callout figure {
  margin-bottom: 2rem;
}
@media (min-width: 1440px) {
  footer .footer-callout figure {
    margin-right: 2rem;
    margin-bottom: 0;
  }
}
footer .footer-callout .copy {
  max-width: 410px;
}
@media (min-width: 1440px) {
  footer .footer-callout .copy {
    max-width: 410px;
    margin-top: 2.3rem;
  }
}
footer .footer-callout .copy p {
  font-family: "akzidenz-grotesk-extended";
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.2;
  color: white;
  margin-bottom: 1.5rem;
}
footer .footer-callout .copy p span {
  font-size: 1.8rem;
  margin-bottom: 0;
  color: #e2231a;
}
footer .footer-callout .copy .link {
  pointer-events: all;
}
footer .footer-callout .copy .link span {
  font-family: "akzidenz-grotesk-extended";
  font-weight: 700;
}

.gallup {
  padding: 10rem 3rem;
  background-color: white;
}
.gallup .contain {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .gallup .contain {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.gallup .contain .logos {
  max-width: 220px;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .gallup .contain .logos {
    max-width: 300px;
    margin-right: 4%;
    margin-bottom: 0;
  }
}
.gallup .contain .logos figure {
  margin: 0;
  padding: 2rem 4%;
}
.gallup .contain .logos figure:first-child {
  border-bottom: 1px solid rgba(112, 112, 112, 0.5);
}
.gallup .contain .copy {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .gallup .contain .copy::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
    background-color: rgba(112, 112, 112, 0.5);
  }
}
.gallup .contain .copy p {
  font-size: 1.8rem;
  line-height: 1.5;
  color: #4d4d4d;
  text-align: center;
}
@media (min-width: 768px) {
  .gallup .contain .copy p {
    font-size: 2rem;
    padding-left: 4rem;
    text-align: left;
  }
}

#email-subscribe {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: 0.6s;
  visibility: hidden;
}
#email-subscribe.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
#email-subscribe.active iframe {
  transform: scale(1);
}
#email-subscribe .email-subscribe-contain {
  width: 600px;
}
#email-subscribe img {
  align-self: flex-start;
  margin-left: auto;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.3s;
  display: block;
}
#email-subscribe img:hover {
  transform: scale(1.3);
}

.join-our-team-footer {
  background: #1a1a1a;
  position: relative;
  padding: 70px 5% 120px 5%;
  text-align: center;
}
@media (min-width: 641px) {
  .join-our-team-footer {
    padding: 140px 0 120px 0;
  }
}
.join-our-team-footer .copy-contain {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
}
@media (min-width: 900px) {
  .join-our-team-footer .copy-contain {
    max-width: 615px;
    margin-left: auto;
    margin-right: auto;
  }
}
.join-our-team-footer .copy {
  padding: 50px 0 0;
}
@media (min-width: 900px) {
  .join-our-team-footer .copy {
    padding: 0;
  }
}
.join-our-team-footer .copy h3 {
  text-align: center;
}
.join-our-team-footer .copy a {
  margin-top: 15px;
}
.join-our-team-footer .badge {
  width: 100px;
}
@media (min-width: 900px) {
  .join-our-team-footer .badge {
    width: 145px;
  }
}
.join-our-team-footer img.cover {
  opacity: 0.2;
}
.join-our-team-footer p {
  color: #a2a2a2;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 21px;
  line-height: 2.1rem;
}
.join-our-team-footer .actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
@media (min-width: 641px) {
  .join-our-team-footer .actions {
    flex-direction: row;
  }
}
.join-our-team-footer .actions a {
  margin: 15px;
}

.text--center {
  text-align: center;
}

.cta-bar {
  background-color: #e01d1c;
  background-image: url("//cdn.bardmaterials.com/home/red-bg.jpg");
  background-size: cover;
  background-position: center center;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta-bar span {
  display: none;
}
@media (min-width: 650px) {
  .cta-bar span {
    display: inline;
  }
}
.cta-bar span:first-child {
  display: inline;
}
@media (min-width: 650px) {
  .cta-bar span:first-child {
    display: none;
  }
}
.cta-bar .link {
  text-transform: uppercase;
}
.cta-bar p {
  font-family: "akzidenz-grotesk-extended";
  font-weight: 500;
  color: white;
  letter-spacing: 1px;
  font-size: 19px;
  font-size: 1.9rem;
  display: none;
}
@media (min-width: 650px) {
  .cta-bar p {
    display: block;
  }
}
.cta-bar .line {
  background: white;
  width: 1px;
  height: 30px;
  margin: 0 20px;
  display: none;
}
@media (min-width: 650px) {
  .cta-bar .line {
    display: block;
  }
}

.noscroll {
  overflow: hidden;
  height: 100vh;
}

.announcement {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 26px 40px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.covid .announcement {
  margin-top: 0;
}
@media (min-width: 768px) {
  .announcement {
    margin-top: 0;
    flex-direction: row;
  }
}
.announcement p {
  font-family: "akzidenz-grotesk-condensed";
  font-size: 3.5rem;
  margin-bottom: 0;
  padding-right: 0;
  text-transform: uppercase;
  padding-bottom: 0.35em;
  color: #f7a800;
  text-align: center;
}
.announcement p span {
  color: white;
}
@media (min-width: 768px) {
  .announcement p {
    text-align: left;
    padding-bottom: 0;
    padding-right: 60px;
  }
}
.announcement .btn {
  padding: 8px 24px;
  font-size: 1.1rem;
}
@media (min-width: 641px) {
  .announcement .btn {
    font-size: 1.3rem;
    padding: 12px 24px;
  }
}
.announcement .btn:hover {
  transform: translateY(0);
}

.playing-video {
  overflow: hidden;
}
.playing-video .video-modal {
  opacity: 1;
  visibility: visible;
}

.video-wrapper video {
  width: 100% !important;
  height: auto !important;
}

.video-modal, .bard-video {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  padding: 5%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
  z-index: 100;
}
@media (min-width: 641px) {
  .video-modal, .bard-video {
    padding: 10%;
  }
}
.video-modal.active, .bard-video.active {
  opacity: 1;
  visibility: visible;
  z-index: 100;
}
.video-modal.active iframe, .bard-video.active iframe {
  transform: scale(1);
}
.video-modal.close, .bard-video.close {
  opacity: 0;
  visibility: hidden;
}
.video-modal video, .bard-video video {
  width: 100% !important;
  height: auto !important;
  box-shadow: 0 0 5rem 0 rgba(0, 0, 0, 0.2);
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}
.video-modal iframe, .bard-video iframe {
  width: 100%;
  height: 50%;
  transition: 0.3s;
  transition-delay: 0.3s;
}
@media (min-width: 641px) {
  .video-modal iframe, .bard-video iframe {
    height: 100%;
  }
}
.video-modal .video-container, .bard-video .video-container {
  width: 100%;
  position: relative;
}
.video-modal .close-btn, .bard-video .close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 2rem;
  height: 2rem;
}
.video-modal img, .bard-video img {
  align-self: flex-start;
  margin-left: auto;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.3s;
}
.video-modal svg, .bard-video svg {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  transition: 0.3s;
}
.video-modal svg:hover, .bard-video svg:hover {
  opacity: 0.4;
}

.play-modal-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6rem;
  background: #e2231a;
  transition: 0.3s;
  opacity: 0.95;
  height: 16rem;
  width: 16rem;
  border-radius: 8rem;
}
.play-modal-btn:hover {
  background: rgb(203.130952381, 31.4583333333, 23.369047619);
  transform: scale(1.1);
  opacity: 1;
}
.play-modal-btn svg {
  position: relative;
  top: 0.1rem;
  left: 0.5rem;
  width: 5rem;
  height: 5rem;
  transition: 0.3s;
}
.play-modal-btn.small {
  height: 10rem;
  width: 10rem;
  border-radius: 5rem;
}
.play-modal-btn.small svg {
  position: relative;
  top: 0.1rem;
  left: 0.25rem;
  width: 2.5rem;
  height: 2.5rem;
}

.bard-engagement {
  position: relative;
  padding: 10rem 0;
}
.bard-engagement img {
  filter: grayscale(100%);
}
.bard-engagement .copy {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 800px) {
  .bard-engagement .copy {
    max-width: 68rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.bard-engagement .copy .svg-contain {
  margin-bottom: 4rem;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}
.bard-engagement .copy .svg-contain svg {
  display: block;
  margin-bottom: 2rem;
  max-width: 17rem;
  margin-left: auto;
  margin-right: auto;
}
.bard-engagement .copy .svg-contain span {
  display: block;
  font-family: "akzidenz-grotesk-extended";
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #54565a;
  padding-top: 1rem;
  padding: 1rem 1rem 0 1rem;
  border-top: 2px solid #808080;
}
.bard-engagement .copy h2 {
  font-family: "akzidenz-grotesk-condensed";
  font-weight: 400;
  font-size: 3.8rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #4d4d4d;
}
@media (min-width: 641px) {
  .bard-engagement .copy h2 {
    font-size: 5rem;
    margin-bottom: 3rem;
  }
}
.bard-engagement .copy h2 span {
  color: #e2231a;
}
.bard-engagement .copy p {
  font-size: 1.8rem;
  color: #54565a;
  line-height: 1.3;
  max-width: 66rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 641px) {
  .bard-engagement .copy p {
    font-size: 2.2rem;
  }
}
.bard-engagement .copy p span {
  font-weight: 500;
}

.bard-video {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 5%;
  height: 100vh;
  width: 100%;
  opacity: 0;
  transition: 0.6s;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 641px) {
  .bard-video {
    padding: 10%;
  }
}
.bard-video img {
  align-self: flex-start;
  margin-left: auto;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.3s;
}
.bard-video img:hover {
  transform: scale(1.3);
}
.bard-video iframe {
  transform: scale(0);
  transition: 0.3s;
  transition-delay: 0.3s;
}
.bard-video.active {
  opacity: 1;
  visibility: visible;
  z-index: 100;
}
.bard-video.active iframe {
  transform: scale(1);
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 49%;
  transform: translate(0, -49%);
  padding: 0;
  border: none;
  outline: none;
  z-index: 1;
  display: none !important;
}
@media (min-width: 768px) {
  .slick-prev,
  .slick-next {
    display: block !important;
  }
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.3;
}
.slick-prev:before,
.slick-next:before {
  opacity: 1;
}

.slick-prev {
  left: 25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: 25px;
}
.slick-prev:before {
  content: url(//cdn.bardmaterials.com/global/large-arrow-prev.svg);
}
[dir=rtl] .slick-prev:before {
  content: url(//cdn.bardmaterials.com/global/large-arrow-prev.svg);
}

.slick-next {
  right: 25px;
}
[dir=rtl] .slick-next {
  left: 25px;
  right: auto;
}
.slick-next:before {
  content: url(//cdn.bardmaterials.com/global/large-arrow-next.svg);
}
[dir=rtl] .slick-next:before {
  content: url(//cdn.bardmaterials.com/global/large-arrow-next.svg);
}

/* Dots */
.slick-dots {
  position: absolute;
  bottom: 50px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 10px;
  line-height: 20px;
  text-align: center;
  color: white;
  opacity: 0.3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: white;
  opacity: 1;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

h1 {
  font-family: "akzidenz-grotesk-extended";
  font-weight: 400;
  font-size: 4vw;
  line-height: 5vw;
  letter-spacing: 0;
  color: #1a1a1a;
  text-align: center;
  text-transform: uppercase;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
@media (min-width: 700px) {
  h1 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 28px;
    line-height: 2.8rem;
    margin-bottom: 50px;
  }
}

.cards-contain h2 {
  font-family: "akzidenz-grotesk-condensed";
  font-weight: 500;
  font-size: 9vw;
  line-height: 8vw;
  color: white;
  letter-spacing: -1px;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 640px) {
  .cards-contain h2 {
    font-size: 62px;
    font-size: 6.2rem;
    line-height: 50px;
    line-height: 5rem;
  }
}
@media (min-width: 1024px) {
  .cards-contain h2 {
    font-size: 52px;
    font-size: 5.2rem;
    line-height: 43px;
    line-height: 4.3rem;
  }
}
.home .cards-contain h2 {
  margin-top: 60px;
}

.find-location h3 {
  font-family: "akzidenz-grotesk-condensed";
  font-size: 12.5vw;
  text-align: center;
  color: #4d4d4d;
}
@media (min-width: 640px) {
  .find-location h3 {
    font-size: 48px;
    font-size: 4.8rem;
  }
}
.join-our-team-footer h3 {
  font-family: "akzidenz-grotesk-extended";
  font-weight: 700;
  font-size: 22.5vw;
  line-height: 18vw;
  text-align: left;
  color: white;
  margin-bottom: 15px;
  text-align: center;
}
@media (min-width: 641px) {
  .join-our-team-footer h3 {
    font-size: 97px;
    font-size: 9.7rem;
    line-height: 97px;
    line-height: 9.7rem;
    margin-bottom: 0;
  }
}
.join-our-team-footer h3 span {
  font-family: "akzidenz-grotesk-condensed";
  font-weight: 400;
  color: #f7a800;
  display: block;
}
@media (min-width: 641px) {
  .join-our-team-footer h3 span {
    margin-left: 25px;
    font-size: 81px;
    font-size: 8.1rem;
    line-height: 50px;
    line-height: 5rem;
  }
}
.join-our-team-footer h3 span {
  margin-left: 0;
}

main {
  position: relative;
}

section.mast {
  position: relative;
  text-align: center;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 1024px) {
  section.mast {
    height: 700px;
  }
}
section.mast .contain {
  position: relative;
}
section.mast .slick-active .links {
  opacity: 1;
}
section.mast .slide {
  position: relative;
  width: 100%;
  padding: 170px 0 100px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
@media (min-width: 640px) {
  section.mast .slide {
    padding: 260px 0 175px 0;
    min-height: 550px;
  }
}
@media (min-width: 1025px) {
  section.mast .slide {
    min-height: 700px;
  }
}
section.mast .links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: 0.6s;
  transition-delay: 0.6s;
}
@media (min-width: 641px) {
  section.mast .links {
    flex-direction: row;
  }
}
section.mast .links .link {
  margin: 30px 0 0 0;
}
@media (min-width: 641px) {
  section.mast .links .link {
    margin: 0 0 0 40px;
  }
}
section.mast p {
  font-family: "akzidenz-grotesk-extended";
  font-size: 9.75vw;
  line-height: 9vw;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 45px;
  transition: 0.3s;
  transition-delay: 0.75s;
}
@media (min-width: 768px) {
  section.mast p {
    font-size: 8vw;
    line-height: 7vw;
  }
}
@media (min-width: 1024px) {
  section.mast p {
    font-size: 90px;
    font-size: 9rem;
    line-height: 80px;
    line-height: 8rem;
  }
}
@media (min-width: 1120px) {
  section.mast p {
    font-size: 100px;
    font-size: 10rem;
    line-height: 80px;
    line-height: 8rem;
  }
}
section.mast p span.second {
  font-family: "akzidenz-grotesk-condensed";
  display: block;
  font-weight: 500;
}
@media (min-width: 1024px) {
  section.mast p span.second {
    font-size: 100px;
    font-size: 10rem;
  }
}

.find-location-contain {
  padding: 40px 0 60px 0;
  background: #dadada;
}
@media (min-width: 1024px) {
  .find-location-contain {
    padding: 100px 0 50px 0;
  }
}
.find-location-contain .contain {
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column-reverse;
}
@media (min-width: 1024px) {
  .find-location-contain .contain {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row-reverse;
  }
}
.find-location-contain .find-location {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 641px) {
  .find-location-contain .find-location {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .find-location-contain .find-location {
    margin-left: 60px;
    justify-content: flex-start;
  }
}
.find-location-contain p {
  font-size: 20px;
  font-size: 2rem;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 35px;
  color: #4d4d4d;
  text-align: center;
}
@media (min-width: 1024px) {
  .find-location-contain p {
    text-align: right;
    margin: 0;
  }
}
.find-location-contain a {
  margin: 20px 0 0 0;
}
@media (min-width: 641px) {
  .find-location-contain a {
    margin: 0 0 0 20px;
  }
}

.order {
  background-color: #e01d1c;
  background-image: url("//cdn.bardmaterials.com/home/red-bg.jpg");
  background-size: cover;
  background-position: center center;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.order span {
  display: none;
}
@media (min-width: 650px) {
  .order span {
    display: inline;
  }
}
.order span:first-child {
  display: inline;
}
@media (min-width: 650px) {
  .order span:first-child {
    display: none;
  }
}
.order p {
  font-family: "akzidenz-grotesk-extended";
  font-weight: 500;
  color: white;
  letter-spacing: 1px;
  font-size: 19px;
  font-size: 1.9rem;
  display: none;
}
@media (min-width: 650px) {
  .order p {
    display: block;
  }
}
.order .line {
  background: white;
  width: 1px;
  height: 30px;
  margin: 0 20px;
  display: none;
}
@media (min-width: 650px) {
  .order .line {
    display: block;
  }
}

.cards-contain {
  background-color: #dadada;
  background-size: cover;
  background-position: center;
  padding: 5vh 0 0 0;
}
@media (min-width: 1024px) {
  .cards-contain {
    padding: 80px 0 0 0;
  }
}
.products .cards-contain {
  width: 70%;
}
.cards-contain .contain {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 990px) {
  .cards-contain .contain {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .cards-contain .contain {
    max-width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1160px) {
  .cards-contain .contain {
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
  }
}
.cards-contain .card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 50px;
  text-align: center;
  background-color: black;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  overflow: hidden;
  margin: 0 0 20px 0;
  border-bottom: 14px solid #f7a800;
}
@media (min-width: 640px) {
  .cards-contain .card {
    width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1024px) {
  .cards-contain .card {
    width: calc(33.33% - 15px);
    margin: 0 10px;
  }
}
@media (min-width: 1024px) {
  .cards-contain .card:first-child {
    margin-left: 0;
  }
}
@media (min-width: 1024px) {
  .cards-contain .card:last-child {
    margin-right: 0;
  }
}
.cards-contain .card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.cards-contain .card:hover .cover {
  transform: scale(1.1);
  opacity: 0.6;
}
.cards-contain .card:hover .copy {
  transform: translateY(10px);
}
.cards-contain .card:hover .line {
  width: 80px;
}
.cards-contain .card:hover .link {
  opacity: 1;
}
.cards-contain .card:hover .link img {
  transform: translateX(10px);
}
.cards-contain .card img {
  transition: 0.3s;
  opacity: 0.8;
}
.cards-contain .card .link {
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  display: none;
  align-self: flex-end;
  opacity: 0;
  display: none;
}
@media (min-width: 1024px) {
  .cards-contain .card .link {
    display: block;
  }
}
.cards-contain .card .copy {
  position: relative;
  transition: 0.3s;
}
.cards-contain .card .copy p {
  font-family: "akzidenz-grotesk-extended";
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 22px;
  line-height: 2.2rem;
  color: white;
  margin-top: auto;
  margin-bottom: 20px;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .cards-contain .card .copy p {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
  }
}
.cards-contain .card .line {
  width: 50px;
  height: 4px;
  background-color: #f7a800;
  margin: 10px auto 25px auto;
  transition: 0.3s;
}
