:root {
  --text-white: #fffc;
  --primary-orange: #ec5616;
  --burnt-orange: #9d390f;
  --primary-blue: #001d3d;
  --dark-blue: #1b252e;
  --light-grey: #efefef;
  --text-grey: #333;
  --waves-library--white: white;
  --waves-library--black: #131313;
  --combine-library--grey-800: #1f2c3d;
  --combine-library--white: white;
  --combine-library--grey-600: #5f6570;
  --combine-library--grey-050: #f2f3f7;
  --combine-library--primary-600: #6157f8;
  --combine-library--grey-200: #bfc4ce;
  --relume-library-lite--rl-black: black;
  --relume-library-lite--rl-white: white;
  --combine-library--error-800: #e2004f;
  --combine-library--error-100: #ffecec;
  --combine-library--success-800: #6d9400;
  --combine-library--success-100: #ebf7de;
  --combine-library--primary-800: #472def;
  --combine-library--grey-400: #8c94a5;
  --combine-library--grey-100: #d9dce2;
  --dark-grey: #4d5150;
  --secondary-blue: #374b5d;
}

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

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

@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: #333;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

a {
  color: var(--text-white);
  text-decoration: underline;
}

.top-nav-bar {
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 0;
  margin-left: 140px;
  margin-right: 140px;
  padding-top: 8px;
  display: flex;
}

.image {
  background-image: url('../images/logo_1logo.png');
  background-position: 0 0;
  background-size: cover;
  width: 50px;
  height: 36px;
}

.contact_button {
  background-color: #3898ec00;
  padding: 10px 20px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 400;
}

.div-block {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex: 0 auto;
  justify-content: center;
  margin-left: 40px;
  display: flex;
}

.contact {
  background-color: #fff0;
  border: 1px solid #fff;
  border-radius: 3px;
  height: 32px;
  padding: 8px 16px;
  font-family: Poppins, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
}

.div-block-2 {
  background-color: #f51111;
}

.div-block-3 {
  margin: 80px 510px 80px 140px;
}

.heading {
  color: #fff;
  width: 337px;
  margin-top: 10px;
  font-family: Poppins, sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 28px;
  display: inline-block;
}

.text-block {
  color: #000;
  margin-top: 10px;
  margin-bottom: 40px;
  font-family: Poppins, sans-serif;
  font-size: 9px;
  font-weight: 400;
  line-height: 12px;
}

.primary-button {
  background-color: var(--primary-orange);
  color: #fff;
  text-align: center;
  border-radius: 50px;
  justify-content: flex-end;
  margin-top: 0;
  margin-right: 0;
  padding: 16px 32px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  display: inline-block;
}

.primary-button:hover {
  background-color: var(--burnt-orange);
  outline-offset: 0px;
  outline: 1px solid #fff;
}

.primary-button.white {
  color: #003566;
  background-color: #fff;
  margin-top: 0;
  font-size: 16px;
  line-height: 1.4;
  display: block;
}

.primary-button.white:hover {
  color: #fff;
  background-color: #00274b;
}

.primary-button.white.hide {
  display: none;
}

.primary-button.top-padding {
  margin-top: 40px;
  display: inline-block;
}

.primary-button.form-button {
  background-color: var(--primary-orange);
  outline-offset: 0px;
  outline: 1px solid #fff;
  margin-top: 40px;
  padding: 15px 50px;
  transition: all .3s;
}

.primary-button.form-button:hover {
  background-color: #13131380;
}

.primary-button.mobile {
  background-color: var(--primary-orange);
  transition: all .25s;
}

.primary-button.mobile:hover {
  background-color: var(--primary-blue);
}

.primary-button.invisible {
  display: none;
}

.primary-button.visible {
  display: block;
}

.primary-button.top-padding {
  margin-top: 5%;
}

.primary-button.upper-padding {
  margin-top: 40px;
  display: inline-block;
}

.secondary-button {
  border: 1px solid var(--dark-blue);
  color: var(--dark-blue);
  background-color: #3898ec00;
  border-radius: 50px;
  padding: 16px 32px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.secondary-button:hover {
  border-color: var(--light-grey);
  background-color: var(--dark-blue);
  color: var(--text-white);
}

.secondary-button.white {
  border-color: var(--light-grey);
  color: var(--light-grey);
}

.button-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: flex-end;
  margin-top: 40px;
  display: flex;
}

.div-block-5 {
  height: 514.6px;
  position: static;
}

.div-block-6 {
  height: 240px;
  margin-left: 140px;
  margin-right: 140px;
}

.div-block-7 {
  background-image: url('../images/background_ABOUT.jpg');
  background-position: 0 0;
  background-size: 1068px 570px;
}

.div-block-8 {
  background-image: url('../images/background_ABOUT.jpg');
  background-position: 0 0;
  background-size: cover;
  width: 1068px;
  height: 570px;
  margin-top: 0;
}

.div-block-9 {
  z-index: 10;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: row;
  justify-content: space-between;
  width: 792px;
  height: 90px;
  margin-left: 140px;
  margin-right: 140px;
  display: flex;
  position: relative;
}

.div-block-10 {
  background-color: var(--primary-orange);
  border-radius: 1px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-top: 0;
  margin-left: 0;
  display: flex;
}

.image-2 {
  width: 20px;
  height: 20px;
}

.heading-2 {
  color: #000;
  margin-top: 10px;
  font-family: Poppins, sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 14px;
}

.text-block-2 {
  color: #000;
  font-family: Poppins, sans-serif;
  font-size: 9px;
  line-height: 12px;
}

.div-block-11 {
  background-color: #fff;
  height: 180px;
  margin-top: 0;
  padding: 24px 20px;
  box-shadow: 0 8px 10px #0003;
}

.div-block-12, .div-block-13, .div-block-14 {
  background-color: #fff;
  border-radius: 3px;
  height: 180px;
  padding: 24px 20px;
  position: absolute;
  box-shadow: 0 8px 11px #0000001a;
}

.div-block-15 {
  background-image: url('../images/image.png');
  background-position: 0 0;
  background-size: auto;
  width: 390px;
  height: 310px;
  margin-top: 320px;
  margin-bottom: 90px;
  margin-left: 140px;
}

.div-block-16 {
  background-image: url('../images/background_ABOUT.jpg');
  background-position: 0 0;
  background-size: auto;
  width: 1068px;
  height: 570px;
  display: flex;
}

.image-3 {
  margin: 0;
}

.div-block-17 {
  width: 536px;
  margin-right: 0;
  padding-top: 200px;
  padding-left: 70px;
  padding-right: 140px;
}

.div-block-18 {
  margin-left: 0;
}

.text-span {
  color: #003566;
  font-weight: 700;
}

.text-block-3 {
  font-family: Poppins, sans-serif;
  font-size: 9px;
  line-height: 13px;
  text-decoration: underline;
}

.heading-3 {
  color: #fff;
  padding-left: 0;
  font-family: Poppins, sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 26px;
}

.text-block-4 {
  color: #ffffffe6;
  max-width: 440px;
  margin-top: 12px;
  margin-bottom: 32px;
  font-family: Poppins, sans-serif;
  font-size: 9px;
}

.heading-4 {
  font-family: Poppins, sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 26px;
}

.text-block-5 {
  margin-top: 12px;
  margin-bottom: 44px;
  font-family: Poppins, sans-serif;
  font-size: 9px;
  line-height: 12px;
}

.div-block-19 {
  background-color: #003566;
  height: 700px;
  padding-top: 50px;
  padding-left: 140px;
  padding-right: 140px;
}

.section-tag {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #a7a7a700;
  align-items: center;
  height: 30px;
  margin-top: 0;
  display: flex;
}

.div-block-21 {
  background-color: #fff0;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  margin-top: 12px;
  margin-bottom: 50px;
  display: flex;
}

.category-card {
  background-color: #fff;
  max-height: 400px;
  position: relative;
  overflow: visible;
  box-shadow: 0 0 15px #0003;
}

.featured-categories-grid {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

.heading-5 {
  font-family: Poppins, sans-serif;
}

.heading-6 {
  color: #fff;
}

.heading-7 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 36px;
}

.text-block-6 {
  font-family: Poppins, sans-serif;
  font-size: 27px;
}

.block-text {
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
}

.block-text.blue {
  color: var(--primary-orange);
}

.block {
  background-color: #fff;
  border-radius: 20px;
  width: 8px;
  height: 24px;
}

.block.blue {
  background-color: var(--primary-orange);
  height: 21px;
}

.card-title {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.category-card-title-box {
  background-color: #fff;
  align-self: stretch;
  padding: 0;
}

.category-card-image {
  background-image: url('../images/CC_image1.jpg');
  background-size: cover;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  max-width: none;
  max-height: 180px;
  display: flex;
  position: relative;
}

.category-card-image.hand-tools {
  max-width: none;
  max-height: 180px;
}

.category-card-image.safety-products-ppe {
  background-image: url('../images/CC_image2.jpg');
  max-width: none;
}

.category-card-image.measuring-tools {
  background-image: url('../images/CC_image3.jpg');
}

.category-card-image.construction-materials {
  background-image: url('../images/CC_image4.jpg');
}

.div-block-26 {
  background-image: url('../images/background_featured-brands.jpg');
  background-position: 0 0;
  background-size: auto;
  height: 630px;
  padding-top: 50px;
  padding-left: 140px;
  padding-right: 140px;
}

.div-block-35 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  height: 30px;
  display: flex;
}

.div-block-36 {
  background-color: var(--primary-orange);
  border-radius: 20px;
  width: 8px;
  height: 30px;
}

.text-block-12 {
  color: var(--primary-orange);
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
}

.div-block-37 {
  justify-content: space-between;
  align-items: center;
  height: 36px;
  margin-top: 12px;
  margin-bottom: 50px;
  display: flex;
}

.heading-8 {
  color: #000;
  height: 36px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 36px;
}

.brand-card {
  text-align: center;
  background-color: #fff;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: 150px;
  margin-bottom: 0;
  display: flex;
  position: relative;
  overflow: visible;
  box-shadow: 0 0 10px #00000026;
}

.featured-brands {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: minmax(138px, 1fr) 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  margin-top: 40px;
  display: grid;
}

.brand-card-image {
  background-image: none;
  background-size: auto;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.brand-card-image.alko-plus {
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.brand-card-image._3m-india {
  background-image: url('../images/BC_image2.jpg');
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.brand-card-image.venus {
  background-image: url('../images/BC_image3.jpg');
}

.brand-card-image.karam {
  background-image: url('../images/BC_image4.jpg');
}

.brand-card-title-box {
  background-color: #f5f5f5;
  padding: 16px 12px;
  display: block;
}

.brand-card-title-box:hover {
  color: #fff;
  background-color: #003566;
}

.heading-9 {
  color: #000;
  background-color: #f5f5f5;
  margin-top: 0;
  margin-bottom: 0;
  padding: 14px 12px;
  font-family: Poppins, sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 13px;
}

.div-block-41 {
  background-image: url('../images/logo-strip.jpg');
  background-position: 0 0;
  background-size: cover;
  height: 180px;
}

.div-block-42 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  margin-top: 0;
  margin-left: 140px;
  margin-right: 140px;
  padding-top: 24px;
  display: flex;
}

.div-block-43 {
  background-color: var(--primary-orange);
  background-image: none;
  border-radius: 20px;
  width: 8px;
  height: 30px;
}

.text-block-13 {
  font-size: 27px;
}

.text-block-14 {
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
}

.div-block-44 {
  display: flex;
}

.form-contact-us {
  background-image: url('../images/image_contact-us.jpg');
  background-position: 0 0;
  background-size: auto;
  width: 534px;
  height: 450px;
}

.div-block-46 {
  background-color: var(--primary-orange);
  height: 534px;
}

.div-block-47 {
  background-color: var(--primary-orange);
  width: 534px;
  padding: 60px 160px;
}

.heading-10 {
  color: #fff;
  text-align: center;
  width: 220px;
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 0;
  font-family: Poppins, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 26px;
}

.text-field {
  color: #333;
  background-color: #fff0;
  border: 1px solid #fff6;
  border-radius: 3px;
  width: 220px;
  height: 28px;
  margin-bottom: 8px;
}

.text-field.last {
  height: 56px;
  margin-bottom: 20px;
}

.form {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.field-label {
  color: #fff;
  margin-bottom: 4px;
  font-family: Poppins, sans-serif;
  font-size: 9px;
  font-weight: 400;
  line-height: 13px;
}

.form-block {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.submit-button {
  margin-top: 20px;
}

.home-usp {
  height: 1px;
  padding-left: 140px;
  padding-right: 140px;
  display: flex;
  position: relative;
}

.home-usp.container {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.usps {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
  position: absolute;
  top: -90px;
  overflow: visible;
}

.box {
  background-color: #fff;
  border-radius: 1px;
  flex-direction: column;
  width: 15rem;
  height: auto;
  padding: 24px 20px;
  display: flex;
  box-shadow: 0 8px 11px #0000001a;
}

.div-block-50 {
  background-color: var(--primary-orange);
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
}

.image-4 {
  width: 20px;
  height: 20px;
}

.text-block-15 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.text-block-16 {
  color: var(--text-grey);
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.body {
  font-family: Poppins, sans-serif;
  font-size: 9px;
  line-height: 1.4;
}

.section {
  padding-top: 0;
}

.banner {
  background-image: linear-gradient(#1b252e4d, #1b252e4d), url('../images/banner.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  margin-top: -180px;
  padding-top: 240px;
  padding-bottom: 40px;
}

.banner-heading {
  color: #fff;
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  display: block;
}

.paragraph {
  color: #fffc;
  max-width: 500px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.4;
}

.paragraph.sub-text {
  max-width: 500px;
  margin-top: 16px;
  margin-bottom: 40px;
  font-size: 14px;
}

.paragraph.sub-text.mobile {
  color: var(--text-white);
  font-size: 16px;
}

.paragraph.black {
  color: var(--text-grey);
  flex-direction: column;
  justify-content: center;
  align-self: flex-start;
  max-width: 800px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  display: block;
}

.breadcrumb {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  flex-wrap: wrap;
  align-content: space-between;
  margin-top: 16px;
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 1;
  display: flex;
  overflow: hidden;
}

.link {
  color: var(--light-grey);
  text-decoration: none;
}

.link.current-page {
  color: var(--waves-library--white);
  line-height: 1.2;
}

.link.current-page.w--current {
  color: #fff;
}

.link.page {
  color: var(--waves-library--white);
  line-height: 1.2;
}

.link.page.w--current {
  color: var(--light-grey);
  line-height: 1.2;
}

.container {
  text-align: left;
  justify-content: space-between;
  max-width: 1440px;
  margin-left: 140px;
  margin-right: 140px;
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.container._2-column {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: space-between;
  align-items: center;
  display: grid;
}

.container._2-column.polymak {
  flex-direction: row;
  align-items: stretch;
  display: flex;
}

.container.sec-6 {
  align-items: center;
  display: flex;
}

.container.centre {
  flex-flow: column;
  display: flex;
}

.divider {
  color: var(--light-grey);
}

.brand {
  background-image: url('../images/logo-options_1logo options.png');
  background-position: 0 0;
  background-size: cover;
}

.navbar {
  background-color: #fff;
  display: none;
}

.nav-menu {
  text-decoration: none;
  display: block;
}

.logo {
  width: 50px;
  height: 36px;
  margin-top: 8px;
  display: inline-block;
}

.nav-link {
  text-transform: uppercase;
  margin-left: 0;
  margin-right: 0;
  font-size: 10px;
  font-weight: 600;
  display: inline-block;
}

.nav-link.contact---nav {
  background-color: var(--primary-orange);
  color: #fff;
  border-radius: 3px;
  height: auto;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: 20px;
  padding: 12px 24px;
  font-weight: 700;
  position: static;
}

.div-block-52 {
  display: block;
}

.div-block-53 {
  justify-content: space-between;
  display: block;
}

.menu-button {
  display: none;
}

.section-2 {
  background-image: url('../images/about-background.jpg');
  background-position: 100% 100%;
  background-size: cover;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-title {
  color: var(--text-grey);
  border-bottom: 1px solid #000;
  flex: 0 auto;
  align-self: flex-start;
  padding-bottom: 2px;
  font-size: 9px;
  line-height: 1.4;
  text-decoration: none;
  display: inline-block;
}

.heading-11 {
  font-size: 26px;
}

.h2 {
  color: #000;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
}

.h2.blue {
  color: var(--primary-orange);
  text-align: left;
  margin-top: 12px;
  margin-bottom: 12px;
}

.h2.exception {
  margin-top: 12px;
  margin-bottom: 12px;
  font-weight: 400;
}

.h2.exception.about {
  font-weight: 500;
  line-height: 1.2;
}

.h2.white {
  color: #fff;
  margin-bottom: 0;
}

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

.h2.centered.extra-padding {
  margin-top: 20px;
  margin-left: 0;
}

.h2.extra-padding {
  margin: 30px 60px 20px;
}

.info-text {
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 1.4;
}

.info-textbox {
  flex: none;
  max-width: 320px;
  margin-top: 0;
  margin-right: 60px;
  display: block;
}

.info-textbox.home {
  flex: 0 auto;
  margin-left: 40px;
  margin-right: 0;
}

.info-textbox.about {
  text-align: left;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-self: stretch;
  align-items: flex-start;
  max-width: 600px;
  margin-right: 0;
  display: flex;
}

.info-textbox.about.stretch {
  justify-content: space-between;
}

.info-textbox.home {
  flex: 0 auto;
  align-self: flex-start;
  width: 45%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.info-textbox.about-page {
  flex: 0 auto;
  margin-left: 40px;
  margin-right: 0;
}

.div-block-55 {
  text-align: right;
  flex: none;
  max-width: 390px;
  max-height: 312px;
  display: block;
}

.image-5 {
  background-image: url('../images/Rectangle-20.jpg');
  background-position: 0 0;
  background-size: cover;
}

.div-block-56 {
  max-width: 770px;
  max-height: 790px;
}

.section-3 {
  display: flex;
}

.div-block-57 {
  width: 100vw;
  position: relative;
}

.heading-13 {
  margin-top: 30px;
  margin-bottom: 20px;
  margin-left: 60px;
  font-size: 27px;
  line-height: 1;
}

.div-block-58 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  background-color: var(--primary-orange);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: stretch;
  place-items: start;
  padding: 60px 60px 80px;
  display: grid;
  position: static;
}

.image-6 {
  justify-content: center;
  align-items: center;
  width: 24px;
  max-width: 36%;
  height: 24px;
  max-height: 36px;
  display: flex;
}

.div-block-59 {
  color: #fff;
  max-width: 220px;
  margin: 0;
  padding-right: 0;
}

.paragraph-3 {
  color: var(--text-white);
  margin-bottom: 0;
  font-size: 12px;
}

.text-block-19 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.div-block-59-copy {
  color: #fff;
  max-width: 220px;
  margin: 0;
  padding-right: 0;
}

.image-7 {
  z-index: 9;
  position: absolute;
  top: -19px;
  right: 0;
}

.section-4 {
  background-color: var(--primary-blue);
  padding-top: 40px;
  padding-bottom: 40px;
  display: none;
}

.connect-links {
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.image-8 {
  background-image: url('../images/logo-options_1logo options.png');
  background-position: 0 0;
  background-size: cover;
  width: 50px;
  max-width: 100%;
  height: 37px;
}

.connect {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex: none;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.link-2 {
  color: #fff;
  margin-left: 6px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.image-9 {
  width: 24px;
  height: 24px;
  margin-right: 0;
}

.image-10 {
  display: block;
}

.image-11 {
  flex: 0 auto;
  width: 50%;
  height: 100%;
}

.div-block-61 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  display: flex;
}

.bottom-nav {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template: "."
  / 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  margin-left: 0;
  margin-right: 0;
  display: grid;
}

.quick-stack {
  padding: 0;
}

.bottom-header {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.column-title {
  color: #fff;
  font-size: 10px;
  font-weight: 500;
}

.bottom-link, .bottom-link.w--current {
  color: #ffffffb3;
  font-size: 10px;
  font-weight: 300;
  text-decoration: none;
}

.bottom-links {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-direction: column;
  margin-top: 12px;
  padding-left: 24px;
  display: flex;
}

.paragraph-4 {
  color: #ffffffb3;
  margin-bottom: 12px;
  margin-left: 24px;
  font-size: 10px;
  font-weight: 300;
}

.text-block-20 {
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

.link-block {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  align-items: center;
  display: flex;
}

.homescreen-banner-section {
  color: var(--primary-blue);
  background-image: linear-gradient(270deg, #1b252e80, #1b252e99 38%, #1b252ee6), url('../images/dl.beatsnoop.com-final-1M62HTKiYm.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  margin-top: -86px;
  padding-top: 220px;
  padding-bottom: 160px;
}

.heading-14 {
  margin-top: 0;
  margin-bottom: 0;
}

.main-heading {
  color: #fff;
  max-width: 440px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
}

.section-6 {
  background-image: url('../images/background_ABOUT.jpg');
  background-position: 0 0;
  background-size: cover;
  margin-top: 0;
  padding-top: 180px;
  padding-bottom: 90px;
}

.image-12 {
  max-width: 390%;
}

.image-13 {
  max-height: 310px;
}

.image-14 {
  max-width: none;
}

.div-block-62 {
  display: flex;
}

.section-7 {
  background-color: var(--primary-orange);
  padding-top: 60px;
  padding-bottom: 80px;
  display: block;
}

.section-header {
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.section-8 {
  color: #771515;
  text-align: left;
  background-image: url('../images/background_featured-brands.jpg');
  background-position: 0 0;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 80px;
  text-decoration: none;
}

.section-9 {
  background-color: var(--light-grey);
  padding-top: 3%;
  padding-bottom: 5%;
  display: block;
}

.quick-stack-2, .logo-strip {
  margin-top: 40px;
  padding: 0;
}

.div-block-63 {
  background-image: url('../images/image_contact-us.jpg');
  background-position: 0 0;
  background-size: cover;
}

.div-block-64 {
  background-color: var(--primary-orange);
  justify-content: center;
  align-items: center;
  width: 100vw;
  padding-top: 0;
  display: block;
}

.div-block-65 {
  align-items: stretch;
  max-height: 500px;
  display: none;
}

.image-15 {
  background-image: url('../images/map.jpg');
  background-position: 0 0;
  background-size: cover;
  width: 100vw;
}

.image-16 {
  width: 100vw;
  max-width: 100%;
  height: 100vw;
}

.image-17 {
  width: 100vw;
  height: 100vw;
  max-height: 190px;
}

.image-18 {
  max-width: none;
}

.image-19 {
  width: 45%;
  height: auto;
}

.image-19.hide {
  display: none;
}

.section-10 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.quick-stack-3 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  margin-top: 50px;
  padding: 0;
}

.cell {
  border-right: 1px solid #000;
  align-items: center;
  padding-left: 11px;
  padding-right: 11px;
}

.div-block-66 {
  background-color: var(--primary-orange);
  border-radius: 50px;
  flex: none;
  max-width: 24px;
  max-height: 24px;
  display: block;
}

.image-20 {
  max-width: 16px;
  max-height: 16px;
  display: inline-block;
}

.text-block-21 {
  color: #000;
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
}

.image-21 {
  width: 40px;
  max-width: none;
  height: 40px;
}

.link-3 {
  color: var(--text-grey);
  text-align: center;
  margin-top: 3px;
  margin-bottom: 3px;
  padding-left: 0;
  padding-right: 0;
  font-size: 14px;
  line-height: 19px;
  text-decoration: none;
}

.cell-2 {
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}

.cell-3 {
  border-left: 1px solid #000;
  align-items: center;
  padding-bottom: 0;
}

.text-block-22 {
  font-size: 12px;
  line-height: 19px;
}

.waves---nav-cta {
  background-color: var(--waves-library--black);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 52px;
  margin-right: 0;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.waves---nav-buttons-right {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.waves---nav-link {
  color: var(--waves-library--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  font-size: 11px;
  display: flex;
}

.waves---dropdown-link {
  text-align: center;
}

.waves-dropdown-list.w--open {
  background-color: var(--waves-library--white);
  border: 1px solid #1313131a;
  border-radius: 4px;
}

.waves-icon-drodpdown {
  width: 24px;
  height: 24px;
  display: none;
}

.waves-dropdown-toggle {
  grid-column-gap: 6px;
  color: #fff;
  justify-content: center;
  align-items: center;
  padding: 12px 8px 12px 16px;
  display: flex;
}

.waves-dropdown-toggle:hover {
  border: 2px solid #fff;
  border-radius: 3px;
}

.waves---nav-dropdown {
  color: #fff;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.waves---nav-menu {
  grid-column-gap: 16px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.waves-middle-nav-2 {
  grid-column-gap: 16px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.waves---brand {
  max-width: none;
  height: 80%;
  margin-top: 6px;
}

.waves---nav-brand-link {
  height: 50px;
}

.waves-master-nav-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 240px 1fr 240px;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: center;
  display: grid;
}

.waves---nav-container {
  max-width: 1440px;
  height: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.waves-navbar-2 {
  z-index: 104;
  background-color: #fff0;
  border-bottom: 1px solid #13131333;
  height: 80px;
}

.image-22 {
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.image_holder {
  object-fit: cover;
  display: block;
  overflow: hidden;
}

.image_holder.scaffolding {
  align-self: center;
  width: 8rem;
}

.image_holder.activa {
  object-fit: contain;
  overflow: hidden;
}

.navbar-2 {
  background-color: #ddd0;
  margin-left: 140px;
  margin-right: 140px;
  display: none;
}

.container-2 {
  padding-left: 20px;
  padding-right: 20px;
}

.container-3 {
  margin-left: auto;
  margin-right: auto;
}

.text-block-23 {
  font-size: 11px;
}

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

.section-12 {
  padding-top: 40px;
  padding-bottom: 100px;
}

.heading-13-copy {
  margin-top: 30px;
  margin-bottom: 20px;
  margin-left: 60px;
  font-size: 27px;
  line-height: 1;
}

.combine-menu-icon_line-bottom {
  background-color: var(--combine-library--grey-800);
  border-radius: 1rem;
  width: 1.25rem;
  height: .125rem;
}

.combine-menu-icon_line-middle {
  background-color: var(--combine-library--grey-800);
  border-radius: 1rem;
  width: 1.25rem;
  height: .125rem;
  margin-top: .25rem;
  margin-bottom: .25rem;
}

.combine-menu-icon_line-top {
  background-color: var(--combine-library--grey-800);
  border-radius: 1rem;
  width: 1.25rem;
  height: .125rem;
}

.menu-icon {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.combine-nav3_menu-button {
  padding: .5rem;
}

.button-small {
  background-color: var(--primary-orange);
  color: var(--combine-library--white);
  text-align: center;
  border-radius: 50px;
  padding: .75rem 1.5rem;
  font-family: Poppins, sans-serif;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color .25s;
}

.button-small:hover {
  background-color: var(--burnt-orange);
  outline-offset: 0px;
  outline: 1px solid #fff;
  font-family: Poppins, sans-serif;
}

.nav-button-wrapper {
  grid-column-gap: 1rem;
  justify-content: flex-end;
  display: flex;
}

.combine-nav3_item {
  color: var(--combine-library--grey-600);
  padding: .5rem .75rem;
  font-family: Open Sans, sans-serif;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color .25s, color .25s;
}

.combine-nav3_item:hover {
  background-color: var(--combine-library--grey-050);
  color: var(--combine-library--primary-600);
  border-radius: .5rem;
}

.combine-nav3_dropdown-column {
  min-width: 10rem;
}

.combine-nav3_dropdown-wrapper {
  grid-column-gap: 1rem;
  background-color: var(--combine-library--white);
  border-radius: 1rem;
  align-items: center;
  margin-top: .5rem;
  padding: 1rem;
  display: flex;
  box-shadow: 0 2px .5rem #28364a33;
}

.combine-nav3_dropdown-list {
  background-color: var(--combine-library--grey-050);
  padding-top: .25rem;
  padding-bottom: .25rem;
}

.combine-nav3_dropdown-list.w--open {
  background-color: #0000;
}

.combine-nav3_icon {
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 1.25rem;
}

.combine-nav3_dropdown-toggle {
  color: #fff;
  padding: .5rem 2.5rem .5rem 1.25rem;
  font-family: Poppins, sans-serif;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  transition: color .25s;
}

.combine-nav3_dropdown-toggle:hover {
  outline-offset: 0px;
  color: #fff;
  border-radius: 3px;
  outline: 1px solid #fff;
}

.nav_dropdown {
  display: none;
}

.nav_link {
  color: #fff;
  text-align: center;
  border: .5px solid #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: .7rem 1.25rem;
  font-family: Poppins, sans-serif;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition: color .25s;
  display: flex;
}

.nav_link:hover {
  border: .5px solid var(--light-grey);
  background-color: #1b252e66;
  border-radius: 50px;
}

.nav_link.w--current, .nav_link.w--current:hover {
  color: #fff;
}

.nav_link-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.nav_menu {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.nav_logo {
  text-align: center;
  align-self: center;
  width: auto;
  max-width: none;
  height: 2.5rem;
  text-decoration: none;
}

.nav_logo-link {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  height: 100%;
  text-decoration: none;
  display: flex;
}

.nav_logo-link.w--current {
  z-index: 7;
  text-align: center;
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-self: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.nav_container {
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin-left: 140px;
  margin-right: 140px;
  display: flex;
}

.nav_bar {
  background-color: #fff0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.text-block-24 {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.rl_footer3_legal-link {
  color: var(--relume-library-lite--rl-black);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: underline;
}

.rl_footer3_legal-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  display: grid;
}

.bottom_credit_text {
  color: #ffffffb3;
  margin-top: 10px;
  font-family: Poppins, sans-serif;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
}

.bottom_credit_text.underline {
  z-index: 2;
  color: #fff;
  position: relative;
}

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

.rl_footer3_spacing-block-5 {
  width: 100%;
  padding-bottom: 0;
}

.rl_footer3_line-divider {
  background-color: #fff;
  width: 100%;
  height: 1px;
}

.rl_footer3_spacing-block-4 {
  width: 100%;
  padding-bottom: 2rem;
}

.rl_footer3_link {
  color: var(--text-white);
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
}

.rl_footer3_link.w--current {
  text-decoration: underline;
}

.rl_footer3_link.link-headings {
  color: var(--waves-library--white);
  padding-bottom: .8rem;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.rl_footer3_link-list {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: flex-start start;
  display: flex;
}

.rl_footer3_link-list._0-opacity {
  display: none;
}

.rl_footer3_menu-wrapper {
  grid-column-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
}

.rl-social-icon {
  color: var(--relume-library-lite--rl-white);
  width: 1.5rem;
  height: 1.5rem;
}

.rl_footer3_social-link {
  color: var(--relume-library-lite--rl-black);
  align-items: center;
  text-decoration: none;
  display: flex;
}

.rl_footer3_social-list {
  grid-column-gap: .75rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  place-items: start;
  display: grid;
}

.rl_footer3_spacing-block-3 {
  width: 100%;
  padding-bottom: 2rem;
}

.rl-text-style-small {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.rl-text-style-small.mobile {
  color: #cbcbcb;
  width: 95%;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 14px;
}

.rl_footer3_text {
  color: var(--waves-library--white);
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.rl_footer3_text.main {
  color: var(--waves-library--white);
  font-size: 16px;
  font-weight: 500;
}

.rl_footer3_spacing-block-2 {
  width: 100%;
  padding-bottom: 1.5rem;
}

.rl_footer3_spacing-block-1 {
  width: 100%;
  padding-bottom: 2rem;
}

.rl_footer3_logo {
  width: 64px;
  max-width: 100%;
}

.rl_footer3_logo-link {
  float: none;
  padding-left: 0;
}

.rl_footer3_top-wrapper {
  grid-column-gap: 4vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
  grid-auto-flow: row;
  align-items: start;
  display: grid;
}

.rl-padding-section-medium {
  padding-top: 3rem;
  padding-bottom: .5rem;
}

.rl-container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.rl-padding-global {
  margin-left: 140px;
  margin-right: 140px;
}

.footer {
  background-color: var(--primary-blue);
  padding-top: 20px;
}

.section-13 {
  display: block;
}

.combine-contact3_image {
  background-color: var(--primary-blue);
  object-fit: cover;
  background-image: url('../images/image_contact-us.jpg');
  background-position: 50% 100%;
  background-size: cover;
  width: 100%;
  height: 100%;
  margin-top: 0;
}

.combine-contact3_image-wrapper {
  object-fit: fill;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: cover;
  border-radius: 3px;
  width: 100%;
  overflow: hidden;
}

.combine-form_error-message {
  border: 1px solid var(--combine-library--error-800);
  background-color: var(--combine-library--error-100);
  color: var(--combine-library--error-800);
  border-radius: .25rem;
  margin-top: .5rem;
  padding: .5rem 1.25rem;
  font-size: .875rem;
}

.combine-form_success-message {
  border: 1px solid var(--combine-library--success-800);
  background-color: var(--combine-library--success-100);
  color: var(--combine-library--success-800);
  text-align: left;
  border-radius: .25rem;
  padding: .5rem 1.25rem;
  font-size: .875rem;
}

.combine-button {
  background-color: var(--combine-library--grey-800);
  color: #fff;
  text-align: center;
  border-radius: .5rem;
  padding: .75rem 1.75rem;
  font-family: Open Sans, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition-property: background-color;
}

.combine-button:hover {
  background-color: #28364ae6;
}

.combine-form_link {
  color: var(--combine-library--primary-600);
  text-decoration: underline;
}

.combine-form_link:hover {
  color: var(--combine-library--primary-800);
}

.combine-form_checkbox-label {
  color: var(--combine-library--grey-800);
  margin-bottom: .125rem;
  font-family: Open Sans, sans-serif;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
}

.combine-form_checkbox-icon {
  border-color: var(--combine-library--grey-400);
  cursor: pointer;
  border-radius: .125rem;
  width: 1rem;
  height: 1rem;
  margin: 0 .5rem 0 0;
}

.combine-form_checkbox-icon:hover {
  border-color: var(--combine-library--grey-600);
}

.combine-form_checkbox-icon.w--redirected-checked {
  border-color: var(--combine-library--primary-600);
  background-color: var(--combine-library--primary-600);
  background-size: 90%;
  border-radius: .125rem;
  width: 1rem;
  height: 1rem;
  margin: 0 .5rem 0 0;
}

.combine-form_checkbox-icon.w--redirected-focus {
  border-color: var(--combine-library--primary-600);
  box-shadow: none;
  border-radius: .125rem;
  width: 1rem;
  height: 1rem;
  margin: 0 .5rem 0 0;
}

.combine-form_checkbox {
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.combine-form_field-wrapper {
  margin-bottom: 1rem;
}

.combine-form_text-area-grey {
  border: 1px solid var(--combine-library--grey-050);
  background-color: var(--combine-library--grey-050);
  color: var(--combine-library--grey-800);
  border-radius: 3px;
  min-width: 16rem;
  height: 100%;
  min-height: 8rem;
  margin-bottom: 0;
  padding: .5rem 1.25rem;
  font-family: Open Sans, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  transition: border-color .25s;
}

.combine-form_text-area-grey:hover {
  border-color: var(--combine-library--grey-100);
}

.combine-form_text-area-grey:focus {
  border-color: var(--combine-library--primary-600);
}

.combine-form_text-area-grey::placeholder {
  color: var(--combine-library--grey-200);
}

.combine-form_label {
  margin-bottom: .5rem;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.combine-form_input-grey {
  border: 1px solid var(--combine-library--grey-050);
  background-color: var(--combine-library--grey-050);
  color: var(--primary-orange);
  border-radius: 3px;
  min-width: 16rem;
  height: 3rem;
  margin-bottom: 0;
  padding: .5rem 1.25rem;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  transition: border-color .25s;
}

.combine-form_input-grey:hover {
  border-color: var(--combine-library--grey-100);
}

.combine-form_input-grey:focus {
  border-color: var(--combine-library--primary-600);
}

.combine-form_input-grey::placeholder {
  color: var(--combine-library--grey-200);
}

.combine-form_form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
}

.combine-contact3_form-wrapper {
  width: 100%;
  margin-bottom: 0;
}

.combine-text-size-regular {
  color: var(--text-white);
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.combine-heading-style-h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
}

.combine-contact3_content {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 33rem;
  display: flex;
}

.combine-contact3_component {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.combine-padding-section-medium {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.combine-container-large {
  width: 100%;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}

.combine-padding-global-2 {
  margin-left: 140px;
  margin-right: 140px;
}

.combine-section_contact3 {
  background-color: var(--primary-orange);
  margin-top: 0;
  padding-top: 5%;
  padding-bottom: 5%;
}

.bottom-credit {
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 20px;
  display: flex;
}

.bottom-credit.bottom {
  flex-direction: column;
  align-items: center;
  margin-bottom: -1px;
}

.bottom-credit.mobile {
  align-items: center;
  padding-left: 0;
  position: relative;
}

.link-4 {
  color: #ffffffb3;
  text-align: center;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  display: inline-block;
}

.text-span-2 {
  color: #ffffffb3;
  text-decoration: underline;
}

.div-block-67 {
  opacity: .5;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.brand_title {
  color: var(--dark-blue);
  text-align: center;
  background-color: #f5f5f500;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  overflow: hidden;
}

.brand_title:hover {
  pointer-events: auto;
  color: #003566;
  background-color: #f5f5f5;
}

.brand_title.inside_box {
  background-color: var(--primary-orange);
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 12px 16px;
}

.brand_title.inside_box:hover {
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}

.brand_logo_box {
  z-index: 2;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: none;
  height: 70%;
  display: flex;
  position: relative;
}

.brand_title_box {
  background-color: var(--light-grey);
  color: #876f6f;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 30%;
  padding: 0;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.brand_title_box:hover {
  color: #fff;
  background-color: #00356600;
  font-size: 14px;
  font-weight: 600;
}

.text-block-25 {
  color: #003769;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.text-block-26 {
  color: #003566;
  padding: 14px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}

.text-block-26:hover {
  color: #fff;
}

.text-span-3 {
  font-weight: 500;
}

.text-span-4, .text-span-5 {
  font-weight: 600;
  display: block;
}

.text-span-6 {
  margin-top: 5px;
  font-weight: 600;
  display: block;
}

.section-14 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.image-24 {
  width: 60%;
  margin-bottom: 20px;
  display: block;
}

.video {
  text-align: left;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-self: auto;
  display: block;
}

.brand_products {
  padding-top: 20px;
  padding-bottom: 60px;
}

.image-25 {
  width: 100%;
  height: 100%;
  display: block;
}

.category-image-box {
  flex-direction: column;
  align-items: center;
  max-height: 320px;
  text-decoration: none;
  display: flex;
}

.cateogry-title-box {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  text-decoration: none;
  display: flex;
}

.category-title {
  background-color: var(--light-grey);
  color: var(--primary-blue);
  flex: 0 auto;
  align-self: auto;
  padding: 16px 12px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.category-title.inside_box {
  background-color: var(--primary-blue);
  color: #fff;
  align-self: stretch;
}

.category-title.inside_box:hover {
  align-self: stretch;
}

.category-title.selected {
  color: #fff;
  background-color: #001d3d;
}

.image-26 {
  object-fit: cover;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.products-grid {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 60px;
  margin-bottom: 60px;
  display: grid;
}

.product-card {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  max-height: 400px;
  display: flex;
}

.product-card.delete {
  display: none;
}

.product-image-box {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-height: 320px;
  display: flex;
}

.product-image {
  flex: 0 auto;
  align-self: center;
  max-width: 142px;
  max-height: 170px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.product-title-box {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.text-block-27 {
  color: var(--primary-blue);
  text-align: center;
  flex-direction: column;
  flex: 0 auto;
  align-self: stretch;
  align-items: center;
  padding: 13px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
}

.category_description {
  z-index: 3;
  background-color: var(--waves-library--white);
  opacity: 0;
  pointer-events: auto;
  flex-direction: column;
  justify-content: flex-end;
  align-self: stretch;
  align-items: center;
  text-decoration: none;
  transition: opacity .375s;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
  box-shadow: 0 0 15px #00000026;
}

.category_description:hover {
  opacity: 1;
  outline-offset: 0px;
  pointer-events: auto;
  background-color: #fff0;
  background-image: none;
  outline: 3px #00e;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.paragraph-5 {
  color: #fff;
  margin-bottom: 0;
  padding: 12px;
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
}

.inside_brand {
  z-index: 5;
  opacity: 0;
  text-align: center;
  background-color: #9e393900;
  flex-flow: column;
  justify-content: center;
  align-self: auto;
  align-items: center;
  text-decoration: none;
  transition: opacity .325s;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.inside_brand:hover {
  opacity: 1;
  pointer-events: auto;
  justify-content: flex-end;
  overflow: hidden;
}

.text-span-7 {
  text-transform: uppercase;
}

.image-27 {
  width: 30%;
  max-width: 60%;
}

.text-span-8 {
  text-transform: uppercase;
}

.div-block-68 {
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  padding-left: 40px;
  display: flex;
}

.quick-stack-4 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 0;
  position: relative;
}

.tab-link-tab-1 {
  padding-right: 0;
}

.tab-link-tab-1.w--current {
  padding-top: 0;
  padding-left: 0;
}

.category_tab {
  background-color: #ddd0;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  display: flex;
}

.category_tab.w--current {
  border-bottom: 3px solid var(--primary-blue);
  outline-offset: 0px;
  background-color: #ddd0;
  outline: 3px #001d3d;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  box-shadow: 0 0 15px #0003;
}

.tabs-menu {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 0;
  display: grid;
}

.category_description-copy {
  opacity: 0;
  pointer-events: auto;
  background-color: #ffffffd1;
  background-image: linear-gradient(#fff9, #365f8699 100%, #003566);
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  text-decoration: none;
  transition: opacity .375s;
  position: absolute;
  inset: 0%;
}

.category_description-copy:hover {
  opacity: 1;
  outline-offset: 0px;
  pointer-events: auto;
  outline: 3px #00e;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.featured-brands-tab {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: minmax(138px, 1fr) 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  margin-top: 40px;
  display: grid;
}

.product-by-text {
  color: #fff;
  font-size: 36px;
  font-weight: 400;
}

.category_tabs {
  background-color: #00356600;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  padding-bottom: 80px;
  display: block;
}

.category-card-title-box-selected {
  z-index: 5;
  opacity: 0;
  background-color: #fff;
  align-self: stretch;
  padding: 0;
  position: absolute;
  inset: auto 0% 0%;
}

.browse-categories-banner {
  color: #fff;
  width: 200px;
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  display: block;
}

.heading-15 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.5;
}

.container-4 {
  max-width: 1440px;
  margin-left: 140px;
  margin-right: 140px;
}

.cell-4 {
  justify-content: center;
  align-items: flex-end;
}

.productcheck {
  color: #771515;
  text-align: left;
  background-image: url('../images/background_featured-brands.jpg');
  background-position: 0 0;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 80px;
  text-decoration: none;
  display: flex;
}

.empty-state {
  padding: 0;
}

.brand_collection {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 10px;
  display: grid;
}

.brand_collection_item {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  position: relative;
  box-shadow: 0 0 15px #0003;
}

.home_container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  max-width: 1440px;
  margin-left: 140px;
  margin-right: 140px;
  display: grid;
}

.home_container._2-column {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: space-between;
  align-items: center;
  display: grid;
}

.home_container._2-column.polymak {
  flex-direction: row;
  align-items: stretch;
  display: flex;
}

.home_container.sec-6 {
  align-items: center;
  display: flex;
}

.product-page-images {
  width: 100%;
}

.product_description {
  z-index: 3;
  opacity: 0;
  pointer-events: auto;
  background-color: #ffffffd1;
  background-image: linear-gradient(#00000080, #00000080);
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  text-decoration: none;
  transition: opacity .375s;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
  box-shadow: 0 0 15px #00000026;
}

.product_description:hover {
  opacity: 1;
  outline-offset: 0px;
  pointer-events: auto;
  background-image: linear-gradient(#003566, #003566);
  outline: 3px #00e;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.product-card-image {
  flex-flow: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  height: 75%;
  display: flex;
  overflow: hidden;
}

.product-card-image.hand-tools {
  max-width: none;
  max-height: 180px;
}

.product-card-image.safety-products-ppe {
  background-image: url('../images/CC_image2.jpg');
  max-width: none;
}

.product-card-image.measuring-tools {
  background-image: url('../images/CC_image3.jpg');
}

.product-card-image.construction-materials {
  background-image: url('../images/CC_image4.jpg');
}

.product-card-title-box {
  background-color: #fff;
  justify-content: space-between;
  align-self: stretch;
  align-items: stretch;
  width: 100%;
  height: 25%;
  display: flex;
}

.product-title {
  color: var(--dark-blue);
  text-align: center;
  background-color: #f5f5f5;
  flex: 0 auto;
  justify-content: center;
  align-self: auto;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  display: flex;
}

.product-title.inside_box {
  color: #fff;
  background-color: #001d38;
  align-self: stretch;
}

.product-title.inside_box:hover {
  align-self: stretch;
}

.product-title.selected {
  color: #fff;
  background-color: #001d3d;
}

.product_tab {
  background-color: var(--combine-library--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-height: 300px;
  padding: 0;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px #00000026;
}

.product_tab.w--current {
  border-bottom: 5px solid var(--primary-orange);
  outline-offset: 0px;
  background-color: #ddd0;
  outline: 3px #001d3d;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  box-shadow: 0 0 15px #0003;
}

.product_tab.ppe-tab.w--current {
  outline-color: var(--primary-orange);
}

.prodcut_description {
  color: #fff;
  margin-bottom: 0;
  padding: 12px;
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
}

.text-block-29 {
  font-weight: 500;
}

.container-m {
  margin-left: 140px;
  margin-right: 140px;
}

.power-tools {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 0;
  display: block;
}

.collection-item-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  display: block;
  position: relative;
}

.ppe {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: stretch;
  padding: 10px;
  display: grid;
}

.empty-state-2 {
  display: none;
}

.image-29 {
  width: 25rem;
  height: 15rem;
  position: absolute;
}

.text-span-9 {
  color: var(--primary-orange);
  font-weight: 700;
}

.link-5 {
  color: #fff;
  text-decoration: underline;
}

.link-6, .link-7, .link-8, .link-9, .link-10 {
  color: var(--text-white);
}

.italic-text {
  color: var(--primary-orange);
  font-style: normal;
  font-weight: 700;
}

.empty-state-3, .collection-list-wrapper {
  display: none;
}

.product-grid {
  color: #771515;
  text-align: left;
  background-image: url('../images/background_featured-brands.jpg');
  background-position: 0 0;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 80px;
  text-decoration: none;
  display: none;
}

.category-brands {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: minmax(138px, 1fr) 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  margin-top: 0;
  padding: 10px;
  display: grid;
}

.video-2, .video-3, .video-4, .video-5, .video-6 {
  display: none;
}

.lottie-animation {
  z-index: 0;
  opacity: .2;
  width: 5rem;
  padding-left: 7px;
  display: none;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.why-choose-us---point {
  color: #fff;
  max-width: 220px;
  margin: 0;
  padding-right: 0;
}

.tabs-content {
  margin-top: 80px;
}

.tab-pane-power-tools, .tab-pane-hand-tools-abrasives, .tab-pane-concreting-solutions, .tab-pane-welding-gas-cutting, .tab-pane-pulling-lifting-tackles, .tab-pane-mro-products, .tab-pane-customized-solutions {
  margin-top: 5%;
}

.desktop-carousel {
  padding-top: 3%;
  display: flex;
  overflow: hidden;
}

.logo-container {
  justify-content: space-around;
  min-width: 100%;
  display: flex;
  position: relative;
  left: 0;
}

.logo-image {
  height: 88px;
}

.fc-text {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  max-width: 1440px;
  margin-left: 140px;
  margin-right: 140px;
  padding: 60px 0;
  display: flex;
}

.paragraph-6 {
  color: var(--text-grey);
  font-size: 12px;
  line-height: 1.7;
}

.heading-16 {
  color: var(--primary-orange);
}

.mro-info {
  margin-top: 40px;
}

.heading-17 {
  color: #001d3d;
  font-size: 21px;
}

.paragraph-7 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.brand-grid {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 60px;
  display: grid;
}

.brand-card-2 {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  max-height: 400px;
  display: flex;
}

.brand-catalogue-button {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.button {
  text-align: center;
  background-color: #003566;
  border-radius: 5px;
  align-self: center;
  width: 10rem;
  margin-top: 10px;
  padding-top: 13px;
  padding-bottom: 13px;
  font-size: 12px;
}

.button:hover {
  outline-offset: 0px;
  background-color: #00274b;
  outline: 1px solid #fff;
}

.mobile-carousel {
  padding-top: 3%;
  display: none;
  overflow: hidden;
}

.hide {
  display: none;
}

.bold-text {
  color: var(--waves-library--black);
  font-weight: 500;
}

.padding {
  width: 100%;
  padding-bottom: .5rem;
}

.home---about-section {
  margin-top: 0;
  padding-top: 80px;
  padding-bottom: 80px;
}

.primary-button-2 {
  color: #fff;
  text-align: center;
  background-color: #ec5616;
  border-radius: 50px;
  justify-content: flex-end;
  margin-top: 0;
  margin-right: 0;
  padding: 16px 32px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  display: inline-block;
}

.primary-button-2:hover {
  outline-offset: 0px;
  background-color: #9d390f;
  outline: 1px solid #fff;
}

.primary-button-2._40-padding {
  margin-top: 40px;
  display: inline-block;
}

.primary-button-2.form-button {
  background-color: var(--primary-blue);
  outline-offset: 0px;
  outline: 1px #fff;
  margin-top: 40px;
  padding: 15px 50px;
  transition: all .3s;
}

.primary-button-2.form-button:hover {
  background-color: #13131380;
}

.icon-image {
  color: var(--light-grey);
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.usp-contentbox {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

._10-spacing {
  width: 10%;
}

.usp-textbox {
  width: 80%;
  margin-left: 20px;
}

.usp-text {
  color: #333;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.bold-text-2 {
  color: #131313;
  font-size: 16px;
  font-weight: 500;
}

.text-span-10 {
  color: #ec5616;
  font-weight: 700;
}

.paragraph-8 {
  color: #fffc;
  max-width: 500px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.4;
}

.paragraph-8.black {
  color: #333;
  flex-direction: column;
  justify-content: center;
  align-self: flex-start;
  max-width: 800px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  display: block;
}

.usp-header {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.usp-vertical {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 45%;
  display: flex;
}

.icon-box {
  background-color: var(--dark-blue);
  color: var(--primary-blue);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  display: flex;
}

.container-6 {
  text-align: left;
  justify-content: space-between;
  max-width: 1440px;
  margin-left: 120px;
  margin-right: 120px;
  padding: 0;
  display: block;
}

.container-6.sec-6 {
  align-items: center;
  margin-left: 140px;
  margin-right: 140px;
  display: flex;
}

.h2-2 {
  color: #1b252e;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.h2-2.exception {
  margin-top: 12px;
  margin-bottom: 12px;
  font-weight: 400;
}

.h2-2.exception.about {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.2;
}

.cateogry-title-box-2 {
  background-color: var(--text-white);
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 25%;
  line-height: 1;
  text-decoration: none;
  display: flex;
}

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

.category-title-2 {
  color: var(--dark-blue);
  text-align: center;
  background-color: #fff;
  flex: 0 auto;
  justify-content: center;
  align-self: auto;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  display: flex;
}

.category-title-2.inside_box {
  opacity: .95;
  color: #fff;
  text-align: center;
  background-color: #ec5616;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  font-size: 16px;
  display: flex;
}

.category-title-2.inside_box:hover {
  align-self: stretch;
}

.featured-categories-section {
  background-color: var(--light-grey);
  padding-top: 80px;
  padding-bottom: 80px;
  display: block;
}

.secondary-button-2 {
  color: #fff;
  background-color: #3898ec00;
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 16px 32px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.secondary-button-2:hover {
  background-color: #4d5150;
}

.secondary-button-2.black {
  color: #000;
  border-color: #1b252e;
}

.secondary-button-2.black:hover {
  background-color: #4d515066;
}

.category-card-2 {
  background-color: #fff;
  width: auto;
  max-height: 350px;
  position: relative;
  overflow: visible;
  box-shadow: 0 0 10px #00000026;
}

.section-header-2 {
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  display: flex;
}

.section-header-2.centre {
  justify-content: center;
}

.category-image-box-2 {
  grid-column-gap: 39px;
  grid-row-gap: 39px;
  flex-direction: column;
  align-items: center;
  height: 75%;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.category_description-2 {
  z-index: 3;
  opacity: 0;
  pointer-events: auto;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  text-decoration: none;
  transition: opacity .375s;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
  box-shadow: 0 0 15px #00000026;
}

.category_description-2:hover {
  opacity: 1;
  outline-offset: 0px;
  pointer-events: auto;
  background-color: #fff0;
  background-image: none;
  outline: 3px #00e;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.category_description-2.hide {
  display: none;
}

.featured-categories-grid-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

.container-7 {
  text-align: left;
  justify-content: space-between;
  max-width: 1440px;
  margin-left: 120px;
  margin-right: 120px;
  padding: 0;
  display: block;
}

.cateogry-title-box-3 {
  width: 100%;
  height: 25%;
  text-decoration: none;
}

.image-31 {
  width: 100%;
  height: 100%;
}

.category-title-3 {
  color: #1b252e;
  text-align: center;
  background-color: #fff;
  flex: 0 auto;
  justify-content: center;
  align-self: auto;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  display: flex;
}

.category-title-3.inside_box {
  opacity: .95;
  color: #fff;
  text-align: center;
  background-color: #ec5616;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  height: 100%;
  display: flex;
}

.category-title-3.inside_box:hover {
  align-self: stretch;
}

.section-17 {
  background-color: #efefef;
  padding-top: 80px;
  padding-bottom: 80px;
  display: block;
}

.secondary-button-3 {
  color: #fff;
  background-color: #3898ec00;
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 16px 32px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.secondary-button-3:hover {
  background-color: #4d5150;
}

.secondary-button-3.black {
  color: #000;
  border-color: #1b252e;
}

.secondary-button-3.black:hover {
  background-color: #4d515066;
}

.category-card-3 {
  background-color: #fff;
  max-height: 400px;
  position: relative;
  overflow: visible;
  box-shadow: 0 0 10px #00000026;
}

.featured-categories-grid-3 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

.container-8 {
  text-align: left;
  justify-content: space-between;
  max-width: 1440px;
  margin-left: 120px;
  margin-right: 120px;
  padding: 0;
  display: block;
}

.brand_title_box-2 {
  color: #876f6f;
  text-align: center;
  background-color: #f5f5f5;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 30%;
  padding: 0;
  font-size: 9px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.brand_title_box-2:hover {
  color: #fff;
  background-color: #00356600;
  font-size: 14px;
  font-weight: 600;
}

.image_holder-2 {
  object-fit: cover;
  overflow: hidden;
}

.brand_title-2 {
  color: var(--dark-blue);
  background-color: #f5f5f500;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  display: flex;
  overflow: hidden;
}

.brand_title-2:hover {
  pointer-events: auto;
  color: #003566;
  background-color: #f5f5f5;
}

.brand_title-2.inside_box {
  background-color: var(--primary-orange);
  opacity: .95;
  color: #fff;
  text-align: center;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 12px 16px;
}

.brand_title-2.inside_box:hover {
  overflow: hidden;
}

.brand_logo_box-2 {
  z-index: 2;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: none;
  height: 70%;
  display: flex;
  position: relative;
}

.fb-subtext-box {
  justify-content: center;
  align-items: flex-start;
  margin-top: 10px;
  display: flex;
}

.inside_brand-2 {
  z-index: 5;
  opacity: 0;
  text-align: center;
  background-color: #9e393900;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: opacity .325s;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.inside_brand-2:hover {
  opacity: 1;
  pointer-events: auto;
  justify-content: flex-end;
  overflow: hidden;
}

.inside_brand-2.hide {
  display: none;
}

.paragraph-9 {
  color: #fffc;
  max-width: 500px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.4;
}

.paragraph-9.feature-brand-subtext {
  color: #4d5150;
  text-align: center;
  max-width: 900px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.brand-card-3 {
  background-color: #fff;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: 150px;
  margin-bottom: 0;
  display: flex;
  position: relative;
  overflow: visible;
  box-shadow: 0 0 10px #00000024;
}

.featured-brands-section {
  color: #771515;
  text-align: left;
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  text-decoration: none;
}

.featured-brands-2 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto auto;
  grid-template-columns: minmax(138px, 1fr) 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  margin-top: 60px;
  display: grid;
}

.container-9 {
  text-align: left;
  justify-content: space-between;
  max-width: 1440px;
  margin-left: 120px;
  margin-right: 120px;
  padding: 0;
  display: block;
}

.container-9.centre {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.marquee-animation {
  background-color: #fafafa;
  padding-top: 40px;
  padding-bottom: 40px;
  display: none;
}

.desktop-carousel-2 {
  margin-top: 20px;
  padding-top: 3%;
  display: flex;
  overflow: hidden;
}

.container-10 {
  text-align: left;
  justify-content: space-between;
  max-width: 1440px;
  margin-left: 120px;
  margin-right: 120px;
  padding: 0;
  display: block;
}

.combine-form_input-grey-2 {
  color: #2e3191;
  border: 1px solid #cbcbcb;
  border-radius: 3px;
  min-width: 16rem;
  height: 3rem;
  margin-bottom: 0;
  padding: .5rem 1.25rem;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  transition: border-color .25s;
}

.combine-form_input-grey-2:hover {
  border-color: #d9dce2;
}

.combine-form_input-grey-2:focus {
  border-color: #6157f8;
}

.combine-form_input-grey-2::placeholder {
  color: #bfc4ce;
}

.combine-text-size-regular-2 {
  text-align: center;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.combine-form_text-area-grey-2 {
  color: var(--primary-blue);
  border: 1px solid #cbcbcb;
  border-radius: 3px;
  min-width: 16rem;
  height: 100%;
  min-height: 8rem;
  margin-bottom: 0;
  padding: .5rem 1.25rem;
  font-family: Open Sans, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  transition: border-color .25s;
}

.combine-form_text-area-grey-2:hover {
  border-color: #d9dce2;
}

.combine-form_text-area-grey-2:focus {
  border-color: #6157f8;
}

.combine-form_text-area-grey-2::placeholder {
  color: #bfc4ce;
}

.combine-form_error-message-2 {
  color: #e2004f;
  background-color: #ffecec;
  border: 1px solid #e2004f;
  border-radius: .25rem;
  margin-top: .5rem;
  padding: .5rem 1.25rem;
  font-size: .875rem;
}

.contact-form-section {
  background-color: var(--light-grey);
  background-image: linear-gradient(90deg, #ffffffe6, #ffffffb3), url('../images/26600915_wwang_040522_52.svg');
  background-position: 0 0, 70%;
  background-size: auto, cover;
  padding-top: 80px;
  padding-bottom: 80px;
}

.combine-form_success-message-2 {
  color: #6d9400;
  text-align: left;
  background-color: #ebf7de;
  border: 1px solid #6d9400;
  border-radius: .25rem;
  padding: .5rem 1.25rem;
  font-size: .875rem;
}

.botton-nav-bar {
  background-color: var(--dark-blue);
  padding-top: 20px;
}

.section-20 {
  background-color: #1f5d5d;
  padding-top: 40px;
  padding-bottom: 40px;
  display: none;
}

.link-11 {
  color: #cbcbcb;
}

.rl_footer3_link-2 {
  color: #cbcbcb;
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
}

.rl_footer3_link-2.w--current {
  color: var(--light-grey);
  text-decoration: underline;
}

.rl_footer3_link-2.w--current:active, .rl_footer3_link-2.w--current:lang(en) {
  text-decoration: none;
}

.rl_footer3_link-2.link-headings {
  color: #fafafa;
  padding-bottom: .8rem;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.paragraph-10 {
  color: #ffffffb3;
  margin-bottom: 12px;
  margin-left: 24px;
  font-size: 10px;
  font-weight: 300;
}

.rl_footer3_logo-2 {
  width: 100px;
  max-width: 100%;
}

.rl_footer3_line-divider-2 {
  opacity: .51;
  background-color: #cbcbcb;
  width: 100%;
  height: 1px;
}

.rl_footer3_spacing-block-4-2 {
  width: 100%;
  padding-bottom: 4rem;
}

.rl_footer3_menu-wrapper-2 {
  grid-column-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
}

.text-span-11 {
  color: #cbcbcb;
  text-decoration: underline;
}

.image-32 {
  width: 24px;
  height: 24px;
  margin-right: 0;
}

.div-block-69 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  display: flex;
}

.text-block-30 {
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

.link-12 {
  color: #cbcbcb;
  text-align: center;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  display: inline-block;
}

.image-33 {
  background-image: url('../images/logo-options_1logo options.png');
  background-position: 0 0;
  background-size: cover;
  width: 50px;
  max-width: 100%;
  height: 37px;
}

.rl_footer3_text-2 {
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.rl_footer3_text-2.main {
  color: #fafafa;
  font-size: 16px;
  font-weight: 500;
}

.bottom_credit_text-2 {
  color: #cbcbcb;
  margin-top: 10px;
  font-family: Poppins, sans-serif;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
}

.bottom_credit_text-2.underline {
  z-index: 2;
  color: #fff;
  position: relative;
}

.container-11 {
  text-align: left;
  justify-content: space-between;
  max-width: 1440px;
  margin-left: 120px;
  margin-right: 120px;
  padding: 0;
  display: block;
}

.text-block-31 {
  text-align: center;
  align-self: center;
  width: 100px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

.trial-box {
  display: flex;
}

.form-button-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: flex-end;
  margin-top: 40px;
  display: flex;
}

.about-textbix {
  width: 45%;
}

.tab-pane-road-safety, .tab-pane-pneumatics {
  margin-top: 5%;
}

.text-span-12 {
  font-weight: 600;
}

.text-span-13 {
  color: var(--primary-orange);
  font-weight: 600;
}

.about-heading {
  font-style: normal;
}

.text-span-14 {
  color: var(--primary-orange);
  font-weight: 600;
}

.why-choose-us-image {
  object-fit: cover;
  background-image: url('../images/Rectangle-20.jpg');
  background-position: 0 0;
  background-size: cover;
  flex: 1;
}

@media screen and (min-width: 1280px) {
  .section-tag {
    display: flex;
  }

  .category-card-title-box {
    max-height: 45px;
  }

  .category-card-image {
    max-height: 185px;
    position: static;
    inset: 0% 0% auto;
    overflow: hidden;
  }

  .brand-card {
    height: 200px;
  }

  .field-label {
    font-size: 9px;
    line-height: 13px;
  }

  .home-usp.container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .usps {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .paragraph.sub-text {
    margin-top: 31px;
    font-size: 16px;
  }

  .paragraph.sub-text.mobile {
    margin-top: 20px;
  }

  .container._2-column {
    align-items: flex-start;
  }

  .div-block-58 {
    padding-bottom: 100px;
  }

  .main-heading {
    font-size: 34px;
  }

  .image-17 {
    max-width: none;
  }

  .combine-contact3_component {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .category-title {
    font-size: 16px;
  }

  .image-26 {
    width: auto;
    height: auto;
    overflow: visible;
  }

  .category_description {
    opacity: 0;
    justify-content: flex-end;
    align-items: stretch;
  }

  .category_description:hover {
    background-image: none;
    justify-content: flex-end;
    align-items: stretch;
  }

  .inside_brand {
    display: flex;
  }

  .category_description-copy {
    opacity: 0;
    justify-content: space-between;
    align-items: stretch;
  }

  .category_description-copy:hover {
    justify-content: space-between;
    align-items: stretch;
  }

  .category_tabs {
    background-position: 100% 0;
    background-repeat: no-repeat;
    background-size: auto;
  }

  .category-card-title-box-selected {
    max-height: 45px;
  }

  .home_container._2-column {
    align-items: flex-start;
  }

  .product_description {
    opacity: 0;
    justify-content: space-between;
    align-items: stretch;
  }

  .product_description:hover {
    background-image: linear-gradient(#003566cc, #003566cc);
    justify-content: space-between;
    align-items: stretch;
  }

  .product-card-image {
    background-color: #fff;
    background-image: none;
    position: static;
    inset: 0% 0% auto;
    overflow: hidden;
  }

  .product-card-title-box {
    max-height: 45px;
  }

  .product-title {
    font-size: 16px;
  }

  .container-m {
    max-width: 1440px;
    margin-left: 140px;
    margin-right: 140px;
  }

  .fc-text {
    flex-direction: column;
    align-items: stretch;
    max-width: 1440px;
    display: flex;
  }

  .image-30 {
    width: auto;
    height: auto;
    overflow: visible;
  }

  .category-title-2, .category-title-2.inside_box {
    font-size: 16px;
  }

  .category_description-2 {
    opacity: 0;
    justify-content: flex-end;
    align-items: stretch;
  }

  .category_description-2:hover {
    background-image: none;
    justify-content: flex-end;
    align-items: stretch;
  }

  .image-31 {
    width: auto;
    height: auto;
    overflow: visible;
  }

  .category-title-3, .category-title-3.inside_box, .brand_title-2, .brand_title-2.inside_box {
    font-size: 16px;
  }

  .inside_brand-2 {
    display: flex;
  }

  .paragraph-9.feature-brand-subtext {
    font-size: 16px;
  }

  .brand-card-3 {
    height: 200px;
  }
}

@media screen and (min-width: 1440px) {
  .top-nav-bar {
    margin-left: 190px;
    margin-right: 190px;
    padding-top: 12px;
  }

  .image {
    width: 60px;
    height: 44px;
  }

  .contact_button {
    font-size: 15px;
    line-height: 20px;
  }

  .div-block {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .contact {
    height: 42px;
    padding: 15px 30px;
    font-size: 13px;
    line-height: 15px;
  }

  .div-block-3 {
    margin-top: 120px;
    margin-left: 190px;
    margin-right: 190px;
  }

  .primary-button {
    padding: 15px 30px;
    font-size: 14px;
    line-height: 1;
  }

  .primary-button.white {
    margin-top: 0;
    font-size: 14px;
  }

  .primary-button.white._1440 {
    font-size: 12px;
    line-height: 12px;
  }

  .secondary-button {
    padding: 15px 30px;
    font-size: 14px;
    line-height: 11px;
  }

  .button-container {
    line-height: 10px;
  }

  .div-block-5 {
    height: 690px;
  }

  .div-block-16 {
    background-size: cover;
    width: 1440px;
    height: 770px;
  }

  .image-3 {
    width: 520px;
    height: 415px;
    margin-top: 240px;
    margin-left: 190px;
  }

  .div-block-17 {
    width: 720px;
    padding-top: 290px;
    padding-bottom: 0;
    padding-left: 90px;
  }

  .text-block-3 {
    padding-bottom: 4px;
    font-size: 12px;
    line-height: 13px;
  }

  .heading-3 {
    width: 580px;
    font-size: 36px;
    line-height: 36px;
  }

  .text-block-4 {
    width: 524px;
    margin-top: 16px;
    margin-bottom: 44px;
    font-size: 12px;
    line-height: 17px;
  }

  .heading-4 {
    width: 420px;
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 36px;
    line-height: 36px;
  }

  .text-block-5 {
    width: 420px;
    font-size: 12px;
    line-height: 17px;
  }

  .div-block-19 {
    height: 940px;
    padding-top: 80px;
    padding-left: 190px;
    padding-right: 190px;
  }

  .section-tag {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    height: 40px;
  }

  .div-block-21 {
    align-items: center;
    height: 48px;
    margin-top: 16px;
    margin-bottom: 60px;
  }

  .category-card {
    width: auto;
    height: auto;
  }

  .featured-categories-grid {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .heading-7 {
    font-size: 36px;
    line-height: 48px;
  }

  .block-text {
    font-size: 16px;
    line-height: 20px;
  }

  .card-title {
    font-size: 13px;
    line-height: 18px;
  }

  .category-card-title-box {
    max-height: none;
    padding: 21px 18px;
    position: relative;
  }

  .category-card-image.hand-tools {
    height: 100vw;
  }

  .category-card-image.safety-products-ppe, .category-card-image.measuring-tools, .category-card-image.construction-materials {
    height: 240px;
  }

  .div-block-26 {
    background-size: cover;
    width: 1440px;
    height: 850px;
    padding-top: 80px;
    padding-left: 190px;
    padding-right: 190px;
  }

  .div-block-35 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    height: 40px;
  }

  .div-block-36 {
    width: 10px;
    height: 40px;
  }

  .text-block-12 {
    font-size: 16px;
    line-height: 20px;
  }

  .div-block-37 {
    align-items: center;
    height: 48px;
    margin-top: 16px;
    margin-bottom: 60px;
  }

  .heading-8 {
    height: 48px;
    font-size: 36px;
    line-height: 48px;
  }

  .brand-card {
    box-shadow: 0 0 15px #0003;
  }

  .featured-brands {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .brand-card-image.alko-plus {
    background-size: cover;
  }

  .brand-card-image._3m-india, .brand-card-image.venus, .brand-card-image.karam {
    background-size: cover;
    width: 256px;
    height: 200px;
  }

  .heading-9 {
    padding: 21px 18px;
    font-size: 13px;
    line-height: 18px;
  }

  .div-block-41 {
    height: 250px;
  }

  .div-block-42 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    align-items: center;
    width: 1160px;
    padding-top: 40px;
  }

  .div-block-43 {
    width: 10px;
    height: 40px;
  }

  .text-block-14 {
    font-size: 16px;
    line-height: 20px;
  }

  .div-block-44 {
    width: 1440px;
    height: 600px;
  }

  .form-contact-us {
    background-size: cover;
    width: 720px;
    height: 600px;
  }

  .div-block-47 {
    width: 535px;
    height: 600px;
    padding-left: 220px;
  }

  .heading-10 {
    width: 280px;
    margin-bottom: 40px;
    font-size: 36px;
    line-height: 36px;
  }

  .text-field {
    width: 100vw;
    max-width: 280px;
    height: 100vw;
    max-height: 40px;
    margin-bottom: 12px;
  }

  .text-field.last {
    margin-bottom: 40px;
  }

  .field-label {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 14px;
  }

  .form-block {
    align-items: center;
    margin-bottom: 0;
    padding-left: 0;
  }

  .home-usp {
    padding-left: 190px;
    padding-right: 190px;
  }

  .home-usp.container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .usps {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    top: -90px;
  }

  .box {
    width: auto;
    height: auto;
    padding: 24px 20px;
  }

  .image-4 {
    width: 24px;
    height: 24px;
  }

  .text-block-15 {
    margin-top: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 14px;
  }

  .text-block-16 {
    font-size: 12px;
    line-height: 17px;
  }

  .div-block-51 {
    width: 720px;
  }

  .banner {
    margin-top: -130px;
  }

  .banner-heading {
    font-size: 48px;
  }

  .paragraph {
    max-width: 500px;
    font-size: 14px;
  }

  .paragraph.sub-text {
    font-size: 12px;
  }

  .paragraph.black {
    color: #000c;
    margin-bottom: 0;
  }

  .container._2-column {
    object-fit: fill;
    justify-content: space-between;
  }

  .nav-link.contact---nav {
    margin-left: 20px;
  }

  .section-title {
    font-size: 12px;
  }

  .h2 {
    font-size: 36px;
  }

  .h2.white {
    margin-bottom: 40px;
  }

  .h2.extra-padding {
    margin-left: 100px;
  }

  .info-textbox.about {
    justify-content: flex-start;
  }

  .info-textbox.home {
    max-width: none;
  }

  .info-textbox.about-page {
    max-width: 400px;
  }

  .image-5 {
    width: 70%;
    max-height: 1000px;
  }

  .div-block-58 {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    max-height: 1000px;
    padding-top: 100px;
    padding-bottom: 140px;
    padding-left: 100px;
  }

  .image-6 {
    width: 28px;
    height: 28px;
  }

  .paragraph-3 {
    font-size: 12px;
  }

  .text-block-19 {
    font-size: 14px;
  }

  .div-block-59-copy {
    max-width: 340px;
  }

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

  .connect-links {
    justify-content: space-between;
    height: 50px;
  }

  .image-8 {
    background-image: url('../images/logo-options_1logo options.png');
    background-position: 50%;
    flex: none;
    width: 68px;
    height: 44px;
  }

  .connect {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    text-decoration: none;
  }

  .div-block-61 {
    justify-content: flex-end;
  }

  .bottom-nav {
    margin-top: 60px;
  }

  .column-title, .bottom-link, .bottom-link.w--current {
    font-size: 14px;
  }

  .paragraph-4 {
    margin-bottom: 20px;
    font-size: 13px;
  }

  .text-block-20 {
    font-size: 18px;
    text-decoration: none;
  }

  .main-heading {
    max-width: 600px;
    font-size: 36px;
  }

  .section-6 {
    max-height: 310vw;
  }

  .div-block-64 {
    justify-content: center;
    align-items: center;
    padding-top: 0;
    display: flex;
  }

  .div-block-65 {
    max-height: 600px;
  }

  .image-19 {
    width: 40%;
  }

  .quick-stack-3 {
    flex: 0 auto;
  }

  .text-block-21 {
    font-size: 18px;
  }

  .link-3 {
    padding-top: 2px;
    padding-bottom: 2px;
    font-size: 14px;
    line-height: 19px;
  }

  .text-block-22 {
    padding-top: 2px;
    padding-bottom: 2px;
    font-size: 14px;
  }

  .body-2 {
    font-size: 16px;
    line-height: 1.4;
  }

  .nav_logo {
    flex: none;
  }

  .video {
    align-self: auto;
  }

  .cateogry-title-box {
    justify-content: flex-end;
  }

  .category-title {
    padding: 20px 16px;
    font-size: 16px;
    display: flex;
    position: static;
    inset: 0%;
  }

  .category-title.inside_box {
    flex-direction: row;
  }

  .category_description {
    opacity: 0;
    justify-content: flex-end;
  }

  .category_description:hover {
    background-image: none;
    justify-content: flex-end;
    align-items: stretch;
  }

  .quick-stack-4 {
    margin-top: 100px;
  }

  .category_description-copy {
    opacity: 0;
    justify-content: space-between;
  }

  .category_description-copy:hover {
    justify-content: space-between;
    align-items: stretch;
  }

  .featured-brands-tab {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .category-card-title-box-selected {
    max-height: none;
    padding: 21px 18px;
  }

  .browse-categories-banner {
    font-size: 48px;
  }

  .home_container._2-column {
    object-fit: fill;
    justify-content: space-between;
  }

  .product_description {
    opacity: 0;
    justify-content: space-between;
  }

  .product_description:hover {
    justify-content: space-between;
    align-items: stretch;
  }

  .product-card-image.hand-tools {
    height: 100vw;
  }

  .product-card-image.safety-products-ppe, .product-card-image.measuring-tools, .product-card-image.construction-materials {
    height: 240px;
  }

  .product-card-title-box {
    max-height: none;
    padding: 24px 18px;
    position: relative;
  }

  .product-title {
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 16px;
    display: flex;
    position: absolute;
    inset: 0%;
  }

  .product-title.inside_box {
    flex-direction: row;
  }

  .image-29 {
    width: 30rem;
    height: auto;
  }

  .logo-image {
    height: 120px;
  }

  .home---about-section {
    max-height: 310vw;
  }

  .primary-button-2 {
    padding: 15px 30px;
    font-size: 14px;
    line-height: 1;
  }

  .paragraph-8 {
    max-width: 500px;
    font-size: 14px;
  }

  .paragraph-8.black {
    color: #000c;
    margin-bottom: 0;
  }

  .container-6 {
    margin-left: 140px;
    margin-right: 140px;
  }

  .h2-2 {
    font-size: 36px;
  }

  .cateogry-title-box-2 {
    justify-content: flex-end;
  }

  .image-30 {
    object-fit: fill;
    order: 1;
    position: static;
    overflow: visible;
  }

  .featured-categories-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .secondary-button-2 {
    padding: 15px 30px;
    font-size: 14px;
    line-height: 11px;
  }

  .category-image-box-2 {
    justify-content: center;
    align-items: center;
  }

  .category_description-2 {
    opacity: 0;
    justify-content: flex-end;
  }

  .category_description-2:hover {
    background-image: none;
    justify-content: flex-end;
    align-items: stretch;
  }

  .container-7 {
    margin-left: 140px;
    margin-right: 140px;
  }

  .cateogry-title-box-3 {
    justify-content: flex-end;
  }

  .category-title-3.inside_box {
    flex-direction: row;
  }

  .section-17 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .secondary-button-3 {
    padding: 15px 30px;
    font-size: 14px;
    line-height: 11px;
  }

  .category-card-3 {
    width: auto;
    height: auto;
  }

  .container-8 {
    margin-left: 140px;
    margin-right: 140px;
  }

  .paragraph-9 {
    max-width: 500px;
    font-size: 14px;
  }

  .paragraph-9.feature-brand-subtext {
    font-size: 12px;
  }

  .featured-brands-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .container-9 {
    margin-left: 140px;
    margin-right: 140px;
  }

  .container-9.centre {
    justify-content: space-between;
  }

  .marquee-animation {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .container-10 {
    margin-left: 140px;
    margin-right: 140px;
  }

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

  .paragraph-10 {
    margin-bottom: 20px;
    font-size: 13px;
  }

  .div-block-69 {
    justify-content: flex-end;
  }

  .text-block-30 {
    font-size: 18px;
    text-decoration: none;
  }

  .image-33 {
    background-image: url('../images/logo-options_1logo options.png');
    background-position: 50%;
    flex: none;
    width: 68px;
    height: 44px;
  }

  .container-11 {
    margin-left: 140px;
    margin-right: 140px;
  }

  .form-button-container {
    line-height: 10px;
  }

  .why-choose-us-image {
    width: 70%;
    max-height: 1000px;
  }
}

@media screen and (min-width: 1920px) {
  .banner {
    margin-top: -100px;
  }

  .container, .container._2-column {
    margin-left: 220px;
    margin-right: 220px;
  }

  .section-2 {
    background-position: 100% 100%;
    padding-bottom: 100px;
  }

  .div-block-58 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    max-height: 1000px;
    padding-top: 140px;
    padding-bottom: 160px;
  }

  .image-19 {
    width: 40%;
  }

  .nav_container, .rl-padding-global {
    margin-left: 220px;
    margin-right: 220px;
  }

  .footer {
    z-index: 5;
    position: static;
    inset: auto 0% 0%;
  }

  .combine-contact3_component {
    justify-content: center;
  }

  .combine-container-large {
    margin-right: auto;
  }

  .combine-padding-global-2 {
    margin-left: 220px;
    margin-right: 220px;
  }

  .combine-section_contact3 {
    padding-top: 0%;
    padding-bottom: 0%;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .category_description {
    opacity: 0;
    background-color: #fff0;
    background-image: none;
    justify-content: flex-end;
  }

  .category_description:hover {
    justify-content: flex-end;
    align-items: stretch;
  }

  .category_description-copy {
    opacity: 1;
    justify-content: space-between;
  }

  .category_description-copy:hover {
    justify-content: space-between;
    align-items: stretch;
  }

  .home_container._2-column {
    margin-left: 220px;
    margin-right: 220px;
  }

  .product_description {
    opacity: 1;
    justify-content: space-between;
  }

  .product_description:hover {
    justify-content: space-between;
    align-items: stretch;
  }

  .container-m {
    margin-left: 220px;
    margin-right: 220px;
  }

  .logo-image {
    height: 150px;
  }

  .fc-text, .container-6, .container-6.sec-6 {
    margin-left: 220px;
    margin-right: 220px;
  }

  .category_description-2 {
    opacity: 0;
    background-color: #fff0;
    background-image: none;
    justify-content: flex-end;
  }

  .category_description-2:hover {
    justify-content: flex-end;
    align-items: stretch;
  }

  .container-7, .container-8, .container-9, .container-10 {
    margin-left: 220px;
    margin-right: 220px;
  }

  .botton-nav-bar {
    z-index: 5;
    position: static;
    inset: auto 0% 0%;
  }

  .container-11 {
    margin-left: 220px;
    margin-right: 220px;
  }
}

@media screen and (max-width: 991px) {
  .brand-card {
    max-height: 200px;
  }

  .text-field {
    width: 180px;
    height: 24px;
    margin-bottom: 6px;
  }

  .text-field.last {
    margin-bottom: 20px;
  }

  .field-label {
    margin-bottom: 2px;
  }

  .home-usp {
    margin-left: 140px;
    margin-right: 140px;
    padding-left: 0;
    padding-right: 0;
  }

  .home-usp.container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .usps {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .box {
    width: 15rem;
    max-width: 250px;
    height: auto;
  }

  .container {
    margin-left: 60px;
    margin-right: 60px;
  }

  .container._2-column {
    max-width: 1440px;
  }

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

  .h2 {
    font-size: 24px;
  }

  .info-textbox.about {
    align-items: flex-start;
  }

  .image-5 {
    width: 50%;
    max-width: none;
    height: auto;
    display: none;
  }

  .div-block-57 {
    background-color: var(--light-grey);
  }

  .section-9 {
    display: block;
  }

  .div-block-64 {
    height: 50vw;
  }

  .image-15 {
    width: 50vw;
  }

  .image-19 {
    max-width: none;
  }

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

  .text-block-21 {
    margin-bottom: 12px;
  }

  .image-21 {
    width: 28px;
    height: 28px;
  }

  .link-3 {
    color: #000;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
    line-height: 1.4;
  }

  .cell-2 {
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .cell-3 {
    align-items: center;
  }

  .text-block-22 {
    text-align: center;
    font-size: 12px;
    line-height: 19px;
  }

  .waves---hamburger-icon {
    color: #fff;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: auto;
    display: flex;
  }

  .waves---menu-button {
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    padding: 0;
    display: flex;
  }

  .waves---menu-button.w--open {
    background-color: var(--waves-library--black);
    border-radius: 6px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    padding: 0;
    display: flex;
  }

  .waves---nav-buttons-right {
    grid-column-gap: 8px;
  }

  .waves---nav-link {
    color: #003566;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 20px;
    display: flex;
  }

  .waves---dropdown-link {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 20px;
  }

  .waves-dropdown-list.w--open {
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    position: static;
  }

  .waves-dropdown-toggle {
    color: #003566;
    padding-right: 16px;
    font-size: 20px;
  }

  .waves---nav-dropdown {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .waves---nav-menu {
    background-color: var(--waves-library--white);
    border: 1px solid #1313131a;
    border-radius: 8px;
    margin-top: 4px;
  }

  .waves---nav-brand-link {
    padding-left: 0;
  }

  .waves-master-nav-2 {
    display: flex;
  }

  .navbar-2 {
    margin-left: auto;
    margin-right: auto;
  }

  .combine {
    padding-left: 40px;
    padding-right: 40px;
  }

  .combine-menu-icon_line-bottom, .combine-menu-icon_line-middle, .combine-menu-icon_line-top {
    background-color: #fff;
    border-radius: 8rem;
    width: 1.75rem;
    height: .2rem;
  }

  .menu-icon {
    display: none;
  }

  .combine-nav3_menu-button {
    padding: 0;
  }

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

  .button-small {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .nav-button-wrapper {
    justify-content: flex-start;
    margin: 1rem 2rem;
  }

  .combine-nav3_item {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .combine-nav3_dropdown-list.w--open {
    justify-content: center;
    align-items: center;
    padding-bottom: .5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .combine-nav3_icon {
    color: #003566;
  }

  .combine-nav3_dropdown-toggle {
    padding-left: 2.5rem;
  }

  .nav_dropdown {
    width: 100%;
  }

  .nav_link {
    color: var(--waves-library--black);
    text-align: left;
    align-items: flex-start;
    width: 100%;
    padding: 1.25rem 2rem;
  }

  .nav_link:hover {
    background-color: var(--dark-blue);
    outline-offset: 0px;
    color: var(--waves-library--white);
    border-radius: 0;
    outline: 1px #fff;
  }

  .nav_link:lang(en) {
    color: var(--waves-library--black);
  }

  .nav_link-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav_menu {
    border-bottom: 1px solid var(--combine-library--grey-200);
    background-color: var(--combine-library--grey-050);
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav_logo-link {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: row;
  }

  .nav_logo-link.w--current {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: row;
    flex: 1;
    justify-content: flex-start;
    align-items: center;
  }

  .nav_container {
    margin-left: 60px;
    margin-right: 60px;
  }

  .nav_bar {
    padding-top: .7rem;
    padding-bottom: .7rem;
  }

  .text-block-24 {
    color: #003566;
  }

  .rl_footer3_spacing-block-4 {
    padding-bottom: 4.5rem;
  }

  .rl-text-style-small.mobile {
    width: 80%;
  }

  .rl_footer3_top-wrapper {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .rl-padding-section-medium {
    padding-top: 4.5rem;
    padding-bottom: 1rem;
  }

  .rl-padding-global {
    margin-left: 60px;
    margin-right: 60px;
  }

  .footer {
    padding-top: 0;
  }

  .combine-contact3_image {
    display: none;
  }

  .combine-form_input-grey {
    min-width: 12rem;
  }

  .combine-heading-style-h2 {
    font-size: 2.5rem;
  }

  .combine-contact3_component {
    flex-direction: column;
    align-items: center;
  }

  .combine-padding-section-medium {
    padding-top: 0;
    padding-bottom: 0;
  }

  .combine-padding-global-2 {
    margin-left: 60px;
    margin-right: 60px;
  }

  .combine-section_contact3 {
    padding-top: 5%;
    padding-bottom: 0%;
  }

  .bottom-credit {
    margin-bottom: -2px;
  }

  .brand_title {
    align-items: center;
    display: flex;
  }

  .category_description {
    opacity: 0;
    justify-content: flex-end;
  }

  .category_description:hover {
    justify-content: flex-end;
    align-items: stretch;
  }

  .inside_brand {
    text-decoration: none;
  }

  .category_description-copy {
    opacity: 0;
    justify-content: space-between;
  }

  .category_description-copy:hover {
    justify-content: space-between;
    align-items: stretch;
  }

  .home_container {
    margin-left: 60px;
    margin-right: 60px;
  }

  .home_container._2-column {
    max-width: 1440px;
  }

  .product_description {
    opacity: 0;
    justify-content: space-between;
  }

  .product_description:hover {
    justify-content: space-between;
    align-items: stretch;
  }

  .container-m {
    margin-left: 60px;
    margin-right: 60px;
  }

  .image-29 {
    width: 20rem;
    max-width: 100%;
    position: absolute;
    overflow: hidden;
  }

  .category-brands {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .logo-container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .fc-text, .container-5 {
    margin-left: 60px;
    margin-right: 60px;
  }

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

  .container-6, .container-6.sec-6 {
    margin-left: 60px;
    margin-right: 60px;
  }

  .h2-2 {
    font-size: 24px;
  }

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

  .category_description-2 {
    opacity: 0;
    justify-content: flex-end;
  }

  .category_description-2:hover {
    justify-content: flex-end;
    align-items: stretch;
  }

  .container-7, .container-8 {
    margin-left: 60px;
    margin-right: 60px;
  }

  .inside_brand-2 {
    text-decoration: none;
  }

  .brand-card-3 {
    max-height: 200px;
  }

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

  .featured-brands-2 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .container-9 {
    margin-left: 60px;
    margin-right: 60px;
  }

  .marquee-animation {
    display: block;
  }

  .container-10 {
    margin-left: 60px;
    margin-right: 60px;
  }

  .combine-form_input-grey-2 {
    min-width: 12rem;
  }

  .botton-nav-bar {
    padding-top: 0;
  }

  .rl_footer3_spacing-block-4-2 {
    padding-bottom: 4.5rem;
  }

  .container-11 {
    margin-left: 60px;
    margin-right: 60px;
  }

  .text-block-31 {
    text-align: left;
    width: 100px;
  }

  .lottie-animation-2 {
    width: 40px;
    height: 40px;
  }

  .lottie-animation-3 {
    width: 48px;
  }

  .why-choose-us-image {
    width: 50%;
    max-width: none;
    height: auto;
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .primary-button.mobile, .secondary-button.mobile {
    font-size: 14px;
    line-height: 1.2;
  }

  .featured-categories-grid {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .category-card-image {
    overflow: hidden;
  }

  .featured-brands {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .usps {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .box {
    overflow: visible;
  }

  .box.moible {
    width: 100%;
    padding: 16px;
  }

  .div-block-50 {
    width: 24px;
    height: 24px;
  }

  .banner {
    background-position: 40%;
  }

  .paragraph.black {
    text-align: left;
    width: 100%;
  }

  .container {
    margin-left: 24px;
    margin-right: 24px;
    display: block;
  }

  .container.sec-6 {
    flex-direction: column;
    align-self: center;
    align-items: center;
  }

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

  .h2.extra-padding {
    margin-left: 24px;
    margin-right: 24px;
  }

  .h2.extra-padding.white {
    margin-left: 60px;
    margin-right: 60px;
  }

  .info-textbox.about {
    text-align: center;
    justify-content: center;
    align-items: flex-start;
    max-width: none;
    margin-bottom: 5%;
  }

  .info-textbox.home {
    width: 100%;
    max-width: none;
    margin-top: 0%;
    margin-left: 0;
  }

  .info-textbox.about-page {
    width: 100%;
    max-width: none;
    margin-top: 8%;
    margin-left: 0;
  }

  .homescreen-banner-section {
    background-image: linear-gradient(to bottom, null, null), url('../images/TSHS-banner-images---compressed.jpg');
    background-position: 0 0, 60%;
  }

  .section-6 {
    flex-direction: column;
    padding-top: 50%;
    padding-bottom: 10%;
    display: flex;
  }

  .section-7 {
    padding-top: 5%;
    padding-bottom: 5%;
  }

  .section-8 {
    padding-top: 5%;
    padding-bottom: 10%;
  }

  .section-9 {
    display: block;
  }

  .image-19 {
    width: 80%;
    margin-left: 0;
    margin-right: 0;
    display: block;
  }

  .cell {
    padding-left: 0;
    padding-right: 0;
  }

  .waves---nav-cta {
    display: none;
  }

  .waves---nav-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .nav_link {
    color: var(--waves-library--black);
  }

  .nav_link:hover {
    outline-offset: 0px;
    border-radius: 0;
    outline: 1px #fff;
  }

  .nav_container {
    margin-left: 24px;
    margin-right: 24px;
  }

  .rl_footer3_legal-list {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    grid-auto-flow: row;
  }

  .bottom_credit_text {
    margin-top: 2rem;
  }

  .rl_footer3_bottom-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-bottom: 1rem;
  }

  .rl_footer3_spacing-block-5 {
    padding-bottom: 1.5rem;
  }

  .rl_footer3_spacing-block-4 {
    padding-bottom: 3rem;
  }

  .rl_footer3_menu-wrapper {
    grid-column-gap: 1.5rem;
  }

  .rl_footer3_spacing-block-3 {
    padding-bottom: 1.5rem;
  }

  .rl_footer3_spacing-block-2 {
    padding-bottom: 1.25rem;
  }

  .rl_footer3_spacing-block-1 {
    padding-bottom: 1.5rem;
  }

  .rl_footer3_top-wrapper {
    grid-row-gap: 3rem;
  }

  .rl-padding-section-medium {
    padding-top: 3rem;
    padding-bottom: 1rem;
  }

  .rl-padding-global {
    margin-left: 24px;
    margin-right: 24px;
  }

  .combine-form_text-area-grey, .combine-form_input-grey {
    min-width: 0;
  }

  .combine-padding-global-2 {
    margin-left: 24px;
    margin-right: 24px;
  }

  .bottom-credit {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-bottom: 1rem;
  }

  .bottom-credit.bottom {
    margin-bottom: 0;
  }

  .image-24 {
    width: 40%;
  }

  .image-26 {
    height: auto;
    overflow: visible;
  }

  .products-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .inside_brand {
    text-decoration: none;
  }

  .brand_info {
    margin-top: 5%;
    margin-bottom: 5%;
  }

  .quick-stack-4 {
    object-fit: fill;
    overflow: hidden;
  }

  .tabs-menu {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .featured-brands-tab {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .container-4 {
    margin-left: 60px;
    margin-right: 60px;
  }

  .cell-4 {
    text-align: center;
    flex-direction: row;
  }

  .brand_collection {
    grid-template-columns: 1fr 1fr;
  }

  .home_container {
    display: block;
  }

  .home_container.sec-6 {
    flex-direction: column;
    align-self: center;
    align-items: center;
  }

  .product-card-image {
    overflow: hidden;
  }

  .container-m {
    margin-left: 24px;
    margin-right: 24px;
  }

  .ppe {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .image-29 {
    width: 12rem;
    display: none;
    position: absolute;
    overflow: hidden;
  }

  .cell-6 {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }

  .category-brands {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .desktop-carousel {
    display: none;
  }

  .logo-container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .logo-container.mobile {
    justify-content: space-around;
  }

  .fc-text {
    margin-left: 24px;
    margin-right: 24px;
    overflow: hidden;
  }

  .paragraph-6 {
    overflow: hidden;
  }

  .brand-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .mobile-carousel {
    justify-content: space-between;
    display: flex;
  }

  .container-5 {
    margin-left: 24px;
    margin-right: 24px;
  }

  .padding {
    padding-bottom: 1.25rem;
  }

  .home---about-section {
    flex-direction: column;
    display: flex;
  }

  ._10-spacing {
    width: 100%;
    height: 60px;
  }

  .paragraph-8.black {
    text-align: left;
    width: 100%;
  }

  .usp-vertical {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    width: 100%;
  }

  .container-6 {
    margin-left: 24px;
    margin-right: 24px;
    display: block;
  }

  .container-6.sec-6 {
    flex-direction: column;
    align-self: center;
    align-items: center;
    margin-left: 24px;
    margin-right: 24px;
  }

  .image-30 {
    height: auto;
    overflow: visible;
  }

  .featured-categories-grid-2 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .container-7 {
    margin-left: 24px;
    margin-right: 24px;
    display: block;
  }

  .image-31 {
    height: auto;
    overflow: visible;
  }

  .section-17 {
    padding-top: 5%;
    padding-bottom: 5%;
  }

  .featured-categories-grid-3 {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .container-8 {
    margin-left: 24px;
    margin-right: 24px;
    display: block;
  }

  .inside_brand-2 {
    text-decoration: none;
  }

  .featured-brands-2 {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .container-9 {
    margin-left: 24px;
    margin-right: 24px;
    display: block;
  }

  .marquee-animation {
    display: block;
  }

  .desktop-carousel-2 {
    display: none;
  }

  .container-10 {
    margin-left: 24px;
    margin-right: 24px;
    display: block;
  }

  .combine-form_input-grey-2, .combine-form_text-area-grey-2 {
    min-width: 0;
  }

  .rl_footer3_spacing-block-4-2 {
    padding-bottom: 3rem;
  }

  .rl_footer3_menu-wrapper-2 {
    grid-column-gap: 1.5rem;
  }

  .bottom_credit_text-2 {
    margin-top: 2rem;
  }

  .container-11 {
    margin-left: 24px;
    margin-right: 24px;
    display: block;
  }

  .about-textbix {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .primary-button {
    text-align: center;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 14px;
    line-height: 1.4;
  }

  .primary-button.white {
    text-align: center;
    margin-top: 60px;
    font-size: 14px;
    line-height: 1;
    display: block;
  }

  .primary-button.white.mobile {
    margin-top: 0;
    padding: 16px;
    display: inline-block;
  }

  .primary-button.top-padding {
    margin-top: 0;
  }

  .primary-button.form-button {
    width: 100%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 80px;
    padding-right: 80px;
  }

  .primary-button.mobile {
    padding-left: 20px;
    padding-right: 20px;
  }

  .primary-button.invisible {
    display: block;
  }

  .primary-button.visible {
    display: none;
  }

  .primary-button.upper-padding {
    margin-top: 0;
  }

  .secondary-button {
    opacity: 1;
    outline-offset: 0px;
    text-align: center;
    outline: 3px #fff;
    padding: 15px 32px;
    font-size: 14px;
    line-height: 1.4;
  }

  .secondary-button.mobile {
    padding-left: 20px;
    padding-right: 20px;
  }

  .secondary-button.small {
    display: none;
  }

  .button-container {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    justify-content: flex-start;
    align-items: center;
    font-size: 9px;
  }

  .section-tag {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    height: 20px;
    min-height: 0;
  }

  .category-card {
    flex-direction: column;
    justify-content: flex-end;
    display: flex;
    overflow: hidden;
  }

  .featured-categories-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-rows: auto auto auto auto auto auto auto auto;
    grid-template-columns: 1fr;
    margin-top: 40px;
    overflow: hidden;
  }

  .block-text {
    font-size: 11px;
  }

  .block {
    width: 8px;
    height: 20px;
  }

  .card-title.moble {
    max-width: 100px;
  }

  .category-card-title-box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    max-width: 160rem;
    height: 7vh;
    padding: 15px;
    font-size: 12px;
    line-height: 2;
    display: block;
    position: relative;
    overflow: hidden;
  }

  .category-card-image {
    display: none;
  }

  .category-card-image.hand-tools, .category-card-image.safety-products-ppe, .category-card-image.measuring-tools, .category-card-image.construction-materials {
    background-position: 50%;
  }

  .brand-card {
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    max-height: 200px;
    display: flex;
  }

  .featured-brands {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: minmax(100px, 1fr) minmax(100px, 1fr);
    margin-top: 40px;
  }

  .form-block {
    padding: 13px;
  }

  .home-usp.container {
    flex-direction: column-reverse;
    align-items: center;
    display: flex;
    overflow: visible;
  }

  .usps {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-direction: column;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
  }

  .box {
    max-width: none;
    padding: 24px;
  }

  .box.moible {
    width: 100%;
  }

  .image-4 {
    width: 24px;
    height: 24px;
  }

  .text-block-15 {
    margin-top: 16px;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1;
  }

  .text-block-16 {
    font-size: 14px;
    line-height: 1.4;
  }

  .banner {
    background-position: 30%;
    margin-top: -160px;
    padding-bottom: 40px;
  }

  .paragraph.sub-text {
    color: #fffc;
    margin-top: 20px;
    margin-bottom: 80px;
    font-size: 16px;
  }

  .paragraph.sub-text.mobile {
    text-align: center;
    margin-bottom: 40px;
  }

  .paragraph.black {
    flex-direction: column;
    align-items: flex-start;
    max-width: 500px;
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 14px;
    display: flex;
    overflow: hidden;
  }

  .breadcrumb {
    flex-wrap: wrap;
    align-content: space-between;
    overflow: hidden;
  }

  .container {
    flex-direction: row-reverse;
    max-width: none;
    display: block;
    overflow: visible;
  }

  .container._2-column {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    display: flex;
  }

  .container.sec-6 {
    align-self: stretch;
  }

  .container.bottom {
    flex-flow: column;
    justify-content: flex-end;
    display: flex;
  }

  .section-2 {
    background-image: none;
    background-size: auto;
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .section-title {
    margin-bottom: 20px;
    font-size: 11px;
  }

  .h2 {
    line-height: 1.2;
  }

  .h2.exception {
    max-width: 500px;
    margin-bottom: 20px;
    font-size: 30px;
  }

  .h2.exception.about {
    width: 100%;
  }

  .h2.white {
    margin-bottom: 0;
    line-height: 1.2;
  }

  .h2.centered {
    width: auto;
  }

  .h2.centered.extra-padding {
    margin-bottom: 30px;
    margin-left: 40px;
  }

  .h2.extra-padding {
    text-align: center;
    width: auto;
    margin-left: 40px;
    margin-right: 40px;
  }

  .h2.extra-padding.white {
    margin-bottom: 20px;
    margin-left: 24px;
    margin-right: 24px;
  }

  .info-textbox.home {
    max-width: 500px;
    margin-left: 0;
  }

  .info-textbox.about {
    text-align: left;
    flex-direction: column;
    justify-content: space-between;
    align-self: auto;
    align-items: flex-start;
    display: flex;
  }

  .info-textbox.home {
    flex-flow: column;
    margin-top: 0%;
    margin-left: 0;
    display: flex;
  }

  .info-textbox.about-page {
    max-width: 500px;
    margin-left: 0;
  }

  .div-block-58 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    padding-left: 40px;
    padding-right: 40px;
  }

  .image-7 {
    display: none;
  }

  .homescreen-banner-section {
    height: 80vh;
    margin-top: -87px;
    padding-top: 180px;
    padding-bottom: 40px;
  }

  .main-heading {
    max-width: 500px;
    font-size: 30px;
    line-height: 1;
  }

  .main-heading.mobile {
    text-align: center;
  }

  .section-6 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 350px;
    padding-bottom: 15%;
    display: flex;
    overflow: visible;
  }

  .section-7 {
    background-color: #003566;
    padding-top: 10%;
    padding-bottom: 15%;
  }

  .section-header {
    display: block;
  }

  .section-header.mobile {
    align-items: center;
    margin-top: 24px;
    padding-left: 0;
    display: flex;
  }

  .section-8 {
    padding-top: 10%;
    padding-bottom: 15%;
  }

  .section-9 {
    padding-top: 8%;
    padding-bottom: 8%;
    display: block;
  }

  .div-block-64 {
    flex-direction: column;
    justify-content: space-between;
    display: flex;
  }

  .image-15 {
    display: none;
  }

  .image-19 {
    align-self: stretch;
    margin-left: auto;
    margin-right: auto;
    display: none;
    overflow: hidden;
  }

  .quick-stack-3 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-top: 60px;
  }

  .cell {
    border-right-style: none;
  }

  .image-21 {
    width: 40px;
    height: 40px;
  }

  .link-3 {
    margin-bottom: 4px;
    font-size: 14px;
  }

  .cell-3 {
    border-left-style: none;
  }

  .waves---nav-cta {
    display: none;
  }

  .image_holder {
    overflow: hidden;
  }

  .combine-menu-icon_line-bottom, .combine-menu-icon_line-middle, .combine-menu-icon_line-top {
    background-color: var(--waves-library--white);
  }

  .button-small {
    flex: 1;
  }

  .nav-button-wrapper {
    margin: 1.2rem 1.5rem;
  }

  .combine-nav3_dropdown-toggle:hover {
    outline-offset: 0px;
    border-radius: 0;
    outline: 1px #003566;
  }

  .nav_dropdown {
    color: #003566;
    display: none;
  }

  .nav_link {
    color: #000;
    padding: 1.2rem 1.5rem;
    font-size: 16px;
  }

  .nav_link:hover {
    color: #f2f3f7;
    border-radius: 0;
  }

  .nav_link.w--current {
    color: var(--waves-library--black);
  }

  .nav_link.w--current:hover {
    color: var(--waves-library--white);
  }

  .bottom_credit_text {
    align-self: auto;
    width: 40vw;
    margin-top: 0;
    font-size: .8rem;
  }

  .bottom_credit_text.underline {
    text-align: right;
    align-self: auto;
    margin-top: 0;
  }

  .rl_footer3_link, .rl_footer3_link.w--current {
    font-size: 14px;
  }

  .rl_footer3_link.link-headings {
    font-size: 16px;
  }

  .rl_footer3_link-list._0-opacity {
    opacity: 0;
    display: flex;
  }

  .rl_footer3_menu-wrapper {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .rl_footer3_social-list {
    margin-top: 20px;
  }

  .rl-text-style-small {
    font-size: 14px;
  }

  .rl-text-style-small.mobile {
    width: 100%;
    font-size: 14px;
    line-height: 1.4;
  }

  .rl_footer3_text {
    margin-bottom: 10px;
  }

  .rl_footer3_spacing-block-2 {
    padding-bottom: 2rem;
  }

  .rl_footer3_logo {
    margin-bottom: 20px;
  }

  .rl_footer3_top-wrapper {
    grid-row-gap: 40px;
  }

  .rl-padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 1rem;
  }

  .rl-container-large {
    margin-left: 0;
    margin-right: 0;
  }

  .rl-padding-global {
    margin-left: 24px;
    margin-right: 24px;
  }

  .combine-contact3_image-wrapper {
    display: none;
  }

  .combine-form_field-wrapper {
    margin-bottom: .25rem;
  }

  .combine-form_label {
    font-size: 14px;
  }

  .combine-form_input-grey {
    height: 52px;
    margin-bottom: 1rem;
  }

  .combine-text-size-regular {
    margin-bottom: 1rem;
  }

  .combine-heading-style-h2 {
    font-size: 30px;
  }

  .combine-padding-global-2 {
    margin-left: 24px;
    margin-right: 24px;
  }

  .combine-section_contact3 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .bottom-credit {
    margin-bottom: 0;
    font-size: 0;
  }

  .bottom-credit.bottom {
    margin-bottom: -15px;
  }

  .bottom-credit.mobile {
    align-items: flex-end;
    padding-bottom: 1rem;
  }

  .link-4 {
    text-align: right;
  }

  .text-span-2 {
    text-align: right;
    display: inline-block;
  }

  .div-block-67 {
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
  }

  .brand_title {
    flex: 0 auto;
    align-self: auto;
    align-items: center;
    height: 100vw;
    max-height: 45px;
    padding: 0;
    display: flex;
  }

  .brand_title.inside_box {
    text-decoration: none;
    overflow: hidden;
  }

  .brand_title.inside_box:hover {
    align-items: center;
  }

  .brand_logo_box {
    justify-content: space-between;
    padding: 10px;
    overflow: hidden;
  }

  .brand_title_box {
    justify-content: flex-end;
  }

  .image-24 {
    align-self: auto;
    width: 60%;
    margin-bottom: 20px;
  }

  .video {
    flex-direction: row;
    align-self: center;
    align-items: stretch;
    width: 22%;
    min-width: 100%;
    min-height: 400px;
    display: block;
    overflow: hidden;
  }

  .brand_products {
    padding-bottom: 80px;
  }

  .category-image-box {
    flex: none;
    justify-content: flex-start;
    align-self: stretch;
    align-items: stretch;
    max-height: 320px;
    display: flex;
    overflow: hidden;
  }

  .cateogry-title-box {
    justify-content: flex-end;
    max-height: none;
    display: flex;
    position: static;
    overflow: hidden;
  }

  .category-title {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    position: static;
    inset: 0%;
    overflow: hidden;
  }

  .category-title.inside_box {
    background-color: #001d38;
  }

  .image-26 {
    flex: 0 auto;
    align-self: auto;
    width: auto;
    max-width: none;
    display: block;
    overflow: hidden;
  }

  .products-grid {
    grid-column-gap: 20px;
    grid-row-gap: 28px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    margin-top: 60px;
    overflow: hidden;
  }

  .product-card {
    justify-content: space-between;
    align-items: stretch;
  }

  .product-title-box {
    margin-top: 10px;
  }

  .text-block-27 {
    justify-content: flex-start;
    align-items: center;
    font-size: 13px;
    line-height: 1.4;
  }

  .category_description {
    opacity: 0;
    justify-content: flex-end;
  }

  .paragraph-5 {
    flex: 1;
    font-size: 16px;
  }

  .inside_brand {
    justify-content: flex-end;
    text-decoration: none;
  }

  .inside_brand:hover {
    justify-content: flex-end;
    margin-bottom: -4px;
    padding-bottom: 0;
  }

  .div-block-68 {
    padding-left: 0;
  }

  .quick-stack-4 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-top: 20px;
  }

  .category_tab.w--current {
    flex-direction: row;
    align-items: stretch;
    display: block;
  }

  .tabs-menu {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .category_description-copy {
    opacity: 0;
    justify-content: space-between;
    display: flex;
  }

  .featured-brands-tab {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
    padding: 26px;
  }

  .category_tabs {
    background-color: #00356600;
    padding-bottom: 0;
  }

  .category-card-title-box-selected {
    padding: 20px 16px;
    font-size: 12px;
  }

  .heading-15 {
    text-align: center;
    font-size: 24px;
    line-height: 1.2;
  }

  .container-4 {
    margin-left: 60px;
    margin-right: 60px;
  }

  .productcheck {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .home_container {
    flex-direction: row-reverse;
    max-width: none;
    margin-left: 24px;
    margin-right: 24px;
    display: block;
  }

  .home_container._2-column {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    display: flex;
  }

  .home_container.sec-6 {
    flex-direction: column-reverse;
    justify-content: center;
    align-self: stretch;
    align-items: baseline;
    display: flex;
  }

  .product-page-images {
    flex: 0 auto;
    align-self: auto;
    max-width: none;
    display: block;
    overflow: hidden;
  }

  .product_description {
    opacity: 0;
    justify-content: space-between;
    display: none;
  }

  .product-card-image {
    max-height: 187px;
    display: none;
  }

  .product-card-image.hand-tools, .product-card-image.safety-products-ppe, .product-card-image.measuring-tools, .product-card-image.construction-materials {
    background-position: 50%;
  }

  .product-card-title-box {
    flex-direction: column;
    flex: 0 auto;
    justify-content: center;
    align-self: auto;
    align-items: center;
    padding: 36px 12px;
    font-size: 12px;
    line-height: 1;
    display: block;
    position: static;
    overflow: hidden;
  }

  .product-title {
    margin-left: 0;
    margin-right: 0;
    padding: 16px;
    position: absolute;
    inset: 0%;
    overflow: hidden;
  }

  .product-title.inside_box {
    background-color: #001d38;
  }

  .product_tab {
    justify-content: space-between;
    padding: 16px;
  }

  .product_tab.w--current {
    flex-direction: column;
    align-items: center;
    padding: 16px;
    display: flex;
  }

  .prodcut_description {
    flex: 1;
    font-size: 16px;
  }

  .cell-5 {
    padding: 13px;
  }

  .container-m {
    padding: 0;
  }

  .container-m.extra-space {
    margin-left: 12px;
    margin-right: 12px;
  }

  .image-29 {
    display: none;
    position: absolute;
  }

  .cell-6 {
    text-align: left;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .product-grid {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .category-brands {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
  }

  .why-choose-us---point {
    text-align: center;
    max-width: 300px;
  }

  .tabs-content {
    margin-top: 60px;
  }

  .logo-container {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .logo-container.mobile {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
  }

  .logo-image {
    height: 64px;
  }

  .fc-text {
    margin-left: 24px;
    margin-right: 24px;
    padding-top: 40px;
  }

  .paragraph-6 {
    margin-top: 10px;
  }

  .heading-16 {
    margin-bottom: 20px;
  }

  .brand-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
    overflow: hidden;
  }

  .button {
    width: 9rem;
    padding-left: 6px;
    padding-right: 6px;
    font-size: 11px;
    display: block;
    overflow: hidden;
  }

  .mobile-carousel {
    padding-top: 5%;
  }

  .padding {
    padding-bottom: 2rem;
  }

  .home---about-section {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 100px;
    display: flex;
    overflow: visible;
  }

  .primary-button-2 {
    text-align: center;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 14px;
    line-height: 1.4;
  }

  .primary-button-2._40-padding {
    align-self: flex-start;
    margin-top: 0;
  }

  .primary-button-2.form-button {
    width: 100%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 80px;
    padding-right: 80px;
  }

  .icon-image {
    width: 32px;
    height: 32px;
  }

  .usp-contentbox {
    flex-flow: column;
  }

  ._10-spacing {
    height: 100px;
    display: none;
  }

  ._10-spacing.visible {
    display: block;
  }

  .usp-textbox {
    width: 100%;
    margin-left: 0;
  }

  .usp-text {
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
  }

  .paragraph-8.black {
    flex-direction: column;
    align-items: flex-start;
    max-width: 500px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    overflow: hidden;
  }

  .usp-header {
    text-align: center;
    margin-top: 16px;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1;
  }

  .usp-vertical {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    order: 1;
    align-self: center;
    width: 100%;
  }

  .icon-box {
    width: 48px;
    height: 48px;
  }

  .container-6 {
    flex-direction: row-reverse;
    max-width: none;
    margin-left: 24px;
    margin-right: 24px;
    display: block;
    overflow: visible;
  }

  .h2-2 {
    line-height: 1.2;
  }

  .h2-2.exception {
    max-width: 500px;
    margin-bottom: 20px;
    font-size: 30px;
  }

  .h2-2.exception.about {
    width: 100%;
  }

  .cateogry-title-box-2 {
    justify-content: flex-end;
    max-height: none;
    display: flex;
    position: static;
    overflow: hidden;
  }

  .image-30 {
    object-fit: cover;
    flex: 0 auto;
    align-self: auto;
    width: auto;
    max-width: none;
    display: block;
    overflow: hidden;
  }

  .category-title-2 {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    position: static;
    inset: 0%;
    overflow: hidden;
  }

  .category-title-2.inside_box {
    background-color: var(--primary-orange);
    font-size: 21px;
  }

  .featured-categories-section {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .secondary-button-2 {
    outline-offset: 0px;
    text-align: center;
    outline: 3px #fff;
    padding: 15px 32px;
    font-size: 14px;
    line-height: 1.4;
  }

  .category-card-2 {
    flex-direction: column;
    justify-content: flex-end;
    max-height: 350px;
    display: flex;
    overflow: hidden;
  }

  .section-header-2 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    display: flex;
  }

  .category-image-box-2 {
    flex: none;
    justify-content: flex-start;
    align-self: stretch;
    align-items: stretch;
    max-height: 320px;
    display: flex;
    overflow: hidden;
  }

  .category_description-2 {
    opacity: 0;
    justify-content: flex-end;
  }

  .featured-categories-grid-2 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
    margin-top: 60px;
    overflow: hidden;
  }

  .container-7 {
    flex-direction: row-reverse;
    max-width: none;
    margin-left: 24px;
    margin-right: 24px;
    display: block;
    overflow: visible;
  }

  .cateogry-title-box-3 {
    justify-content: flex-end;
    max-height: none;
    display: flex;
    position: static;
    overflow: hidden;
  }

  .image-31 {
    flex: 0 auto;
    align-self: auto;
    width: auto;
    max-width: none;
    display: block;
    overflow: hidden;
  }

  .category-title-3 {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    position: static;
    inset: 0%;
    overflow: hidden;
  }

  .category-title-3.inside_box {
    background-color: #1f5d5d;
  }

  .section-17 {
    padding-top: 10%;
    padding-bottom: 15%;
  }

  .secondary-button-3 {
    outline-offset: 0px;
    text-align: center;
    outline: 3px #fff;
    padding: 15px 32px;
    font-size: 14px;
    line-height: 1.4;
  }

  .category-card-3 {
    flex-direction: column;
    justify-content: flex-end;
    display: flex;
    overflow: hidden;
  }

  .featured-categories-grid-3 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-rows: auto auto auto auto auto auto auto auto;
    grid-template-columns: 1fr;
    margin-top: 40px;
    overflow: hidden;
  }

  .container-8 {
    flex-direction: row-reverse;
    max-width: none;
    margin-left: 24px;
    margin-right: 24px;
    display: block;
    overflow: visible;
  }

  .brand_title_box-2 {
    justify-content: flex-end;
  }

  .image_holder-2 {
    overflow: hidden;
  }

  .brand_title-2 {
    flex: 0 auto;
    align-self: auto;
  }

  .brand_title-2.inside_box {
    text-decoration: none;
    overflow: hidden;
  }

  .brand_title-2.inside_box:hover {
    align-items: center;
  }

  .brand_logo_box-2 {
    justify-content: space-between;
    padding: 10px;
    overflow: hidden;
  }

  .inside_brand-2 {
    justify-content: flex-end;
    text-decoration: none;
  }

  .inside_brand-2:hover {
    justify-content: flex-end;
    margin-bottom: -4px;
    padding-bottom: 0;
  }

  .paragraph-9.feature-brand-subtext {
    color: #fffc;
    margin-top: 20px;
    margin-bottom: 80px;
    font-size: 16px;
  }

  .brand-card-3 {
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    max-height: 200px;
    display: flex;
  }

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

  .featured-brands-2 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: minmax(100px, 1fr) minmax(100px, 1fr);
    margin-top: 60px;
  }

  .container-9 {
    flex-direction: row-reverse;
    max-width: none;
    margin-left: 24px;
    margin-right: 24px;
    display: block;
    overflow: visible;
  }

  .marquee-animation {
    padding-top: 8%;
    padding-bottom: 8%;
    display: block;
  }

  .container-10 {
    flex-direction: row-reverse;
    max-width: none;
    margin-left: 24px;
    margin-right: 24px;
    display: block;
    overflow: visible;
  }

  .combine-form_input-grey-2 {
    height: 52px;
    margin-bottom: 1rem;
  }

  .combine-text-size-regular-2 {
    margin-bottom: 1rem;
  }

  .contact-form-section {
    padding-top: 60px;
  }

  .rl_footer3_link-2, .rl_footer3_link-2.w--current {
    font-size: 14px;
  }

  .rl_footer3_link-2.link-headings {
    font-size: 16px;
  }

  .rl_footer3_logo-2 {
    margin-bottom: 20px;
  }

  .rl_footer3_menu-wrapper-2 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .text-span-11 {
    text-align: right;
    display: inline-block;
  }

  .link-12 {
    text-align: right;
  }

  .rl_footer3_text-2 {
    margin-bottom: 10px;
  }

  .bottom_credit_text-2 {
    align-self: auto;
    width: 40vw;
    margin-top: 0;
    font-size: .8rem;
  }

  .bottom_credit_text-2.underline {
    text-align: right;
    align-self: auto;
    margin-top: 0;
  }

  .container-11 {
    flex-direction: row-reverse;
    max-width: none;
    margin-left: 24px;
    margin-right: 24px;
    display: block;
    overflow: visible;
  }

  .form-button-container {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    justify-content: flex-start;
    align-items: center;
    font-size: 9px;
  }
}

#w-node-_3fc0aff8-a4e1-f3fc-f476-8e56eda8a826-a39d24c4, #w-node-_3fc0aff8-a4e1-f3fc-f476-8e56eda8a82f-a39d24c4, #w-node-_3fc0aff8-a4e1-f3fc-f476-8e56eda8a838-a39d24c4, #w-node-_3fc0aff8-a4e1-f3fc-f476-8e56eda8a84a-a39d24c4, #w-node-cd66eb32-bcdc-d67b-374f-086a0385aebf-a39d24c4, #w-node-_30dd4812-35fb-c344-dacf-a64cbe416671-a39d24c4, #w-node-ce44b2b4-48b4-26b8-199a-30cbd18d4088-d18d4001 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ce44b2b4-48b4-26b8-199a-30cbd18d4096-d18d4001 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-ce44b2b4-48b4-26b8-199a-30cbd18d40a4-d18d4001 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_499688dc-89ca-95e7-881c-5d7c30ab2d17-a39d250a {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-_4da16b66-8d37-bc76-8591-f21c0c33e716-a39d250a, #w-node-_4da16b66-8d37-bc76-8591-f21c0c33e71b-a39d250a, #w-node-_4da16b66-8d37-bc76-8591-f21c0c33e721-a39d250a, #w-node-_4da16b66-8d37-bc76-8591-f21c0c33e739-a39d250a, #w-node-dc1c0c14-5237-3876-62cc-f3189f325bea-a39d250a, #w-node-_277035dc-dc4c-efb9-7426-1bf0442ec845-a39d250a, #w-node-_9f896543-a530-f615-7475-1febfff88b21-a39d250a, #w-node-_17048b7a-c68c-d5d8-e6ef-388404e659d4-a39d250a, #w-node-f530047a-2ed4-d557-e177-5d3093bec707-a39d250a, #w-node-df27cefd-4136-5079-e782-3ec0d30d00c2-a39d250a, #w-node-db7c1567-95d9-501e-b0e3-20e1c8f6c4f6-a39d251b, #w-node-_00099c63-ab73-a574-a730-bc68642d6d5b-a39d251b, #w-node-_8be48bd7-ac4e-ffb1-8e8d-79f018862f5f-a39d251b, #w-node-_7e621a6c-0fdd-835b-a1b2-0eea9e435a5f-a39d251b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f04b163e-c05b-13d9-51ac-b4d5ae92f93a-a39d2532 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-_9aa5f4b5-9b3f-517e-4e11-2d9a1eb8211c-a39d2532, #w-node-_9aa5f4b5-9b3f-517e-4e11-2d9a1eb82122-a39d2532, #w-node-_9aa5f4b5-9b3f-517e-4e11-2d9a1eb82127-a39d2532, #w-node-_9aa5f4b5-9b3f-517e-4e11-2d9a1eb8212d-a39d2532, #w-node-_9aa5f4b5-9b3f-517e-4e11-2d9a1eb82133-a39d2532, #w-node-_9aa5f4b5-9b3f-517e-4e11-2d9a1eb82139-a39d2532, #w-node-_9aa5f4b5-9b3f-517e-4e11-2d9a1eb8213f-a39d2532, #w-node-_9aa5f4b5-9b3f-517e-4e11-2d9a1eb82145-a39d2532 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e35ac781-3591-7996-971e-fa5a69111ad9-a39d2535 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_21353974-ff83-3abe-c5c5-5c4dc64527c2-a39d2536 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-cc4ebcfd-8160-c9e7-2694-6228011a51a3-a39d2536, #w-node-cc4ebcfd-8160-c9e7-2694-6228011a51a9-a39d2536, #w-node-cc4ebcfd-8160-c9e7-2694-6228011a51ae-a39d2536, #w-node-cc4ebcfd-8160-c9e7-2694-6228011a51b4-a39d2536, #w-node-cc4ebcfd-8160-c9e7-2694-6228011a51ba-a39d2536, #w-node-cc4ebcfd-8160-c9e7-2694-6228011a51c0-a39d2536, #w-node-cc4ebcfd-8160-c9e7-2694-6228011a51c6-a39d2536, #w-node-cc4ebcfd-8160-c9e7-2694-6228011a51cc-a39d2536 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3970a3f6-9185-6eb1-aa3a-24f9ccc2bf34-a39d2538 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-_9b9fb30b-3b68-273d-6415-2fd178dc19d0-a39d2538, #w-node-_9b9fb30b-3b68-273d-6415-2fd178dc19d6-a39d2538, #w-node-_9b9fb30b-3b68-273d-6415-2fd178dc19db-a39d2538, #w-node-_9b9fb30b-3b68-273d-6415-2fd178dc19e1-a39d2538, #w-node-_9b9fb30b-3b68-273d-6415-2fd178dc19e7-a39d2538 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f62fa6ec-3c63-a051-5731-30c787b8dc8e-a39d253a {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-_9477caee-834c-5e47-2850-03bd6efad938-a39d253a, #w-node-_9477caee-834c-5e47-2850-03bd6efad93e-a39d253a, #w-node-_9477caee-834c-5e47-2850-03bd6efad943-a39d253a, #w-node-_9477caee-834c-5e47-2850-03bd6efad949-a39d253a, #w-node-_9477caee-834c-5e47-2850-03bd6efad94f-a39d253a, #w-node-_9477caee-834c-5e47-2850-03bd6efad955-a39d253a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7ced5e47-cf1a-f14d-8b4d-4f95a7abd560-a39d253b {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-_524d34bb-b39d-2b83-a051-0cd76de1ffab-a39d253b, #w-node-_524d34bb-b39d-2b83-a051-0cd76de1ffb1-a39d253b, #w-node-_524d34bb-b39d-2b83-a051-0cd76de1ffb6-a39d253b, #w-node-_524d34bb-b39d-2b83-a051-0cd76de1ffbc-a39d253b, #w-node-_524d34bb-b39d-2b83-a051-0cd76de1ffc2-a39d253b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_265961e0-9769-e34c-3f58-c9688d15d69a-a39d253c {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-_025d4a7f-aa9b-093c-b984-e13bb2c505f8-a39d253c, #w-node-_025d4a7f-aa9b-093c-b984-e13bb2c505fe-a39d253c, #w-node-_025d4a7f-aa9b-093c-b984-e13bb2c50603-a39d253c, #w-node-_025d4a7f-aa9b-093c-b984-e13bb2c50609-a39d253c, #w-node-_025d4a7f-aa9b-093c-b984-e13bb2c5060f-a39d253c, #w-node-_025d4a7f-aa9b-093c-b984-e13bb2c50615-a39d253c, #w-node-_025d4a7f-aa9b-093c-b984-e13bb2c5061b-a39d253c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b976038d-e302-b847-27ba-21631de7dc03-a39d2554 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-f6836608-63b2-3aa2-911c-48f83775f8b1-a39d2554, #w-node-f6836608-63b2-3aa2-911c-48f83775f8b7-a39d2554, #w-node-f6836608-63b2-3aa2-911c-48f83775f8bc-a39d2554, #w-node-f6836608-63b2-3aa2-911c-48f83775f8c2-a39d2554, #w-node-f6836608-63b2-3aa2-911c-48f83775f8c8-a39d2554, #w-node-f6836608-63b2-3aa2-911c-48f83775f8ce-a39d2554, #w-node-f6836608-63b2-3aa2-911c-48f83775f8d4-a39d2554, #w-node-f6836608-63b2-3aa2-911c-48f83775f8da-a39d2554 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b1df59e8-0297-555b-c58b-f92f5a56d365-a39d2556 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-a1495fda-fec2-c3f8-73a1-bd78656df675-a39d2556, #w-node-a1495fda-fec2-c3f8-73a1-bd78656df67b-a39d2556, #w-node-a1495fda-fec2-c3f8-73a1-bd78656df680-a39d2556, #w-node-a1495fda-fec2-c3f8-73a1-bd78656df686-a39d2556, #w-node-a1495fda-fec2-c3f8-73a1-bd78656df68c-a39d2556 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0028aca2-5d01-5f68-e463-eba8b7ca9026-a39d2558 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-fd8c2591-0107-a909-360f-518ad24aaae9-a39d2558, #w-node-fd8c2591-0107-a909-360f-518ad24aaaef-a39d2558, #w-node-fd8c2591-0107-a909-360f-518ad24aaaf4-a39d2558, #w-node-fd8c2591-0107-a909-360f-518ad24aaafa-a39d2558, #w-node-fd8c2591-0107-a909-360f-518ad24aab00-a39d2558 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3215ca0c-32e7-d5a4-b5a1-17798c29a50f-a39d2571, #w-node-c5274797-7d80-bff1-d000-2ceb32cb3158-a39d2571, #w-node-b77c91e5-a691-bb6d-dbe5-bb0e733452a1-a39d2571, #w-node-a6de2e8c-edf6-a1cb-f006-e9a4de6d8ec1-a39d2571, #w-node-ae374646-2dc6-e015-927f-11fed3d12f98-a39d2571, #w-node-ab2b060e-a3fe-7c25-e315-7aff9b7cc4b2-a39d2571 {
  justify-self: stretch;
}

#w-node-be079b7e-0330-f53e-bccb-befb301418d5-a39d2575 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-_81f70b6b-c84e-f8d9-1809-26273c285c58-a39d2575, #w-node-_81f70b6b-c84e-f8d9-1809-26273c285c5e-a39d2575, #w-node-_81f70b6b-c84e-f8d9-1809-26273c285c63-a39d2575, #w-node-_81f70b6b-c84e-f8d9-1809-26273c285c69-a39d2575, #w-node-_81f70b6b-c84e-f8d9-1809-26273c285c6f-a39d2575 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f6a1c53d-89be-1a47-fdb8-74cdc82eb223-a39d2579 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-_1fc784fd-eeb5-1f4a-6533-8d9366afc0c4-a39d2579, #w-node-_1fc784fd-eeb5-1f4a-6533-8d9366afc0ca-a39d2579, #w-node-_1fc784fd-eeb5-1f4a-6533-8d9366afc0cf-a39d2579, #w-node-_1fc784fd-eeb5-1f4a-6533-8d9366afc0d5-a39d2579, #w-node-_1fc784fd-eeb5-1f4a-6533-8d9366afc0db-a39d2579 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_662b7b70-9417-8c0c-b150-3074e482ed49-a39d257a {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-_2df6e0ee-7d48-1674-e955-3fc2a7db9a1a-a39d257a, #w-node-_2df6e0ee-7d48-1674-e955-3fc2a7db9a20-a39d257a, #w-node-_2df6e0ee-7d48-1674-e955-3fc2a7db9a25-a39d257a, #w-node-_2df6e0ee-7d48-1674-e955-3fc2a7db9a2b-a39d257a, #w-node-_2df6e0ee-7d48-1674-e955-3fc2a7db9a31-a39d257a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5fded3f6-9dfb-afcb-7509-608acc169216-a39d257f {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-cdfb53e6-0b63-f918-e616-37fa3451a39e-a39d257f, #w-node-cdfb53e6-0b63-f918-e616-37fa3451a3a4-a39d257f, #w-node-cdfb53e6-0b63-f918-e616-37fa3451a3a9-a39d257f, #w-node-cdfb53e6-0b63-f918-e616-37fa3451a3af-a39d257f, #w-node-cdfb53e6-0b63-f918-e616-37fa3451a3b5-a39d257f, #w-node-cdfb53e6-0b63-f918-e616-37fa3451a3bb-a39d257f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cc76faa2-92fe-ea10-3c15-5139555f5928-a39d2583 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-d6d5ff14-4fca-57cc-366a-627b6933039e-a39d2583, #w-node-d6d5ff14-4fca-57cc-366a-627b693303a4-a39d2583, #w-node-d6d5ff14-4fca-57cc-366a-627b693303a9-a39d2583, #w-node-d6d5ff14-4fca-57cc-366a-627b693303af-a39d2583, #w-node-d6d5ff14-4fca-57cc-366a-627b693303b5-a39d2583, #w-node-d6d5ff14-4fca-57cc-366a-627b693303bb-a39d2583, #w-node-d6d5ff14-4fca-57cc-366a-627b693303c1-a39d2583, #w-node-d6d5ff14-4fca-57cc-366a-627b693303c7-a39d2583, #w-node-a7a9e8b7-fea6-e193-cd31-f632a2ea12e7-a39d2583 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b976038d-e302-b847-27ba-21631de7dc03-4dbc8e5e {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-f6836608-63b2-3aa2-911c-48f83775f8b1-4dbc8e5e, #w-node-f6836608-63b2-3aa2-911c-48f83775f8b7-4dbc8e5e, #w-node-f6836608-63b2-3aa2-911c-48f83775f8bc-4dbc8e5e, #w-node-f6836608-63b2-3aa2-911c-48f83775f8c2-4dbc8e5e, #w-node-f6836608-63b2-3aa2-911c-48f83775f8c8-4dbc8e5e, #w-node-f6836608-63b2-3aa2-911c-48f83775f8ce-4dbc8e5e, #w-node-f6836608-63b2-3aa2-911c-48f83775f8d4-4dbc8e5e, #w-node-f6836608-63b2-3aa2-911c-48f83775f8da-4dbc8e5e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b976038d-e302-b847-27ba-21631de7dc03-c5e5d92a {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-f6836608-63b2-3aa2-911c-48f83775f8b1-c5e5d92a, #w-node-f6836608-63b2-3aa2-911c-48f83775f8b7-c5e5d92a, #w-node-f6836608-63b2-3aa2-911c-48f83775f8bc-c5e5d92a, #w-node-f6836608-63b2-3aa2-911c-48f83775f8c2-c5e5d92a, #w-node-f6836608-63b2-3aa2-911c-48f83775f8c8-c5e5d92a, #w-node-f6836608-63b2-3aa2-911c-48f83775f8ce-c5e5d92a, #w-node-f6836608-63b2-3aa2-911c-48f83775f8d4-c5e5d92a, #w-node-f6836608-63b2-3aa2-911c-48f83775f8da-c5e5d92a, #w-node-c65daa59-69d9-7e63-ff6d-98b05053f96e-c5e5d92a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b976038d-e302-b847-27ba-21631de7dc03-1172e651 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-f6836608-63b2-3aa2-911c-48f83775f8b1-1172e651, #w-node-f6836608-63b2-3aa2-911c-48f83775f8b7-1172e651, #w-node-f6836608-63b2-3aa2-911c-48f83775f8bc-1172e651, #w-node-f6836608-63b2-3aa2-911c-48f83775f8c2-1172e651, #w-node-f6836608-63b2-3aa2-911c-48f83775f8c8-1172e651, #w-node-f6836608-63b2-3aa2-911c-48f83775f8ce-1172e651 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b976038d-e302-b847-27ba-21631de7dc03-9fe676da {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-f6836608-63b2-3aa2-911c-48f83775f8b1-9fe676da, #w-node-f6836608-63b2-3aa2-911c-48f83775f8b7-9fe676da, #w-node-f6836608-63b2-3aa2-911c-48f83775f8bc-9fe676da, #w-node-f6836608-63b2-3aa2-911c-48f83775f8c2-9fe676da {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b976038d-e302-b847-27ba-21631de7dc03-9fea291b {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-f6836608-63b2-3aa2-911c-48f83775f8b1-9fea291b, #w-node-f6836608-63b2-3aa2-911c-48f83775f8b7-9fea291b, #w-node-f6836608-63b2-3aa2-911c-48f83775f8bc-9fea291b, #w-node-f6836608-63b2-3aa2-911c-48f83775f8c2-9fea291b, #w-node-f6836608-63b2-3aa2-911c-48f83775f8c8-9fea291b, #w-node-f6836608-63b2-3aa2-911c-48f83775f8ce-9fea291b, #w-node-f6836608-63b2-3aa2-911c-48f83775f8d4-9fea291b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b976038d-e302-b847-27ba-21631de7dc03-09fd7460 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-f6836608-63b2-3aa2-911c-48f83775f8b1-09fd7460, #w-node-f6836608-63b2-3aa2-911c-48f83775f8b7-09fd7460, #w-node-f6836608-63b2-3aa2-911c-48f83775f8bc-09fd7460, #w-node-f6836608-63b2-3aa2-911c-48f83775f8c2-09fd7460, #w-node-f6836608-63b2-3aa2-911c-48f83775f8c8-09fd7460, #w-node-f6836608-63b2-3aa2-911c-48f83775f8ce-09fd7460, #w-node-_4be6fb21-8a03-a64c-a0aa-f72adb9f37d4-09fd7460, #w-node-_956f3ed0-b776-a468-b458-039f33b1aa7b-09fd7460, #w-node-_98880296-c036-8a57-fda3-e98339bc1c1a-09fd7460 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b976038d-e302-b847-27ba-21631de7dc03-09fd8ac6 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-f6836608-63b2-3aa2-911c-48f83775f8b1-09fd8ac6, #w-node-f6836608-63b2-3aa2-911c-48f83775f8b7-09fd8ac6, #w-node-f6836608-63b2-3aa2-911c-48f83775f8bc-09fd8ac6, #w-node-f6836608-63b2-3aa2-911c-48f83775f8c2-09fd8ac6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b976038d-e302-b847-27ba-21631de7dc03-0567640c {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-f6836608-63b2-3aa2-911c-48f83775f8b1-0567640c, #w-node-f6836608-63b2-3aa2-911c-48f83775f8b7-0567640c, #w-node-f6836608-63b2-3aa2-911c-48f83775f8bc-0567640c, #w-node-f6836608-63b2-3aa2-911c-48f83775f8c2-0567640c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0028aca2-5d01-5f68-e463-eba8b7ca9026-9fcff967 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-fd8c2591-0107-a909-360f-518ad24aaae9-9fcff967, #w-node-fd8c2591-0107-a909-360f-518ad24aaaef-9fcff967, #w-node-fd8c2591-0107-a909-360f-518ad24aaaf4-9fcff967, #w-node-fd8c2591-0107-a909-360f-518ad24aaafa-9fcff967, #w-node-fd8c2591-0107-a909-360f-518ad24aab00-9fcff967, #w-node-b2cb9b4b-6479-c970-e5c2-dee59ca94906-9fcff967, #w-node-_15ca9dc6-65e0-aa35-aec4-a508cf820e1a-9fcff967, #w-node-aa17e39c-3c11-e2cd-6faa-33c6703e2283-9fcff967, #w-node-a06f003e-0626-5e4d-93e0-044c9b2caaa0-9fcff967, #w-node-c8844963-ed78-f52c-4204-231bbf815d40-9fcff967, #w-node-_6712c43d-ba6d-3ab8-128e-a37fdc79c5df-9fcff967, #w-node-_43f1308b-6d16-c34a-d372-66a2b38be7b3-9fcff967 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b976038d-e302-b847-27ba-21631de7dc03-04f61173 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-f6836608-63b2-3aa2-911c-48f83775f8b1-04f61173, #w-node-f6836608-63b2-3aa2-911c-48f83775f8b7-04f61173, #w-node-f6836608-63b2-3aa2-911c-48f83775f8bc-04f61173, #w-node-f6836608-63b2-3aa2-911c-48f83775f8c2-04f61173, #w-node-f6836608-63b2-3aa2-911c-48f83775f8c8-04f61173, #w-node-f6836608-63b2-3aa2-911c-48f83775f8ce-04f61173 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b976038d-e302-b847-27ba-21631de7dc03-2ae81dcf {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-f6836608-63b2-3aa2-911c-48f83775f8b1-2ae81dcf, #w-node-f6836608-63b2-3aa2-911c-48f83775f8b7-2ae81dcf, #w-node-f6836608-63b2-3aa2-911c-48f83775f8bc-2ae81dcf, #w-node-f6836608-63b2-3aa2-911c-48f83775f8c2-2ae81dcf, #w-node-f6836608-63b2-3aa2-911c-48f83775f8c8-2ae81dcf, #w-node-f6836608-63b2-3aa2-911c-48f83775f8ce-2ae81dcf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b976038d-e302-b847-27ba-21631de7dc03-4833f68f {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-f6836608-63b2-3aa2-911c-48f83775f8c8-4833f68f, #w-node-f6836608-63b2-3aa2-911c-48f83775f8ce-4833f68f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b976038d-e302-b847-27ba-21631de7dc03-d5554020 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-f6836608-63b2-3aa2-911c-48f83775f8b1-d5554020, #w-node-f6836608-63b2-3aa2-911c-48f83775f8b7-d5554020, #w-node-f6836608-63b2-3aa2-911c-48f83775f8bc-d5554020, #w-node-f6836608-63b2-3aa2-911c-48f83775f8c2-d5554020, #w-node-f6836608-63b2-3aa2-911c-48f83775f8c8-d5554020, #w-node-f6836608-63b2-3aa2-911c-48f83775f8ce-d5554020 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b976038d-e302-b847-27ba-21631de7dc03-54e0a1c6 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-f6836608-63b2-3aa2-911c-48f83775f8b1-54e0a1c6, #w-node-f1efa89c-3895-36d1-7ba2-10b59a737da7-54e0a1c6, #w-node-_79e7d088-d01b-8db4-245e-b5b6ce24c900-54e0a1c6, #w-node-_484181a6-cf82-d4f7-f170-c1b3286a7fda-54e0a1c6, #w-node-_9d373ae2-f1b6-03b4-a227-d3d4a9b5af6d-54e0a1c6, #w-node-_38e466ff-f60f-7775-a2dd-927cbab9c85e-54e0a1c6, #w-node-cb049428-6b75-2166-f283-b9a9c1a0f092-54e0a1c6, #w-node-_32a658b7-4e02-43b8-c535-beb596a824c5-54e0a1c6, #w-node-_5439332b-9e9c-bc9a-102c-a07693583a74-54e0a1c6, #w-node-ae5eb01d-896d-fd7e-1339-d632ea14231b-54e0a1c6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b976038d-e302-b847-27ba-21631de7dc03-06b30668 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

#w-node-f6836608-63b2-3aa2-911c-48f83775f8b1-06b30668, #w-node-f1efa89c-3895-36d1-7ba2-10b59a737da7-06b30668, #w-node-_79e7d088-d01b-8db4-245e-b5b6ce24c900-06b30668, #w-node-_484181a6-cf82-d4f7-f170-c1b3286a7fda-06b30668, #w-node-c883a76b-2734-c108-836d-01b872649a61-06b30668, #w-node-_7ef5e526-1059-59cf-04a4-21f260493f6c-06b30668, #w-node-dff290f5-7c5f-9cb4-9f42-6fa8c16549e7-06b30668, #w-node-dcff350f-ef0f-dd15-1eb2-97d05a405627-06b30668, #w-node-_94c135ff-359b-7000-72cb-43bc4b1e7abb-06b30668, #w-node-b8b98027-7f0e-67e7-70ee-711b9084d0b8-06b30668 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1440px) {
  #w-node-_3fc0aff8-a4e1-f3fc-f476-8e56eda8a826-a39d24c4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_499688dc-89ca-95e7-881c-5d7c30ab2d17-a39d250a, #w-node-f04b163e-c05b-13d9-51ac-b4d5ae92f93a-a39d2532, #w-node-_21353974-ff83-3abe-c5c5-5c4dc64527c2-a39d2536, #w-node-_3970a3f6-9185-6eb1-aa3a-24f9ccc2bf34-a39d2538, #w-node-f62fa6ec-3c63-a051-5731-30c787b8dc8e-a39d253a, #w-node-_7ced5e47-cf1a-f14d-8b4d-4f95a7abd560-a39d253b, #w-node-_265961e0-9769-e34c-3f58-c9688d15d69a-a39d253c, #w-node-b976038d-e302-b847-27ba-21631de7dc03-a39d2554, #w-node-b1df59e8-0297-555b-c58b-f92f5a56d365-a39d2556, #w-node-_0028aca2-5d01-5f68-e463-eba8b7ca9026-a39d2558, #w-node-be079b7e-0330-f53e-bccb-befb301418d5-a39d2575, #w-node-f6a1c53d-89be-1a47-fdb8-74cdc82eb223-a39d2579, #w-node-_662b7b70-9417-8c0c-b150-3074e482ed49-a39d257a, #w-node-_5fded3f6-9dfb-afcb-7509-608acc169216-a39d257f, #w-node-cc76faa2-92fe-ea10-3c15-5139555f5928-a39d2583, #w-node-b976038d-e302-b847-27ba-21631de7dc03-4dbc8e5e, #w-node-b976038d-e302-b847-27ba-21631de7dc03-c5e5d92a, #w-node-b976038d-e302-b847-27ba-21631de7dc03-1172e651, #w-node-b976038d-e302-b847-27ba-21631de7dc03-9fe676da, #w-node-b976038d-e302-b847-27ba-21631de7dc03-9fea291b, #w-node-b976038d-e302-b847-27ba-21631de7dc03-09fd7460, #w-node-b976038d-e302-b847-27ba-21631de7dc03-09fd8ac6, #w-node-b976038d-e302-b847-27ba-21631de7dc03-0567640c, #w-node-_0028aca2-5d01-5f68-e463-eba8b7ca9026-9fcff967, #w-node-b976038d-e302-b847-27ba-21631de7dc03-04f61173, #w-node-b976038d-e302-b847-27ba-21631de7dc03-2ae81dcf, #w-node-b976038d-e302-b847-27ba-21631de7dc03-4833f68f, #w-node-b976038d-e302-b847-27ba-21631de7dc03-d5554020, #w-node-b976038d-e302-b847-27ba-21631de7dc03-54e0a1c6, #w-node-b976038d-e302-b847-27ba-21631de7dc03-06b30668 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_499688dc-89ca-95e7-881c-5d7c30ab2d17-a39d250a, #w-node-f04b163e-c05b-13d9-51ac-b4d5ae92f93a-a39d2532, #w-node-_21353974-ff83-3abe-c5c5-5c4dc64527c2-a39d2536, #w-node-_3970a3f6-9185-6eb1-aa3a-24f9ccc2bf34-a39d2538, #w-node-f62fa6ec-3c63-a051-5731-30c787b8dc8e-a39d253a, #w-node-_7ced5e47-cf1a-f14d-8b4d-4f95a7abd560-a39d253b, #w-node-_265961e0-9769-e34c-3f58-c9688d15d69a-a39d253c, #w-node-b976038d-e302-b847-27ba-21631de7dc03-a39d2554, #w-node-b1df59e8-0297-555b-c58b-f92f5a56d365-a39d2556, #w-node-_0028aca2-5d01-5f68-e463-eba8b7ca9026-a39d2558, #w-node-be079b7e-0330-f53e-bccb-befb301418d5-a39d2575, #w-node-f6a1c53d-89be-1a47-fdb8-74cdc82eb223-a39d2579, #w-node-_662b7b70-9417-8c0c-b150-3074e482ed49-a39d257a, #w-node-_5fded3f6-9dfb-afcb-7509-608acc169216-a39d257f, #w-node-cc76faa2-92fe-ea10-3c15-5139555f5928-a39d2583, #w-node-b976038d-e302-b847-27ba-21631de7dc03-4dbc8e5e, #w-node-b976038d-e302-b847-27ba-21631de7dc03-c5e5d92a, #w-node-b976038d-e302-b847-27ba-21631de7dc03-1172e651, #w-node-b976038d-e302-b847-27ba-21631de7dc03-9fe676da, #w-node-b976038d-e302-b847-27ba-21631de7dc03-9fea291b, #w-node-b976038d-e302-b847-27ba-21631de7dc03-09fd7460, #w-node-b976038d-e302-b847-27ba-21631de7dc03-09fd8ac6, #w-node-b976038d-e302-b847-27ba-21631de7dc03-0567640c, #w-node-_0028aca2-5d01-5f68-e463-eba8b7ca9026-9fcff967, #w-node-b976038d-e302-b847-27ba-21631de7dc03-04f61173, #w-node-b976038d-e302-b847-27ba-21631de7dc03-2ae81dcf, #w-node-b976038d-e302-b847-27ba-21631de7dc03-4833f68f, #w-node-b976038d-e302-b847-27ba-21631de7dc03-d5554020, #w-node-b976038d-e302-b847-27ba-21631de7dc03-54e0a1c6, #w-node-b976038d-e302-b847-27ba-21631de7dc03-06b30668 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_3fc0aff8-a4e1-f3fc-f476-8e56eda8a826-a39d24c4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_3fc0aff8-a4e1-f3fc-f476-8e56eda8a84a-a39d24c4 {
    place-self: stretch stretch;
  }

  #w-node-_499688dc-89ca-95e7-881c-5d7c30ab2d17-a39d250a, #w-node-f04b163e-c05b-13d9-51ac-b4d5ae92f93a-a39d2532, #w-node-e35ac781-3591-7996-971e-fa5a69111ad9-a39d2535, #w-node-_21353974-ff83-3abe-c5c5-5c4dc64527c2-a39d2536, #w-node-_3970a3f6-9185-6eb1-aa3a-24f9ccc2bf34-a39d2538, #w-node-f62fa6ec-3c63-a051-5731-30c787b8dc8e-a39d253a, #w-node-_7ced5e47-cf1a-f14d-8b4d-4f95a7abd560-a39d253b, #w-node-_265961e0-9769-e34c-3f58-c9688d15d69a-a39d253c, #w-node-b976038d-e302-b847-27ba-21631de7dc03-a39d2554, #w-node-b1df59e8-0297-555b-c58b-f92f5a56d365-a39d2556, #w-node-_0028aca2-5d01-5f68-e463-eba8b7ca9026-a39d2558 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_3215ca0c-32e7-d5a4-b5a1-17798c29a50f-a39d2571 {
    align-self: auto;
  }

  #w-node-c5274797-7d80-bff1-d000-2ceb32cb3158-a39d2571, #w-node-b77c91e5-a691-bb6d-dbe5-bb0e733452a1-a39d2571, #w-node-a6de2e8c-edf6-a1cb-f006-e9a4de6d8ec1-a39d2571, #w-node-ae374646-2dc6-e015-927f-11fed3d12f98-a39d2571, #w-node-ab2b060e-a3fe-7c25-e315-7aff9b7cc4b2-a39d2571 {
    place-self: auto stretch;
  }

  #w-node-be079b7e-0330-f53e-bccb-befb301418d5-a39d2575, #w-node-f6a1c53d-89be-1a47-fdb8-74cdc82eb223-a39d2579, #w-node-_662b7b70-9417-8c0c-b150-3074e482ed49-a39d257a, #w-node-_5fded3f6-9dfb-afcb-7509-608acc169216-a39d257f, #w-node-cc76faa2-92fe-ea10-3c15-5139555f5928-a39d2583, #w-node-b976038d-e302-b847-27ba-21631de7dc03-4dbc8e5e, #w-node-b976038d-e302-b847-27ba-21631de7dc03-c5e5d92a, #w-node-b976038d-e302-b847-27ba-21631de7dc03-1172e651, #w-node-b976038d-e302-b847-27ba-21631de7dc03-9fe676da, #w-node-b976038d-e302-b847-27ba-21631de7dc03-9fea291b, #w-node-b976038d-e302-b847-27ba-21631de7dc03-09fd7460, #w-node-b976038d-e302-b847-27ba-21631de7dc03-09fd8ac6, #w-node-b976038d-e302-b847-27ba-21631de7dc03-0567640c, #w-node-_0028aca2-5d01-5f68-e463-eba8b7ca9026-9fcff967, #w-node-b976038d-e302-b847-27ba-21631de7dc03-04f61173, #w-node-b976038d-e302-b847-27ba-21631de7dc03-2ae81dcf, #w-node-b976038d-e302-b847-27ba-21631de7dc03-4833f68f, #w-node-b976038d-e302-b847-27ba-21631de7dc03-d5554020, #w-node-b976038d-e302-b847-27ba-21631de7dc03-54e0a1c6, #w-node-b976038d-e302-b847-27ba-21631de7dc03-06b30668 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}


