/*! tailwindcss v4.1.16 | MIT License | https://tailwindcss.com */
@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --spacing: 0.25rem;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *, ::after, ::before, ::backdrop, ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b, strong {
    font-weight: bolder;
  }
  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol, ul, menu {
    list-style: none;
  }
  img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  button, input, select, optgroup, textarea, ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer utilities {
  .container {
    width: 100%;
    @media (width >= 40rem) {
      max-width: 40rem;
    }
    @media (width >= 48rem) {
      max-width: 48rem;
    }
    @media (width >= 64rem) {
      max-width: 64rem;
    }
    @media (width >= 80rem) {
      max-width: 80rem;
    }
    @media (width >= 96rem) {
      max-width: 96rem;
    }
  }
  .mt-8 {
    margin-top: calc(var(--spacing) * 8);
  }
  .mt-14 {
    margin-top: calc(var(--spacing) * 14);
  }
  .mb-8 {
    margin-bottom: calc(var(--spacing) * 8);
  }
  .flex {
    display: flex;
  }
  .hidden {
    display: none;
  }
  .w-full {
    width: 100%;
  }
  .flex-col {
    flex-direction: column;
  }
  .justify-center {
    justify-content: center;
  }
  .gap-2 {
    gap: calc(var(--spacing) * 2);
  }
  .gap-4 {
    gap: calc(var(--spacing) * 4);
  }
  .md\:w-1\/2 {
    @media (width >= 48rem) {
      width: calc(1/2 * 100%);
    }
  }
  .lg\:mt-4 {
    @media (width >= 64rem) {
      margin-top: calc(var(--spacing) * 4);
    }
  }
  .lg\:mt-24 {
    @media (width >= 64rem) {
      margin-top: calc(var(--spacing) * 24);
    }
  }
  .lg\:flex {
    @media (width >= 64rem) {
      display: flex;
    }
  }
  .lg\:gap-0 {
    @media (width >= 64rem) {
      gap: calc(var(--spacing) * 0);
    }
  }
}
:root {
  --dark-gray: #1D1D1D;
  --light-gray: #8A8A8A;
  --red: #CB252B;
  --white: #F7F7F7;
}
body {
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: normal;
  color: var(--dark-gray);
  background: var(--white);
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Rethink Sans", sans-serif;
  font-weight: 800;
  font-style: normal;
}
p {
  font-size: 16px;
  --tw-leading: 24px;
  line-height: 24px;
  @media (width >= 64rem) {
    font-size: 19px;
  }
  @media (width >= 64rem) {
    --tw-leading: 28px;
    line-height: 28px;
  }
  &.lead {
    font-size: 19px;
    --tw-leading: 34px;
    line-height: 34px;
    @media (width >= 64rem) {
      font-size: 25px;
    }
    @media (width >= 64rem) {
      --tw-leading: 37px;
      line-height: 37px;
    }
  }
}
.basic-container {
  width: 100%;
  max-width: 1638px;
}
.btn-black, .btn-white, .btn-white-outline {
  display: inline-block;
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  padding: 15px 35px;
  border-radius: 99px;
  white-space: nowrap;
  font-size: 16px;
  @media (width >= 64rem) {
    font-size: 24px;
  }
}
.btn-black {
  color: var(--white);
  background-color: var(--dark-gray);
  &:hover {
    color: var(--dark-gray);
    border-color: var(--dark-gray);
    background-color: var(--light-gray);
  }
}
.btn-white {
  color: var(--dark-gray);
  background-color: var(--white);
  border: 2px solid var(--dark-gray);
}
.btn-white:hover {
  color: var(--white);
  border-color: var(--dark-gray);
  background-color: var(--dark-gray);
}
.btn-white-outline {
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-white-outline:hover {
  color: var(--dark-gray);
  border-color: var(--dark-gray);
  background-color: var(--light-gray);
}
.section-btns-horiz {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing) * 4);
  @media (width >= 64rem) {
    flex-direction: row;
  }
}
.section-btns-vert {
  display: inline-flex;
  flex-direction: column;
  gap: calc(var(--spacing) * 4);
}
.top-nav-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background-color: var(--dark-gray);
  padding-inline: 30px;
  padding-block: 10px;
}
.top-nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: calc(var(--spacing) * 8);
}
.search-btn {
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: none;
  @media (width >= 40rem) {
    display: block;
  }
}
.main-nav-container {
  display: flex;
  height: 92px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--dark-gray);
  border-bottom: 9px solid var(--dark-gray);
  padding-inline: 30px;
}
.main-nav {
  display: flex;
  height: 92px;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: calc(var(--spacing) * 8);
}
.main-nav .menu-btn {
  width: 18px;
  height: 18px;
  cursor: pointer;
  display: block;
  @media (width >= 64rem) {
    display: none;
  }
}
.main-nav .menu-btn .close-menu {
  display: none;
}
.main-nav .menu-btn.show-menu-icon .close-menu {
  display: flex;
}
.main-nav .menu-btn.show-menu-icon .open-menu {
  display: none;
}
.main-nav #branding img {
  width: 260px;
  height: auto;
}
.main-nav nav {
  display: none;
  height: 92px;
  align-items: center;
  justify-content: center;
  @media (width >= 64rem) {
    display: flex;
  }
}
.main-nav ul.menu {
  height: 92px;
  font-weight: 700;
  color: var(--dark-gray);
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: calc(var(--spacing) * 9);
}
.main-nav ul.menu > li {
  position: relative;
  height: 92px;
  display: flex;
  align-items: center;
}
.main-nav ul.menu > li a {
  border-bottom: 2px solid var(--white);
}
.main-nav ul.menu > li a:hover {
  border-bottom: 2px solid var(--dark-gray);
}
.main-nav ul.menu > li.current-menu-item a {
  border-bottom: 2px solid var(--dark-gray);
}
.main-nav ul.menu > li.current-menu-parent > a {
  border-bottom: 2px solid var(--dark-gray);
}
.main-nav ul.menu > li:hover ul.sub-menu {
  display: block;
}
.main-nav ul.sub-menu {
  display: none;
  position: absolute;
  z-index: 100;
  top: 87px;
  left: -38px;
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 25px 40px 15px 40px;
}
.main-nav ul.sub-menu > li {
  width: 270px;
  margin-bottom: 15px;
}
.main-nav ul.sub-menu > li > a {
  border-bottom: 2px solid var(--dark-gray);
}
.main-nav ul.sub-menu > li > a:hover {
  border-bottom: 2px solid var(--white);
}
.main-nav ul.sub-menu > li.current-menu-item > a {
  border-bottom: 2px solid var(--white);
}
.mobile-nav-container {
  display: none;
  height: 0;
}
.mobile-nav-container.show-menu {
  display: block;
  height: auto;
}
.mobile-nav-container .menu-main-nav-container {
  width: 100%;
  padding: 40px 0 30px 0;
}
.mobile-nav-container ul.menu {
  font-weight: 700;
  color: var(--dark-gray);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing) * 5);
}
.mobile-nav-container ul.menu > li {
  text-align: center;
}
.mobile-nav-container ul.menu > li > a {
  border-bottom: 2px solid var(--white);
}
.mobile-nav-container ul.menu > li.current-menu-item > a {
  border-bottom: 2px solid var(--dark-gray);
}
.mobile-nav-container ul.menu > li.current-menu-parent > a {
  border-bottom: 2px solid var(--dark-gray);
}
.mobile-nav-container ul.sub-menu {
  margin-top: 2px;
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 30px 30px 15px 30px;
}
.mobile-nav-container ul.sub-menu > li {
  text-align: center;
  margin-bottom: 15px;
}
.mobile-nav-container ul.sub-menu > li > a {
  border-bottom: 2px solid var(--dark-gray);
}
.mobile-nav-container ul.sub-menu > li.current-menu-item > a {
  border-bottom: 2px solid var(--white);
}
.view-cart-button {
  display: flex;
  background-color: var(--white);
  color: var(--dark-gray);
  border-radius: 99px;
  padding: 5px 20px;
  text-transform: uppercase;
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: normal;
  white-space: nowrap;
  column-gap: 13px;
  font-size: 16px;
  @media (width >= 64rem) {
    font-size: 18px;
  }
}
.view-cart-button img {
  width: 18px 16px;
}
.entry-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-page {
  width: 100%;
  max-width: 1060px;
  padding: 70px 30px;
}
.content-page h1 {
  margin-bottom: calc(var(--spacing) * 10);
  font-size: 59px;
  --tw-leading: 59px;
  line-height: 59px;
  text-transform: uppercase;
  @media (width >= 64rem) {
    font-size: 88px;
  }
  @media (width >= 64rem) {
    --tw-leading: 88px;
    line-height: 88px;
  }
}
.content-page p {
  margin-bottom: calc(var(--spacing) * 8);
}
.content-page h6 {
  font-family: "Space Mono", monospace;
  font-weight: 800;
  margin-bottom: calc(var(--spacing) * 4);
  font-size: 19px;
  --tw-leading: 34px;
  line-height: 34px;
  @media (width >= 64rem) {
    font-size: 25px;
  }
  @media (width >= 64rem) {
    --tw-leading: 37px;
    line-height: 37px;
  }
}
.contact-form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 70px 30px;
  background: var(--dark-gray);
  .contact-form {
    width: 100%;
    max-width: 1060px;
    h2 {
      color: var(--white);
      font-size: 59px;
      --tw-leading: 59px;
      line-height: 59px;
      text-transform: uppercase;
      @media (width >= 64rem) {
        font-size: 88px;
      }
      @media (width >= 64rem) {
        --tw-leading: 88px;
        line-height: 88px;
      }
    }
  }
}
.content-page-shop {
  width: 100%;
  max-width: 1638px;
  padding: 70px 30px;
}
.content-page-shop h1 {
  margin-bottom: calc(var(--spacing) * 10);
  font-size: 59px;
  --tw-leading: 59px;
  line-height: 59px;
  text-transform: uppercase;
  @media (width >= 64rem) {
    font-size: 88px;
  }
  @media (width >= 64rem) {
    --tw-leading: 88px;
    line-height: 88px;
  }
}
.content-page-shop p {
  margin-bottom: calc(var(--spacing) * 8);
}
.category-content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 100px 30px;
}
.category-content {
  width: 100%;
  max-width: 1638px;
}
.category-content h1 {
  margin-bottom: calc(var(--spacing) * 10);
  font-size: 59px;
  --tw-leading: 59px;
  line-height: 59px;
  text-transform: uppercase;
  @media (width >= 64rem) {
    font-size: 88px;
  }
  @media (width >= 64rem) {
    --tw-leading: 88px;
    line-height: 88px;
  }
}
.category-content .term-description {
  width: 100%;
  @media (width >= 48rem) {
    width: calc(1/2 * 100%);
  }
  margin-bottom: 75px;
}
.woocommerce-breadcrumb, .woocommerce-breadcrumb a {
  font-family: "Space Mono", monospace;
  font-weight: 700 !important;
  font-style: normal;
  font-size: 25px !important;
  color: var(--dark-gray) !important;
  letter-spacing: 3px;
}
.product-category {
  aspect-ratio: 1 / 1;
}
.product-category a {
  position: relative;
  display: flex;
  width: 100% !important;
  height: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.product-category a img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
}
.product-category a span {
  padding: 30px;
}
.product-category a h2 {
  position: relative;
  display: flex;
  background: var(--white);
  padding: 0 10px !important;
  flex: none;
  font-size: 33px !important;
  --tw-leading: 44px !important;
  line-height: 44px !important;
  @media (width >= 64rem) {
    font-size: 59px !important;
  }
  @media (width >= 64rem) {
    --tw-leading: 71px !important;
    line-height: 71px !important;
  }
  z-index: 100;
}
.product-category a h2 mark {
  display: none;
}
.product-category a:hover span h2 {
  color: var(--white);
  background: var(--dark-gray);
}
.product-category a:hover .overlay {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.71;
  z-index: 0;
}
.woocommerce ul.products li.product.type-product {
  border: 2px solid var(--dark-gray);
  padding: 30px;
}
.woocommerce ul.products li.product.type-product:hover {
  background: var(--dark-gray);
  color: var(--white);
}
.woocommerce ul.products li.product.type-product:hover a.button {
  color: var(--white);
  border-color: var(--white);
  border-width: 2px;
  background-color: var(--dark-gray);
}
.woocommerce ul.products li.product.type-product:hover .price {
  color: var(--white);
}
.woocommerce ul.products li.product.type-product:hover h2.woocommerce-loop-product__title {
  color: var(--white) !important;
}
.woocommerce ul.products li.product.type-product h2.woocommerce-loop-product__title {
  font-family: "Space Mono", monospace;
  font-weight: 700 !important;
  font-style: normal;
  color: var(--dark-gray) !important;
  letter-spacing: 2px;
  padding-bottom: 5px;
  font-size: 18px;
  @media (width >= 64rem) {
    font-size: 20px;
  }
}
.woocommerce ul.products li.product.type-product .button {
  color: var(--dark-gray);
  background-color: var(--white);
  border: 2px solid var(--dark-gray);
  display: inline-block;
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: normal;
  padding: 15px 25px;
  border-radius: 99px;
  text-align: center;
  font-size: 16px;
  @media (width >= 64rem) {
    font-size: 20px;
  }
}
.woocommerce ul.products li.product.type-product .product-type {
  font-family: "Space Mono", monospace;
  font-size: 16px;
  --tw-leading: 24px;
  line-height: 24px;
  @media (width >= 64rem) {
    font-size: 19px;
  }
  @media (width >= 64rem) {
    --tw-leading: 28px;
    line-height: 28px;
  }
}
.woocommerce-result-count {
  display: none;
}
.woocommerce-ordering {
  display: none;
}
.term-equipment .woocommerce-breadcrumb, .term-supplies .woocommerce-breadcrumb, .term-promotions .woocommerce-breadcrumb {
  display: none;
}
.woocommerce ul.products.columns-4 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 44px;
  @media (width >= 40rem) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  @media (width >= 48rem) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  @media (width >= 64rem) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.woocommerce ul.products.columns-4::before {
  display: none;
}
.woocommerce ul.products.columns-4 li {
  float: initial !important;
  margin: 0 !important;
  display: flex;
  width: 100% !important;
  flex-direction: column;
}
.woocommerce.single-product .woocommerce-breadcrumb {
  margin-bottom: 43px;
  @media (width >= 64rem) {
    margin-bottom: 83px;
  }
}
.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
  width: 32%;
}
.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
  width: 100%;
  @media (width >= 64rem) {
    width: 65%;
  }
}
.woocommerce div.product h1.product_title {
  font-family: "Space Mono", monospace;
  color: var(--dark-gray);
  text-transform: initial;
  margin-bottom: calc(var(--spacing) * 8);
  font-size: 59px;
  --tw-leading: 59px;
  line-height: 59px;
  @media (width >= 64rem) {
    font-size: 88px;
  }
  @media (width >= 64rem) {
    --tw-leading: 88px;
    line-height: 88px;
  }
}
.woocommerce div.product .main-description {
  border-top: 3px dotted var(--dark-gray);
  margin-top: 24px;
  padding-top: 24px;
}
.woocommerce div.product .main-description p {
  margin-bottom: calc(var(--spacing) * 8);
}
#wpgs-gallery {
  margin-bottom: 73px !important;
  @media (width >= 64rem) {
    margin-bottom: 100px !important;
  }
}
.gallery-navigation-carousel.vertical:not(.thumbnailnavigation-inner_right) .wcgs-spswiper-arrow {
  height: 54px !important;
}
.gallery-navigation-carousel.vertical:not(.thumbnailnavigation-inner_right) .wcgs-spswiper-arrow.wcgs-spswiper-button-prev {
  top: 10px !important;
}
#wpgs-gallery .gallery-navigation-carousel.vertical .wcgs-spswiper-button-prev.wcgs-spswiper-arrow::before {
  content: "" !important;
  width: 44px;
  height: 54px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 44px 54px;
  background-image: url('/wp-content/uploads/gallery-nav-vert.svg');
  transform: rotate(0deg);
}
#wpgs-gallery .gallery-navigation-carousel.vertical .wcgs-spswiper-button-prev:hover.wcgs-spswiper-arrow::before {
  background-image: url('/wp-content/uploads/gallery-nav-vert-hover.svg');
}
.gallery-navigation-carousel.vertical:not(.thumbnailnavigation-inner_right) .wcgs-spswiper-arrow.wcgs-spswiper-button-next {
  bottom: 10px !important;
}
#wpgs-gallery .gallery-navigation-carousel.vertical .wcgs-spswiper-button-next.wcgs-spswiper-arrow::before {
  content: "" !important;
  width: 44px;
  height: 54px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 44px 54px;
  background-image: url('/wp-content/uploads/gallery-nav-vert.svg');
  transform: rotate(180deg);
}
#wpgs-gallery .gallery-navigation-carousel.vertical .wcgs-spswiper-button-next:hover.wcgs-spswiper-arrow::before {
  background-image: url('/wp-content/uploads/gallery-nav-vert-hover.svg');
}
.related.products {
  clear: both;
}
.related.products > h2 {
  font-family: "Space Mono", monospace;
  color: var(--dark-gray);
  margin-bottom: 30px !important;
  font-size: 59px;
  --tw-leading: 59px;
  line-height: 59px;
  text-transform: uppercase;
  @media (width >= 64rem) {
    margin-bottom: 62px !important;
  }
  @media (width >= 64rem) {
    font-size: 88px;
  }
  @media (width >= 64rem) {
    --tw-leading: 88px;
    line-height: 88px;
  }
}
.woocommerce-message {
  border-top-color: var(--light-gray);
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce-message a.button {
  display: inline-block;
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  padding: 14px 28px;
  border-radius: 99px;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--dark-gray);
  font-size: 16px;
  @media (width >= 64rem) {
    font-size: 18px;
  }
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce-message a.button:hover {
  color: var(--dark-gray);
  border-color: var(--dark-gray);
  background-color: var(--light-gray);
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.single_add_to_cart_button {
  display: inline-block;
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  padding: 15px 35px;
  border-radius: 99px;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--dark-gray);
  font-size: 16px;
  @media (width >= 64rem) {
    font-size: 24px;
  }
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.single_add_to_cart_button:hover {
  color: var(--dark-gray);
  border-color: var(--dark-gray);
  background-color: var(--light-gray);
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price {
  font-family: "Space Mono", monospace;
  color: var(--dark-gray);
  margin-bottom: calc(var(--spacing) * 2);
  font-size: 16px;
  @media (width >= 64rem) {
    font-size: 25px;
  }
  font-weight: 700;
}
.quantity .input-text.qty.text {
  border: 2px solid var(--dark-gray);
  border-radius: 99px;
  margin-right: calc(var(--spacing) * 6);
  height: 46px;
  width: 120px;
  @media (width >= 64rem) {
    height: 54px;
  }
}
.woocommerce div.product form.cart .variations {
  margin-bottom: 0;
}
.variations th.label {
  text-align: left;
  padding-bottom: 20px;
  width: 90px;
  font-size: 16px;
  @media (width >= 64rem) {
    font-size: 19px;
  }
}
.variations td.value select {
  border: 2px solid var(--dark-gray);
  border-radius: 99px;
  padding-left: 15px;
}
.single_variation_wrap .woocommerce-variation-add-to-cart {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  row-gap: calc(var(--spacing) * 6);
}
.qty-label {
  text-align: left;
  width: 90px;
  font-weight: 700;
  font-size: 16px;
  @media (width >= 64rem) {
    font-size: 19px;
  }
}
.woocommerce div.product p.stock {
  color: var(--dark-gray);
  font-weight: 700;
  margin-bottom: calc(var(--spacing) * 4);
  font-size: 16px;
  @media (width >= 64rem) {
    font-size: 19px;
  }
}
.wc-block-cart__submit-container .wc-block-components-button:not(.is-link) {
  display: inline-block;
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  padding: 15px 35px;
  border-radius: 99px;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--dark-gray);
  font-size: 16px;
  @media (width >= 64rem) {
    font-size: 20px;
  }
}
.wc-block-cart__submit-container .wc-block-components-button:not(.is-link):hover {
  color: var(--dark-gray);
  border-color: var(--dark-gray);
  background-color: var(--light-gray);
}
.wc-block-checkout__actions .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
  display: inline-block;
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  padding: 15px 35px;
  border-radius: 99px;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--dark-gray);
  font-size: 16px;
  @media (width >= 64rem) {
    font-size: 20px;
  }
}
.wc-block-checkout__actions .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button:hover {
  color: var(--dark-gray);
  border-color: var(--dark-gray);
  background-color: var(--light-gray);
}
.wc-block-checkout__actions .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button .wc-block-components-checkout-place-order-button__text {
  justify-content: center;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-style: normal;
  color: var(--dark-gray);
  font-size: 16px;
  @media (width >= 64rem) {
    font-size: 25px;
  }
}
.content-home-section-container {
  padding: 125px 30px 115px 30px;
}
.content-home-section p {
  margin-bottom: calc(var(--spacing) * 8);
}
.slider-link-container > div {
  flex-direction: row !important;
  justify-content: flex-start !important;
  gap: 25px;
}
.slider-link-container > div > div {
  width: auto !important;
}
.homepage-slide-overlay-row > div > div {
  justify-content: center;
}
.slider-link-active > div > div {
  color: var(--red) !important;
}
.homepage-banner .n2-ss-control-bullet {
  display: flex;
  visibility: visible !important;
  background-color: var(--dark-gray);
}
.homepage-banner .n2-ss-control-bullet > div {
  max-width: 1670px;
}
.homepage-banner .n2-bullet {
  display: flex;
  align-items: center;
  gap: 18px;
}
.homepage-banner .n2-ss-slider .n2-ow-all .n2-bullet:not(i)::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--white);
}
.equipment-supplies-section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 30px 150px 30px;
}
.equipment-supplies-section-container .equipment-supplies-section {
  h2 {
    color: var(--dark-gray);
    margin-bottom: calc(var(--spacing) * 8);
    font-size: 59px;
    --tw-leading: 59px;
    line-height: 59px;
    text-transform: uppercase;
    @media (width >= 64rem) {
      font-size: 88px;
    }
    @media (width >= 64rem) {
      --tw-leading: 88px;
      line-height: 88px;
    }
  }
}
.equipment-slider .n2-ss-slider .n2-ss-layer-with-background {
  transition: all 0s !important;
}
.equipment-slider .n2-ss-layer-col:hover {
  background-color: RGBA(0, 0, 0, 0.71);
}
.equipment-slider .n2-ss-layer-col:hover .n2-ss-item-content {
  color: var(--white) !important;
  background-color: var(--dark-gray) !important;
}
.supplies-slider .n2-ss-slider .n2-ss-layer-with-background {
  transition: all 0s !important;
}
.supplies-slider .n2-ss-layer-col:hover {
  background-color: #1D1D1D;
}
.supplies-slider .n2-ss-layer-col:hover .n2-ss-item-content, .supplies-slider .n2-ss-layer-col:hover .n2-ss-item-content p {
  color: var(--white) !important;
}
.supplies-slider .n2-ss-layer-col:hover .n2-ss-button-container a {
  color: var(--white) !important;
  border-color: var(--white) !important;
}
.featured-section-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  margin-bottom: 50px;
  padding-inline: 30px;
  @media (width >= 64rem) {
    margin-bottom: 115px;
  }
  @media (width >= 64rem) {
    padding-inline: calc(var(--spacing) * 0);
  }
  .featured-section {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: calc(var(--spacing) * 12);
    padding-right: calc(var(--spacing) * 0);
    @media (width >= 64rem) {
      flex-direction: row;
    }
    @media (width >= 64rem) {
      padding-right: 130px;
    }
    .featured-section-image {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: center;
      @media (width >= 64rem) {
        width: calc(1/2 * 100%);
      }
    }
    .featured-content {
      border-top: 3px dotted var(--dark-gray);
      border-bottom: 3px dotted var(--dark-gray);
      width: 100%;
      padding-top: 70px;
      padding-bottom: 75px;
      @media (width >= 64rem) {
        width: calc(1/2 * 100%);
      }
      @media (width >= 64rem) {
        padding-top: 85px;
      }
      @media (width >= 64rem) {
        padding-bottom: 77px;
      }
      h2 {
        font-family: "Space Mono", monospace;
        font-weight: 800;
        margin-bottom: calc(var(--spacing) * 2);
        font-size: 19px;
        --tw-leading: 34px;
        line-height: 34px;
        @media (width >= 64rem) {
          font-size: 25px;
        }
        @media (width >= 64rem) {
          --tw-leading: 37px;
          line-height: 37px;
        }
      }
      h3 {
        margin-bottom: calc(var(--spacing) * 8);
        font-size: 59px;
        --tw-leading: 59px;
        line-height: 59px;
        text-transform: uppercase;
        @media (width >= 64rem) {
          font-size: 88px;
        }
        @media (width >= 64rem) {
          --tw-leading: 88px;
          line-height: 88px;
        }
      }
      .featured-product-description {
        margin-bottom: 70px;
      }
    }
  }
}
.promo-section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 150px 30px;
  background: var(--light-gray);
}
.promo-section-container .promo-section h2 {
  color: var(--white);
  margin-bottom: calc(var(--spacing) * 18);
  font-size: 59px;
  --tw-leading: 59px;
  line-height: 59px;
  text-transform: uppercase;
  @media (width >= 64rem) {
    font-size: 88px;
  }
  @media (width >= 64rem) {
    --tw-leading: 88px;
    line-height: 88px;
  }
}
.promo-section-container .promo-section .promos {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: calc(var(--spacing) * 12);
  @media (width >= 64rem) {
    flex-direction: row;
  }
}
.promo-section-container .promo-section .promos a {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-align: center;
  background-color: var(--dark-gray);
  background-size: cover;
  background-position: center;
  height: 182px;
  width: 100%;
  padding-inline: 40px;
  font-size: 33px;
  --tw-leading: 44px;
  line-height: 44px;
  @media (width >= 64rem) {
    height: 395px;
  }
  @media (width >= 64rem) {
    width: calc(1/2 * 100%);
  }
  @media (width >= 64rem) {
    font-size: 59px;
  }
  @media (width >= 64rem) {
    --tw-leading: 71px;
    line-height: 71px;
  }
}
.promo-section-container .promo-section .promos a span {
  padding: 30px;
}
.promo-section-container .promo-section .promos a h3 {
  position: relative;
  display: flex;
  padding: 0 10px;
  z-index: 100;
  background: var(--white);
}
.promo-section-container .promo-section .promos a:hover h3 {
  color: var(--white);
  background: var(--dark-gray);
}
.promo-section-container .promo-section .promos a:hover .overlay {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.71;
  z-index: 0;
}
.home-section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 150px 30px;
  background: var(--dark-gray);
}
.home-section-container .home-section h2 {
  color: var(--white);
  margin-bottom: calc(var(--spacing) * 8);
  font-size: 59px;
  --tw-leading: 59px;
  line-height: 59px;
  text-transform: uppercase;
  @media (width >= 64rem) {
    font-size: 88px;
  }
  @media (width >= 64rem) {
    --tw-leading: 88px;
    line-height: 88px;
  }
}
.home-section-container .home-section .home-section-columns {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: calc(var(--spacing) * 12);
  color: var(--white);
  @media (width >= 64rem) {
    flex-direction: row;
  }
}
.home-section-container .home-section .home-section-columns .column {
  width: 100%;
  @media (width >= 64rem) {
    width: calc(1/2 * 100%);
  }
}
.home-section-container .home-section .home-section-columns .column p {
  margin-bottom: calc(var(--spacing) * 8);
}
#footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.footer-cta-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--red);
  padding-inline: 30px;
  padding-block: 73px;
  @media (width >= 64rem) {
    padding-block: 50px;
  }
}
.footer-cta {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: calc(var(--spacing) * 11);
  @media (width >= 64rem) {
    flex-direction: row;
  }
  @media (width >= 64rem) {
    align-items: center;
  }
  @media (width >= 64rem) {
    gap: calc(var(--spacing) * 4);
  }
}
.footer-cta h4 {
  text-transform: uppercase;
  color: var(--white);
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-style: normal;
  font-size: 33px;
  --tw-leading: 33px;
  line-height: 33px;
  @media (width >= 64rem) {
    font-size: 59px;
  }
  @media (width >= 64rem) {
    --tw-leading: 59px;
    line-height: 59px;
  }
}
.footer-bottom-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--light-gray);
  padding-inline: 30px;
  padding-block: 73px;
  @media (width >= 64rem) {
    padding-block: 73px;
  }
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: calc(var(--spacing) * 12);
  @media (width >= 64rem) {
    flex-direction: row;
  }
  @media (width >= 64rem) {
    gap: calc(var(--spacing) * 8);
  }
}
.footer-nav ul {
  font-weight: bold;
  text-transform: uppercase;
  columns: 2;
  flex-wrap: wrap;
  gap: calc(var(--spacing) * 8);
  @media (width >= 64rem) {
    display: flex;
  }
}
.footer-nav ul li {
  margin-bottom: calc(var(--spacing) * 4);
  @media (width >= 64rem) {
    margin-bottom: calc(var(--spacing) * 0);
  }
}
.footer-nav ul ul.sub-menu {
  display: none;
}
.footer-branding, .footer-info {
  width: 100%;
  @media (width >= 64rem) {
    width: calc(1/2 * 100%);
  }
}
.footer-branding img {
  width: 228px;
  @media (width >= 64rem) {
    width: 413px;
  }
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing) * 11);
}
.footer-tagline {
  font-size: 25px;
  --tw-leading: 37px;
  line-height: 37px;
  @media (width >= 64rem) {
    font-size: 33px;
  }
  @media (width >= 64rem) {
    --tw-leading: 49px;
    line-height: 49px;
  }
}
.footer-info-contact p {
  font-size: 18px;
}
.footer-contact-link {
  display: inline-block;
  border-radius: calc(infinity * 1px);
  border-style: var(--tw-border-style);
  border-width: 1px;
  border-color: var(--dark-gray);
  padding-inline: 30px;
  padding-block: 10px;
  &:hover {
    @media (hover: hover) {
      background-color: var(--dark-gray);
    }
  }
  &:hover {
    @media (hover: hover) {
      color: var(--white);
    }
  }
  @media (width >= 64rem) {
    --tw-border-style: none;
    border-style: none;
  }
  @media (width >= 64rem) {
    padding-inline: calc(var(--spacing) * 0);
  }
  @media (width >= 64rem) {
    padding-block: calc(var(--spacing) * 0);
  }
  @media (width >= 64rem) {
    &:hover {
      @media (hover: hover) {
        background-color: transparent;
      }
    }
  }
  @media (width >= 64rem) {
    &:hover {
      @media (hover: hover) {
        color: var(--dark-gray);
      }
    }
  }
}
.footer-info-contact strong {
  @media (width >= 64rem) {
    text-transform: uppercase;
  }
}
.footer-info-contact span {
  display: none;
  @media (width >= 64rem) {
    display: inline-block;
  }
}
.footer-info-contact span.email-text {
  display: none;
  @media (width >= 64rem) {
    display: inline-block;
  }
}
@property --tw-leading {
  syntax: "*";
  inherits: false;
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-leading: initial;
      --tw-border-style: solid;
    }
  }
}
