:root {
  --primary-blue: #003566;
  --primary-yellow: #ffd60a;
  --light-blue-o: #0092d8;
  --dark-grey: #3f3f40;
  --white: white;
  --red: #ed1c24;
  --black: black;
  --green: #006d41;
  --text-black: #000000b3;
  --text-white: #fffc;
  --spark-library--black: black;
  --spark-library--foreground-interactive: #5532fa;
  --spark-library--background--interactive: #f0ecfd;
  --spark-library--white: white;
  --spark-library--foreground-interactive-hover: #1e116e;
  --flowstica-webflow-library--white-smoke: #f7f7f7;
  --flowstica-webflow-library--medium-sea-green: #08b54f;
  --flowstica-webflow-library--white: white;
  --flowstica-webflow-library--black: #010b15;
  --light-blue: #f0f3fa;
  --spark-library--border-default: #00000029;
  --spark-library--foreground-tertiary: #0000008f;
  --flowstica-webflow-library--light-slate-grey: #8c98a4;
  --spark-library--foreground-secondary: #000000c2;
}

.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;
}

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

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

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

.main-heading {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  font-family: Poppins, sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.3;
}

.main-heading.mobile {
  text-align: center;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  display: flex;
  position: static;
}

.primary-button {
  background-color: var(--primary-blue);
  color: #fff;
  text-align: center;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-right: 0;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  transition: all .25s;
  display: flex;
}

.primary-button:hover {
  outline-offset: 0px;
  background-color: #3f3f40;
  outline: 1px solid #fff;
}

.primary-button.mobile {
  background-color: #0092d8;
  transition: all .25s;
}

.primary-button.mobile:hover {
  outline-offset: 0px;
  background-color: #3f3f40;
  outline: 1px #fff;
}

.primary-button.yellow {
  background-color: var(--primary-yellow);
  color: #000;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  transition-duration: .35s;
}

.primary-button.yellow:hover {
  background-color: var(--primary-blue);
  outline-offset: 0px;
  color: #fff;
  border-radius: 0;
  outline: 1px #fff;
}

.primary-button.light-blue {
  background-color: var(--light-blue-o);
  border-radius: 0;
  font-size: 1.1rem;
  display: block;
}

.primary-button.light-blue:hover {
  background-color: var(--dark-grey);
  outline-offset: 0px;
  color: var(--white);
  outline: 1px #fff;
}

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

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

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

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

.home-banner {
  background-image: linear-gradient(#00356666, #00356666), url('../images/d2a44433-bb89-4398-a1a4-05be63a762fe_1.avif');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  justify-content: center;
  align-items: center;
  height: 90vh;
  max-height: none;
  margin-top: 0;
  padding-top: 160px;
  padding-bottom: 80px;
  display: flex;
}

.home-banner.black {
  background-image: linear-gradient(#0000009e, #0000009e), url('../images/Shibam-Website-Bg-1_1.avif');
  background-position: 0 0, 50% 0;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
}

.paragraph {
  color: var(--text-black);
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
}

.paragraph.banner-sub-text {
  color: var(--text-white);
  text-align: center;
  margin: 16px auto;
  font-size: 1.2rem;
}

.paragraph.banner-sub-text.mobile {
  color: #fffc;
  text-align: center;
  font-size: 16px;
}

.paragraph.small {
  font-size: 14px;
}

.paragraph.small.wbs-nav-center-menu-2 {
  text-align: center;
}

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

.secondary-button {
  color: #fff;
  background-color: #00000080;
  border: 2px solid #fff;
  border-radius: 5px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  transition: all .35s;
}

.secondary-button:hover {
  background-color: var(--primary-blue);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  color: var(--white);
  border-width: 2px;
  border-radius: 3px;
}

.secondary-button.mobile {
  border-color: var(--primary-blue);
  background-color: #00000080;
  transition: all .3s;
}

.secondary-button.mobile:hover {
  color: #f5f5f5;
  background-color: #3f3f40;
  border-color: #3f3f40;
}

.secondary-button.blue {
  border-color: var(--primary-blue);
  background-color: var(--text-white);
  color: var(--primary-blue);
}

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

.secondary-button.padding {
  margin-top: 20px;
}

.secondary-button.light-blue {
  border-style: none;
  border-radius: 0;
  min-width: 0;
  font-size: 1.1rem;
}

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

.secondary-button.light-blue.about {
  background-color: var(--light-blue-o);
}

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

.secondary-button.black {
  border-style: none;
}

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

.secondary-button.red {
  background-color: var(--red);
  border-style: none;
}

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

.secondary-button.green {
  background-color: var(--green);
  border-style: none;
}

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

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

.container.mobile {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  display: flex;
}

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

.spark-line-3 {
  z-index: 2;
  background-color: var(--spark-library--black);
  width: 35px;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
}

.spark-line-3.spark-simple-line {
  background-color: var(--spark-library--foreground-interactive);
  border-radius: 3px;
  width: 12.75px;
  height: 3.3px;
  margin-left: 18px;
  top: 38px;
}

.spark-line-2 {
  z-index: 1;
  background-color: var(--spark-library--black);
  width: 35px;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
}

.spark-line-2.spark-simple-line {
  background-color: var(--spark-library--foreground-interactive);
  border-radius: 3px;
  width: 24px;
  height: 3.3px;
  top: 28px;
}

.spark-line-1 {
  z-index: 2;
  background-color: var(--spark-library--black);
  width: 35px;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
}

.spark-line-1.spark-simple-line {
  background-color: var(--spark-library--foreground-interactive);
  border-radius: 3px;
  width: 24px;
  height: 3.3px;
  top: 18px;
}

.spark-simple-menu-button {
  background-color: #fff;
  width: 60px;
  height: 60px;
  padding: 0 0 0 18px;
  overflow: hidden;
}

.spark-simple-menu-button.w--open {
  background-color: var(--spark-library--background--interactive);
  border-radius: 8px;
}

.spark-nav-link {
  color: var(--spark-library--black);
  text-align: center;
  border-radius: 8px;
  margin-left: 8px;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background-color .15s, color .15s, opacity .15s;
}

.spark-nav-link:hover {
  background-color: var(--spark-library--background--interactive);
  opacity: 1;
  color: var(--spark-library--foreground-interactive);
}

.spark-nav-link.w--current {
  color: var(--spark-library--foreground-interactive);
}

.spark-nav-link.spark-square-button {
  background-color: var(--spark-library--foreground-interactive);
  color: var(--spark-library--white);
  text-align: center;
  border-style: none;
  border-radius: 8px;
  margin-right: 0;
  padding: 16px 24px;
  font-size: 1rem;
  line-height: 1em;
  transition: color .15s, background-color .15s, opacity .15s;
}

.spark-nav-link.spark-square-button:hover {
  background-color: var(--spark-library--foreground-interactive-hover);
  opacity: 1;
}

.spark-nav-link.spark-centered {
  margin-left: 4px;
  margin-right: 4px;
}

.spark-nav-link.spark-with-dropdown {
  grid-column-gap: 16px;
  padding-right: 16px;
  display: flex;
}

.spark-dropdown-link {
  border-radius: 8px;
  width: 100%;
  margin-left: 0;
  padding: 8px 16px;
  transition: color .15s, background-color .15s;
}

.spark-dropdown-link:hover {
  background-color: var(--spark-library--background--interactive);
  opacity: 1;
  color: var(--spark-library--foreground-interactive);
}

.spark-dropdown-list.w--open {
  background-color: var(--spark-library--white);
  border: 1px solid #00000029;
  border-radius: 8px;
  padding: 8px;
}

.spark-icon {
  width: 12px;
  display: inline-block;
}

.spark-centered-nav-menu {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
}

.spark-left-side-brand-logo {
  margin-right: auto;
  padding-left: 0;
}

.square-menu-with-centered-links-inner {
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
}

.spark-square-menu-with-centered-links {
  z-index: 5;
  background-color: #0000;
  width: 100%;
  margin-top: 21px;
  padding-left: 64px;
  padding-right: 64px;
  position: fixed;
}

.wbs-menu-button {
  background-color: var(--flowstica-webflow-library--white-smoke);
  border-radius: 10px;
}

.wbs-menu-button.w--open {
  background-color: var(--flowstica-webflow-library--medium-sea-green);
}

.wbs-button-primary-4 {
  border: 2px solid var(--primary-blue);
  background-color: var(--primary-blue);
  color: var(--flowstica-webflow-library--white);
  text-align: center;
  border-radius: 3px;
  padding: 13px 30px;
  font-size: 16px;
  font-weight: 400;
  transition: all .35s, background-color .3s ease-in-out;
}

.wbs-button-primary-4:hover {
  border: 2px solid var(--primary-blue);
  background-color: var(--primary-yellow);
  color: var(--primary-blue);
}

.wbs-button-primary-4.contact-form {
  border-radius: 5px;
  margin-top: 20px;
}

.wbs-button-primary-4.contact-form.dark-grey {
  background-color: #3f3f40;
  border-style: none;
  font-size: 1.1rem;
}

.wbs-button-primary-4.contact-form.dark-grey:hover {
  background-color: var(--light-blue-o);
  color: var(--white);
  border-style: none;
}

.wbs-button-primary-4.contact-form.red {
  outline-offset: 0px;
  border-style: none;
  outline: 3px #fff;
}

.wbs-button-primary-4.light-blue {
  background-color: var(--light-blue-o);
  border-style: none;
  border-radius: 0;
  font-size: 1.1rem;
}

.wbs-button-primary-4.light-blue:hover {
  background-color: var(--dark-grey);
  color: var(--white);
}

.wbs-button-primary-4.red {
  background-color: var(--red);
  border-style: none;
}

.wbs-button-primary-4.red:hover {
  background-color: var(--black);
  color: var(--white);
}

.wbs-button-primary-4.green {
  background-color: var(--green);
  border-style: none;
}

.wbs-button-primary-4.green:hover {
  background-color: var(--black);
  color: var(--white);
}

.wbs-nav-center-right {
  align-items: center;
  display: flex;
}

.wbs-nav-link {
  color: var(--black);
  border-radius: 0;
  margin-left: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
  transition: all .35s;
}

.wbs-nav-link:hover {
  background-color: var(--light-blue-o);
  color: var(--white);
}

.wbs-nav-link.w--current {
  color: var(--black);
  font-size: 1.1rem;
}

.wbs-nav-link.w--current:hover {
  color: var(--white);
}

.wbs-nav-link.mobile {
  display: none;
}

.wbs-nav-link.red:hover {
  background-color: var(--dark-grey);
}

.wbs-nav-link.black:hover {
  background-color: var(--black);
}

.wbs-nav-link.green:hover {
  background-color: var(--green);
}

.wbs-dropdown-link {
  color: var(--flowstica-webflow-library--black);
  text-align: center;
  -webkit-text-stroke-color: transparent;
  font-size: 16px;
  font-weight: 400;
}

.wbs-dropdown-link:hover {
  background-color: var(--light-blue-o);
  color: var(--white);
  -webkit-text-stroke-color: transparent;
  text-decoration: none;
}

.wbs-dropdown-link.w--current {
  color: var(--flowstica-webflow-library--black);
}

.wbs-dropdown-link.w--current:hover {
  color: var(--text-white);
}

.wbs-dropdown-item {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  grid-template-rows: auto auto auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.wbs-dropdown-item.brands {
  display: block;
}

.wbs-dropdown-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.wbs-dropdown-list {
  background-color: var(--flowstica-webflow-library--white);
  border: 1px solid #010b151f;
  border-radius: 10px;
  padding: 15px 10px;
}

.wbs-dropdown-list.w--open {
  border-radius: 0;
  margin-top: .3rem;
}

.wbs-logo {
  height: 2.375rem;
  display: block;
}

.wbs-nav-center-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: center;
  align-items: center;
  padding-left: 24px;
  padding-right: 40px;
  display: flex;
}

.wbs-container {
  border-bottom: 6px solid var(--primary-yellow);
  background-color: var(--white);
  border-radius: 10px;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.wbs-container.light-blue {
  border-bottom-style: none;
  border-bottom-color: var(--light-blue-o);
  border-radius: 0;
}

.wbs-container.red {
  border-bottom-color: var(--red);
}

.wbs-container.green {
  border-bottom-color: var(--green);
}

.wbs-navbar-center {
  background-color: #0000;
  flex-flow: column;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

.top-nav-bar {
  flex-flow: column;
  justify-content: center;
  margin-bottom: -184px;
  padding-top: .8rem;
  padding-bottom: .85rem;
  display: block;
  position: relative;
}

.brand {
  box-sizing: border-box;
  aspect-ratio: auto;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  margin-left: 40px;
  margin-right: auto;
  display: flex;
  position: static;
}

.title {
  color: var(--primary-blue);
  text-transform: uppercase;
  margin-top: 0;
  padding-top: 11px;
  padding-bottom: 11px;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}

.text-span {
  letter-spacing: 18px;
  text-indent: 6px;
  text-transform: uppercase;
  font-size: 25px;
}

.body-2 {
  font-family: Poppins, sans-serif;
}

.section-6 {
  background-image: url('../images/Shibam-Website-Bg-1_1.avif');
  background-position: 50%;
  background-size: auto;
}

.heading {
  color: var(--white);
  justify-content: center;
  font-weight: 600;
  display: flex;
}

.home-banner-wrapper {
  max-width: 900px;
}

.home-about-section {
  padding-top: 80px;
  padding-bottom: 80px;
  display: none;
}

.home-about-section.hide {
  display: none;
}

.home-about-wrapper {
  grid-column-gap: 10%;
  grid-row-gap: 10%;
  display: flex;
}

.home-about-imagebox {
  width: 40%;
}

.home-about-image {
  object-fit: cover;
  border-radius: 0;
  width: 100%;
  height: 100%;
  max-height: 400px;
}

.home-about-contentbox {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.home-about-contentbox.new {
  width: 100%;
}

.section-tag {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.section-tag.yellow {
  justify-content: center;
  align-items: center;
}

.section-tag.yellow.hide {
  display: none;
}

.section-tag.blue.centre {
  justify-content: center;
  align-items: center;
}

.section-tag.blue._10px {
  margin-top: 10px;
}

.section-tag.blue.hide, .section-tag.hide {
  display: none;
}

.line {
  background-color: var(--light-blue-o);
  border-radius: 20px;
  width: 16px;
  height: 2px;
}

.line.top-padding {
  width: 16px;
  height: 3px;
  margin-top: 9px;
}

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

.line.yellow {
  background-color: var(--primary-yellow);
}

.line._10px {
  margin-bottom: 10px;
}

.line._10px._6px {
  margin-top: -6px;
}

.line._10px._8px {
  margin-top: -8px;
}

.line._10px._8px.hide {
  display: none;
}

.section-title {
  color: var(--light-blue-o);
  flex: none;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.section-title.blue {
  color: var(--primary-blue);
}

.section-title.yellow {
  color: var(--primary-yellow);
}

.section-header {
  color: var(--black);
  text-align: left;
  margin: 10px auto 24px;
  font-family: Poppins, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.section-header.mobile {
  text-align: center;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  display: flex;
  position: static;
}

.section-header.white {
  color: #fff;
  text-align: center;
  font-size: 2.5rem;
}

.section-header.white.contact-section {
  text-align: left;
  margin-bottom: 40px;
  margin-left: 0;
  margin-right: 0;
}

.section-header.white.contact-section.black {
  color: var(--black);
}

.section-header.white.left {
  text-align: left;
}

.section-header.white.dark-grey {
  color: var(--dark-grey);
}

.section-header.no-padding {
  margin-top: 0;
}

.section-header.about-section2 {
  color: var(--white);
  justify-content: space-between;
  align-self: auto;
  align-items: center;
  margin-top: auto;
  margin-bottom: 0;
  padding-bottom: 60px;
}

.bullet-points {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 16px;
  display: flex;
}

._24px-filler {
  width: 100%;
  height: 24px;
}

._40px-filler {
  width: 100%;
  height: 40px;
}

.category-section {
  background-image: linear-gradient(#003566e6, #003566e6), url('../images/Shibam-Website-Bg-1_1.avif');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding-top: 80px;
  padding-bottom: 80px;
}

.category-section.light-blue {
  background-image: linear-gradient(#0092d8e6, #0092d8e6), url('../images/Shibam-Website-Bg-1_1.avif');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.category-section.red {
  background-image: linear-gradient(#ed1c24cf, #ed1c24cf), url('../images/Shibam-Website-Bg-1_1.avif');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.category-section.green {
  background-image: linear-gradient(#006d41db, #006d41db), url('../images/Shibam-Website-Bg-1_1.avif');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

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

.sub-header {
  color: var(--text-black);
  text-align: center;
  max-width: 700px;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
}

.sub-header.banner-sub-text {
  color: var(--text-white);
  text-align: center;
  margin: 16px auto 35px;
  font-size: 18px;
}

.sub-header.banner-sub-text.mobile {
  color: #fffc;
  text-align: center;
  font-size: 16px;
}

.sub-header.small {
  font-size: 16px;
}

.sub-header.white {
  color: var(--text-white);
  font-size: 1.2rem;
}

.sub-header.white.dark-grey {
  color: var(--dark-grey);
}

.section-header-box {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 60px;
  display: flex;
}

.category-card-grid {
  grid-column-gap: 20px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.brands-section {
  background-color: var(--primary-yellow);
  padding-top: 80px;
  padding-bottom: 80px;
}

.brands-section.white {
  background-color: var(--flowstica-webflow-library--white-smoke);
}

.brands-section.light-grey {
  background-color: #ffd60a;
}

.brands-section.smoke-white {
  background-color: var(--flowstica-webflow-library--white-smoke);
}

.brand-card-grid {
  grid-column-gap: 20px;
  grid-row-gap: 32px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.usp-card-grid {
  grid-column-gap: 5%;
  grid-row-gap: 5%;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.usp-home-card {
  background-color: var(--white);
  border-radius: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 30%;
  padding: 24px;
  display: flex;
  box-shadow: 0 0 5px #00000026;
}

.usp-iconbox {
  background-color: var(--light-blue);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  display: flex;
}

.contact-form-section {
  background-image: linear-gradient(#fff, #fff);
  padding-top: 80px;
  padding-bottom: 80px;
}

.contact-form-section.light-blue {
  background-image: linear-gradient(#0092d8de, #0092d8de), url('../images/Shibam-Website-Bg_1.avif');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.contact-form-section.dark-grey {
  background-image: linear-gradient(#000000db, #000000db), url('../images/Shibam-Website-Bg_1.avif');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.contact-form-section.green {
  background-image: linear-gradient(#006d41e8, #006d41e8), url('../images/Shibam-Website-Bg_1.avif');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.content-form-wrapper {
  grid-column-gap: 10%;
  grid-row-gap: 10%;
  justify-content: space-between;
  display: flex;
}

.contact-form-left {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 60%;
  display: flex;
}

.contact-form-right {
  background-color: var(--white);
  border-radius: 0;
  width: 60%;
  padding: 20px 40px;
  display: none;
}

.contact-form-right.yellow {
  background-color: var(--primary-yellow);
}

.contact-form-right.light-blue {
  background-color: var(--light-blue);
}

.contact-details-box {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.code-embed {
  color: var(--primary-yellow);
}

.code-embed.blue {
  color: var(--primary-blue);
}

.code-embed.white {
  color: var(--white);
}

.contact-detail-text {
  color: var(--primary-yellow);
  font-size: 18px;
  font-weight: 400;
}

.contact-detail-text.blue {
  color: var(--primary-blue);
}

.contact-detail-text.white {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.form-block {
  max-width: 600px;
}

.field-label {
  color: var(--white);
  font-weight: 400;
}

.bottom-nav-bar {
  background-color: var(--light-blue);
  padding-top: 60px;
  padding-bottom: 20px;
}

.bottom-nav-bar.light-grey {
  background-color: #e9e9e9;
}

.bottom-nav-bar-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.bottom-nav-heading {
  color: var(--black);
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.bottom-nav-link {
  color: var(--text-black);
  align-items: stretch;
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 300;
  text-decoration: none;
  transition: all .25s;
  display: flex;
}

.bottom-nav-link:hover {
  text-decoration: underline;
}

.bottom-nav-heading-copy {
  color: var(--dark-grey);
  margin-bottom: 16px;
  font-family: Poppins, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.bottom-nav-heading-copy._0-opacity {
  opacity: 0;
}

.bottom-nav-box---contact {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-right: 10%;
  display: flex;
}

.bottom-nav-logo {
  height: 6rem;
}

.bottom-nav-bar-logo {
  box-sizing: border-box;
  aspect-ratio: auto;
  background-color: var(--primary-yellow);
  flex-flow: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  padding: 0 10px 0 20px;
  display: flex;
  position: static;
}

.bottom-nav-bar-logo.blue {
  background-color: #ffd60a00;
  padding: 0;
}

.bottom-nav-strip {
  border-top: 1px solid var(--spark-library--border-default);
  justify-content: space-between;
  align-items: stretch;
  margin-top: 60px;
  padding-top: 10px;
  display: flex;
}

.banner-section {
  background-image: linear-gradient(#003566b3, #003566b3), url('../images/Industrial-Gear-Co-BG_1.avif');
  background-position: 0 0, 50% 0;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-top: 0;
  padding-top: 170px;
  display: flex;
}

.banner-heading {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  font-family: Poppins, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.banner-heading.mobile {
  text-align: center;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  display: flex;
  position: static;
}

.banner-wrapper {
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  max-width: 700px;
  margin-bottom: 40px;
  display: flex;
}

.yellow-line {
  background-color: var(--primary-yellow);
  border-radius: 20px;
  width: 64px;
  height: 4px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.yellow-line.top-padding {
  width: 20px;
  height: 3px;
  margin-top: 9px;
}

.yellow-line.blue {
  background-color: var(--primary-blue);
}

.yellow-line.yellow {
  background-color: var(--primary-yellow);
}

.yellow-line._10px {
  margin-bottom: 10px;
}

.yellow-line._10px._6px {
  margin-top: -6px;
}

.yellow-line._10px._8px {
  margin-top: -8px;
}

.breadcrumb {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.breadcrumb.hide {
  display: none;
}

.code-embed-2 {
  color: #cdcdcd;
}

.breadcrumb-text {
  color: #cdcdcd;
  padding-bottom: 1px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  text-decoration: none;
}

.breadcrumb-text.w--current {
  font-family: Poppins, sans-serif;
}

.dot {
  color: #cdcdcd;
  background-color: #cdcdcd;
  border-radius: 20px;
  width: 4px;
  height: 4px;
}

.category-card {
  background-color: var(--white);
  border-radius: 0;
  width: auto;
  height: 16rem;
  font-family: Poppins, sans-serif;
  transition: all .25s;
  position: relative;
  box-shadow: 0 2px 15px 2px #0003;
}

.category-card-bottom {
  z-index: 1;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #0000;
  background-image: linear-gradient(#0000008f, #0000008f);
  border-radius: 0;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.category-card-bottom:hover {
  background-color: var(--white);
  color: var(--white);
}

.category-card-bottom.roller-chains {
  background-image: url('../images/Triplex-Roller-Chains_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.category-card-bottom.couplings {
  background-image: url('../images/Gear-Couplings_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.category-card-bottom.roller-chains-conveyor-chain-sprockets {
  background-image: url('../images/Bucket-elevators_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.category-card-bottom.gears {
  background-image: url('../images/Bevel-gears.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.category-card-bottom.pulley {
  background-image: url('../images/Taperlock-Pulley_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.category-card-bottom.wire-rope {
  background-image: url('../images/Wire-Ropes_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.category-card-bottom.chain-pulley-hoist {
  background-image: url('../images/Chain-Pulley-Blocks_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.category-card-bottom.lifting-shackles {
  background-image: url('../images/BD-Shackles_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.category-card-bottom.material-handling-equipment {
  background-image: url('../images/Electric-Stacker.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.category-card-bottom.webbling-slings {
  background-image: url('../images/Flat-Webbing-Slings.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.category-card-bottom.oconveyor-chain-sprockets {
  background-image: url('../images/Conveyor-Sprockets_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.category-card-bottom.conveyor-chains {
  background-image: url('../images/Bucket-elevators_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.category-card-bottom.roller-chain-sprockets {
  background-image: url('../images/Triplex-Chain-Sprockets_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.category-card-bottom.lifting-chains {
  background-image: url('../images/Chain-slings-single--multi-legged.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.category-card-bottom.lifting-slings {
  background-image: url('../images/Flat-Webbing-Slings.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.category-card-bottom.lifting-clamps {
  background-image: url('../images/Horizontal-Clamp.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.category-card-bottom.lashing-equipments {
  background-image: url('../images/Ratchet-Lashing-Belts.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.category-card-bottom.pp-ropes {
  background-image: url('../images/Garware-Round-Slings.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.category-card-imagebox {
  z-index: 2;
  height: 60%;
  position: absolute;
  inset: 0% 0% auto;
}

.category-card-image {
  object-fit: contain;
  width: 100%;
  height: 100%;
  padding: 12px;
}

.category-card-overlay {
  z-index: 3;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.category-card-overlay:hover {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  width: 100%;
  max-width: none;
  height: 10%;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.category-card-line {
  background-color: var(--primary-yellow);
  border-radius: 15px;
  width: 40%;
  max-width: 120px;
  height: 2%;
  margin: auto auto 20px;
}

.category-name {
  color: var(--white);
  text-align: center;
  background-color: #0000;
  padding: 6px;
  font-family: Poppins, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
}

.category-name.banner-sub-text {
  color: var(--text-white);
  text-align: center;
  margin: 16px auto;
  font-size: 18px;
}

.category-name.banner-sub-text.mobile {
  color: #fffc;
  text-align: center;
  font-size: 16px;
}

.category-name.small {
  font-size: 14px;
}

.category-name.small.wbs-nav-center-menu-2 {
  text-align: center;
}

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

.brand-card {
  background-color: var(--white);
  border-radius: 0;
  text-decoration: none;
  transition: all .25s;
  position: relative;
  box-shadow: 0 2px 15px 2px #0003;
}

.brand-card-image {
  object-fit: contain;
  border-radius: 15px 15px 0 0;
  width: 100%;
  height: 150px;
  padding: 16px;
}

.brand-cta {
  background-color: var(--primary-blue);
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  justify-content: center;
  align-items: center;
  height: 64px;
  display: flex;
}

.brand-cta.light-blue {
  background-color: var(--light-blue-o);
  border-radius: 0;
}

.brand-cta.dark-grey {
  background-color: var(--dark-grey);
}

.brand-cta.green {
  background-color: var(--green);
}

.brand-name {
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}

.brand-name.banner-sub-text {
  color: var(--text-white);
  text-align: center;
  margin: 16px auto;
  font-size: 18px;
}

.brand-name.banner-sub-text.mobile {
  color: #fffc;
  text-align: center;
  font-size: 16px;
}

.brand-name.small {
  font-size: 14px;
}

.brand-name.small.wbs-nav-center-menu-2 {
  text-align: center;
}

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

.brand-card-overlay {
  z-index: 5;
  border-radius: 15px;
  height: 200px;
  position: absolute;
  inset: 0%;
}

.brand-over-cta-section {
  height: 50px;
  margin-top: 150px;
}

.brand-info-section {
  background-image: url('../images/Gears-01.svg');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: auto 120%;
  background-attachment: scroll;
  padding-top: 60px;
  padding-bottom: 60px;
}

.spark-hero-section-image {
  border-radius: 8px;
  flex: 0 auto;
  width: 45%;
  max-width: 50%;
  display: block;
}

.spark-button {
  border: 1px solid var(--spark-library--foreground-interactive);
  background-color: var(--spark-library--foreground-interactive);
  color: var(--spark-library--white);
  border-radius: 8px;
  flex: none;
  padding: 16px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1em;
  text-decoration: none;
  transition: border-color .15s, background-color .15s, opacity .15s;
}

.spark-button:hover {
  border-color: var(--spark-library--foreground-interactive-hover);
  background-color: var(--spark-library--foreground-interactive-hover);
  opacity: 1;
}

.spark-button-text {
  flex: none;
  margin-bottom: 0;
  line-height: 1;
  display: inline-block;
  position: relative;
}

.spark-tiny-icon {
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
}

.spark-lightbox-button {
  grid-column-gap: 16px;
  background-color: var(--spark-library--background--interactive);
  box-shadow: inset 0 0 0 1.5px var(--spark-library--foreground-interactive);
  border-radius: 8px;
  align-items: center;
  padding: 16px 24px;
  font-weight: 500;
  line-height: 1em;
  text-decoration: none;
  transition: background-color .15s, color .15s;
  display: flex;
}

.spark-lightbox-button:hover {
  background-color: var(--spark-library--foreground-interactive);
  opacity: 1;
  color: var(--spark-library--white);
}

.spark-lightbox-link {
  text-decoration: none;
}

.spark-flex-row {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.spark-flex-row.spark-left-aligned {
  grid-column-gap: 16px;
  justify-content: flex-start;
}

.spark-flex-row.spark-5-spacing {
  grid-column-gap: 5%;
  align-items: center;
}

.spark-hero-sub-paragraph {
  width: 100%;
  margin-bottom: 64px;
}

.spark-hero-section-left-side {
  width: 50%;
}

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

.spark-section {
  width: 100%;
  padding: 176px 64px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  position: relative;
}

.spark-section h5 {
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.spark-section h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

.spark-section h1 {
  margin-bottom: 1rem;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.1;
}

.spark-section h2 {
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.spark-section h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}

.spark-section h6 {
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  font-size: .8125rem;
  font-weight: 700;
  line-height: 1.5;
}

.spark-section ul {
  margin-top: 2rem;
  margin-bottom: 3rem;
  padding-left: 14px;
}

.spark-section li {
  margin-bottom: .5rem;
}

.brand-info-wrapper {
  grid-column-gap: 10%;
  grid-row-gap: 10%;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.brand-info-left {
  justify-content: flex-end;
  align-items: center;
  width: 20%;
  display: flex;
}

.brand-info-right {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  width: 70%;
  display: flex;
}

.brand-cat-section {
  background-image: linear-gradient(to bottom, var(--primary-yellow), var(--primary-yellow));
  color: var(--text-white);
  background-position: 0 0;
  padding-top: 60px;
  padding-bottom: 80px;
}

.category-info-wrapper {
  grid-column-gap: 10%;
  grid-row-gap: 10%;
  display: flex;
}

.cat-info-left {
  justify-content: flex-end;
  align-items: center;
  width: 40%;
  margin-left: 5%;
  display: flex;
}

.category-collage {
  border-radius: 15px;
  width: 100%;
  max-width: 600px;
  height: 100%;
  max-height: 300px;
}

.cat-info-right {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.category-info-top {
  margin-bottom: 40px;
}

.product-card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--primary-yellow);
  border-radius: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: auto;
  text-decoration: none;
  display: block;
  position: relative;
  box-shadow: 0 0 10px 5px #0000001a;
}

.product-imagebox {
  background-color: var(--white);
  border-radius: 10px 10px 0 0;
  width: 100%;
  height: 40%;
}

.product-image {
  object-fit: contain;
  width: 100%;
  height: 100%;
  padding: 16px;
}

.product-image.no-padding {
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-right: -1px;
  padding: 0;
}

.product-image.padding {
  padding: 7px;
}

.product-contentbox {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  height: 60%;
  padding: 20px 16px 10px;
  display: flex;
}

.product-name {
  color: var(--text-black);
  text-align: center;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.product-name.banner-sub-text {
  color: var(--text-white);
  text-align: center;
  margin: 16px auto;
  font-size: 18px;
}

.product-name.banner-sub-text.mobile {
  color: #fffc;
  text-align: center;
  font-size: 16px;
}

.product-name.small {
  font-size: 14px;
}

.product-name.small.wbs-nav-center-menu-2 {
  text-align: center;
}

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

.product-card-cta {
  border: 2px solid var(--primary-yellow);
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 5px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  margin-top: auto;
  padding: 12px 16px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  text-decoration: none;
  transition: all .25s;
  display: flex;
}

.product-card-cta:hover {
  border-color: var(--primary-blue);
  background-color: var(--primary-yellow);
  outline-color: var(--primary-blue);
  outline-offset: 0px;
  color: var(--black);
  border-radius: 5px;
  outline-width: 2px;
  outline-style: none;
}

.cat---prod-section {
  background-color: var(--light-blue-o);
  color: var(--text-white);
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 80px;
  display: flex;
}

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

.about-info-wrapper {
  grid-column-gap: 10%;
  grid-row-gap: 10%;
  display: flex;
}

.about-info-wrapper.new {
  flex-flow: column;
}

.about-info-left {
  justify-content: flex-start;
  align-self: flex-start;
  align-items: center;
  width: 30%;
  display: flex;
}

.about-info-right {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  width: 60%;
  display: flex;
}

.about-section2 {
  background-color: var(--primary-blue);
  justify-content: space-between;
  align-items: stretch;
  height: 500px;
  display: flex;
  position: relative;
}

.about-section-image {
  object-fit: cover;
  width: 50%;
  height: 100%;
}

.about-section2-textbox {
  justify-content: center;
  align-self: auto;
  align-items: center;
  width: 50%;
  height: 100%;
  margin-left: 140px;
  padding-right: 40px;
  display: flex;
}

.about-info-section2 {
  padding-top: 140px;
  padding-bottom: 60px;
}

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

.info-wrapper {
  grid-column-gap: 10%;
  grid-row-gap: 10%;
  display: flex;
}

.info-left {
  justify-content: flex-end;
  align-items: center;
  width: 40%;
  display: flex;
}

.info-right {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.about-section2-big-text {
  color: var(--white);
  text-align: left;
  margin: 10px auto 100px;
  font-family: Poppins, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
}

.about-section2-big-text.mobile {
  text-align: center;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  display: flex;
  position: static;
}

.about-section2-big-text.white {
  color: var(--white);
  text-align: center;
}

.about-section2-big-text.white.contact-section {
  text-align: left;
  margin-bottom: 40px;
  margin-left: 0;
  margin-right: 0;
}

.about-section2-big-text.white.left {
  text-align: left;
}

.about-section2-big-text.no-padding {
  margin-top: 0;
}

.about-section2-big-text.about-section2 {
  color: var(--white);
  justify-content: space-between;
  align-self: auto;
  align-items: center;
  margin-top: auto;
  margin-bottom: 0;
  padding-bottom: 60px;
}

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

.contact-info-wrapper {
  grid-column-gap: 5%;
  grid-row-gap: 5%;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.contact-detail-card {
  background-color: var(--white);
  border-radius: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 30%;
  padding: 40px;
  text-decoration: none;
  display: flex;
  box-shadow: 0 0 5px #00000026;
}

.contact-detail-iconbox {
  background-color: var(--light-blue);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  display: flex;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
}

.detail-text {
  color: var(--text-black);
  text-align: center;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
}

.detail-text.banner-sub-text {
  color: var(--text-white);
  text-align: center;
  margin: 16px auto;
  font-size: 18px;
}

.detail-text.banner-sub-text.mobile {
  color: #fffc;
  text-align: center;
  font-size: 16px;
}

.detail-text.small {
  font-size: 14px;
}

.detail-text.small.wbs-nav-center-menu-2 {
  text-align: center;
}

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

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

.cat--sub-c-section {
  background-image: linear-gradient(to bottom, var(--primary-yellow), var(--primary-yellow));
  color: var(--text-white);
  background-position: 0 0;
  padding-top: 60px;
  padding-bottom: 80px;
}

.sub-c-card-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.sub-c---prod-section {
  background-image: linear-gradient(to bottom, var(--primary-blue), var(--primary-blue));
  color: var(--text-white);
  background-position: 0 0;
  background-size: auto;
  padding-top: 60px;
  padding-bottom: 80px;
}

.final-prod-card-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact-image-section {
  background-image: url('../images/Shibam-Website-Bg_1.avif');
  background-position: 50%;
  background-size: cover;
  height: 500px;
}

.contact-image-wrapper {
  justify-content: flex-end;
  align-items: center;
  height: 500px;
  display: flex;
}

.contact-image-textbox {
  border: 5px solid var(--white);
  background-color: var(--primary-blue);
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 400px;
  height: 350px;
  padding: 40px;
  display: flex;
}

.contact-image-text {
  color: var(--white);
  text-align: left;
  margin-top: 20px;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
}

.contact-image-text.mobile {
  text-align: center;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  display: flex;
  position: static;
}

.contact-image-text.white {
  color: var(--white);
  text-align: center;
}

.contact-image-text.white.contact-section {
  text-align: left;
  margin-bottom: 40px;
  margin-left: 0;
  margin-right: 0;
}

.contact-image-text.white.left {
  text-align: left;
}

.contact-image-text.no-padding {
  margin-top: 0;
}

.contact-image-text.about-section2 {
  color: var(--white);
  justify-content: space-between;
  align-self: auto;
  align-items: center;
  margin-top: auto;
  margin-bottom: 0;
  padding-bottom: 60px;
}

.contact-blank-div {
  width: 50%;
}

.form-field {
  color: var(--text-black);
  margin-bottom: 6px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.form-field.banner-sub-text {
  color: var(--text-white);
  text-align: center;
  margin: 16px auto;
  font-size: 18px;
}

.form-field.banner-sub-text.mobile {
  color: #fffc;
  text-align: center;
  font-size: 16px;
}

.form-field.small {
  font-size: 14px;
}

.form-field.small.wbs-nav-center-menu-2 {
  text-align: center;
}

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

.form-field._48 {
  width: 48%;
}

.text-field {
  border: 1px solid var(--spark-library--foreground-tertiary);
  opacity: .41;
  color: var(--text-black);
  border-radius: 3px;
}

.text-field._48 {
  width: 48%;
}

.text-field.height-3 {
  height: 100px;
  padding-bottom: 65px;
}

.text-field.yellow {
  background-color: var(--primary-yellow);
}

.form-inner-div {
  grid-column-gap: 2%;
  grid-row-gap: 2%;
  display: flex;
}

.field-wrapper {
  width: 49%;
}

.small-heading {
  color: var(--black);
  text-align: left;
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
}

.small-heading.mobile {
  text-align: center;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  display: flex;
  position: static;
}

.small-heading.white {
  color: var(--white);
  text-align: center;
}

.small-heading.white.contact-section {
  text-align: left;
  margin-bottom: 40px;
  margin-left: 0;
  margin-right: 0;
}

.small-heading.white.left {
  text-align: left;
}

.small-heading.no-padding {
  margin-top: 0;
}

.small-heading.about-section2 {
  color: var(--white);
  justify-content: space-between;
  align-self: auto;
  align-items: center;
  margin-top: auto;
  margin-bottom: 0;
  padding-bottom: 60px;
}

.contact-page-form {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.sub-c---prod-section-copy, .cat---final-prod-section {
  background-image: linear-gradient(to bottom, var(--primary-blue), var(--primary-blue));
  color: var(--text-white);
  background-position: 0 0;
  background-size: auto;
  padding-top: 60px;
  padding-bottom: 80px;
}

.about-overlay {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--primary-yellow);
  border-radius: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 35%;
  margin-left: 140px;
  margin-right: 140px;
  padding: 16px 24px;
  display: grid;
  position: absolute;
  bottom: -17%;
  left: 0%;
  right: 0%;
  box-shadow: 0 5px 15px 2px #0003;
}

.about-usp-card {
  background-color: #fff6;
  border-radius: 0;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  display: flex;
  box-shadow: 0 0 5px #00000026;
}

.about-usp-icon {
  margin-bottom: 4px;
}

.text-block {
  font-size: 1.1rem;
}

.contact-detail-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.black-bottom-nav {
  display: none;
}

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

.category_description {
  z-index: 3;
  opacity: 0;
  pointer-events: auto;
  background-color: #fff;
  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;
}

.category-title {
  color: #001d3d;
  background-color: #f5f5f5;
  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 {
  color: #fff;
  background-color: #001d3d;
  align-self: stretch;
}

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

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

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

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

.product-contentbox-copy {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding: 10px 16px 16px;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: 0%;
}

.product-card-overlay {
  z-index: 3;
  border-radius: 10px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
  position: absolute;
  inset: 0%;
}

.product-card-hover {
  height: 25%;
}

.category-card-blue-line {
  background-color: var(--primary-blue);
  border-radius: 15px;
  width: 40%;
  max-width: 120px;
  height: 5px;
  margin: 0 auto 10px;
}

.category-card-blue-line.light-blue {
  background-color: var(--light-blue-o);
}

.category-card-blue-line.black {
  background-color: var(--black);
}

.category-card-blue-line.green {
  background-color: var(--green);
}

.main-image {
  height: 4rem;
  margin-right: 60px;
}

.bullet-mark {
  background-color: var(--light-blue-o);
  border-radius: 2px;
  flex: none;
  width: 8px;
  height: 8px;
  margin-top: 7px;
}

.bullet-mark.top-padding {
  width: 16px;
  height: 3px;
  margin-top: 9px;
}

.bullet-mark.blue {
  background-color: var(--primary-blue);
}

.bullet-mark.yellow {
  background-color: var(--primary-yellow);
}

.bullet-mark._10px {
  margin-bottom: 10px;
}

.bullet-mark._10px._6px {
  margin-top: -6px;
}

.bullet-mark._10px._8px {
  margin-top: -8px;
}

.bullet-mark._10px._8px.hide {
  display: none;
}

.wbs-dropdown-link-2 {
  color: #010b15;
  font-size: 16px;
  font-weight: 400;
  transition: color .3s ease-in-out;
}

.wbs-dropdown-link-2:hover {
  color: #003566;
}

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

.cell {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
}

.grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
}

.grid-2 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.usp-image-holder {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  height: auto;
  display: flex;
}

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

.black-screen {
  z-index: -2;
  background-color: #0009;
  position: absolute;
  inset: 0%;
}

.the-media {
  transition: all .3s;
}

.the-media:hover {
  background-color: var(--light-blue-o);
  color: var(--white);
  text-decoration: underline;
}

.text-block-2 {
  color: var(--white);
  font-size: .9rem;
}

.text-span-2 {
  text-decoration: underline;
}

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

.banner-wrapper-2 {
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  max-width: 700px;
  margin-bottom: 70px;
  display: flex;
}

.banner-heading-2 {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  font-family: Poppins, sans-serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.3;
}

.yellow-line-2 {
  background-color: #ffd60a;
  border-radius: 20px;
  width: 64px;
  height: 4px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.white-line {
  background-color: var(--white);
  border-radius: 20px;
  width: 64px;
  height: 4px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.section-title-2 {
  color: #003566;
  flex: none;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.line-2 {
  background-color: #003566;
  border-radius: 20px;
  width: 16px;
  height: 2px;
}

.paragraph-2 {
  color: #000000b3;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
}

.cat---prod-section-2 {
  color: #fffc;
  background-image: linear-gradient(#003566, #003566);
  background-position: 0 0;
  background-size: auto;
  padding-top: 60px;
  padding-bottom: 80px;
}

.product-card-cta-2 {
  color: #fff;
  background-color: #003566;
  border: 2px solid #ffd60a;
  border-radius: 5px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  margin-top: auto;
  padding: 12px 16px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  text-decoration: none;
  transition: all .25s;
  display: flex;
}

.product-card-cta-2:hover {
  outline-offset: 0px;
  color: #000;
  background-color: #ffd60a;
  border-color: #003566;
  border-radius: 5px;
  outline: 2px #003566;
}

.section-header-2 {
  color: #000;
  text-align: left;
  margin: 10px auto 24px;
  font-family: Poppins, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
}

.section-header-2.white {
  color: #fff;
  text-align: center;
  font-size: 2.5rem;
}

.product-card-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #ffd60a;
  border-radius: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: auto;
  text-decoration: none;
  display: block;
  position: relative;
  box-shadow: 0 0 10px 5px #0000001a;
}

.product-contentbox-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  height: 50%;
  padding: 20px 16px 10px;
  display: flex;
}

.product-imagebox-2 {
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  width: 100%;
  height: 50%;
}

.product-name-2 {
  color: #010b15;
  text-align: center;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.product-card-sub {
  object-fit: fill;
  background-color: #fff;
  border-radius: 0;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: auto;
  max-width: none;
  height: auto;
  max-height: none;
  padding: 0;
  text-decoration: none;
  display: flex;
}

.sub-p-imagebox {
  object-fit: fill;
  flex-flow: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 2%;
  padding-top: 0%;
  display: flex;
  overflow: visible;
}

.sub-p-imagebox.large {
  object-fit: fill;
  padding: 0%;
  transform: scale(1.3);
}

.sub-p-imagebox.extra-large {
  padding: 0%;
  transform: scale(1.5)translate(0, -11px);
}

.sub-p-image {
  box-sizing: border-box;
  aspect-ratio: auto;
  object-fit: contain;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  width: 100%;
  max-width: none;
  padding: 0;
  overflow: clip;
}

.sub-p-contentbox {
  flex-flow: column;
  flex: 0 auto;
  justify-content: center;
  align-self: auto;
  align-items: stretch;
  height: auto;
  padding: 12px;
  text-decoration: none;
  display: flex;
}

.sub-p-name {
  color: var(--text-black);
  text-align: center;
  text-transform: capitalize;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 2rem;
  margin-top: 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  display: flex;
}

.new-cta-box {
  grid-column-gap: 10%;
  grid-row-gap: 10%;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 0;
  max-width: none;
  height: auto;
  padding: 5%;
  display: flex;
  position: relative;
}

.new-icon-button-5 {
  color: #fff;
  text-align: center;
  background-color: #0000;
  border: 1px #0092d8;
  border-bottom: 3px solid #0092d8;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: 33%;
  height: 100%;
  margin-top: 0;
  margin-right: 0;
  padding: 8px;
  font-size: 15px;
  line-height: 1.2;
  transition: all .3s;
  display: flex;
}

.new-icon-button-5:hover {
  outline-offset: 0px;
  color: #fff;
  background-color: #0000;
  border-bottom-style: solid;
  outline: 1px #fffc;
}

.html-embed-3 {
  color: var(--light-blue-o);
}

.div-block {
  position: absolute;
}

.bottom-nav-copy {
  color: var(--text-black);
  align-items: stretch;
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 300;
  text-decoration: none;
  transition: all .25s;
  display: flex;
}

.bottom-nav-copy:hover {
  text-decoration: none;
}

.about-section2-big-text-2 {
  color: var(--black);
  text-align: left;
  margin: 10px auto 100px;
  font-family: Poppins, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
}

.about-section2-2 {
  background-color: #0000;
  justify-content: space-between;
  align-items: stretch;
  height: 500px;
  display: flex;
  position: relative;
}

.about-overlay-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--flowstica-webflow-library--white-smoke);
  border-radius: 0;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 65%;
  margin: 54px 140px 0;
  padding: 24px;
  display: none;
  position: static;
  bottom: -17%;
  left: 0%;
  right: 0%;
  box-shadow: 0 5px 15px 2px #0003;
}

.paragraph-3 {
  color: #000000b3;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
}

.paragraph-3.small {
  font-size: 14px;
}

.paragraph-3.small.wbs-nav-center-menu-2 {
  text-align: center;
}

.bold-text, .bold-text-2 {
  color: var(--light-blue-o);
}

.contact14_map-wrapper {
  border-radius: var(--\<unknown\|relume-variable-radius-large\>);
  overflow: hidden;
}

.section_contact14 {
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-background\>);
  color: var(--\<unknown\|relume-variable-color-scheme-1-text\>);
}

.text-style-tagline {
  justify-content: center;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.margin-bottom, .margin-bottom.margin-xsmall, .margin-bottom.margin-xxlarge, .margin-bottom.margin-small, .margin-bottom.margin-xxsmall {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.text-size-medium {
  text-align: center;
  font-size: 1.125rem;
}

.button {
  border: 1px solid var(--\<unknown\|relume-variable-neutral-shade-7\>);
  background-color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
  color: var(--\<unknown\|relume-variable-neutral-white\>);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button.is-link {
  background-color: var(--\<unknown\|relume-variable-transparent\>);
  color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.button.is-secondary {
  background-color: var(--\<unknown\|relume-variable-transparent\>);
  color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
}

.icon-embed-xxsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

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

.padding-section-large {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.contact14_item {
  flex-flow: column;
  display: flex;
}

.text-style-link {
  color: #333;
  margin-top: 2px;
  margin-bottom: 2px;
  text-decoration: underline;
}

.heading-style-h6 {
  color: var(--light-blue-o);
  font-family: Poppins, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.heading-style-h2 {
  color: var(--light-blue-o);
  text-align: center;
  margin-bottom: 30px;
  font-family: Poppins, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.icon-embed-small {
  color: var(--light-blue-o);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.contact14_contact-list {
  grid-column-gap: 1rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact14_map {
  width: 100%;
  height: 100%;
}

.padding-global {
  padding-left: 5%;
  padding-right: 5%;
}

.margin-top, .margin-top.margin-small, .margin-top.margin-medium {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.contact14_content {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.bottom-footer-link {
  color: var(--text-black);
  align-items: stretch;
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 300;
  text-decoration: none;
  transition: all .25s;
  display: flex;
}

.bottom-footer-link:hover {
  text-decoration: none;
}

.bold-text-3 {
  color: var(--light-blue-o);
}

.heading-3, .heading-4 {
  font-size: 1.5rem;
  line-height: 1.8rem;
}

.icon-2, .icon-3 {
  font-size: 1.1rem;
}

.layout473_content {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.layout473_image-group {
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  display: flex;
  position: relative;
}

.text-size-medium-2 {
  font-size: 1.125rem;
}

.layout473_image-wrapper1 {
  border-radius: var(--\<unknown\|relume-variable-radius-large\>);
  width: 100%;
  margin-bottom: 15%;
  margin-left: 15%;
  overflow: hidden;
}

.section_layout473 {
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-background\>);
  color: var(--\<unknown\|relume-variable-color-scheme-1-text\>);
}

.heading-style-h2-2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.layout473_image2, .layout473_image1 {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.layout473_image-wrapper2 {
  border-radius: var(--\<unknown\|relume-variable-radius-medium\>);
  width: 60%;
  display: none;
  position: absolute;
  inset: auto auto 0% 0%;
  overflow: hidden;
}

.about-section {
  padding-top: 80px;
  padding-bottom: 80px;
  display: block;
}

.about-section.hide {
  display: none;
}

.contact-form-right-copy {
  background-color: var(--white);
  border-radius: 0;
  width: 60%;
  padding: 20px 40px;
}

.contact-form-right-copy.yellow {
  background-color: var(--primary-yellow);
}

.contact-form-right-copy.light-blue {
  background-color: var(--light-blue);
}

@media screen and (min-width: 1280px) {
  .category_description:hover {
    background-image: none;
    justify-content: flex-end;
    align-items: stretch;
  }
}

@media screen and (min-width: 1440px) {
  .category_description:hover {
    background-image: none;
    justify-content: flex-end;
    align-items: stretch;
  }
}

@media screen and (min-width: 1920px) {
  .category_description:hover {
    justify-content: flex-end;
    align-items: stretch;
  }
}

@media screen and (max-width: 991px) {
  .container {
    margin-left: 60px;
    margin-right: 60px;
  }

  .spark-line-3.spark-simple-line {
    background-color: var(--spark-library--foreground-interactive);
    border-radius: 3px;
    width: 12.75px;
    height: 3.33px;
    margin-left: 0;
    left: 18px;
  }

  .spark-line-2.spark-simple-line {
    background-color: var(--spark-library--foreground-interactive);
    border-radius: 3px;
    width: 24px;
    height: 3.33px;
  }

  .spark-line-1.spark-simple-line {
    background-color: var(--spark-library--foreground-interactive);
    border-radius: 2px;
    width: 24px;
    height: 3.33px;
  }

  .spark-simple-menu-button {
    background-color: #0000;
    padding-left: 18px;
  }

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

  .spark-nav-link {
    text-align: left;
    margin-bottom: 1rem;
    margin-left: 0;
  }

  .spark-nav-link.spark-square-button {
    text-align: center;
    margin-bottom: 0;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .spark-nav-link.spark-with-dropdown {
    margin-bottom: 0;
  }

  .spark-dropdown-list.w--open {
    position: relative;
  }

  .spark-centered-nav-menu {
    z-index: 99;
    background-color: var(--spark-library--white);
    border-radius: 45px;
    margin-top: 1rem;
    padding: 2rem 1rem 1rem;
    box-shadow: 1px 1px 8px #0000001a;
  }

  .spark-left-side-brand-logo {
    margin-right: auto;
  }

  .square-menu-with-centered-links-inner {
    justify-content: flex-end;
    padding: 0;
  }

  .spark-square-menu-with-centered-links {
    padding-left: 32px;
    padding-right: 32px;
  }

  .wbs-menu-button {
    background-color: var(--flowstica-webflow-library--white-smoke);
    border-radius: 10px;
    margin-left: auto;
    padding: 15px;
  }

  .wbs-menu-button.w--open {
    background-color: var(--primary-blue);
  }

  .wbs-nav-center-right {
    display: none;
  }

  .wbs-nav-link {
    width: 100%;
  }

  .wbs-dropdown-link {
    border-radius: 5px;
    margin-left: 0;
    margin-right: 0;
    font-weight: 400;
  }

  .wbs-dropdown-link:hover {
    background-color: var(--primary-yellow);
  }

  .wbs-dropdown-grid {
    grid-template-columns: 1fr;
  }

  .wbs-dropdown-list.w--open {
    background-color: var(--light-blue);
    border-radius: 0;
  }

  .wbs-nav-center-menu {
    background-color: var(--flowstica-webflow-library--white);
    border: 1px solid #010b151a;
    border-radius: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .wbs-container {
    margin-left: 60px;
    margin-right: 60px;
  }

  .top-nav-bar {
    padding-top: .5rem;
    padding-bottom: 1rem;
  }

  .home-about-wrapper {
    flex-flow: column;
  }

  .home-about-imagebox {
    width: 100%;
  }

  .home-about-contentbox {
    width: 100%;
    margin-top: 60px;
  }

  .section-tag.blue._10px {
    flex: none;
  }

  .content-form-wrapper {
    grid-column-gap: 5%;
    grid-row-gap: 5%;
  }

  .contact-form-left {
    width: 25%;
  }

  .contact-form-right {
    width: 70%;
  }

  .spark-hero-section-image {
    width: 100%;
    max-width: 100%;
  }

  .spark-flex-row.spark-5-spacing {
    grid-row-gap: 2rem;
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .spark-hero-section-left-side {
    width: 100%;
  }

  .spark-section {
    padding-top: 104px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .about-info-wrapper {
    flex-flow: column;
  }

  .about-info-left {
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .about-info-right {
    width: 100%;
    margin-top: 40px;
  }

  .about-section2-textbox {
    margin-left: 60px;
    padding-right: 20px;
  }

  .about-section2-big-text {
    font-size: 36px;
  }

  .about-overlay {
    margin-left: 60px;
    margin-right: 60px;
  }

  .dropdown {
    width: 100%;
  }

  .text-block {
    display: inline-block;
  }

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

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

  .wbs-dropdown-link-2 {
    border-radius: 5px;
    margin-left: 0;
    margin-right: 0;
    font-weight: 400;
  }

  .wbs-dropdown-link-2:hover {
    background-color: #ffd60a;
  }

  .sub-p-imagebox {
    height: 45%;
  }

  .sub-p-contentbox {
    height: 55%;
  }

  .sub-p-name {
    margin-left: -2px;
    margin-right: -2px;
    line-height: 1.2;
  }

  .about-section2-big-text-2 {
    font-size: 36px;
  }

  .about-overlay-2 {
    margin-left: 60px;
    margin-right: 60px;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .heading-style-h2 {
    font-size: 2.75rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .contact14_content {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .heading-style-h2-2 {
    font-size: 2.75rem;
  }

  .contact-form-right-copy {
    width: 70%;
  }
}

@media screen and (max-width: 767px) {
  .main-heading.mobile {
    text-align: center;
  }

  .primary-button.mobile {
    font-size: 14px;
    line-height: 1.2;
  }

  .paragraph.banner-sub-text.mobile {
    text-align: center;
  }

  .secondary-button.mobile {
    font-size: 14px;
    line-height: 1.2;
  }

  .container {
    margin-left: 24px;
    margin-right: 24px;
    display: block;
  }

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

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

  .spark-nav-link.spark-square-button {
    padding-left: 16px;
    padding-right: 16px;
  }

  .square-menu-with-centered-links-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .spark-square-menu-with-centered-links {
    padding-left: 20px;
    padding-right: 20px;
  }

  .wbs-dropdown-grid {
    grid-template-columns: 1fr;
  }

  .wbs-container {
    margin-left: 24px;
    margin-right: 24px;
  }

  .section-header.mobile {
    text-align: center;
  }

  .section-header.white.contact-section {
    margin-bottom: 20px;
  }

  .sub-header.banner-sub-text.mobile {
    text-align: center;
  }

  .category-card-grid, .brand-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .content-form-wrapper {
    flex-flow: column;
  }

  .contact-form-left {
    width: 100%;
  }

  .contact-form-right {
    width: 100%;
    margin-top: 60px;
  }

  .contact-form-right.yellow {
    margin-top: 40px;
  }

  .bottom-nav-bar-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .bottom-nav-box---contact {
    margin-right: 0%;
  }

  .banner-heading.mobile, .category-name.banner-sub-text.mobile, .brand-name.banner-sub-text.mobile {
    text-align: center;
  }

  .spark-hero-section-image {
    width: 100%;
    max-width: 100%;
  }

  .spark-flex-row {
    flex-direction: column;
  }

  .spark-flex-row.spark-left-aligned {
    flex-direction: row;
    align-items: flex-start;
  }

  .spark-flex-row.spark-5-spacing {
    grid-row-gap: 24px;
    flex-direction: column-reverse;
  }

  .spark-hero-sub-paragraph {
    margin-bottom: 32px;
  }

  .spark-hero-section-left-side, .spark-container {
    width: 100%;
  }

  .spark-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .category-info-wrapper {
    flex-flow: column;
  }

  .cat-info-left {
    width: 100%;
  }

  .cat-info-right {
    width: 100%;
    margin-top: 40px;
  }

  .product-name.banner-sub-text.mobile {
    text-align: center;
  }

  .about-section2-textbox {
    margin-left: 24px;
    padding-right: 10px;
  }

  .about-info-section2 {
    padding-top: 180px;
  }

  .info-wrapper {
    flex-flow: column;
  }

  .info-left {
    width: 100%;
  }

  .info-right {
    width: 100%;
    margin-top: 40px;
  }

  .about-section2-big-text {
    margin-bottom: 120px;
  }

  .about-section2-big-text.mobile {
    text-align: center;
  }

  .contact-info-wrapper {
    grid-column-gap: 2%;
    grid-row-gap: 2%;
  }

  .contact-detail-card {
    width: 33%;
  }

  .detail-text.banner-sub-text.mobile {
    text-align: center;
  }

  .sub-c-card-grid, .final-prod-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-image-wrapper {
    justify-content: center;
    align-items: center;
  }

  .contact-image-text.mobile {
    text-align: center;
  }

  .contact-blank-div {
    display: none;
  }

  .form-field.banner-sub-text.mobile, .small-heading.mobile {
    text-align: center;
  }

  .about-overlay {
    grid-template-columns: 1fr 1fr;
    height: auto;
    margin-left: 24px;
    margin-right: 24px;
    bottom: -25%;
  }

  .contact-detail-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: row;
    justify-content: space-between;
    align-items: stretch;
  }

  .black-bottom-nav {
    display: block;
  }

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

  .sub-p-imagebox {
    height: 55%;
  }

  .sub-p-contentbox {
    height: 45%;
    padding: 16px;
  }

  .sub-p-name {
    margin-left: 0;
    margin-right: 0;
  }

  .about-section2-big-text-2 {
    margin-bottom: 120px;
  }

  .about-overlay-2 {
    grid-template-columns: 1fr 1fr;
    height: auto;
    margin-left: 24px;
    margin-right: 24px;
    bottom: -25%;
  }

  .contact14_map-wrapper {
    height: 25rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

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

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .heading-style-h6 {
    font-size: 1.125rem;
  }

  .heading-style-h2 {
    font-size: 2.25rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .contact14_content {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .layout473_content {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .layout473_image-group {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .text-size-medium-2 {
    font-size: 1rem;
  }

  .heading-style-h2-2 {
    font-size: 2.25rem;
  }

  .contact-form-right-copy {
    width: 100%;
    margin-top: 60px;
  }

  .contact-form-right-copy.yellow {
    margin-top: 40px;
  }
}

@media screen and (max-width: 479px) {
  .button-wrapper {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    justify-content: center;
    align-items: center;
    font-size: 9px;
  }

  .main-heading {
    max-width: 500px;
    font-size: 27px;
    line-height: 1.2;
  }

  .primary-button {
    text-align: center;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 14px;
    line-height: 1.4;
  }

  .primary-button.mobile {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-banner {
    margin-top: -87px;
    padding-top: 180px;
    padding-bottom: 80px;
  }

  .paragraph.banner-sub-text {
    color: #fffc;
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 16px;
  }

  .secondary-button {
    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;
  }

  .container {
    flex-direction: row-reverse;
    max-width: none;
    margin-left: 24px;
    margin-right: 24px;
    display: block;
    overflow: visible;
  }

  .spark-simple-menu-button {
    padding-left: 0;
  }

  .spark-nav-link {
    margin-bottom: .5rem;
  }

  .spark-nav-link.spark-square-button {
    margin-left: .5rem;
    margin-right: .5rem;
    font-size: .75rem;
  }

  .spark-nav-link.spark-square-button.spark-small-on-mobile {
    padding: 8px;
    display: block;
  }

  .spark-centered-nav-menu {
    border-radius: 20px;
    padding: 1rem .5rem 0;
  }

  .square-menu-with-centered-links-inner {
    padding-top: 0;
    padding-bottom: 0;
  }

  .spark-square-menu-with-centered-links {
    padding-right: 0;
  }

  .wbs-menu-button {
    background-color: var(--primary-blue);
    border-radius: 3px;
    margin-left: 0;
    transition: all .35s;
  }

  .wbs-menu-button:hover, .wbs-menu-button.w--open {
    background-color: var(--primary-yellow);
  }

  .wbs-menu-button.light-blue {
    background-color: var(--light-blue-o);
    border-radius: 0;
  }

  .wbs-menu-button.red {
    background-color: var(--red);
  }

  .wbs-menu-button.green {
    background-color: var(--green);
  }

  .wbs-button-primary-4.contact-form {
    width: 100%;
  }

  .wbs-nav-link {
    transition: all .35s;
  }

  .wbs-nav-link:hover {
    background-color: var(--light-blue-o);
    color: var(--white);
  }

  .wbs-nav-link.mobile {
    background-color: var(--primary-yellow);
    border-radius: 3px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin-top: 10px;
    transition: all .35s;
    display: flex;
  }

  .wbs-nav-link.mobile:hover {
    background-color: var(--primary-blue);
    color: var(--white);
  }

  .wbs-nav-link.mobile.light-blue {
    background-color: var(--light-blue-o);
    color: var(--white);
  }

  .wbs-nav-link.mobile.light-blue:hover {
    background-color: var(--dark-grey);
  }

  .wbs-nav-link.mobile.red {
    background-color: var(--red);
    color: var(--white);
  }

  .wbs-nav-link.mobile.red:hover {
    background-color: var(--black);
  }

  .wbs-nav-link.mobile.green {
    background-color: var(--green);
    color: var(--white);
  }

  .wbs-nav-link.mobile.green:hover {
    background-color: var(--black);
  }

  .wbs-nav-link.light-blue:hover {
    background-color: var(--light-blue-o);
  }

  .wbs-dropdown-link {
    border-radius: 0;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .wbs-dropdown-link:hover {
    background-color: var(--light-blue-o);
    color: var(--white);
    border-radius: 0;
  }

  .wbs-dropdown-item {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto auto auto auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .wbs-dropdown-item.brands {
    z-index: 999;
    margin-top: 25px;
    position: relative;
  }

  .wbs-dropdown-grid {
    z-index: 999;
    position: relative;
    overflow: visible;
  }

  .wbs-dropdown-list.w--open {
    z-index: 999;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .wbs-nav-center-wrap {
    padding-left: 0;
    padding-right: 10px;
  }

  .top-nav-bar {
    background-color: #0000;
    margin-bottom: -156px;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
  }

  .icon {
    color: var(--spark-library--white);
  }

  .brand {
    margin-left: 20px;
    padding-left: 0;
  }

  .title {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 15px;
    line-height: 21px;
  }

  .text-span {
    font-size: 20px;
  }

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

  .home-about-contentbox {
    margin-top: 60px;
  }

  .section-tag.blue {
    margin-left: auto;
    margin-right: auto;
  }

  .section-header {
    text-align: center;
    max-width: 500px;
    font-size: 27px;
    line-height: 1.2;
  }

  ._40px-filler {
    height: 60px;
  }

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

  .sub-header.banner-sub-text {
    color: #fffc;
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 16px;
  }

  .category-card-grid {
    overflow: hidden;
  }

  .brands-section, .about-two-section {
    padding-top: 60px;
  }

  .usp-card-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
  }

  .usp-home-card {
    width: 100%;
  }

  .contact-form-section {
    padding-top: 60px;
  }

  .contact-form-right {
    margin-top: 60px;
  }

  .bottom-nav-bar {
    padding-top: 40px;
  }

  .bottom-nav-bar-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr 1fr;
  }

  .bottom-nav-link, .bottom-nav-link._14px {
    font-size: 14px;
  }

  .bottom-nav-logo {
    height: 94px;
  }

  .bottom-nav-bar-logo.blue {
    margin-bottom: 10px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .bottom-nav-strip {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .banner-heading {
    max-width: 500px;
    font-size: 27px;
    line-height: 1.2;
  }

  .breadcrumb {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .category-card {
    width: auto;
  }

  .category-name {
    font-size: 1rem;
  }

  .category-name.banner-sub-text, .brand-name.banner-sub-text {
    color: #fffc;
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 16px;
  }

  .brand-info-section {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    background-attachment: scroll;
  }

  .spark-flex-row {
    align-items: flex-start;
  }

  .spark-flex-row.spark-left-aligned {
    grid-row-gap: 16px;
    flex-wrap: wrap;
  }

  .spark-section {
    padding: 64px 20px;
  }

  .spark-section h1 {
    font-size: 3rem;
  }

  .spark-section h2 {
    font-size: 2.5rem;
  }

  .brand-info-wrapper {
    flex-flow: column;
  }

  .brand-info-left {
    justify-content: center;
    align-items: center;
    width: 74%;
    margin-left: auto;
    margin-right: auto;
  }

  .brand-info-right {
    width: 100%;
    margin-top: 40px;
  }

  .cat-info-left {
    margin-left: 0%;
  }

  .product-card {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .product-contentbox {
    padding-left: 16px;
    padding-right: 16px;
  }

  .product-name {
    text-align: center;
    margin-top: auto;
    font-size: 14px;
  }

  .product-name.banner-sub-text {
    color: #fffc;
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 16px;
  }

  .product-card-cta {
    padding: 10px 12px;
  }

  .about-section2 {
    flex-flow: column;
  }

  .about-section-image {
    width: 100%;
  }

  .about-section2-textbox {
    width: 100%;
    height: auto;
    margin-left: 0;
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-info-section2 {
    padding-top: 140px;
  }

  .about-section2-big-text {
    max-width: 500px;
    margin-top: 40px;
    margin-bottom: 60px;
    font-size: 27px;
    line-height: 1.2;
  }

  .detail-text.banner-sub-text {
    color: #fffc;
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 16px;
  }

  .contact-image-text {
    max-width: 500px;
    font-size: 27px;
    line-height: 1.2;
  }

  .form-field.banner-sub-text {
    color: #fffc;
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 16px;
  }

  .form-inner-div {
    flex-flow: column;
  }

  .field-wrapper {
    width: 100%;
  }

  .small-heading {
    max-width: 500px;
    font-size: 27px;
    line-height: 1.2;
  }

  .about-overlay {
    bottom: -10%;
  }

  .contact-detail-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
  }

  .black-bottom-nav {
    display: none;
  }

  .category-card-2 {
    flex-direction: column;
    justify-content: flex-end;
    display: flex;
    overflow: hidden;
  }

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

  .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;
  }

  .category-image-box {
    flex: none;
    justify-content: flex-start;
    align-self: stretch;
    align-items: stretch;
    max-height: 320px;
    display: flex;
    overflow: hidden;
  }

  .image-26 {
    flex: 0 auto;
    align-self: auto;
    width: auto;
    max-width: none;
    display: block;
    overflow: hidden;
  }

  .cateogry-title-box {
    justify-content: flex-end;
    max-height: none;
    display: flex;
    position: static;
    overflow: hidden;
  }

  .product-cta-text {
    font-size: 14px;
  }

  .wbs-dropdown-link-2 {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .wbs-dropdown-link-2:hover {
    color: #fff;
    background-color: #003566;
  }

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

  .banner-heading-2 {
    max-width: 500px;
    font-size: 27px;
    line-height: 1.2;
  }

  .product-card-cta-2 {
    padding: 10px 12px;
  }

  .section-header-2 {
    text-align: center;
    max-width: 500px;
    font-size: 27px;
    line-height: 1.2;
  }

  .product-card-2 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .product-contentbox-2 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .product-name-2 {
    text-align: center;
    margin-top: auto;
    font-size: 14px;
  }

  .product-card-sub {
    width: auto;
    max-height: none;
  }

  .sub-p-imagebox {
    object-fit: contain;
    flex-flow: column;
    width: 100%;
    height: auto;
    margin-top: 2%;
  }

  .sub-p-image {
    object-fit: cover;
  }

  .sub-p-contentbox {
    width: auto;
    min-width: 0%;
    max-width: none;
    height: auto;
    padding: 8px;
  }

  .sub-p-name {
    height: 2rem;
    font-size: 16px;
    line-height: 1.2;
  }

  .new-cta-box {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    height: auto;
  }

  .new-icon-button-5 {
    text-align: center;
    padding: 4px;
    font-size: 14px;
    line-height: 1.4;
  }

  .bottom-nav-copy, .bottom-nav-copy._14px {
    font-size: 14px;
  }

  .about-section2-big-text-2 {
    max-width: 500px;
    margin-top: 40px;
    margin-bottom: 60px;
    font-size: 27px;
    line-height: 1.2;
  }

  .about-section2-2 {
    flex-flow: column;
  }

  .about-overlay-2 {
    bottom: -10%;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .contact14_contact-list {
    grid-template-columns: 1fr 1fr;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

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

  .bottom-footer-link, .bottom-footer-link._14px {
    font-size: 14px;
  }

  .layout473_image-group {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

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

  .contact-form-right-copy {
    margin-top: 60px;
  }
}

#w-node-_6b567b2b-9687-5f40-3b1e-af8d954c3323-e8ba579c, #w-node-b7255751-faa7-4a74-4a5b-f6a3669765d5-e8ba579c {
  align-self: auto;
}

#w-node-_8f304663-6b77-a123-900d-141bd389973f-e8ba579c {
  place-self: auto;
}

#w-node-_3f508a1b-c1f1-0c0e-d0e4-203bf1e8401d-f1e8401a {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-d7aeff14-0333-d866-a0c1-ea80c330aacb-c330aab9, #w-node-d7aeff14-0333-d866-a0c1-ea80c330aae1-c330aab9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d7aeff14-0333-d866-a0c1-ea80c330aae6-c330aab9 {
  place-self: center;
}

#w-node-d7aeff14-0333-d866-a0c1-ea80c330aaf2-c330aab9 {
  align-self: center;
}

#w-node-d7aeff14-0333-d866-a0c1-ea80c330aaf4-c330aab9, #w-node-a192d500-0af0-e65c-4ea8-118dfda47da2-c330aab9 {
  justify-self: auto;
}

@media screen and (max-width: 767px) {
  #w-node-_3f508a1b-c1f1-0c0e-d0e4-203bf1e8401d-f1e8401a {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_2445e64a-3b01-1ae3-a801-82e796923bc9-913f05b2 {
    place-self: auto;
  }
}


