/***********************************
   Variables
************************************/
:root {
  /* ACSS Spacing */
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-s: 16px;
  --space-m: 24px;
  --space-l: 32px;
  --space-xl: 48px;
  --space-xxl: 64px;
  --space-xxxl: 80px;
  /* Animations */
  --animation-primary: 0.3s cubic-bezier(.5, 0, .25, 1);
  --animation-smooth: 0.5s cubic-bezier(1, 0, .25, 1);
  --animation-nav-smooth: 0.5s cubic-bezier(.5, 0, .25, 1);
  --animation-bounce: 0.4s cubic-bezier(0.35, 1.5, 0.6, 1);
  --animation-bounce-smooth: 0.6s cubic-bezier(0.5, 1.5, 0.5, 1);
  --filter-clr-primary: invert(54%) sepia(49%) saturate(640%) hue-rotate(4deg) brightness(94%) contrast(84%);
  --filter-clr-white: brightness(0) saturate(100%) invert(99%) sepia(17%) saturate(807%) hue-rotate(256deg) brightness(107%) contrast(100%);
  --filter-clr-black: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(967%) hue-rotate(313deg) brightness(96%) contrast(100%);
  --filter-clr-success: brightness(0) saturate(100%) invert(50%) sepia(64%) saturate(509%) hue-rotate(81deg) brightness(93%) contrast(93%);
}
/***********************************
   Typography
************************************/
@font-face {
  font-family: "Inter";
  src: url("/wp-content/uploads/fonts/inter/Inter-VariableFont_wght.woff2") format("woff2");
  font-weight: 1 999;
}
/*---Eyebrows---*/
.eyebrow {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2em;
  letter-spacing: 0.1em;
  font-size: var(--text-s);
  color: var(--theme-clr-title);
}
.eyebrow::before {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMCAyNTZhMjU2IDI1NiAwIDEgMCA1MTIgMEEyNTYgMjU2IDAgMSAwIDAgMjU2ek0yOTcgMzg1Yy05LjQgOS40LTI0LjYgOS40LTMzLjkgMHMtOS40LTI0LjYgMC0zMy45bDcxLTcxTDEyMCAyODBjLTEzLjMgMC0yNC0xMC43LTI0LTI0czEwLjctMjQgMjQtMjRsMjE0LjEgMC03MS03MWMtOS40LTkuNC05LjQtMjQuNiAwLTMzLjlzMjQuNi05LjQgMzMuOSAwTDQwOSAyMzljOS40IDkuNCA5LjQgMjQuNiAwIDMzLjlMMjk3IDM4NXoiLz48L3N2Zz4=");
  font-size: 1em;
  height: 1em;
  width: 1em;
  letter-spacing: 0;
  line-height: 1.2em;
  filter: var(--filter-clr-primary);
  margin-right: 0.6em;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/*--- General Typography ---*/
h2 {
  font-size: calc(var(--h1) * 0.9);
}
/*--------------*/
/* Theme Styles */
/*--------------*/
[class*="theme--"] {
  /* General */
  --theme-clr-bg: transparent;
  /* Text */
  --theme-clr-title: var(--base);
  --theme-clr-text-light: var(--white);
  --theme-clr-text-dark: var(--base);
  /* Links */
  --theme-clr-link: inherit;
  --theme-clr-link-hover: inherit;
  /* Accent */
  --theme-clr-accent: var(--primary);
  --theme-clr-accent-hover: var(--primary-hover);
  /* Buttons */
  --theme-clr-button-bg: var(--theme-clr-accent);
  --theme-clr-button-text: var(--theme-clr-text-light);
  --theme-clr-button-bg-hover: var(--theme-clr-accent-hover);
  --theme-clr-button-text-hover: var(--theme-clr-button-text);
  --theme-clr-button-border: var(--theme-clr-button-bg);
  --theme-clr-button-border-hover: var(--theme-clr-button-bg-hover);
  --theme-clr-button-icon: currentColor;
  /* Defaults */
  --default-transition: all 0.2s ease;
  background-color: var(--theme-clr-bg);
  color: var(--theme-clr-text);
}
.theme--primary {
  /* General */
  --theme-clr-bg: var(--primary);
  /* Text */
  --theme-clr-title: var(--white);
  --theme-clr-text: var(--white);
  /* Links */
  --theme-clr-link: var(--secondary);
  --theme-clr-link-hover: var(--secondary-hover);
  /* Accent */
  --theme-clr-accent: var(--secondary);
  --theme-clr-accent-hover: var(--secondary-hover);
}
.theme--secondary {
  /* General */
  --theme-clr-bg: var(--secondary);
  /* Text */
  --theme-clr-title: var(--white);
  --theme-clr-text: var(--white);
  /* Links */
  --theme-clr-link: var(--primary);
  --theme-clr-link-hover: var(--primary-hover);
  /* Accent */
  --theme-clr-accent: var(--primary);
  --theme-clr-accent-hover: var(--primary-hover);
}
.theme--tertiary {
  /* General */
  --theme-clr-bg: var(--tertiary);
  /* Text */
  --theme-clr-title: var(--white);
  --theme-clr-text: var(--white);
  /* Links */
  --theme-clr-link: var(--primary);
  --theme-clr-link-hover: var(--primary-hover);
  /* Accent */
  --theme-clr-accent: var(--primary);
  --theme-clr-accent-hover: var(--primary-hover);
}
.theme--accent {
  /* General */
  --theme-clr-bg: var(--accent);
  /* Text */
  --theme-clr-title: var(--white);
  --theme-clr-text: var(--white);
  /* Links */
  --theme-clr-link: var(--primary);
  --theme-clr-link-hover: var(--primary-hover);
  /* Accent */
  --theme-clr-accent: var(--primary);
  --theme-clr-accent-hover: var(--primary-hover);
}
.theme--light {
  /* General */
  --theme-clr-bg: var(--base-ultra-light);
  /* Text */
  --theme-clr-title: var(--secondary);
  --theme-clr-text: var(--secondary);
  /* Links */
  --theme-clr-link: var(--primary);
  --theme-clr-link-hover: var(--primary-hover);
  /* Accent */
  --theme-clr-accent: var(--primary);
  --theme-clr-accent-hover: var(--primary-hover);
}
.theme--dark {
  /* General */
  --theme-clr-bg: var(--base);
  /* Text */
  --theme-clr-title: var(--white);
  --theme-clr-text: var(--white);
  /* Links */
  --theme-clr-link: var(--primary);
  --theme-clr-link-hover: var(--primary-hover);
  /* Accent */
  --theme-clr-accent: var(--primary);
  --theme-clr-accent-hover: var(--primary-hover);
}
.theme--white {
  /* General */
  --theme-clr-bg: var(--white);
  /* Text */
  --theme-clr-title: var(--black);
  --theme-clr-text: var(--base);
  /* Links */
  --theme-clr-link: var(--primary);
  --theme-clr-link-hover: var(--primary-hover);
  /* Accent */
  --theme-clr-accent: var(--primary);
  --theme-clr-accent-hover: var(--primary-hover);
}
.theme--black {
  /* General */
  --theme-clr-bg: var(--black);
  /* Text */
  --theme-clr-title: var(--white);
  --theme-clr-text: var(--white);
  /* Links */
  --theme-clr-link: var(--primary);
  --theme-clr-link-hover: var(--primary-hover);
  /* Accent */
  --theme-clr-accent: var(--primary);
  --theme-clr-accent-hover: var(--primary-hover);
}
h1, h2, h3, h4, h5, h6, [class*="bc--h"] {
  color: var(--theme-clr-title);
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, [class*="bc--h"] a {
  color: inherit;
}
[class*="theme--"] a:not(:where(.ignore-theme-links *, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a), .bricks-button) {
  color: var(--theme-clr-link);
  transition: var(--default-transition);
}
[class*="theme--"] a:not(:where(.ignore-theme-links *, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a), .bricks-button):hover {
  color: var(--theme-clr-link-hover);
}
#wsf-styler .wsf-styler-panel-wrapper .wsf-styler-panel {
  background-color: #17151F;
  --styler-color-primary: #7831FF;
  --styler-color-secondary: #17151F;
  --styler-color-secondary-light: hsl(252, 19%, 30%);
  --styler-color-secondary-ultra-light: hsl(252, 19%, 60%);
  --styler-font-family: "Inter", sans-serif;
  --wsf-styler-search-icon-size: 12px;
  --wsf-styler-search-icon-width: 2px;
}
#wsf-styler .wsf-styler-panel-wrapper .wsf-styler-panel header li {
  background-color: var(--styler-color-primary) !important;
}
#wsf-styler .wsf-styler-panel-wrapper .wsf-styler-panel header li:hover {
  background-color: var(--styler-color-secondary-light) !important;
}
#wsf-styler .wsf-styler-panel-wrapper .wsf-styler-panel .wsf-styler-label legend {
  font-family: var(--styler-font-family) !important;
}
#wsf-styler .wsf-styler-panel-wrapper .wsf-styler-panel .wsf-styler-label legend::before {
  content: "Style: ";
  font-weight: 400;
}
#wsf-styler .wsf-styler-panel-wrapper .wsf-styler-panel .wsf-styler-search input {
  font-family: var(--styler-font-family);
  border: none;
  border-radius: 8px;
  background-color: var(--styler-color-secondary-light);
  color: #fff !important;
}
#wsf-styler .wsf-styler-panel-wrapper .wsf-styler-panel .wsf-styler-search input::placeholder {
  color: var(--styler-color-secondary-ultra-light) !important;
}
#wsf-styler .wsf-styler-panel-wrapper .wsf-styler-panel .wsf-styler-search::before, #wsf-styler .wsf-styler-panel-wrapper .wsf-styler-panel .wsf-styler-search::after {
  border-color: #fff !important;
}
#wsf-styler .wsf-styler-panel-wrapper .wsf-styler-panel .wsf-styler-child {
  --styler-label-color: var(--styler-color-secondary);
  --styler-label-bg: #fff;
}
#wsf-styler .wsf-styler-panel-wrapper .wsf-styler-panel .wsf-styler-child-active {
  --styler-label-color: #fff;
  --styler-label-bg: var(--styler-color-primary);
}
#wsf-styler .wsf-styler-panel-wrapper .wsf-styler-panel .wsf-styler-child-label {
  border-radius: 8px;
  background-color: var(--styler-label-bg) !important;
}
#wsf-styler .wsf-styler-panel-wrapper .wsf-styler-panel .wsf-styler-child-label > p {
  font-family: var(--styler-font-family) !important;
  font-weight: 500;
  color: var(--styler-label-color) !important;
}
#wsf-styler .wsf-styler-panel-wrapper .wsf-styler-panel .wsf-styler-var-label label {
  font-family: var(--styler-font-family) !important;
}
#wsf-styler .wsf-styler-panel-wrapper .wsf-styler-panel .wsf-styler-var-input {
  font-family: var(--styler-font-family) !important;
  font-size: 12px !important;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 4px 0 0 4px;
  border: none !important;
  padding: 0.8em !important;
  background-color: var(--styler-color-secondary);
  color: white;
}
#wsf-styler .wsf-styler-panel-wrapper .wsf-styler-panel .wsf-styler-children.wsf-styler-children-1 {
  padding-left: 20px !important;
}
#wsf-styler .wsf-styler-panel-wrapper .wsf-styler-panel .wsf-styler-children.wsf-styler-children-1 .wsf-styler-child-label > p::before {
  content: "- ";
  font-weight: 400;
}
#wsf-styler .wsf-styler-panel-wrapper .wsf-styler-panel .wsf-styler-children.wsf-styler-children-2 {
  padding-left: 40px !important;
}
#wsf-styler .wsf-styler-panel-wrapper .wsf-styler-panel .wsf-styler-children.wsf-styler-children-2 .wsf-styler-child-label > p::before {
  content: "-- ";
}
#wsf-styler .wsf-styler-panel-wrapper .wsf-styler-panel .wsf-styler-children.wsf-styler-children-3 {
  padding-left: 60px !important;
}
#wsf-styler .wsf-styler-panel-wrapper .wsf-styler-panel .wsf-styler-children.wsf-styler-children-3 .wsf-styler-child-label > p::before {
  content: "--- ";
}
#wsf-styler .wsf-styler-panel-wrapper .wsf-styler-panel .wsf-styler-meta {
  background-color: var(--styler-color-secondary-light);
  padding: 8px;
  border-radius: 8px;
}
#wsf-styler .wsf-styler-panel-wrapper .wsf-styler-panel .wsf-styler-var-top-icon {
  background-color: var(--styler-color-primary) !important;
}
#wsf-styler .wsf-styler-panel-wrapper .wsf-styler-panel .wsf-styler-var-top-icon:hover {
  background-color: var(--styler-color-secondary) !important;
}
:target {
  scroll-margin-top: var(--header-height);
}
/* Prevent GSAP FOUC (Flash of Unstyled Content), but not inside Bricks */
body:not([data-builder-mode]) .gsap--fade-in, body:not([data-builder-mode]) .gsap--fade-in-children > *, body:not([data-builder-mode]) .gsap--smooth-in-children > *, body:not([data-builder-mode]) .gsap--split-lines, body:not([data-builder-mode]) .gsap--split-words, body:not([data-builder-mode]) .gsap--split-characters, body:not([data-builder-mode]) .split-item {
  visibility: hidden;
}
.gsap--exclude {
  visibility: visible !important;
}
#page-content {
  will-change: transform;
}
#page-content section {
  margin-top: -0.5px;
}
/*---Buttons---*/
.bricks-button {
  letter-spacing: inherit;
  padding: inherit;
}
[class*="btn--"] {
  padding: 0.8em 1.6em;
  border-width: 2px;
  border-style: solid;
  line-height: 1.2em;
  font-weight: 700 !important;
  transition-duration: 0.2s;
  transition-property: all;
  transition-timing-function: ease-in-out;
}
.btn--primary {
  color: var(--white);
  background-color: var(--primary);
  border-color: var(--primary);
}
.btn--primary.btn--ghost {
  color: var(--black);
}
.btn--primary:is(:hover, :focus) {
  background-color: var(--primary-hover);
}
.btn--white {
  color: var(--black);
  background-color: var(--white);
  border-color: var(--white);
}
.btn--white.btn--ghost {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--white:is(:hover, :focus) {
  background-color: var(--white-hover);
}
.btn--black {
  color: var(--white);
  background-color: var(--black);
  border-color: var(--black);
}
.btn--black.btn--ghost {
  color: var(--black);
  border-color: var(--black);
}
.btn--black:is(:hover, :focus) {
  background-color: var(--black-hover);
}
.btn--muted {
  color: var(--base);
  background-color: var(--base-ultra-light);
  border-color: var(--base-ultra-light);
}
.btn--muted.btn--ghost {
  color: var(--base);
}
.btn--muted.btn--ghost::before, .btn--muted.btn--ghost::after {
  color: var(--base);
}
.btn--muted:is(:hover, :focus) {
  background-color: var(--base-light);
}
.btn--ghost {
  position: relative;
  padding-left: 0;
  padding-right: 1.6em;
  overflow: hidden;
  background-color: transparent;
  border-top: 0;
  border-left: 0;
  border-right: 0;
}
.btn--ghost::before, .btn--ghost::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMCAyNTZhMjU2IDI1NiAwIDEgMCA1MTIgMEEyNTYgMjU2IDAgMSAwIDAgMjU2ek0yOTcgMzg1Yy05LjQgOS40LTI0LjYgOS40LTMzLjkgMHMtOS40LTI0LjYgMC0zMy45bDcxLTcxTDEyMCAyODBjLTEzLjMgMC0yNC0xMC43LTI0LTI0czEwLjctMjQgMjQtMjRsMjE0LjEgMC03MS03MWMtOS40LTkuNC05LjQtMjQuNiAwLTMzLjlzMjQuNi05LjQgMzMuOSAwTDQwOSAyMzljOS40IDkuNCA5LjQgMjQuNiAwIDMzLjlMMjk3IDM4NXoiLz48L3N2Zz4=");
  font-size: 1em;
  height: 1em;
  width: 1em;
  letter-spacing: 0;
  line-height: 1;
  filter: var(--filter-clr-primary);
  position: absolute;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.2s;
  transition-property: all;
  transition-timing-function: ease-in-out;
}
.btn--ghost::before {
  left: -1.2em;
}
.btn--ghost::after {
  right: 0.1em;
}
.btn--ghost:is(:hover, :focus) {
  position: relative;
  padding-left: 1.6em;
  padding-right: 0;
  background-color: transparent;
}
.btn--ghost:is(:hover, :focus)::before {
  left: 0.1em;
}
.btn--ghost:is(:hover, :focus)::after {
  right: -1.2em;
}
.btn--ghost--white {
  color: var(--white);
}
.btn--wide {
  width: 100%;
}
.btn--small {
  font-size: var(--text-s);
}
.btn--large {
  font-size: var(--text-l);
}
/*---Cards---*/
.card {
  gap: 0;
  background-color: var(--base-ultra-light);
  overflow: hidden;
  outline: 2px solid transparent;
  transition-duration: 0.2s;
  transition-property: all;
  transition-timing-function: ease-in-out;
}
.card:is(:hover, :focus, :focus-within) {
  outline-color: var(--primary);
}
.card__image-wrapper {
  order: -1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 56%;
  overflow: hidden;
}
.card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  --transition: all 0.8s ease-in-out;
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -o-transition: var(--transition);
}
.card__content-wrapper {
  position: static;
  padding: var(--space-m);
  gap: var(--space-s);
  flex-grow: 1;
}
.card__title {
  max-width: 90%;
  font-size: var(--text-m);
  line-height: 1.4;
}
.card__title a {
  color: var(--black);
  font-weight: var(--h3-font-weight) !important;
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -o-transition: var(--transition);
}
.card:is(:hover, :focus) .card__title a {
  color: var(--primary);
}
.card:is(:hover, :focus) .card__image {
  transform: scale(1.1);
}
.card__meta {
  font-size: var(--text-s);
  color: var(--primary);
  line-height: 1.1em;
}
/* Megamenu Variant of Card */
.megamenu .card__content-wrapper {
  gap: var(--space-s);
  padding: 1.6rem;
}
.megamenu .card__title {
  font-size: var(--text-s);
}
/* Interactive Cards */
.interactive-card__content-wrapper, .interactive-card__content-wrapper::after, .interactive-card__bg-image, .interactive-card__icon, .interactive-card__icon svg {
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: ease-in-out;
}
.interactive-card__content-wrapper {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  position: relative;
  padding: 4rem;
}
.interactive-card__content-wrapper::after {
  content: "";
  background-image: url("/wp-content/uploads/2022/10/Hash-Long.svg");
  background-size: auto 140px;
  background-repeat: repeat-x;
  height: 40px;
  width: 120%;
  position: absolute;
  bottom: -40px;
  left: -20%;
}
.interactive-card:is(:hover, :focus) .interactive-card__bg-image {
  transform: scale(1.1);
}
.interactive-card:is(:hover, :focus) .interactive-card__content-wrapper {
  padding-bottom: calc(4rem + 20px);
}
.interactive-card:is(:hover, :focus) .interactive-card__content-wrapper::after {
  left: 0;
  bottom: -20px;
}
.interactive-card:is(:hover, :focus) .interactive-card__icon svg {
  fill: #fff;
}
/*** Responsive Styles Smartphone Only ***/
@media (max-width: 767px) {
  .interactive-card__content-wrapper {
    padding: 2.4rem;
  }
}
/* Product Card */
.product-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: var(--white);
  background-size: cover;
  position: relative;
  outline: 2px solid transparent;
  transition-duration: 0.2s;
  transition-property: all;
  transition-timing-function: ease-in-out;
}
.product-card:is(:hover, :focus) {
  outline-color: var(--primary);
}
.product-card__content-wrapper {
  display: flex;
  padding: 2.4rem;
  row-gap: var(--space-s);
  z-index: 1;
  flex-grow: 1;
  border-top: 1px solid var(--base);
}
.product-card__title {
  font-size: var(--text-m);
  color: var(--black);
}
.product-card__image-wrapper {
  display: flex;
  padding-top: 100%;
  position: relative;
  order: -1;
  z-index: 0;
}
.product-card__image {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.product-card__footer {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background-color: var(--base);
  background-size: cover;
}
.product-card__price-wrapper {
  flex: 1;
  padding: 1.6rem 2.4rem;
}
.product-card__price {
  color: var(--white);
  font-weight: 500;
  line-height: 1.1;
  font-size: var(--text-s);
}
.product-card__view-button {
  padding: 1.6rem;
  background-color: var(--primary);
  background-size: cover;
  justify-content: center;
  align-items: center;
  display: flex;
  transition-duration: 0.2s;
  transition-property: all;
  transition-timing-function: ease-in-out;
}
.product-card:is(:hover, :focus) .product-card__view-button {
  background-color: var(--primary-hover);
}
.product-card__view-button-icon {
  color: var(--white);
  fill: var(--white);
  font-size: 1em;
}
/* Megamenu variant of Product Card */
.megamenu .product-card {
  border: 1px solid var(--base);
}
.megamenu .product-card__image-wrapper {
  padding-top: 56.25%;
}
/* Testimonial Card */
.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start !important;
  padding: var(--space-m);
  text-align: left;
  background-color: white;
}
.testimonial-card__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  color: black;
  margin-bottom: auto;
}
.testimonial-card__title {
  font-size: var(--h4);
  letter-spacing: var(--heading-letter-spacing);
  margin-top: var(--space-m);
  color: black;
}
.testimonial-card__role {
  font-size: var(--text-s);
  color: var(--primary);
}
.testimonial-card__view-more-button {
  display: grid;
  place-items: center;
  position: absolute;
  bottom: var(--space-m);
  right: var(--space-m);
  font-size: 18px;
  padding: 0.4em;
  background-color: var(--primary);
  color: white;
  aspect-ratio: 1;
}
/*---Tiles---*/
.tile {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  padding: var(--space-l);
  position: relative;
  overflow: hidden;
  min-height: 20rem;
  /*** Responsive Styles Tablet And Below ***/
}
.tile__hover-content {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: var(--space-m);
  padding: var(--space-l);
  background-color: var(--base-ultra-light);
  opacity: 0;
  transform: translatey(20px);
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: ease-in-out;
}
.tile:is(:hover, :focus, :focus-within) .tile__hover-content {
  opacity: 1;
  transform: translatey(0);
}
.tile--large {
  padding: 0;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-m);
  align-items: stretch;
}
.tile__main {
  gap: var(--space-l);
  padding: var(--space-xl) 0 var(--space-xl) var(--space-xl);
}
.tile__side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xl);
}
/* Builder Overrides */
[data-builder-mode] .tile__hover-content {
  position: relative;
  transform: translate(0);
  opacity: 1;
}
/* Main Nav Links */
/* CTA */
/* Dropdown */
/* To align dropdown with bottom of Header section */
/* Slide Animation (positive value = Slide Up) */
/* Dropdown Backdrop */
/* Mobile Hamburger */
/* Mobile Nav */
/* Mobile Dropdown */
header {
  position: fixed !important;
  top: 0;
  z-index: 999;
  --header-main-padding-block: 2.4rem;
  --header-main-bg-color: transparent;
  --logo-width: 10rem;
}
.header-main {
  position: relative;
  z-index: 2;
  padding-block: var(--header-main-padding-block);
  background-color: var(--header-main-bg-color);
  transition: all 0.4s ease !important;
}
header[data-is-scrolling="true"] {
  --header-main-padding-block: var(--space-s);
  --header-main-bg-color: var(--black-trans-80);
}
header[data-is-scrolling="true"] .header-main {
  backdrop-filter: blur(10px);
}
.nav__list {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2.4rem;
  padding-left: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}
.nav__list-item {
  display: block;
  flex: 1;
}
.nav__list-item > .nav__parent-link {
  display: flex;
  padding: 0.8em 0;
  transition-duration: 0.1s;
  transition-property: all;
  transition-timing-function: ease-in-out;
  color: #fff;
  line-height: 1.2em;
  font-weight: 400;
  border-radius: 0rem;
}
.nav__list-item:is(:hover, :focus) > a {
  background-color: var(--primary);
  color: #fff;
}
.nav__cta > a {
  color: #fff;
  background: var(--bg-gradient--radial);
  padding: 0.8em 1.6em;
  border: 0;
  border-radius: 0rem;
  margin-left: 0.8rem;
}
.nav__cta > a:is(:hover, :focus) {
  transform: translatey(-5px);
}
.nav__parent-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  border-bottom: 1px solid var(--white);
}
.nav__parent-link > a:is(:hover, :focus) {
  text-decoration: underline;
}
.nav__parent-link-icon {
  font-size: 1em;
  height: 1em;
  width: 1em;
  transition-duration: 0.2s;
  transition-property: all;
  transition-timing-function: ease-in-out;
}
.nav__parent-link-icon::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBkPSJNMjAxLjQgMzc0LjZjMTIuNSAxMi41IDMyLjggMTIuNSA0NS4zIDBsMTYwLTE2MGMxMi41LTEyLjUgMTIuNS0zMi44IDAtNDUuM3MtMzIuOC0xMi41LTQ1LjMgMEwyMjQgMzA2LjcgODYuNiAxNjkuNGMtMTIuNS0xMi41LTMyLjgtMTIuNS00NS4zIDBzLTEyLjUgMzIuOCAwIDQ1LjNsMTYwIDE2MHoiLz48L3N2Zz4=");
  font-size: 1em;
  height: 1em;
  width: 1em;
  letter-spacing: 0;
  line-height: 1;
  filter: var(--filter-clr-white);
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.nav__parent-link[aria-expanded="true"] .nav__parent-link-icon {
  transform: rotate(-180deg);
}
@media screen and (max-width: 991px) {
  .nav {
    /* Hide Parent Links & style for mobile dropdown */
  }
  .nav__list {
    /* Mobile Dropdown Styles */
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    max-width: 1400px;
    max-height: calc(100vh - 20rem);
    overflow: scroll;
    background-color: #fff;
    flex-direction: column;
    gap: 0;
    display: none;
    margin-top: 3.5rem;
    transition-duration: 0.2s;
    transition-property: all;
    transition-timing-function: ease-in-out;
  }
  .nav__list[data-menu-state="hidden"] {
    display: none;
  }
  .nav__list[data-menu-state="visible"] {
    display: flex;
  }
  .nav__list[data-anim-state="closed"] {
    opacity: 0;
    pointer-events: none;
  }
  .nav__list[data-anim-state="closing"] {
    opacity: 0;
    pointer-events: none;
  }
  .nav__list[data-anim-state="opening"] {
    opacity: 0;
  }
  .nav__list[data-anim-state="open"] {
    opacity: 1;
    pointer-events: auto;
  }
  .nav__list-item > .nav__parent-link {
    color: #000;
    padding: 1em 1.6em;
    font-weight: 600;
    border-bottom: 1px solid var(--base-light);
  }
  .nav__list-item:is(:hover, :focus) > .nav__parent-link {
    background-color: var(--primary-light);
    color: #000;
  }
  .nav__cta > a {
    margin-left: 0;
    border-radius: 0;
    padding: 1em 1.6em;
    background: var(--bg-gradient--radial);
    color: #fff;
  }
  .nav__cta > a:is(:hover, :focus) {
    transform: translatey(0);
    color: #fff;
  }
  .nav__parent-link-icon::after {
    font-size: 1em;
    filter: var(--filter-clr-black);
  }
}
@media screen and (max-width: 767px) {
  .nav {
    /* Hide Parent Links & style for mobile dropdown */
  }
  .nav__list {
    margin-top: 1.6rem;
  }
}
.megamenu {
  padding-top: 1.6rem;
  /* Mismatch with [open] state to slide dropdown in/out */
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  max-width: 1400px;
  z-index: 1;
  transition-duration: 0.2s;
  transition-property: visibility, opacity;
  transition-timing-function: ease-in-out;
  /* Hidden Styles */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.megamenu[data-menu-state="open"] {
  padding-top: 1.6rem;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.megamenu__inner-content {
  display: flex;
  flex-direction: row;
  background-color: #fff;
}
.megamenu__content {
  display: flex;
  flex-direction: row;
  gap: 2.4rem;
  width: 60%;
  padding: 2.4rem;
}
.megamenu__column {
  padding: 0;
  flex-grow: 1;
}
.megamenu__column--2 {
  max-width: 60%;
}
.megamenu__subtitle {
  color: var(--primary);
  font-size: var(--text-m);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
  margin-bottom: 1.6rem !important;
}
.megamenu__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 0 2.4rem;
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}
.megamenu__list-item {
  width: 100%;
}
.megamenu__list-item a {
  padding: 1.6rem 3.2rem 1.6rem 0;
  color: #000;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 1.6rem;
  transition-duration: 0.1s;
  transition-property: all;
  transition-timing-function: ease-in-out;
  transition-delay: 0;
}
.megamenu__list-item a:hover {
  padding: 1.6rem 1.6rem 1.6rem 1.6rem;
  background-color: var(--primary-ultra-light);
}
.megamenu__item-icon {
  height: 20px;
  width: 20px;
}
.megamenu__item-icon img {
  display: block;
}
.megamenu__item-title {
  font-size: var(--text-m);
  font-weight: 500;
  line-height: 1.2em;
  margin: 0;
  color: var(--black);
}
.megamenu__item-description {
  font-size: 12px;
  color: var(--base);
  font-weight: 400;
  line-height: 1.2em;
  margin: 0;
  margin-top: 0.8rem;
}
.megamenu__image-column {
  width: 40%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.megamenu__image-column img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
}
@media screen and (max-width: 991px) {
  .megamenu {
    position: relative;
    padding-top: 0;
    max-height: 0;
    display: none;
  }
  .megamenu__column {
    width: 100%;
    padding: 0rem;
  }
  .megamenu__column:first-of-type {
    border-top: 0;
    padding: 0;
  }
  .megamenu__content {
    background-color: var(--base-ultra-light);
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0;
  }
  .megamenu__subtitle {
    display: none;
  }
  .megamenu__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .megamenu__list-item a {
    padding: 1em 1.6em;
    border-bottom: 1px solid var(--base-light);
    align-items: center;
  }
  .megamenu__list-item a:is(:hover, :focus) {
    padding: 1em 1.6em;
  }
  .megamenu__item-title {
    font-size: var(--text-m);
    font-weight: 400;
  }
  .megamenu__item-description {
    display: none;
  }
  .megamenu__image-column {
    display: none;
  }
  .megamenu[data-menu-state="open"] {
    padding-top: 0;
    max-height: 100vh;
    display: block;
  }
  .megamenu__featured-product-column {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .megamenu__inner-content {
    flex-direction: column;
  }
  .megamenu__list {
    grid-template-columns: 1fr;
  }
}
.megamenu-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: height 0s linear 0.5s, opacity 0.5s ease-in-out !important;
  pointer-events: none;
}
.megamenu-backdrop--active {
  opacity: 1;
  height: 100%;
  pointer-events: auto;
  transition: opacity 0.5s ease-in-out !important;
}
/* Hamburger */
.mobile-hamburger {
  border: 0px solid transparent;
  padding: 0.4em;
  background-color: transparent;
  color: var(--white);
  font-size: var(--text-m);
  cursor: pointer;
  margin-left: auto;
  margin-right: -0.4em;
  /* Desktop */
  display: none;
}
.mobile-hamburger:before {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBkPSJNMCA5NkMwIDc4LjMgMTQuMyA2NCAzMiA2NGwzODQgMGMxNy43IDAgMzIgMTQuMyAzMiAzMnMtMTQuMyAzMi0zMiAzMkwzMiAxMjhDMTQuMyAxMjggMCAxMTMuNyAwIDk2ek0wIDI1NmMwLTE3LjcgMTQuMy0zMiAzMi0zMmwzODQgMGMxNy43IDAgMzIgMTQuMyAzMiAzMnMtMTQuMyAzMi0zMiAzMkwzMiAyODhjLTE3LjcgMC0zMi0xNC4zLTMyLTMyek00NDggNDE2YzAgMTcuNy0xNC4zIDMyLTMyIDMyTDMyIDQ0OGMtMTcuNyAwLTMyLTE0LjMtMzItMzJzMTQuMy0zMiAzMi0zMmwzODQgMGMxNy43IDAgMzIgMTQuMyAzMiAzMnoiLz48L3N2Zz4=");
  font-size: 1.6em;
  height: auto;
  width: 1em;
  letter-spacing: 0;
  line-height: 1;
  filter: var(--filter-clr-white);
  display: block;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 991px) {
  /* Show Hamburger */
  .mobile-hamburger {
    display: block;
  }
}
/* Hide Mobile Menu when in Oxygen Builder */
@media screen and (max-width: 991px) {
  .ng-scope .nav__list {
    display: none;
  }
}
/* Hide Megamenu when in Bricks Builder */
@media screen and (max-width: 991px) {
  [data-builder-mode] .megamenu {
    display: none;
  }
}
.megamenu .disable {
  display: none;
}
/* Footer */
.footer__menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  /*** Responsive Styles Tablet And Below ***/
}
@media (max-width: 991px) {
  .footer__menu {
    gap: 0.2em;
  }
}
.footer__menu li a {
  color: #fff;
  font-weight: 400;
  transition: var(--default-transition);
  -webkit-transition: var(--default-transition);
  -moz-transition: var(--default-transition);
  -o-transition: var(--default-transition);
}
.footer__menu li a:hover {
  color: var(--primary);
}
/*** Responsive Styles Smartphone Only ***/
@media (max-width: 767px) {
  .arrow-list ul {
    grid-template-columns: 1fr;
  }
}
.icon-list {
  list-style-type: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.2em var(--space-m);
  font-size: var(--text-m);
  font-weight: 500;
  width: 100%;
  --icon: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDUxMkEyNTYgMjU2IDAgMSAwIDI1NiAwYTI1NiAyNTYgMCAxIDAgMCA1MTJ6TTM2OSAyMDlMMjQxIDMzN2MtOS40IDkuNC0yNC42IDkuNC0zMy45IDBsLTY0LTY0Yy05LjQtOS40LTkuNC0yNC42IDAtMzMuOXMyNC42LTkuNCAzMy45IDBsNDcgNDdMMzM1IDE3NWM5LjQtOS40IDI0LjYtOS40IDMzLjkgMHM5LjQgMjQuNiAwIDMzLjl6Ii8+PC9zdmc+");
}
.icon-list[data-columns="1"] {
  grid-template-columns: repeat(1, 1fr);
}
.icon-list[data-columns="2"] {
  grid-template-columns: repeat(2, 1fr);
}
.icon-list[data-columns="3"] {
  grid-template-columns: repeat(3, 1fr);
}
.icon-list[data-columns="4"] {
  grid-template-columns: repeat(4, 1fr);
}
.icon-list[data-columns="5"] {
  grid-template-columns: repeat(5, 1fr);
}
.icon-list[data-columns="6"] {
  grid-template-columns: repeat(6, 1fr);
}
.icon-list[data-columns="7"] {
  grid-template-columns: repeat(7, 1fr);
}
.icon-list[data-columns="8"] {
  grid-template-columns: repeat(8, 1fr);
}
.icon-list[data-columns="9"] {
  grid-template-columns: repeat(9, 1fr);
}
.icon-list[data-columns="10"] {
  grid-template-columns: repeat(10, 1fr);
}
.icon-list[data-columns="11"] {
  grid-template-columns: repeat(11, 1fr);
}
.icon-list[data-columns="12"] {
  grid-template-columns: repeat(12, 1fr);
}
.icon-list[data-rows] {
  grid-auto-flow: column;
}
.icon-list[data-rows="1"] {
  grid-template-rows: repeat(1, 1fr);
}
.icon-list[data-rows="2"] {
  grid-template-rows: repeat(2, 1fr);
}
.icon-list[data-rows="3"] {
  grid-template-rows: repeat(3, 1fr);
}
.icon-list[data-rows="4"] {
  grid-template-rows: repeat(4, 1fr);
}
.icon-list[data-rows="5"] {
  grid-template-rows: repeat(5, 1fr);
}
.icon-list[data-rows="6"] {
  grid-template-rows: repeat(6, 1fr);
}
.icon-list[data-rows="7"] {
  grid-template-rows: repeat(7, 1fr);
}
.icon-list[data-rows="8"] {
  grid-template-rows: repeat(8, 1fr);
}
.icon-list[data-rows="9"] {
  grid-template-rows: repeat(9, 1fr);
}
.icon-list[data-rows="10"] {
  grid-template-rows: repeat(10, 1fr);
}
.icon-list[data-rows="11"] {
  grid-template-rows: repeat(11, 1fr);
}
.icon-list[data-rows="12"] {
  grid-template-rows: repeat(12, 1fr);
}
.icon-list[data-rows="13"] {
  grid-template-rows: repeat(13, 1fr);
}
.icon-list[data-rows="14"] {
  grid-template-rows: repeat(14, 1fr);
}
.icon-list[data-rows="15"] {
  grid-template-rows: repeat(15, 1fr);
}
.icon-list[data-rows="16"] {
  grid-template-rows: repeat(16, 1fr);
}
.icon-list[data-rows="17"] {
  grid-template-rows: repeat(17, 1fr);
}
.icon-list[data-rows="18"] {
  grid-template-rows: repeat(18, 1fr);
}
.icon-list[data-rows="19"] {
  grid-template-rows: repeat(19, 1fr);
}
.icon-list[data-rows="20"] {
  grid-template-rows: repeat(20, 1fr);
}
.icon-list li {
  display: inline-flex;
}
.icon-list li::before {
  content: var(--icon);
  display: block;
  --icon-size: 1em;
  width: var(--icon-size);
  height: var(--icon-size);
  flex-shrink: 0;
  margin-top: 0.2em;
  margin-right: 0.6em;
  filter: var(--filter-clr-primary);
}
.icon-list li.disabled {
  color: var(--primary);
}
.icon-list li.disabled::before {
  --icon: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDUxMkEyNTYgMjU2IDAgMSAwIDI1NiAwYTI1NiAyNTYgMCAxIDAgMCA1MTJ6TTE3NSAxNzVjOS40LTkuNCAyNC42LTkuNCAzMy45IDBsNDcgNDcgNDctNDdjOS40LTkuNCAyNC42LTkuNCAzMy45IDBzOS40IDI0LjYgMCAzMy45bC00NyA0NyA0NyA0N2M5LjQgOS40IDkuNCAyNC42IDAgMzMuOXMtMjQuNiA5LjQtMzMuOSAwbC00Ny00Ny00NyA0N2MtOS40IDkuNC0yNC42IDkuNC0zMy45IDBzLTkuNC0yNC42IDAtMzMuOWw0Ny00Ny00Ny00N2MtOS40LTkuNC05LjQtMjQuNiAwLTMzLjl6Ii8+PC9zdmc+");
  filter: var(--filter-clr-primary);
}
.icon-list a {
  display: inline-flex;
}
.icon-list a::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMjAgNTEyIj48cGF0aCBkPSJNMjc4LjYgMjMzLjRjMTIuNSAxMi41IDEyLjUgMzIuOCAwIDQ1LjNsLTE2MCAxNjBjLTEyLjUgMTIuNS0zMi44IDEyLjUtNDUuMyAwcy0xMi41LTMyLjggMC00NS4zTDIxMC43IDI1NiA3My40IDExOC42Yy0xMi41LTEyLjUtMTIuNS0zMi44IDAtNDUuM3MzMi44LTEyLjUgNDUuMyAwbDE2MCAxNjB6Ii8+PC9zdmc+");
  display: block;
  --icon-size: 0.5em;
  width: var(--icon-size);
  height: var(--icon-size);
  margin-top: 0.4em;
  margin-left: 0.6em;
  line-height: 1em;
}
.icon-list.icon-list--success li::before {
  filter: var(--filter-clr-success);
}
/*** Responsive Styles Smartphone Only ***/
@media (max-width: 767px) {
  .icon-list[data-columns-m="1"] {
    grid-template-columns: repeat(1, 1fr);
  }
  .icon-list[data-columns-m="2"] {
    grid-template-columns: repeat(2, 1fr);
  }
  .icon-list[data-columns-m="3"] {
    grid-template-columns: repeat(3, 1fr);
  }
  .icon-list[data-columns-m="4"] {
    grid-template-columns: repeat(4, 1fr);
  }
  .icon-list[data-columns-m="5"] {
    grid-template-columns: repeat(5, 1fr);
  }
  .icon-list[data-columns-m="6"] {
    grid-template-columns: repeat(6, 1fr);
  }
  .icon-list[data-columns-m="7"] {
    grid-template-columns: repeat(7, 1fr);
  }
  .icon-list[data-columns-m="8"] {
    grid-template-columns: repeat(8, 1fr);
  }
  .icon-list[data-columns-m="9"] {
    grid-template-columns: repeat(9, 1fr);
  }
  .icon-list[data-columns-m="10"] {
    grid-template-columns: repeat(10, 1fr);
  }
  .icon-list[data-columns-m="11"] {
    grid-template-columns: repeat(11, 1fr);
  }
  .icon-list[data-columns-m="12"] {
    grid-template-columns: repeat(12, 1fr);
  }
}
/*** Responsive Styles Smartphone Only ***/
@media (max-width: 478px) {
  .icon-list[data-columns-s="1"] {
    grid-template-columns: repeat(1, 1fr);
  }
  .icon-list[data-columns-s="2"] {
    grid-template-columns: repeat(2, 1fr);
  }
  .icon-list[data-columns-s="3"] {
    grid-template-columns: repeat(3, 1fr);
  }
  .icon-list[data-columns-s="4"] {
    grid-template-columns: repeat(4, 1fr);
  }
  .icon-list[data-columns-s="5"] {
    grid-template-columns: repeat(5, 1fr);
  }
  .icon-list[data-columns-s="6"] {
    grid-template-columns: repeat(6, 1fr);
  }
  .icon-list[data-columns-s="7"] {
    grid-template-columns: repeat(7, 1fr);
  }
  .icon-list[data-columns-s="8"] {
    grid-template-columns: repeat(8, 1fr);
  }
  .icon-list[data-columns-s="9"] {
    grid-template-columns: repeat(9, 1fr);
  }
  .icon-list[data-columns-s="10"] {
    grid-template-columns: repeat(10, 1fr);
  }
  .icon-list[data-columns-s="11"] {
    grid-template-columns: repeat(11, 1fr);
  }
  .icon-list[data-columns-s="12"] {
    grid-template-columns: repeat(12, 1fr);
  }
}
.patrol-areas-list {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(10, 1fr);
  grid-auto-flow: column;
  gap: 0 var(--space-l);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2em;
  text-transform: none;
}
.patrol-areas-list li::before {
  font-size: 0.8em;
  margin-right: 0.8em;
}
/*** Responsive Styles Smartphone Only ***/
@media (max-width: 767px) {
  .patrol-areas-list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(19, 1fr);
  }
}
/* Fluent Forms */
.newsletter-optin-field {
  padding: 1.3rem 1.6rem 1.6rem 1.6rem;
  background-color: var(--primary-ultra-light);
}
.fluentform .newsletter-optin-field .ff-el-input--label {
  display: inline-flex;
  align-items: center;
}
.newsletter-optin-field > .ff-el-input--label::before {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNNDggNjRDMjEuNSA2NCAwIDg1LjUgMCAxMTJjMCAxNS4xIDcuMSAyOS4zIDE5LjIgMzguNEwyMzYuOCAzMTMuNmMxMS40IDguNSAyNyA4LjUgMzguNCAwTDQ5Mi44IDE1MC40YzEyLjEtOS4xIDE5LjItMjMuMyAxOS4yLTM4LjRjMC0yNi41LTIxLjUtNDgtNDgtNDhMNDggNjR6TTAgMTc2TDAgMzg0YzAgMzUuMyAyOC43IDY0IDY0IDY0bDM4NCAwYzM1LjMgMCA2NC0yOC43IDY0LTY0bDAtMjA4TDI5NC40IDMzOS4yYy0yMi44IDE3LjEtNTQgMTcuMS03Ni44IDBMMCAxNzZ6Ii8+PC9zdmc+");
  font-size: 1.3em;
  height: 1em;
  width: 1em;
  letter-spacing: 0;
  line-height: 1.2em;
  filter: var(--filter-clr-black);
  margin-right: 0.6em;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fluent-form .newsletter-optin-field label {
  display: flex;
  flex-direction: row;
  font-size: 12px;
  line-height: 1.6em;
}
.fluent-form.brxe-xfluentform[data-x-fluent-form*=smartUI] .newsletter-optin-field input[type="checkbox"] {
  min-width: 1.5em;
  margin-top: 0.4em;
}
/*---------------------------------------------*/
/*Make Woocommerce Messages Float Above Content*/
/*---------------------------------------------*/
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  position: relative;
  width: 100%;
  border: 1px solid;
  text-align: left;
  padding: 1em;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.woocommerce-message[role="alert"] {
  background-color: var(--info-hue);
  color: var(--info);
  border-color: var(--info);
}
.woocommerce-info {
  background-color: var(--success-hue);
  color: var(--success);
  border-color: var(--success);
}
.woocommerce-error[role="alert"] {
  background-color: var(--danger-hue);
  color: var(--danger);
  border-color: var(--danger);
}
.woocommerce-error {
  position: relative;
  width: 100%;
  background: #a00;
  color: var(--white);
  border: 1px solid #a00;
  text-align: left;
}
/*---------------------------------------------------*/
/*Make Woocommerce Notices Disappear After 5 Seconds*/
/*---------------------------------------------------*/
/*.woocommerce-message {*/
/*    opacity:0;*/
/*    -moz-animation:notices 5s;*/
/*    -webkit-animation:notices 5s;*/
/*    -o-animation:notices 5s;*/
/*    animation:notices 5s;*/
/*    -webkit-animation-fill-mode:forwards;*/
/*    animation-fill-mode:forwards*/
/*}*/
/*@keyframes notices {*/
/*   0% { opacity:1; } */
/*   15% { opacity:1; } */
/*   30% { opacity:1; } */
/*   45% { opacity:1; } */
/*   60% { opacity:1; }*/
/*   75% { opacity:1; }*/
/*   99% { opacity:0; }*/
/*   100% { visibiliy: hidden; }*/
/*}*/
.wcpa_form_outer {
  margin: 0;
}
/* WP Grid Builder */
.wpgb-loading {
  opacity: 0.8;
  filter: saturate(0%);
}
.wpgb-facet .wpgb-pagination {
  display: inline-flex !important;
  flex-direction: row;
  gap: 8px;
}
.wpgb-pagination-facet .wpgb-page {
  background-color: var(--base-light);
  margin: 0 !important;
}
.wpgb-facet .wpgb-pagination .wpgb-page a[aria-current="true"] {
  color: var(--white);
  background-color: var(--primary);
}
.wpgb-facet .wpgb-pagination .wpgb-page a {
  color: var(--base);
  font-weight: 700;
}
.wpgb-facet .wpgb-pagination .wpgb-page:is(:hover, :focus) a {
  font-weight: 700;
}
/*---Chips---*/
.chip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.4em 0.8em;
  border: 2px solid var(--black);
  border-radius: 100vmax;
  line-height: 1.1em;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition-duration: 0.2s;
  transition-property: all;
  transition-timing-function: ease-in-out;
}
.chip:is(:hover, :focus) {
  background-color: var(--white-hover);
  border-color: var(--gold);
  color: var(--gold);
}
/*-------------------
Post Content
----------------*/
.post-content {
  line-height: 2.4em;
}
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  margin-top: 4rem;
  margin-bottom: 1.6rem;
}
.post-content h2 {
  font-size: var(--text-l);
}
.post-content h3 {
  font-size: var(--text-m);
}
.post-content li {
  margin-bottom: 0.8rem;
}
.post-content figure {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.post-content figure img {
  width: 100%;
  border-radius: 1.6rem;
  box-shadow: var(--box-shadow--m);
  overflow: hidden;
}
/*** Responsive Styles Smartphone Only ***/
@media (max-width: 767px) {
  .post-content figure {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
/* Ivory Search */
.ivory-search .is-screen-reader-text {
  position: absolute;
  opacity: 0;
}
.ivory-search .is-form-style.is-form-style-3 {
  display: flex;
  flex-direction: row;
}
.ivory-search .is-form-style.is-form-style-3 label {
  margin-bottom: 0;
}
.ivory-search .is-form-style.is-form-style-3 input[type=search].is-search-input {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0 !important;
  background-color: var(--white);
  color: var(--black);
  font-family: "Inter";
  font-size: var(--text-l);
  letter-spacing: var(--h3-letter-spacing);
  line-height: var(--h3-line-height);
  font-weight: var(--heading-font-weight);
  padding: 0.8em 1.6em;
}
.ivory-search .is-form-style.is-form-style-3 input[type=search].is-search-input:focus {
  outline: none;
}
.ivory-search .is-form-style.is-form-style-3 button {
  display: block;
  padding: 2.4rem;
  background-color: var(--white);
}
.ivory-search .is-form-style.is-form-style-3 svg {
  width: 32px;
}
/*--- Key Features ---*/
.key-features {
  --key-features-grid-gap: var(--space-l);
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--key-features-grid-gap);
  align-items: stretch;
}
.key-features__list {
  gap: 0;
}
.key-features__item {
  --item-padding-top: var(--space-l);
  --item-padding-right: var(--space-l);
  --item-padding-bottom: var(--space-l);
  --item-padding-left: 0;
  --item-gap: var(--space-m);
  --item-transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-wrap: nowrap;
  padding: var(--item-padding-top) var(--item-padding-right) 0 var(--item-padding-left);
  transition: var(--item-transition);
}
.key-features__item.active {
  --item-padding-left: var(--space-l);
  --item-padding-right: 0;
  background-image: linear-gradient(90deg, var(--base-trans-60) 0%, rgba(255, 255, 255, 0) 100%);
}
.key-features__item.active .key-features__item-image {
  opacity: 1;
}
.key-features__item.active .key-features__item-divider {
  width: calc(100% + (var(--key-features-grid-gap) * 2));
  background-color: var(--primary);
}
.key-features__item-heading {
  font-size: var(--h3);
  margin-bottom: var(--item-gap);
}
.key-features__item-description {
  max-width: 52rem;
}
.key-features__item-image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: calc(50% - (var(--key-features-grid-gap) / 2));
  opacity: 0;
  user-select: none;
  pointer-events: none;
  transition: all 0.7s ease-in-out;
}
.key-features__item-divider {
  margin-top: var(--item-padding-top);
  margin-left: calc(0px - var(--item-padding-left));
  width: 100%;
  height: 1px;
  min-height: 0;
  max-width: unset;
  background-color: var(--white);
  transition: var(--item-transition);
}
/*** Responsive Styles Tablet And Below ***/
@media (max-width: 991px) {
  .key-features {
    grid-template-columns: 1fr;
  }
  .key-features__item {
    padding-inline: 0;
  }
  .key-features__item.active {
    background-image: unset;
  }
  .key-features__item.active .key-features__item-image {
    opacity: 1;
  }
  .key-features__item.active .key-features__item-divider {
    width: 100%;
    background-color: var(--white);
  }
  .key-features__item:first-of-type {
    padding-top: 0 !important;
  }
  .key-features__item-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1.6;
    opacity: 1;
    order: -1;
    margin-bottom: var(--item-gap);
  }
  .key-features__item-divider {
    margin-left: 0;
  }
}
/*--- Tables ---*/
.vehicle-pricing-card__table {
  border: 1px solid var(--base-trans-20);
  border-bottom: none;
}
.vehicle-pricing-card__table thead {
  background-color: var(--base-ultra-light);
}
.vehicle-pricing-card__table th {
  text-align: center !important;
}
.vehicle-pricing-card__table th, .vehicle-pricing-card__table td {
  width: 49%;
  padding: 0.8em 1.6em;
  border-bottom: 1px solid var(--base-trans-20);
}
.vehicle-pricing-card__table .price-col {
  font-weight: 700;
}
/*--- Premium Residential Patrol Schemes ---*/
/* === range theme and appearance === */
.pricing-slider {
  font-size: 1.5rem;
  width: 12.5em;
}
.pricing-slider {
  color: var(--gold) !important;
  --thumb-height: 1.3em;
  --track-height: 0.4em;
  --track-color: rgba(0, 0, 0, 0.2);
  --brightness-hover: 180%;
  --brightness-down: 80%;
  --clip-edges: 0.125em;
}
/* === range commons === */
.pricing-slider {
  position: relative;
  background: transparent;
  overflow: hidden;
}
.pricing-slider:active {
  cursor: grabbing;
}
.pricing-slider:disabled {
  filter: grayscale(1);
  opacity: 0.3;
  cursor: not-allowed;
}
/* === WebKit specific styles === */
.pricing-slider, .pricing-slider::-webkit-slider-runnable-track, .pricing-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  transition: all ease 100ms;
  height: var(--thumb-height);
}
.pricing-slider::-webkit-slider-runnable-track, .pricing-slider::-webkit-slider-thumb {
  position: relative;
}
.pricing-slider::-webkit-slider-thumb {
  --thumb-radius: calc((var(--thumb-height) * 0.5) - 1px);
  --clip-top: calc((var(--thumb-height) - var(--track-height)) * 0.5 - 0.5px);
  --clip-bottom: calc(var(--thumb-height) - var(--clip-top));
  --clip-further: calc(100% + 1px);
  --box-fill: calc(-100vmax - var(--thumb-width, var(--thumb-height))) 0 0
		100vmax currentColor;
  width: var(--thumb-width, var(--thumb-height));
  background: linear-gradient(currentColor 0 0) scroll no-repeat left center / 50% calc(var(--track-height) + 1px);
  background-color: currentColor;
  box-shadow: var(--box-fill);
  border-radius: var(--thumb-width, var(--thumb-height));
  border: 1px solid var(--dark);
  filter: brightness(100%);
  clip-path: polygon(100% -1px, var(--clip-edges) -1px, 0 var(--clip-top), -100vmax var(--clip-top), -100vmax var(--clip-bottom), 0 var(--clip-bottom), var(--clip-edges) 100%, var(--clip-further) var(--clip-further));
}
.pricing-slider:focus {
  outline: none;
}
.pricing-slider:hover::-webkit-slider-thumb {
  cursor: grab;
}
.pricing-slider:active::-webkit-slider-thumb {
  filter: brightness(var(--brightness-down));
  cursor: grabbing;
}
.pricing-slider::-webkit-slider-runnable-track {
  background: linear-gradient(var(--track-color) 0 0) scroll no-repeat center / 100% calc(var(--track-height) + 1px);
}
.pricing-slider:disabled::-webkit-slider-thumb {
  cursor: not-allowed;
}
/* === Firefox specific styles === */
.pricing-slider, .pricing-slider::-moz-range-track, .pricing-slider::-moz-range-thumb {
  appearance: none;
  transition: all ease 100ms;
  height: var(--thumb-height);
}
.pricing-slider::-moz-range-track, .pricing-slider::-moz-range-thumb, .pricing-slider::-moz-range-progress {
  background: #fff0;
}
.pricing-slider::-moz-range-thumb {
  background: currentColor;
  border: 0;
  width: var(--thumb-width, var(--thumb-height));
  border-radius: var(--thumb-width, var(--thumb-height));
  cursor: grab;
}
.pricing-slider:active::-moz-range-thumb {
  cursor: grabbing;
}
.pricing-slider::-moz-range-track {
  width: 100%;
  background: var(--track-color);
}
.pricing-slider::-moz-range-progress {
  appearance: none;
  background: currentColor;
  transition-delay: 30ms;
}
.pricing-slider::-moz-range-track, .pricing-slider::-moz-range-progress {
  height: calc(var(--track-height) + 1px);
  border-radius: var(--track-height);
}
.pricing-slider::-moz-range-thumb, .pricing-slider::-moz-range-progress {
  filter: brightness(100%);
}
.pricing-slider:hover::-moz-range-thumb, .pricing-slider:hover::-moz-range-progress {
  filter: brightness(var(--brightness-hover));
}
.pricing-slider:active::-moz-range-thumb, .pricing-slider:active::-moz-range-progress {
  filter: brightness(var(--brightness-down));
}
.pricing-slider:disabled::-moz-range-thumb {
  cursor: not-allowed;
}
.premium-patrol-pricing-slider {
  display: flex;
  flex-direction: column;
  gap: var(--space-l);
}
.premium-patrol-pricing-slider__group {
  display: flex;
  flex-direction: row;
  gap: var(--space-m);
}
.premium-patrol-pricing-slider label {
  font-weight: 700;
  color: var(--white);
}
.premium-patrol-pricing-slider select {
  font-size: var(--text-m);
  font-weight: 700;
  color: var(--black);
  background-color: var(--white);
}
#households-label {
  font-size: var(--text-l);
  font-weight: 700;
}
.premium-patrol-pricing-slider #price {
  font-size: var(--text-xl);
  font-weight: var(--heading-font-weight);
  letter-spacing: var(--h2-letter-spacing);
  line-height: var(--h2-line-height);
  color: var(--primary);
}
body {
  overflow-x: clip;
}
body.bricks-is-frontend :focus {
  outline: inherit;
}
.grecaptcha-badge {
  display: none;
}
