@charset "UTF-8";
/*
Theme Name: BossTek 2026
Author:  Central States Marketing
Author URI:
Description: This site was built by Central States Marketing
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bosstek
*/
/***************************************
TABLE OF CONTENTS

01 - BASE
      - Reset
      - Colors
      - Sizing
      - Typography
02 - UTILITIES
      - Variables
      - Helpers
03 - COMPONENTS
      - Buttons
      - Icons
      - Animations
04 - LAYOUT
      - Layout
      - Header
      - Footer
05 - PAGES
      - Home
      - Inside Pages
06 - PLUGINS

***************************************/
/*-------------------------------------
  01 - BASE - BASE - BASE - BASE - BASE
--------------------------------------*/
/* ----- RESET ----- */
/*
  HTML / Body
*/
html {
  scroll-behavior: smooth;
}

body {
  background: var(--black-light);
  font-family: var(--primary-font);
  -webkit-text-size-adjust: none;
  line-height: 1.6;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--bg-gradient);
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

* {
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

:after,
:before {
  box-sizing: border-box;
}

button {
  border: none;
  box-shadow: none;
  background: none;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

hr {
  height: 3px;
  margin: 2rem 0;
  border: none;
  background: var(--black-60);
}

/* ----- COLORS ----- */
/*
 Colors / Typography @ root
*/
:root {
  /*
    Neutral Colors
  */
  --black-dk: #242424;
  --black: #333;
  --black-20: #4f4f4f;
  --black-40: #828282;
  --black-60: #bdbdbd;
  --white-60: #e0e0e0;
  --white-40: #f2f2f2;
  --white-20: #f5f4f6;
  --white: #fff;
  /*
    Site Specific Color Palette (OKLCH)
  */
  --red: oklch(0.5857 0.1841 35.5);
  --grey: oklch(0.683 0 0);
  --grey-light: oklch(0.8452 0 0);
  --black-light: oklch(0.3012 0 0);
  --black: oklch(0 0 0);
  --white: oklch(1 0 0);
  --primary-font-color: var(--grey);
  /*
    additional color variables
  */
  --bg-gradient: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  --fade-bottom-mask: linear-gradient(180deg, transparent 0%, black 100%);
  /*
    Global Font Colors
  */
  --primary-color: var(--primary-font-color);
  --h-color: var(--white);
  --p-color: var(--primary-font-color);
  --nav-color: var(--white);
  --accent-color: var(--white);
}

/* ----- SIZING ----- */
/*
    Global Sizing (widths, paddings, etc)
*/
:root {
  --wrapper-max-width--lg: 1550px;
  --wrapper-max-width: 1400px;
  --wrapper-max-width--med: 1200px;
  --wrapper-max-width--sm: 1000px;
  --wrapper-max-width--x-sm: 800px;
}

html {
  /* Gap */
  --gap: 2rem;
  --neg-gap: 2rem;
  /* Fluid Gap */
  --gap-fluid: 5vw;
  --neg-gap-fluid: -5vw;
}
@media (max-width: 1500px) {
  html {
    --gap-fluid: 2rem;
    --neg-gap-fluid: -2rem;
  }
}
@media (min-width: 2000px) {
  html {
    --gap-fluid: 10vw;
    --neg-gap-fluid: -10vw;
  }
}
@media (min-width: 3000px) {
  html {
    --gap-fluid: 15vw;
    --neg-gap-fluid: -15vw;
  }
}
@media (min-width: 3500px) {
  html {
    --gap-fluid: 20vw;
    --neg-gap-fluid: -20vw;
  }
}

/* ----- TYPOGRAPHY ----- */
/*
  Responsive font sizing
*/
html {
  font-size: 16px;
}

/*
    Global Font Sizing
*/
:root {
  /* Fluid type scale */
  --fs-xs: clamp(0.7rem, 0.12vi + 0.67rem, 0.78rem);
  --fs-sm: clamp(0.8rem, 0.15vi + 0.77rem, 0.9rem);
  --fs-base: clamp(0.94rem, 0.34vi + 0.86rem, 1.12rem);
  --fs-md: clamp(1.18rem, 0.61vi + 1.03rem, 1.49rem);
  --fs-lg: clamp(1.47rem, 1vi + 1.24rem, 1.99rem);
  --fs-xl: clamp(1.84rem, 1.56vi + 1.47rem, 2.65rem);
  --fs-xxl: clamp(2.3rem, 2.38vi + 1.74rem, 3.53rem);
  --fs-xxxl: clamp(2.87rem, 3.54vi + 2.04rem, 4.7rem);
}

/*
    Global Font Styles
*/
:root {
  --primary-font: "Figtree", sans-serif;
  --h-font: "Figtree", sans-serif;
  --btn-font: "Figtree", sans-serif;
  --p-font: "Figtree", sans-serif;
  --nav-font: "Figtree", sans-serif;
  --accent-font: "Figtree", sans-serif;
}

/*
  Headings
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--h-font);
  color: var(--h-color);
  margin: 0 0 1rem;
  line-height: 1;
  text-wrap: balance;
}

h1,
.h1 {
  font-size: var(--fs-xxl);
  text-rendering: optimizeLegibility;
  font-weight: 500;
  color: var(--h-color);
}

h2,
.h2 {
  font-size: var(--fs-xl);
  font-weight: 500;
}

h3,
.h3 {
  font-size: var(--fs-lg);
  font-weight: 500;
}

h4,
.h4 {
  font-size: var(--fs-md);
  font-weight: 500;
}

h5,
.h5 {
  font-size: var(--fs-base);
  font-weight: 500;
}

h6,
.h6 {
  font-size: var(--fs-sm);
  font-weight: 400;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-family: inherit;
  color: inherit;
  text-decoration: none;
}

h1 a:focus,
h1 a:hover,
h2 a:focus,
h2 a:hover,
h3 a:focus,
h3 a:hover,
h4 a:focus,
h4 a:hover,
h5 a:focus,
h5 a:hover,
h6 a:focus,
h6 a:hover {
  opacity: 0.65;
}

.content h1 {
  text-transform: unset;
}

.content h2 {
  text-transform: unset;
}

.content h3 {
  text-transform: unset;
}

.content h4 {
  text-transform: unset;
}

.content h5 {
  text-transform: unset;
}

.content h6 {
  text-transform: unset;
}

.content h1 a,
.content h2 a,
.content h3 a,
.content h4 a,
.content h5 a,
.content h6 a {
  color: inherit;
  text-decoration: none;
}

.content h1 a:focus,
.content h1 a:hover,
.content h2 a:focus,
.content h2 a:hover,
.content h3 a:focus,
.content h3 a:hover,
.content h4 a:focus,
.content h4 a:hover,
.content h5 a:focus,
.content h5 a:hover,
.content h6 a:focus,
.content h6 a:hover {
  opacity: 0.88;
}

/*
  Links - Global --------------------
*/
a {
  font-family: var(--primary-font);
  font-size: inherit;
  color: inherit;
}
a:hover, a:focus {
  opacity: 0.7;
}

.content a:not(.btn, .button) {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 0.1rem;
  text-underline-offset: 0.2rem;
}

.content a:hover:not(.btn, .button),
.content a:focus:not(.btn, .button) {
  opacity: 0.65;
}

/*
  Text --------------------
*/
/*
  Content class global styles
*/
.content {
  font-family: var(--p-font);
  font-style: normal;
  font-size: var(--fs-base);
  color: var(--p-color);
}

/*
  Paragraph text
*/
p {
  margin-bottom: 1.5rem;
}

p:not(.content *) {
  font-family: var(--p-font);
  color: var(--p-color);
  font-size: var(--fs-base);
  margin-bottom: 1.5rem;
}
p:not(.content *)::-moz-selection {
  background-color: var(--black-60);
  color: white;
}
p:not(.content *)::selection {
  background-color: var(--black-60);
  color: white;
}

/*
  UL / OL Lists
*/
ul li a,
ol li a {
  font-family: var(--primary-font);
  color: var(--primary-font-color);
  font-size: var(--fs-base);
  margin-bottom: 0.5rem;
}

.content ul,
.post-content ul {
  padding: 0 0 1.5rem 40px;
}

.content ul li,
.post-content ul li {
  list-style: disc;
}

/*
  Span
*/
span {
  font-family: var(--primary-font);
}

/*
  Bold Text
*/
b {
  font-weight: 700;
}

strong {
  font-weight: 700;
}

/*
  Accent Text
*/
.accent {
  display: inline-block;
  font-family: var(--accent-font);
  font-size: 0.95rem;
  color: var(--accent-color);
  border-bottom: 0.65px solid rgba(255, 255, 255, 0.5);
  -webkit-padding-after: 1.25rem;
          padding-block-end: 1.25rem;
  -webkit-margin-after: 3rem;
          margin-block-end: 3rem;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/*-------------------------------------
  02 - UTILITIES UTILITIES UTILITIES
--------------------------------------*/
/* ----- VARIABLES ----- */
/*
  Random Custom Properties
*/
:root {
  /* Transitions */
  --transition: all 0.2s cubic-bezier(0.47, 0, 0.745, 0.715);
  /* Border-radius */
  --radius: 15px;
}

/* ----- HELPERS ----- */
/*
  Helper classes
*/
/*
  Remove / Show content
*/
.hide {
  display: none;
}

.show {
  display: block;
}

/*
  Margin / Padding Resets / Adjustments
*/
.no-margin {
  margin: 0;
}

.no-padding {
  padding: 0;
}

.no-border {
  border: none;
}

.intro-push-up {
  margin-top: -200px;
}

/*
  Shadows
*/
.header-shadow {
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
}

/*
  PAGINATION STYLES for WP
*/
.pagination {
  clear: both;
  padding: 20px 0;
  position: relative;
  font-size: 11px;
  line-height: 13px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.pagination span,
.pagination a {
  display: block;
  float: left;
  margin: 2px 2px 2px 0;
  padding: 6px 9px 5px 9px;
  text-decoration: none;
  width: auto;
  color: #666 !important;
  background: #d5d5d5;
}

.pagination a:hover {
  color: #fff !important;
  background: #000;
}

.pagination span {
  background: #666;
  color: #fff !important;
}

.pagination .current {
  padding: 6px 9px 5px 9px;
  background: #000;
  color: #fff !important;
}

/*
  SEARCH RESULTS STYLES for WP
*/
.search-results h1 {
  font-size: 1.2rem;
}

/*
  BREADCRUMBS (Yoast)
*/
#breadcrumbs {
  margin: 0;
  list-style: none;
  border-radius: 4px;
}

#breadcrumbs a {
  color: var(--black-20);
  text-decoration: none;
}
#breadcrumbs a:hover {
  color: var(--white-60);
}

/*
  Full Bleed Utility
*/
/* For single elemens that need to be full-width */
.full-bleed {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.overflow-x {
  overflow-x: clip;
}

/*
  Accessibility
*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 100000;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.75rem 1.5rem;
  -webkit-clip-path: none;
          clip-path: none;
  background: var(--red);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  white-space: normal;
}

/*-------------------------------------
  03 - COMPONENTS COMPONENTS COMPONENTS
--------------------------------------*/
/* ----- BUTTONS ----- */
/*
  Buttons
*/
.btn,
a.btn,
.wp-block-button__link,
input[type=submit]:not(.search-form),
.gform_button,
.kb-button {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  border-radius: 0;
  padding: 1rem 1.6rem;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  font-size: var(--fs-base);
  text-decoration: none;
  line-height: 1.1;
  cursor: pointer;
  text-align: center;
  transition: none !important;
  position: relative;
}
.btn::after,
a.btn::after,
.wp-block-button__link::after,
input[type=submit]:not(.search-form)::after,
.gform_button::after,
.kb-button::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 0.5rem;
  margin-bottom: 5px;
  vertical-align: middle;
  background-color: var(--white);
  -webkit-mask: url("img/icons/icon-arrow-white-45.svg") center/contain no-repeat;
          mask: url("img/icons/icon-arrow-white-45.svg") center/contain no-repeat;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.btn:hover, .btn:focus,
a.btn:hover,
a.btn:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus,
input[type=submit]:not(.search-form):hover,
input[type=submit]:not(.search-form):focus,
.gform_button:hover,
.gform_button:focus,
.kb-button:hover,
.kb-button:focus {
  background: var(--white);
  color: var(--red);
  opacity: 1;
}
.btn:hover::after, .btn:focus::after,
a.btn:hover::after,
a.btn:focus::after,
.wp-block-button__link:hover::after,
.wp-block-button__link:focus::after,
input[type=submit]:not(.search-form):hover::after,
input[type=submit]:not(.search-form):focus::after,
.gform_button:hover::after,
.gform_button:focus::after,
.kb-button:hover::after,
.kb-button:focus::after {
  background-color: var(--red);
  transform: translate(2px, -2px);
}
.btn.kb-button::after,
a.btn.kb-button::after,
.wp-block-button__link.kb-button::after,
input[type=submit]:not(.search-form).kb-button::after,
.gform_button.kb-button::after,
.kb-button.kb-button::after {
  content: none;
}

.kb-button {
  font-size: var(--fs-base);
}

.btn.btn--ghost {
  background: unset;
  border: 1px solid var(--white);
}
.btn.btn--ghost:hover, .btn.btn--ghost:focus {
  background: var(--red);
  opacity: 1;
}

.btn-full {
  width: 100%;
  margin: 0 0 10px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-group > * {
  flex: 1; /*  */
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.btn-center {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/*
  Links - Text links similar to buttons
*/
/*
  Arrow Link
*/
.arrow-link {
  color: var(--white);
  position: relative;
}
.arrow-link::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 0.5rem;
  margin-bottom: 5px;
  vertical-align: middle;
  background-color: var(--red);
  -webkit-mask: url("img/icons/icon-arrow-red-45.svg") center/contain no-repeat;
          mask: url("img/icons/icon-arrow-red-45.svg") center/contain no-repeat;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.arrow-link:hover, .arrow-link:focus {
  color: var(--red);
  opacity: 1;
}
.arrow-link:hover::after, .arrow-link:focus::after {
  background-color: var(--white);
  opacity: 1;
  transform: translate(2px, -2px);
}

/* ----- ICONS ----- */
/*
  Icons
*/
/*
  Icon before text
*/
.icon-before {
  position: relative;
}
.icon-before::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 15px;
  margin-bottom: 5px;
  vertical-align: middle;
  background: url("img/icon-arrow-right.svg") center no-repeat;
}

/*
  Icon after text
*/
.icon-after {
  position: relative;
}
.icon-after::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 15px;
  margin-bottom: 5px;
  vertical-align: middle;
  background-color: var(--red);
  -webkit-mask: url("img/icons/icon-arrow-red.svg") center/contain no-repeat;
          mask: url("img/icons/icon-arrow-red.svg") center/contain no-repeat;
}
.icon-after:hover::after, .icon-after:focus::after {
  background-color: var(--white);
  opacity: 1;
}

/*
  Social Icons
*/
/* ----- ANIMATIONS ----- */
/*
  Animations
*/
/* ----- BLOG FEED ----- */
.blog-feed .blog-feed-slider {
  position: relative;
  padding-bottom: 2.5rem;
}
.blog-feed .blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--white);
  height: 100%;
}
.blog-feed .blog-card:hover img {
  transform: scale(1.03);
}
.blog-feed .blog-card > img {
  border-radius: var(--radius);
  width: 100%;
  max-height: 425px;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.blog-feed .blog-card h3 a {
  color: var(--white);
  text-decoration: none;
}
.blog-feed .blog-card h3 a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}
.blog-feed .blog-card-date {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white-60);
}
.blog-feed .blog-card h3 {
  font-size: var(--fs-base);
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}
.blog-feed .blog-card p {
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--grey);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-feed .blog-card-link {
  margin-top: auto;
  align-self: flex-start;
  position: relative;
  z-index: 2;
  pointer-events: none;
  transition: background 0.2s ease;
}
.blog-feed .blog-card-link::after {
  background-color: var(--red);
}
.blog-feed .blog-card:hover .blog-card-link {
  background: oklch(from var(--red) l c h/0.5);
  color: var(--white);
}

@media (max-width: 650px) {
  .blog-feed .blog-feed-header {
    grid-template-columns: 1fr;
  }
}
/*-------------------------------------
  04 - LAYOUT LAYOUT LAYOUT LAYOUT LAYOUT
--------------------------------------*/
/* ----- LAYOUT ----- */
/*
  wrappers - wraps large sections of content for uniform vertical alignment --------------------
*/
/* Creates a wrapper around main sections of content */
.wrapper {
  margin: 0 auto;
  padding: 0 var(--gap);
  max-width: var(--wrapper-max-width);
}

.wrapper.wrapper--lg {
  max-width: var(--wrapper-max-width--lg);
}

.wrapper.wrapper--med {
  max-width: var(--wrapper-max-width--med);
}

.wrapper.wrapper--sm {
  max-width: var(--wrapper-max-width--sm);
}

.wrapper.wrapper--x-sm {
  max-width: var(--wrapper-max-width--x-sm);
}

/* Removes max-width for larger-fluid design */
.wrapper-fluid {
  margin: 0 auto;
  padding: 0 var(--gap-fluid);
}

/*
  Grid Layouts
*/
.grid-auto-1 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
}

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

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

@media (max-width: 800px) {
  .grid-auto-1 {
    grid-template-columns: 1fr;
  }
}
/*
  Flex Layouts
*/
.flex-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.flex-group > * {
  flex: 1; /*  */
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

/*
  Sections  - generally affect vertical spacing
*/
/* used for normal section to create space between */
.section {
  margin-bottom: 4rem;
}

.section-sm {
  margin-bottom: 3rem;
}

/* used for section within another block or section */
.section-block {
  margin-bottom: 2rem;
}

/* used to create space within a section when 2 sections touch eachother
     eg: 2 sections with diff bg colors */
.section-spacer {
  padding-block: 4rem;
}

.section-spacer-sm {
  padding-block: 3rem;
}

.section-spacer-lg {
  padding-block: 6rem;
}

/* used to center section inside parent element as well as center align the text */
.section-centered {
  text-align: center;
  display: flex;
  justify-content: center;
}

.section-prefooter {
  margin-bottom: 7rem;
}

.section-title {
  margin-bottom: 2rem;
}

.section-subtitle {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

/*
  Section Headers
*/
.header {
  margin-bottom: 3rem;
  text-align: center;
}

/*
  Alignment
*/
.align-left {
  text-align: left;
}

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

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

/*
  Text Blocks
*/
.text-block {
  margin: 0 0 3rem;
}

.text-block-narrow {
  margin: 0 0 3rem;
  /* Adjust max-width as needed */
  max-width: 43rem;
}

.text-block-center {
  margin: 0 auto 3rem;
  /* Adjust max-width as needed or eliminate if already in a parent container */
  max-width: 43rem;
}

/*
  Full Width
*/
/* Breaks out of wrapper for full-width content - extending bg color for example*/
.full-width {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

body:has(.full-width) {
  overflow-x: hidden;
}

/* Kadence Blocks - adds back the 2rem inline pad needed */
.full-width .kt-row-column-wrap .kb-row-layout-wrap .kt-row-column-wrap {
  padding-inline: 2rem;
}
/* Kadence Blocks - when using the full-width class this fixes extra padding */
.full-width.kt-row-has-bg > .kt-row-column-wrap {
  padding-inline: 0;
}

/* ----- SITE HEADER ----- */
/*
  Alert - ACF Option - Site Settings in Admin bar
*/
.alert {
  padding-block: 10px;
  background: var(--white-40);
}

.alert .inner p {
  color: var(--black);
  font-weight: 700;
  margin: 0;
  text-align: center;
}

/*
  Site Header
*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.2) 65%, rgba(0, 0, 0, 0.08) 85%, rgba(0, 0, 0, 0.02) 95%, rgba(0, 0, 0, 0) 100%);
  transition: background 0.3s ease;
}
.site-header .inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0px 10px;
  align-items: center;
}
.site-header .main-logo {
  padding-block: 1.5rem;
  position: relative;
  z-index: 200;
}
.site-header .main-logo img {
  width: 175px;
}

/* Add styles here to shrink down header after scroll */
.site-header.shrink {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.92) 50%, rgba(0, 0, 0, 0.85) 80%, rgba(0, 0, 0, 0.75) 100%);
}

/*
  Main Navigation
*/
.main-nav {
  height: 100%;
}
.main-nav > ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.main-nav > ul > li {
  display: flex;
  align-items: center;
  margin-inline: 1.8%;
  height: 100%;
  position: relative;
}
.main-nav > ul > li > a {
  display: inline-block;
  font-family: var(--nav-font);
  font-size: var(--fs-base);
  color: var(--nav-color);
  padding: 3px 10px 3px 10px;
  margin-bottom: 0;
  text-transform: uppercase;
  position: relative;
}
.main-nav > ul > li > a:hover, .main-nav > ul > li > a:focus {
  color: var(--red);
  opacity: 1;
}
.main-nav > ul > li:last-of-type a {
  background: var(--red);
  padding: 0.8rem 1.4rem;
  color: var(--white);
}
.main-nav > ul > li:last-of-type a:hover {
  background: var(--white);
  color: var(--red);
  opacity: 1;
}
.main-nav > ul > li.menu-item-has-children:hover > a {
  color: var(--red);
}

/*
  Dropdown area
*/
/* second level */
.main-nav ul ul {
  margin: 0;
  position: absolute;
  padding: 0;
  top: 100%;
  left: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: auto;
  background-color: var(--black-light);
  box-shadow: 0 12px 22px 5px rgba(255, 255, 255, 0.08), 0 12px 28px rgba(0, 0, 0, 0.25), 0 2px 4px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  z-index: 99999 !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px) scale(0.98);
  transform-origin: top center;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}

.main-nav ul li:hover > ul,
.main-nav ul li:focus-within > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.main-nav ul ul li {
  margin: 0;
  height: auto;
}

.main-nav ul ul li:hover {
  background: var(--tan);
}
.main-nav ul ul li:hover a {
  color: var(--white);
  opacity: 1;
}

.main-nav ul ul li.menu-item-has-children:hover > a {
  color: var(--red);
}

.main-nav ul ul li a {
  display: block;
  color: var(--white);
  padding: 0.75rem 1.5rem;
  margin-bottom: 0;
  text-align: left;
  font-size: 0.8rem;
  text-align: left;
  text-transform: uppercase;
}
.main-nav ul ul li a:hover, .main-nav ul ul li a:focus {
  color: var(--red);
  opacity: 1;
}

.main-nav ul ul li:first-of-type {
  position: relative;
}

/* third level */
.main-nav ul ul ul {
  top: 0;
  left: 100%;
  margin-top: 0;
  transform: translateX(-3px);
  transform-origin: left center;
}

.main-nav ul ul li:hover > ul,
.main-nav ul ul li:focus-within > ul {
  transform: translateX(0);
}

/* End Dropdown area */
/*
  MOBILE-MENU-ICON / MOBILE SEARCH ICON
*/
/*
  Search Trigger Icon
*/
.search-trigger {
  display: inline-block;
  padding: 5px 5px 5px 5px;
  width: 25px;
  height: 30px;
  background: url("img/icon-search.svg") center/100% no-repeat;
  cursor: pointer;
}

/*
  Mobile Menu Icon
*/
.menu-icon {
  cursor: pointer;
  display: none;
  z-index: 6000;
}
.menu-icon span {
  display: block;
  width: 30px;
  height: 3px;
  margin-block: 9px;
  background: var(--red);
  transition: var(--transition);
}

.site-header .inner:has(.mobile-nav.open) .menu-icon span {
  background: var(--red);
}

.site-header .inner:has(.mobile-nav.open) .menu-icon span:nth-of-type(1) {
  transform: translate(0, 12px) rotate(-45deg);
}

.site-header .inner:has(.mobile-nav.open) .menu-icon span:nth-of-type(2) {
  opacity: 0;
}

.site-header .inner:has(.mobile-nav.open) .menu-icon span:nth-of-type(3) {
  transform: translate(0, -12px) rotate(45deg);
}

/*
  Mobile Navigation
*/
.mobile-nav {
  display: grid;
  justify-items: start;
  align-items: start;
  gap: 1rem;
  padding: 2rem;
  margin-bottom: 3rem;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: var(--black);
  opacity: 0;
  visibility: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  z-index: 100;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
}

.mobile-nav .mobile-logo img {
  width: 175px;
}

.mobile-nav nav {
  align-self: start;
  width: 100%;
  margin-top: 3rem;
  padding-bottom: 5rem;
}

/* First level */
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mobile-nav ul li {
  text-align: left;
  margin-bottom: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav.open ul > li {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav.open ul > li:nth-child(1) {
  transition-delay: 0.06s;
}
.mobile-nav.open ul > li:nth-child(2) {
  transition-delay: 0.12s;
}
.mobile-nav.open ul > li:nth-child(3) {
  transition-delay: 0.18s;
}
.mobile-nav.open ul > li:nth-child(4) {
  transition-delay: 0.24s;
}
.mobile-nav.open ul > li:nth-child(5) {
  transition-delay: 0.3s;
}
.mobile-nav.open ul > li:nth-child(6) {
  transition-delay: 0.36s;
}
.mobile-nav.open ul > li:nth-child(7) {
  transition-delay: 0.42s;
}
.mobile-nav.open ul > li:nth-child(8) {
  transition-delay: 0.48s;
}
.mobile-nav.open ul > li:nth-child(9) {
  transition-delay: 0.54s;
}
.mobile-nav.open ul > li:nth-child(10) {
  transition-delay: 0.6s;
}
.mobile-nav.open ul > li:nth-child(11) {
  transition-delay: 0.66s;
}
.mobile-nav.open ul > li:nth-child(12) {
  transition-delay: 0.72s;
}

.mobile-nav > nav > ul > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav a:hover,
.mobile-nav a:focus {
  opacity: 1;
}

.mobile-nav > nav > ul > li > a {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  padding: 0.9rem 1rem;
  padding-left: 1rem;
  text-transform: uppercase;
  position: relative;
  border-left: 3px solid var(--red);
  background: oklch(from var(--red) l c h/0.15);
}

/* Second level */
.mobile-nav ul ul {
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
}

.mobile-nav ul ul li {
  display: block;
  margin-bottom: 0;
  border-bottom: none;
}

.mobile-nav ul ul li a {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--white);
  padding: 0.55rem 1rem;
  text-transform: uppercase;
  border-left: 3px solid transparent;
  border-bottom: none;
}

/* Third level */
.mobile-nav ul ul ul {
  padding-left: 1rem;
}

.mobile-nav ul ul ul li a {
  font-size: 0.8rem;
  color: var(--white);
  padding: 0.45rem 1rem;
}
.mobile-nav ul ul ul li a::before {
  content: "—";
  margin-right: 0.5rem;
  color: var(--red);
}

.mobile-nav .btn {
  border: none;
  margin-bottom: 1rem;
}

/*
  WordPress Styles for Main-menu, mobile, and sidebar
*/
/* adds color to active link via wordpress class */
.main-nav .current_page_item > a,
.main-nav .current-menu-ancestor > a {
  background: var(--blue);
}

.mobile-nav .current_page_item > a,
.mobile-nav .current-menu-ancestor > a {
  color: var(--black-60);
}

/*
  Search Form
*/
.search-form {
  display: grid;
  grid-template-columns: 5fr auto;
  align-content: center;
  padding: 3px;
  right: 0;
  overflow: hidden;
  transition: var(--transition);
  z-index: 20;
}

.search-icon {
  width: 35px;
  height: 35px;
  background: url("img/icon-search.svg") center/60% no-repeat;
  cursor: pointer;
  border: none;
}

.search-box {
  border: 0;
  grid-column: 1/span 1;
  grid-row: 1;
  padding-left: 10px;
  font-size: 0.9rem;
  background: #fff;
  text-align: center;
}

input.search-box {
  color: var(--black-20);
  font-size: 0.8rem;
}

/*
  MOBILE RESPONSIVE MEDIA QUERIES - specific to general
    page layout at specific screen width
*/
@media (max-width: 1050px) {
  .main-nav {
    display: none;
  }
  .menu-icon {
    justify-self: end;
    align-self: center;
    display: inline-block;
  }
}
@media (min-width: 1050px) {
  .mobile-nav,
  .mobile-overlay {
    display: none;
  }
  .search-trigger {
    display: none;
  }
}
/* ----- SITE FOOTER ----- */
/*
  Site Footer
*/
/*
  SPECIALIST BANNER
*/
.specialist {
  position: relative;
  z-index: 0;
  -webkit-margin-after: 4rem;
          margin-block-end: 4rem;
}
.specialist .inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: url("img/bg-mist.png") no-repeat;
  padding: 6rem 4rem;
  border-radius: var(--radius);
}
.specialist h2 {
  font-size: clamp(2.75rem, 1.857rem + 2.381vw, 4rem);
  font-weight: 400;
  max-width: 25ch;
}
.specialist p {
  font-size: 1.5rem;
  color: var(--white);
}

/* Main Footer Area */
.site-footer {
  position: relative;
  overflow: hidden;
  padding-block: 5rem 1.5rem;
  border-top: 0.65px solid var(--grey);
  z-index: 0;
}
.site-footer .footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 340px) 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  -webkit-padding-after: 2.75rem;
          padding-block-end: 2.75rem;
}
.site-footer .footer-main .branding {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.site-footer .footer-main .branding .footer-logo {
  display: inline-flex;
  width: 135px;
  -webkit-margin-after: 2rem;
          margin-block-end: 2rem;
}
.site-footer .footer-main .branding .footer-logo img {
  width: 100%;
  height: auto;
}
.site-footer .footer-main .branding p {
  margin: 0;
  color: var(--grey);
  max-width: 30ch;
}
.site-footer .footer-main .branding .phone {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.site-footer .footer-main .branding .phone:hover, .site-footer .footer-main .branding .phone:focus {
  color: var(--white);
}
.site-footer .footer-main .footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  -webkit-padding-before: 1.5rem;
          padding-block-start: 1.5rem;
}
.site-footer .footer-main .footer-nav .col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-content: start;
}
.site-footer .footer-main .footer-nav .col .title {
  margin: 0 0 0.4rem 0;
  color: var(--grey);
  font-size: 0.95rem;
}
.site-footer .footer-main .footer-nav .col ul {
  margin: 0;
  padding: 0;
}
.site-footer .footer-main .footer-nav .col ul li {
  margin-bottom: 0.5rem;
}
.site-footer .footer-main .footer-nav .col ul li a {
  display: inline-block;
  color: var(--white-60);
  font-size: 0.95rem;
  line-height: 1.1;
}
.site-footer .footer-main .footer-nav .col ul li a:hover, .site-footer .footer-main .footer-nav .col ul li a:focus {
  color: var(--white);
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
}
.site-footer .footer-bottom p {
  margin: 0;
  color: var(--white);
  font-size: 0.75rem;
}

@media (max-width: 1000px) {
  .site-footer .footer-main {
    grid-template-columns: 1fr;
  }
  .site-footer .footer-main .branding p {
    max-width: 52ch;
  }
  .site-footer .footer-main .footer-nav {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    row-gap: 2rem;
  }
}
@media (max-width: 640px) {
  .site-footer .footer-phone {
    font-size: 1.6rem;
  }
  .site-footer .footer-nav {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }
}
/*-------------------------------------
  05 - PAGES PAGES PAGES PAGES PAGES
--------------------------------------*/
/* ----- HOME PAGE ----- */
/*
  HERO
*/
.hero {
  display: grid;
  align-items: center;
  justify-items: center;
  position: relative;
  overflow: clip;
/*   background: url("img/bg-hero-spray.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0% center; */
  min-height: 600px;
}
.hero .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}
.hero .top {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  width: 100%;
  padding-block: 9rem 5rem;
  z-index: 1;
}
.hero .top .hero-copy {
  color: var(--white);
}
.hero .top .hero-copy h1 {
  font-size: clamp(2.8rem, 1.229rem + 4.19vw, 5rem);
  font-weight: 700;
  text-wrap: pretty;
}
.hero .top .hero-copy h1 span {
  color: var(--red);
}
.hero .top .hero-copy p.subtitle {
  max-width: 55ch;
  color: var(--white);
}
.hero .top .hero-copy .btn {
  filter: drop-shadow(10px 8px 4px rgba(0, 0, 0, 0.7));
}
.hero .top .hero-copy .btn::after {
  content: "";
  -webkit-mask: url("img/icons/icon-white-triangle.svg") center/contain no-repeat;
          mask: url("img/icons/icon-white-triangle.svg") center/contain no-repeat;
}
.hero .top .hero-copy .btn:hover {
  filter: drop-shadow(8px 6px 4px rgba(0, 0, 0, 0.6));
}
.hero .partners {
  grid-row: 2;
  grid-column: 1/-1;
  align-self: end;
  width: 100%;
  -webkit-padding-after: 15rem;
          padding-block-end: 15rem;
  position: relative;
  overflow: hidden;
}
.hero .partners::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-gradient), var(--black-light);
  -webkit-mask-image: var(--fade-bottom-mask);
  mask-image: var(--fade-bottom-mask);
  pointer-events: none;
  z-index: 0;
}
.hero .partners > * {
  position: relative;
  z-index: 1;
}
.hero .partners p.accent {
  color: var(--white);
}
.hero .partners .logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}
.hero .partners .logos img {
  max-width: 150px;
  width: auto;
  opacity: 1;
  filter: grayscale(1) brightness(0.7) contrast(1.1);
}

@media (max-width: 800px) {
  .hero .top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .hero .top img {
    display: none;
  }
}
/*
  HOME PRODUCTS SECTION
*/
.product-carousel {
  padding-block: 1rem 3rem;
  margin-top: -6rem;
}
.product-carousel .product-carousel-slider {
  position: relative;
  padding-bottom: 2.5rem;
}
.product-carousel .product-carousel-slider .product-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem 2rem;
  align-items: start;
}
.product-carousel .product-carousel-slider .product-card .product-card-media {
  grid-column: 1;
  grid-row: 1/span 3;
  position: relative;
}
.product-carousel .product-carousel-slider .product-card .product-card-media .product-gallery {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
}
.product-carousel .product-carousel-slider .product-card .product-card-media .product-gallery-thumbs .splide__track {
  height: 146px;
}
.product-carousel .product-carousel-slider .product-card .product-card-media .product-gallery-thumbs .splide__slide {
  border: 1px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  opacity: 0.7;
  cursor: pointer;
}
.product-carousel .product-carousel-slider .product-card .product-card-media .product-gallery-thumbs .splide__slide.is-active {
  border-color: var(--white);
  opacity: 1;
}
.product-carousel .product-carousel-slider .product-card .product-card-media .product-gallery-thumbs .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-carousel .product-carousel-slider .product-card .product-card-media .product-gallery-main {
  position: relative;
}
.product-carousel .product-carousel-slider .product-card .product-card-media .product-gallery-main img {
  width: 100%;
  height: auto;
  max-width: 375px;
  margin-inline: auto;
}
.product-carousel .product-carousel-slider .product-card .product-card-media .product-gallery-main::before, .product-carousel .product-carousel-slider .product-card .product-card-media .product-gallery-main::after {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white-60);
  z-index: 2;
}
.product-carousel .product-carousel-slider .product-card .product-card-media .product-gallery-main::before {
  content: attr(data-meta-left);
  left: 0.25rem;
  bottom: 0.25rem;
  padding-right: 2.5rem;
  background: linear-gradient(var(--red), var(--red)) right center/2rem 2px no-repeat;
}
.product-carousel .product-carousel-slider .product-card .product-card-media .product-gallery-main::after {
  content: attr(data-meta-right);
  right: 0.25rem;
  top: 0.25rem;
  padding-left: 2.5rem;
  background: linear-gradient(var(--red), var(--red)) left center/2rem 2px no-repeat;
}
.product-carousel .product-carousel-slider .product-card .product-card-tag {
  grid-column: 2;
  grid-row: 1/4;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
}
.product-carousel .product-carousel-slider .product-card .product-card-tag .product-card-tag-text {
  font-size: 1.1rem;
  font-weight: 700;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}
.product-carousel .product-carousel-slider .product-card .product-card-tag .product-card-tag-line {
  width: 4px;
  flex: 1 1 auto;
  min-height: 0;
  background: var(--red);
  display: inline-block;
}
.product-carousel .product-carousel-slider .product-card .product-card-logo-model {
  grid-column: 2;
  grid-row: 1;
  -webkit-margin-start: 3rem;
          margin-inline-start: 3rem;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 0.5rem;
}
.product-carousel .product-carousel-slider .product-card .product-card-logo {
  display: block;
  max-width: 200px;
  width: 100%;
  height: auto;
}
.product-carousel .product-carousel-slider .product-card .product-card-model {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.product-carousel .product-carousel-slider .product-card .product-card-description {
  grid-column: 2;
  grid-row: 2;
  -webkit-margin-start: 3rem;
          margin-inline-start: 3rem;
}
.product-carousel .product-carousel-slider .product-card .product-card-description p {
  max-width: 50ch;
  margin-bottom: 1.5rem;
}
.product-carousel .product-carousel-slider .product-card .product-card-cta {
  grid-column: 2;
  grid-row: 3;
  -webkit-margin-start: 3rem;
          margin-inline-start: 3rem;
}
.product-carousel .product-carousel-slider .product-card .product-card-cta .btn {
  margin-bottom: 1.5rem;
}
.product-carousel .splide__arrow {
  background: transparent;
}
.product-carousel .splide__pagination__page {
  width: 12px;
  height: 12px;
  background: rgb(255, 255, 255);
  border: 1px solid transparent;
}
.product-carousel .splide__pagination__page.is-active {
  background: var(--red);
  border-color: var(--white);
}
.product-carousel .splide__pagination {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55%;
  justify-content: center;
  padding: 0;
  gap: 0.5rem;
}

@media (max-width: 900px) {
  .product-carousel .product-carousel-slider .product-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .product-carousel .product-carousel-slider .product-card .product-card-tag {
    display: none;
  }
  .product-carousel .product-carousel-slider .product-card .product-card-logo-model {
    grid-column: 1;
    grid-row: 1;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    order: 1;
    margin-bottom: 0.75rem;
  }
  .product-carousel .product-carousel-slider .product-card .product-card-media {
    grid-column: 1;
    grid-row: 2;
    order: 2;
    margin-bottom: 1rem;
  }
  .product-carousel .product-carousel-slider .product-card .product-card-media .product-gallery {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 0.6rem;
  }
  .product-carousel .product-carousel-slider .product-card .product-card-media .product-gallery-thumbs {
    order: 1;
  }
  .product-carousel .product-carousel-slider .product-card .product-card-media .product-gallery-thumbs .splide__track {
    height: 152px !important;
  }
  .product-carousel .product-carousel-slider .product-card .product-card-media .product-gallery-main {
    order: 2;
  }
  .product-carousel .product-carousel-slider .product-card .product-card-description {
    grid-column: 1;
    grid-row: 3;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    order: 3;
  }
  .product-carousel .product-carousel-slider .product-card .product-card-description p {
    max-width: none;
    margin-bottom: 1rem;
  }
  .product-carousel .product-carousel-slider .product-card .product-card-cta {
    grid-column: 1;
    grid-row: 4;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    order: 4;
  }
  .product-carousel .product-carousel-slider .product-card .product-card-cta .btn {
    margin-bottom: 0;
  }
  .product-carousel .product-carousel-slider .splide__pagination {
    position: static;
    width: 100%;
    justify-content: center;
    margin-top: 1.5rem;
  }
}
/*
  HOME CARDS
*/
.cards {
  margin-bottom: 3rem;
}
.cards header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  align-items: center;
  gap: 2rem;
  -webkit-margin-after: 4rem;
          margin-block-end: 4rem;
}
.cards header h2,
.cards header p {
  margin: 0;
}
.cards .cards-grid {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem 1.5rem;
}
.cards .cards-grid a.card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-decoration: none;
  color: var(--white);
  height: 100%;
}
.cards .cards-grid a.card:hover .card-img::after, .cards .cards-grid a.card:focus-visible .card-img::after {
  opacity: 1;
  transform: translateY(0px);
}
.cards .cards-grid a.card:hover, .cards .cards-grid a.card:focus-visible {
  opacity: 1;
}
.cards .cards-grid a.card .card-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.cards .cards-grid a.card .card-img img {
  width: 100%;
  height: auto;
  display: block;
}
.cards .cards-grid a.card .card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55) url("img/logo-dustboss-white.png") center/160px no-repeat;
  opacity: 0;
  transition: all 0.25s ease;
  transform: translateY(10px);
  pointer-events: none;
}
.cards .cards-grid a.card .card-body {
  opacity: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  gap: 0.5rem;
}
.cards .cards-grid a.card .card-body h3 {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
}
.cards .cards-grid a.card .card-body p {
  margin: 0 0 1.3rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.cards .cards-grid a.card:hover .card-body, .cards .cards-grid a.card:focus-visible .card-body {
  opacity: 1;
}
.cards .cards-grid a.card .card-link {
  margin-top: auto;
}

/*
  HOME DUST BANNER
*/
.dust-banner {
  background: url("img/bg-dust-banner.png") center/100% no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.dust-banner .inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem 5rem;
}
.dust-banner .inner p {
  color: var(--white);
}
.dust-banner .inner h2 {
  text-align: right;
}

@media (max-width: 800px) {
  .dust-banner .inner {
    grid-template-columns: 1fr;
    order: reverse;
    text-align: center;
  }
  .dust-banner .inner p {
    order: 2;
  }
  .dust-banner .inner h2 {
    order: 1;
    text-align: center;
  }
}
/*
  HOME DUST SUPPRESSION
*/
.dust-suppression .inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0 5rem;
  padding-block: 2rem 4rem;
}
.dust-suppression .inner .main-copy {
  grid-row: 1;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 1rem;
}
.dust-suppression .inner .main-copy h2 {
  margin-bottom: 2rem;
}
.dust-suppression .inner .main-copy a.arrow-link {
  margin-top: auto;
  align-self: flex-start;
}
.dust-suppression .inner .arrow-link {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}
.dust-suppression .inner .info-stack {
  display: grid;
  gap: 1.5rem;
}
.dust-suppression .inner .info-stack .info-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.dust-suppression .inner .info-stack .info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.dust-suppression .inner .info-stack .info-item p {
  margin: 0;
  color: var(--primary-font-color);
  font-size: 0.9rem;
  line-height: 1.5;
}
.dust-suppression .inner .info-stack .info-item .info-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.dust-suppression .inner .info-stack .info-item .info-heading .info-icon {
  width: 24px;
  height: 24px;
}
.dust-suppression .inner .info-stack .info-item .info-heading p {
  color: var(--white);
  font-size: 1rem;
  font-weight: 300;
}

@media (max-width: 800px) {
  .dust-suppression .inner {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }
  .dust-suppression .inner .main-copy {
    grid-row: 1;
    grid-column: 1;
  }
  .dust-suppression .inner .arrow-link {
    grid-row: 3;
  }
  .dust-suppression .inner .info-stack {
    grid-row: 2;
    margin-bottom: 2rem;
  }
}
/*
  HOME TESTIMONIALS
*/
.testimonials {
  background-image: url("img/bg-testimonial.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 70% 30%;
  width: 100%;
  min-height: 300px;
  -webkit-margin-after: 3rem;
          margin-block-end: 3rem;
}
.testimonials .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: start;
  text-align: left;
}

.strong-view-id-1 {
  grid-column: 1;
  justify-self: start;
}

.testimonials .testimonial-content p,
.testimonials .testimonial-name {
  font-size: var(--fs-xl) !important;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
}

@media (max-width: 800px) {
  .testimonials {
    padding-block: 1rem;
  }
  .testimonials .inner {
    grid-template-columns: 3fr 1fr;
  }
}
/*
  HOME INDUSTRIES
*/
.industries {
  overflow-x: clip;
}
.industries .inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem 3rem;
  padding-block: 2rem 4rem;
}
.industries .inner::before {
  content: "";
  position: absolute;
  left: clamp(-180px, -12vw, -50px);
  top: 100px;
  bottom: 0;
  width: clamp(360px, 50vw, 760px);
  background: url("img/db-30-full.png") left center/contain no-repeat;
  pointer-events: none;
  z-index: 0;
}
.industries .inner > * {
  position: relative;
  z-index: 1;
}
.industries .inner header {
  grid-column: span 2;
  display: grid;
  grid-template-columns: subgrid;
  gap: 2rem;
  -webkit-margin-after: 4rem;
          margin-block-end: 4rem;
}
.industries .inner header h2,
.industries .inner header p {
  margin: 0;
}
.industries .inner .industries-list {
  grid-column: 2;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 4rem;
}
.industries .inner .industries-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--grey);
  transform: translateX(-50%);
  pointer-events: none;
}
.industries .inner .industries-list .industries-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.industries .inner .industries-list .industries-item:nth-child(-n+2) {
  border-top: none;
  padding-top: 0;
}
.industries .inner .industries-list .industries-item .industries-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.industries .inner .industries-list .industries-item .industries-heading .industries-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}
.industries .inner .industries-list .industries-item .industries-heading p {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.25s ease;
}
.industries .industries-item > p {
  margin: 0;
  color: var(--white-60);
  font-size: 0.95rem;
  line-height: 1.5;
}
.industries .industries-item:has(.arrow-link:hover) .industries-icon {
  transform: scale(1.4);
}
.industries .industries-item .arrow-link {
  font-size: 0.9rem;
  align-self: flex-start;
  margin-top: auto;
}

@media (max-width: 900px) {
  .industries .inner {
    grid-template-columns: 1fr;
    -webkit-padding-after: 16rem;
            padding-block-end: 16rem;
  }
  .industries .inner header {
    grid-column: 1/-1;
  }
  .industries .inner .industries-list {
    grid-column: 1/-1;
    grid-template-columns: 1fr 1fr;
  }
  .industries .inner .industries-list::before {
    display: none;
  }
  .industries .inner::before {
    content: "";
    position: absolute;
    top: auto;
    left: auto;
    right: clamp(-25px, -18vw, -18px);
    bottom: 0;
    width: clamp(220px, 52vw, 360px);
    aspect-ratio: 1/1;
    background: url("img/db-30-full.png") right bottom/contain no-repeat;
    pointer-events: none;
    z-index: 0;
  }
  .industries .industries-item:nth-child(-n+2) {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding-top: 1.5rem;
  }
  .industries .industries-item:nth-child(-n+1) {
    border-top: none;
    padding-top: 0;
  }
}
@media (max-width: 650px) {
  .industries .inner .industries-list {
    grid-template-columns: 1fr;
  }
  .industries .inner .industries-list .industries-item {
    border-top: none;
    padding-top: 0;
  }
}
/*
  HOME TRUSTED
*/
.trusted {
  background-image: url("img/bg-trusted.png");
  background-repeat: no-repeat;
  background-position: 90% 50%;
  background-size: cover;
  width: 100%;
  height: auto;
  -webkit-margin-after: 2rem;
          margin-block-end: 2rem;
}
.trusted .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 500px;
}
.trusted .trusted-left {
  background: rgba(0, 0, 0, 0.7);
  display: grid;
  align-content: center;
}
.trusted .trusted-left-inner {
  padding: 2rem;
  display: grid;
  gap: 2rem;
}
.trusted .trusted-left .h4 {
  color: var(--white);
}
.trusted .trusted-logos {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.trusted .trusted-logos img {
  max-height: 32px;
  width: auto;
  filter: grayscale(1) brightness(0.8) contrast(1.05);
  opacity: 1;
}

@media (max-width: 850px) {
  .trusted .inner {
    grid-template-columns: 1fr;
  }
}
/*
  HOME WHO
*/
.who {
  overflow-x: clip;
  -webkit-margin-after: 1rem;
          margin-block-end: 1rem;
  padding-block: 4rem 6rem;
  position: relative;
  z-index: 2;
}
.who .inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  padding-block: 2rem 4rem;
  position: relative;
}
.who .inner::after {
  content: "";
  position: absolute;
  right: clamp(-180px, -12vw, -50px);
  top: 75px;
  width: clamp(360px, 50vw, 600px);
  aspect-ratio: 1/1;
  background: url("img/db-100-full.png") right center/contain no-repeat;
  pointer-events: none;
  z-index: 1;
}
.who .inner > * {
  position: relative;
  z-index: 2;
}
.who .inner .copy {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

@media (max-width: 800px) {
  .who {
    padding-block: 4rem 3rem;
  }
  .who .inner {
    grid-template-columns: 1fr;
    padding-block: 2rem 16rem;
  }
  .who .inner::after {
    top: auto;
    left: auto;
    right: clamp(-25px, -18vw, -18px);
    bottom: 0;
    width: clamp(320px, 60vw, 350px);
    background-position: right bottom;
  }
  .who .inner .copy {
    -webkit-padding-after: 4rem;
            padding-block-end: 4rem;
  }
}
/* ----- INSIDE PAGE ----- */
/*
  FEATURE IMAGE
*/
.feature {
  display: grid;
  position: relative;
  isolation: isolate;
}
.feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-gradient), var(--black-light);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 45%, rgba(0, 0, 0, 0.15) 60%, rgba(0, 0, 0, 0.45) 78%, black 100%);
          mask-image: linear-gradient(180deg, transparent 0%, transparent 45%, rgba(0, 0, 0, 0.15) 60%, rgba(0, 0, 0, 0.45) 78%, black 100%);
  pointer-events: none;
  z-index: 0;
}
.feature * {
  text-align: center;
}
.feature img {
  grid-column: 1/-1;
  grid-row: 1/-1;
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 500px;
  max-height: 750px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 80% 25%;
     object-position: 80% 25%;
}
.feature .title {
  grid-column: 1/-1;
  grid-row: 1/-1;
  align-self: center;
  transform: translateY(50px);
  display: inline-block;
  width: 100%;
  position: relative;
  z-index: 2;
}
.feature .title > * {
  color: var(--white);
}
.feature .title h1 {
  color: var(--white);
  margin-bottom: 0;
  font-size: clamp(2.8rem, 1.229rem + 4.19vw, 5rem);
  font-weight: 700;
  text-wrap: pretty;
}
.feature .title .subtitle {
  font-size: clamp(1.4rem, 0.829rem + 1.524vw, 2.2rem);
  font-weight: 300;
}
.feature .intro {
  grid-column: 1/-1;
  grid-row: 1/-1;
  align-self: end;
  position: relative;
  z-index: 2;
}
.feature .intro p {
  color: var(--white);
  text-align: center;
}

@media (max-width: 1050px) {
  .feature {
    padding: 0;
  }
}
/*
  INSIDE PAGE W/ SIDEBAR
*/
.pg-w-sidebar {
  display: grid;
  grid-template-columns: auto 300px;
  gap: 30px;
}

@media (max-width: 900px) {
  .pg-w-sidebar {
    grid-template-columns: 1fr;
  }
}
/*
  CONTENT / CONTENT-POSTS STYLES
*/
/* Styles for post entry meta - (date) */
.entry-meta {
  margin-bottom: 30px;
}

/* Styles for WP category list */
.entry-category {
  display: inline-block;
}

.entry-category ul {
  display: inline-block;
}

.entry-category ul li {
  display: inline-block;
  margin-left: 5px;
}

/*-------------------------------------
  06 - PLUGINS PLUGINS PLUGINS PLUGINS
--------------------------------------*/
/* ----- KADENCE ----- */
/*
  Gallery
*/
.splide__pagination {
  gap: 6px;
}

.kb-gallery-ul .kb-splide li {
  display: flex;
  padding: 2px;
}

.kb-gallery-ul .kb-splide li:has(.splide__pagination__page.is-active) {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.kb-gallery-ul .kb-splide .splide__pagination__page {
  background: var(--white);
  opacity: 1;
}

.kb-gallery-ul .kb-splide li .splide__pagination__page.is-active {
  background: var(--red) !important;
}

/* ----- USERWAY ----- */
body .uwy.userway_p1 .userway_buttons_wrapper {
	top: 95% !important;
	left: 3rem !important;
}

/*# sourceMappingURL=style.css.map */