@font-face {
  font-family: "Fa solid 900";
  src: url('../fonts/fa-solid-900.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa 400";
  src: url('../fonts/fa-regular-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa Brands 400 (6.4.2)";
  src: url('../fonts/fa-brands-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: black;
  --primary-dark: #002c11;
  --paragraph-gray: #585858;
  --primary: #035925;
  --light-gray: #fafafa;
  --white: white;
  --secondary-orange: #f5e197;
  --secondary-red: #eecbaa;
  --secondary-yellow: #ffff7e;
  --gray: #ebebeb;
  --white-20: #fff3;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--black);
  font-family: Instrument Sans, sans-serif;
  font-size: 16px;
  line-height: 1.2em;
}

h1 {
  color: var(--black);
  letter-spacing: -1.28px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.1em;
}

h2 {
  color: var(--black);
  letter-spacing: -.8px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2em;
}

h3 {
  letter-spacing: -.56px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Instrument Sans, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2em;
}

h4 {
  color: var(--black);
  letter-spacing: -.52px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3em;
}

h5 {
  color: var(--black);
  letter-spacing: -.4px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2em;
}

h6 {
  color: var(--primary-dark);
  letter-spacing: -.48px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
}

p {
  color: var(--paragraph-gray);
  letter-spacing: -.32px;
  margin-bottom: 0;
  line-height: 1.5em;
}

a {
  color: var(--primary);
  letter-spacing: -.32px;
  align-items: center;
  font-weight: 500;
  line-height: 1.2em;
  text-decoration: none;
  transition: all .35s;
}

a:hover {
  color: var(--black);
}

ul {
  grid-row-gap: 15px;
  background-color: var(--paragraph-gray);
  color: var(--primary);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  flex-direction: column;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
  display: flex;
}

li {
  align-items: center;
  line-height: 1.4em;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  margin-bottom: 10px;
  display: block;
}

blockquote {
  text-align: center;
  letter-spacing: -.56px;
  background-image: url('../images/“-5.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto;
  border-left: 1px #000;
  max-width: 900px;
  margin: 20px auto;
  padding: 30px 20px 10px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.section.without-bottom-spacing {
  padding-bottom: 0;
}

.section.without-space {
  padding-top: 0;
  padding-bottom: 0;
}

.section.overflow-visible {
  overflow: visible;
}

.section.gray-bg {
  background-color: var(--light-gray);
}

.section.gray-without-bottom-space {
  background-color: var(--light-gray);
  padding-bottom: 0;
}

.section.dark-primary-bg {
  background-color: var(--primary-dark);
}

.base-container {
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.base-container.full-width {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.spacing-system-column {
  padding-right: 20px;
}

.color-wrapper {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  display: flex;
}

.headings-typography-wrapper {
  flex-flow: wrap;
  width: 47%;
  display: flex;
}

.primary-button {
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  letter-spacing: -.32px;
  border-radius: 50px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
  transition: background-color .35s cubic-bezier(.645, .045, .355, 1);
  display: inline-block;
}

.primary-button:hover {
  background-color: var(--secondary-orange);
  background-image: linear-gradient(319deg, var(--secondary-red), var(--secondary-yellow) 50%, var(--secondary-orange));
  color: var(--white);
}

.primary-button.search-button {
  background-color: var(--primary);
  transition-property: all;
}

.primary-button.search-button:hover {
  background-color: var(--secondary-orange);
  color: var(--black);
}

.primary-button.pagination {
  border-style: none;
  margin-top: 30px;
  padding-top: 8px;
  padding-bottom: 8px;
  transition-property: all;
}

.primary-button.pagination:hover {
  color: var(--primary);
}

.primary-button.cta:hover {
  background-color: var(--white);
  background-image: none;
}

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

.primary-button.center {
  justify-content: center;
  align-items: center;
  display: flex;
}

.primary-button.submit-button:hover {
  color: var(--black);
}

.nav-menu {
  text-align: right;
  justify-content: flex-end;
  align-items: center;
}

.nav-menu.home-2-menu {
  margin-left: 30px;
  margin-right: auto;
}

.nav-link {
  color: var(--white);
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  transition-property: none;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link.w--current {
  color: var(--primary-dark);
}

.nav-link.home-2 {
  padding-left: 20px;
  padding-right: 20px;
}

.nav-dropdown-toggle {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: var(--white);
  letter-spacing: -.48px;
  margin-left: 0;
  margin-right: 0;
  padding: 8px 20px;
  font-weight: 500;
  line-height: 1.5em;
  display: flex;
}

.nav-dropdown-toggle.black {
  color: var(--black);
  padding-left: 20px;
  padding-right: 20px;
}

.nav-dropdown-list {
  background-color: #fff;
  border: 1px solid #0000002e;
  border-radius: 10px;
  width: 200px;
  padding: 15px 20px;
}

.nav-dropdown-list.w--open {
  border-style: none;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0 0 10px #0000000a;
}

.nav-dropdown-list.megamenu {
  border-radius: 10px;
  width: 360px;
}

.nav-dropdown-list.megamenu.w--open {
  width: 490px;
  display: flex;
  left: -40px;
}

.nav-dropdown-link-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-dropdown-link {
  color: var(--black);
  width: 100%;
  margin-left: -20px;
  padding: 8px 8px 8px 0;
  font-size: 16px;
  font-weight: 500;
  transition: all .3s;
  display: flex;
}

.nav-dropdown-link:hover {
  color: var(--primary);
  margin-left: 0;
}

.nav-dropdown-link.w--current {
  color: var(--primary);
}

.nav-dropdown-link.collection-link {
  margin-left: 0;
}

.nav-item-title {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
}

.nav-item-title.line {
  text-underline-offset: 5px;
  text-decoration: underline;
}

.nav-item-title.black {
  color: var(--black);
}

.nav-item-title.home-2-line {
  color: var(--black);
  text-underline-offset: 5px;
  text-decoration: underline;
}

.licensing-title-wrapper {
  border-bottom: 1px #5e5e5e80;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.licensing-images-wrapper {
  border-top: 1px solid var(--gray);
  width: 100%;
  padding-top: 40px;
}

.licensing-image {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 320px;
}

.licensing-image-link {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.licensing-paragraph {
  width: 50%;
  margin-right: 40px;
}

.utility-page-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-bottom: 40px;
  padding-top: 40px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 280px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.password-image {
  width: 140px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.password-input {
  border: 1px solid var(--gray);
  color: var(--black);
  border-radius: 4px;
  min-width: 280px;
  height: auto;
  min-height: 48px;
  margin-bottom: 20px;
  padding: 14px 20px;
  font-size: 16px;
  line-height: 1.2em;
}

.password-input:focus {
  border: 1px solid var(--primary);
}

.password-input::placeholder {
  color: var(--paragraph-gray);
}

.password-title-wrapper {
  margin-bottom: 40px;
}

._404-paragraph {
  text-align: center;
  margin-top: 12px;
  margin-bottom: 40px;
}

._404-logo-wrapper {
  justify-content: center;
  display: flex;
  position: absolute;
  inset: 40px 0% auto;
}

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

._404-content-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  display: flex;
}

.blog-grid-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
}

.blog-grid-collection-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  display: grid;
}

.blog-grid-image-link {
  min-width: 100%;
  height: 240px;
  overflow: hidden;
}

.blog-grid-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.blog-grid-content-wrapper {
  background-color: var(--light-gray);
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 20px;
  display: flex;
  position: relative;
}

.blog-grid-item {
  display: inline-block;
}

.blog-grid-item-description {
  margin-top: 0;
  margin-bottom: 40px;
}

.nav-menu-wrapper {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.blog-grid-post-wrapper {
  border-radius: 10px;
  flex-flow: column;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.blog-template-wrapper {
  width: 100%;
  max-width: 1000px;
  margin-top: -20px;
  margin-right: auto;
}

.blog-template-pagination {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  align-items: center;
  margin-top: 60px;
  display: flex;
}

.prev-post-arrow {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 25px;
  font-family: "Fa solid 900", sans-serif;
}

.blog-template-pagination-icon {
  height: 24px;
}

.next-post-arrow {
  color: var(--paragraph-gray);
  margin-bottom: 0;
  margin-left: 25px;
  font-family: "Fa solid 900", sans-serif;
}

.blog-template-prev-button {
  flex: 1;
  display: flex;
}

.blog-template-next-button {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.blog-template-pagination-link {
  align-items: center;
  width: auto;
  display: flex;
}

.blog-template-next {
  text-align: right;
}

.footer {
  text-align: center;
  align-items: flex-start;
  padding-top: 70px;
  padding-bottom: 30px;
}

.footer-bottom-wrapper {
  grid-row-gap: 5px;
  border-top: 1px solid var(--gray);
  justify-content: space-between;
  width: 100%;
  padding-top: 30px;
  display: flex;
}

.footer-bottom-wrapper.home-2 {
  border-top-style: none;
  flex-flow: column;
  padding-top: 0;
}

.footer-rights {
  grid-column-gap: 5px;
  grid-row-gap: 0px;
  color: var(--paragraph-gray);
  letter-spacing: -.28px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2em;
  display: flex;
}

.footer-copyright {
  grid-column-gap: 5px;
  grid-row-gap: 0px;
  color: var(--paragraph-gray);
  text-align: center;
  letter-spacing: -.28px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2em;
  display: flex;
}

.footer-copyright-link {
  color: var(--primary);
  letter-spacing: -.28px;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
}

.footer-copyright-link:hover {
  color: var(--primary-dark);
}

.style-guide-button-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 40%;
  display: flex;
}

.paragraph-large {
  letter-spacing: -.36px;
  line-height: 1.5em;
}

.banner-title-wrapper {
  text-align: center;
  flex-flow: column;
  align-items: center;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.banner-title-wrapper.blog-1 {
  max-width: 800px;
}

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

.text-white.without-space {
  margin-top: 0;
  margin-bottom: 0;
}

.text-white.blog-1 {
  max-width: 600px;
}

.section-title-description {
  text-align: center;
  margin-top: 20px;
}

.accordion-toggle {
  white-space: normal;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  display: flex;
}

.accordion-list {
  background-color: #0000;
  width: 100%;
  display: block;
  position: static;
  overflow: hidden;
}

.accordion-list.w--open {
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 20px;
  display: block;
}

.accordion-wrapper {
  width: 100%;
  display: flex;
}

.accordion-item {
  background-color: var(--white);
  border-radius: 10px;
  width: 100%;
  margin-bottom: 20px;
  padding: 10px 30px;
  position: static;
}

.accordion-item.last {
  margin-bottom: 0;
}

.accordion-icon {
  height: 24px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 20px;
}

.accordion-wrap {
  width: 50%;
  margin-right: 20px;
}

.accordion-wrap.last-child {
  margin-right: 0;
}

.accordion-list-content {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 10px;
}

.job-position-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.job-position-content-wrapper {
  width: 60%;
  margin-top: -20px;
  padding-right: 80px;
}

.job-position-sidebar-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--white);
  border-radius: 10px;
  flex-flow: column;
  min-width: 30%;
  padding: 40px;
  display: flex;
}

.job-position-sidebar-wrap {
  align-items: center;
  display: flex;
}

.job-position-sidebar-wrap.last-child {
  margin-bottom: 20px;
}

.job-position-icon {
  color: var(--primary);
  margin-right: 10px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 18px;
}

.contacts-divider {
  background-color: var(--gray);
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.contacts-detail {
  justify-content: flex-start;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 4px;
  display: flex;
}

.contacts-icon {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
  font-family: "Fa solid 900", sans-serif;
}

.paragraph-no-margin {
  margin-top: 0;
  margin-bottom: 0;
}

.footer-link {
  color: var(--paragraph-gray);
  letter-spacing: -.48px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-weight: 500;
  line-height: 1.5em;
  transition: all .3s;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-wrapper {
  justify-content: space-between;
  width: 100%;
  margin-bottom: 40px;
  display: flex;
}

.footer-wrapper.home-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-top: 90px;
  margin-bottom: 0;
}

.footer-brand-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-brand-wrapper.home-2 {
  justify-content: space-between;
}

.footer-brand {
  color: #fff;
  height: 80px;
  margin-bottom: 10px;
}

.footer-brand.w--current {
  color: #fff;
  padding-left: 0;
}

.footer-brand.home-2 {
  height: 36px;
  display: flex;
}

.footer-brand.home-2.w--current {
  height: 36px;
}

.footer-links-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-logo {
  object-fit: contain;
  height: 100%;
}

.footer-logo.home-2 {
  object-fit: contain;
}

.search-result-item {
  margin-bottom: 30px;
}

.search-link {
  margin-bottom: 10px;
  font-size: 18px;
  transition: all .3s;
  display: inline-block;
}

.search-link:hover {
  color: var(--black);
}

.search-input {
  border: 1px solid var(--light-gray);
  color: var(--black);
  border-radius: 10px;
  height: auto;
  margin-bottom: 0;
  padding: 16px 22px;
  font-size: 16px;
  line-height: 1em;
}

.search-input:focus {
  border-color: var(--secondary-yellow);
}

.search-input::placeholder {
  color: var(--paragraph-gray);
}

.search-result-wrapper {
  max-width: 1200px;
  margin-top: 80px;
  margin-left: 15px;
  margin-right: 15px;
}

.footer-logo-wrapper {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 10px;
  display: flex;
}

.service-list-item {
  position: relative;
}

.slide-3 {
  max-height: 580px;
}

.about-3-tab-link {
  color: var(--white);
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  margin-bottom: -12px;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 19px;
  line-height: 32px;
  transition: all .3s;
  display: flex;
  position: relative;
}

.about-3-tab-link.w--current {
  color: var(--white);
  background-color: #0000;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 24px;
}

.portfolio-grid-collection-item {
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px #00000014;
}

.template-empty-state {
  background-color: #0000;
  padding: 30px 30px 30px 0;
  font-family: Lato, sans-serif;
  font-size: 16px;
}

.portfolio-masonry-image-wrapper {
  position: relative;
}

.landing-feature-icon {
  color: var(--white);
  background-color: #fff3;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 20px;
  display: flex;
}

.landing-inner-page-item {
  background-color: var(--primary);
  text-align: center;
  border-radius: 10px;
  width: 100%;
  padding: 6px;
  transition-property: none;
}

.landing-inner-page-image-wrapper {
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-dropdown-column {
  width: 33.33%;
}

.secondary-button {
  background-color: var(--white-20);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--white);
  letter-spacing: -.32px;
  border-radius: 100px;
  padding: 18px 20px;
  font-weight: 500;
  line-height: 1.5em;
  transition: all .35s cubic-bezier(.77, 0, .175, 1);
}

.secondary-button:hover {
  background-color: var(--white);
  color: var(--white);
}

.navbar-absolute {
  background-color: #ddd0;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  position: fixed;
  inset: 0% 0% auto;
}

.testimonials {
  padding-top: 80px;
  padding-bottom: 80px;
}

.blog-section-title {
  text-align: center;
  margin-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
}

.map-wrapper {
  position: relative;
}

.map-wrapper.home-page {
  width: 100%;
  margin-bottom: 60px;
}

.contacts-wrapper-grid {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  padding-left: 30px;
  padding-right: 30px;
}

.section-title-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 780px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.empty-state {
  letter-spacing: -.32px;
  background-color: #ddd0;
  padding-left: 0;
}

.courses-collection {
  width: 100%;
}

.home-4-testimonials-wrapper, .testimonials-wrapper-2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: stretch;
  width: 100%;
  margin-top: 10px;
  display: flex;
}

.top-banner-button-wrapper {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  margin-top: 38px;
  display: flex;
  position: relative;
}

.about-img {
  object-fit: cover;
  position: absolute;
}

.about-img._1 {
  z-index: 2;
  width: 350px;
  inset: 0% 0% auto 12%;
}

.about-img._5 {
  z-index: 4;
  width: 350px;
  inset: 60% 0% auto 24%;
}

.about-img._3 {
  z-index: 1;
  width: 300px;
  inset: 19% 4% 0% auto;
}

.about-img._4 {
  z-index: 5;
  width: 220px;
  inset: 47% 30% 0% 50%;
}

.about-img._2 {
  z-index: 3;
  width: 300px;
  inset: 31% auto 0% 2%;
}

.subtitle {
  border-bottom: 2px solid #80808026;
  margin-bottom: 30px;
  margin-right: 0;
  padding-bottom: 4px;
  display: inline-block;
}

.our-services-wrap {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  display: flex;
}

.central-alignment-heaading {
  text-align: center;
  margin-bottom: 75px;
}

.heading-wrapper {
  margin-top: 40px;
  margin-bottom: 30px;
}

.content-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 190px;
  display: flex;
}

.content {
  border-radius: 5px;
  margin-bottom: 30px;
  margin-left: 15px;
  margin-right: 15px;
}

.industries-block-wrapper {
  background-color: #0000;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  max-width: 35vw;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.industries-block-wrapper:hover {
  box-shadow: 0 10px 20px #14173326;
}

.blog-details-link-title {
  color: var(--black);
}

.home-9-team-item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 31%;
  position: relative;
}

.about-4-team-slide {
  width: 23%;
  margin-right: 30px;
}

.about-6-projects-item {
  text-align: center;
  object-fit: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 370px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-with-blue-bg {
  background-color: var(--primary);
  justify-content: center;
  display: flex;
}

.nav-dropdown-link-line {
  background-color: var(--primary);
  width: 16px;
  height: 2px;
  margin-right: 15px;
  display: inline-block;
}

.search {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.subtitle-2 {
  color: #fc8e44;
  border-bottom: 2px solid #80808026;
  margin-bottom: 30px;
  margin-right: 0;
  padding-bottom: 4px;
  display: inline-block;
}

.dropdown-nav-link {
  color: #999;
  margin-left: -20px;
  padding: 5px 0;
  font-family: Poppins;
  transition: color .2s;
  display: flex;
}

.dropdown-nav-link:hover, .dropdown-nav-link.w--current {
  color: #004ae2;
}

.gallery-image-link {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-19-gallery-img-link {
  justify-content: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.menu-wrap {
  align-items: center;
  display: flex;
}

.rich-text-style {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.rich-text-style h2, .rich-text-style h3, .rich-text-style h4 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.rich-text-style h5, .rich-text-style h6 {
  margin-top: 20px;
}

.rich-text-style ul {
  margin-top: 10px;
  margin-bottom: 10px;
}

.rich-text-style img {
  border-radius: 10px;
  margin-top: 40px;
  margin-bottom: 10px;
}

.home-banner-left-arrow {
  align-items: center;
  height: 40px;
  display: flex;
  inset: 0% auto 0% 2%;
}

.team-item {
  width: 33%;
}

.black-overlay {
  background-color: #0000004d;
  justify-content: space-between;
  align-items: flex-end;
  padding: 20px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.black-overlay.blog-category {
  background-color: #0009;
}

.center-title {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.brand-tablet {
  display: none;
}

.brand, .brand.w--current {
  height: 31px;
}

.footer-rights-wrapper {
  grid-column-gap: 5px;
  flex-flow: row;
  display: flex;
}

.error-message {
  color: var(--primary-dark);
  text-align: center;
  background-color: #0000;
  margin-top: 40px;
  padding: 0;
}

.footer-licensing-link {
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
}

.footer-licensing-link:hover {
  color: var(--primary-dark);
}

.home-1-banner-section {
  position: relative;
}

.home-1-banner {
  z-index: 1;
  flex-flow: column;
  padding-top: 300px;
  padding-bottom: 30px;
  display: flex;
  position: relative;
}

.background-video {
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.home-1-banner-overlay {
  z-index: 0;
  background-color: #00000040;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.home-1-banner-top-wrapper {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  border-bottom: 1px solid #ffffff1a;
  justify-content: space-between;
  padding-bottom: 56px;
  display: flex;
}

.home-1-h1-wrapper {
  text-align: right;
  max-width: 490px;
}

.home-1-banner-left-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 420px;
  display: flex;
}

.home-1-banner-labels-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  display: flex;
}

.label {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
}

.home-1-banner-text {
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2em;
}

.underlined-link {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--white);
  letter-spacing: -1px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 20px;
  font-weight: 500;
  display: flex;
}

.underlined-link:hover {
  color: var(--white);
}

.underlined-link.black {
  color: var(--black);
}

.home-1-banner-bottom-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  padding-top: 30px;
  display: flex;
}

.scroll-link-block {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: var(--white);
  letter-spacing: -.32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
  display: flex;
}

.scroll-link-block:hover {
  color: var(--white);
}

.image-2 {
  transform: rotate(90deg);
}

.logo {
  height: 100%;
}

.header-button-wrapper.tablet {
  margin-top: 20px;
  display: none;
}

.home-1-about {
  grid-column-gap: 140px;
  grid-row-gap: 140px;
  display: flex;
}

.title-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 55%;
  max-width: 470px;
  display: flex;
}

.paragraph-wrapper {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 40%;
  max-width: 463px;
  margin-top: 54px;
  display: flex;
}

.section-label {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid var(--gray);
  background-color: var(--white);
  letter-spacing: -.32px;
  border-radius: 50px;
  justify-content: flex-start;
  align-items: center;
  padding: 4px 12px;
  font-weight: 500;
  line-height: 1.5em;
  display: flex;
}

.heading-wrap {
  margin-top: 20px;
}

.labels-wrapper {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: wrap;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.about-label {
  background-color: var(--gray);
  color: var(--paragraph-gray);
  letter-spacing: -.32px;
  border-radius: 6px;
  padding: 4px 12px;
  font-weight: 500;
  line-height: 1.5em;
}

.home-1-numbers-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.large-text {
  color: var(--black);
  letter-spacing: -1.4px;
  margin-top: 10px;
  margin-bottom: 12px;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.1em;
}

.number-text-wrapper {
  padding-top: 10px;
}

.home-1-services-text-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  margin-top: 20px;
  display: flex;
}

.services-card {
  z-index: 0;
  background-color: #0003;
  position: absolute;
  inset: 0%;
}

.services-card.home-2 {
  z-index: 1;
  border-radius: 10px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
}

.services-card.home-2._1 {
  background-image: url('../images/FS01_IMG_8797.jpg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: cover;
}

.services-card.home-2._2 {
  background-image: url('../images/one_way_.webp');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.services-card.home-2._3 {
  background-image: url('../images/pallet_collars_.webp');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.without-space {
  margin-top: 0;
  margin-bottom: 0;
}

.primary-bg {
  z-index: -1;
  background-color: var(--primary);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  width: 200%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.home-1-testimonials-slider {
  background-color: #ddd0;
  margin-top: 40px;
}

.big-testimonial-slide {
  background-color: var(--light-gray);
  border-radius: 10px;
  max-width: 530px;
  margin-right: 20px;
  padding: 30px;
}

.testimonial-slide {
  background-color: var(--light-gray);
  border-radius: 10px;
  width: 310px;
  height: 100%;
  margin-right: 20px;
  padding: 30px 35px 30px 30px;
}

.testimonial-slide.black-bg {
  background-color: var(--black);
}

.testimonial-slide.primary-bg {
  z-index: auto;
  background-color: var(--primary);
  position: relative;
}

.home-1-testimonials-mask {
  box-sizing: content-box;
  max-width: 530px;
  overflow: visible;
}

.hidden-nav {
  display: none;
}

.testimonial-small-card {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  display: flex;
}

.testimonial-card {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  display: flex;
}

.client-name-wrap {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

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

.testimonial-quote {
  border: 1px solid var(--gray);
  background-color: var(--white);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 16px;
  display: flex;
}

.client-photo {
  background-color: var(--gray);
  object-fit: cover;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  margin-left: -13px;
}

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

.medium-weight-paragraph {
  font-weight: 500;
}

.testimonial-card-text {
  color: var(--black);
  letter-spacing: -.4px;
  max-width: 430px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3em;
}

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

.testimonials-client-photo {
  background-color: var(--gray);
  object-fit: cover;
  object-position: 50% 25%;
  border-radius: 50px;
  width: 50px;
  height: 50px;
}

.home-1-testimonials-left-arrow {
  border: 1px solid var(--gray);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
  inset: -90px 54px auto auto;
}

.home-2-testimonials-right-arrow {
  border: 1px solid var(--gray);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
  inset: -90px 0 auto auto;
}

.cta-card {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  background-image: linear-gradient(304deg, var(--secondary-red), var(--secondary-yellow) 50%, var(--secondary-orange));
  border-radius: 10px;
  justify-content: space-between;
  align-items: flex-end;
  padding: 60px 74px 60px 60px;
  display: flex;
}

.cta-text-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  max-width: 530px;
  display: flex;
}

.cta-paragraph {
  max-width: 500px;
}

.cta-text-wrap {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  display: flex;
}

.cta-labels-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-text {
  color: var(--black);
  text-align: left;
  letter-spacing: -.4px;
  max-width: 210px;
  margin-top: 30px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3em;
}

.footer-text.home-2 {
  color: var(--paragraph-gray);
  max-width: none;
  margin-top: 0;
}

.social-wrapper {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  margin-top: 40px;
  display: flex;
}

.social-link-block {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  border: 1px solid var(--gray);
  color: var(--black);
  text-align: left;
  letter-spacing: -.32px;
  border-radius: 50px;
  padding: 4px 12px;
  font-weight: 500;
  line-height: 1.5em;
  transition-property: none;
  display: flex;
}

.footer-social-image {
  height: 16px;
}

.footer-collection-list {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 4px;
  display: flex;
}

.footer-links-wrap {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  display: flex;
}

.clip {
  position: relative;
  overflow: hidden;
}

.button-text-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
  overflow: hidden;
}

.button-text-wrap.bottom-wrap {
  color: var(--black);
  position: absolute;
  bottom: -100%;
}

.button-text-wrap.bottom-wrap-white {
  position: absolute;
  bottom: -100%;
}

.button-text-wrap.dark {
  color: var(--black);
  justify-content: flex-start;
  align-items: center;
}

.underlined-link-text-wrap {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  display: flex;
}

.link-line {
  background-color: var(--white);
  width: 100%;
  height: 1px;
}

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

.arrow-burron-icon.black {
  filter: invert();
}

.blur-image {
  z-index: 0;
  filter: blur(24px);
  width: 100%;
  height: 40%;
  position: absolute;
  inset: auto 0% 0%;
}

.nav-collection-list-wrapper {
  overflow: hidden;
}

.nav-collection-item {
  margin-left: -20px;
  transition: all .3s;
}

.nav-collection-item:hover {
  margin-left: 0;
}

.nav-arrow.black {
  filter: invert();
}

.home-2-number-cell {
  grid-column-gap: 90px;
  grid-row-gap: 90px;
  background-color: var(--white);
  border-radius: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px;
  display: flex;
}

.home-2-service-section-title-wrapper {
  z-index: 1;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 60%;
  max-width: 420px;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0;
}

.home-2-services-block {
  display: flex;
  position: relative;
}

.services-tabs {
  flex: 1;
  display: flex;
}

.services-tabs-menu {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  min-width: 400px;
  max-width: 420px;
  margin-top: 258px;
  margin-bottom: 92px;
  margin-right: 80px;
  display: flex;
}

.service-tab-link {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #ddd0;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 10px 0 0;
  display: flex;
}

.service-tab-link.w--current {
  background-color: #ddd0;
}

.service-tab-link-content {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-flow: column;
  padding-right: 27px;
  display: flex;
}

.tab-indicator-wrapper {
  background-color: var(--gray);
  width: 100%;
  height: 1px;
}

.tab-indicator {
  background-color: var(--black);
  height: 1px;
}

.tm40-absolute-button-wrapper {
  z-index: 1;
  margin-top: 0;
  position: absolute;
  inset: auto auto 0% 0;
}

.services-tabs-content {
  flex: 1;
}

.service-tab-pane, .home-2-services-collection-list-wrapper, .home-2-services-collection-list {
  height: 100%;
}

.home-2-services-collection-item {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 10px;
  height: 100%;
  overflow: hidden;
}

.home-2-service-card-text {
  z-index: 1;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: relative;
}

.why-choose-us-light-gray-card {
  z-index: 1;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  background-color: var(--light-gray);
  border-radius: 10px;
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  display: flex;
  position: relative;
}

.home-2-footer {
  background-color: var(--light-gray);
  padding-top: 70px;
  padding-bottom: 30px;
}

.footer-email-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-email-wrapper.tablet-wrapper {
  display: none;
}

.footer-email-link {
  letter-spacing: -1.4px;
  text-underline-offset: 10px;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.1em;
  text-decoration: underline;
  text-decoration-thickness: 3px;
}

.values-block {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.white-section-label {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  color: var(--white);
  letter-spacing: -.32px;
  background-color: #ffffff1a;
  border-radius: 50px;
  justify-content: flex-start;
  align-items: center;
  padding: 4px 12px;
  font-weight: 500;
  line-height: 1.5em;
  display: flex;
}

.values-title-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 420px;
  display: flex;
}

.values-labels-wrapper {
  justify-content: center;
  align-items: flex-end;
  margin-top: 106px;
  display: flex;
  position: relative;
}

.values-label {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-image: linear-gradient(135deg, var(--secondary-orange), var(--secondary-yellow) 50%, var(--secondary-red));
  letter-spacing: -.8px;
  border-radius: 100px;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 26px;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2em;
  transition: all .2s;
  display: flex;
  transform: rotate(-6deg);
  box-shadow: 2px 6px 24px #00000073;
}

.values-label._1 {
  z-index: 0;
  position: relative;
}

.values-label._2 {
  position: absolute;
  bottom: 60px;
  left: auto;
  right: auto;
  transform: rotate(10deg);
}

.values-label._3 {
  z-index: 2;
  position: relative;
}

.values-icon {
  height: 44px;
}

.values-paragraph-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 658px;
  margin-top: 60px;
  display: flex;
}

.home-3-services-collection-item {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.service-link-block {
  border-radius: 4px;
  width: 90px;
  height: 102px;
  overflow: hidden;
}

.small-service-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.small-service-card {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.service-link {
  color: var(--black);
  letter-spacing: -.48px;
  font-size: 24px;
  font-weight: 500;
}

.service-link:hover {
  color: var(--primary);
}

.inner-banner-section {
  padding-top: 140px;
  padding-bottom: 70px;
  position: relative;
}

.inner-banner-image {
  object-fit: cover;
  object-position: 50% 0%;
  width: 38%;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.inner-banner-image.faq-page {
  object-position: 50% 50%;
}

.inner-banner-text-wrap {
  z-index: 1;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 55%;
  display: flex;
  position: relative;
}

.inner-banner-text-wrap.blog-post-page {
  width: 57%;
}

.inner-banner-paragraph {
  max-width: 450px;
}

.inner-banner {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.photo-bg-inner-section {
  background-image: linear-gradient(#00000080, #00000080), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.photo-bg-inner-section.blog-1-copy {
  background-image: url('../images/14146-1_114146 (1).webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.photo-inner-banner-text-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  display: flex;
  position: relative;
}

.tablet-banner-gradient {
  display: none;
}

.tablet-banner-gradient.service-detailed-page, .tablet-banner-gradient.faq-page {
  background-image: linear-gradient(#00000080, #0000);
  width: 38%;
  height: 200px;
  display: block;
  position: absolute;
  inset: 0% 0% auto auto;
}

.service-inner-banner-text-wrap {
  z-index: 1;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 55%;
  display: flex;
  position: relative;
}

.service-inner-banner-image {
  object-fit: cover;
  object-position: 50% 0%;
  width: 38%;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.rich-text-wrapper {
  max-width: 550px;
}

.service-details-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: -20px;
  display: flex;
}

.service-collection-list {
  grid-column-gap: 38px;
  grid-row-gap: 38px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.service-collection-list-wrapper {
  margin-top: 40px;
}

.service-page-services-wrapper {
  margin-top: 10px;
  position: sticky;
  inset: 140px 0% auto auto;
}

.dark-primary-banner-section {
  background-color: var(--primary-dark);
  padding-top: 140px;
  padding-bottom: 70px;
}

.lightbox-link {
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  height: 350px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.career-banner-paragraph {
  color: var(--white);
  max-width: 450px;
}

.career-details-banner {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.career-banner-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 750px;
  display: flex;
}

.career-banner-text-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.skills-wrapper {
  max-width: 35%;
  margin-top: -10px;
}

.skills-labels-wrapper {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: wrap;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.career-serviices-wrapper {
  margin-top: 60px;
}

.testimonial-page-card {
  background-color: var(--light-gray);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  padding: 30px 35px 30px 30px;
}

.blog-1-card-title-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border-bottom: 1px solid var(--gray);
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 20px;
  display: flex;
  position: relative;
}

.blog-link {
  color: var(--black);
  letter-spacing: -.48px;
  flex: 1;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2em;
}

.blog-link:hover {
  color: var(--primary);
}

.blog-category-label {
  z-index: 2;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--white-20);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: var(--white);
  letter-spacing: -.32px;
  border-radius: 50px;
  justify-content: flex-start;
  align-items: center;
  padding: 4px 12px;
  font-weight: 500;
  line-height: 1.5em;
  display: flex;
  position: absolute;
  top: 20px;
  left: 20px;
}

.blog-category-label:hover {
  background-color: var(--primary);
  color: var(--white);
}

.blog-category-label.blog-1 {
  background-color: var(--primary);
  color: var(--white);
  position: static;
  top: -17px;
  left: 10px;
}

.blog-category-label.blog-1:hover {
  background-color: var(--secondary-orange);
  background-image: linear-gradient(108deg, var(--secondary-orange), var(--secondary-yellow) 52%, var(--secondary-red));
  color: var(--black);
}

.blog-post-page-h1 {
  font-size: 50px;
}

._404-text {
  color: var(--primary);
  font-size: 200px;
  font-weight: 500;
  line-height: 1em;
}

.field-label {
  font-weight: 400;
}

.password-button-wrapper {
  flex-flow: column;
  display: flex;
}

.search-page-banner {
  background-color: var(--primary-dark);
  padding-top: 140px;
  padding-bottom: 55px;
}

.search-wrap {
  flex-flow: column;
  max-width: 1200px;
  margin-left: 15px;
  margin-right: 15px;
  display: flex;
}

.text-block-3 {
  margin-bottom: 10px;
}

.hidden-text {
  display: none;
}

.close-image {
  width: 12px;
  height: 12px;
}

.promotion-labels-wrapper-to-remove {
  z-index: 2147483647;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: flex;
  position: fixed;
  bottom: 5px;
  left: 5px;
  right: 5px;
}

.promotion-label-more-templates {
  color: #000;
  letter-spacing: normal;
  text-transform: capitalize;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  width: 144px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  display: flex;
}

.promotion-label-more-templates:hover {
  opacity: 1;
  color: #000;
}

.promotion-label-left {
  background-color: #0055d4;
  border-radius: 4px;
  width: 100%;
  max-width: 290px;
  position: absolute;
}

.promotion-label-paragraph {
  color: #fff;
  text-align: left;
  letter-spacing: 0;
  max-width: 94%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5em;
}

.promotion-label-buy-this-template {
  color: #000;
  letter-spacing: normal;
  text-transform: capitalize;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  width: 144px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  display: flex;
}

.promotion-label-buy-this-template:hover {
  opacity: 1;
  color: #000;
}

.promotion-label-right {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
  position: absolute;
  right: 10px;
}

.promotion-label-close {
  cursor: pointer;
  padding: 10px 20px;
  position: absolute;
  top: -7px;
  right: -14px;
}

.promotion-coupon {
  color: #101828;
  background-color: #fff;
  border-radius: 5px;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 12px;
  display: inline-block;
}

.promotion-label-holder {
  grid-row-gap: 10px;
  flex-direction: column;
  padding: 15px;
  display: flex;
  position: relative;
}

.promotion-icon {
  object-fit: contain;
  margin-right: 8px;
}

.promotion-label-button {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 5px 15px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3em;
}

.promotion-label-button:hover {
  opacity: 1;
  color: #ffffffb3;
}

@media screen and (min-width: 1280px) {
  h1 {
    letter-spacing: -1.4px;
    font-size: 70px;
  }

  .section {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .spacing-system-column {
    padding-right: 30px;
  }

  .headings-typography-wrapper {
    width: 48%;
  }

  .nav-dropdown-list.megamenu.w--open {
    left: 0;
  }

  .footer {
    padding-top: 110px;
  }

  .footer-bottom-wrapper {
    margin-top: 30px;
  }

  .banner-title-wrapper {
    max-width: 600px;
  }

  .banner-title-wrapper.blog-1 {
    max-width: 850px;
  }

  .accordion-item {
    border-radius: 10px;
  }

  .job-position-sidebar-wrapper {
    min-width: 35%;
  }

  .search-result-wrapper {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
  }

  .testimonials {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .blog-section-title {
    margin-bottom: 70px;
  }

  .map-wrapper {
    padding-right: 70px;
  }

  .section-title-center {
    margin-bottom: 70px;
  }

  .about-img._3 {
    width: 340px;
  }

  .about-img._4 {
    width: 280px;
  }

  .about-img._2 {
    width: 340px;
  }

  .industries-block-wrapper {
    position: relative;
  }

  .section-with-blue-bg {
    padding-left: 40px;
    padding-right: 40px;
  }

  .black-overlay {
    padding: 30px;
  }

  .center-title {
    padding-right: 140px;
  }

  .home-1-banner {
    padding-top: 350px;
  }

  .home-1-banner-left-wrapper {
    max-width: 490px;
  }

  .home-1-banner-text {
    font-size: 28px;
  }

  .home-1-about {
    grid-column-gap: 180px;
    grid-row-gap: 180px;
  }

  .title-wrapper {
    width: 50%;
  }

  .large-text {
    font-size: 70px;
  }

  .services-card.home-2._2 {
    background-image: url('../images/one_way_.webp');
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .services-card.home-2._3 {
    background-image: url('../images/pallet_collars_.webp');
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .cta-text-wrap {
    grid-column-gap: 120px;
    grid-row-gap: 120px;
  }

  .footer-links-wrap {
    grid-column-gap: 70px;
    grid-row-gap: 70px;
  }

  .home-2-service-section-title-wrapper {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    width: 25%;
    max-width: 330px;
    margin-left: 0;
    margin-right: 0;
  }

  .services-tabs-menu {
    margin-right: 110px;
  }

  .service-tab-link-content {
    padding-right: 27px;
  }

  .home-2-footer {
    padding-top: 110px;
  }

  .footer-email-link {
    font-size: 70px;
  }

  .home-3-services-collection-item {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: row;
  }

  .inner-banner-section {
    padding-top: 180px;
  }

  .inner-banner-image {
    width: 40%;
  }

  .inner-banner-text-wrap {
    width: 50%;
  }

  .inner-banner-text-wrap.blog-post-page {
    width: 55%;
  }

  .photo-bg-inner-section {
    padding-top: 160px;
    padding-bottom: 120px;
  }

  .tablet-banner-gradient.service-detailed-page, .tablet-banner-gradient.faq-page {
    width: 40%;
  }

  .service-inner-banner-text-wrap {
    width: 60%;
  }

  .service-inner-banner-image {
    width: 40%;
  }

  .rich-text-wrapper {
    max-width: 650px;
  }

  .search-wrap {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1440px) {
  h1, h3, h4, h5, h6 {
    margin-bottom: 10px;
  }

  .base-container {
    max-width: 1300px;
  }

  .licensing-paragraph {
    width: 45%;
  }

  .blog-grid-image-link {
    height: 280px;
  }

  .blog-grid-content-wrapper {
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .search-result-wrapper {
    max-width: 1300px;
  }

  .about-img._1 {
    width: 380px;
  }

  .about-img._3 {
    width: 400px;
  }

  .about-img._4 {
    width: 300px;
  }

  .about-img._2 {
    width: 390px;
  }

  .our-services-wrap {
    align-items: center;
  }

  .section-with-blue-bg {
    padding-left: 100px;
    padding-right: 100px;
  }

  .home-1-numbers-wrapper {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .services-card.home-2._2 {
    background-image: url('../images/one_way_.webp');
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .services-card.home-2._3 {
    background-image: url('../images/pallet_collars_.webp');
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .inner-banner-section {
    justify-content: flex-start;
    align-items: flex-end;
    padding-top: 220px;
    display: flex;
  }

  .inner-banner-image {
    width: 45%;
  }

  .inner-banner-text-wrap.blog-post-page {
    width: 50%;
  }

  .tablet-banner-gradient.faq-page {
    width: 45%;
  }

  .service-inner-banner-text-wrap {
    width: 55%;
  }

  .service-inner-banner-image {
    width: 40%;
  }

  .service-details-wrapper {
    grid-column-gap: 130px;
    grid-row-gap: 130px;
  }

  .blog-link {
    letter-spacing: -.48px;
    font-size: 24px;
  }

  .search-wrap {
    max-width: 1300px;
  }
}

@media screen and (min-width: 1920px) {
  .base-container {
    max-width: 1440px;
  }

  .licensing-paragraph {
    width: 40%;
  }

  .footer-bottom-wrapper {
    flex-flow: row;
    justify-content: center;
  }

  .style-guide-button-wrapper {
    width: 30%;
  }

  .job-position-sidebar-wrapper {
    min-width: 32%;
  }

  .contacts-divider {
    background-color: var(--secondary-yellow);
  }

  .footer-wrapper {
    text-align: center;
    justify-content: center;
  }

  .footer-brand.w--current {
    height: 50px;
  }

  .search-result-wrapper {
    max-width: 1440px;
  }

  .footer-logo-wrapper {
    align-items: center;
  }

  .about-img._1 {
    width: 420px;
    left: 16%;
  }

  .about-img._3 {
    width: 430px;
    top: 20%;
    left: 54%;
  }

  .about-img._4 {
    left: 48%;
  }

  .section-with-blue-bg {
    padding-left: 180px;
    padding-right: 180px;
  }

  .home-1-banner {
    padding-top: 500px;
  }

  .services-card.home-2._1 {
    background-image: url('../images/FS01_IMG_8797.jpg');
    background-position: 0 0;
    background-size: auto;
  }

  .services-card.home-2._2 {
    background-image: url('../images/one_way_.webp');
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .services-card.home-2._3 {
    background-image: url('../images/pallet_collars_.webp');
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
  }

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

  .footer-links-wrap {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .blur-image {
    filter: blur(10px);
  }

  .services-tabs-menu {
    max-width: 500px;
  }

  .service-tab-link-content {
    padding-right: 100px;
  }

  .home-2-footer {
    background-color: var(--light-gray);
  }

  .footer-email-wrapper {
    justify-content: space-between;
    align-items: flex-start;
  }

  .inner-banner-section {
    justify-content: flex-start;
    align-items: flex-end;
    display: flex;
  }

  .inner-banner-image {
    width: 47%;
  }

  .inner-banner-text-wrap {
    width: 42%;
  }

  .tablet-banner-gradient.service-detailed-page, .tablet-banner-gradient.faq-page {
    width: 47%;
  }

  .service-inner-banner-text-wrap {
    width: 42%;
  }

  .service-inner-banner-image {
    width: 47%;
  }

  .service-details-wrapper {
    grid-column-gap: 110px;
    grid-row-gap: 110px;
  }

  .skills-wrapper {
    max-width: 32%;
  }

  .blog-1-card-title-wrapper {
    flex-flow: column;
  }

  .search-wrap {
    max-width: 1440px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 42px;
  }

  .primary-button {
    display: block;
  }

  .nav-menu {
    background-color: var(--white);
    flex-direction: column;
    width: 320px;
    inset: 0% auto 0% 0%;
  }

  .nav-menu.home-2-menu {
    margin-left: 0;
  }

  .menu-button {
    text-align: right;
    background-color: #0000;
    padding: 0;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .nav-link {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 0;
    display: flex;
  }

  .nav-link.home-2 {
    padding-left: 0;
  }

  .nav-dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    transition: opacity .5s;
    display: flex;
    overflow: hidden;
  }

  .nav-dropdown-toggle {
    color: var(--black);
    align-items: center;
    padding: 10px 0;
    display: flex;
  }

  .nav-dropdown-toggle.black {
    padding-left: 0;
  }

  .nav-dropdown-list {
    border-style: none;
    flex-direction: column;
    width: auto;
    padding: 0 40px 0 20px;
    display: flex;
    position: static;
  }

  .nav-dropdown-list.w--open {
    box-shadow: none;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    position: static;
  }

  .nav-dropdown-list.megamenu {
    width: auto;
    height: 270px;
    padding-left: 20px;
    padding-right: 40px;
    overflow: scroll;
  }

  .nav-dropdown-link-wrapper {
    flex-flow: wrap;
    padding-right: 0;
  }

  .nav-dropdown-link-wrapper:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-dropdown-link {
    margin-left: 0;
    margin-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .close-menu-button, .close-menu-button.w--open {
    background-color: #0000;
    padding: 0 20px 0 0;
  }

  .nav-close-icon {
    z-index: 15;
    align-self: stretch;
    margin-bottom: 2px;
  }

  .nav-item-title {
    color: var(--black);
  }

  .licensing-image {
    height: 340px;
  }

  .licensing-paragraph {
    width: 100%;
  }

  .blog-grid-collection-list {
    column-count: 2;
    grid-template-columns: 1fr;
  }

  .blog-template-pagination {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-top: 40px;
  }

  .blog-template-pagination-icon {
    height: 22px;
  }

  .footer-bottom-wrapper {
    flex-flow: column;
    align-items: center;
  }

  .footer-bottom-wrapper.home-2 {
    align-items: center;
    width: auto;
    position: absolute;
    bottom: 20px;
    left: 15px;
    right: 15px;
  }

  .banner-title-wrapper.blog-1 {
    max-width: 600px;
  }

  .job-position-wrapper {
    flex-flow: column;
  }

  .job-position-content-wrapper {
    width: 100%;
    padding-right: 0;
  }

  .job-position-sidebar-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: wrap;
    justify-content: space-between;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    top: 20px;
  }

  .job-position-sidebar-wrap.last-child {
    margin-bottom: 0;
  }

  .footer-wrapper {
    flex-wrap: wrap;
  }

  .footer-wrapper.home-2 {
    margin-top: 0;
    margin-bottom: 80px;
  }

  .footer-brand-wrapper {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 50px;
  }

  .footer-brand-wrapper.home-2 {
    order: 0;
    margin-bottom: 20px;
  }

  .footer-brand.home-2 {
    height: 44px;
    margin-bottom: 0;
  }

  .footer-logo.home-2 {
    width: auto;
  }

  .search-input:focus {
    border: 1px solid var(--primary);
  }

  .nav-dropdown-column {
    justify-content: center;
    width: 180px;
  }

  .navbar-absolute {
    height: 60px;
  }

  .testimonials {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .blog-section-title {
    margin-bottom: 60px;
  }

  .contacts-wrapper-grid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-title-center {
    margin-bottom: 60px;
  }

  .home-4-testimonials-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .testimonials-wrapper-2 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .about-img._1 {
    top: 7%;
    left: 15px;
  }

  .about-img._5 {
    top: 58%;
    bottom: 0;
    left: 60px;
  }

  .about-img._3 {
    width: 360px;
    top: 0%;
    right: 15px;
  }

  .about-img._4 {
    width: 240px;
    top: 57%;
    left: auto;
    right: 15px;
  }

  .about-img._2 {
    z-index: 5;
    top: 30%;
    left: 35%;
  }

  .subtitle {
    margin-bottom: 30px;
  }

  .content {
    margin-bottom: 0;
  }

  .industries-block-wrapper {
    max-width: 45vw;
  }

  .about-4-team-slide {
    width: 100%;
  }

  .nav-dropdown-link-line {
    display: none;
  }

  .subtitle-2 {
    margin-bottom: 30px;
  }

  .dropdown-nav-link {
    color: #222;
    padding-top: 12px;
    padding-bottom: 12px;
    font-family: Lato, sans-serif;
    font-weight: 700;
  }

  .dropdown-nav-link.w--current {
    color: #004ae2;
  }

  .menu-wrap {
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .home-banner-left-arrow {
    inset: 20% auto auto 4%;
  }

  .tablet-menu {
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    display: flex;
  }

  .image-burger {
    margin-bottom: 2px;
  }

  .image-burger.white {
    filter: invert();
  }

  .brand-tablet {
    height: 31px;
    display: block;
  }

  .brand-tablet.w--current {
    height: 31px;
  }

  .home-1-banner {
    padding-top: 220px;
  }

  .home-1-banner.mobile {
    padding-top: 160px;
  }

  .home-1-banner-overlay {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }

  .home-1-banner-top-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .home-1-banner-top-wrapper.mobile {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    place-items: start stretch;
    display: grid;
  }

  .home-1-h1-wrapper.mobile {
    text-align: left;
    max-width: 500px;
  }

  .home-1-banner-left-wrapper {
    max-width: 350px;
  }

  .home-1-banner-left-wrapper.mobile {
    max-width: 450px;
  }

  .header-button-wrapper {
    display: none;
  }

  .header-button-wrapper.tablet {
    display: block;
  }

  .home-1-about {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .title-wrapper {
    width: 70%;
    max-width: none;
  }

  .paragraph-wrapper {
    width: 100%;
    max-width: 540px;
    margin-top: 0;
  }

  .home-1-numbers-wrapper {
    flex-flow: wrap;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .large-text {
    margin-top: 0;
    font-size: 52px;
  }

  .large-text.numbers {
    margin-top: 10px;
    font-size: 64px;
  }

  .services-card.home-2._1 {
    background-image: url('../images/FS01_IMG_8797.jpg');
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .services-card.home-2._2 {
    background-image: url('../images/one_way_.webp');
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .services-card.home-2._3 {
    background-image: url('../images/pallet_collars_.webp');
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .cta-card {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-items: end stretch;
    display: grid;
  }

  .cta-text-wrapper {
    max-width: 500px;
  }

  .cta-text-wrap {
    justify-content: flex-start;
    align-items: flex-start;
  }

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

  .footer-links-wrap {
    justify-content: space-between;
    width: 100%;
  }

  .clip.nav {
    width: 100%;
  }

  .button-text-wrap.nav {
    justify-content: space-between;
    width: 100%;
  }

  .number-cell {
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 45%;
    display: flex;
  }

  .nav-collection-item {
    margin-left: 0;
  }

  .nav-arrow {
    filter: invert();
  }

  .home-2-number-cell {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    padding: 20px;
  }

  .home-2-service-section-title-wrapper {
    width: 80%;
    max-width: none;
    padding-bottom: 40px;
    position: relative;
  }

  .home-2-services-block {
    flex-flow: column;
  }

  .services-tabs-menu {
    width: 40%;
    min-width: auto;
    margin-top: 0;
    margin-right: 40px;
  }

  .home-2-service-card-text {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-2-footer {
    position: relative;
  }

  .footer-email-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    display: none;
  }

  .footer-email-wrapper.tablet-wrapper {
    margin-top: 40px;
    margin-bottom: 30px;
    display: flex;
  }

  .footer-email-link {
    font-size: 50px;
  }

  .home-3-services-collection-item {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: row;
  }

  .service-link-block {
    width: 200px;
    height: 150px;
  }

  .small-service-card {
    max-width: 400px;
  }

  .inner-banner-text-wrap {
    width: 55%;
  }

  .inner-banner-text-wrap.blog-post-page {
    width: 60%;
  }

  .photo-bg-inner-section {
    padding-top: 100px;
  }

  .tablet-banner-gradient {
    z-index: 1;
    background-image: linear-gradient(#fffc, #fff0);
    width: 33%;
    height: 160px;
    display: block;
    position: absolute;
    inset: 0% 0% auto auto;
  }

  .tablet-banner-gradient.service-detailed-page, .tablet-banner-gradient.faq-page {
    background-image: linear-gradient(#ffffff80, #0000);
  }

  .service-inner-banner-text-wrap {
    width: 55%;
  }

  .rich-text-wrapper {
    max-width: 650px;
  }

  .service-details-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .service-collection-list {
    flex-flow: column;
    display: flex;
  }

  .service-page-services-wrapper {
    width: 100%;
    position: static;
    top: 0;
  }

  .dark-primary-banner-section {
    padding-top: 100px;
  }

  .lightbox-link {
    height: 300px;
  }

  .career-details-banner {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .career-banner-wrap {
    max-width: 650px;
  }

  .skills-wrapper {
    max-width: 100%;
    margin-top: 40px;
  }

  .search-page-banner {
    padding-top: 100px;
  }

  .promotion-labels-wrapper-to-remove {
    display: none;
  }

  .promotion-label-left {
    max-width: 380px;
  }

  .promotion-label-holder {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  blockquote {
    font-size: 24px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .spacing-system-column {
    margin-top: 20px;
  }

  .headings-typography-wrapper, .primary-button.search-button {
    width: 100%;
  }

  .nav-link {
    margin-left: 0;
  }

  .licensing-title-wrapper {
    margin-bottom: 20px;
  }

  .licensing-images-wrapper {
    padding-top: 30px;
  }

  .licensing-paragraph {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .utility-page-content {
    width: 70%;
  }

  .password-image {
    width: 100px;
  }

  .password-input {
    min-width: auto;
  }

  .blog-grid-collection-list {
    column-count: 1;
  }

  .blog-grid-content-wrapper {
    min-height: 260px;
  }

  .blog-grid-item {
    width: 100%;
  }

  .blog-template-pagination {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    align-items: stretch;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .style-guide-button-wrapper {
    width: 100%;
  }

  .banner-title-wrapper {
    max-width: 420px;
  }

  .accordion-wrapper {
    flex-wrap: wrap;
  }

  .accordion-wrap {
    width: 100%;
    margin-right: 0;
  }

  .job-position-wrapper {
    flex-wrap: wrap;
  }

  .job-position-content-wrapper {
    width: 100%;
    padding-right: 0;
  }

  .job-position-sidebar-wrapper {
    flex-flow: column;
    width: 100%;
    padding: 40px;
    position: relative;
    top: 0;
  }

  .job-position-sidebar-wrap.last-child {
    margin-bottom: 20px;
  }

  .footer-wrapper {
    grid-column-gap: 50px;
    justify-content: center;
  }

  .footer-brand-wrapper {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
  }

  .footer-brand {
    padding-left: 0;
  }

  .search-result-item {
    margin-bottom: 20px;
  }

  .search-result-wrapper {
    margin-top: 60px;
  }

  .footer-logo-wrapper {
    width: auto;
  }

  .about-3-tab-link.w--current {
    font-size: 20px;
  }

  .testimonials {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .blog-section-title {
    margin-bottom: 40px;
  }

  .contacts-wrapper-grid {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .section-title-center {
    margin-bottom: 40px;
  }

  .home-4-testimonials-wrapper {
    grid-row-gap: 30px;
    width: 100%;
  }

  .testimonials-wrapper-2 {
    width: 100%;
  }

  .about-img {
    width: 100%;
    max-height: 420px;
  }

  .about-img._1, .about-img._5, .about-img._3, .about-img._4, .about-img._2 {
    width: 100%;
    position: static;
  }

  .subtitle {
    line-height: 16px;
  }

  .our-services-wrap {
    grid-row-gap: 10px;
    width: 100%;
  }

  .content-wrapper {
    flex-wrap: wrap;
    width: auto;
  }

  .industries-block-wrapper {
    max-width: none;
  }

  .home-9-team-item {
    width: 48%;
  }

  .search {
    flex-direction: column;
    margin-top: 20px;
  }

  .subtitle-2 {
    line-height: 16px;
  }

  .home-banner-left-arrow {
    top: 6%;
  }

  .team-item {
    width: 70%;
  }

  .image-burger.home-2-white {
    filter: none;
  }

  .brand-tablet {
    justify-content: flex-start;
    padding-left: 0;
  }

  .brand {
    padding-left: 0;
  }

  .home-1-banner {
    padding-top: 160px;
  }

  .home-1-banner-overlay {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }

  .home-1-banner-top-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .home-1-h1-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    text-align: left;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .home-1-banner-left-wrapper {
    max-width: none;
  }

  .title-wrapper {
    width: 100%;
  }

  .title-wrapper.testimonials-home-1 {
    width: 80%;
  }

  .paragraph-wrapper {
    max-width: none;
  }

  .services-card.home-2 {
    min-height: 450px;
  }

  .cta-card {
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer-links-wrap {
    grid-column-gap: 50px;
    grid-row-gap: 20px;
    flex-flow: wrap;
  }

  .home-2-service-section-title-wrapper {
    width: 100%;
    padding-bottom: 20px;
  }

  .services-tabs {
    flex-flow: column;
  }

  .services-tabs-menu {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    margin-right: 0;
  }

  .tm40-absolute-button-wrapper {
    margin-top: 40px;
    display: flex;
    position: relative;
  }

  .services-tabs-content {
    margin-top: 40px;
  }

  .service-tab-pane {
    height: auto;
  }

  .home-2-services-collection-list-wrapper {
    width: 100%;
    min-height: 450px;
    display: flex;
  }

  .home-2-services-collection-list {
    width: 100%;
    height: auto;
  }

  .home-2-services-collection-item {
    width: 100%;
  }

  .why-choose-us-light-gray-card {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 90px 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    padding-top: 10px;
    display: grid;
  }

  .values-label {
    letter-spacing: -.48px;
    font-size: 24px;
  }

  .values-icon {
    height: 32px;
  }

  .inner-banner-section {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-top: 100px;
    padding-bottom: 0;
  }

  .inner-banner-image {
    width: 100%;
    height: 500px;
    position: relative;
    inset: auto 0% 0%;
  }

  .inner-banner-text-wrap {
    width: 80%;
  }

  .inner-banner-text-wrap.blog-post-page {
    width: 100%;
    margin-bottom: 40px;
  }

  .inner-banner {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .photo-bg-inner-section {
    padding-bottom: 60px;
  }

  .tablet-banner-gradient {
    display: none;
  }

  .service-inner-banner-text-wrap {
    width: 100%;
    margin-bottom: 40px;
  }

  .service-inner-banner-image {
    width: 100%;
    height: 500px;
    position: relative;
    inset: auto 0% 0%;
  }

  .rich-text-wrapper {
    max-width: none;
  }

  .blog-post-page-h1 {
    font-size: 48px;
  }

  .search-page-banner {
    padding-bottom: 45px;
  }

  .promotion-label-left {
    max-width: 300px;
  }
}

@media screen and (max-width: 479px) {
  .nav-link {
    width: 99%;
  }

  .nav-dropdown-list.megamenu {
    padding-right: 0;
  }

  .licensing-title-wrapper {
    grid-column-gap: 20px;
    flex-wrap: wrap;
  }

  .utility-page-content {
    width: 100%;
  }

  .blog-grid-item-description {
    margin-bottom: 20px;
  }

  .blog-template-pagination {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .blog-template-prev-button, .blog-template-next-button {
    flex: none;
    width: 100%;
  }

  .footer {
    text-align: left;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: block;
  }

  .footer-bottom-wrapper {
    margin-top: 0;
  }

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

  .footer-copyright {
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .accordion-item {
    padding-left: 15px;
    padding-right: 15px;
  }

  .job-position-sidebar-wrapper {
    min-width: auto;
    padding: 20px;
  }

  .footer-wrapper {
    grid-row-gap: 30px;
    margin-top: 0;
  }

  .footer-wrapper.home-2 {
    margin-bottom: 100px;
  }

  .footer-brand-wrapper {
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
  }

  .footer-brand-wrapper.home-2 {
    margin-bottom: 0;
  }

  .footer-brand {
    height: auto;
  }

  .footer-brand.w--current {
    height: 50px;
  }

  .footer-logo.home-2 {
    width: auto;
  }

  .footer-logo-wrapper {
    align-items: center;
  }

  .about-3-tab-link {
    font-size: 16px;
  }

  .about-3-tab-link.w--current {
    font-size: 18px;
  }

  .landing-feature-icon {
    margin-bottom: 10px;
  }

  .section-title-center {
    margin-bottom: 20px;
  }

  .our-services-wrap, .home-9-team-item, .team-item {
    width: 100%;
  }

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

  .brand-tablet {
    padding-left: 0;
  }

  .footer-rights-wrapper {
    flex-flow: wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .footer-licensing-link {
    text-align: center;
    justify-content: center;
    line-height: 1.6em;
  }

  .home-1-banner-labels-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .home-1-banner-bottom-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .title-wrapper.testimonials-home-1 {
    width: 100%;
  }

  .large-text {
    font-size: 42px;
  }

  .home-1-testimonials-slider {
    height: auto;
    margin-bottom: 90px;
    display: flex;
  }

  .big-testimonial-slide {
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 332px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .testimonial-slide {
    width: 100%;
    min-height: 332px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .testimonial-slide.black-bg {
    width: 100%;
  }

  .home-1-testimonials-mask {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    height: 100%;
    overflow: hidden;
  }

  .testimonial-small-card {
    height: auto;
    min-height: 280px;
  }

  .testimonial-card {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    min-height: 280px;
    display: grid;
  }

  .testimonial-quote {
    display: none;
  }

  .client-photo {
    margin-left: 0;
  }

  .home-1-testimonials-left-arrow {
    inset: auto auto -90px 0;
  }

  .home-2-testimonials-right-arrow {
    inset: auto auto -90px 54px;
  }

  .cta-card {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .cta-text-wrapper {
    max-width: none;
  }

  .cta-labels-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 0px;
    flex-flow: wrap;
  }

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

  .social-wrapper {
    flex-flow: wrap;
  }

  .footer-links-wrap {
    grid-column-gap: 80px;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .number-cell {
    width: 100%;
  }

  .why-choose-us-light-gray-card {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 20px;
    display: flex;
  }

  .footer-email-link {
    font-size: 26px;
  }

  .values-labels-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 40px;
  }

  .home-3-services-collection-item {
    flex-flow: column;
  }

  .service-link-block {
    border-radius: 10px;
    width: 100%;
    height: 350px;
  }

  .inner-banner-image {
    height: 400px;
  }

  .inner-banner-text-wrap, .service-inner-banner-text-wrap {
    width: 100%;
  }

  .service-inner-banner-image {
    height: 400px;
  }

  .testimonial-page-card {
    padding-left: 15px;
    padding-right: 15px;
  }

  .blog-category-label {
    top: 15px;
    left: 15px;
  }

  ._404-text {
    font-size: 140px;
  }

  .promotion-label-left {
    bottom: 90px;
    left: auto;
    right: 12px;
  }
}

@media screen and (max-width: 991px) {
  #w-node-eb4cd57a-4a15-4380-cd2d-81105d6f210f-381dc532, #w-node-e3d41142-3d3c-b58c-f01c-d39fc3126aa3-381dc532, #w-node-_2e3b940e-b746-77ec-cb2a-97e3244dda8d-381dc5be {
    order: -9999;
  }
}

@media screen and (max-width: 767px) {
  #w-node-eb4cd57a-4a15-4380-cd2d-81105d6f210f-381dc532 {
    order: -9999;
  }

  #w-node-_761b25c5-1aed-f923-c464-2bb97d0b892e-381dc59b, #w-node-fea2f7b9-300b-437f-77b7-df617923ec81-381dc5be, #w-node-c172d1a2-5d92-49a5-284a-b5e43a31e86c-381dc5be {
    order: 9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_9448fc4f-081e-37df-00b4-9d3377c0c144-381dc532 {
    order: 9999;
  }
}


@font-face {
  font-family: 'Fa solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Brands 400 (6.4.2)';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}