@font-face {
  font-family:'Museo Sans';
  src:url('fonts/MuseoSans_300-webfont.eot');
  src:url('fonts/MuseoSans_300-webfont.eot?#iefix') format('embedded-opentype'),
      url('fonts/MuseoSans_300-webfont.woff') format('woff'),
      url('fonts/MuseoSans_300-webfont.ttf') format('truetype'),
      url('fonts/MuseoSans_300-webfont.svg#museo_sans300') format('svg');
  font-weight:400;
  font-style:normal;
  font-display: swap;
}
@font-face {
  font-family:'Museo Sans';
  src:url('fonts/MuseoSans_900-webfont.eot');
  src:url('fonts/MuseoSans_900-webfont.eot?#iefix') format('embedded-opentype'),
  url('fonts/MuseoSans_900-webfont.woff') format('woff'),
  url('fonts/MuseoSans_900-webfont.ttf') format('truetype');
  font-weight:900;
  font-style:normal;
  font-display: swap;
}
/* Variables */
:root {
  --primary: #fee04f;
  --primary-light: #fee465;
  --offwhite: #f9f9f9;
  --offwhite-hover: #f1f1f1;
  --gray: #333;
}
/* Reset */
*,*::before,*::after {
  box-sizing: border-box;
}
img {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
}
body {
  margin-top: 6.75rem;
}
@media (min-width: 67.3125rem) {
 body {
   margin-top: 11.25rem;
 } 
}
/* Typography */
p a:not(.button):not(.chevron-link):not(.tel-link):not(.hello-bar-link), 
p a:not(.button):not(.chevron-link) *, 
.section--text-block a:not(.button):not(.chevron-link):not(.tel-link), 
.section--text-block a:not(.button):not(.chevron-link) *,
.container a:not(.button):not(.chevron-link):not(.tel-link), 
.container a:not(.button):not(.chevron-link) * {
  text-decoration: underline !important;
  font-style: normal !important;
  text-decoration-color: #000;
  color: #000 !important;
  font-weight: 500 !important;
}
p > a:not(.button):not(.chevron-link) {
  color: #000;
  text-decoration: underline;
}
p > a:hover {
  text-decoration: none;
}
p, ul {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 1rem;
}
@media (min-width: 64rem) { 
  p.lead {
    font-size: 1.125rem;
  }
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
  font-weight: bold;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: 2.625rem; /* 42px */
}
@media (min-width: 64rem) {
  h1,
  .h1 {
    font-size: 4.5rem; /* 72px */
  }
}

h2,
.h2 {
  font-size: 2rem; /* 32px */
}
@media (min-width: 64rem) {
  h2,
  .h2 {
    font-size: 3rem; /* 48px */
  }
}

h3,
.h3 {
  font-size: 1.5rem; /* 24px */
}
@media (min-width: 64rem) {
  h3,
  .h3 {
    font-size: 1.875rem; /* 30px */
  }
}

h4,
.h4 {
  font-size: 1.3125rem; /* 21px */
}
@media (min-width: 64rem) {
  h4,
  .h4 {
    font-size: 1.5rem; /* 24px */
  }
}
h1>a, h2>a, h3>a, h4>a, h5>a, h6>a, 
.h1>a, .h2>a, .h3>a, .h4>a, .h5>a, .h6>a {
  color: #000;
}
.contact-form label {
  width: auto;
  display: block;
  height: auto;
  margin-bottom: .5rem;
  font-size: 1rem;
  font-weight: bold;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="number"],
.contact-form select,
.postfix-form input[type="text"] {
  font-family: "Museo Sans", Helvetica, Arial, sans-serif;
  border: 0.0625rem solid #aaaaaa;
  width: 100%;
  height: 2.5rem;
  padding: .25rem .5rem;
}
.contact-form textarea {
  font-family: "Museo Sans", Helvetica, Arial, sans-serif;
  border: 0.0625rem solid #aaaaaa;
  width: 100%;
  padding: .5rem;  
}
.contact-form select {
  font-family: "Museo Sans", Helvetica, Arial, sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  background-image: url('../images/select-icon.svg');
  background-position: 98% center;
  background-repeat: no-repeat;
  background-size: 0.875rem;
  border-radius: 0;
}
.contact-form select::-ms-expand {
  display: none;
}
form > div {
  margin-bottom: 2rem;
}
input[type="submit" i] {
  margin-left: 0 !important;
}
.postfix-form {
  display: flex;
  justify-content: center;
}
.postfix-form input[type="text"] {
  width: 100%;
  color: #000;
  border-right: none;
  padding: 0 1rem;
  background: none;
}
.postfix-form input[type="text"]::placeholder {
  color: #777;
}
.postfix-form button[type="submit"],
.postfix-form input[type="submit"] {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.row {
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}
.half-column {
  width: 50%;
}
@media (min-width: 48rem) {
  .medium-half-column {
    width: 50%;
  }
}
@media (min-width: 64rem) {
  .large-half-column {
    width: 50%;  
  }
}

/* Buttons */
.button {
  transition: all 150ms ease-in-out;
  display: inline-block;
  background-color: var(--primary);
  color: #000;
  font-size: 0.9375rem;
  font-weight: bold;
  padding: .75rem 1.5rem;
  border: 0;
}
.button:hover {
  background-color: var(--primary-light);
}
.button.ghost {
  background: transparent;
  border: 0.0625rem solid #000;
}
.button.ghost:hover {
  background-color: #000;
  color: #fff;
}
.button.ghost.invert {
  color: #fff;
  border-color: #fff;
}
.button.ghost.invert:hover {
  background-color: #fff;
  color: #000;
}
.button.large {
  font-size: 1.1875rem;
  padding: 1.055rem 1.85rem;
}
.button.secondary {
  background-color: #000;
  color: #fff;
}
.chevron-link {
  font-size: 0.9375rem;
  font-weight: bold;
  color: #000;
}
.chevron-link:hover {
  color: var(--gray);
}
.chevron-link:after {
  content: " ";
  transform: rotate(45deg);
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 0.125rem solid #000;
  border-top: 0.125rem solid #000;
  margin-left: .25rem;
}
.chevron-link:hover:after {
  border-color: var(--gray);
}
.chevron-link.chevron-link_white {
  color: #fff;
}
.chevron-link.chevron-link_white::after {
  border-color: #fff;
}
/* Cookie pop-over */
.cli-plugin-button {
  margin-top: 0.5625rem;  
}
/* Reject btn */
a#cookie_action_close_header_reject {
  background-color: transparent !important;
  color: black !important;
  text-transform: uppercase;
  border: 0.0625rem solid black;
}
/* Header */
.ieBanner {
  display: none;
  background: #fee04f;
  padding: 1.875rem;
  justify-content: center;
}
.ieBanner > div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* text-align: center; */
}
.ieBanner img {
  float: left;
  margin-right: 2.5rem;
}
.fixed-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  transition: transform 0.4s ease-in-out;
}
.desktop-nav {
  background: #fff;
  display: none;
  box-shadow: 0 0.0625rem 0.125rem rgba(0,0,0,.15);
}
@media (min-width: 75rem) {
  .desktop-nav {
    display: block;
  }
  .mobile-nav {
    display: none;
  }
}
.hello-bar {
  background: #C8102E;
  color: #fff;
  padding: 0.625rem;
  text-align: center;
}
.hello-bar p {
  max-width: none;
  font-size: 0.875rem;
  font-weight: 900;
  color: #fff;
  margin: 0;
}
.hello-bar a {
  color: white !important;
  font-weight: 900 !important;
}
.desktop-nav .nav-top {
  background-color: var(--offwhite);
  padding-left: 2.5rem;
  padding-right: 0.9375rem;
}
.desktop-nav .nav-top > .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-top__logo {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
}
.nav-top__right {
  display: flex;
  align-items: center;
}
.nav-top__right > a,
.nav-top__right a.nav-top__language-dropdown,
.nav-top__language-dropdown-wrap {
  color: #000;
  font-size: 0.875rem;
  margin-left: 1.875rem;
}
.trp-language-switcher {
  display: flex;
  align-items: center;
  height: 79px;
  margin: 0;
}
.trp-language-switcher>div {
  padding: 0;
  background-color: transparent;
  border: none;
  background-image: none;
  border-radius: 0;
}
.trp-language-switcher>div>a {
  color: #000;
}
.trp-language-switcher:hover .trp-ls-shortcode-language {
  top: 1.8rem;
  width: 120px !important;
}
.trp-ls-shortcode-language>a:not(.trp-ls-shortcode-disabled-language) {
  background: #fff;
  border-radius: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
  border: 1px solid #ddd;
  border-width: 0 1px;
}
.trp-ls-shortcode-language>a:not(.trp-ls-shortcode-disabled-language):last-child {
  border-width: 0 1px 1px;
}
.trp-ls-shortcode-language>a:not(.trp-ls-shortcode-disabled-language):hover {
  background: #fff;
  font-weight: bold;
}
.trp-ls-shortcode-language>a:nth-child(2) {
  margin-top: 1.8rem;
}
.nav-top__ecommerce-link {
  display: flex;
  align-items: center;
}
.nav-top__right a.nav-top__language-dropdown,
.nav-top__right a.nav-top__login-dropdown {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  line-height: 4.9375rem;
  margin-left: 0;
  font-size: 0.875rem;
}
.nav-top__right .nav-top__language-dropdown-wrap:hover,
.nav-top__right .nav-top__login-dropdown-wrap:hover {
  cursor: pointer;
  background-color: var(--primary);
}
.phone-dropdown-wrap:hover,
.nav-top__right .nav-top__phone-dropdown-wrap:hover {
  cursor: pointer;
}
.nav-top__phone-dropdown-wrap {
  position: relative;
  display: inline-block;
}
.phone-dropdown-wrap:hover .phone-dropdown-content,
.nav-bottom__right .nav-top__phone-dropdown-wrap:hover .phone-dropdown-content,
.nav-top__right .nav-top__language-dropdown-wrap:hover .language-dropdown-content,
.nav-top__right .nav-top__login-dropdown-wrap:hover .login-dropdown-content {
  display: block;
}
.phone-dropdown-wrap, .nav-top__phone-dropdown-wrap .nav-top__phone-dropdown {
    width: 100%;
}
.phone-dropdown::after,
.nav-bottom__right a.nav-top__phone-dropdown::after,
.nav-top__right a.nav-top__language-dropdown::after,
.nav-top__right a.nav-top__login-dropdown::after,
.trp-ls-shortcode-disabled-language::after {
  content: " ";
  transform: rotate(135deg);
  display: inline-block;
  width: 0.25rem;
  height: 0.25rem;
  border-right: 0.0625rem solid #000;
  border-top: 0.0625rem solid #000;
  margin-left: .5rem;
  margin-bottom: .2rem;
}
@media (min-width: 48rem) {
  .footer-tel-wrap .phone-dropdown::after {
    border-right: 0.0625rem solid #fff;
    border-top: 0.0625rem solid #fff;
    margin-bottom: 0.35rem;
  }
}

.nav-top__search-form {
  transition: width 125ms ease;
  width: 0;
  overflow: hidden;
}
.nav-top__search-form input[type="text"] {
  border: 0.0625rem solid black;
  padding: .5rem;
  margin-left: 0.625rem;
  width: 10rem;
}
.phone-dropdown-wrap,
.nav-top__phone-dropdown-wrap {
    position: relative;
    padding: 1.25rem 0;
}
.phone-dropdown-content,
.language-dropdown-content,
.login-dropdown-content {
  display: none;
  position: absolute;
  top: 7.25rem;
  background-color: #fff;
  box-shadow: 0 0.125rem 0.75rem 0.25rem rgba(0,0,0,.05);
  padding: 1.25rem;
  width: 12rem;
  z-index: 99;
}
.login-dropdown-content {
  width: 14rem;
}
.nav-top__phone-dropdown-wrap .phone-dropdown-content {
    top: 3.5rem;
    right: -0.25rem;
    width: 16rem;
    text-align: right;
    /*display: block;*/
}
.footer-tel-wrap .phone-dropdown-content {
    width: 16rem;
    top: 2.5rem;
}
.phone-dropdown-content ul,
.language-dropdown-content ul,
.login-dropdown-content ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.phone-dropdown-content ul li,
.language-dropdown-content ul li,
.login-dropdown-content ul li {
  margin-bottom: 0.9rem;
  line-height: 1.3;
}
.phone-dropdown-content ul li a,
.language-dropdown-content ul li a,
.login-dropdown-content ul li a {
  font-size: 0.875rem;
  color: #000;
}
.phone-dropdown-content ul li a small {
  font-weight: bold;
}
.phone-dropdown-content ul li a:hover,
.language-dropdown-content ul li a:hover,
.login-dropdown-content ul li a:hover {
  font-weight: bold;
}
.language-dropdown-content ul li a::after,
.login-dropdown-content ul li a::after {
  content: " ";
  transform: rotate(45deg);
  display: inline-block;
  width: 0.25rem;
  height: 0.25rem;
  border-right: 0.0625rem solid #000;
  border-top: 0.0625rem solid #000;
  margin-left: .5rem;
  margin-bottom: .17rem;
}

.desktop-nav .nav-bottom {
  padding-left: 1.25rem;
}
.desktop-nav .nav-bottom > .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ubermenu.ubermenu-transition-slide .ubermenu-active>.ubermenu-submenu.ubermenu-submenu-type-mega, .ubermenu:not(.ubermenu-transition-slide) .ubermenu-submenu.ubermenu-submenu-type-mega,
.ubermenu .ubermenu-item.ubermenu-active.ubermenu-in-transition>.ubermenu-submenu-drop, .ubermenu .ubermenu-item.ubermenu-in-transition>.ubermenu-submenu-drop {
  max-width: 90rem !important;
  background: var(--offwhite);
  padding: 0.625rem 0;
  overflow: visible !important;
  transition: none !important;
}
.ubermenu.ubermenu-transition-slide .ubermenu-active>.ubermenu-submenu.ubermenu-submenu-type-mega, .ubermenu:not(.ubermenu-transition-slide) .ubermenu-submenu.ubermenu-submenu-type-mega:before {
  content: " ";
  background: var(--offwhite);
  width: 200vw;
  position: absolute;
  height: 100%;
  top: 0;
  left: -100vw;
}
.ubermenu-main .ubermenu-item-normal > .ubermenu-target, .ubermenu-main .ubermenu-submenu .ubermenu-target, .ubermenu-main .ubermenu-submenu .ubermenu-nonlink, .ubermenu-main .ubermenu-submenu .ubermenu-widget, .ubermenu-main .ubermenu-submenu .ubermenu-custom-content-padded, .ubermenu-main .ubermenu-submenu .ubermenu-retractor, .ubermenu-main .ubermenu-submenu .ubermenu-colgroup .ubermenu-column, .ubermenu-main .ubermenu-submenu.ubermenu-submenu-type-stack > .ubermenu-item-normal > .ubermenu-target, .ubermenu-main .ubermenu-submenu.ubermenu-submenu-padded {
  padding: 0.3125rem 0.9375rem !important;
}
.ubermenu-nav > .ubermenu-item > .ubermenu-target {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
  padding-left: 0.9375rem !important;
  padding-right: 0.9375rem !important;
}
.ubermenu.ubermenu-main .ubermenu-item-normal > .ubermenu-target:hover, 
.ubermenu.ubermenu-main .ubermenu-item-normal.ubermenu-active > .ubermenu-target {
  background: none;
}
.ubermenu-sub-indicators .ubermenu-has-submenu-drop>.ubermenu-target {
  padding-right: 1.5625rem !important;
}
.ubermenu .ubermenu-target, .ubermenu .ubermenu-widget, .ubermenu-responsive-toggle {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.ubermenu .ubermenu-submenu .ubermenu-submenu-type-stack {
  font-size: 1rem;
}
.ubermenu-sub-indicator.fa-angle-down:before {
  content: "\f107";
  content: " ";
  border: 0.0625rem solid #000;
  border-width: 0.0625rem 0.0625rem 0 0;
  width: 0.25rem;
  height: 0.25rem;
  position: absolute;
  transform: rotate(135deg);
  top: 0.125rem;
  left: -0.5rem;
}
.ubermenu-content-block {
  position: relative;
}
.ubermenu-content-block h1, .ubermenu-content-block h2, .ubermenu-content-block h3, .ubermenu-content-block h4 {
  margin-bottom: 0;
}
.ubermenu-main .ubermenu-submenu .ubermenu-item-header > .ubermenu-target {
    font-size: 18px;
}
.ubermenu-main .solutions-dd-title > span {
    min-height: 40px;
}
.desktop-nav li.col-top-space {
  padding-top: 0 !important;
}
.desktop-nav li.ubermenu-item-level-2 a.ubermenu-target:hover {
  background-color: transparent !important;
}
.desktop-nav .nav-bottom__right .tel-link {
  color: var(--gray);
  font-size: 1.125rem;
  margin-right: 1rem;
}
.desktop-nav .nav-bottom__right .contact-button {
  height: 3.75rem;
}

.mobile-nav {
  box-shadow: 0 0.0625rem 0.25rem rgba(0,0,0,.15);
}

.mobile-menu-wrap > .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding-right: 1.25rem;
}

ul#menu-mobile-nav {
  background: #fff;
  margin: 0;
  padding: 0;
  margin-top: 0.625rem;
}
#menu-mobile-nav li {
  border: 0;
  width: 100%;
  background: transparent;
}
#menu-mobile-nav a {
  color: #000;
  font-size: 1.125rem;
  padding: 0.875rem 1.875rem;
  font-weight: bold;
  background: none;
  border: 0;
  position: relative;
}
#menu-mobile-nav .sub-menu li a {
  font-size: 0.875rem;
  padding: 0.875rem 2.8rem 0.875rem 1rem;
}
#menu-mobile-nav li.menu-item-has-children > a:after,
.mobile-login-wrap > a:after {
  content: " ";
  transform: rotate(135deg);
  display: inline-block;
  width: 0.4375rem;
  height: 0.4375rem;
  border-right: 0.125rem solid #000;
  border-top: 0.125rem solid #000;
  top: 1.1875rem;
  right: 1.875rem;
  position: absolute;
}
.mobile-login-wrap > a:after {
  border-color: #fff;
  top: 1.55rem;
}
#menu-mobile-nav li.menu-item-has-children > a.active:after,
.mobile-login-wrap > a.active:after {
  transform: rotate(-45deg);  
  margin-top: 0.375rem;
}
.off-canvas-menu {
  position: fixed;
  top: 0;
  background: white;
  height: 100%;
  width: 16.875rem;
  z-index: 9999;
  transition: transform 300ms ease;
  transform: translateX(-100%);
  box-shadow: -0.375rem 0.125rem 0.875rem 0.9375rem rgba(0,0,0,.075);
  overflow-y: auto;
}
html[dir=rtl] .off-canvas-menu {
  transform: translateX(100%);
}
html[dir=rtl] body.mobile-menu-active .off-canvas-menu {
  transform: translateX(0);
}
body.mobile-menu-active {
  overflow: hidden;
}
body.mobile-menu-active .off-canvas-menu {
  transform: translateX(0);
}
body.mobile-menu-active .off-canvas-exit {
  transition: background 300ms ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,.5);
  z-index: 9998;
}
.sub-menu.active {
  position: static;
}
.nav ul.sub-menu {
  width: 100%;
  padding: 0 0 0 1.875rem;
  background-color: var(--offwhite);
}
.mobile-login-wrap {
  display: block;
  font-weight: bold;
  font-size: 1rem;
  background-color: #000;
  color: #fff;
  padding: 0.5rem 0;
}
.mobile-login-wrap a {
  color: #fff;
  display: block;
  padding: 0.875rem 1.875rem;
}
.mobile-login-wrap ul {
  list-style: none;
  padding: 0 0 0 1.875rem;
  margin-bottom: 0;
  position: absolute;
  left: -9999px;
}
.mobile-login-wrap ul li a {
  font-size: 0.875rem;
  padding: 0.75rem 2.8rem 0.75rem 1rem;
}

.mobile-search-input {
  border: 0;
  border-bottom: 0.0625rem solid #ccc;
  width: 100%;
  padding: 0.625rem 1.875rem;
  font-size: 1rem;
}
.mobile-locator-wrap {
  position: relative;
}
.mobile-locator-wrap .trp-language-switcher {
    height: 40px;
    padding-left: 27px;
    border-bottom: 0.0625rem solid #ccc;
}
.mobile-locator-wrap .trp-ls-shortcode-current-language {
  width: 200px !important;
}
.mobile-locator-wrap .trp-language-switcher:hover .trp-ls-shortcode-language {
  width: 200px !important;
  top: 0.6rem !important;
  left: 27px;
}
.mobile-locator-wrap .trp-ls-shortcode-language>a:nth-child(2) {
  margin-top: .6rem;
}
@media screen and (min-width: 801px) {
  .mobile-locator-wrap .trp-language-switcher:hover .trp-ls-shortcode-language { 
    top: 0.5rem !important;
  }
  .mobile-locator-wrap .trp-ls-shortcode-language>a:nth-child(2) {
    margin-top: .45rem;
  }
}
.mobile-locator-wrap:after {
  content: " ";
  transform: rotate(135deg);
  display: inline-block;
  width: 0.4375rem;
  height: 0.4375rem;
  border-right: 0.125rem solid #000;
  border-top: 0.125rem solid #000;
  top: 0.6875rem;
  right: 1.875rem;
  position: absolute;
} 
.mobile-locator-select {
  position: relative;
  -webkit-appearance:none;
  background: url('../images/mobile-locator-globe.svg') no-repeat 1.75rem center;
  background-size: 1.125rem;
  font-size: 0.875rem;
  width: 100%;
  border: 0;
  padding: 0.625rem 0.625rem 0.625rem 3.4375rem;
  border-bottom: 0.0625rem solid #ccc;
} 
.mobile-nav-right {

}
.nav-top__phone-link {
  margin-right: 0.75rem;
}

.home-section--main-banner {
  position: relative;
  min-height: 70vh;
}
/* Dark overlay */
.home-section--main-banner.dark-overlay::before,
.cta-banner.dark-overlay::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0,0,0,.4);
  content: " ";
  width: 100%;
  height: 100%;
  z-index: 2;
}
.home-section--main-banner .iframe-wrapper {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 70vh;
}
.home-section--main-banner .iframe-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*
 Aspect ratio cut off is not 16/9 of viewport,
 since height it not the full viewport height,
 but 70vh.

 r = viewport aspect ratio = vw/vh = ?

 video_r = 100vw/70vh = 16/9
 100vw/70vh = 16/9

 solving for vw/vh, which is r...

 100vw/70vh = 16/9
 vw/vh = (16*70)/(9*100)
 vw/vh = 112/90
 r = 112/90

*/
@media (min-aspect-ratio: 112/90) {
  .home-section--main-banner .iframe-wrapper iframe {
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 112/90) {
  .home-section--main-banner .iframe-wrapper iframe {
    width: 177.78vh;
  }
}
.home-section--main-banner > video {
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.home-section--main-banner .overlay {
  max-width: 51.25rem;
  text-align: center;
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  z-index: 8;
  color: #fff;
  transform: translate(-50%,-50%);
}
@media (max-width: 30rem) {
  .home-section--main-banner .overlay .title {
    font-size: 2.1rem;
    line-height: 1.12;
    margin-bottom: 0.7rem;
  }
  .home-section--main-banner .overlay .subtitle {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
  }
}
@media (min-width: 75rem) {
  .home-section--main-banner .overlay {
    width: 60%;
  }
}
.home-section--main-banner .overlay .title {
  margin-bottom: 1rem;
}
.home-section--main-banner .overlay a:not(.button) {
  color: #fff;
}
.home-section--main-banner .overlay .button-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 30rem) {
  .home-section--main-banner .overlay .button-row a {
    font-size: 1.1rem;
  }
}
@media (min-width: 48rem) {
  .home-section--main-banner .overlay .button-row {
    max-width: none;
    flex-direction: row;
  }
}
.home-section--main-banner .overlay .button-row .button {
  display: block;
  margin: .5rem;
  width: 100%;
}
@media (min-width: 48em) {
  .home-section--main-banner .overlay .button-row .button {
    display: inline-block;
    width: auto;
  }
}
.home-section--video-overlay {
  z-index: 999;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
}
.home-section--video-overlay.active {
  display: flex;
}
.home-section--video-overlay .container {
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 90%;
  position: relative;
  padding: 0;
  margin: 0;
}
.home-section--video-overlay .container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
.home-section--video-overlay .stretch_image {
  width: 100%;
}
.home-section--video-overlay .close {
  position: absolute;
  top: -44px;
  right: 59px;
  transform: translateX(100%);
}
@media (min-width: 75rem) {
  .home-section--video-overlay .close {
    top: 0;
    right: 2px;
  }
}

.home-section--safetek {
  overflow: hidden;
  background-color: #000;
  background-image: url("../images/TS_Homepage_Safetek_BG_TR.jpg"), url("../images/TS_Homepage_Safetek_BG_BL.jpg") ;
  background-position: top right, bottom left;
  background-repeat: no-repeat;
  background-size: 50%, 100%;
  color: #fff;
  padding-bottom: 3.75rem;
}
.home-section--safetek > .row {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
@media (min-width: 64rem) { 
  .home-section--safetek {
    
  }
}
.home-section--safetek__lead-in {
  text-align: center;
  padding-top: 4.5312rem;
  padding-bottom: 4.5312rem;
}
.home-section--safetek__title {
}
@media (min-width: 64rem) { 
  .home-section--safetek__lead-in {
    padding-top: 11.25rem;
    padding-bottom: 9.0625rem;
  }
}
.home-section--safetek__lead-in p {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.home-section--safetek__offering {
  margin-bottom: 3.75rem;
}
.home-section--safetek__offering-content .offering-icon {
  margin-bottom: .75rem;
}
.home-section--safetek__offering-content > p:last-child {
  margin-top: 2rem;
}
@media (max-width: 47.9375rem) { 
  .home-section--safetek__offering-content {
    margin-top: 1rem;
  }
}
@media (min-width: 48rem) { 
  .home-section--safetek__offering {
    display: flex;
  }
  .home-section--safetek__offering-image {
    width: 50%;
  }
  .home-section--safetek__offering-image img {
    max-width: 42.5rem;
    width: 100%;
  }
  .home-section--safetek__offering-content {
    width: 50%;
    text-align: center;
    max-width: 25rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2.5rem;
  }
  .home-section--safetek__offering-content p {
    max-width: 30ch;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 64rem) { 
  .home-section--safetek__offering {
    align-items: center;
    margin-bottom: 6.25rem;
  }
  .home-section--safetek__offering-content {
    padding-left: 0;
  }
  .home-section--safetek__offering-content .offering-icon {
    width: 5.75rem;
    height: 5.75rem;
    margin-bottom: 1.25rem;
  }
}
/* Flipped version */
@media (min-width: 48rem) { 
  .home-section--safetek__offering.home-section--safetek__offering_flipped .home-section--safetek__offering-content {
    order: -1;
    padding-left: 0;
    padding-right: 2.5rem;
  }
}
@media (min-width: 64rem) { 
  .home-section--safetek__offering.home-section--safetek__offering_flipped .home-section--safetek__offering-content {
    padding-right: 0;
  }
}
.home-section--search,.home-section--comprehensive {
  padding: 2.5rem;
  text-align: center;
}
.home-section--comprehensive p:last-child {
  margin-bottom: 0;
}
.home-section--search p,
.home-section--comprehensive p {
  max-width: 75ch;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 75rem) {
  .home-section--search,
  .home-section--comprehensive {
    padding: 7.5rem 2.5rem;
  }
  .home-section--comprehensive {
    padding-bottom: 3.75rem;
  }
}

.home-section--search {
  background: var(--offwhite);
}
.home-section--search p {
  margin-bottom: 1.5rem;
}
.home-section--search form {
  border: 0.0625rem solid #000;
  max-width: 36.25rem;
  margin: 0 auto;
}
.home-section--search input[type="text"] {
  border: 0;
}
.home-section--search button[type="submit"] {
  width: 2.9375rem;
  padding-left: .25rem;
  padding-right: .25rem;
}

.home-section--card-wrap.row {
  display: grid;
  grid-gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
}
@media (min-width: 48rem) {
  .home-section--card-wrap.row { 
    grid-template-columns: 1fr 1fr; 
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (min-width: 64rem) {
  .home-section--card-wrap.row { 
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 10rem;
  }
}

.home-section--card {
  background-color: var(--offwhite);
  transition: all 175ms ease;

}
.home-section--card:hover {
  box-shadow: 0 0.0625rem 0.375rem rgba(33,33,33,.1);
}
.home-section--card a {
  color: #000;
}
.home-section--card__content {
  padding: 1.875rem 2.5rem 3.75rem;
  text-align: center;
}
.home-section--card__image {
  width: 100%;
}

.home-section--callout-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.875rem 2.5rem 3.75rem;
  border: 0.125rem solid var(--offwhite);
  border-top: 0.3125rem solid var(--primary);
}
.home-section--callout-card img {
  margin-top: 1.875rem;
  margin-bottom: 1.25rem;
}

.section--right-aligned-banner {
  position: relative;
  margin-bottom: 3.75rem;
}
@media (min-width: 75rem) {
  .section--right-aligned-banner {
    margin-bottom: 0;
  }
}
.section--right-aligned-banner img {
  width: 100%;
}
.section--right-aligned-banner .overlay {
  padding: 1.25rem;
  max-width: 54ch;
  margin: 0 auto;
}
@media (min-width: 48rem) { 
  .section--right-aligned-banner .overlay {
    padding: 2.5rem 1.25rem;
  }
}
@media (min-width: 75rem) {
  .section--right-aligned-banner .overlay {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 40vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0,0,0,.85);
    color: #fff;
    padding: 0 6vw;
  }
  .section--right-aligned-banner .overlay .title {
    font-size: calc(2vw + 1px);
    position: relative;
  }
  .section--right-aligned-banner .overlay .title::before {
    content: ' ';
    display: block;
    background-color: var(--primary);
    width: 100%;
    height: 0.125rem;
    margin-bottom: 1rem;
  }
  .section--right-aligned-banner .overlay p {
    font-size: calc(.25vw + 12px);
  }
}
@media (max-width: 74.9375rem) {
  .section--right-aligned-banner .overlay .title,
  .section--right-aligned-banner .overlay .button-wrap {
    text-align: center;
  }
}

.section--right-aligned-banner .overlay ul {
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.section--our-mission {
  margin-top: -.5rem;
  background-color: var(--offwhite);
  text-align: center;
  padding: 2.5rem 3.75rem 3.75rem;
}
@media (min-width: 64rem) {
  .section--our-mission {
    padding-top: 8.75rem;
    padding-bottom: 10rem;
  }
}
.section--stats-wrap {
  background: url('../images/home-map.png') no-repeat center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  margin-top: 1.25rem;
}
@media (min-width: 64rem) {
  .section--stats-wrap {
    padding-top: 11.25rem;
    padding-bottom: 11.25rem;
    margin-bottom: 3.75rem;
  }
}
.section--stats {
  max-width: 86.375rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-gap: 1.25rem;
  text-align: center;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 64rem) {
  .section--stats {
    flex-wrap: nowrap;
  }
}
.section--stats > div {
  display: grid;
  grid-template-rows: .5fr 1.125rem 1fr;
  justify-content: center;
}
.section--stats .stat {
  font-size: 3.125rem;
  line-height: 1;
  font-weight: 900;
}
.section--stats .subtitle {
  font-size: 1.1875rem;
  font-weight: 900;
  white-space: nowrap;
}
.section--stats .line {
  align-self: center;
  border-top: 0.125rem solid var(--primary);
}
.section--stats .desc {
  max-width: 25ch;
  margin-top: .5rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 90rem) {
  .section--stats .stat {
    font-size: 4.5rem;
  }
  .section--stats .subtitle {
    font-size: 1.875rem;
  }
}
/*
.home-section--breakout-cta {
  background: black;
  margin-bottom: 3.75rem;
}
.home-section--breakout-cta .breakout-img {
  margin-top: -1.875rem;
}
@media (min-width: 64rem) {
  .home-section--breakout-cta {
    margin-bottom: 10rem;
    height: calc(50vw - 3.75rem);
  }
  .home-section--breakout-cta .breakout-img {
    margin-left: 4.375rem;
  }
}
@media (min-width: 75rem) {
  .home-section--breakout-cta {
    height: 33.75rem;
  }
  .home-section--breakout-cta .breakout-img {
    width: 37.5rem;
  }
}
.home-section--breakout-cta > .row {
  text-align: center;
}
@media (min-width: 64rem) {
  .home-section--breakout-cta > .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
  } 
}

.home-section--breakout-cta .breakout-content {
  color: #fff;
  padding: 2.5rem;
  align-self: center;
}
@media (min-width: 64rem) {
  .home-section--breakout-cta .breakout-content {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
    margin-left: 4.375rem;
  }
}

.home-section--breakout-cta .breakout-content .osha-logo {
  max-width: 66.667%;
  width: 15.625rem;
  margin-bottom: 1rem;
}
@media (min-width: 64rem) {
  .home-section--breakout-cta .breakout-content .osha-logo {
    width: 18.75rem;
    margin-top: -1.875rem;
  }
}
.home-section--breakout-cta .breakout-content p {
  max-width: 42ch;
}
@media (max-width: 64rem) {
  .home-section--breakout-cta .breakout-content p {
    margin-left: auto;
    margin-right: auto;
  }
}
.home-section--breakout-cta .osha-cert-row {
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media (min-width: 64rem) { 
  .home-section--breakout-cta .osha-cert-row {
    justify-content: flex-start;
  }
}
.home-section--breakout-cta .osha-cert-row > img {
  width: 5.125rem;
}

@media (min-width: 48rem) { 
  .home-section--breakout-cta .osha-cert-row > img {
    width: 6.25rem;
  }
}
.home-section--breakout-cta .osha-cert-row > img:not(:last-child) {
  margin-right: 2rem;
}
 */

.home-section--client-section {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-bottom: 1.875rem;
}
@media (min-width: 48rem) { 
  .home-section--client-section {
    margin-bottom: 6.25rem;
  }
}
.client-logo-wrap {
  overflow: hidden;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 1.875rem;
  grid-row-gap: 0;
}
@media (min-width: 48rem) {
  .client-logo-wrap {
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 2.5rem;
  }
}
@media (min-width: 64rem) {
  .client-logo-wrap {
    grid-column-gap: 5rem;
  }
}

.client-logo img {
  transition: transform 225ms ease, opacity 225ms ease;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.logo-up {
  opacity: 0;
  transform: translateY(-100%);
}
.rent-section--client-section {
  margin: 0.625rem 0;
}
@media (min-width: 64rem) {  
  .rent-section--client-section .client-logo-wrap {
    display: none;
  }
}


.client-testimonials-wrap {
  margin: 0 auto 5rem;
}
@media (min-width: 48rem) { 
  .client-testimonials-wrap {
    margin: 0 auto 6.25rem;
  }
}
.client-testimonials-wrap .client-testimonial blockquote,
.client-testimonials-wrap .client-testimonial .cite {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}
.client-testimonials-wrap .client-testimonial .quote {
  padding: 1.25rem;
  margin: 0 auto;
  max-width: 75ch;
}
.client-testimonials-wrap .client-testimonial .cite {
  text-align: right;
  margin-top: 0.5rem;
}
.client-testimonials-wrap ul.slick-dots {
  list-style: none;
  display: flex !important;
  justify-content: center;
}
.slick-dots button {
  outline: none;
  font-size: 0;
  border: 0.0625rem solid black;
  border-radius: 0.125rem;
  background: black;
  margin: 0 0.25rem;
  width: 2.5rem;
  padding: 0.0625rem;
}
.slick-dots .slick-active button {
  border-color: var(--primary);
  background: var(--primary);
}
@media (min-width: 64rem) {
  .client-testimonials-wrap {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    margin-bottom: 10rem;
  }
  .client-testimonials-wrap .client-testimonial {
    display: flex !important;
    align-items: center;
  }
  .client-testimonials-wrap .client-testimonial .video {
    width: 50%;
  }
  .client-testimonials-wrap .client-testimonial .video + .quote {
    width: 50%;
  }
  .client-testimonials-wrap .client-testimonial .quote {
    padding: 2.5rem;
  }
  .client-testimonials-wrap .client-testimonial blockquote {
    font-size: 1.3125rem;
    line-height: 1.7;
  }
  .client-testimonials-wrap .client-testimonial .cite {
    font-size: 1.125rem;
    line-height: 1.7;
  }
}

.flex-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.flex-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



.home-section--recognitions-title {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-bottom: 2.5rem;
}

.home-section--recognitions-listing {
  display: grid;
  grid-gap: 2.5rem;
  grid-template-columns: 1fr 1fr;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-top: 0.0625rem solid rgba(0,0,0,.25);
  border-bottom: 0.0625rem solid rgba(0,0,0,.25);
  margin-bottom: 2.5rem;
}
.home-section--recognitions-listing .award-title {
  margin-bottom: 0.5rem;
}
.home-section--recognitions-listing .award-desc {
  margin-bottom: 0;
}
@media (min-width: 48rem) {
  .home-section--recognitions-listing {
    grid-template-columns: 1fr 1fr;
    padding-top: 5rem;
    padding-bottom: 5rem;
    margin-bottom: 8.75rem;
  }
  .home-section--recognitions-listing .list-item {
    display: flex;
    align-items: center;
  }
  .home-section--recognitions-listing .list-item > img {
    margin-right: 1.875rem;
  }
}


.home-section--recognitions-title span.lead-styled-primary {
  margin-right: .5rem;
}

p.lead-styled-italic {
  font-size: 1.125rem;
  font-style: italic;
}
span.lead-styled-primary {
  color: #fed925;
}
@media (min-width: 75rem) {
  p.lead-styled-italic {
    font-size: 1.5625rem;
  }
  span.lead-styled-primary {
    font-size: 3.25rem;
  }
}

.home-section--services {
  margin-bottom: 1.875rem;
}
.home-section--services-slider {
  overflow: hidden;
  margin-bottom: 3.75rem;
}
.home-section--services-slider .slick-track {
  display: flex !important;
}
.home-section--services-slider .slick-slide {
  height: inherit !important;
}
@media (max-width: 47.9375rem) {
  .home-section--services-slider .slick-list {
    padding-right: 2.5rem;
  }
}
@media (min-width: 48rem) {
  .home-section--services-slider {
    overflow: visible;
    width: 100%;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
    margin-bottom: 7.5rem;
  }
}
@media (min-width: 64rem) {
  .home-section--services-slider {
    margin-bottom: 10rem;
  }
}

.home-section--services-slider .home-section--card {
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}

.home-section--services-slider button.slick-prev,
.home-section--services-slider button.slick-next {
  display: none !important;
  position: absolute;
  top: -2%;
  height: 104%;
  z-index: 9;
  width: 3.75rem;
  background: white;
  border: 0;
  outline: none;
  font-size: 0;
}
.home-section--services-slider button.slick-prev {
  box-shadow: 1.125rem 0 0.8125rem -0.875rem rgba(0,0,0,.3);
  left: 0;
}
.home-section--services-slider button.slick-prev:before {
  content: " ";
  transform: rotate(-135deg);
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  border-right: 0.1875rem solid #000;
  border-top: 0.1875rem solid #000;
  margin-left: .75rem;
}
.home-section--services-slider button.slick-next {
  box-shadow: -1.125rem 0 0.8125rem -0.875rem rgba(0,0,0,.3);
  right: 0;
}
.home-section--services-slider button.slick-next:after {
  content: " ";
  transform: rotate(45deg);
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  border-right: 0.1875rem solid #000;
  border-top: 0.1875rem solid #000;
  margin-left: -0.75rem;
}
@media (min-width: 48rem) {
  .home-section--services-slider button.slick-prev,
  .home-section--services-slider button.slick-next {
    display: inline-block !important;
  }
}
.home-section--prefooter-ctas {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  margin-bottom: 5.625rem;
}
@media (min-width: 48rem) {
  .home-section--prefooter-ctas {
    display: flex;
    justify-content: center;
    margin-bottom: 9.375rem;
  }
}

.home-section--icon-card {
  background: var(--offwhite);
  display: flex;
  margin-left: 0.625rem;
  margin-right: 0.625rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 48rem) {
  .home-section--icon-card {
    width: 50%;
  }
}
.home-section--icon-card .icon {
  background-color: var(--primary);
  padding: 0.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  max-width: 10.625rem;
}
.home-section--icon-card .icon > img {
  width: 75%;
  max-height: 6.25rem;
}
.home-section--icon-card .card-content {
  padding: 1.25rem;
  width: 75%;
}
@media (min-width: 64rem) {
  .home-section--icon-card .card-content {
    padding: 3.75rem 1.875rem;
  }
}

.ctct-inline-form {
  max-width: 37.5rem;
  margin: 2.5rem auto;
}


/* Footer */
.footer-wrap {
  background: black;
  color: #fff;
  padding: 2.5rem 1.25rem;
}
@media (min-width: 48rem) { 
  .footer-wrap {
    padding: 2.5rem;
  }
}
@media (min-width: 75rem) {
  .footer-wrap {
    padding: 5.625rem 2.5rem;
  }
}
.footer-wrap a {
  color: #fff;
}
.footer-wrap li > a:hover {
  text-decoration: underline;
}
.footer-wrap ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.footer-wrap .row {
  max-width: 75rem;
}
.footer-wrap .brand-statement {
}
.footer-wrap .brand-statement p {
  margin: 0;
  font-size: 1.25rem;
  color: #fed925;
}
@media (min-width: 48rem) {
  .footer-wrap .brand-statement p {
    font-size: 1.875rem;
    text-align: left;
  }
}

.footer-logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.875rem 0;
}
@media (min-width: 64rem) {
  .footer-logo-row {
    margin: 3.125rem 0 1.875rem;
  } 
}
.footer-tel-wrap {
  text-align: right;
}
@media (min-width: 48rem) {
  .footer-tel-wrap {
    text-align: left;
  }
}
.footer-tel-num {
  font-weight: 900;
  font-size: 1.0625rem;
  top: 1px;
  position: relative;
}
@media (min-width: 48rem) {
  .footer-tel-num {
    top: auto;
    font-size: 1.1875rem;
  }
}
@media (min-width: 64rem) {
  .footer-tel-num {
    font-size: 1.5rem;
  } 
}
.footer-menu-row {

}
@media (min-width: 48rem) {
  .footer-menu-row {
    display: flex;
  }
}
.footer-menu-row ul {
  display: flex;
  flex-wrap: wrap;
  padding-top: 0.375rem;
  max-width: 90%;
}
@media (min-width: 30rem) { 
  .footer-menu-row ul {
    max-width: 30ch;
  }
}
.footer-menu-row ul li {
  width: 50%;
  margin-bottom: .75rem;
  font-size: 0.8125rem;
}
.footer-app-wrap {
  border-top: 0.0625rem solid white;
  padding-top: 1.875rem;
  margin-top: 1.875rem;
}
@media (max-width: 48rem) { 
  .footer-app-wrap {
    max-width: 34ch;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 48rem) {
  .footer-app-wrap {
    max-width: none;
    text-align: left;
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
  }
}

.footer-social-row {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 1.875rem 0 3.125rem;
}
@media (min-width: 64rem) {
  .footer-social-row {
    flex-direction: row;
    margin: 1.875rem 0 7.5rem;
  }
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer-badges > * {
  display: inline-block;
  margin-bottom: 1.5rem;
}
@media (min-width: 48rem) { 
  .footer-badges {
    flex-direction: row;
    justify-content: flex-start;
  }
  .footer-badges > * {
    margin-right: 1.75rem;
  }
}
.ehs_logo p {
  margin-bottom: .25rem;
}
.footer-social {
  order: -1;
  margin-bottom: 2.25rem;
}
@media (min-width: 64rem) {
  .footer-social {
    order: 1;
  }
}
.footer-social ul {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 64rem) {
  .footer-social ul {
    justify-content: flex-start;
    margin-left: -1.375rem;
  }
}
.footer-terms-row  {
}
.footer-terms-row ul {
  font-size: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-terms-row ul li:not(:first-child) {
  margin-left: 1.125rem;
  margin-bottom: 1.25rem;
}
.footer-sticky-nav {
  position: fixed;
  bottom: 0;
  z-index: 20;
  background: var(--primary);
  width: 100%;
  left: 0;
}
#cookie-law-info-again {
  display: none !important;
}
.footer-sticky-nav__content {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.875rem;
  font-weight: 900;
  padding: 0.4375rem 1.25rem;
  display: flex;
  justify-content: center;
}
.footer-sticky-nav__content.content-large {
  display: none;
}
@media (min-width: 48rem) {
  .footer-sticky-nav__content {
    justify-content: space-between;
  }
  .footer-sticky-nav__content.content-mobile {
    display: none;
  }
  .footer-sticky-nav__content.content-large {
    display: flex;
  }
}
.footer-sticky-nav__content a {
  color: #000;
  display: flex;
  align-items: center;
}
.footer-sticky-nav__content a > img {
  margin-right: .5rem;
}
@media (min-width: 64rem) {
  .footer-sticky-nav__content {
    padding: 0.75rem 1.25rem;
  }
}

/* Rental Page */
.cta-banner {
  position: relative;
}
.cta-banner .banner-image {
  width: 100%;
}
.cta-banner .overlay {
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  width: 100%;
  max-width: 64rem;
  padding: 0 1.25rem;
}
.cta-banner .overlay h1,
.cta-banner .overlay h2,
.cta-banner .overlay h3,
.cta-banner .overlay h4,
.cta-banner .overlay p {
  color: #fff;
}
.cta-banner .overlay .constrain {
  max-width: 54ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .overlay .calltoaction {
  margin-top: 1.5rem;
}



.banner-image-logos {
  margin: 0.625rem auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  display: none;
}
@media (min-width: 64rem) {
  .banner-image-logos {
    width: 100%;
    display: block;
    max-width: 89rem;
    margin: 0 auto;
  }
}

.sub-cta {
  text-align: center;
  max-width: 42.5rem;
  margin: 3.75rem auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 48rem) {
  .sub-cta {
    margin: 5rem auto;
  }
}
.sub-cta .button-row {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 48rem) {
  .sub-cta .button-row {
    flex-direction: row;
  }
}
.sub-cta .button-row a {
  margin: 1rem;
}

.rental-services-list {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 48rem) {
  .rental-services-list {
    flex-direction: row;
    margin-bottom: 3.75rem;
  }
}
.rental-services-list div {
  padding: 0 2.5rem;
  margin-bottom: 3.75rem;
}

.banner-image-subphotos {
  
}

/*
.breakout-cta {
  background: var(--offwhite);
  margin-bottom: 3.75rem;
  margin-top: 5rem;
}
.breakout-cta .breakout-img {
  margin-top: -1.875rem;
  padding: 0 1.25rem;
}
@media (min-width: 64rem) {
  .breakout-cta {
    margin-top: 8.75rem;
    margin-bottom: 10rem;
    height: calc(50vw - 3.75rem);
  }
  .breakout-cta .breakout-img {
    margin-left: 1.875rem;
    padding: 0;
  }
}
@media (min-width: 75rem) {
  .breakout-cta {
    height: 33.75rem;
  }
  .breakout-cta .breakout-img {
    width: 37.5rem;
  }
}
.breakout-cta > .row {
  text-align: center;
}
@media (min-width: 64rem) {
  .breakout-cta > .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
  } 
}

.breakout-cta .breakout-content {
  color: #000;
  padding: 2.5rem;
  align-self: center;
}
@media (min-width: 64rem) {
  .breakout-cta .breakout-content {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
    margin-left: 1.875rem;
  }
}

.breakout-cta .breakout-content .osha-logo {
  width: 15.625rem;
  margin-bottom: 1rem;
}
@media (min-width: 64rem) {
  .breakout-cta .breakout-content .osha-logo {
    width: 18.75rem;
    margin-top: -1.875rem;
  }
}
.breakout-cta .breakout-content p {
  max-width: 42ch;
}
@media (max-width: 64rem) {
  .breakout-cta .breakout-content p {
    margin-left: auto;
    margin-right: auto;
  }
}
*/

.line-cta>.row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
@media (max-width: 56.1875rem) { 
  .line-cta>.row {
    margin-bottom: 3.75rem;
    max-width: 40rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.line-cta-image>img {
  width: 100%;
}
.line-cta .line-cta-content {
  margin-bottom: 1.25rem;
}
.line-cta .line {
  background: var(--primary);
  height: 0.125rem;
  margin-bottom: 1.875rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 56.1875rem) {
  .line-cta.line-cta--image-left .line-cta-image {
    order: 1;
  }
}
@media (min-width: 56.25rem) {
  .line-cta > .row {
    flex-direction: row;
    margin-bottom: 7.5rem;
  }
  .line-cta .line-cta-content {
    width: 36%;
    margin-right: 14%;
  }
  .line-cta.line-cta--image-left .line-cta-content {
    margin-left: 11.5%;
    margin-right: 0;
  }
  .line-cta .line {
    width: 148%;
  }
  .line-cta.line-cta--image-left .line {
    width: 140%;
    left: -44%;
  }
}
.center-cta {
  text-align: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-bottom: 1.875rem;
}
@media (min-width: 48rem) {
  .center-cta {
    margin-bottom: 3.75rem;
  }
}
.center-cta .content {
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.875rem;
}
@media (min-width: 48rem) {
  .center-cta .content {
    margin-bottom: 5rem;
  }
}

.safetek-cta {
  background: url('../images/safetek-cta-bg.jpg') no-repeat #000;
  background-size: 150%;
  color: #fff;
  padding-top: 6.875rem;
  padding-bottom: 5.625rem;
  margin-bottom: 5rem;
}
@media (min-width: 48rem) { 
  .safetek-cta {
    background-size: auto 100%;
  }
}
@media (min-width: 75rem) { 
  .safetek-cta {
    background-size: cover;
  }
}
.safetek-cta-offerings {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5rem;
}
.safetek-cta-offerings-item {
  margin-bottom: 1.5rem;
}
@media (min-width: 48rem) { 
  .safetek-cta-offerings-item {
    width: 33.3333%;
  }
}
@media (min-width: 75rem) { 
  .safetek-cta-offerings-item {
    width: 16.666666666666667%;
  }
}
.safetek-cta-offerings-content {
  padding: 2.25rem 3.75rem;
}
@media (max-width: 47.9375rem) { 
  .safetek-cta-offerings-content {
    text-align: center;
  }
}
@media (min-width: 48rem) { 
  .safetek-cta-offerings-content {
    max-width: 26ch;
    margin-left: auto;
    margin-right: auto;
    padding: 2.25rem 1.875rem;
  }
}
.safetek-cta-offerings-content .offering-icon {
  margin-bottom: 1rem;
}

.four-up-line {
  display: flex;
  flex-wrap: wrap;
}
.four-up-line > div {
  width: 100%;
  display: grid;
  grid-template-rows: 1.125rem .25fr 1fr;
  justify-content: center;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 48rem) {
  .four-up-line > div {
    width: 50%;
    grid-template-rows: 1.125rem .4fr 1fr;
  }
}
@media (min-width: 64rem) {
  .four-up-line > div {
    width: 25%;
  }
}
.four-up-line .line {
  height: 0.125rem;
  width: 100%;
  background: var(--primary);
}

.spiral-bg {
  background: top center / 100% no-repeat url('../images/line-flair-bg.jpg?v3');
  padding-top: 24vw;
}
@media (min-width: 48rem) {
  .spiral-bg {
    padding-top: 16vw;
  }
}

.gray-callout-section {
  background: var(--offwhite);
  text-align: center;
  padding: 5rem 1.25rem;
}
.gray-callout-section .content {
  margin: 2.1875rem 0 2.5rem;
}
.gray-callout-section p {
  max-width: 54ch;
  margin-left: auto;
  margin-right: auto;
}
.gray-callout-section a {
  font-weight: bold;
}
.gray-callout-section .tel-link {
  color: #000;
}

.gray-callout-section.white-callout-section {
  background-color: #fff;
}

.side-by-side {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  max-width: 75rem;
}
.side-by-side > div {
  margin-bottom: 2.5rem;
}
@media (max-width: 47.9375rem) { 
  .side-by-side.center-on-mobile {
    text-align: center;
  }
}
.side-by-side ul {
  text-align: left;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.side-by-side .button:last-child {
  margin-top: 1.25rem;
}
@media (min-width: 48rem) {
  .side-by-side {
    text-align: left;
    display: flex;
  }
  .side-by-side > div {
    width: 50%;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .side-by-side ul {
    margin-left: 0;
  }
}
@media (min-width: 64rem) {
  .side-by-side {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
  .side-by-side > div {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.nav-bottom a.geo-phonenumber {
    font-weight: bold;
}
.nav-bottom > .row { /* fix for Industries menu dropdown */
    position: relative;
}
.ubermenu .ubermenu-image {
  width: 100%;
}


/* 

  Solutions

 */
 .page-top-padding {
    padding-top: 3.75rem;
 }
@media (min-width: 48rem) { 
  .page-top-padding {
    padding-top: 5rem;
  }
}
 .section--text-block {
  max-width: 52rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}
.section--text-block .title {
  margin-bottom: 1.25rem;
}
.section--text-block .button-row {
  text-align: center;
  margin-top: 2.5rem;
}
.section--text-block .feature-list { 
  margin: 2.5rem 0;
}
@media (min-width: 48rem) { 
  .section--text-block .feature-list {
    column-count: 2;
    padding-left: 4rem;
  }
  .section--text-block .feature-list li {
    padding-right: 2rem;
  }
}
ul.feature-list li {
  margin-bottom: 1rem;
}
ul.feature-list {
  font-weight: bold;
}

.underlined-banner-image {
  width: 100%;
  box-shadow: 0 0.625rem var(--primary);
}

.section-featured-equipment-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 3.75rem 2.5rem 5rem;
}
@media (min-width: 48rem) { 
  .section-featured-equipment-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.section-featured-equipment-item {
  margin-bottom: 2.5rem;
}
@media (min-width: 48rem) { 
  .section-featured-equipment-item {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}
.section-featured-equipment-item img {
  width: 17.5rem;
  margin-bottom: .5rem;
  height: auto;
}
.section-featured-equipment-item p {
  font-weight: bold;
  font-size: 1.125rem;
}
.section-featured-equipment-item p > a {
  text-decoration: none;
}


.two-up-line {
  max-width: 60rem;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 6.25rem;
}
@media (min-width: 48rem) {
  .two-up-line {
    margin-bottom: 6.25rem;
  }
}
.two-up-line > div {
  width: 100%;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  margin-bottom: 3.75rem;
}
@media (min-width: 48rem) {
  .two-up-line > div {
    width: 50%;
  }
}
.two-up-line .line {
  height: 0.125rem;
  width: 100%;
  background: var(--primary);
  margin-bottom: 1rem;
}

.section--download {
  text-align: center;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  margin-bottom: 5rem;
}
@media (min-width: 48rem) { 
  .section--download {
    margin-bottom: 7.5rem;
  }
}
.section--download .title {
  margin-bottom: 1.75rem;
}


.section--success-stories {
  margin: 5.625rem 2.5rem;
}
.section-success-stories-wrap {
  margin-top: 3.75rem;
}
.section-success-stories-item {
  margin-bottom: 3.75rem;
}
.section-success-stories-item img {
  height: auto;
}
.section--success-stories .title,
.section--success-stories .title a {
  font-weight: bold;
  font-size: 1.125rem;
  text-decoration: none;
  margin: .75rem 0 .5rem;
}
@media (min-width: 48rem) { 
  .section--success-stories {
    margin: 7.5rem 2.5rem 5rem;
  }
  .section-success-stories-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .section-success-stories-item {
    width: calc(50% - 2.5rem);
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }
}
@media (min-width: 64rem) { 
  .section-success-stories-item {
    width: calc(25% - 2.5rem);
  }
}

.section--dark-prefooter {
  background: url('../images/black-globe.svg') no-repeat bottom -9.375rem left -6.75rem #000;
  padding: 5rem 2.5rem;
  color: #fff;
}
@media (min-width: 48rem) { 
  .section--dark-prefooter {
    padding: 5rem;
  }
}
.section--dark-prefooter a:not(.button) {
  color: #fff;
}
.section-dark-prefooter-wrap {
  max-width: 46.875rem;
  margin-left: auto;
  margin-right: auto;
}
.section--dark-prefooter .section-title {
  text-align: center;
  border-bottom: 0.125rem solid var(--primary);
  padding-bottom: 1.25rem;
  margin-bottom: 1.875rem;
}
.section--dark-prefooter .section-feature-list {
  text-align: center;
  margin: 2.5rem 0;
}
.section--dark-prefooter .section-feature-list ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
}
.section--dark-prefooter .section-feature-list li {
  margin-bottom: .25rem;
}
@media (min-width: 48rem) { 
  .section--dark-prefooter .section-feature-list {
    display: flex;
  }
  .section--dark-prefooter .section-feature-list ul {
    width: 50%;
    margin-bottom: 0;
  }
}
.section--dark-prefooter .section-footer {
  text-align: center;
  margin-top: 5rem;
}
@media (min-width: 48rem) { 
  .section--dark-prefooter .section-footer {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    justify-content: center;
  }
  .section--dark-prefooter .section-footer .button {
    margin-left: 3rem;
  }
  .section-footer > * {
    margin-bottom: 0;
  }
}

/* 

  About

 */
.section--our-mission-about {
  padding: 5rem 2.5rem 2.5rem;
}
@media (min-width: 48rem) { 
  .section--our-mission-about {
    padding: 12rem 5rem;
  }
}
.section--our-mission.with-globe {
  background: url('../images/home-map.png') no-repeat center;
}
@media (max-width: 47.9375rem) { 
  .section--our-mission.with-globe {
    background-position: top left 20%;
    background-size: 210%;
  }
}

.section--our-mission-about p.lead {
  max-width: 62ch;
  text-align: left;
  margin: 3rem auto;
} 

.title_underline {
  text-align: center;
  border-bottom: 0.125rem solid var(--primary);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.section--contrained-image {
  max-width: 67.5rem;
  padding: 0 2.5rem;
  margin-left: auto;
  margin-right: auto;
}
.section--image-with-spiral {
  background: top center / 100% no-repeat url('../images/line-flair-bg.jpg?v3');
  padding: 0 2.5rem;
}
.section--image-with-spiral > img {
  margin: 0 auto;
  display: block;
}
@media (max-width: 47.9375rem) { 
  .section--image-with-spiral .section--text-block {
      padding: 0;
  }
}

.section--info-lines {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.section--info-lines .title {
  margin-bottom: 2rem;
}
.section--info-lines .info-lines p {
  margin-bottom: 2rem;
}
@media (min-width: 48rem) { 
  .section--info-lines .title {
    margin-bottom: 3rem;
  }
  .section--info-lines .info-lines {
    column-count: 2;
    column-gap: 5rem;
    max-width: 62.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.section--title-spacing .title {
  margin-bottom: 3.75rem;
}

.leadership-row {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  margin-bottom: 5rem;
}
@media (min-width: 48rem) { 
  .leadership-row {
    display: flex;
    max-width: 67.1875rem;
    margin-left: auto;
    margin-right: auto;
  }
  .leadership-row > div:nth-child(1) {
    width: 25%;
    max-width: 12.5rem;
  }
  .leadership-row > div:nth-child(2) {
    width: 75%;
    margin-left: 2.5rem;
  }
}
.leadership-row .line {
  height: 0.125rem;
  background: var(--primary);
  margin: 1.1rem 0 1.9rem;
}
@media (max-width: 47.9375rem) { 
  .leadership-row .name {
    margin-top: 1.75rem;
  }
  .leadership-row div:nth-child(1), .leadership-row .name, .leadership-row h4, .leadership-row .job-title {
    text-align: center;
  }
}
.section--prefooter-contact-cta {
  background: black;
  color: #fff;
  padding: 3.125rem 2.5rem 1.25rem;
  text-align: center;
}
.section--prefooter-contact-cta .title {
  margin-bottom: 2rem;
}
@media (min-width: 48rem) { 
  .section--prefooter-contact-cta {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .section--prefooter-contact-cta > .title,
  .section--prefooter-contact-cta > * {
      margin: 0 2rem;
  }
}
.section--prefooter-contact-cta a:not(.button) {
  color: #fff;
}

/* 

Contact Page

 */
 .section--contact-header {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
 }
.block-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 48rem) { 
  .block-menu {
    max-width: 34.5rem;
  }
}
@media (min-width: 64rem) { 
  .block-menu {
    flex-wrap: nowrap;
    max-width: 69.125rem;
  }
}
.block-menu .block-item {
  transition: 300ms ease background-color;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--offwhite);
  max-width: 260px;
  width: calc(100% - 1rem);
  height: 100px;
  color: #000;
  font-size: 1rem;
  font-weight: bold;
  margin: 0.5rem;
}
.block-menu .block-item:hover {
  background-color: var(--offwhite-hover);
}
.block-menu .block-item img {
  margin-right: .5rem;
}
.contact-form {
  max-width: 41.25rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  margin-bottom: 3.75rem;
}
.contact-form input[type="submit"] {
  width: 12.5rem;
  height: 3.75rem;
}
@media (min-width: 48rem) { 
  .contact-form > div {
    display: flex;
  }
  .contact-form label {
    width: 12.5rem;
    padding-right: 1.25rem;
  }
  .contact-form .g-recaptcha {
    margin-left: 9.375rem;
  }
}

.section--regional-contact {
  background: url('../images/home-map.png') no-repeat center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.section--regional-contact .title {
  margin-bottom: 2rem;
}
.regional-contact-list {
  column-count: 3;
  column-gap: 60px;
}
@media (max-width: 47.9375rem) { 
  .section--regional-contact {
    background-position: center left 20%;
    background-size: cover;
  }
  .regional-contact-list p {
    font-size: 0.75rem;
  }
}

.section--gray-footer-ctas {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  background: var(--offwhite);
}
.section--gray-footer-ctas > div {
  text-align: center;
  max-width: 28.75rem;
  margin: 0 auto;
}
.section--gray-footer-ctas p:last-of-type {
  margin-bottom: 1.5rem;
}
.section--gray-footer-ctas>div:not(:last-child):after {
  width: 17.5rem;
  height: 0.0625rem;
  background: #cecece;
  content: " ";
  display: block;
  margin: 3.125rem auto;
}

@media (min-width: 64rem) {
  .section--gray-footer-ctas {
    display: flex;
    justify-content: center;
  }
  .section--gray-footer-ctas>div {
    position: relative;
    width: 50%;
    margin-right: 1.875rem;
    margin-left: 1.875rem;
  }
  .section--gray-footer-ctas>div:not(:last-child):after {
    position: absolute;
    height: 125%;
    width: 0.0625rem;
    top: -12.5%;
    right: -1.875rem;
    margin: 0;
  }
}

/* 

  Locations

 */
.section--locations-header {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
} 
.section--locations-header .locations-form {
  max-width: 48rem;
  margin: 4rem auto 2.5rem;
}
.section--locations-header .locations-form .postfix-form {
  margin-bottom: .5rem;
}
.section--locations-map {
  position: relative;
}
.section--locations-map #map {
  min-height: 500px;
  max-height: 870px;
  height: 50vh;
}
.section--locations-map #overlay {
    padding: 1rem;
}
@media (min-width: 64rem) { 
  .section--locations-map #overlay {
    position: absolute;
    top: 9px;
    left: 9px;
    background: white;
    padding: 30px;
    height: calc(100% - 18px);
    max-height: 600px;
    width: 420px;
    margin: 0px;
    overflow: auto;
  }
}

.section--locations-map #results {
  border: 1px solid #aaa;
  padding: 1.5rem;
  max-width: 35rem;
  margin: 0 auto;
}
@media (min-width: 64rem) { 
   .section--locations-map #results {
    border: none;
    padding: 0;
  }
}

.location-result-item {
  display: flex;
}

.location-result-item:not(:last-child) {
  border-bottom: 1px solid #aaaaaa;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.location-result-item-left {
  width: 40%;
  margin-right: 30px;
}
@media (min-width: 48rem) { 
  .location-result-item-left {
    margin-right: 50px;
  }
}
.location-result-item .location-distance {
  font-size: 1.25rem;
  font-weight: bold;
}
@media (min-width: 48rem) { 
  .location-result-item .location-distance {
    font-size: 1.75rem;
  }
}
@media (min-width: 64rem) { 
  .location-result-item .location-distance {
    font-size: 1.5rem;
  }
}
.location-result-item-right {
  width: 60%;
}
.location-result-item p {
  margin-bottom: .25rem;
}

/* 

Utilities

 */
.offwhite-bg {
  background-color: var(--offwhite);
}

.small-padding-top {
  padding-top: 3.75rem;
}
@media (min-width: 48rem) { 
  .small-padding-top {
    padding-top: 5rem;
  }
}

.medium-padding-top {
  padding-top: 5rem;
}
@media (min-width: 48rem) { 
  .medium-padding-top {
    padding-top: 6.25rem;
  }
}
.large-padding-top {
  padding-top: 7.5rem;
}
@media (min-width: 48rem) { 
  .large-padding-top {
    padding-top: 8.75rem;
  }
}

.small-padding-bottom {
  padding-bottom: 3.75rem;
}
@media (min-width: 48rem) { 
  .small-padding-bottom {
    padding-bottom: 5rem;
  }
}

.medium-padding-bottom {
  padding-bottom: 5rem;
}
@media (min-width: 48rem) { 
  .medium-padding-bottom {
    padding-bottom: 6.25rem;
  }
}
.large-padding-bottom {
  padding-bottom: 7.5rem;
}
@media (min-width: 48rem) { 
  .large-padding-bottom {
    padding-bottom: 8.75rem;
  }
}

.small-margin-top {
  margin-top: 3.75rem;
}
@media (min-width: 48rem) { 
  .small-margin-top {
    margin-top: 5rem;
  }
}

.medium-margin-top {
  margin-top: 5rem;
}
@media (min-width: 48rem) { 
  .medium-margin-top {
    margin-top: 6.25rem;
  }
}
.large-margin-top {
  margin-top: 7.5rem;
}
@media (min-width: 48rem) { 
  .large-margin-top {
    margin-top: 8.75rem;
  }
}

.small-margin-bottom {
  margin-bottom: 3.75rem;
}
@media (min-width: 48rem) { 
  .small-margin-bottom {
    margin-bottom: 5rem;
  }
}

.medium-margin-bottom {
  margin-bottom: 5rem;
}
@media (min-width: 48rem) { 
  .medium-margin-bottom {
    margin-bottom: 6.25rem;
  }
}
.large-margin-bottom {
  margin-bottom: 7.5rem;
}
@media (min-width: 48rem) { 
  .large-margin-bottom {
    margin-bottom: 8.75rem;
  }
}
.banner.auto {
  height: auto;
  padding: 0;
}
.banner.auto h1 {
  margin: 1rem 0;
}
.blog_sidebar .widget-title {
  color: #000;
  background: none;
  font-size: 30px;
  font-family: 'Museo Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-transform: none;
  padding-left: 0;
}
.insights.banner,
section.insights {
    position: relative;
}
.insights.banner .container,
section.insights .container {
    max-width: 66.25rem !important;
    width: 100%;
}

.insights.banner .grid10,
section.insights .grid10 {
    width: 75%;
    padding-right: 2rem;
    margin: 0;
}
.insights.banner .grid5,
section.insights .grid5 {
    width: 25%;
    margin: 0;
}
section.insights .grid5 {
  padding-left: 2rem;
}
@media only screen and (max-width: 960px) {
	.insights.banner .grid10,
	section.insights .grid10,
	section.insights .grid5 {
			width: 100%;
			margin: 0;
      padding: 0 .5rem;
	}
}
.insights .wp-post-image {
  width: 100%;
  margin: 2rem 0 1rem;
}
.insights .figure .wp-post-image {
  margin: 0;
}
.insights .entry-content {
  margin-bottom: 6rem;
  border-bottom: 0;
}
.insights .entry-content p {
  margin-top: 1rem;
}
.insights .entry-content a.moretag {
  display: block;
  float: none !important;
}
.insights .figure {
  float: right;
  max-width: 50%;
  background: #EEE;
  padding: 1.5rem;
  margin-left: 3rem;
  margin-bottom: 2rem;
}
.paging-navigation {
    border-top: none;
}
.paging-navigation a:hover {
  border-top: none;
  border-bottom: 5px solid #222;
  text-decoration: none;
}
.paging-navigation .page-numbers.current{
  border-top: none;
  border-bottom: 5px solid #fed925;
}
.insights header.archive-header {
  position: static;
  padding: 1.25rem;
  margin-bottom: 2rem;
}
.insights .archive-title {
  margin-bottom: 0;
}

.cta-banner .osha-logos {
  margin-top: 2.5rem;
}
@media (min-width: 75rem) { 
  .cta-banner .osha-logos {
    margin-top: 3.75rem;
  }
}




.show-for-medium-up {
  display: none;
}
@media (min-width: 48rem) { 
  .show-for-medium-up {
    display: inline;
  }
}
.show-for-large-up {
  display: none;
}
@media (min-width: 64rem) { 
  .show-for-large-up {
    display: inline;
  }
}
.unbold {
  font-weight: normal;
}
.bmarg-60 {
  margin-bottom: 3.75rem;
}

/* Solutions Dropdown styling */
.nav-bottom__left nav.ubermenu .solutions-menu-item + .ubermenu-submenu.ubermenu-submenu-type-mega {
  padding: 50px 0 !important;
}
/* DEBUG ONLY - uncomment to keep dropdown visible * /
.nav-bottom__left nav.ubermenu .solutions-menu-item + .ubermenu-submenu {
  display: block; visibility: visible; opacity: 1; height: auto; max-height: none; margin-top: 0;
}
/**/
.nav-bottom__left .solutions-menu-item + .ubermenu-submenu > ul.ubermenu-row {
  margin-bottom: 30px;
  text-align: left;
}
.nav-bottom__left .solutions-menu-item + .ubermenu-submenu > ul.ubermenu-row > li.ubermenu-column {
  padding-right: 35px;
}
.nav-bottom__left .solutions-menu-item + .ubermenu-submenu > ul.ubermenu-row > li.ubermenu-item > a.ubermenu-target {
  font-weight: bold;
  font-size: 16px;
  padding-right: 0;
}
.nav-bottom__left .solutions-menu-item + .ubermenu-submenu > ul.ubermenu-row > li.ubermenu-item > a.ubermenu-target .ubermenu-target-text{
  border-bottom: 2px solid #fed925;
  display: block;
  padding: 5px 0;
}
.nav-bottom__left .solutions-menu-item + .ubermenu-submenu > ul.ubermenu-row > li.ubermenu-item > ul > li > a.ubermenu-target {
  font-size: 14px;
}

/* Tweak for extra long contact us for some regions (DE) */
@media screen and (max-width: 1310px) {
  .eu_region .nav-bottom__right .contact-button {
    width: 8rem;
    font-size: 12px;
    text-align: center;
  }
}
.eu-training-calendar table,th,td {
	border: solid 1px #eee;
  border-collapse: collapse;
  padding: 6px;
  font-size: 12px;
}
.eu-training-calendar th {
  text-align: left;
}
 
.eu-training-calendar th{
  background-color: #f9de42;
}

.section--right-aligned-banner .eu_training_logos div.training_logos {
  background-color: white; 
  padding: 10px; 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 10px; 
  grid-auto-rows: minmax(64px, auto); 
} 
.section--right-aligned-banner .eu_training_logos div.training_logos p {
  font-size: 10px;
  color: #333;
}

.training-flyers ul {
  list-style: none;
  padding-left: 0px;
}
.training-flyers li a {
  color: black; 
  text-decoration: underline; 
}
.eu-compliance-section ul {
  list-style: none;
  padding-left: 0px;
}
.eu-compliance-section li a {
  color: black; 
  text-decoration: underline; 
}
.locale_nl_BE .nav-bottom__right .contact-button {
  width: 10rem;
  font-size: 12px;
  text-align: center;
}
.locale_nl_NL .nav-bottom__right .contact-button {
  width: 9rem;
  font-size: 12px;
  text-align: center;
}
.home-section--video-overlay .container video {
  width: 100%;
  height: 100%;
}

#intl-confirm-modal {
  display: none;
  position:absolute;
  bottom: 0px;
  right: 0px;
  background-color: white;
  padding: 10px;
  margin-bottom: 2.5rem;
}

@media print {
  .no-print, .no-print * {
    display: none !important;
  }

  body {
   margin-top: 10mm !important;
  }
}
.template-solutions-abbr-header h1 {
  margin-bottom: 55px;
}
.template-solutions-abbr-header .button-row {
  margin-top: 50px;
  margin-bottom: 40px;
}
.template-solutions-abbr-header .image-container {
  margin-bottom: 66px;
}

@media (min-width: 64rem) { 
  .template-solutions-abbr-header h1.title, 
  .template-solutions-header h1.title,
  .template-training-header h1.title {
    font-size: 4rem;
  }
}

.faq-section .accordion {
  border: 1px solid #e0e0e0;
  list-style-type: none;
  padding-left: 0;
  margin-top: 25px;
}
.faq-section .accordion .accordion-navigation:not(:first-child) {
  border-top: 1px solid #e0e0e0;
}
.faq-section .accordion .accordion-navigation > input {
  display: none;
}
.faq-section .accordion .accordion-navigation > label {
  display: block;
  position: relative; 
  padding: 1rem 2.6rem 1rem 1rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: ease .5s;
}
@media (min-width: 64rem) { 
  .faq-section .accordion .accordion-navigation > label {
    font-size: 1.1rem;
  }
}
.faq-section .accordion .accordion-navigation > label::before {
  position: absolute;
  content: '';
  border-right: 2px solid #222;
  border-top: 2px solid #222;
  width: 10px;
  height: 10px;
  display: inline-block;
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  top: 1.3rem;
  right: 1rem;
}
.faq-section .accordion .accordion-navigation > input:checked + label::before {
  transform: rotate(-45deg);
  top: 1.6rem;
}
.faq-section .accordion .accordion-navigation > .content {
  padding: 0.7rem 1rem;
}
.faq-section .accordion .accordion-navigation > input + label + .content {
  display: none;
}
.faq-section .accordion .accordion-navigation > input:checked + label + .content {
  display: block;
}
@media (min-width: 64rem) { 
  .faq-section h3.faq-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 1200px) {
  .ubermenu .ubermenu-item-layout-image_above > .ubermenu-image {
    display: none;
  }
}