@charset "UTF-8";
/*
Theme Name: Mitchel Valve
Theme URI:
Description: Custom theme for Mitchel Valve
Author: Joe Blackburn
Version: 1.0
Tags: custom
*/
/* =============================================================================
   Adapted from HTML5 Boilerplate CSS: h5bp.com/css
   ========================================================================== */
/* !Global Styles - - - - - */
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale;
}

.sans {
  font-family: "rig-sans", Arial, Verdana, sans-serif;
}

.white {
  color: #fff;
}

.black {
  color: #000;
}

.red {
  color: #bd1e26;
}

.dk-red {
  color: #910609;
}

.vdk-grey {
  color: #1d242c;
}

.dk-grey {
  color: #1f2a33;
}

.grey {
  color: #2e3c47;
}

.mid-grey {
  color: #9ea6ab;
}

.lt-grey {
  color: #ecedee;
}

.vlt-grey {
  color: #f5f6f7;
}

.white-bg {
  background: #fff;
}

.black-bg {
  background: #000;
}

.red-bg {
  background: #bd1e26;
}

.dk-red-bg {
  background: #910609;
}

.vdk-grey-bg {
  background: #1d242c;
}

.dk-grey-bg {
  background: #1f2a33;
}

.grey-bg {
  background: #2e3c47;
}

.mid-grey-bg {
  background: #9ea6ab;
}

.lt-grey-bg {
  background: #ecedee;
}

.vlt-grey -bg {
  background: #f5f6f7;
}

.italic {
  font-style: italic;
}

.normal {
  font-weight: normal;
}

.bold {
  font-weight: bold;
}

.medium {
  font-weight: 500;
}

.semi {
  font-weight: 600;
}

.xbold {
  font-weight: 800;
}

.center {
  text-align: center;
}

.upper {
  text-transform: uppercase;
}

.lower {
  text-transform: lowercase;
}

.space {
  letter-spacing: 0.05em;
}

.xspace {
  letter-spacing: 0.1em;
}

.fleft {
  float: left;
}

.fright {
  float: right;
}

.plain a, a.plain {
  text-decoration: none;
}

a {
  color: #bd1e26;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

a:hover {
  color: #1f2a33;
}

.rel {
  position: relative;
}

ul.clean {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.inline {
  display: inline-block;
}

ul.inline > li {
  display: inline;
  float: left;
}

ul.ilb > li,
.ilb {
  display: inline-block;
  vertical-align: top;
}

ul.ilb {
  display: block;
}

li.vmiddle,
.vmiddle {
  vertical-align: middle;
}

li.vbottom,
.vbottom {
  vertical-align: bottom;
}

.reverse {
  direction: rtl;
}

.dfix {
  direction: ltr;
}

img.full {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

img.fill,
video.fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-image video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.cover {
  background: url(images/trans.png) no-repeat center;
  background-size: cover;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
}

.grid.row {
  grid-auto-rows: 1fr;
}

.grid.grid2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.grid4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.grid5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.over {
  position: relative;
  z-index: 20;
}

.swap {
  grid-auto-flow: column;
  direction: rtl;
}

.flex {
  display: flex;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.overflow {
  overflow: hidden;
}

.text-shadow {
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
}

/* !Font Size Functions - - - - - */
/* !Page Defaults - - - - - */
.text {
  line-height: 1.6em;
  font-size: 1.125rem;
}

.text.small-text {
  font-size: 1rem;
}

.text.large-text {
  font-size: 1.25rem;
}

.text p {
  margin: 15px 0;
}

.text a {
  color: #bd1e26;
  text-decoration: underline;
}

.text a:hover {
  color: #1f2a33;
}

.text.white a {
  color: #fff;
  text-decoration: underline;
}

.text.white a:hover {
  color: rgba(255, 255, 255, 0.5);
}

.header-text p:first-child,
.text p:first-child {
  margin-top: 0;
}

.header-text p:last-child,
.text p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-weight: normal;
}

.text img {
  display: block;
  margin: 10px auto;
  width: auto;
  height: auto;
  max-width: 100%;
}

.text .alignleft {
  float: left;
  margin: 0 30px 30px 0;
  display: inline-block;
}

.text .alignright {
  float: right;
  margin: 0 0 30px 30px;
  display: inline-block;
}

.text ul {
  margin: 30px 0;
  list-style: none;
  padding: 0 0 0 30px;
}

.text ul li {
  position: relative;
  margin: 0;
  line-height: 1.3em;
  padding: 0 0 0 20px;
}

.text ul li + li {
  margin-top: 5px;
}

.text ul li:before {
  content: "•";
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 1;
}

.text h1,
.text h2,
.text h3,
.text h4,
.text h5 {
  margin: 30px 0 10px 0;
  font-weight: 800;
  color: #2e3c47;
  font-family: "rig-sans", Arial, Verdana, sans-serif;
  line-height: 1.3em;
}

.text.white h1,
.text.white h2,
.text.white h3,
.text.white h4,
.text.white h5 {
  color: #fff;
}

.text h1:first-child,
.text h2:first-child,
.text h3:first-child,
.text h4:first-child,
.text h5:first-child,
.text ul:first-child {
  margin-top: 0;
}

.text h1:last-child,
.text h2:last-child,
.text h3:last-child,
.text h4:last-child,
.text h5:last-child,
.text ul:last-child {
  margin-bottom: 0;
}

.text blockquote {
  margin: 50px 0;
  padding: 10px 0 10px 30px;
  border-left: 2px solid #bd1e26;
  color: #1d242c;
  font-size: 1.375rem;
  line-height: 1.5em;
  text-align: left;
  font-family: "rig-sans", Arial, Verdana, sans-serif;
  font-weight: 800;
}

.text.white blockquote {
  color: #fff;
}

section {
  scroll-margin-top: 100px;
}

/* !Body - - - - - */
html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-size: 16px;
  font-family: "rig-sans", Arial, Verdana, sans-serif;
  color: #1d242c;
  line-height: 1.6em;
  background: #fff;
}

#container {
  background: #fff;
  padding-top: 100px;
}

.inner {
  padding: 0 50px;
  max-width: 1000px;
  display: block;
  margin: 0 auto;
}

.inner.skinny {
  max-width: 950px;
}

.inner.mid {
  max-width: 1050px;
}

.inner.wide {
  max-width: 1350px;
}

.max {
  max-width: 1500px;
  display: block;
  margin: 0 auto;
}

.page-block + .page-block {
  margin-top: 110px;
}

.page-block.bg,
.block-pad,
.block-pad-top {
  padding: 110px 0;
}

.page-block.bg.no-top-pad {
  padding-top: 0;
}

.page-block.bg.small-block-pad,
.small-block-pad {
  padding: 80px 0;
}

.big-block-pad,
.page-block.bg.big-block-pad {
  padding: 150px 0;
}

.page-block:last-child {
  padding-bottom: 110px;
}

.page-block.bg + .page-block.bg {
  margin-top: 0;
}

.block-pad-top {
  padding-top: 110px;
}

.block-pad-bottom {
  padding-bottom: 110px;
}

.big-block-pad:last-child,
.page-block.bg.big-block-pad:last-child {
  padding-bottom: 150px;
}

.small-block-pad:last-child,
.page-block.bg.small-block-pad:last-child {
  padding-bottom: 80px;
}

.page-block.no-pad {
  padding: 0 !important;
}

/* !Buttons + Links - - - - - */
.button {
  display: inline-block;
  font-family: "rig-sans", Arial, Verdana, sans-serif;
  font-weight: 800;
  color: #fff;
  background: #bd1e26;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  padding: 15px 28px;
  line-height: 1em;
  border: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 100px;
  transition: all 0.35s ease-in-out;
}

.button:hover {
  background: #1f2a33;
  color: #fff;
}

.button.dk-red-bg {
  background-color: #910609;
}

.button.light-hover:hover {
  background: #fff;
  color: #1f2a33;
}

.button.email {
  display: inline-grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 28px 12px 20px;
}

.button.email path {
  fill: #fff;
  transition: all 0.35s ease-in-out;
}

.button.email:hover path {
  fill: #fff;
}

.button.email.light-hover:hover path {
  fill: #bd1e26;
}

a.arrow-link {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  color: #1f2a33;
}

a.arrow-link:hover {
  color: #bd1e26;
}

a.arrow-link path {
  fill: #bd1e26;
  transition: all 0.35s ease-in-out;
}

a.arrow-link:hover path {
  fill: #1f2a33;
}

a.arrow-link.white {
  color: #fff;
}

a.arrow-link.white:hover {
  color: #bd1e26;
}

a.arrow-link.white:hover path {
  fill: #bd1e26;
}

/* !Headlines - - - - - */
.subhead {
  font-size: "rig-sans", Arial, Verdana, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.5em;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.headline90 {
  font-family: "rig-sans", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-size: 5.625rem;
  line-height: 1em;
}

.headline70 {
  font-family: "rig-sans", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-size: 4.375rem;
  line-height: 1.1em;
}

.headline40 {
  font-family: "rig-sans", Arial, Verdana, sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1.25em;
}

/* !Spacing - - - - - */
.subhead + .headline70 {
  margin-top: 20px;
}

* + .text,
* + a.arrow-link,
.subhead + .headline90 {
  margin-top: 25px;
}

* + .button {
  margin-top: 30px;
}

* + .button.big-margin {
  margin-top: 40px;
}

/* !Header - - - - - */
header {
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 100100;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
}

.header-flex {
  padding: 0 50px;
  height: 100%;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

a.logo {
  width: 176px;
  height: 176px;
  border-radius: 100px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transform: translate(0, 40px);
}

.scrolled a.logo {
  width: 130px;
  height: 130px;
  padding: 10px;
  transform: translate(0, 20px);
}

ul.nav {
  height: 100%;
  justify-content: flex-end;
  gap: 45px;
  align-items: center;
}

ul.nav > li {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* !Footer - - - - - */
.footer-top {
  padding: 50px 0 20px 0;
}

.footer-cols {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 0;
  align-items: center;
}

.footer-logo-col {
  padding-right: 70px;
}

.footer-col {
  padding: 20px 35px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 3px solid #2e3c47;
}

a.footer-logo {
  max-width: 150px;
  width: 100%;
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.footer-info {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3em;
}

.footer-info + .footer-info {
  margin-top: 7px;
}

.footer-info a {
  display: block;
  color: #fff;
}

.footer-info a:hover {
  color: rgba(255, 255, 255, 0.5);
}

a.linkedin {
  display: inline-grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: center;
  font-size: 1.25rem;
  line-height: 1.3em;
  color: #fff;
  font-weight: bold;
}

a.linkedin:hover {
  color: #bd1e26;
}

.footer-bottom {
  padding: 0 50px 15px 50px;
  justify-content: flex-end;
  font-size: 0.75rem;
  line-height: 1.3em;
  color: #9ea6ab;
}

.footer-bottom a {
  color: #9ea6ab;
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-bar {
  padding: 25px 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
  position: sticky;
  position: -webkit-sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 500;
}

.footer-bar-text {
  font-size: 1.25rem;
  line-height: 1.3em;
  color: #fff;
}

/* !CTA Block - - - - - */
.bg-image.darken:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(31, 42, 51, 0.9);
}

/* !Half & Half Block - - - - - */
.half-image-lock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0px 0px;
  grid-template-areas: "lock1 lock3" "lock2 lock3";
}

.lock1 {
  grid-area: lock1;
  aspect-ratio: 1/1;
  background: #fff;
}

.lock2 {
  grid-area: lock2;
  aspect-ratio: 1/1;
  background: #ecedee;
}

.lock3 {
  grid-area: lock3;
  aspect-ratio: 1/2;
  background: #f5f6f7;
}

.half-image-lock img {
  mix-blend-mode: multiply;
}

.half-content {
  padding: 50px;
}

.half-max {
  max-width: 450px;
  margin: 0 auto;
}

.half-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* !Industries Block - - - - - */
ul.slick-dots {
  display: flex;
  justify-content: flex-end;
  height: 8px;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  position: absolute;
  bottom: 25px;
  padding: 0 25px;
  z-index: 101;
  width: 100%;
  list-style: none;
  margin: 0;
}

ul.slick-dots li {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #fff;
  text-indent: -9999px;
  overflow: hidden;
  transition: all 0.35s ease-in-out;
}

ul.slick-dots li.slick-active {
  background: #bd1e26;
}

.ind-top + .ind-bottom {
  margin-top: -50px;
}

.ind-bottom {
  position: relative;
  padding: 0 25px;
}

.bump-top:before,
.bump-bottom:after {
  content: "";
  width: 86px;
  height: 18px;
  position: absolute;
  left: 50%;
  z-index: 101;
  transform: translate(-50%, 0);
}

.bump-top:before {
  top: -17px;
  background: url(images/bump-top.svg) no-repeat center bottom;
  background-size: 100% auto;
}

.bump-bottom:after {
  top: calc(100% - 1px);
  background: url(images/bump-bottom.svg) no-repeat center top;
  background-size: 100% auto;
}

.ind-box {
  padding: 100px 50px;
  margin-bottom: -50px;
  position: relative;
  z-index: 20;
}

.ind-box-max {
  max-width: 1150px;
  margin: 0 auto;
}

.ind-box-grid {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 50px;
}

ul.ind-list:before,
ul.ind-list:after {
  content: "";
  width: 3px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 101;
  background: #d8dbdd;
  transform: translate(-50%, 0);
}

ul.ind-list:after {
  left: 50%;
}

.ind-name {
  display: block;
  font-size: 1.0625rem;
  line-height: 1.4em;
  font-weight: bold;
  color: #1d242c;
  padding: 15px 35px;
}

a.ind-name:hover {
  color: #bd1e26;
}

.ind-image {
  aspect-ratio: 2/1;
}

/* !Intro - - - - - */
.intro-grid {
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
}

.intro-cycle {
  background: #1f2a33;
}

.intro-cycle .slick-track {
  display: flex;
}

.intro-cycle .slick-slide {
  display: flex;
  height: inherit !important;
  align-items: center;
  justify-content: center;
}

.intro-image {
  height: 100%;
  position: relative;
}

.intro-image:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(29, 36, 44, 0.1);
}

.intro-left {
  padding: 150px 50px 0 50px;
  position: relative;
  z-index: 200;
}

.intro-max {
  max-width: 220px;
  margin: 0 auto;
}

.intro-left .wide-headline {
  width: calc(100% + 500px);
  position: relative;
  z-index: 101;
}

.intro-bottom {
  padding: 150px 0;
}

.intro-block:after {
  content: "";
  width: 40%;
  height: 100%;
  z-index: 1;
  position: absolute;
  bottom: 0;
  right: 10%;
  max-width: 500px;
  background: url(images/valve-drawing.png) no-repeat center bottom -120px;
  background-size: 100% auto;
  opacity: 0.4;
  mix-blend-mode: multiply;
}

.intro-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 50px;
}

.industries-block + .page-block.bg.big-block-pad {
  padding-top: 190px;
  padding-bottom: 140px;
}

/* !Lines - - - - - */
.line-after {
  position: relative;
  padding-bottom: 30px;
}

.line-after:after {
  content: "";
  width: 40px;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #bd1e26;
}

/* - - - Media Queries - - - */
@media only screen and (max-width: 1720px) {
  /* Style adjustments for viewports that meet the condition */
  .ind-cycle ul.slick-dots {
    right: 0;
    bottom: 75px;
    padding: 0 25px;
  }
}
@media only screen and (max-width: 1200px) {
  .intro-bottom {
    padding: 80px 0;
  }
  .headline90 {
    font-size: 4.6875rem;
  }
  .headline70 {
    font-size: 3.75rem;
  }
  .headline40 {
    font-size: 2rem;
    line-height: 1.4em;
  }
  .ind-box {
    padding: 50px;
  }
  .ind-name {
    padding: 10px 25px;
  }
  .page-block + .page-block {
    margin-top: 90px;
  }
  .page-block.bg,
  .block-pad,
  .block-pad-top {
    padding: 90px 0;
  }
  .page-block.bg.small-block-pad,
  .small-block-pad {
    padding: 60px 0;
  }
  .big-block-pad,
  .page-block.bg.big-block-pad {
    padding: 130px 0;
  }
  .page-block:last-child {
    padding-bottom: 90px;
  }
  .block-pad-top {
    padding-top: 90px;
  }
  .block-pad-bottom {
    padding-bottom: 90px;
  }
  .big-block-pad:last-child,
  .page-block.bg.big-block-pad:last-child {
    padding-bottom: 130px;
  }
  .small-block-pad:last-child,
  .page-block.bg.small-block-pad:last-child {
    padding-bottom: 60px;
  }
  .industries-block + .page-block.bg.big-block-pad {
    padding-top: 170px;
  }
}
@media only screen and (max-width: 1023px) {
  .footer-bar-text {
    display: none;
  }
  header {
    height: 70px;
  }
  #container {
    padding-top: 70px;
  }
  a.logo,
  .scrolled a.logo {
    width: 95px;
    height: 95px;
    padding: 8px;
    transform: translate(0, 15px);
  }
  .button {
    padding: 14px 25px;
  }
  .button.email {
    gap: 10px;
    align-items: center;
    padding: 11px 25px 11px 17px;
  }
  .footer-bar {
    padding: 15px 25px;
  }
  .header-flex,
  .inner {
    padding: 0 25px;
  }
  .inner {
    max-width: 950px;
  }
  .inner.skinny {
    max-width: 900px;
  }
  .inner.mid {
    max-width: 1000px;
  }
  .intro-left {
    padding-left: 25px;
  }
  .half-row,
  .ind-box-grid,
  .footer-cols,
  .intro-bottom-grid,
  .intro-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-auto-flow: row;
    gap: 30px;
    grid-auto-rows: auto;
  }
  .half-row {
    gap: 0;
  }
  .half-content {
    padding: 35px 25px;
  }
  .half-max {
    max-width: none;
  }
  .ind-box {
    padding: 35px;
  }
  .page-block + .page-block {
    margin-top: 60px;
  }
  .page-block.bg,
  .block-pad,
  .block-pad-top {
    padding: 60px 0;
  }
  .page-block.bg.small-block-pad,
  .small-block-pad {
    padding: 45px 0;
  }
  .big-block-pad,
  .page-block.bg.big-block-pad {
    padding: 90px 0;
  }
  .page-block:last-child {
    padding-bottom: 60px;
  }
  .block-pad-top {
    padding-top: 60px;
  }
  .block-pad-bottom {
    padding-bottom: 60px;
  }
  .big-block-pad:last-child,
  .page-block.bg.big-block-pad:last-child {
    padding-bottom: 90px;
  }
  .small-block-pad:last-child,
  .page-block.bg.small-block-pad:last-child {
    padding-bottom: 45px;
  }
  .industries-block + .page-block.bg.big-block-pad {
    padding-top: 120px;
  }
  .headline90 {
    font-size: 3.75rem;
  }
  .headline70 {
    font-size: 3rem;
  }
  .text {
    font-size: 1rem;
  }
  .text.small-text {
    font-size: 0.875rem;
  }
  .text.large-text {
    font-size: 1.125rem;
  }
  .ind-top + .ind-bottom {
    margin-top: -30px;
  }
  .ind-box {
    margin-bottom: -30px;
  }
  .bump-top:before,
  .bump-bottom:after {
    width: 50px;
  }
  .ind-name {
    font-size: 1rem;
    padding: 7px 20px;
  }
  .footer-logo-col {
    padding: 0;
    max-width: 120px;
    margin: 0 auto;
  }
  .footer-col {
    padding: 0;
    border: none;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .footer-bottom {
    justify-content: center;
  }
  a.footer-logo {
    position: static;
    transform: none;
  }
  .footer-top {
    padding-bottom: 40px;
  }
  .intro-left {
    padding: 70px 25px 0 25px;
  }
  .intro-left .wide-headline {
    width: 100%;
  }
  .intro-right {
    margin-top: -60px;
  }
  .intro-bottom {
    padding: 50px 0;
  }
  .ind-cycle ul.slick-dots {
    bottom: 45px;
  }
  .subhead {
    font-size: 0.875rem;
  }
  .footer-info {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  /* Style adjustments for viewports that meet the condition */
  .text .alignleft,
  .text .alignright {
    margin: 10px auto;
    float: none;
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
  }
  .headline90 {
    font-size: 3rem;
    line-height: 1.1em;
  }
  .headline70 {
    font-size: 2.25rem;
    line-height: 1.2em;
  }
  .intro-right {
    margin-top: -50px;
  }
  .intro-block:after {
    opacity: 0.6;
  }
  .big-block-pad,
  .page-block.bg.big-block-pad {
    padding: 75px 0;
  }
  .big-block-pad:last-child,
  .page-block.bg.big-block-pad:last-child {
    padding-bottom: 75px;
  }
  .industries-block + .page-block.bg.big-block-pad {
    padding-top: 105px;
  }
  .subhead + .headline70 {
    margin-top: 15px;
  }
  * + .text,
  * + a.arrow-link,
  .subhead + .headline90 {
    margin-top: 20px;
  }
  * + .button {
    margin-top: 25px;
  }
  * + .button.big-margin {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 600px) {
  /* Style adjustments for viewports that meet the condition */
  ul.ind-list:before,
  ul.ind-list:after {
    display: none;
  }
  ul.ind-list.grid.grid2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-auto-flow: row;
    gap: 0;
    grid-auto-rows: auto;
    border-left: 3px solid #d8dbdd;
  }
  .ind-name {
    padding: 5px 0 5px 20px;
  }
  .headline90 {
    font-size: 2.625rem;
    line-height: 1.1em;
  }
  .headline40 {
    font-size: 1.625rem;
  }
  .ind-top + .ind-bottom {
    margin-top: -25px;
  }
  .ind-box {
    margin-bottom: -25px;
  }
  .industries-block + .page-block.bg.big-block-pad {
    padding-top: 100px;
  }
  .ind-cycle ul.slick-dots {
    bottom: 40px;
  }
}
@media only screen and (max-width: 480px) {
  /* Style adjustments for viewports that meet the condition */
}
@media only screen and (max-width: 400px) {
  /* Style adjustments for viewports that meet the condition */
}
@media only screen and (max-width: 320px) {
  /* Style adjustments for viewports that meet the condition */
}
/* - - - Non-Semantic Helper Classes - - - */
.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  *line-height: 0;
}

.ir br {
  display: none;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

/* - - - Print Styles - - - */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  } /* Black prints faster: h5bp.com/s */
  a, a:visited {
    text-decoration: underline;
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  } /* h5bp.com/t */
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
}
