/* COLORS */
:root {
  --black: #1a1a1a;
  --red: #e2231a;
  --darkred: #cc0000;
  --yellow: #f7a800;
  --gray: #4d4d4d;
  --lightgray: #a2a2a2;
  --white: #ffffff;
}

:root {
  --condensed: "akzidenz-grotesk-condensed";
  --extended: "akzidenz-grotesk-extended";
  --regular: "akzidenz-grotesk";
}

* {
  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;
  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.xsmall {
  padding: 1.2rem 1.6rem;
  font-size: 13px;
  font-size: 1.3rem;
}
.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.red {
  border: 0.15rem solid #e2231a;
  color: #ffffff;
  background: transparent;
}
.btn.outline.red:hover {
  color: #1a1a1a;
}
.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;
}

.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;
}

/* ========================================
   MAST / HERO SECTION
   ======================================== */
.mast {
  position: relative;
  padding: 120px 5% 160px;
  background: #1a1a1a;
  overflow: hidden;
  min-height: 500px;
}
@media (min-width: 768px) {
  .mast {
    padding: 140px 5% 180px;
    min-height: 600px;
  }
}
@media (min-width: 1024px) {
  .mast {
    padding: 160px 0 200px;
  }
}
.mast figure.fill {
  position: absolute;
  z-index: 0;
}
.mast figure.fill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.mast .cover {
  object-position: top;
}
.mast .contain {
  position: relative;
  z-index: 1;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (min-width: 768px) {
  .mast .contain {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}
.mast .app-icon {
  width: 120px;
  height: 120px;
}
@media (min-width: 768px) {
  .mast .app-icon {
    width: 140px;
    height: 140px;
  }
}
.mast .overline {
  font-family: "akzidenz-grotesk";
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.mast .overline span {
  color: #f7a800;
}
.mast h1 {
  font-family: "akzidenz-grotesk-extended";
  font-weight: 700;
  font-size: 12vw;
  line-height: 0.9;
  color: white;
  text-transform: uppercase;
  margin-bottom: 0.2em;
}
@media (min-width: 768px) {
  .mast h1 {
    font-size: 72px;
    font-size: 7.2rem;
  }
}
@media (min-width: 1024px) {
  .mast h1 {
    font-size: 90px;
    font-size: 9rem;
  }
}
.mast .subhead {
  font-family: "akzidenz-grotesk-condensed";
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1;
  color: white;
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .mast .subhead {
    font-size: 40px;
    font-size: 4rem;
  }
}
.mast .buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 400px) {
  .mast .buttons {
    flex-direction: row;
    justify-content: center;
  }
}
.mast .buttons .btn {
  min-width: 140px;
  margin-bottom: 10px;
}
@media (min-width: 400px) {
  .mast .buttons .btn {
    margin-bottom: 0;
    margin-right: 15px;
  }
  .mast .buttons .btn:last-child {
    margin-right: 0;
  }
}
.mast .buttons .btn:first-child {
  border: 1px solid #e2231a;
}

/* ========================================
   PAGE DESCRIPTION SECTION
   ======================================== */
.page-description {
  position: relative;
  margin-top: -80px;
  z-index: 1;
}
.page-description .contain {
  position: relative;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  background-color: #1a1a1a;
  padding: 50px 10%;
}
@media (min-width: 768px) {
  .page-description .contain {
    padding: 60px 3.5%;
  }
}
@media (min-width: 768px) {
  .page-description .contain {
    flex-direction: row;
    align-items: flex-start;
  }
}
.page-description .heading {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .page-description .heading {
    flex: 1;
    margin-bottom: 0;
    margin-right: 50px;
  }
}
.page-description .heading h2 {
  font-family: "akzidenz-grotesk-extended";
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.05;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 768px) {
  .page-description .heading h2 {
    font-size: 29px;
    font-size: 2.9rem;
  }
}
.page-description .heading h2 strong {
  color: #f7a800;
  font-weight: 700;
}
@media (min-width: 768px) {
  .page-description .copy {
    flex: 1;
  }
}
.page-description .copy p {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.2;
  color: white;
  text-wrap: pretty;
  margin-bottom: 0.8em;
}
@media (min-width: 768px) {
  .page-description .copy p {
    font-size: 20px;
    font-size: 2rem;
  }
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
  padding: 50px 2.5% 20px;
}
@media (min-width: 768px) {
  .features {
    padding: 70px 5%;
  }
}
.features header {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  max-width: 100%;
}
.features header h2 {
  font-family: "akzidenz-grotesk-extended";
  font-weight: 700;
  font-size: clamp(3.2rem, 4vw, 5.2rem);
  color: #383838;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.features > .contain {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}
@media (min-width: 768px) {
  .features > .contain {
    grid-template-columns: repeat(2, 1fr);
  }
}
.features .feature {
  width: 100%;
  background: white;
  overflow: hidden;
  margin-bottom: 25px;
}
.features .feature figure {
  position: relative;
  padding-top: 65%;
  background: #e4e4e4;
  overflow: hidden;
  border-radius: 4px;
}
.features .feature figure img {
  transition: transform 0.3s;
}
.features .feature:hover figure img {
  transform: scale(1.05);
}
.features .feature .copy {
  padding: 40px 7.5% 25px;
}
.features .feature .copy h3 {
  position: relative;
  font-family: "akzidenz-grotesk-extended";
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  line-height: 1.1;
  color: #4d4d4d;
  margin-bottom: 10px;
  text-transform: uppercase;
  padding-left: 22px;
}
.features .feature .copy h3::before {
  content: "";
  position: absolute;
  left: -0.2em;
  top: 0.05em;
  width: 14px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.63 35.66'%3E%3Cpolyline fill='none' stroke='%23f7a800' stroke-miterlimit='10' stroke-width='3.55' points='1.45 34.62 13.45 18.06 1.45 1.02'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.features .feature .copy h3 strong {
  color: #e2231a;
  font-weight: 700;
}
.features .feature .copy p {
  font-size: 17.5px;
  font-size: 1.75rem;
  line-height: 1.25;
  color: #666;
  padding-left: 22px;
}
@media (min-width: 768px) {
  .features .feature .copy p {
    font-size: 20px;
    font-size: 2rem;
  }
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
  padding: 40px 5%;
  border-top: 1px solid #e4e4e4;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .cta {
    padding: 80px 5%;
  }
}
.cta .contain {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.cta .heading {
  font-family: "akzidenz-grotesk-extended";
  font-weight: 700;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 30px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .cta .heading {
    font-size: 29px;
    font-size: 2.9rem;
  }
}
.cta .heading strong {
  display: block;
  color: #e2231a;
  font-weight: 700;
}

/* ========================================
   FEATURE SLIDESHOW SECTION
   ======================================== */
.feature-slideshow {
  position: relative;
}
.feature-slideshow .app-icon {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 225px;
  height: 225px;
  z-index: 1;
  display: none;
}
.feature-slideshow .app-icon img {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .feature-slideshow .app-icon {
    display: block;
  }
}
.feature-slideshow .contain {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .feature-slideshow .contain {
    grid-template-columns: repeat(2, 1fr);
  }
}
.feature-slideshow .image-col {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .feature-slideshow .image-col {
    margin: 0;
  }
}
.feature-slideshow .image-col .slide-image {
  grid-column: 1;
  grid-row: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.feature-slideshow .image-col .slide-image img {
  transform: translateY(2px);
}
.feature-slideshow .image-col .slide-image.active {
  opacity: 1;
}
.feature-slideshow .content-col {
  padding: 90px 10% 40px;
}
@media (min-width: 768px) {
  .feature-slideshow .content-col {
    padding: 90px 5% 90px calc(5% + 50px);
  }
}
.feature-slideshow .content-col .overline {
  font-family: "akzidenz-grotesk";
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #e2231a;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}
.feature-slideshow .content-col h2 {
  font-family: "akzidenz-grotesk-extended";
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.05;
  color: #4d4d4d;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-weight: 700;
  text-wrap: pretty;
}
@media (min-width: 768px) {
  .feature-slideshow .content-col h2 {
    font-size: 42px;
    font-size: 4.2rem;
  }
}
.feature-slideshow .content-col h2 strong {
  color: #e2231a;
  font-weight: 700;
}
.feature-slideshow .slide-list {
  list-style: none;
  position: relative;
}
.feature-slideshow .slide-item {
  padding: 12px 0 12px 25px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}
.feature-slideshow .slide-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: #d8d8d8;
}
.feature-slideshow .slide-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: #f7a800;
  transform: scaleY(0);
  transform-origin: top;
  z-index: 2;
  opacity: 1;
  transition: transform 0.4s;
}
.feature-slideshow .slide-item:hover h3 {
  color: #e2231a;
}
.feature-slideshow .slide-item.active::after {
  transform: scaleY(1);
  transition: transform 4s;
}
.feature-slideshow .slide-item.active .slide-copy {
  max-height: 100px;
  opacity: 1;
  padding-top: 8px;
}
.feature-slideshow .slide-item.clicked::after {
  transform: scaleY(1);
  transition: none;
}
.feature-slideshow .slide-item h3 {
  font-family: "akzidenz-grotesk";
  font-weight: 500;
  font-size: 20px;
  font-size: 2rem;
  color: #4d4d4d;
  transition: 0.3s;
  margin: 0;
}
@media (min-width: 768px) {
  .feature-slideshow .slide-item h3 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.feature-slideshow .slide-item .slide-copy {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}
.feature-slideshow .slide-item .slide-copy p {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.25;
  color: #666;
  text-wrap: balance;
  max-width: 350px;
}
@media (min-width: 768px) {
  .feature-slideshow .slide-item .slide-copy p {
    font-size: 20px;
    font-size: 2rem;
  }
}

@keyframes progressFill {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}
/* ========================================
   STEPS SECTION
   ======================================== */
.steps {
  padding: 50px 10%;
}
@media (min-width: 768px) {
  .steps {
    padding: 120px 5% 80px;
  }
}
.steps .contain {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .steps .contain {
    grid-template-columns: repeat(2, 1fr);
  }
}
.steps .step {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .steps .step:first-child {
    padding-right: 60px;
    border-right: 1px solid #e4e4e4;
  }
  .steps .step:last-child {
    padding-left: 60px;
  }
}
.steps .step .overline {
  font-family: "akzidenz-grotesk-condensed";
  font-size: 40px;
  font-size: 4rem;
  font-weight: 400;
  color: #f7a800;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.steps .step h2 {
  font-family: "akzidenz-grotesk-extended";
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.1;
  color: #4d4d4d;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .steps .step h2 {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
.steps .step h2 strong {
  color: #e2231a;
}
.steps .step > p {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.15;
  font-weight: 500;
  color: #4d4d4d;
  margin-bottom: 20px;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .steps .step > p {
    font-size: 20px;
    font-size: 2rem;
  }
}
.steps .step .btn {
  margin-bottom: 25px;
}
.steps .step .help-text {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #808080;
}
.steps .step .help-text a {
  color: #e2231a;
  text-decoration: underline;
}
.steps .step .help-text a:hover {
  text-decoration: none;
}
.steps .step .app-links {
  display: flex;
  flex-direction: column;
}
.steps .step .app-links .app-badge {
  display: block;
  transition: 0.3s;
  margin-bottom: 10px;
}
.steps .step .app-links .app-badge:last-child {
  margin-bottom: 0;
}
.steps .step .app-links .app-badge:hover {
  transform: translateY(-2px);
}
.steps .step .app-links .app-badge img {
  height: auto;
  width: 175px;
}

/* ========================================
   BARD ADVANTAGE SECTION
   ======================================== */
.bard-advantage {
  position: relative;
  padding-left: 2.5%;
  padding-right: 2.5%;
  padding-bottom: 40px;
}
.bard-advantage .contain {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-radius: 4px;
  padding: 80px 5%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .bard-advantage .contain {
    padding: 180px 5%;
  }
}
.bard-advantage .copy {
  position: relative;
}
.bard-advantage h2 {
  font-family: "akzidenz-grotesk-extended";
  font-weight: 700;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1;
  color: #f7a800;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .bard-advantage h2 {
    font-size: 52px;
    font-size: 5.2rem;
  }
}
.bard-advantage h2 span {
  display: block;
  color: white;
}
.bard-advantage p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.36;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .bard-advantage p {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
