@charset "UTF-8";
/* COLORS */
:root {
  --orange: #ff5003;
  --red: #e1251b;
  --blue: #222B59;
  --bordergray: #CDCDCD;
  --lightgray: #f2f2f2; /* Background Color */
  --gray: #dddddd; /* Border Color */
  --darkgray: #666666;
  --black: #262626;
  --jetblack: #000000;
  --white: #ffffff;
}

/* Background Color */
/* Border Color */
.color--orange, .text-orange {
  color: var(--orange);
}

.color--red, .text-red {
  color: var(--red);
}

.color--blue, .text-blue {
  color: var(--blue);
}

.color--white, .text-white {
  color: var(--white);
}

.color--darkgray, .text-darkgray {
  color: var(--darkgray);
}

.color--black, .text-black {
  color: var(--black);
}

.bgc--red {
  background-color: var(--red);
}

.bgc--orange {
  background-color: var(--orange);
}

.bgc--white {
  background-color: var(--white);
}

.bgc--lightgray {
  background-color: var(--lightgray);
}

.bgc--gray {
  background-color: var(--gray);
}

.bgc--darkgray {
  background-color: var(--darkgray);
}

.bgc--black {
  background-color: var(--black);
}

.bgc--blue {
  background-color: var(--blue);
}

:root {
  --unitedHI: UnitedSans, Arial Narrow, Arial, sans-serif;
  --unitedCB: UnitedSansCB, Arial Narrow, Arial, sans-serif;
  --medium: Gilroy-Medium, Arial, sans-serif;
  --xbold: Gilroy-ExtraBold, Arial Black, Arial Bold, Arial, sans-serif;
  --italic: Gilroy-ExtraBoldItalic, Arial Black, Arial Bold, Arial, sans-serif;
  /* Base size */
  --base-font-size: 10px;
  /* Adjust as needed for desired base size */
  /* Major Third type scale */
  --type-scale: 1.25;
  /* 10 */
  --xs: var(--base-font-size);
  /* 12.5 */
  --sm: calc(var(--xs) * var(--type-scale));
  /* 15.625 */
  --md: calc(var(--sm) * var(--type-scale));
  /* 19.53125 */
  --lg: calc(var(--md) * var(--type-scale));
  /* 24.4140625 */
  --xl: calc(var(--lg) * var(--type-scale));
  /* 30.517578125 */
  --2xl: calc(var(--xl) * var(--type-scale));
  /* 38.1469726562 */
  --3xl: calc(var(--2xl) * var(--type-scale));
  /* 47.6837158202 */
  --4xl: calc(var(--3xl) * var(--type-scale));
  /* 59.6046447752 */
  --5xl: calc(var(--4xl) * var(--type-scale));
  /* 74.505805969 */
  --6xl: calc(var(--5xl) * var(--type-scale));
  /* 93.1322574612 */
  --7xl: calc(var(--6xl) * var(--type-scale));
  /* Add more as needed */
}

@font-face {
  font-family: "UnitedSans";
  src: url("../fonts/United/UnitedItalicCdHv.woff2") format("woff2"), url("../fonts/United/UnitedItalicCdHv.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  font-display: swap;
}
@font-face {
  font-family: "UnitedSansCB";
  src: url("../fonts/United/UnitedSansCdBd.woff2") format("woff2"), url("../fonts/United/UnitedSansCdBd.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
}
@font-face {
  font-family: "Gilroy-ExtraBoldItalic";
  src: url("../fonts/GilroyExtraBoldItalic/font.woff2") format("woff2"), url("../fonts/GilroyExtraBoldItalic/font.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Gilroy-ExtraBold";
  src: url("../fonts/GilroyExtraBold/font.woff2") format("woff2"), url("../fonts/GilroyExtraBold/font.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Gilroy-Medium";
  src: url("../fonts/GilroyMedium/font.woff2") format("woff2"), url("../fonts/GilroyMedium/font.woff") format("woff");
  font-display: swap;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-size: 62.5%;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-family: Gilroy-Medium, Arial, sans-serif;
  font-weight: normal;
  color: #262626;
}

body {
  margin: 0;
  padding: 0;
}

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

section,
main {
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: inherit;
  font-weight: normal;
}

p {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-family: Gilroy-Medium, Arial, sans-serif;
  font-weight: normal;
}

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

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

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

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

:focus {
  outline: 0;
}

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

ol.stripped, ul.stripped {
  margin: 0;
  padding: 0;
}
ol.stripped li, ul.stripped li {
  list-style-type: none;
}

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

.body-fixed {
  overflow: hidden;
}

.fill, section.aitw-video figure::after, .not-typical .slideshow .image figure::before, .bg-container .noise, .bg-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cover {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: none;
  display: flex;
  height: 100%;
  width: 100%;
}
.cover.left-top {
  -o-object-position: 0 0;
     object-position: 0 0;
}
.cover.left-center {
  -o-object-position: 0 50%;
     object-position: 0 50%;
}
.cover.left-bottom {
  -o-object-position: 0 100%;
     object-position: 0 100%;
}
.cover.center-top {
  -o-object-position: 50% 0;
     object-position: 50% 0;
}
.cover.center-center {
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.cover.center-bottom {
  -o-object-position: 50% 100%;
     object-position: 50% 100%;
}
.cover.right-top {
  -o-object-position: 100% 0;
     object-position: 100% 0;
}
.cover.right-center {
  -o-object-position: 100% 50%;
     object-position: 100% 50%;
}
.cover.right-bottom {
  -o-object-position: 100% 100%;
     object-position: 100% 100%;
}

.btn {
  font-family: Gilroy-ExtraBold, Arial Black, Arial Bold, Arial, sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  border-radius: 0.4rem;
  padding: 1.5rem 3rem;
  color: #ffffff;
  background-color: #ff5003;
  margin: 0;
  display: inline-block;
  transition: 0.3s ease-in-out;
}
.btn:hover {
  background-color: rgb(232.5, 71.0416666667, 0);
}
.btn.small {
  font-size: 1.4rem;
  padding: 1rem 2.5rem;
}
.btn.btn-white {
  background-color: #ffffff;
  color: #262626;
}
.btn.btn-white.ghost {
  border: 1px solid #ffffff;
  color: #ffffff;
  background-color: transparent;
}
.btn.btn--orange.ghost {
  padding: 1.3rem 3rem;
  border: 2px solid #ff5003;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.6);
}
.btn.btn--orange.ghost.small {
  padding: 0.8rem 2.5rem;
}
.btn.btn--orange.ghost.pad {
  padding: 0.9rem 3rem;
}
.btn.btn--orange.ghost:hover {
  background-color: #ff5003;
}
.btn.btn--red {
  background: #e1251b;
  color: #ffffff;
}
.btn.btn--red:hover {
  background: rgb(202.2321428571, 33.255952381, 24.2678571429);
}

input[type=submit] {
  padding: 0 2rem;
  font-family: Gilroy-ExtraBold, Arial Black, Arial Bold, Arial, sans-serif;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 0 0.4rem 0.4rem 0;
  border: none;
  outline: none;
  background-color: #ff5003;
  transition: 0.15s ease-in-out;
  margin: 0;
}
@media (min-width: 360px) {
  input[type=submit] {
    padding: 0 4rem;
  }
}
input[type=submit]:hover {
  background-color: rgb(232.5, 71.0416666667, 0);
}

#form {
  margin-top: 2rem;
}
#form p {
  font-family: Gilroy-ExtraBoldItalic, Arial Black, Arial Bold, Arial, sans-serif;
  font-size: 1.8rem;
  line-height: 1.22;
  color: #262626;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
#form .hs-form-radio-display span {
  padding-left: 6px;
}
#form .hs-fieldtype-radio label {
  font-weight: normal;
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: initial;
  margin-bottom: 1rem;
}
#form .hs-fieldtype-radio ul {
  margin: 0;
  padding: 0;
}
#form .hs-fieldtype-radio ul li {
  list-style-type: none;
}
#form .hs-fieldtype-radio .hs-input {
  margin: 0 0.3rem 0 0;
}
#form .inputs-list {
  padding-left: 0;
}
#form fieldset, #form input {
  max-width: 100%;
}
#form label {
  font-family: Gilroy-ExtraBold, Arial Black, Arial Bold, Arial, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
  color: #262626;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
}
#form label .hs-form-required {
  color: #e1251b;
}
#form .field {
  margin-bottom: 2rem;
}
#form .hs-input {
  border: 1px solid rgb(208.25, 208.25, 208.25);
  border-radius: 0.4rem;
}
@media (max-width: 640px) {
  #form .input, #form input {
    margin-right: 0;
  }
}
@media (max-width: 640px) {
  #form fieldset.form-columns-2 .hs-form-field {
    width: 100%;
  }
}
#form .hs-fieldtype-text .input, #form .hs-fieldtype-phonenumber .input {
  height: 4rem;
  padding: 0;
}
#form .hs-fieldtype-text .input input, #form .hs-fieldtype-phonenumber .input input {
  height: 100%;
  padding: 0 1rem;
}
#form .hs-fieldtype-text input, #form .hs-fieldtype-phonenumber input {
  font-family: Gilroy-Medium, Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
  color: #262626;
  padding: 0 2rem;
  width: 100% !important;
  box-sizing: border-box !important;
  box-shadow: none;
}
#form .hs-fieldtype-text input::-webkit-input-placeholder, #form .hs-fieldtype-phonenumber input::-webkit-input-placeholder {
  color: #666666;
}

#form .hs-fieldtype-text input:-moz-placeholder, #form .hs-fieldtype-phonenumber input:-moz-placeholder {
  color: #666666;
}

#form .hs-fieldtype-text input::-moz-placeholder, #form .hs-fieldtype-phonenumber input::-moz-placeholder {
  color: #666666;
}

#form .hs-fieldtype-text input:-ms-input-placeholder, #form .hs-fieldtype-phonenumber input:-ms-input-placeholder {
  color: #666666;
}

#form .freeform input, #form .freeform select {
  height: 4rem;
  line-height: 1;
  padding: 0 2rem;
}
#form .freeform input, #form .freeform textarea, #form .freeform select {
  color: #262626;
  border: 1px solid #dddddd;
  border-radius: 0.4rem;
  font-family: Gilroy-Medium, Arial, sans-serif;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}
#form .freeform input::-webkit-input-placeholder, #form .freeform textarea::-webkit-input-placeholder, #form .freeform select::-webkit-input-placeholder {
  color: #666666;
}

#form .freeform input:-moz-placeholder, #form .freeform textarea:-moz-placeholder, #form .freeform select:-moz-placeholder {
  color: #666666;
}

#form .freeform input::-moz-placeholder, #form .freeform textarea::-moz-placeholder, #form .freeform select::-moz-placeholder {
  color: #666666;
}

#form .freeform input:-ms-input-placeholder, #form .freeform textarea:-ms-input-placeholder, #form .freeform select:-ms-input-placeholder {
  color: #666666;
}

#form .freeform select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' overflow='visible' viewBox='0 0 19 11'%3E%3Cpath d='M17.5 1.5l-8 8-8-8' fill='none' stroke='%23232323' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10'/%3E%3C/svg%3E");
  background-repeat: no-repeat, repeat;
  background-position: right 2rem top 50%, 0 0;
  background-size: 0.8em auto, 100%;
}
#form .freeform textarea {
  padding: 2rem;
}
#form .actions {
  margin-top: 0;
}
#form .hs-button, #form button[type=submit] {
  box-shadow: none;
  border: none;
  background: #ff5003;
  text-transform: uppercase;
  color: #ffffff;
  font-family: Gilroy-ExtraBold, Arial Black, Arial Bold, Arial, sans-serif;
  text-shadow: none;
  height: 50px;
  width: 245px;
  padding: 0;
  font-size: 1.5rem;
  border-radius: 0.4rem;
  margin-top: 3rem;
}
#form .error {
  border-color: #e1251b;
}
#form .hs-error-msgs {
  margin: 0;
  padding: 0;
}
#form .hs-error-msgs .hs-error-msg {
  font-family: Gilroy-Medium, Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
  margin: 0;
  padding: 0;
  text-transform: initial;
}

input[type=submit], button[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  white-space: nowrap;
}

.input-with-button {
  width: 90%;
  border-radius: 4px;
}
@media (min-width: 440px) {
  .input-with-button {
    width: 32rem;
  }
}
.input-with-button form {
  display: flex;
  height: 5.6rem;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.input-with-button form .input {
  height: 100%;
  flex-grow: 1;
  background: #ffffff;
}
.input-with-button form input[type=text] {
  font-family: Gilroy-ExtraBold, Arial Black, Arial Bold, Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1.1;
  letter-spacing: 0.06em;
  color: #262626;
  text-align: center;
  text-transform: uppercase;
  outline: none;
  border: none;
  height: 100%;
  width: 100%;
  padding: 0;
}
@media (min-width: 641px) {
  .input-with-button form input[type=text] {
    font-size: 1.7rem;
  }
}
.input-with-button form input[type=text]::-webkit-input-placeholder {
  color: #262626;
}

.input-with-button form input[type=text]:-moz-placeholder {
  color: #262626;
}

.input-with-button form input[type=text]::-moz-placeholder {
  color: #262626;
}

.input-with-button form input[type=text]:-ms-input-placeholder {
  color: #262626;
}

.input-with-button form input[type=text]:focus::-webkit-input-placeholder {
  color: transparent;
}

.input-with-button form input[type=text]:focus:-moz-placeholder {
  color: transparent;
}

.input-with-button form input[type=text]:focus::-moz-placeholder {
  color: transparent;
}

.input-with-button form input[type=text]:focus:-ms-input-placeholder {
  color: transparent;
}

.custom-select {
  display: block;
  font-size: 1.6rem;
  font-family: Gilroy-ExtraBold, Arial Black, Arial Bold, Arial, sans-serif;
  text-transform: uppercase;
  color: #262626;
  line-height: 1.3;
  padding: 1.4rem 1.6rem;
  width: 23rem;
  max-width: 23rem;
  margin: 0;
  border: 2px solid #ff5003;
  border-radius: 0.4rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' overflow='visible' viewBox='0 0 19 11'%3E%3Cpath d='M17.5 1.5l-8 8-8-8' fill='none' stroke='%23232323' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10'/%3E%3C/svg%3E");
  background-repeat: no-repeat, repeat;
  background-position: right 1.6rem top 50%, 0 0;
  background-size: 1em auto, 100%;
}
.custom-select::-ms-expand {
  display: none;
}
.custom-select:hover {
  border-color: #888;
}
.custom-select:focus {
  border-color: #aaa;
  box-shadow: 0 0 1px 3px rgba(59, 153, 252, 0.7);
  box-shadow: 0 0 0 3px -moz-mac-focusring;
  color: #222;
  outline: none;
}
.custom-select option {
  font-weight: normal;
}

.submitted-message {
  margin: 0 auto;
  padding: 5%;
  font-size: 1.7rem;
  border: 1px solid #ff5003;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 2px;
}

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

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

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

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

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

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

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

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

.fadeup-cascade > *:nth-child(1) {
  transition-delay: calc(1 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(2) {
  transition-delay: calc(2 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(3) {
  transition-delay: calc(3 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(4) {
  transition-delay: calc(4 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(5) {
  transition-delay: calc(5 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(6) {
  transition-delay: calc(6 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(7) {
  transition-delay: calc(7 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(8) {
  transition-delay: calc(8 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(9) {
  transition-delay: calc(9 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(10) {
  transition-delay: calc(10 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(11) {
  transition-delay: calc(11 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(12) {
  transition-delay: calc(12 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(13) {
  transition-delay: calc(13 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(14) {
  transition-delay: calc(14 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(15) {
  transition-delay: calc(15 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(16) {
  transition-delay: calc(16 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(17) {
  transition-delay: calc(17 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(18) {
  transition-delay: calc(18 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(19) {
  transition-delay: calc(19 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(20) {
  transition-delay: calc(20 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(21) {
  transition-delay: calc(21 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(22) {
  transition-delay: calc(22 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(23) {
  transition-delay: calc(23 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(24) {
  transition-delay: calc(24 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *.in-view:nth-child(1) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(2) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(3) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(4) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(5) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(6) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(7) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(8) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(9) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(10) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(11) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(12) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(13) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(14) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(15) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(16) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(17) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(18) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(19) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(20) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(21) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(22) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(23) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(24) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(1) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(2) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(3) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(4) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(5) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(6) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(7) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(8) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(9) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(10) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(11) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(12) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(13) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(14) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(15) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(16) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(17) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(18) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(19) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(20) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(21) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(22) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(23) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(24) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

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

.slideleft-cascade > *:nth-child(1) {
  transition-delay: calc(1 * 0.15s);
  transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(2) {
  transition-delay: calc(2 * 0.15s);
  transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(3) {
  transition-delay: calc(3 * 0.15s);
  transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(4) {
  transition-delay: calc(4 * 0.15s);
  transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(5) {
  transition-delay: calc(5 * 0.15s);
  transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(6) {
  transition-delay: calc(6 * 0.15s);
  transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(7) {
  transition-delay: calc(7 * 0.15s);
  transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(8) {
  transition-delay: calc(8 * 0.15s);
  transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(9) {
  transition-delay: calc(9 * 0.15s);
  transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(10) {
  transition-delay: calc(10 * 0.15s);
  transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(11) {
  transition-delay: calc(11 * 0.15s);
  transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(12) {
  transition-delay: calc(12 * 0.15s);
  transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(13) {
  transition-delay: calc(13 * 0.15s);
  transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(14) {
  transition-delay: calc(14 * 0.15s);
  transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(15) {
  transition-delay: calc(15 * 0.15s);
  transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(16) {
  transition-delay: calc(16 * 0.15s);
  transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(17) {
  transition-delay: calc(17 * 0.15s);
  transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(18) {
  transition-delay: calc(18 * 0.15s);
  transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(19) {
  transition-delay: calc(19 * 0.15s);
  transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(20) {
  transition-delay: calc(20 * 0.15s);
  transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(21) {
  transition-delay: calc(21 * 0.15s);
  transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(22) {
  transition-delay: calc(22 * 0.15s);
  transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(23) {
  transition-delay: calc(23 * 0.15s);
  transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(24) {
  transition-delay: calc(24 * 0.15s);
  transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *.in-view:nth-child(1) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(2) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(3) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(4) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(5) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(6) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(7) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(8) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(9) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(10) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(11) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(12) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(13) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(14) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(15) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(16) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(17) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(18) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(19) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(20) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(21) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(22) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(23) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(24) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(1) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(2) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(3) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(4) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(5) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(6) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(7) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(8) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(9) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(10) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(11) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(12) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(13) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(14) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(15) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(16) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(17) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(18) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(19) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(20) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(21) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(22) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(23) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(24) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.slideright {
  opacity: 0;
  transition-duration: 1s;
  transform: translate3d(0, 8%, 0);
}
.slideright.in-view {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: none;
}
@media (min-width: 641px) {
  .slideright {
    transform: translate3d(-20px, 0, 0);
  }
  .slideright.in-view {
    transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.slideright-cascade > *:nth-child(1) {
  transition-delay: calc(1 * 0.15s);
  transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(2) {
  transition-delay: calc(2 * 0.15s);
  transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(3) {
  transition-delay: calc(3 * 0.15s);
  transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(4) {
  transition-delay: calc(4 * 0.15s);
  transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(5) {
  transition-delay: calc(5 * 0.15s);
  transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(6) {
  transition-delay: calc(6 * 0.15s);
  transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(7) {
  transition-delay: calc(7 * 0.15s);
  transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(8) {
  transition-delay: calc(8 * 0.15s);
  transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(9) {
  transition-delay: calc(9 * 0.15s);
  transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(10) {
  transition-delay: calc(10 * 0.15s);
  transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(11) {
  transition-delay: calc(11 * 0.15s);
  transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(12) {
  transition-delay: calc(12 * 0.15s);
  transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(13) {
  transition-delay: calc(13 * 0.15s);
  transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(14) {
  transition-delay: calc(14 * 0.15s);
  transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(15) {
  transition-delay: calc(15 * 0.15s);
  transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(16) {
  transition-delay: calc(16 * 0.15s);
  transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(17) {
  transition-delay: calc(17 * 0.15s);
  transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(18) {
  transition-delay: calc(18 * 0.15s);
  transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(19) {
  transition-delay: calc(19 * 0.15s);
  transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(20) {
  transition-delay: calc(20 * 0.15s);
  transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(21) {
  transition-delay: calc(21 * 0.15s);
  transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(22) {
  transition-delay: calc(22 * 0.15s);
  transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(23) {
  transition-delay: calc(23 * 0.15s);
  transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(24) {
  transition-delay: calc(24 * 0.15s);
  transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *.in-view:nth-child(1) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(2) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(3) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(4) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(5) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(6) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(7) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(8) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(9) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(10) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(11) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(12) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(13) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(14) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(15) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(16) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(17) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(18) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(19) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(20) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(21) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(22) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(23) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(24) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(1) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(2) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(3) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(4) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(5) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(6) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(7) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(8) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(9) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(10) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(11) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(12) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(13) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(14) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(15) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(16) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(17) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(18) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(19) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(20) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(21) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(22) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(23) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(24) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

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

.flipup {
  opacity: 0;
  -webkit-transform: perspective(500) rotateX(7deg) translate3d(0, 8%, 0);
}
.flipup.in-view {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  transition-duration: 1s;
  opacity: 1;
  -webkit-transform: perspective(0) rotateX(0deg) translate3d(0, 0, 0);
}

.flipleft {
  opacity: 0;
  -webkit-transform: perspective(500) rotateY(7deg) translate3d(20px, 0, 0);
}
.flipleft.in-view {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  transition-duration: 1s;
  opacity: 1;
  -webkit-transform: perspective(0) rotateX(0deg) translate3d(0, 0, 0);
}

.flipright {
  opacity: 0;
  -webkit-transform: perspective(500) rotateY(-7deg) translate3d(-20px, 0, 0);
}
.flipright.in-view {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  transition-duration: 1s;
  opacity: 1;
  -webkit-transform: perspective(0) rotateX(0deg) translate3d(0, 0, 0);
}

:root {
  --subnav-height: 0px;
}

.no-scroll {
  overflow: hidden;
}

.cd-morph-dropdown {
  position: absolute;
  width: 100%;
  height: 70px;
  z-index: 100;
}
.cd-morph-dropdown.transparent::after {
  background-image: none;
}
.cd-morph-dropdown::after {
  content: "";
  position: absolute;
  height: 14rem;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 15%, rgba(0, 0, 0, 0) 100%);
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  max-width: 190rem;
  width: 100%;
  pointer-events: none;
}
.cd-morph-dropdown::before {
  /* never visible - used in JS to check mq */
  content: "mobile";
  display: none;
}
.cd-morph-dropdown.transparent:not(.nav-open) .nav-trigger span, .cd-morph-dropdown.transparent:not(.nav-open) .nav-trigger span::after, .cd-morph-dropdown.transparent:not(.nav-open) .nav-trigger span::before {
  background-color: var(--black);
}
.cd-morph-dropdown .nav-trigger {
  /* menu icon - visible on small screens only */
  position: relative;
  top: -2px;
  height: 18px;
  width: 26px;
  /* replace text with icon */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent !important;
  display: block;
}
.cd-morph-dropdown .nav-trigger span, .cd-morph-dropdown .nav-trigger span::after, .cd-morph-dropdown .nav-trigger span::before {
  /* these are the 3 lines of the menu icon */
  position: absolute;
  background-color: #ffffff;
  height: 0.15rem;
  width: 26px;
}
.cd-morph-dropdown .nav-trigger span {
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  transform: translateX(-50%) translateY(-50%);
  transition: background-color 0.3s;
}
.cd-morph-dropdown .nav-trigger span::after, .cd-morph-dropdown .nav-trigger span::before {
  content: "";
  left: 0;
  transition: transform 0.3s;
}
.cd-morph-dropdown .nav-trigger span::before {
  transform: translateY(-7px);
}
.cd-morph-dropdown .nav-trigger span::after {
  transform: translateY(7px);
}
.cd-morph-dropdown .logo {
  display: block;
  width: 100%;
  margin-top: 6rem;
  max-width: 10rem;
}
@media (min-width: 641px) {
  .cd-morph-dropdown .logo {
    margin-top: 8rem;
    max-width: 12rem;
  }
}
@media (min-width: 1240px) {
  .cd-morph-dropdown .logo {
    margin-top: 4rem;
    max-width: 16rem;
  }
}
.cd-morph-dropdown .logo svg {
  display: block;
  width: 100%;
}
.cd-morph-dropdown.nav-open .nav-trigger span {
  background-color: transparent;
}
.cd-morph-dropdown.nav-open .nav-trigger span::before {
  transform: rotate(45deg);
}
.cd-morph-dropdown.nav-open .nav-trigger span::after {
  transform: rotate(-45deg);
}
.cd-morph-dropdown.on-light-bg .nav-trigger span, .cd-morph-dropdown.on-light-bg .nav-trigger span::after, .cd-morph-dropdown.on-light-bg .nav-trigger span::before {
  background-color: #ff5003;
}
.cd-morph-dropdown.on-light-bg.nav-open .nav-trigger span::after, .cd-morph-dropdown.on-light-bg.nav-open .nav-trigger span::before {
  background-color: #ffffff;
}
.cd-morph-dropdown.on-light-bg .recruiter.drivers span {
  color: var(--black);
}
.cd-morph-dropdown .main-nav {
  position: relative;
  z-index: 10;
}
@media (min-width: 1240px) {
  .cd-morph-dropdown .main-nav {
    margin-top: 2rem;
  }
}
.cd-morph-dropdown .main-nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 5%;
  margin: 0;
}
.cd-morph-dropdown .main-nav ul .driver-careers-btn {
  position: absolute;
  top: 1.7rem;
  right: calc(5% + 4rem);
  font-size: 1.2rem;
  padding: 1rem;
}
@media (min-width: 1240px) {
  .cd-morph-dropdown .main-nav ul .driver-careers-btn {
    display: none;
  }
}
.cd-morph-dropdown .main-nav li {
  display: none;
}
.cd-morph-dropdown .main-nav li:first-child, .cd-morph-dropdown .main-nav li:last-child {
  display: block;
}
.cd-morph-dropdown .morph-dropdown-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  transform: translateX(120%) rotate(6deg) scale(1.1);
  box-shadow: inset 0 1px 0 rgb(229.5, 229.5, 229.5);
  background-color: white;
  transition: 0.5s ease;
}
@media (min-width: 1240px) {
  .cd-morph-dropdown .morph-dropdown-wrapper {
    z-index: 2;
  }
}
@media (min-width: 1240px) {
  .cd-morph-dropdown .morph-dropdown-wrapper {
    top: 0;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    transform: translateY(100%);
  }
}
.cd-morph-dropdown.nav-open .morph-dropdown-wrapper {
  transform: translateX(0) rotate(0deg) scale(1);
}
.cd-morph-dropdown .dropdown-list {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: auto;
  padding-top: 12rem;
  padding-bottom: 10rem;
  background: transparent;
  padding-right: 2rem;
}
@media (min-width: 1240px) {
  .cd-morph-dropdown .dropdown-list {
    padding-right: 0;
    background: white;
    padding-bottom: 0;
  }
}
.cd-morph-dropdown .dropdown-list > ul {
  flex: 1;
}
.cd-morph-dropdown .bg-container {
  background-color: #ff5003;
  transform-origin: center center;
}
.cd-morph-dropdown.nav-open .dropdown-list .bg-container {
  visibility: visible;
  transform: scale(1);
  opacity: 1;
  transition-delay: 0.3s;
  transition: 1.3s;
}
.cd-morph-dropdown.nav-open .morph-dropdown-wrapper {
  display: block;
  transform: translateY(0);
}
.cd-morph-dropdown .dropdown.open-content .content {
  margin-top: 0;
}
.cd-morph-dropdown .dropdown.open-content .toggle {
  transform: rotate(-90deg);
}
.cd-morph-dropdown .nav-label {
  display: block;
  font-size: 1.5rem;
  color: #262626;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  padding-left: 5%;
  padding-right: 5%;
  font-family: Gilroy-ExtraBoldItalic, Arial Black, Arial Bold, Arial, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  justify-content: flex-end;
}
.cd-morph-dropdown .nav-label.pad-top-mobile {
  margin-top: 2rem !important;
}
@media (min-width: 1240px) {
  .cd-morph-dropdown .nav-label.pad-top-mobile {
    margin-top: 0;
  }
}
.cd-morph-dropdown .nav-label a {
  color: #ff5003;
}
.cd-morph-dropdown .nav-label p {
  font-size: 2rem;
}
.cd-morph-dropdown .nav-label p a {
  color: #ff5003;
}
@media (min-width: 1240px) {
  .cd-morph-dropdown .nav-label {
    font-family: Gilroy-ExtraBold, Arial Black, Arial Bold, Arial, sans-serif;
    color: #ff5003;
    font-size: 2rem;
  }
}
.cd-morph-dropdown .subnav-link {
  text-align: right;
}
.cd-morph-dropdown .subnav-link.hide-mobile {
  display: none;
}
@media (min-width: 1240px) {
  .cd-morph-dropdown .subnav-link.hide-mobile {
    display: block;
  }
}
.cd-morph-dropdown .subnav-link.show-mobile {
  display: block;
}
@media (min-width: 1240px) {
  .cd-morph-dropdown .subnav-link.show-mobile {
    display: none;
  }
}
.cd-morph-dropdown .subnav-link a {
  font-family: var(--xbold);
  font-size: 3rem;
  line-height: 0.9;
  color: #ffffff;
  margin-bottom: 0.3em;
}
@media (min-width: 1240px) {
  .cd-morph-dropdown .subnav-link a {
    font-family: Gilroy-Medium, Arial, sans-serif;
    font-size: 1.4rem;
  }
}
.cd-morph-dropdown .subnav-link a.small {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 0.5em;
}
.cd-morph-dropdown .subnav-link a.phone {
  font-size: 3rem;
}
.cd-morph-dropdown .subnav-link .transpo-contact span, .cd-morph-dropdown .subnav-link .recruiter span {
  display: block;
  margin-bottom: 1em;
}
.cd-morph-dropdown .subnav-link .transpo-contact.pt1, .cd-morph-dropdown .subnav-link .recruiter.pt1 {
  padding-top: 1rem;
}
@media (max-width: 1238px) {
  .cd-morph-dropdown .dropdown {
    padding-bottom: 2rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}
.cd-morph-dropdown .dropdown .nav-label {
  display: flex;
  margin-top: 0;
}
.cd-morph-dropdown .content {
  transition: 0.5s ease;
  padding: 0;
  text-align: right;
}
@media (min-width: 1240px) {
  .cd-morph-dropdown .content.hide-desktop {
    display: none;
  }
}
.cd-morph-dropdown ul {
  list-style: none;
}
.cd-morph-dropdown .links-list {
  padding: 1rem 0 0;
}
.cd-morph-dropdown .links .content > ul > li {
  margin-top: 0.25em;
}
.cd-morph-dropdown .btn {
  text-align: center;
}
.cd-morph-dropdown .links-list a {
  padding: 0 5%;
  display: inline-block;
  text-transform: uppercase;
}
@media (min-width: 641px) {
  .cd-morph-dropdown .links-list a {
    margin-left: 1rem;
  }
}
@media (min-width: 1175px) {
  .cd-morph-dropdown .links-list a {
    letter-spacing: 0;
    margin-left: 1.5rem;
    padding: 0 0.25rem;
    text-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.6);
  }
}
@media (min-width: 1100px) {
  .cd-morph-dropdown .links-list a {
    margin-left: 3rem;
  }
}
@media (min-width: 1400px) {
  .cd-morph-dropdown .links-list a {
    margin-left: 4rem;
    padding: 0 1rem;
  }
}
.cd-morph-dropdown .recruiter {
  padding-top: 3rem;
}
.cd-morph-dropdown .recruiter br {
  display: none;
}
.cd-morph-dropdown .recruiter span {
  padding-right: 5%;
  padding-left: 5%;
  font-family: Gilroy-ExtraBoldItalic, Arial Black, Arial Bold, Arial, sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #262626;
  display: block;
  text-align: right;
  line-height: 1;
  position: relative;
  top: 2px;
}
@media (min-width: 1175px) {
  .cd-morph-dropdown .recruiter span {
    font-size: 1.3rem;
    margin-right: 1rem;
  }
}
.cd-morph-dropdown .recruiter a {
  font-size: 3.4rem;
  font-family: Gilroy-ExtraBoldItalic, Arial Black, Arial Bold, Arial, sans-serif;
}
.cd-morph-dropdown a.apply-now {
  font-size: 2.4rem;
}
.cd-morph-dropdown .bg-layer {
  display: none;
}
@media (min-width: 1240px) {
  .cd-morph-dropdown {
    position: absolute;
    height: 110px;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0;
    text-align: center;
    display: flex;
    align-items: center;
  }
  .cd-morph-dropdown::before {
    content: "desktop";
  }
  .cd-morph-dropdown .nav-trigger {
    display: none;
  }
  .cd-morph-dropdown .has-dropdown {
    cursor: context-menu;
  }
  .cd-morph-dropdown .main-nav {
    display: inline-block;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    background-color: transparent;
  }
  .cd-morph-dropdown .main-nav ul {
    display: flex;
    justify-content: flex-end;
  }
  .cd-morph-dropdown .main-nav > ul {
    padding: 0 2.5%;
  }
  .cd-morph-dropdown .main-nav li {
    display: block;
  }
  .cd-morph-dropdown .main-nav li:first-child a {
    padding-left: 0;
    padding-right: 3rem;
  }
  .cd-morph-dropdown .main-nav li:last-child {
    display: none;
  }
  .cd-morph-dropdown .main-nav li.push-right {
    margin-left: auto;
  }
  .cd-morph-dropdown.transparent .main-nav > ul > li > .parent-link {
    color: var(--black);
    text-shadow: none;
  }
  .cd-morph-dropdown .main-nav > ul > li > .parent-link {
    position: relative;
    text-align: left;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
    font-family: Gilroy-ExtraBold, Arial Black, Arial Bold, Arial, sans-serif;
    font-size: 1.4rem;
    padding-right: 2rem;
    padding-left: 2rem;
    text-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.6);
    display: block;
  }
  .nav-dark .cd-morph-dropdown .main-nav > ul > li > .parent-link {
    color: #ffffff;
    text-shadow: none;
  }
}
@media (min-width: 1240px) and (min-width: 641px) {
  .nav-dark .cd-morph-dropdown .main-nav > ul > li > .parent-link {
    color: #262626;
  }
}
@media (min-width: 1240px) {
  .cd-morph-dropdown .main-nav > ul > li > .parent-link:after {
    position: absolute;
    content: "";
    bottom: -6px;
    left: 50%;
    width: 0%;
    height: 2px;
    background-color: #ff5003;
    transform-origin: center center;
    transform: scaleX(0) translateX(-50%);
    transform-origin: center center;
    transition: 0.3s;
    opacity: 0;
  }
  .cd-morph-dropdown .main-nav > ul > li > .parent-link:hover:after {
    width: 50%;
    transform: scaleX(1) translateX(-50%);
    opacity: 1;
  }
}
@media (min-width: 1240px) and (min-width: 1240px) {
  .cd-morph-dropdown .main-nav > ul > li > .parent-link:hover:after {
    display: none;
  }
}
@media (min-width: 1240px) {
  .cd-morph-dropdown .subnav-link {
    text-align: left;
  }
  .cd-morph-dropdown .subnav-link a {
    color: #262626;
    text-shadow: none;
    font-family: Gilroy-ExtraBold, Arial Black, Arial Bold, Arial, sans-serif;
    text-transform: uppercase;
  }
  .cd-morph-dropdown.is-dropdown-visible .main-nav > ul > li > .parent-link {
    /* main navigation hover effect - on hover, reduce opacity of elements not hovered over */
    opacity: 0.6;
  }
  .cd-morph-dropdown.is-dropdown-visible .main-nav > ul > li.active > .parent-link {
    opacity: 1;
  }
  .cd-morph-dropdown .morph-dropdown-wrapper {
    /* dropdown wrapper - used to create the slide up/slide down effect when dropdown is revealed/hidden */
    display: block;
    position: absolute;
    top: 80px;
    /* overwrite mobile style */
    width: auto;
    padding: 0;
    box-shadow: none;
    background-color: transparent;
    /* Force Hardware acceleration */
    transform: translateZ(0);
    will-change: transform;
    transform: translateY(20px);
    transition: transform 0.3s;
  }
  .cd-morph-dropdown .morph-dropdown-wrapper .recruiter {
    display: none;
  }
  .cd-morph-dropdown .morph-dropdown-wrapper .btn {
    display: none;
  }
  .cd-morph-dropdown.is-dropdown-visible .morph-dropdown-wrapper {
    transform: translateY(0);
  }
  .cd-morph-dropdown .dropdown-list {
    position: absolute;
    top: 1.2rem;
    left: 0;
    visibility: hidden;
    overflow: visible;
    padding-top: 0;
    transform: translateZ(0);
    will-change: transform, width, height;
    transition: visibility 0.3s;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08), 28px 28px 28px rgba(0, 0, 0, 0.2);
  }
  .no-csstransitions .cd-morph-dropdown .dropdown-list {
    display: none;
  }
  .cd-morph-dropdown .dropdown-list::before {
    /* dropdown top triangle */
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    height: 0;
    width: 0;
    border: 8px solid transparent;
    border-bottom-color: white;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .cd-morph-dropdown .dropdown-list > ul {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    overflow: hidden;
    padding-left: 0;
  }
  .cd-morph-dropdown.is-dropdown-visible .dropdown-list {
    visibility: visible;
    transition: transform 0.3s, width 0.3s, height 0.3s;
  }
  .cd-morph-dropdown.is-dropdown-visible .dropdown-list::before {
    opacity: 1;
  }
  .cd-morph-dropdown .dropdown {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .cd-morph-dropdown .dropdown.active {
    opacity: 1;
    visibility: visible;
  }
  .cd-morph-dropdown .dropdown.move-left .content {
    transform: translateX(-100px);
  }
  .cd-morph-dropdown .dropdown.move-right .content {
    transform: translateX(100px);
  }
  .cd-morph-dropdown .dropdown .nav-label {
    display: none;
  }
  .cd-morph-dropdown .nav-label {
    /* hide the nav-label on bigger devices */
    display: none;
  }
  .cd-morph-dropdown .nav-label a {
    color: #ff5003;
  }
  .cd-morph-dropdown .nav-label.stick-bottom {
    display: none;
  }
  .cd-morph-dropdown .content {
    margin-top: 0;
    max-height: 100%;
    overflow: visible;
    transition: transform 0.3s;
    text-align: left;
  }
  .cd-morph-dropdown .content > ul > li {
    margin-top: 0;
  }
  .cd-morph-dropdown .content > ul > li:nth-of-type(2n) {
    margin-right: 0;
  }
  .cd-morph-dropdown .links .content {
    padding: 1.2rem 2rem 2.4rem;
  }
  .cd-morph-dropdown .links .content > ul > li {
    margin-top: 0;
    margin-bottom: 0;
  }
  .cd-morph-dropdown .links .content,
  .cd-morph-dropdown .button .content {
    width: 200px;
  }
  .cd-morph-dropdown .links-list {
    padding: 0;
  }
  .cd-morph-dropdown .links-list a {
    font-size: 1.6rem;
    margin-left: 0;
    padding: 0.7rem 0.6rem;
    transition: 0.25s ease;
    font-family: Gilroy-ExtraBold, Arial Black, Arial Bold, Arial, sans-serif;
  }
  .cd-morph-dropdown .links-list a:hover {
    color: #ff5003;
  }
  .cd-morph-dropdown .btn {
    display: flex;
    align-items: center;
    width: auto;
    font-size: 1.6rem;
    text-align: center;
    color: white;
    line-height: 1;
    background: #ff5003;
  }
  .cd-morph-dropdown .btn:hover {
    background: rgb(232.5, 71.0416666667, 0);
    color: white;
  }
  .cd-morph-dropdown .btn.ghost {
    white-space: nowrap;
  }
  .cd-morph-dropdown.on-light-bg .btn.ghost {
    color: #262626;
    background: transparent;
  }
  .cd-morph-dropdown.on-light-bg .btn.ghost:hover {
    background: var(--orange);
    color: var(--white);
  }
  .cd-morph-dropdown.on-light-bg .btn.ghost:hover .span {
    color: var(--white);
  }
  .cd-morph-dropdown .recruiter {
    margin-left: 1rem;
    display: block;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    text-align: right;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    margin-top: 0;
    transition: 0.6s;
    opacity: 0;
    transform: translateY(15px);
    align-items: center;
    text-align: left;
    border-top: 0;
    padding: 0;
    margin-top: 0;
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 1240px) and (min-width: 1400px) {
  .cd-morph-dropdown .recruiter {
    padding: 0 2rem 0 0;
    margin-left: 3rem;
  }
}
@media (min-width: 1240px) {
  .nav-open .cd-morph-dropdown .recruiter {
    opacity: 1;
    transform: translateY(0px);
    transition-delay: 0.8s;
  }
  .cd-morph-dropdown .recruiter a {
    font-size: 1.7rem;
    width: 18rem;
    display: block;
    padding: 0.9rem 3rem;
  }
  .cd-morph-dropdown .recruiter br {
    display: block;
  }
  .cd-morph-dropdown .recruiter span {
    font-family: Gilroy-ExtraBoldItalic, Arial Black, Arial Bold, Arial, sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
    line-height: 1;
    position: relative;
    top: 0;
    padding-right: 0;
    margin-right: 0;
  }
  .cd-morph-dropdown .content h2 {
    font-size: 1.8rem;
    text-transform: none;
    font-weight: normal;
    color: #ff5003;
    margin: 0 0 0.6em;
  }
  .cd-morph-dropdown .bg-layer {
    /* morph dropdown background */
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 1px;
    background: white;
    opacity: 0;
    transition: opacity 0.3s;
    transform-origin: top left;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
  }
  .cd-morph-dropdown .bg-layer .bg-container {
    background-color: #ffffff;
  }
  .cd-morph-dropdown .bg-layer .bg-container img {
    transform: scale(1.5);
  }
  .cd-morph-dropdown.is-dropdown-visible .bg-layer {
    opacity: 1;
    transition: transform 0.3s, opacity 0.3s;
  }
}

footer {
  position: relative;
  padding-top: 14rem;
  padding-left: 10%;
  padding-right: 10%;
}
@media (min-width: 641px) {
  footer {
    padding-left: 5%;
    padding-right: 5%;
  }
}
footer .container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
footer .brand {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: space-between;
  place-items: center;
  gap: 4rem;
  text-transform: uppercase;
  padding-bottom: 8.5rem;
}
@media (min-width: 800px) {
  footer .brand {
    grid-template-columns: 47.5rem 1fr;
  }
}
footer .brand .logo {
  width: 100%;
  max-width: 47rem;
}
footer .brand .tagline {
  display: flex;
  flex-direction: column;
  font-size: 4rem;
  text-align: center;
}
@media (min-width: 641px) {
  footer .brand .tagline {
    font-size: 4.8rem;
  }
}
@media (min-width: 1000px) {
  footer .brand .tagline {
    text-align: left;
  }
}
@media (min-width: 1150px) {
  footer .brand .tagline {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 0.48em;
  }
}
footer .brand .tagline div:first-child {
  font-family: var(--italic);
  font-size: 0.4em;
  position: relative;
  top: -4px;
}
footer .brand .tagline div:last-child {
  font-family: var(--unitedHI);
  font-size: 1em;
  line-height: 0.85;
}
footer .links-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 641px) {
  footer .links-container {
    flex-direction: row;
    gap: 0;
  }
}
footer .links-container .links-column:first-child {
  border-bottom: 1px solid var(--gray);
  padding-bottom: 3rem;
}
@media (min-width: 641px) {
  footer .links-container .links-column:first-child {
    padding-right: 10%;
    padding-bottom: 0;
    border-right: 1px solid var(--gray);
    border-bottom: none;
  }
}
@media (min-width: 641px) {
  footer .links-container .links-column:last-child {
    flex: 1;
    padding-left: 10%;
    max-width: calc(55rem + 10%);
  }
}
footer .links-container .links-column.careers .two-column {
  margin-bottom: 3rem;
}
@media (min-width: 641px) {
  footer .links-container .links-column.careers .two-column {
    margin-bottom: 5rem;
  }
}
footer .links-container .link-heading, footer .links-container .of-interest .be-label {
  font-family: var(--italic);
  color: var(--orange);
  font-size: 1.728rem;
  text-transform: uppercase;
  margin-bottom: 2.05em;
  padding-top: 1em;
}
footer .links-container .link-heading:not(:first-child), footer .links-container .of-interest .be-label:not(:first-child) {
  margin-top: 2rem;
  padding-top: 2em;
}
@media (min-width: 641px) {
  footer .links-container .link-heading:not(:first-child), footer .links-container .of-interest .be-label:not(:first-child) {
    margin-top: 4.5rem;
    border-top: 1px solid var(--gray);
  }
}
footer .links-container .links {
  max-width: 25rem;
  font-size: 2.2rem;
  text-transform: uppercase;
  font-family: var(--italic);
  display: grid;
  gap: 0.75em;
  line-height: 0.9em;
}
@media (min-width: 641px) {
  footer .links-container .links {
    font-size: 2.986rem;
  }
}
footer .links-container .links.inline {
  max-width: 100%;
  display: flex;
  font-size: 1.7rem;
  text-transform: none;
}
footer .links-container .links.inline a {
  display: inline-block;
}
@media (max-width: 640px) {
  footer .links-container .links {
    display: block;
    -moz-columns: auto 25rem;
         columns: auto 25rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
    max-width: 100%;
  }
  footer .links-container .links a {
    margin-bottom: 0.75em;
  }
}
footer .links-container .links.two-column {
  display: block;
  -moz-columns: auto 25rem;
       columns: auto 25rem;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  max-width: 100%;
}
footer .links-container .links.two-column a {
  margin-bottom: 0.75em;
}
footer .links-container .links a {
  display: block;
  font-size: 1em;
  text-decoration: underline;
  text-underline-offset: 1px;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
footer .links-container .links a:hover {
  color: var(--orange);
  text-decoration-color: var(--black);
}
footer .links-container .links .contact-links a {
  font-size: 1.7rem;
  text-transform: none;
  text-decoration: underline;
  text-decoration-color: var(--gray);
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}
@media (min-width: 641px) {
  footer .links-container .links .contact-links a {
    white-space: nowrap;
  }
}
footer .links-container .links .contact-links a:hover {
  color: var(--orange);
  text-decoration-color: var(--black);
}
footer .links-container .of-interest {
  padding-top: 5rem;
  margin-bottom: 3rem;
  border-top: 1px solid var(--gray);
}
footer .links-container .of-interest .be-label {
  margin-bottom: 1em;
  padding-top: 0;
}
footer .links-container .of-interest .be-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  gap: 1rem;
}
@media (min-width: 641px) {
  footer .links-container .of-interest .be-list {
    gap: 2rem;
  }
}
footer .links-container .of-interest .be-list a {
  text-decoration: underline;
  text-decoration-color: var(--gray);
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  line-height: 1.2;
}
@media (min-width: 641px) {
  footer .links-container .of-interest .be-list a {
    white-space: nowrap;
  }
}
footer .links-container .of-interest .be-list a:hover {
  color: var(--orange);
  text-decoration-color: var(--black);
}
footer .links-container .recruiter {
  font-size: 2.074rem;
  font-family: var(--italic);
  text-transform: uppercase;
  padding: 3rem 0;
  border-top: 1px solid var(--gray);
}
@media (min-width: 641px) {
  footer .links-container .recruiter {
    padding: 5rem 2rem;
  }
}
footer .links-container .recruiter a {
  white-space: nowrap;
}
footer .footer-bottom {
  padding-top: 6rem;
}
footer .logos {
  display: flex;
  gap: 0.22em;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 14rem;
}
@media (min-width: 641px) {
  footer .logos {
    font-size: 18rem;
  }
}
footer .logos::before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: var(--gray);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
footer .logos img {
  position: relative;
}
footer .flag {
  width: 1em;
}
footer .seal {
  height: 0.816em;
}
footer .footer-message p {
  padding: 0.85em;
  text-align: center;
  font-size: 2.8rem;
}
@media (min-width: 641px) {
  footer .footer-message p {
    font-size: 3.5rem;
  }
}
footer .social-legal {
  position: relative;
}
footer .social-legal .copyright {
  position: relative;
  z-index: 1;
  text-align: center;
}
@media (min-width: 768px) {
  footer .social-legal .copyright {
    text-align: right;
  }
}
footer .social-legal .social {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
  gap: 1rem 3rem;
}
@media (min-width: 768px) {
  footer .social-legal .social {
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
  }
}
footer .social-legal .social p {
  font-family: var(--italic);
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--black);
}
footer .social-legal .social .social-links {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}
footer .social-legal .social .social-links a {
  width: 3rem;
  height: 3rem;
}
footer .social-legal .legal {
  position: relative;
  z-index: 1;
}
footer .social-legal .legal .legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5em 2em;
  font-size: 1rem;
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  footer .social-legal .legal .legal-links {
    max-width: 50rem;
    margin-left: auto;
    justify-content: flex-end;
  }
}
footer .social-legal .legal a {
  font-size: 1.3em;
  color: var(--black);
}
footer .social-legal .legal a:hover {
  color: var(--orange);
}
footer .social-legal .copyright {
  font-family: var(--medium);
  font-size: 1.2rem;
  margin-right: 0;
  margin-top: 4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 2em;
}
@media (min-width: 1024px) {
  footer .social-legal .copyright {
    margin-left: auto;
    margin-top: 0;
  }
}
footer .graffiti {
  display: block;
  position: relative;
  left: -10%;
}
@media (min-width: 768px) {
  footer .graffiti {
    position: absolute;
    left: 0;
    max-width: 66rem;
    width: 100%;
    bottom: 0;
    transform: translateX(-40%);
  }
}
@media (min-width: 768px) and (min-width: 1024px) {
  footer .graffiti {
    transform: translateX(0);
  }
}

body {
  max-width: 1900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08), 0 3px 60px rgba(0, 0, 0, 0.16);
}

main {
  position: relative;
  overflow: hidden;
}

section {
  position: relative;
  padding-left: 5%;
  padding-right: 5%;
}

.heading2 {
  font-family: var(--italic);
  font-size: var(--3xl);
  margin-bottom: 2rem;
  line-height: 0.85;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
@media (min-width: 641px) {
  .heading2 {
    font-size: var(--5xl);
    margin-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  .heading2 {
    font-size: var(--6xl);
  }
}
.veteran-drivers .heading2 {
  color: var(--red);
}
.veteran-drivers .heading2 strong {
  color: var(--blue);
}
@media (min-width: 641px) {
  .heading2.medium {
    font-size: var(--5xl);
  }
}

.mast {
  padding-top: 13rem;
}

.container {
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-group {
  position: relative;
}

.bg-container .noise {
  background-image: url(../images/global/noise-pattern.svg);
  background-repeat: repeat;
  opacity: 0.08;
}
.bg-container img {
  opacity: 0.04;
}

.shadow, .card {
  box-shadow: 0 0.7rem 2rem 0 rgba(0, 0, 0, 0.2);
}

.glow, .btn {
  box-shadow: 0 0.7rem 2rem 0 rgba(255, 80, 3, 0.25);
}

.card {
  background-color: #ffffff;
}

.slick-dots {
  list-style-type: none;
}

.lowercase {
  text-transform: lowercase;
}

.not-typical {
  padding: 0;
}
.not-typical .background-group {
  padding-top: 14.5rem;
  padding-bottom: 10rem;
  position: relative;
  background-color: #f2f2f2;
}
@media (min-width: 641px) {
  .not-typical .background-group {
    padding-bottom: 19rem;
  }
}
.not-typical .container {
  padding-left: 10%;
  padding-right: 10%;
  max-width: 100%;
  display: flex;
  align-items: flex-end;
  height: 100%;
  width: 100%;
}
@media (min-width: 1325px) {
  .not-typical .container {
    padding: 0;
    max-width: 1200px;
  }
}
.not-typical header {
  position: relative;
  text-align: center;
}
.not-typical .slideshow-container {
  position: relative;
}
.not-typical .slideshow-container .slide {
  height: 55rem;
  max-height: 85vh;
}
@media (min-width: 641px) {
  .not-typical .slideshow-container .slide {
    height: 90rem;
    min-height: 850px;
  }
}
.not-typical .slideshow-container .slick-track {
  align-items: center;
}
.not-typical .slideshow-container .arrow-nav {
  display: none;
}
@media (min-width: 641px) {
  .not-typical .slideshow-container .arrow-nav {
    max-width: calc(100% - 85px);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .not-typical .slideshow-container .arrow-nav > svg {
    pointer-events: auto;
    transition: 0.3s ease-in-out;
    cursor: pointer;
  }
  .not-typical .slideshow-container .arrow-nav > svg:hover {
    transform: scale(1.05);
  }
}
.not-typical .slideshow .image {
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.not-typical .slideshow .image figure {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  transition: 0.5s ease-in-out;
}
.not-typical .slideshow .image figure::before {
  content: "";
  background-image: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.95) 5.4%, rgba(0, 0, 0, 0) 99.97%);
}
@media (min-width: 641px) {
  .not-typical .slideshow .image figure {
    left: 2rem;
    right: 2rem;
  }
}
@media (max-width: 640px) {
  .not-typical .slideshow .image img.focus-left {
    -o-object-position: 33% 0%;
       object-position: 33% 0%;
  }
  .not-typical .slideshow .image img.focus-center {
    -o-object-position: 50% 0%;
       object-position: 50% 0%;
  }
  .not-typical .slideshow .image img.focus-right {
    -o-object-position: 66% 0%;
       object-position: 66% 0%;
  }
}
.not-typical .heading-copy {
  width: 100%;
  font-size: 4.5rem;
  padding-bottom: 1rem;
}
@media (min-width: 641px) {
  .not-typical .heading-copy {
    padding-bottom: 10rem;
    font-size: 5.5rem;
  }
}
@media (min-width: 950px) {
  .not-typical .heading-copy {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media (min-width: 1100px) {
  .not-typical .heading-copy {
    font-size: 6rem;
  }
}
@media (min-width: 1280px) {
  .not-typical .heading-copy {
    font-size: 7rem;
  }
}
.not-typical .heading-copy span {
  display: block;
}
.not-typical .heading-copy .heading {
  color: #ffffff;
  padding-right: 5%;
  margin-bottom: 0.25em;
}
@media (min-width: 950px) {
  .not-typical .heading-copy .heading {
    width: 50%;
  }
}
.not-typical .heading-copy .copy {
  display: none;
  position: relative;
  top: -4px;
  max-width: 57rem;
}
@media (min-width: 641px) {
  .not-typical .heading-copy .copy {
    display: block;
  }
}
@media (min-width: 950px) {
  .not-typical .heading-copy .copy {
    width: 50%;
  }
}
@media (min-width: 1280px) {
  .not-typical .heading-copy .copy {
    max-width: 57rem;
  }
}
.not-typical .heading-copy .copy p {
  font-size: 0.35em;
  line-height: 1.45;
  color: #ffffff;
}
@media (min-width: 641px) {
  .not-typical .heading-copy .copy p {
    font-size: 0.315em;
  }
}

.video-popup {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  padding: 5%;
  background: #262626;
  opacity: 1;
  visibility: visible;
  transition: 0.6s;
  z-index: 50;
}
.video-popup.close {
  opacity: 0;
  visibility: hidden;
}
.video-popup .close-btn {
  position: absolute;
  z-index: 1;
  top: 5%;
  right: 5%;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}
.video-popup .close-btn:hover svg path {
  fill: #ff5003;
}
.video-popup svg {
  width: 1.5rem;
  height: 1.5rem;
}
.video-popup svg path {
  transition: 0.3s;
}
.video-popup .video-container {
  width: 100%;
  position: relative;
  padding: 56.25% 0 0 0;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}
.video-popup .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 1024px) {
  .video-popup .video-container iframe {
    left: 50%;
    transform: translateX(-50%);
    max-width: 120rem;
    margin-left: auto;
    margin-right: auto;
  }
}

section.our-values-w-popover-copy {
  padding: 7rem 0;
}
@media (min-width: 641px) {
  section.our-values-w-popover-copy {
    padding: 10rem 0;
  }
}
@media (min-width: 1024px) {
  section.our-values-w-popover-copy {
    padding: 15rem 0 12rem 0;
  }
}
section.our-values-w-popover-copy:has(.statement) .values {
  margin-bottom: 5rem;
}
@media (min-width: 641px) {
  section.our-values-w-popover-copy:has(.statement) .values {
    margin-bottom: 10rem;
  }
}
section.our-values-w-popover-copy .noise {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  height: 100%;
  width: 100%;
}
section.our-values-w-popover-copy .copy {
  position: relative;
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
}
@media (min-width: 641px) {
  section.our-values-w-popover-copy .copy {
    margin: 0 auto 7rem auto;
  }
}
@media (min-width: 1024px) {
  section.our-values-w-popover-copy .copy {
    max-width: 100rem;
  }
}
section.our-values-w-popover-copy .copy h2 {
  position: relative;
  margin-bottom: 2.5rem;
  font-family: var(--italic);
  font-size: clamp(3.6rem, 8vw, var(--7xl));
  line-height: 0.9;
  text-transform: uppercase;
  text-wrap: balance;
}
section.our-values-w-popover-copy .copy h2.medium {
  font-size: clamp(3.6rem, 8vw, var(--6xl));
}
section.our-values-w-popover-copy .copy h2 strong {
  position: relative;
  color: var(--orange);
}
section.our-values-w-popover-copy .copy h2 strong suspan {
  position: absolute;
  top: 0;
  margin-left: 0.5rem;
  font-size: 3rem;
}
@media (min-width: 641px) {
  section.our-values-w-popover-copy .copy h2 strong suspan {
    font-size: 4rem;
    top: 1rem;
  }
}
section.our-values-w-popover-copy .copy .subheading {
  font-family: var(--italic);
  font-size: var(--lg);
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 2rem;
  max-width: 90rem;
  margin: 0 auto 2rem auto;
}
@media (min-width: 641px) {
  section.our-values-w-popover-copy .copy .subheading {
    font-size: var(--2xl);
  }
}
section.our-values-w-popover-copy .copy .subhead {
  max-width: 80rem;
  margin: 0 auto;
}
section.our-values-w-popover-copy .values {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  max-width: 80%;
  margin: 0 auto;
}
@media (min-width: 641px) {
  section.our-values-w-popover-copy .values {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  section.our-values-w-popover-copy .values {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  section.our-values-w-popover-copy .values {
    max-width: 110rem;
  }
}
section.our-values-w-popover-copy .values .value {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 2rem 3rem 2rem;
  border-bottom: 2px solid var(--bordergray);
}
@media (min-width: 641px) {
  section.our-values-w-popover-copy .values .value {
    position: static;
    padding: 5rem 2rem 3rem 2rem;
  }
  section.our-values-w-popover-copy .values .value:nth-child(odd) {
    border-right: 2px solid var(--bordergray);
  }
  section.our-values-w-popover-copy .values .value:nth-last-child(2) {
    border-bottom: 0;
  }
}
@media (min-width: 1024px) {
  section.our-values-w-popover-copy .values .value {
    border-right: 2px solid var(--bordergray);
  }
  section.our-values-w-popover-copy .values .value:nth-child(3) {
    border-right: 0;
  }
  section.our-values-w-popover-copy .values .value:nth-last-child(-n+3) {
    border-bottom: 0;
  }
}
section.our-values-w-popover-copy .values .value:last-child {
  border: 0;
}
section.our-values-w-popover-copy .values .value.show .value-content {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translate(-50%, -50%);
}
section.our-values-w-popover-copy .values .value .icon {
  width: 4.4rem;
  aspect-ratio: 1/1;
  margin-bottom: 1.5rem;
}
@media (min-width: 641px) {
  section.our-values-w-popover-copy .values .value .icon {
    width: 8.4rem;
  }
}
section.our-values-w-popover-copy .values .value .icon.large {
  width: 6rem;
  margin-bottom: 2rem;
}
@media (min-width: 641px) {
  section.our-values-w-popover-copy .values .value .icon.large {
    width: 8rem;
  }
}
section.our-values-w-popover-copy .values .value .icon.large img {
  width: 6rem;
}
@media (min-width: 641px) {
  section.our-values-w-popover-copy .values .value .icon.large img {
    width: 8rem;
  }
}
section.our-values-w-popover-copy .values .value .icon img {
  max-width: none;
  width: 4.4rem;
}
@media (min-width: 641px) {
  section.our-values-w-popover-copy .values .value .icon img {
    width: 8.4rem;
  }
}
section.our-values-w-popover-copy .values .value .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
section.our-values-w-popover-copy .values .value .content h3 {
  font-size: var(--xl);
  font-family: var(--italic);
  line-height: 1;
  color: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
  max-width: 19rem;
}
@media (min-width: 1200px) {
  section.our-values-w-popover-copy .values .value .content h3 {
    font-size: var(--2xl);
  }
}
section.our-values-w-popover-copy .values .value .content button {
  font-family: var(--italic);
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: auto;
}
@media (min-width: 641px) {
  section.our-values-w-popover-copy .values .value .content button {
    font-size: 2.4rem;
  }
}
section.our-values-w-popover-copy .values .value-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  transition: 0.25s ease-in-out;
  width: 90vw;
  background: var(--white);
  border-radius: 1rem;
  padding: 6rem 5% 4rem 5%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 641px) {
  section.our-values-w-popover-copy .values .value-content {
    width: 60rem;
    padding: 6rem 2.5% 4rem 2.5%;
  }
}
section.our-values-w-popover-copy .values .value-content .close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  height: 3rem;
  width: 3rem;
  padding: 0;
}
section.our-values-w-popover-copy .values .value-content .heading {
  font-family: var(--italic);
  font-size: var(--2xl);
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 2rem;
  line-height: 1;
}
@media (min-width: 641px) {
  section.our-values-w-popover-copy .values .value-content .heading {
    font-size: var(--3xl);
  }
}
section.our-values-w-popover-copy .values .value-content p {
  font-size: var(--md);
  text-wrap: balance;
  line-height: 1.4;
}
@media (min-width: 641px) {
  section.our-values-w-popover-copy .values .value-content p {
    font-size: var(--lg);
  }
}
section.our-values-w-popover-copy .values .value-content strong {
  color: var(--black);
}
section.our-values-w-popover-copy .statement {
  position: relative;
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 1024px) {
  section.our-values-w-popover-copy .statement {
    max-width: 90rem;
  }
}
section.our-values-w-popover-copy .statement p {
  font-family: var(--italic);
  font-size: var(--xl);
  color: var(--black);
  text-transform: uppercase;
  line-height: 1;
}
@media (min-width: 641px) {
  section.our-values-w-popover-copy .statement p {
    font-size: var(--3xl);
  }
}
section.our-values-w-popover-copy .statement p strong {
  color: var(--orange);
}

section.veteran-owned {
  padding-bottom: 5rem;
}
@media (min-width: 641px) {
  section.veteran-owned {
    padding-bottom: 8.5rem;
  }
}
section.veteran-owned .navoba-logo {
  max-width: 17rem;
  margin: 0 auto;
  display: block;
  transform: translateY(-25%);
}
section.veteran-owned header {
  padding-bottom: 6rem;
  text-align: center;
}
.veteran-drivers section.veteran-owned header {
  max-width: 110rem;
  margin: 0 auto;
}
.veteran-drivers section.veteran-owned header .heading2 {
  color: var(--blue);
}
.veteran-drivers section.veteran-owned header .heading2 strong {
  color: var(--red);
}
section.veteran-owned header .overline {
  margin-bottom: 1.25em;
}
section.veteran-owned header .heading2 {
  font-family: var(--italic);
  font-size: var(--3xl);
  margin-bottom: 2rem;
  line-height: 0.85;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
@media (min-width: 641px) {
  section.veteran-owned header .heading2 {
    font-size: var(--5xl);
    margin-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  section.veteran-owned header .heading2 {
    font-size: var(--6xl);
  }
}
section.veteran-owned header .heading2 strong {
  color: var(--orange);
}
@media (min-width: 641px) {
  section.veteran-owned header .heading2.medium {
    font-size: var(--5xl);
  }
}
section.veteran-owned header p {
  font-size: var(--lg);
  text-wrap: balance;
}
@media (min-width: 641px) {
  section.veteran-owned header p {
    font-size: var(--xl);
  }
}
section.veteran-owned .vet-slider {
  padding-bottom: 8rem;
  height: 75vh;
}
@media (min-width: 641px) {
  section.veteran-owned .vet-slider {
    height: 50rem;
  }
}
@media (min-width: 768px) {
  section.veteran-owned .vet-slider {
    height: auto;
  }
}
section.veteran-owned .vet-slider .slider, section.veteran-owned .vet-slider .slick-list, section.veteran-owned .vet-slider .slick-track, section.veteran-owned .vet-slider .slick-slide > div, section.veteran-owned .vet-slider .slide {
  height: 100%;
}
section.veteran-owned .slick-dotted.slick-slider {
  margin-bottom: 6rem;
}
section.veteran-owned .slick-dotted.slick-slider .slick-dots {
  bottom: -6rem;
}
section.veteran-owned .slide {
  padding: 0 1rem;
}
section.veteran-owned .slide img.cover {
  -o-object-position: top center;
     object-position: top center;
}
section.veteran-owned .vet-message {
  font-family: var(--italic);
  font-size: clamp(var(--lg), 6vw, var(--3xl));
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  text-wrap: balance;
}
section.veteran-owned .vet-logos {
  padding-top: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 2rem;
}
@media (min-width: 641px) {
  section.veteran-owned .vet-logos {
    row-gap: 5rem;
    max-width: 60rem;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  section.veteran-owned .vet-logos {
    max-width: none;
  }
}
section.veteran-owned .vet-logos figure {
  position: relative;
  display: flex;
  justify-content: center;
  width: 50%;
  max-height: 20rem;
  padding: 2rem;
  text-align: center;
  border-right: 1px solid var(--bordergray);
}
@media (min-width: 641px) {
  section.veteran-owned .vet-logos figure {
    padding: 2rem 3rem;
    width: 50%;
    padding: 3rem;
  }
}
@media (min-width: 1024px) {
  section.veteran-owned .vet-logos figure {
    width: 33.33%;
  }
}
section.veteran-owned .vet-logos figure:nth-child(2n) {
  border: 0;
}
@media (min-width: 1024px) {
  section.veteran-owned .vet-logos figure:nth-child(2n) {
    border-right: 1px solid var(--bordergray);
  }
}
@media (min-width: 1024px) {
  section.veteran-owned .vet-logos figure:nth-child(3n) {
    border: 0;
  }
}
section.veteran-owned .vet-logos figure:last-child {
  border: 0;
}
section.veteran-owned .vet-logos figure img {
  max-height: 8rem;
  max-width: 12rem;
}
@media (min-width: 641px) {
  section.veteran-owned .vet-logos figure img {
    max-height: 12rem;
    max-width: 20rem;
  }
}
@media (min-width: 1024px) {
  section.veteran-owned .vet-logos figure img {
    max-height: 15rem;
    max-width: 25rem;
  }
}

section.footer-cta {
  padding: 0;
}
@media (min-width: 641px) {
  section.footer-cta {
    padding: clamp(10rem, 15vw, 25rem) 10%;
  }
}
@media (max-width: 640px) {
  section.footer-cta .fill, section.footer-cta section.aitw-video figure::after, section.aitw-video section.footer-cta figure::after, section.footer-cta .bg-container, section.footer-cta .bg-container .noise, .bg-container section.footer-cta .noise, section.footer-cta .not-typical .slideshow .image figure::before, .not-typical .slideshow .image section.footer-cta figure::before {
    position: relative;
  }
}
section.footer-cta .fill::after, section.footer-cta section.aitw-video figure::after, section.aitw-video section.footer-cta figure::after, section.footer-cta .bg-container::after, section.footer-cta .bg-container .noise::after, .bg-container section.footer-cta .noise::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to top, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 85%);
}
@media (min-width: 641px) {
  section.footer-cta .fill::after, section.footer-cta section.aitw-video figure::after, section.aitw-video section.footer-cta figure::after, section.footer-cta .bg-container::after, section.footer-cta .bg-container .noise::after, .bg-container section.footer-cta .noise::after {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 25%, rgba(0, 0, 0, 0) 85%);
  }
}
section.footer-cta .container {
  text-align: center;
  max-width: 88rem;
}
@media (max-width: 640px) {
  section.footer-cta .container {
    background-color: var(--jetblack);
    padding: 0 10% 5rem;
  }
}
section.footer-cta .overline {
  color: var(--white);
}
section.footer-cta .text-white p {
  color: inherit;
}
section.footer-cta h2 {
  font-size: 7rem;
  margin-bottom: 2rem;
}
@media (min-width: 641px) {
  section.footer-cta h2 {
    font-size: 13rem;
  }
}
.veteran-drivers section.footer-cta h2 {
  font-size: 5rem;
}
@media (min-width: 641px) {
  .veteran-drivers section.footer-cta h2 {
    font-size: 7rem;
  }
}
@media (min-width: 1024px) {
  .veteran-drivers section.footer-cta h2 {
    font-size: 10rem;
  }
}
.learning-development section.footer-cta h2 {
  font-size: 5rem;
}
@media (min-width: 641px) {
  .learning-development section.footer-cta h2 {
    font-size: 7rem;
  }
}
section.footer-cta p {
  font-size: var(--md);
  line-height: 1.6;
  text-wrap: balance;
}
@media (min-width: 641px) {
  section.footer-cta p {
    font-size: var(--lg);
  }
}
section.footer-cta .actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem 3rem;
  justify-content: center;
  line-height: 1;
  margin-top: 4rem;
}
@media (min-width: 641px) {
  section.footer-cta .actions {
    flex-direction: row;
  }
}
section.footer-cta .actions > button, section.footer-cta .actions > a {
  width: 100%;
}
@media (min-width: 641px) {
  section.footer-cta .actions > button, section.footer-cta .actions > a {
    width: auto;
  }
}
section.footer-cta .actions button.select {
  position: relative;
  padding: 0;
}
section.footer-cta .actions button.select span:first-child {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}
section.footer-cta .actions button.select span:first-child svg {
  width: 12px;
}
section.footer-cta .actions button.select .dropdown {
  display: grid;
  grid-template-rows: 0fr;
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  width: 90%;
  overflow: hidden;
  transform: translate(-50%, 100%);
  background-color: white;
  transition: 0.25s ease-in-out;
  padding: 0;
  border-radius: 3px;
}
section.footer-cta .actions button.select .dropdown > span {
  overflow: hidden;
  display: grid;
  gap: 1rem;
  transition: 0.25s ease-in-out;
}
section.footer-cta .actions button.select .dropdown > span a {
  font-size: 1.4rem;
  font-family: var(--xbold);
  padding: 0.5em 1.4em;
  text-transform: uppercase;
  display: block;
  text-align: left;
}
section.footer-cta .actions button.select .dropdown > span a:hover {
  color: #ff5003;
}
section.footer-cta .actions button.select:hover .dropdown {
  grid-template-rows: 1fr;
  padding: 1rem 0;
}

section.community-investment .contain {
  padding: 7rem 0;
  margin: 0 auto;
  border-top: 2px solid var(--lightgray);
}
@media (min-width: 641px) {
  section.community-investment .contain {
    padding: 10rem 0;
  }
}
@media (min-width: 1024px) {
  section.community-investment .contain {
    max-width: 90%;
  }
}
@media (min-width: 1440px) {
  section.community-investment .contain {
    max-width: 1200px;
  }
}
section.community-investment .contain .copy {
  text-align: center;
  max-width: 100rem;
  margin: 0 auto 4rem 0;
}
@media (min-width: 641px) {
  section.community-investment .contain .copy {
    margin: 0 auto 7rem auto;
  }
}
section.community-investment .contain .copy h2 strong {
  color: var(--orange);
}
section.community-investment .contain .copy .subhead {
  max-width: 75rem;
  margin: 0 auto;
}
section.community-investment .contain .investments {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  max-width: 120rem;
  margin: 0 auto;
}
@media (min-width: 950px) {
  section.community-investment .contain .investments {
    grid-template-columns: repeat(2, 1fr);
  }
}
section.community-investment .contain .investments .investment {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 25rem 10% 5rem 10%;
  overflow: hidden;
  border-radius: 1rem;
}
section.community-investment .contain .investments .investment:after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
section.community-investment .contain .investments .investment .content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
section.community-investment .contain .investments .investment .content h3 {
  margin-bottom: 2rem;
  color: var(--white);
  text-wrap: balance;
  max-width: 40rem;
  font-size: var(--3xl);
}
@media (min-width: 641px) {
  section.community-investment .contain .investments .investment .content h3 {
    font-size: var(--4xl);
  }
}
section.community-investment .contain .investments .investment .content p {
  color: var(--white);
  max-width: 40rem;
  text-wrap: balance;
}

section.aitw-video {
  padding: 5%;
}
section.aitw-video .play {
  cursor: pointer;
  z-index: 1;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -100%) scale(1);
  transition: 0.25s ease-in-out;
  width: 10rem;
  height: 10rem;
}
@media (min-width: 550px) {
  section.aitw-video .play {
    transform: translate(-50%, -75%) scale(1);
    width: 19.4vw;
    height: 19.4vw;
  }
}
@media (min-width: 950px) {
  section.aitw-video .play {
    top: 50%;
    width: 18.5rem;
    height: 18.5rem;
  }
}
section.aitw-video .play svg {
  width: 100%;
  height: 100%;
}
.veteran-drivers section.aitw-video .play svg rect {
  stroke: var(--red);
}
@media (min-width: 641px) {
  section.aitw-video .play:hover {
    transform: translate(-50%, -75%) scale(1.1);
  }
}
section.aitw-video .play.play-btn {
  position: static;
  transform: none;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  section.aitw-video .play.play-btn {
    margin-bottom: 10rem;
  }
}
section.aitw-video figure::after {
  pointer-events: none;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.89) 0.51%, rgba(0, 0, 0, 0.8) 11.43%, rgba(0, 0, 0, 0.5) 23.78%, rgba(0, 0, 0, 0) 100%);
}
section.aitw-video figure img {
  -o-object-position: 90% 50%;
     object-position: 90% 50%;
}
@media (min-width: 550px) {
  section.aitw-video figure img {
    -o-object-position: center center;
       object-position: center center;
  }
}
section.aitw-video .container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  padding-top: 60%;
}
@media (min-width: 550px) {
  section.aitw-video .container {
    padding-top: 32%;
  }
}
@media (min-width: 1300px) {
  section.aitw-video .container {
    max-width: 100%;
  }
}
.veteran-drivers section.aitw-video .container {
  padding-top: 15rem;
}
@media (min-width: 550px) {
  .veteran-drivers section.aitw-video .container {
    padding-top: 30rem;
  }
}
section.aitw-video .copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 0.7125em;
  font-size: 12.3vw;
}
@media (min-width: 550px) {
  section.aitw-video .copy {
    padding-bottom: 0.3125em;
  }
}
@media (min-width: 1300px) {
  section.aitw-video .copy {
    font-size: 16rem;
  }
}
section.aitw-video .copy:has(p) .h1, section.aitw-video .headline-w-copy .copy:has(p) h2, .headline-w-copy section.aitw-video .copy:has(p) h2 {
  margin-bottom: 1rem;
}
section.aitw-video .copy .h1, section.aitw-video .copy h2 {
  font-family: var(--unitedHI);
  font-size: 6.25rem;
}
section.aitw-video .copy .h1 span, section.aitw-video .copy h2 span {
  display: block;
}
@media (min-width: 375px) {
  section.aitw-video .copy .h1, section.aitw-video .copy h2 {
    font-size: 6.7rem;
  }
}
@media (min-width: 550px) {
  section.aitw-video .copy .h1, section.aitw-video .copy h2 {
    font-size: 1em;
  }
  section.aitw-video .copy .h1 span, section.aitw-video .copy h2 span {
    display: inline;
  }
}
.veteran-drivers section.aitw-video .copy .h1, .veteran-drivers section.aitw-video .copy h2 {
  color: var(--white);
}
.veteran-drivers section.aitw-video .copy .h1 strong, .veteran-drivers section.aitw-video .copy h2 strong {
  display: block;
  color: var(--red);
}
@media (min-width: 1024px) {
  .veteran-drivers section.aitw-video .copy .h1 strong, .veteran-drivers section.aitw-video .copy h2 strong {
    display: inline-block;
  }
}
section.aitw-video .copy p {
  font-family: Gilroy-ExtraBoldItalic, Arial Black, Arial Bold, Arial, sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 2rem;
  text-transform: uppercase;
  text-wrap: balance;
}
@media (min-width: 830px) {
  section.aitw-video .copy p {
    font-size: 0.1375em;
  }
}

section.slider .slide img {
  margin: 0 1rem;
  height: 30rem;
  width: auto;
}
@media (min-width: 641px) {
  section.slider .slide img {
    width: calc(100% - 3rem);
    height: 70rem;
  }
}
section.slider .slider-nav {
  width: 100%;
  height: 16px;
  position: relative;
  display: none;
}
section.slider::before {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f2f2f2;
}

section.quotes {
  background-color: var(--lightgray);
  padding-bottom: 6rem;
}
@media (max-width: 640px) {
  section.quotes {
    padding-left: 2.5%;
    padding-right: 2.5%;
  }
}
section.quotes.pad-y {
  padding: 10rem 0 8rem 0;
}
.driver-careers section.quotes {
  padding: 1rem 1rem 0 1rem;
}
@media (min-width: 641px) {
  .driver-careers section.quotes {
    padding: 1rem 2rem 0 2rem;
  }
}
@media (min-width: 1024px) {
  .driver-careers section.quotes {
    padding: 5rem 2rem 0 2rem;
  }
}
@media (min-width: 1440px) {
  .driver-careers section.quotes {
    padding: 8rem 0 0 0;
  }
}
.driver-careers section.quotes .container {
  max-width: 1400px;
  border-radius: 0;
}
section.quotes .container {
  max-width: 134rem;
  padding: 12rem 10% 0;
  background-color: var(--white);
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.1);
}
section.quotes .container .bg-container {
  overflow: hidden;
  opacity: 0.7;
}
section.quotes .container .bg-container img {
  scale: 1.25;
}
section.quotes .container .h3 {
  font-size: var(--2xl);
  font-family: var(--italic);
  margin-bottom: 2em;
  text-wrap: balance;
}
section.quotes .container .h3 strong {
  color: var(--orange);
}
section.quotes .container .quote-slider {
  overflow: hidden;
}
section.quotes .container .slick-slider {
  margin-bottom: 0;
}
section.quotes .container .slick-dots {
  position: static;
  margin-top: 4rem;
  padding-bottom: 4.6rem;
}
section.quotes .container .quote {
  display: flex !important;
  flex-direction: column-reverse;
  align-items: center;
}
section.quotes .container blockquote {
  max-width: 96rem;
  margin: 0 auto;
  font-size: var(--xl);
  line-height: 1.25;
  text-align: center;
}
@media (min-width: 768px) {
  section.quotes .container blockquote {
    font-size: var(--2xl);
    line-height: 1;
  }
}
@media (min-width: 1024px) {
  section.quotes .container blockquote {
    font-size: var(--3xl);
  }
}
section.quotes .container blockquote p {
  font-size: 1em;
  text-wrap: balance;
  margin-bottom: 0.5em;
  line-height: inherit;
  text-wrap: balance;
}
section.quotes .container blockquote p:not(:first-child) {
  font-size: var(--lg);
  line-height: 1.5;
  font-family: var(--medium);
}
section.quotes .container blockquote p:first-child {
  font-family: var(--xbold);
  letter-spacing: -0.02em;
  color: var(--jetblack);
  line-height: 1.24;
}
@media (min-width: 641px) {
  section.quotes .container blockquote p:first-child {
    line-height: 1;
  }
}
section.quotes .container .quotee {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  margin-bottom: 4rem;
  --avatarSize: 12rem;
  justify-content: center;
  text-align: center;
}
@media (min-width: 768px) {
  section.quotes .container .quotee {
    --avatarSize: 16rem;
  }
}
section.quotes .container .quotee figure img {
  border-radius: var(--avatarSize);
  max-width: var(--avatarSize);
  margin: auto;
}
section.quotes .container .quotee .name {
  font-family: var(--xbold);
  font-size: var(--xl);
}
section.quotes .container .quotee .job {
  font-size: var(--md);
  text-transform: uppercase;
  color: var(--orange);
  font-family: var(--medium);
}

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

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

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

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

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

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

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

/* Icons */
@font-face {
  font-family: "slick";
  src: url("../js/third-party/slick/fonts/slick.eot");
  src: url("../js/third-party/slick/fonts/slick.eot?#iefix") format("embedded-opentype"), url("../js/third-party/slick/fonts/slick.woff") format("woff"), url("../js/third-party/slick/fonts/slick.ttf") format("truetype"), url("../js/third-party/slick/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.arrows {
  display: none;
}
@media (min-width: 641px) {
  .arrows {
    display: flex;
  }
}
.arrows .arrow {
  cursor: pointer;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #ff5003;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px;
  transform: scale(1);
  transition: all 0.25s ease-in-out;
  transform-origin: center center;
}
.arrows .arrow img {
  width: 8px;
  transform-origin: center right;
  transition: all 0.25s ease-in-out;
}
.arrows .arrow.prev img {
  transform: translateX(-2px);
}
.arrows .arrow.next img {
  transform: translateX(2px);
}
.arrows .arrow:hover {
  transform: scale(1.1);
}
.arrows .arrow:hover.prev img {
  transform: translateX(-2px) scale(1.25);
}
.arrows .arrow:hover.next img {
  transform: translateX(2px) scale(1.25);
}

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 0.75;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 16px;
  width: 16px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  position: relative;
  border: 0;
  background: white;
  border-radius: 8px;
  border: 2px solid #262626;
  display: block;
  height: 16px;
  width: 16px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover::before, .slick-dots li button:focus::before {
  opacity: 0.5;
}
.slick-dots li button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  border-radius: 2px;
  line-height: 4px;
  text-align: center;
  opacity: 0.15;
  background-color: #262626;
  transition: 0.15s ease-in-out;
}
.slick-dots li.slick-active button::before {
  background-color: #ff5003;
  opacity: 1;
}

.h1, .headline-w-copy .copy h2 {
  font-family: var(--italic);
  font-size: clamp(3.4rem, 8.9vw, 7.4rem);
  line-height: 0.9em;
  text-transform: uppercase;
  text-wrap: balance;
  margin-bottom: 0.6em;
}
.h1.small, .headline-w-copy .copy h2.small {
  font-size: clamp(3.2rem, 8vw, var(--6xl));
}
.over-the-road-trucking .mast .h1, .over-the-road-trucking .mast .headline-w-copy .copy h2, .headline-w-copy .copy .over-the-road-trucking .mast h2 {
  font-size: clamp(4rem, 9vw, 7.4rem);
}
.temperature-controlled-trucking .mast .h1, .temperature-controlled-trucking .mast .headline-w-copy .copy h2, .headline-w-copy .copy .temperature-controlled-trucking .mast h2 {
  font-size: clamp(3.9rem, 9vw, 7.4rem);
}
.expedited-trucking .mast .h1, .expedited-trucking .mast .headline-w-copy .copy h2, .headline-w-copy .copy .expedited-trucking .mast h2, .dedicated-trucking .mast .h1, .dedicated-trucking .mast .headline-w-copy .copy h2, .headline-w-copy .copy .dedicated-trucking .mast h2 {
  font-size: clamp(4.8rem, 9vw, 7.4rem);
}
.entertainment-trucking .mast .h1, .entertainment-trucking .mast .headline-w-copy .copy h2, .headline-w-copy .copy .entertainment-trucking .mast h2 {
  font-size: clamp(5.4rem, 9vw, 7.4rem);
}
.hirschbach-solutions .mast .h1, .hirschbach-solutions .mast .headline-w-copy .copy h2, .headline-w-copy .copy .hirschbach-solutions .mast h2 {
  font-size: clamp(5rem, 8.9vw, 7.4rem);
}
.transportation-solutions .mast .h1, .transportation-solutions .mast .headline-w-copy .copy h2, .headline-w-copy .copy .transportation-solutions .mast h2 {
  font-size: clamp(3rem, 7.6vw, 7.4rem);
}
.coverage .h1, .coverage .headline-w-copy .copy h2, .headline-w-copy .copy .coverage h2 {
  font-size: clamp(3.4rem, 9vw, 7.4rem);
}

.h2 {
  font-family: var(--italic);
  font-size: 5.75rem;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 0.625em;
  font-size: clamp(3.6rem, 8vw, 5.1rem);
}
.h2.large {
  font-size: clamp(3.6rem, 8vw, var(--5xl));
}

.h3, .cards-w-hidden-copy .card .heading {
  font-family: var(--italic);
  font-size: 4rem;
  line-height: 0.9;
  text-transform: uppercase;
}
@media (min-width: 950px) {
  .h3, .cards-w-hidden-copy .card .heading {
    font-size: 5.5rem;
  }
}
.not-typical .h3, .not-typical .cards-w-hidden-copy .card .heading {
  font-family: var(--unitedCB);
  font-size: 1em;
  letter-spacing: -0.01em;
  line-height: 0.85;
  color: var(--black);
}

.h1.mb0, .headline-w-copy .copy h2.mb0, .h2.mb0, .h3.mb0, .cards-w-hidden-copy .card .heading.mb0 {
  margin-bottom: 0;
}

.h1 strong, .headline-w-copy .copy h2 strong, .h2 strong, .h3 strong, .cards-w-hidden-copy .card .heading strong {
  color: var(--orange);
  font-weight: normal;
}

.container.extra-wide {
  max-width: 1400px;
}

p {
  font-family: var(--medium);
  font-size: 16px;
  line-height: 1.2;
  color: var(--darkgray);
}
p.bolditalic {
  font-family: var(--medium);
  font-size: 2.2rem;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-transform: uppercase;
}

header {
  text-align: center;
}

section {
  padding-left: 10%;
  padding-right: 10%;
}
@media (min-width: 641px) {
  section {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.overline {
  font-family: var(--unitedCB);
  font-size: 2.2rem;
  letter-spacing: 0.12em;
  line-height: 1.05;
  margin-bottom: 1.25em;
  text-transform: uppercase;
}
@media (min-width: 641px) {
  .overline {
    letter-spacing: 0.22em;
    font-size: 2.9rem;
  }
}

.ic-arrow {
  max-width: 7.5px;
  transform: rotate(var(--direction));
}
.ic-arrow path {
  stroke: var(--strokeColor);
}

.section-span-background {
  position: relative;
}

section.inset {
  padding: 2rem;
}
@media (min-width: 641px) {
  section.inset {
    padding: 5%;
  }
}
section.inset.small-inset {
  padding: 3rem;
}
section.inset.rounded {
  border-radius: 10px;
}
section.inset .container:not(.extra-wide) {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

section.cta {
  position: relative;
}
section.cta .noise-background {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-color: var(--orange);
}
section.cta .noise-background .noise {
  opacity: 0.15;
}
section.cta .noise-background img {
  opacity: 0.04;
}
section.cta .container {
  padding: 10rem 0;
  max-width: calc(90rem + 10%);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 3;
}
@media (min-width: 641px) {
  section.cta .container {
    padding: 19rem 0;
  }
}
section.cta .container .h2 {
  text-wrap: balance;
}

section.slider {
  padding-top: 8rem;
  padding-bottom: 3rem;
}
@media (min-width: 641px) {
  section.slider {
    padding-top: 14rem;
    padding-bottom: 6rem;
  }
}
section.slider header {
  position: relative;
  padding-bottom: 1rem;
}
@media (min-width: 641px) {
  section.slider header {
    padding-bottom: 3rem;
  }
}
section.slider .slider-contain {
  position: relative;
}
section.slider .slide {
  padding: 1.5rem;
}
section.slider .slide .slide-container {
  position: relative;
  height: 30rem;
}
@media (min-width: 641px) {
  section.slider .slide .slide-container {
    height: 50rem;
  }
}
section.slider .slide .slide-container:has(figcaption)::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.45) 25%, rgba(0, 0, 0, 0) 50%);
}
section.slider .slide img {
  height: 30rem;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media (min-width: 641px) {
  section.slider .slide img {
    width: 100%;
    height: 50rem;
  }
}
section.slider .slide figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 3rem;
  z-index: 3;
  max-width: 37.5rem;
}
section.slider .slide figcaption p {
  color: var(--white);
}
section.slider .slider-nav {
  width: 100%;
  height: 16px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 50%;
  list-style-type: -50%;
  z-index: 1;
}
section.slider .slider-nav button {
  width: 4rem;
  aspect-ratio: 1/1;
  background-color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 6px, rgba(0, 0, 0, 0.2) 0px 4px 16px;
}
section.slider .slider-nav button svg {
  width: 100%;
}
section.slider::before {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f2f2f2;
}
section.slider .copy {
  position: relative;
  text-align: center;
  max-width: 95rem;
  margin-left: auto;
  margin-right: auto;
  padding: 4rem 0 0 0;
}
section.slider .copy p {
  font-size: var(--lg);
  text-wrap: balance;
}
@media (min-width: 641px) {
  section.slider .copy p {
    font-size: var(--xl);
  }
}

.headline-w-copy {
  text-align: center;
  padding: 5%;
}
.headline-w-copy .contain {
  position: relative;
  padding: 7rem 0;
}
@media (min-width: 641px) {
  .headline-w-copy .contain {
    padding: 12rem 0 10rem 0;
  }
}
.headline-w-copy .contain .noise-background {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.headline-w-copy .contain .noise-background .noise {
  opacity: 0.15;
}
.headline-w-copy .contain .noise-background img {
  opacity: 0.04;
}
.headline-w-copy .copy {
  position: relative;
  z-index: 2;
  max-width: 80%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .headline-w-copy .copy {
    max-width: 67rem;
  }
}
.headline-w-copy .copy h2 {
  color: var(--black);
  margin-bottom: 1.5rem;
}
@media (min-width: 641px) {
  .headline-w-copy .copy h2 {
    margin-bottom: 2rem;
  }
}
.headline-w-copy .copy h2 strong {
  color: var(--orange);
}
.headline-w-copy .copy p {
  font-size: var(--lg);
  color: var(--black);
}
@media (min-width: 641px) {
  .headline-w-copy .copy p {
    font-size: var(--xl);
  }
}

section.mast {
  text-align: center;
  height: 80vh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
}
@media (min-width: 641px) {
  section.mast {
    display: block;
    height: auto;
    align-items: flex-end;
  }
}
section.mast .h1, section.mast .headline-w-copy .copy h2, .headline-w-copy .copy section.mast h2 {
  line-height: 1;
}
section.mast .h1 strong, section.mast .headline-w-copy .copy h2 strong, .headline-w-copy .copy section.mast h2 strong {
  display: inline-block;
  position: relative;
  color: inherit;
  color: rgba(0, 0, 0, 0);
  animation: textColor 0.5s forwards 1.5s cubic-bezier(1, 0, 0, 1);
  -webkit-background-clip: text;
          background-clip: text;
  z-index: 1;
}
section.mast .h1 strong::before, section.mast .headline-w-copy .copy h2 strong::before, .headline-w-copy .copy section.mast h2 strong::before {
  content: "";
  position: absolute;
  top: -0.04em;
  bottom: -0.04em;
  left: -0.2em;
  right: calc(100% + 0.2em);
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 0;
  transform: skewX(-10deg);
  border-radius: 4px;
  pointer-events: none;
  animation: blackBar 1s forwards 1s cubic-bezier(1, 0, 0, 1);
  z-index: 0;
}
section.mast .h1 strong span, section.mast .headline-w-copy .copy h2 strong span, .headline-w-copy .copy section.mast h2 strong span {
  display: block;
  position: relative;
  z-index: 1;
}
section.mast .h1 strong::after, section.mast .headline-w-copy .copy h2 strong::after, .headline-w-copy .copy section.mast h2 strong::after {
  content: "";
  position: absolute;
  top: -0.04em;
  bottom: -0.04em;
  left: -0.2em;
  right: calc(100% + 0.2em);
  background-color: var(--orange);
  z-index: 0;
  transform: skewX(-10deg);
  border-radius: 4px;
  pointer-events: none;
  animation: orangeBar 1s forwards 1s cubic-bezier(1, 0, 0, 1);
  z-index: 2;
}
@keyframes textColor {
  0% {
    color: rgba(0, 0, 0, 0);
  }
  100% {
    color: var(--white);
  }
}
@keyframes blackBar {
  0% {
    left: -0.2em;
    right: calc(100% + 0.2em);
  }
  100% {
    left: -0.2em;
    right: -0.2em;
  }
}
@keyframes orangeBar {
  0% {
    left: -0.2em;
    right: calc(100% + 0.2em);
  }
  50% {
    left: -0.2em;
    right: -0.2em;
  }
  100% {
    left: calc(100% + 0.2em);
    right: -0.2em;
  }
}
@media (min-width: 641px) {
  .transparent-nav section.mast .container {
    padding-top: 25rem;
    padding-bottom: 16.5rem;
  }
}
section.mast .container {
  position: relative;
  z-index: 1;
  max-width: 1024px;
}
@media (min-width: 641px) {
  section.mast .container {
    padding-bottom: 10rem;
  }
}
section.mast .actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem 3rem;
  justify-content: center;
  line-height: 1;
}
@media (min-width: 641px) {
  section.mast .actions {
    flex-direction: row;
  }
}
section.mast figure {
  z-index: 0;
}
section.mast figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(40, 40, 40, 0.6);
}
section.mast .learnmore {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 4rem;
}
@media (max-width: 640px) {
  section.mast .learnmore {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
@keyframes arrow {
  0% {
    transform: translateY(-70%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(40%);
    opacity: 0;
  }
}
section.mast .learnmore .arrow {
  width: 100%;
  animation: arrow 2s infinite;
}
section.mast .learnmore div {
  font-size: 1.5rem;
  color: var(--white);
  font-family: var(--xbold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 0.75em;
}

section.cta-form .flames {
  width: 10rem;
  margin-bottom: 4rem;
}
section.cta-form .flames svg {
  width: 100%;
  height: auto;
}
section.cta-form .card-container {
  padding-top: 8rem;
  padding-bottom: 8rem;
  padding-left: 10%;
  padding-right: 10%;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 641px) {
  section.cta-form .card-container {
    padding-left: 8%;
    padding-right: 8%;
  }
}
@media (min-width: 768px) {
  section.cta-form .card-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
section.cta-form .content {
  max-width: 575px;
  padding-top: 4rem;
}
@media (max-width: 640px) {
  section.cta-form .content {
    padding-top: 0;
  }
}
section.cta-form .h2 {
  max-width: 475px;
  font-size: clamp(3.1rem, 7vw, 5.1rem);
}
@media (min-width: 768px) and (max-width: 1023px) {
  section.cta-form .h2 {
    font-size: var(--3xl);
  }
}
section.cta-form .h2 strong {
  color: var(--orange);
}
section.cta-form #form .subhead {
  font-size: 1.7rem;
  font-family: var(--medium);
  text-transform: none;
  text-wrap: balance;
}
section.cta-form #form .subhead p {
  font-size: inherit;
  font-family: inherit;
  text-transform: none;
  text-wrap: balance;
}
section.cta-form #form .subhead p strong {
  font-family: var(--xbold);
  color: var(--orange);
}
@media (max-width: 1023px) {
  section.cta-form #form .form-columns-2 > * {
    width: 100%;
  }
}
section.cta-form .contacts {
  display: grid;
  gap: 3rem 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
}
section.cta-form .contact-employee figure {
  aspect-ratio: 1/1;
  width: 10rem;
  background-color: var(--lightgray);
  border-radius: 50%;
  margin-bottom: 1.6rem;
}
section.cta-form .contact-employee .name {
  font-size: 1.7rem;
  font-family: var(--xbold);
  text-transform: uppercase;
}
section.cta-form .contact-employee .jobtitle, section.cta-form .contact-employee .email {
  font-size: 1.45rem;
}
section.cta-form .questions {
  padding-top: 1.5em;
  font-family: var(--italic);
  font-size: 1.9rem;
  text-transform: uppercase;
}
section.cta-form .questions div:last-child {
  margin-top: 0.15em;
  font-size: var(--2xl);
}
section.cta-form .questions a {
  color: var(--orange);
}

section.quote {
  padding-top: 17rem;
  padding-bottom: 7rem;
}
section.quote .overline {
  text-align: center;
}
section.quote blockquote {
  text-align: center;
  font-size: var(--xl);
  font-family: var(--italic);
  max-width: 82rem;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
@media (min-width: 641px) {
  section.quote blockquote {
    font-size: clamp(3.2rem, 6vw, 4rem);
  }
}
section.quote .quotee {
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem 6rem;
}
@media (min-width: 641px) {
  section.quote .quotee {
    flex-direction: row;
  }
}
section.quote .quotee figure {
  max-width: 16rem;
  position: relative;
}
@media (min-width: 641px) {
  section.quote .quotee figure::before {
    content: "";
    height: 70%;
    width: 2px;
    background-color: var(--orange);
    position: absolute;
    right: -3rem;
    top: 50%;
    transform: translateY(-50%);
  }
}
section.quote .quotee figure img {
  width: 100%;
}
section.quote .quotee .cite {
  text-transform: uppercase;
  text-align: center;
}
section.quote .quotee .cite .name {
  font-size: var(--lg);
  font-family: var(--xbold);
}
section.quote .quotee .cite .byline {
  font-size: var(--md);
}

section.intro-copy {
  padding-top: clamp(8rem, 8vw, 10rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  text-align: center;
}
section.intro-copy .container {
  max-width: 80.5rem;
}
section.intro-copy p {
  font-size: var(--lg);
  line-height: 1.4;
  text-wrap: balance;
  color: var(--black);
}
@media (min-width: 641px) {
  section.intro-copy p {
    font-size: var(--xl);
  }
}
section.intro-copy p strong {
  color: var(--orange);
}

section.cards {
  padding-top: 2.5%;
  padding-bottom: clamp(4rem, 5%, 6rem);
}
@media (max-width: 639px) {
  section.cards {
    padding-left: 5%;
    padding-right: 5%;
  }
}
section.cards .container {
  --columns: 1;
  display: grid;
  grid-template-columns: repeat(var(--columns), 1fr);
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  section.cards .container {
    --columns: 2;
  }
}
section.cards .container.cols3 {
  --columns: 1;
}
@media (min-width: 1024px) {
  section.cards .container.cols3 {
    --columns: 3;
  }
}
@media (min-width: 768px) {
  section.cards .container.cols4 {
    --columns: 2;
  }
}
@media (min-width: 1360px) {
  section.cards .container.cols4 {
    --columns: 4;
  }
}
section.cards .container.cols4 .card {
  height: 40rem;
}
section.cards .container .card {
  position: relative;
  height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
  padding: 4rem;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: none;
}
@media (min-width: 641px) {
  section.cards .container .card {
    height: 600px;
  }
}
section.cards .container .card.rounded {
  border-radius: 6px;
}
section.cards .container .card.card-shadow {
  box-shadow: 0 0.7rem 2rem 0 rgba(0, 0, 0, 0.2);
}
section.cards .container .card .background {
  position: absolute;
  inset: 0;
}
section.cards .container .card .background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 24, 32, 0.8), rgba(16, 24, 32, 0));
  mix-blend-mode: multiply;
}
section.cards .container .card .copy {
  position: relative;
  container-type: inline-size;
  max-width: 38rem;
}
section.cards .container .card h3 {
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--xbold);
  line-height: 0.9;
  font-size: var(--2xl);
  margin-bottom: 0.25em;
}
@media (min-width: 1240px) {
  section.cards .container .card h3 {
    font-size: var(--3xl);
  }
}
@container (min-width: 38rem) {
  section.cards .container .card h3 {
    font-size: var(--3xl);
  }
}
section.cards .container .card p {
  color: var(--white);
  line-height: 1.25;
  font-size: var(--lg);
  text-wrap: balance;
}
section.cards .container .card p strong {
  font-family: var(--xbold);
  color: var(--orange);
}
section.cards .container .card a {
  margin-top: 2rem;
  display: inline-block;
  font-size: 1.7rem;
  font-family: var(--italic);
  text-transform: uppercase;
}
section.cards .container .card a .arrow {
  font-family: var(--xbold);
}
section.cards .container .card a span:first-child {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
}
@media (min-width: 641px) {
  section.cards .container .card a span:first-child {
    text-underline-offset: 6px;
  }
}

section.awards {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 90rem;
  position: relative;
  background-color: var(--black);
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 641px) {
  section.awards {
    flex-direction: column;
  }
}
section.awards .container {
  position: relative;
  z-index: 2;
  padding-left: 5%;
  padding-right: 5%;
}
@media (min-width: 1200px) {
  section.awards .container {
    padding-right: 0;
    padding-left: 0;
  }
}
section.awards figure.bg {
  position: relative;
  aspect-ratio: 1/1;
}
@media (min-width: 641px) {
  section.awards figure.bg {
    aspect-ratio: auto;
    position: absolute;
    inset: 0;
  }
}
section.awards figure.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--black) 6.67%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 1;
}
@media (min-width: 641px) {
  section.awards figure.bg::after {
    mix-blend-mode: multiply;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 6.67%, rgba(0, 0, 0, 0.05) 100%);
  }
}
section.awards header, section.awards .award-container {
  position: relative;
  z-index: 2;
}
section.awards header {
  padding-top: 8rem;
  padding-bottom: 4rem;
}
@media (min-width: 641px) {
  section.awards header {
    padding-bottom: 0;
  }
}
@media (max-width: 639px) {
  section.awards .awards-container {
    margin-top: -25rem;
  }
}
section.awards .awards-container h2 {
  margin-bottom: 0rem;
}
@media (min-width: 641px) {
  section.awards .awards-container h2 {
    margin-bottom: 8rem;
  }
}
section.awards .award-container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: grid;
  gap: 6rem;
  grid-template-columns: 1fr;
  padding: 0 5% 8rem 5%;
  max-width: 1210px;
}
@media (min-width: 641px) {
  section.awards .award-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 8rem;
    padding: 0 0 8rem 0;
  }
}
@media (min-width: 1280px) {
  section.awards .award-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
section.awards .award-container.awards-one {
  grid-template-columns: 1fr;
}
section.awards .award-container .award {
  position: relative;
  text-align: center;
  font-family: var(--italic);
  text-transform: uppercase;
  font-size: 1.8rem;
  line-height: 1;
}
@media (min-width: 641px) {
  section.awards .award-container .award {
    font-size: 2.4rem;
  }
}
section.awards .award-container .award::after {
  width: 2px;
  background-color: var(--white);
  opacity: 0.35;
  position: absolute;
  top: 0;
  right: -4rem;
  height: 90%;
}
@media (min-width: 641px) and (max-width: 1199px) {
  section.awards .award-container .award:nth-child(odd)::after {
    content: "";
  }
}
@media (min-width: 1200px) {
  section.awards .award-container .award:not(:last-child)::after {
    content: "";
  }
}
section.awards .award-container .logo {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 641px) {
  section.awards .award-container .logo {
    height: 11rem;
  }
}
@media (min-width: 1024px) {
  section.awards .award-container .logo {
    margin-bottom: 4rem;
  }
}
section.awards .award-container .logo img {
  max-width: 18rem;
  max-height: 8rem;
}
@media (min-width: 641px) {
  section.awards .award-container .logo img {
    max-width: 22.5rem;
    max-height: 11rem;
  }
}
section.awards .award-container p {
  text-wrap: balance;
  font-family: inherit;
  line-height: inherit;
  margin-bottom: 0.5em;
  font-size: 2.489rem;
}
section.awards .award-container p.award-title {
  margin-bottom: 1rem;
}

section.sustainable-awards {
  padding-top: clamp(8rem, 8vw, 12rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
  position: relative;
}
section.sustainable-awards .background {
  position: absolute;
  opacity: 0.1;
  transform: translateY(-25%);
  height: 50%;
}
@media (min-width: 641px) {
  section.sustainable-awards .background {
    height: 50%;
  }
}
section.sustainable-awards .h1 strong, section.sustainable-awards .headline-w-copy .copy h2 strong, .headline-w-copy .copy section.sustainable-awards h2 strong, section.sustainable-awards .h2 strong {
  color: #60b73a;
}
section.sustainable-awards header {
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2rem;
}
section.sustainable-awards .awards-list {
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  section.sustainable-awards .awards-list {
    display: flex;
  }
}
@media (min-width: 1024px) {
  section.sustainable-awards .awards-list {
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
}
section.sustainable-awards .awards-list .award {
  position: relative;
  padding: 0 0 3rem;
}
@media (min-width: 641px) {
  section.sustainable-awards .awards-list .award {
    padding: 0 3rem 3rem;
  }
}
@media (min-width: 1200px) {
  section.sustainable-awards .awards-list .award {
    padding: 0 5rem 5rem;
  }
}
@media (min-width: 768px) {
  section.sustainable-awards .awards-list .award:not(:last-child) {
    border-right: 1px solid var(--bordergray);
  }
}
section.sustainable-awards .awards-list .award figure {
  height: 12.5rem;
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  section.sustainable-awards .awards-list .award figure {
    height: 15rem;
  }
}
@media (min-width: 1024px) {
  section.sustainable-awards .awards-list .award figure {
    max-width: 80%;
  }
}
section.sustainable-awards .awards-list .award figure img {
  display: block;
  width: 100%;
  max-height: 10rem;
  max-width: 27.5rem;
}
section.sustainable-awards .awards-list .award .award-title {
  font-family: var(--italic);
  text-transform: uppercase;
  color: #60ba3a;
  font-size: var(--xl);
  line-height: 0.9;
  text-wrap: balance;
  margin-bottom: 0.5em;
}
@media (min-width: 1240px) {
  section.sustainable-awards .awards-list .award .award-title {
    font-size: var(--xl);
  }
}
@media (max-width: 640px) {
  section.sustainable-awards .fullwidth {
    margin-left: -5%;
    margin-right: -5%;
    aspect-ratio: 1.5/1;
  }
  section.sustainable-awards .fullwidth img {
    height: 100%;
  }
}
section.sustainable-awards .bottom-content {
  padding-top: 6rem;
}
@media (min-width: 768px) {
  section.sustainable-awards .bottom-content {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1024px) {
  section.sustainable-awards .bottom-content {
    display: grid;
    grid-template-columns: 30rem 1fr;
    gap: 4%;
  }
}
@media (min-width: 1240px) {
  section.sustainable-awards .bottom-content {
    grid-template-columns: 40rem 1fr;
    gap: 8%;
  }
}
section.sustainable-awards .bottom-content header {
  text-align: left;
}
section.sustainable-awards .bottom-content header .h2 {
  margin-bottom: 0.35em;
}
section.sustainable-awards .bottom-content header p {
  font-size: var(--md);
  color: var(--darkgray);
  line-height: 1.5;
  max-width: 60rem;
}
@media (min-width: 1200px) {
  section.sustainable-awards .bottom-content header p {
    font-size: var(--lg);
  }
}
section.sustainable-awards .bottom-content .initiatives ul {
  -moz-columns: 1;
       columns: 1;
  -moz-column-gap: 8%;
       column-gap: 8%;
}
@media (min-width: 641px) {
  section.sustainable-awards .bottom-content .initiatives ul {
    -moz-columns: 2;
         columns: 2;
  }
}
section.sustainable-awards .bottom-content .initiatives ul li {
  list-style-image: url('data:image/svg+xml,<svg transform="scale(0.5) translate(-10, 15)" transform-origin="center" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 15"><path d="m1.5 1.5 6 6-6 6" fill="none" stroke="%2360ba3a" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"/></svg>'); /* Use translate(X, Y) to position the SVG up, down, left, and right */
  font-size: var(--md);
  margin-bottom: 1em;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
@media (min-width: 1200px) {
  section.sustainable-awards .bottom-content .initiatives ul li {
    font-size: var(--lg);
  }
}
section.sustainable-awards .bottom-content .initiatives ul li::marker {
  font-size: 3rem;
  line-height: 0.1em;
}
@media (min-width: 641px) {
  section.sustainable-awards .bottom-content .initiatives ul li::marker {
    font-size: 3em;
  }
}

section.fleet-overview {
  --stat-border-color: rgba(255,255,255,.4);
}
section.fleet-overview figure.fill, section.fleet-overview figure.bg-container, section.fleet-overview .bg-container figure.noise, .bg-container section.fleet-overview figure.noise, section.fleet-overview .not-typical .slideshow .image figure::before, .not-typical .slideshow .image section.fleet-overview figure::before, section.fleet-overview section.aitw-video figure::after, section.aitw-video section.fleet-overview figure::after {
  z-index: 0;
}
@media (max-width: 640px) {
  section.fleet-overview figure.fill::before, section.fleet-overview figure.bg-container::before, section.fleet-overview .bg-container figure.noise::before, .bg-container section.fleet-overview figure.noise::before, section.fleet-overview .not-typical .slideshow .image figure::before, .not-typical .slideshow .image section.fleet-overview figure::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(66, 74, 82, 0.5), rgba(56, 64, 72, 0.1));
  }
}
section.fleet-overview .container {
  position: relative;
  z-index: 1;
  padding: 5%;
}
@media (min-width: 641px) {
  section.fleet-overview .container {
    padding: 4rem;
  }
}
section.fleet-overview header {
  position: relative;
  text-align: center;
  max-width: 88.5rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10rem;
  padding-bottom: 3rem;
}
section.fleet-overview header .logo {
  max-width: 9.5rem;
  width: 100%;
  margin: 0 auto 4.5rem;
}
@media (min-width: 641px) {
  section.fleet-overview header .logo {
    max-width: 13.5rem;
  }
}
section.fleet-overview header .h1, section.fleet-overview header .headline-w-copy .copy h2, .headline-w-copy .copy section.fleet-overview header h2 {
  margin-bottom: 0.3em;
  font-size: clamp(3.4rem, 10.5vw, 7.4rem);
}
section.fleet-overview header p {
  font-size: var(--md);
  line-height: 1.4;
  text-wrap: balance;
}
@media (min-width: 641px) {
  section.fleet-overview header p {
    font-size: var(--lg);
  }
}
section.fleet-overview header .btn {
  margin-top: 3rem;
}
section.fleet-overview .glass {
  position: relative;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 4rem 3rem;
  overflow: hidden;
}
@media (min-width: 641px) {
  section.fleet-overview .glass {
    padding: 6rem 4rem;
  }
}
section.fleet-overview .glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(66, 74, 82, 0.5), rgba(56, 64, 72, 0.1));
}
section.fleet-overview .glass > * {
  position: relative;
}
section.fleet-overview .value {
  font-family: var(--unitedCB);
  font-size: 1em;
  line-height: 0.9em;
}
@media (min-width: 641px) {
  section.fleet-overview .value {
    font-family: var(--unitedHI);
  }
}
section.fleet-overview .label {
  font-family: var(--italic);
  font-size: 0.3em;
  text-transform: uppercase;
}
section.fleet-overview .stats {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 2rem;
  text-align: center;
}
@media (min-width: 641px) {
  section.fleet-overview .stats {
    gap: 4rem 0;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 850px) {
  section.fleet-overview .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
section.fleet-overview .stats .stat {
  font-size: 6rem;
}
@media (min-width: 450px) {
  section.fleet-overview .stats .stat {
    font-size: 6rem;
  }
}
@media (min-width: 641px) {
  section.fleet-overview .stats .stat {
    font-size: 8rem;
  }
}
@media (min-width: 700px) {
  section.fleet-overview .stats .stat {
    font-size: 10rem;
  }
}
@media (min-width: 641px) and (max-width: 849px) {
  section.fleet-overview .stats .stat:nth-child(odd) {
    border-right: 2px solid var(--stat-border-color);
  }
}
@media (min-width: 850px) {
  section.fleet-overview .stats .stat {
    font-size: 6rem;
  }
  section.fleet-overview .stats .stat:not(:last-child) {
    border-right: 2px solid var(--stat-border-color);
  }
}
@media (min-width: 1024px) {
  section.fleet-overview .stats .stat {
    font-size: 8rem;
  }
}
@media (min-width: 1280px) {
  section.fleet-overview .stats .stat {
    font-size: 10rem;
  }
}

section.callout {
  text-align: center;
}
section.callout .container {
  position: relative;
  padding: 15rem 5% 15rem;
}
@media (min-width: 641px) {
  section.callout .container {
    padding: 24rem 5% 24rem;
  }
}
section.callout header {
  position: relative;
  max-width: 81rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px) {
  section.callout header {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
section.callout figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to top, rgba(66, 74, 82, 0.75), rgba(56, 64, 72, 0.1));
  mix-blend-mode: multiply;
}
section.callout .h1, section.callout .headline-w-copy .copy h2, .headline-w-copy .copy section.callout h2 {
  margin-bottom: 0.25em;
}
section.callout p {
  font-size: var(--lg);
  max-width: 80.5rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--white);
  margin-top: 1em;
}
@media (min-width: 641px) {
  section.callout p {
    font-size: var(--xl);
  }
}

section.expandable-content {
  padding-top: 17rem;
  padding-bottom: clamp(6rem, 8vw, 12rem);
}
@media (max-width: 640px) {
  section.expandable-content {
    padding-top: 12rem;
    padding-left: 5%;
    padding-right: 5%;
  }
}
section.expandable-content header {
  position: relative;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 6.5rem;
  z-index: 1;
}
section.expandable-content header .logo {
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}
section.expandable-content header p {
  font-size: var(--lg);
  font-family: var(--medium);
  text-wrap: balance;
}
@media (min-width: 641px) {
  section.expandable-content header p {
    font-size: var(--xl);
  }
}
section.expandable-content > figure::after {
  content: "";
  background-image: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 15%);
  position: absolute;
  inset: 0;
  z-index: 1;
}
section.expandable-content.gradient-overlay > figure::after {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.1));
}
section.expandable-content.gradient-overlay header .h1, section.expandable-content.gradient-overlay header .headline-w-copy .copy h2, .headline-w-copy .copy section.expandable-content.gradient-overlay header h2, section.expandable-content.gradient-overlay p {
  color: var(--white);
}

.cards-w-hidden-copy {
  --heading: 3em;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .cards-w-hidden-copy {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .cards-w-hidden-copy {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1320px) {
  .cards-w-hidden-copy {
    --heading: 3.8rem;
  }
}
.cards-w-hidden-copy.cols4 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .cards-w-hidden-copy.cols4 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1240px) {
  .cards-w-hidden-copy.cols4 {
    max-width: 100%;
    grid-template-columns: repeat(4, 1fr);
  }
}
.cards-w-hidden-copy .card {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  z-index: 1;
  padding: 3rem 5% 3.5rem 5%;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 1.2rem;
  min-height: 25rem;
}
@media (min-width: 641px) {
  .cards-w-hidden-copy .card {
    padding: 5rem 3rem 3rem;
  }
}
@media (min-width: 1024px) {
  .cards-w-hidden-copy .card {
    padding: 8rem 3rem 3rem;
  }
}
.cards-w-hidden-copy .card .copy {
  opacity: 1;
  transition: 0.3s ease-in-out;
  font-size: 1.7rem;
  margin-top: 2rem;
  max-width: 90%;
}
.cards-w-hidden-copy .card .h3 {
  font-size: var(--heading);
  line-height: 1;
}

section.service-benefits {
  padding-left: 0;
  padding-right: 0;
  padding-top: clamp(6rem, 8vw, 17.5rem);
  padding-bottom: 6rem;
  position: relative;
}
section.service-benefits::after {
  content: "";
  background-image: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 15%);
  position: absolute;
  inset: 0;
}
section.service-benefits.gradient-overlay {
  padding-bottom: clamp(6rem, 8vw, 12rem);
}
section.service-benefits.gradient-overlay::after {
  background-image: linear-gradient(to bottom, rgba(40, 40, 40, 0.9), rgba(40, 40, 40, 0.1));
}
section.service-benefits.gradient-overlay header .h1, section.service-benefits.gradient-overlay header .headline-w-copy .copy h2, .headline-w-copy .copy section.service-benefits.gradient-overlay header h2 {
  color: var(--white);
}
section.service-benefits.gradient-overlay .benefits li {
  position: relative;
  background-color: var(--white);
}
.hirschbach-solutions section.service-benefits {
  padding-top: 3rem;
  padding-bottom: 8rem;
}
section.service-benefits .container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hirschbach-solutions section.service-benefits .container {
  max-width: 140rem;
}
section.service-benefits header {
  padding-bottom: 6rem;
  padding-left: 10%;
  padding-right: 10%;
}
@media (min-width: 641px) {
  section.service-benefits header {
    padding-left: 5%;
    padding-right: 5%;
  }
}
section.service-benefits header svg {
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}
.hirschbach-solutions section.service-benefits header .h1, .hirschbach-solutions section.service-benefits header .headline-w-copy .copy h2, .headline-w-copy .copy .hirschbach-solutions section.service-benefits header h2 {
  font-size: var(--2xl);
}
@media (min-width: 641px) {
  .hirschbach-solutions section.service-benefits header .h1, .hirschbach-solutions section.service-benefits header .headline-w-copy .copy h2, .headline-w-copy .copy .hirschbach-solutions section.service-benefits header h2 {
    font-size: var(--3xl);
  }
}
section.service-benefits .benefits {
  --gap: 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--gap);
  padding-left: 5%;
  padding-right: 5%;
}
@media (min-width: 641px) {
  section.service-benefits .benefits {
    padding-left: 0;
    padding-right: 0;
    --gap: 2rem;
  }
}
section.service-benefits .benefits li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 8rem;
  border-radius: 5px;
  font-size: var(--md);
  line-height: 0.9;
  text-transform: uppercase;
  font-family: var(--italic);
  text-align: center;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 0 2rem;
  width: calc(50% - var(--gap));
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
@media (min-width: 641px) {
  section.service-benefits .benefits li {
    font-size: var(--lg);
  }
}
@media (min-width: 768px) {
  section.service-benefits .benefits li {
    width: calc(33% - 1.6rem);
  }
}
section.service-benefits .benefits.cols3 {
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  section.service-benefits .benefits.cols4 li, section.service-benefits .benefits.cols5 li {
    font-size: var(--md);
    width: calc(25% - 1.6rem);
  }
}
@media (min-width: 1200px) {
  section.service-benefits .benefits.cols5 li {
    font-size: var(--lg);
    width: calc(20% - 1.6rem);
  }
}
.hirschbach-solutions section.service-benefits .benefits {
  max-width: 124rem;
}
.hirschbach-solutions section.service-benefits .benefits li {
  width: calc(50% - var(--gap));
  color: var(--white);
  background-color: var(--black);
}
@media (min-width: 768px) {
  .hirschbach-solutions section.service-benefits .benefits li {
    width: calc(25% - 1.6rem);
  }
}
section.service-benefits .subheading {
  font-size: var(--2xl);
  margin-bottom: 1.4em;
}
section.service-benefits .bottom-content {
  padding-top: 8rem;
  padding-left: 10%;
  padding-right: 10%;
}
@media (min-width: 641px) {
  section.service-benefits .bottom-content {
    padding-left: 5%;
    padding-right: 5%;
  }
}
section.service-benefits .bottom-content .content {
  text-align: left;
}
section.service-benefits .bottom-content ul {
  -moz-columns: 1;
       columns: 1;
  -moz-column-gap: 8%;
       column-gap: 8%;
}
@media (min-width: 641px) {
  section.service-benefits .bottom-content ul {
    -moz-columns: 2;
         columns: 2;
  }
}
@media (min-width: 850px) {
  section.service-benefits .bottom-content ul {
    -moz-columns: 3;
         columns: 3;
  }
}
section.service-benefits .bottom-content ul li {
  list-style-image: url('data:image/svg+xml,<svg transform="scale(0.5) translate(-10, 15)" transform-origin="center" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 15"><path d="m1.5 1.5 6 6-6 6" fill="none" stroke="%23ff5003" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"/></svg>'); /* Use translate(X, Y) to position the SVG up, down, left, and right */
  font-size: var(--md);
  margin-bottom: 1em;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
@media (min-width: 1200px) {
  section.service-benefits .bottom-content ul li {
    font-size: var(--lg);
  }
}
section.service-benefits .bottom-content ul li::marker {
  font-size: 3rem;
  line-height: 0.1em;
}
@media (min-width: 641px) {
  section.service-benefits .bottom-content ul li::marker {
    font-size: 3em;
  }
}

body.transportation-solutions section.services {
  position: relative;
  padding-top: clamp(8rem, 10vw, 12rem);
  padding-left: 5%;
  padding-right: 5%;
}
@media (min-width: 641px) {
  body.transportation-solutions section.services {
    padding-right: 10%;
    padding-left: 10%;
  }
}
body.transportation-solutions section.services .container {
  position: relative;
  max-width: 100%;
}
body.transportation-solutions section.services .logo {
  max-width: 25rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  margin-bottom: 5rem;
}
body.transportation-solutions section.services header {
  padding-bottom: 2rem;
}
body.transportation-solutions section.services header p strong {
  color: var(--orange);
}
body.transportation-solutions section.services .service-list {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
@media (min-width: 1240px) {
  body.transportation-solutions section.services .service-list {
    gap: 2.4rem;
  }
}
body.transportation-solutions section.services .service-list .service {
  position: relative;
  height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
  padding: 4rem;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
body.transportation-solutions section.services .service-list .service figure {
  transition: 0.5s ease-in-out;
}
body.transportation-solutions section.services .service-list .service:hover figure {
  transition-duration: 2s;
  transform: scale(1.1) rotate(2deg);
}
body.transportation-solutions section.services .service-list .service:nth-child(odd):hover figure {
  transform: scale(1.1) rotate(-2deg);
}
@media (min-width: 768px) {
  body.transportation-solutions section.services .service-list .service {
    width: calc(50% - 12px);
  }
}
@media (min-width: 1024px) {
  body.transportation-solutions section.services .service-list .service {
    width: calc(33% - 9.6px);
  }
  body.transportation-solutions section.services .service-list .service:nth-child(-n+2) {
    width: calc(50% - 12px);
  }
}
@media (min-width: 1240px) {
  body.transportation-solutions section.services .service-list .service {
    width: calc(33% - 13px);
  }
  body.transportation-solutions section.services .service-list .service:nth-child(-n+2) {
    width: calc(50% - 12px);
  }
}
body.transportation-solutions section.services .service-list .service .background {
  position: absolute;
  inset: 0;
}
body.transportation-solutions section.services .service-list .service .background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 24, 32, 0.8), rgba(16, 24, 32, 0));
  mix-blend-mode: multiply;
}
body.transportation-solutions section.services .service-list .service .copy {
  position: relative;
}
body.transportation-solutions section.services .service-list .service h3 {
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--unitedCB);
  line-height: 1.1;
  font-size: 4.4rem;
}
@media (min-width: 1240px) {
  body.transportation-solutions section.services .service-list .service h3 {
    font-size: 5.15rem;
    margin-bottom: 0.25em;
  }
}
body.transportation-solutions section.services .service-list .service p {
  color: var(--white);
  line-height: 1.25;
  font-size: 1.7rem;
  text-wrap: pretty;
  max-width: 29rem;
}
body.transportation-solutions section.services .service-list .service .action {
  margin-top: 2rem;
  display: inline-block;
  font-size: 1.7rem;
  font-family: var(--italic);
  text-transform: uppercase;
}
body.transportation-solutions section.services .service-list .service .action .arrow {
  font-family: var(--xbold);
}
body.transportation-solutions section.services .service-list .service .action span:first-child {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
}
body.transportation-solutions section.services .contact-sales {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 5rem 5%;
  text-align: center;
  border-bottom: 2px solid var(--bordergray);
}
@media (min-width: 641px) {
  body.transportation-solutions section.services .contact-sales {
    padding: 7rem 0;
  }
}
body.transportation-solutions section.services .contact-sales p {
  font-size: 2.074rem;
}
body.transportation-solutions section.coverage {
  padding-top: clamp(8rem, 10vw, 12rem);
  padding-bottom: 6rem;
  padding-left: 5%;
  padding-right: 5%;
}
@media (min-width: 641px) {
  body.transportation-solutions section.coverage {
    padding-right: 10%;
    padding-left: 10%;
  }
}
body.transportation-solutions section.coverage header {
  padding-bottom: 3rem;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}
body.transportation-solutions section.coverage header .h1, body.transportation-solutions section.coverage header .headline-w-copy .copy h2, .headline-w-copy .copy body.transportation-solutions section.coverage header h2 {
  margin-bottom: 0;
}
body.transportation-solutions section.coverage header span {
  white-space: nowrap;
}
body.transportation-solutions section.coverage header h2 strong {
  color: var(--orange);
}
@media (min-width: 641px) {
  body.transportation-solutions section.coverage header {
    padding-bottom: 6rem;
  }
}
body.transportation-solutions section.coverage #map {
  width: 100%;
  aspect-ratio: 1/1;
}
@media (min-width: 641px) {
  body.transportation-solutions section.coverage #map {
    aspect-ratio: 16/9;
  }
}

body.temperature-controlled-trucking section.mast .h1, body.temperature-controlled-trucking section.mast .headline-w-copy .copy h2, .headline-w-copy .copy body.temperature-controlled-trucking section.mast h2 {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
body.temperature-controlled-trucking section.fleet-overview {
  --stat-border-color: var(--gray);
  padding-bottom: 6rem;
}
body.temperature-controlled-trucking section.fleet-overview .copy {
  text-align: center;
  font-size: var(--xl);
  max-width: 81rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 4em;
  padding-bottom: 2em;
}

section.mission-statement {
  padding-top: 8rem;
  padding-bottom: 4rem;
}
@media (min-width: 641px) {
  section.mission-statement {
    padding-top: 12rem;
  }
}
section.mission-statement .container {
  max-width: 80rem;
}
section.mission-statement svg {
  max-width: 17rem;
  margin: 0 auto 3rem auto;
}
@media (min-width: 641px) {
  section.mission-statement svg {
    max-width: 27rem;
    margin: 0 auto 5rem auto;
  }
}
section.mission-statement .h2 {
  font-size: var(--lg);
  line-height: 1.5;
}
@media (min-width: 641px) {
  section.mission-statement .h2 {
    font-size: var(--2xl);
  }
}

section.commitment {
  padding-left: 0;
  padding-right: 0;
  padding-top: 3rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 641px) {
  section.commitment {
    padding-top: 10rem;
    padding-left: 5%;
    padding-right: 5%;
  }
}
section.commitment .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background-color: var(--lightgray);
  padding: 3%;
}
@media (min-width: 641px) {
  section.commitment .container {
    padding: 3%;
    border-radius: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 950px) {
  section.commitment .container {
    grid-template-columns: repeat(3, 1fr);
  }
}
section.commitment .container > * {
  padding: 12%;
}
section.commitment .container header {
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 3rem;
}
section.commitment .container header .h2 {
  margin-bottom: 0.2em;
  font-size: var(--3xl);
}
@media (min-width: 641px) {
  section.commitment .container header .h2 {
    font-size: var(--2xl);
  }
}
@media (min-width: 1024px) {
  section.commitment .container header .h2 {
    font-size: clamp(3.6rem, 3vw, 5.1rem);
  }
}
section.commitment .container header svg {
  max-width: 8rem;
  margin-bottom: 3rem;
  height: auto;
}
@media (min-width: 641px) {
  section.commitment .container header svg {
    position: absolute;
    top: 0;
    left: 5rem;
    transform: translateY(-50%);
    max-width: 13rem;
  }
}
section.commitment .container .card {
  border-radius: 6px;
  box-shadow: none;
  padding: 12%;
}
section.commitment .container .icon {
  width: 8rem;
  height: 8rem;
  margin-bottom: 3rem;
}
section.commitment .container .icon img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 100%;
}
section.commitment .container h3 {
  text-wrap: balance;
  text-transform: uppercase;
  font-family: var(--italic);
  line-height: 0.9;
  margin-bottom: 0.6em;
  font-size: var(--xl);
}
@media (min-width: 641px) {
  section.commitment .container h3 {
    font-size: var(--2xl);
  }
}
section.commitment .container h3 strong {
  color: var(--orange);
  font-weight: normal;
}

section.video-values {
  position: relative;
  background: #ff5003;
  padding: 5%;
}
section.video-values .texture {
  opacity: 0.15;
}
section.video-values .values-contain {
  position: relative;
}
section.video-values .values-contain:after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 38%, rgb(0, 0, 0) 100%);
}
@media (min-width: 800px) {
  section.video-values .values-contain:after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  }
}
section.video-values .values-contain img {
  max-height: 30rem;
}
@media (min-width: 800px) {
  section.video-values .values-contain img {
    max-height: none;
  }
}
section.video-values .values-contain .copy {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 12rem 5% 5rem 5%;
}
@media (min-width: 800px) {
  section.video-values .values-contain .copy {
    padding: 25rem 0 10rem 0;
  }
}
section.video-values .values-contain .copy button {
  border: 3px solid #ff5003;
  height: 14rem;
  width: 14rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  margin-bottom: 3rem;
}
@media (min-width: 800px) {
  section.video-values .values-contain .copy button {
    height: 18rem;
    width: 18rem;
    margin-bottom: 6rem;
  }
}
section.video-values .values-contain .copy button svg {
  position: relative;
  left: 0.5rem;
  max-width: 5rem;
}
section.video-values .values-contain .copy h2 {
  font-size: 5rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
@media (min-width: 800px) {
  section.video-values .values-contain .copy h2 {
    font-size: 7.43rem;
  }
}
@media (min-width: 1024px) {
  section.video-values .values-contain .copy h2 br {
    display: none;
  }
}
section.video-values .values-contain .copy .subhead {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 3.5rem;
  line-height: 1.4;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 641px) {
  section.video-values .values-contain .copy .subhead {
    font-size: 2.074rem;
  }
}
section.video-values .values-contain .copy .logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 800px) {
  section.video-values .values-contain .copy .logos {
    flex-direction: row;
    justify-content: center;
  }
}
section.video-values .values-contain .copy .logos .images {
  display: flex;
  align-items: center;
  gap: 2rem;
}
section.video-values .values-contain .copy .logos .images img {
  display: block;
  width: 100%;
  max-width: 9rem;
  max-height: 8rem;
}
@media (min-width: 641px) {
  section.video-values .values-contain .copy .logos .images img {
    max-width: 13rem;
    max-height: 9rem;
  }
}
section.video-values .values-contain .copy .logos p {
  font-size: 2.4rem;
  font-family: UnitedSansCB, Arial Narrow, Arial, sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.22em;
}

section.photo-w-copy {
  position: relative;
  background: #262626;
  padding: 20rem 10% 7rem 10%;
}
@media (min-width: 641px) {
  section.photo-w-copy {
    padding: 30rem 10%;
  }
}
section.photo-w-copy:after {
  position: absolute;
  content: "";
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 55%, rgb(0, 0, 0) 100%);
}
@media (min-width: 641px) {
  section.photo-w-copy:after {
    display: none;
  }
}
section.photo-w-copy img {
  height: 33rem;
  -o-object-position: 30%;
     object-position: 30%;
}
@media (min-width: 641px) {
  section.photo-w-copy img {
    height: 100%;
    opacity: 0.5;
    -o-object-position: 100%;
       object-position: 100%;
  }
}
section.photo-w-copy .copy {
  position: relative;
  z-index: 3;
  text-align: center;
}
section.photo-w-copy .copy .overline {
  font-family: Gilroy-ExtraBoldItalic, Arial Black, Arial Bold, Arial, sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.05;
  margin-bottom: 0.75em;
  text-transform: uppercase;
}
@media (min-width: 641px) {
  section.photo-w-copy .copy .overline {
    font-size: 2.2rem;
  }
}
section.photo-w-copy .copy h2 {
  font-size: clamp(5rem, 8.9vw, 8rem);
  margin-bottom: 2rem;
}
section.photo-w-copy .copy .tagline {
  font-family: Gilroy-ExtraBoldItalic, Arial Black, Arial Bold, Arial, sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.03em;
  line-height: 1;
  color: #ff5003;
  text-transform: uppercase;
  margin-bottom: 4rem;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 641px) {
  section.photo-w-copy .copy .tagline {
    max-width: 35rem;
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  section.photo-w-copy .copy .tagline {
    max-width: none;
  }
}
section.photo-w-copy .copy .actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  max-width: 20rem;
  margin: 0 auto;
}
@media (min-width: 641px) {
  section.photo-w-copy .copy .actions {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    max-width: none;
    gap: 2rem;
  }
}
section.photo-w-copy .copy .actions a {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 641px) {
  section.photo-w-copy .copy .actions a {
    width: auto;
  }
}
section.photo-w-copy .copy .actions .btn--orange {
  font-size: 1.7rem;
  padding: 0.9rem 3rem;
  white-space: nowrap;
}
section.photo-w-copy .copy .actions .btn--orange span {
  display: block;
  font-family: Gilroy-ExtraBoldItalic, Arial Black, Arial Bold, Arial, sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  line-height: 1;
  position: relative;
  top: 0;
  padding-right: 0;
  margin-right: 0;
}
