/**
* Theme/Project Name
* ==================
* Design: PROJECT NAME
* Author: True Market
* Version 1.0
*
* Table of Contents
* =================
Custom Properties
Mixins
Fonts
Reset
Pages
Typography
Layouts
Components

*/
:root {
  font-size: 62.5%;
  /* Colours */
  --white: #fff;
  --black: #000;
  --red: #DF1F30;
  --red-light: #ec3746;
  --red-dark: #981B1E;
  --brown: #371212;
  --brown-dark: #1C0202;
  --sand: #F8F6F3;
  /* Box Shadow */
  --box-shadow: 0 0 40px rgb(0 0 0 / 10%);
  /* Spacing */
  --bottom-spacing: 3rem;
  --padding-inline: 8rem;
  --left-spacing: 20rem;
}

@media all and (max-width: 800px) {
  :root {
    --padding-inline: 6rem;
  }
}
@media all and (max-width: 500px) {
  :root {
    --padding-inline: 3rem;
  }
}
@media all and (max-width: 375px) {
  :root {
    --padding-inline: 2rem;
  }
}
/* 
==========
Custom Font Families 
==========

Follow these steps to generate @font-face fonts (if .woff files were not provided for you, otherwise, skip to step 5)
1. Go to assets/fonts and delete everything in there.
2. Go to https://transfonter.org/ and upload the fonts that were provided to you
3. Download the kit
4. Extract the zip and copy the files in assets/fonts
5. Now simply change the urls and font names (font-family) in this file to match your new fonts. Remove unnecessary ones
6. Update typography.scss with the new fonts
*/
@font-face {
  font-family: "Barlow";
  src: local("Barlow-Regular"), local("Barlow-Regular"), url("../../fonts/Barlow-Regular.woff2") format("woff2"), url("../../fonts/Barlow-Regular.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Bold";
  src: local("Barlow-Bold"), local("Barlow-Bold"), url("../../fonts/Barlow-Bold.woff2") format("woff2"), url("../../fonts/Barlow-Bold.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Extra Bold";
  src: local("Barlow-ExtraBold"), local("Barlow-ExtraBold"), url("../../fonts/Barlow-ExtraBold.woff2") format("woff2"), url("../../fonts/Barlow-ExtraBold.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
@media screen and (max-width: 1400px) {
  .page-template-equipment .hero__graphic,
  .blog .hero__graphic {
    display: none;
  }
}

.large-text {
  font-size: var(--text-30);
  text-transform: uppercase;
  font-family: var(--font-extra-heavy);
  line-height: 1.2;
}

.red-text {
  color: var(--red);
}

.text-align-center::after {
  margin: 1rem auto;
}

.text-align-right::after {
  margin: 1rem 0;
}

.left-border {
  border-left: 3px solid var(--red);
  padding-inline-start: 5rem;
}
@media screen and (max-width: 680px) {
  .left-border {
    padding-inline-start: 2.5rem;
  }
}

.triangle-top-left {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 230px;
  z-index: 995;
}

.icon::after {
  content: "";
  display: block;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.icon--search::after {
  width: 18px;
  height: 18px;
  background-color: var(--brown-dark);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16.787 16.787"><circle cx="8" cy="8" r="7" stroke="black" stroke-width="2" fill="none"/><path d="m13.025 13.025 3.056 3.056" stroke="black" stroke-width="2"/></svg>') no-repeat center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16.787 16.787"><circle cx="8" cy="8" r="7" stroke="black" stroke-width="2" fill="none"/><path d="m13.025 13.025 3.056 3.056" stroke="black" stroke-width="2"/></svg>') no-repeat center;
}

.icon--close::after {
  width: 27px;
  height: 27px;
  background-color: var(--white);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><line x1="4" y1="4" x2="20" y2="20" stroke="black" stroke-width="2"/><line x1="20" y1="4" x2="4" y2="20" stroke="black" stroke-width="2"/></svg>') no-repeat center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><line x1="4" y1="4" x2="20" y2="20" stroke="black" stroke-width="2"/><line x1="20" y1="4" x2="4" y2="20" stroke="black" stroke-width="2"/></svg>') no-repeat center;
}

.pretitle {
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--red);
  font-family: var(--font-heavy);
  letter-spacing: 1.8px;
  margin: 0 0 1rem;
  display: inline-block;
}

.pretitle--extra-heavy {
  font-family: var(--font-extra-heavy);
  letter-spacing: 0.9px;
}

.spt-grit-texture {
  position: absolute;
  top: 50%;
  left: 0;
  transform: scaleX(-1);
  width: 600px;
  z-index: -1;
}

.spt-grit-texture--equipment-listing {
  top: 10%;
  left: auto;
  right: 0;
  transform: scaleX(1);
}

.typography {
  --base: 6vw;
  --text-12: clamp(1rem, var(--base), 1.2rem);
  --text-16: clamp(1rem, var(--base), 1.6rem);
  --text-17: clamp(1rem, var(--base), 1.7rem);
  --text-18: clamp(0.9rem, var(--base), 1.8rem);
  --text-20: clamp(1rem, var(--base), 2rem);
  --text-22: clamp(1.1rem, var(--base), 2.2rem);
  --text-25: clamp(1.2rem, var(--base), 2.5rem);
  --text-28: clamp(1.3rem, var(--base), 2.8rem);
  --text-30: clamp(1.5rem, var(--base), 3rem);
  --text-35: clamp(1.75rem, var(--base), 3.5rem);
  --text-40: clamp(2rem, var(--base), 4rem);
  --text-45: clamp(2.25rem, var(--base), 4.5rem);
  --text-50: clamp(3.4rem, var(--base), 5rem);
  --text-55: clamp(3.45rem, var(--base), 5.5rem);
  --text-60: clamp(3.5rem, var(--base), 6rem);
  --text-70: clamp(5rem, var(--base), 7rem);
  --text-80: clamp(6rem, var(--base), 8rem);
  --text-90: clamp(6rem, var(--base), 9rem);
  --font-regular: "Barlow", system-ui, sans-serif;
  --font-heavy: "Barlow Bold", system-ui, sans-serif;
  --font-extra-heavy: "Barlow Extra Bold", system-ui, sans-serif;
  font-family: var(--font-regular);
  font-size: var(--text-18);
  font-weight: normal;
  color: inherit;
}

@media all and (max-width: 1100px) {
  :root {
    font-size: 55.75%;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-extra-heavy);
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  font-size: var(--text-90);
  line-height: 0.9;
}

h2 {
  font-size: var(--text-40);
  line-height: 1;
}

h3 {
  font-size: var(--text-30);
}

h4 {
  font-size: var(--text-30);
}

h5 {
  font-size: var(--text-24);
}

h6 {
  font-size: var(--text-20);
}

p {
  line-height: 1.6;
}

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

html,
body {
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: clip;
  min-width: 300px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 10rem;
  max-width: 2250px;
  box-shadow: 0 0 25px 15px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1100px) {
  html,
  body {
    font-size: 87.5%;
  }
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
}
button:hover, button:active, button:focus {
  cursor: pointer;
}

input,
button,
textarea,
select {
  font: inherit;
}

img,
picture,
video,
canvas,
iframe,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  font-style: italic;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

#root, #__next {
  isolation: isolate;
}

.home-hero {
  background-color: var(--brown);
  color: var(--white);
  padding-block: 33rem 20rem;
  padding-inline: var(--padding-inline);
  position: relative;
}
@media screen and (max-width: 680px) {
  .home-hero {
    padding-block: 15rem 0;
    padding-inline: 0;
    display: flex;
    flex-direction: column;
  }
  .home-hero .triangle-top-left {
    display: none;
  }
}
.home-hero::before, .home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.home-hero::before {
  background: transparent linear-gradient(180deg, var(--brown-dark) 0%, rgba(28, 2, 2, 0) 100%) 0% 0%;
  height: 420px;
  opacity: 0.95;
  z-index: 1;
}
.home-hero::after {
  background: linear-gradient(70deg, rgb(28, 2, 2) 25%, rgba(28, 2, 2, 0) 60%);
  opacity: 0.98;
}
@media screen and (max-width: 680px) {
  .home-hero::after {
    background: linear-gradient(0deg, rgb(28, 2, 2) 5%, rgba(28, 2, 2, 0) 20%);
  }
}

.home-hero__images {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
@media screen and (max-width: 680px) {
  .home-hero__images {
    order: 2;
    position: static;
  }
}
.home-hero__images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 500px) {
  .home-hero__images img {
    aspect-ratio: 4/3;
  }
}

.home-hero__wrapper {
  position: relative;
}
@media screen and (max-width: 680px) {
  .home-hero__wrapper::after {
    content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 230.596 713.979"><path d="M230.596 713.979V1.902L1.917 713.979z" style="fill:%23371212"/></svg>');
    position: absolute;
    bottom: 0;
    right: 0;
    width: 110px;
    z-index: 1;
  }
}

.home-hero__container {
  margin-inline-start: 16rem;
  max-width: 500px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 680px) {
  .home-hero__container {
    padding-inline: var(--padding-inline);
    margin-inline: auto;
    margin-block-end: 7rem;
  }
}

.home-hero__title {
  margin: 0 0 4rem;
}

.home-hero__subtext {
  margin-block-end: 4.5rem;
}
@media screen and (max-width: 1100px) {
  .home-hero__subtext {
    max-width: 350px;
  }
}
.home-hero__subtext p:last-child {
  margin: 0;
}

.home-hero__featured-text {
  text-transform: uppercase;
  color: var(--red);
  font-family: var(--font-heavy);
  letter-spacing: 1.8px;
}

.home-decoration-line {
  position: relative;
}
.home-decoration-line::before {
  content: "";
  position: absolute;
  left: 15rem;
  width: 3px;
  background-color: var(--red);
  z-index: 1;
}

.home-decoration-line--key-stats::before {
  height: 240px;
  top: -6rem;
}
@media screen and (max-width: 1100px) {
  .home-decoration-line--key-stats::before {
    display: none;
  }
}

.home-decoration-line--kvp::before {
  height: 375px;
  top: -9rem;
}
@media screen and (max-width: 800px) {
  .home-decoration-line--kvp::before {
    display: none;
  }
}

.home-decoration-line--equipment::before {
  height: 254px;
  top: -13.25rem;
}
@media screen and (max-width: 1100px) {
  .home-decoration-line--equipment::before {
    display: none;
  }
}

.post-list {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1300px) {
  .post-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 680px) {
  .post-list {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 680px) {
  .page-our-team .post-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .page-our-team .post-list {
    grid-template-columns: 1fr;
  }
}

.page-404 {
  display: grid;
  place-content: center;
  padding-block: 26rem 20rem;
  background-color: var(--brown);
  color: var(--white);
  position: relative;
}
@media screen and (max-width: 680px) {
  .page-404 {
    padding-block: 14rem;
  }
}
.page-404::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, var(--black) 0%, rgba(28, 2, 2, 0) 100%);
  height: 225px;
  pointer-events: none;
}

.page-404__container {
  text-align: center;
  position: relative;
  z-index: 5;
  padding-inline: var(--padding-inline);
}

.page-404__error {
  font-size: clamp(9rem, 8vw, 12rem);
  font-family: var(--font-heavy);
  margin: 0 0 3rem;
  line-height: 0.8;
}

.page-404__title {
  margin: 0 0 3rem;
  font-family: var(--font-regular);
  font-size: clamp(4rem, 6vw, 6rem);
}

.page-404__text {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.tm-search-results {
  max-width: none;
  margin-inline-start: 0;
}

.search-result {
  display: block;
  text-decoration: none;
  color: var(--brown-dark);
  margin-block-end: 6rem;
}

.search-result__title {
  margin: 0 0 2rem;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--brown);
  z-index: 990;
  pointer-events: none;
  transform: translateX(-100%);
  width: 120%;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  transition: transform 0.75s ease;
}

body.is-transitioning::before {
  transform: translateX(0);
}

.tm-container--equipment {
  margin-block-start: -3.9rem;
  margin-inline-start: var(--left-spacing);
  max-width: 1600px;
  padding-block-end: 6rem;
}
@media screen and (max-width: 1700px) {
  .tm-container--equipment {
    margin-inline-start: 10rem;
  }
}
@media screen and (max-width: 1100px) {
  .tm-container--equipment {
    margin-block-start: -3.8rem;
    margin-inline-start: 4rem;
  }
}
@media screen and (max-width: 680px) {
  .tm-container--equipment {
    margin-inline-start: 0;
  }
}
@media screen and (max-width: 500px) {
  .tm-container--equipment {
    margin-block-start: -6.5rem;
  }
}

.equipment-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 1100px) {
  .equipment-products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 960px) {
  .equipment-products {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 680px) {
  .equipment-products {
    grid-template-columns: 1fr;
  }
}

.equipment-products--loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 14rem;
}

.spinner {
  width: 3rem;
  height: 3rem;
  border: 3px solid var(--sand);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spinner-rotate 0.75s linear infinite;
}

@keyframes spinner-rotate {
  to {
    transform: rotate(360deg);
  }
}
.load-more-button {
  margin-inline: auto;
  margin-block-start: 3rem;
}

.search-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  margin-block-end: 6rem;
}

.seach-bar__search {
  width: 100%;
  flex: 30%;
}

.seach-bar__input {
  width: 100%;
  margin: 0;
}
.seach-bar__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
          appearance: none;
  background-image: url("../../images/icon-close-black.svg");
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  background-size: contain;
  cursor: pointer;
  margin-inline-start: 1rem;
}

.page-template-equipment .spt__cta--equipment-template {
  display: flex;
  align-items: flex-start;
  padding-block: 15rem;
}
@media screen and (max-width: 1300px) {
  .page-template-equipment .spt__cta--equipment-template {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6rem;
    padding-inline: 12rem;
  }
}
@media screen and (max-width: 800px) {
  .page-template-equipment .spt__cta--equipment-template {
    padding-block: 10rem 8rem;
  }
}
@media screen and (max-width: 500px) {
  .page-template-equipment .spt__cta--equipment-template {
    padding-inline: 6rem;
  }
}
@media screen and (max-width: 375px) {
  .page-template-equipment .spt__cta--equipment-template {
    padding-inline: 4rem;
  }
}
.page-template-equipment .spt__cta--equipment-template .spt__cta-container {
  margin-inline-start: var(--inline-margin);
}
@media screen and (max-width: 1700px) {
  .page-template-equipment .spt__cta--equipment-template .spt__cta-container {
    padding-inline-end: var(--inline-padding);
  }
}
@media screen and (max-width: 1300px) {
  .page-template-equipment .spt__cta--equipment-template .spt__cta-container {
    margin-inline-start: auto;
    padding-inline-end: 0;
  }
}
@media screen and (max-width: 800px) {
  .page-template-equipment .spt__cta--equipment-template .spt__cta-flex {
    margin-block-end: 0;
    justify-content: center;
  }
}
@media screen and (max-width: 680px) {
  .page-template-equipment .spt__cta--equipment-template .spt__cta-flex {
    margin: 0;
  }
}
.page-template-equipment .spt__cta--equipment-template .spt__cta-title {
  font-size: var(--text-70);
  max-width: 665px;
}
@media screen and (max-width: 1300px) {
  .page-template-equipment .spt__cta--equipment-template .spt__cta-text {
    margin-inline: auto;
  }
}

.spt__columns {
  display: flex;
  align-items: flex-start;
  gap: clamp(4rem, 6vw, 8rem);
  text-align: center;
  margin-inline-end: 10%;
}
@media screen and (max-width: 1300px) {
  .spt__columns {
    margin-inline-end: 0;
  }
}
@media screen and (max-width: 800px) {
  .spt__columns {
    flex-direction: column;
  }
}

.spt__column-image {
  height: 68px;
  max-width: 75px;
  margin: 0 auto 3.5rem;
}
.spt__column-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.spt__column {
  max-width: 290px;
}

.spt__column-title {
  font-size: var(--text-25);
  margin: 0 0 2rem;
  line-height: 1.2;
}

.spt__column-text {
  margin: 0 0 3rem;
}

.equipment-template-default,
.page-template-equipment,
.single-team-member {
  --inline-margin: 18rem;
  --inline-padding: 4rem;
}
@media screen and (max-width: 680px) {
  .equipment-template-default,
  .page-template-equipment,
  .single-team-member {
    --inline-margin: 0;
  }
}

.red-bar {
  position: relative;
  width: 780px;
  max-width: 80%;
  height: 65px;
  background-color: var(--red);
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
  margin-block-start: -4rem;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .red-bar {
    height: 50px;
    margin-block-start: -3rem;
  }
}

.spt-wrapper {
  position: relative;
}

.spt {
  padding-block: 10rem;
  margin-inline: auto;
  max-width: 1400px;
}
@media screen and (max-width: 1700px) {
  .spt {
    margin-inline-start: var(--inline-margin);
    padding-inline-end: var(--inline-padding);
  }
}
@media screen and (max-width: 680px) {
  .spt {
    padding-inline: 4rem;
    padding-block-start: 6rem;
  }
}
@media screen and (max-width: 375px) {
  .spt {
    padding-inline: 3rem;
  }
}
.spt .spt__specs-item:last-child .spt__specs-text ul {
  margin-block-end: 0;
}

.spt__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-block-end: 4rem;
}

.spt__category {
  margin: 0;
}

.spt__back {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
  color: var(--red);
  text-transform: uppercase;
  font-family: var(--font-extra-heavy);
  letter-spacing: 0.9px;
}
@media screen and (max-width: 960px) {
  .spt__back {
    display: none;
  }
}
.spt__back::before {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 20 34"><path stroke="%23DF1F30" stroke-width="4" d="m18.156 32.077-16-15.5 16-15.5"/></svg>');
  display: block;
  width: 8px;
  transition: transform 0.2s ease;
}
.spt__back:hover::before {
  transform: translateX(-3px);
}

.spt__content {
  display: flex;
  align-items: flex-start;
  gap: clamp(4rem, 6vw, 10rem);
}
@media screen and (max-width: 960px) {
  .spt__content {
    flex-direction: column;
    gap: 4rem;
  }
}

.spt__main {
  flex: 50%;
}

.spt__description {
  margin-block-end: 6rem;
}
.spt__description p:last-child {
  margin-block-end: 0;
}
@media screen and (max-width: 960px) {
  .spt__description {
    margin-block-end: 3rem;
  }
}

.spt__title {
  font-size: var(--text-70);
  margin: 0;
  color: var(--brown-dark);
}

.spt__sidebar {
  overflow: hidden;
  flex: 80%;
}
@media screen and (max-width: 960px) {
  .spt__sidebar {
    width: 100%;
  }
}
@media screen and (max-width: 680px) {
  .spt__sidebar {
    overflow: visible;
  }
}

.spt__button {
  margin-block-end: 8rem;
}
@media screen and (max-width: 960px) {
  .spt__button {
    margin-block-end: 5rem;
  }
}

.spt__specs {
  padding-block-start: 8rem;
  border-top: 2px solid rgba(0, 0, 0, 0.07);
}
@media screen and (max-width: 960px) {
  .spt__specs {
    padding-block-start: 5rem;
  }
}

.spt__specs-item {
  margin-block-end: 4rem;
}

.spt__specs-title {
  margin-block-end: 3rem;
}

.spt__disclaimer {
  padding: 2rem;
  background-color: var(--sand);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block: 2rem 6rem;
}
.spt__disclaimer p {
  margin: 0;
}

.spt__info-badge {
  display: flex;
  align-items: flex-start;
  gap: 6rem;
  padding: 3rem 4rem;
  border: 3px solid var(--sand);
}
@media screen and (max-width: 1400px) {
  .spt__info-badge {
    flex-direction: column;
    gap: 3rem;
  }
}

.spt__info-badge-content {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}

.info-badge__icon {
  max-width: 45px;
}

.spt__info-badge-title {
  font-size: var(--text-40);
  margin: 0;
}

.spt__info-badge-text ul:last-child {
  margin-block-end: 0;
}
.spt__info-badge-text ul li:first-child {
  margin-block-start: 0;
}

.spt__cta {
  background-color: var(--brown-dark);
  color: var(--white);
  padding-block: 12rem 14.5rem;
  position: relative;
  background-image: url("../../images/texture-grit-on-dark-brown.jpg");
  background-repeat: no-repeat;
  background-size: 900px;
  background-position: bottom right;
}
@media screen and (max-width: 1100px) {
  .spt__cta {
    padding-block: 8rem 16rem;
  }
}
@media screen and (max-width: 800px) {
  .spt__cta {
    margin-block-end: 4rem;
    padding-block: 8rem 0;
    padding-inline: 6rem;
  }
}
@media screen and (max-width: 500px) {
  .spt__cta {
    padding-inline: 4rem;
  }
  .spt__cta br {
    display: none;
  }
}
.spt__cta::before {
  content: url("../../images/angle-top-left-red.svg");
  position: absolute;
  top: 0;
  left: 0;
  width: 130px;
}
@media screen and (max-width: 1100px) {
  .spt__cta::before {
    width: 90px;
  }
}
@media screen and (max-width: 680px) {
  .spt__cta::before {
    width: 50px;
  }
}
.spt__cta::after {
  content: url("../../images/angle-bottom-right.svg");
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 70px;
}
@media screen and (max-width: 500px) {
  .spt__cta::after {
    width: 40px;
  }
}

.spt__cta--no-locations {
  margin-block-end: 10rem;
}

.spt__mobile-header-image {
  display: none;
}
@media screen and (max-width: 960px) {
  .spt__mobile-header-image {
    display: block;
    margin-block-end: 4rem;
    width: 100%;
    max-width: 400px;
    border: 3px solid var(--sand);
  }
}
@media screen and (max-width: 800px) {
  .spt__mobile-header-image {
    max-width: 100%;
  }
}

.spt__cta-container {
  margin-inline: auto;
  max-width: 1400px;
}
@media screen and (max-width: 1700px) {
  .spt__cta-container {
    margin-inline-start: var(--inline-margin);
    padding-inline-end: var(--inline-padding);
  }
}
@media screen and (max-width: 800px) {
  .spt__cta-container {
    padding-inline-end: 0;
    margin-inline-start: auto;
  }
}

.spt__cta-title {
  font-size: var(--text-55);
  max-width: 795px;
  margin: 0 0 3rem;
}
@media screen and (max-width: 800px) {
  .spt__cta-title {
    text-align: center;
    margin: 0 0 3rem;
  }
}

.spt__cta-text {
  color: var(--red);
  font-size: var(--text-25);
  font-family: var(--font-heavy);
  margin: 0;
}

.spt__cta-flex {
  display: flex;
  align-items: center;
  max-width: 680px;
  gap: 6rem;
}
@media screen and (max-width: 800px) {
  .spt__cta-flex {
    gap: 3rem;
    margin-block-end: 8rem;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

.spt__cta-graphic {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 280px;
}
@media screen and (max-width: 1400px) {
  .spt__cta-graphic {
    width: 240px;
  }
}
@media screen and (max-width: 1100px) {
  .spt__cta-graphic {
    width: 180px;
    right: 8%;
  }
}
@media screen and (max-width: 800px) {
  .spt__cta-graphic {
    position: static;
    margin-inline: auto;
  }
}

.locations-cta {
  margin-block-start: 3rem;
}

@media screen and (max-width: 1600px) {
  .single-post {
    --left-spacing: 12rem;
  }
}
.single-post .page-wrapper .tm-container {
  margin-inline: auto;
}
@media screen and (max-width: 1600px) {
  .single-post .page-wrapper .tm-container {
    margin-inline-start: 6rem;
  }
}
@media screen and (max-width: 1100px) {
  .single-post .page-wrapper .tm-container {
    margin-inline-start: 4rem;
  }
}
@media screen and (max-width: 680px) {
  .single-post .page-wrapper .tm-container {
    margin-inline-start: 0;
  }
}

.spt--team-member {
  display: flex;
  align-items: center;
  gap: 6rem;
}
@media screen and (max-width: 1100px) {
  .spt--team-member {
    --inline-margin: 12rem;
  }
}
@media screen and (max-width: 680px) {
  .spt--team-member {
    --inline-margin: 0;
  }
}
@media screen and (max-width: 800px) {
  .spt--team-member {
    flex-direction: column;
    gap: 3rem;
  }
}

.spt__title {
  margin-block-end: 3rem;
}

.team-member__image {
  border: 3px solid var(--sand);
  aspect-ratio: 4/3;
  flex: 50%;
}
.team-member__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.team-member__content {
  flex: 50%;
}

:root {
  --max-width: 1480px;
}

.tm-container {
  max-width: var(--max-width);
  padding-inline: var(--padding-inline);
}

.tm-container--center {
  margin: 0 auto;
}

.page-wrapper,
.flexible-layout-wrapper {
  position: relative;
}
@media screen and (max-width: 500px) {
  .page-wrapper,
  .flexible-layout-wrapper {
    padding-block-start: 4rem;
  }
}
.page-wrapper::before,
.flexible-layout-wrapper::before {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 229.745 713.085"><path d="M228.678 0H0v712.073z" style="fill:%231C0202"/></svg>');
  width: 90px;
  position: absolute;
  top: -1px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 1100px) {
  .page-wrapper::before,
  .flexible-layout-wrapper::before {
    width: 50px;
  }
}
@media screen and (max-width: 680px) {
  .page-wrapper::before,
  .flexible-layout-wrapper::before {
    display: none;
  }
}

.page-wrapper--search {
  padding-block-start: 8rem;
}
.page-wrapper--search .tm-container--equipment {
  margin-block-start: 0;
}

.page-wrapper--archive {
  padding-block: 6rem;
}

.page-wrapper--archive {
  margin-block-start: -10rem;
}

.page-wrapper--single {
  padding-block: 8rem 6rem;
}
@media screen and (max-width: 680px) {
  .page-wrapper--single {
    padding-block-start: 6rem;
  }
}

.block-wrapper {
  margin: 0 0 3rem;
  position: relative;
  z-index: 1;
}

.flexible-layout-container {
  margin-block-end: 8rem;
}

.dropdown {
  --padding: 3rem;
  margin-block-end: 1rem;
  transition: all 0.3s ease;
  background-color: var(--sand);
}
.dropdown:last-child {
  margin-block-end: 0;
}
.dropdown::marker {
  content: none;
}
.dropdown[open] .dropdown__icon {
  transform: rotate(45deg);
}

.dropdown::details-content {
  display: block;
  block-size: 0;
  overflow: hidden;
  transition-timing-function: ease;
  transition-property: block-size, content-visibility, opacity;
  transition-duration: 0.3s;
  transition-behavior: allow-discrete;
  opacity: 0;
}

.dropdown[open]::details-content,
.dropdown--is-active::details-content {
  block-size: auto;
  block-size: calc-size(auto, size);
  opacity: 1;
}

.dropdown__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  cursor: pointer;
  outline: thin;
  padding-inline: 3rem;
  padding-block: 2rem;
  font-size: var(--text-25);
  font-family: var(--font-extra-heavy);
  text-transform: uppercase;
}

.dropdown__icon {
  display: block;
  width: 20px;
  stroke: var(--red);
  stroke-width: 2px;
  transition: transform 0.2s ease;
}

.dropdown__content {
  transition: all 0.3s ease;
  padding: 1rem clamp(2.5rem, 6vw, 10rem) 3rem 3rem;
}
.dropdown__content p {
  margin: 0 0 1rem;
}
.dropdown__content p:last-child {
  margin: 0;
}

.dropdown__inner {
  border-left: 3px solid var(--red);
  padding-inline-start: 2.5rem;
}

.embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  margin-block-end: var(--bottom-spacing);
}
@media screen and (max-width: 1100px) {
  .embed {
    aspect-ratio: 16/12;
  }
}
@media screen and (max-width: 500px) {
  .embed {
    aspect-ratio: 12/16;
  }
}

.embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: unset;
}

.quote {
  position: relative;
  padding: 6rem;
  padding-block-end: 10rem;
  clear: both;
  margin: 0;
  margin-block-end: var(--bottom-spacing);
  background-image: url("../../images/texture-grit-footer.jpg");
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: bottom right;
  background-color: var(--brown-dark);
  color: var(--white);
}
@media screen and (max-width: 500px) {
  .quote {
    padding: 4rem;
  }
}
.quote p {
  margin: 0 0 1rem;
}
.quote p:last-child {
  margin-block-end: 0;
}
.quote h2,
.quote h3,
.quote h4 {
  margin: 0;
  margin-block-end: 1.5rem;
}
.quote::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 230.596 713.979"><path d="M230.596 713.979V1.902L1.917 713.979z" style="fill:%23fff"/></svg>');
  position: absolute;
  bottom: -5px;
  right: -1px;
  width: clamp(40px, 8vw, 75px);
}

.quote__content {
  font-size: var(--text-30);
  max-width: 720px;
  position: relative;
}
.quote__content p {
  line-height: 1.2;
}

.quote__attribution {
  display: block;
  font-style: normal;
  font-family: var(--font-extra-heavy);
  font-size: var(--text-16);
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1.12px;
  margin-block-start: 3.5rem;
  position: relative;
}

.quote__graphic {
  position: absolute;
  bottom: 0;
  right: 8rem;
  width: clamp(100px, 14vw, 185px);
}

/**  List Styles **/
.text-block {
  clear: both;
}
.text-block ul,
.text-block ol {
  list-style: none;
  padding: 0;
  clear: both;
  margin: 0;
  margin-block-end: var(--bottom-spacing);
}
.text-block ul:last-child,
.text-block ol:last-child {
  margin-block-end: 0;
}
.text-block ul ul,
.text-block ul ol,
.text-block ol ul,
.text-block ol ol {
  margin-block-start: 1rem !important;
  padding-inline-start: 2.5rem;
}
.text-block ul ul li,
.text-block ul ol li,
.text-block ol ul li,
.text-block ol ol li {
  border-bottom: none;
  padding-block-end: 0;
  padding-inline-start: 0;
}
.text-block ul li,
.text-block ol li {
  position: relative;
  margin: 1.5rem 0 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.07);
  padding-block-end: 1.5rem;
}
.text-block ul li:last-child,
.text-block ol li:last-child {
  border-bottom: none;
}
.text-block ul li {
  padding-inline-start: 2rem;
}
.text-block ul li::before {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.87 17.8"><g data-name="Layer 2"><path style="fill:%23DF1F30" d="m0 2.12 6.59 6.91-6.51 6.61 2.19 2.16 8.6-8.73L2.22 0 0 2.12z" data-name="Layer 1"/></g></svg>');
  display: block;
  position: absolute;
  left: 0;
  width: 8px;
}
.text-block ul li ul {
  margin: 0;
  list-style: disc;
}
.text-block ul li ul li::before {
  display: none;
}
.text-block ul li ul ul {
  list-style: circle;
}
.text-block ol {
  counter-reset: item;
}
.text-block ol li {
  counter-increment: item;
  padding-inline-start: 4rem;
}
.text-block ol li::before {
  content: counter(item);
  display: block;
  position: absolute;
  left: 0;
  top: 0.25rem;
  padding-block: 0.25rem;
  padding-inline-end: 1rem;
  line-height: 0.8;
  border-right: 2px solid var(--red);
  font-family: var(--font-extra-heavy);
  color: var(--red);
  width: 25px;
}
.text-block ol ol {
  margin: 0;
  list-style: lower-latin;
}
.text-block ol ol li::before {
  display: none;
}
.text-block ol ol ol {
  list-style: lower-roman;
}

/**  Text Styles **/
.text-block h2,
.text-block h3,
.text-block h4,
.text-block h5 {
  margin-block-start: 4rem;
  margin-block-end: 3rem;
}
.text-block h2,
.text-block h3,
.text-block h4 {
  position: relative;
}
.text-block h2::after,
.text-block h3::after,
.text-block h4::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  margin-block-start: 1.8rem;
  background-color: var(--red);
}
.text-block a:not(.button) {
  color: var(--red);
}
.text-block *:first-child:not(.alignleft, .alignright) {
  margin-block-start: 0;
}
.text-block img:first-child {
  margin-block-start: 0;
}

.text-block--no-underline h2::after,
.text-block--no-underline h3::after,
.text-block--no-underline h4::after {
  display: none;
}

.image-block {
  margin-block-end: var(--bottom-spacing);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.image-block a {
  display: inline-block;
}
.image-block img {
  -o-object-fit: cover;
     object-fit: cover;
}
.image-block figcaption {
  font-style: italic;
  font-size: var(--text-16);
  padding: 0.5rem;
}

.image-block--ratio-default img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.image-block--ratio-landscape img {
  aspect-ratio: 4/3;
}

.image-block--ratio-wide-landscape img {
  aspect-ratio: 16/9;
}

.image-block--ratio-square img {
  aspect-ratio: 1/1;
}

.image-block__triangle {
  position: absolute;
}

.image-block__triangle--top-left {
  top: 0;
  left: 0;
  width: clamp(30px, 6vw, 60px);
}

.image-block__triangle--bottom-right {
  bottom: -1px;
  right: 0;
  width: clamp(40px, 8vw, 100px);
}

.image-block--gradient::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  right: 0;
  height: 40%;
  background: transparent linear-gradient(180deg, rgba(223, 31, 48, 0) 0%, rgba(223, 31, 48, 0.9019607843) 100%) 0% 0% no-repeat padding-box;
}

.spacer {
  display: block;
  clear: both;
}

.button-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-block-end: var(--bottom-spacing);
}

.button-group--align-center {
  justify-content: center;
}

.button-group--align-right {
  justify-content: flex-end;
}

.media {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  padding: 4rem 3rem;
  cursor: pointer;
}
@media screen and (max-width: 500px) {
  .media {
    padding: 3rem;
    gap: 2rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
.media:hover .media__icon {
  transform: scale(1.05);
}
.media a {
  color: inherit;
  flex: 50;
  text-decoration: none;
}

.media__icon {
  transition: all 0.3s ease;
}
.media__icon svg {
  fill: var(--brown);
}

.media__icon-inner {
  fill: var(--white);
}

.media--pdf .media__icon {
  width: 75px;
}
@media screen and (max-width: 500px) {
  .media--pdf .media__icon {
    width: 50px;
  }
}

.media--video .media__icon {
  width: 90px;
}
@media screen and (max-width: 500px) {
  .media--video .media__icon {
    width: 60px;
  }
}
@media screen and (max-width: 360px) {
  .media--video .media__icon {
    width: 40px;
  }
}

.media__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

@media screen and (max-width: 500px) {
  .media__pretitle {
    display: none;
  }
}

.media__pretitle--mobile {
  display: none;
  margin-block-end: 0;
}
@media screen and (max-width: 500px) {
  .media__pretitle--mobile {
    display: block;
  }
}

.media__title {
  margin: 0;
  font-size: var(--text-30);
}

.media__icon-video-play-bg {
  fill: var(--brown);
}

.media__icon-video-play {
  fill: var(--white);
}

.button {
  --cut: 15px;
  display: inline-block;
  padding: 1.1rem 3.5rem;
  clear: both;
  background-color: var(--red);
  font-size: var(--text-17);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.85px;
  font-family: var(--font-heavy);
  position: relative;
  clip-path: polygon(var(--cut) 0, 100% 0, calc(100% - var(--cut)) 100%, 0% 100%);
  color: var(--white);
  transition: all 0.3s ease;
}
.button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -25%;
  transform: skew(-20deg);
  width: 0;
  background-color: var(--red-dark);
  transition: width 0.4s ease;
  z-index: -1;
}
.button:hover::before, .button:focus::before, .button:active::before {
  width: 130%;
}

.button--secondary {
  clip-path: none;
  background: transparent;
  z-index: 0;
  transform: skew(-20deg);
  overflow: hidden;
  color: var(--red);
}
.button--secondary span {
  display: inline-block;
  transform: skew(20deg);
}
.button--secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid var(--red);
  z-index: -1;
}
.button--secondary:hover, .button--secondary:focus, .button--secondary:active {
  color: var(--white);
}

.button--white {
  color: var(--white);
}

.article {
  overflow: hidden;
  width: 100%;
  max-width: 620px;
  background-color: var(--sand);
  border: 3px solid var(--sand);
  transition: border 0.3s ease;
}
.article a {
  text-decoration: none;
}
.article hr {
  display: block;
  margin: 2rem 0;
  border: none;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.article--equipment a {
  color: inherit;
}
.article--equipment:hover {
  border-color: var(--red);
}

.article--team-member .article__image {
  aspect-ratio: 1/1.15;
}
@media screen and (max-width: 500px) {
  .article--team-member .article__image {
    aspect-ratio: 4/4.5;
  }
}
.article--team-member .article__title {
  margin: 0 0 1rem;
}

.article__job-title {
  line-height: 1.2;
}

.article__categories {
  margin-block-end: 2rem;
}

.article__pet-box {
  margin: 1rem 0 0;
}

.article__owner,
.article__breed {
  margin: 0;
  font-size: var(--text-14);
  color: var(--brown);
}

.article__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--white);
}
.article__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.article__image--equipment img {
  -o-object-fit: contain;
     object-fit: contain;
}

.article__body {
  padding: 4rem;
}
@media screen and (max-width: 680px) {
  .article__body {
    padding: 2.5rem;
  }
}

.article__title {
  margin: 0 0 2rem;
  font-size: var(--text-30);
  line-height: 1;
}
.article__title a {
  color: var(--brown);
}

.article__subtext {
  display: inline-block;
}

.article__category {
  color: var(--red);
}
.article__category::after {
  content: ", ";
}
.article__category:last-child::after {
  display: none;
}

.article__excerpt {
  margin: 0;
}
.article__excerpt p {
  margin: 0 0 1rem;
}
.article__excerpt p:last-child {
  margin: 0;
}

.article__button {
  display: inline-block;
  margin: 2rem 0 0;
}

.article__footer-item {
  margin: 0;
}

.article__footer-item-label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.article__footer-item--availability .article__footer-item-label::before {
  content: url("../../images/icon-check-circle.svg");
  display: inline-block;
  width: 18px;
  transform: translateY(0.2rem);
}
.article__footer-item--availability .article__footer-item-list::after {
  content: " or ";
}
.article__footer-item--availability .article__footer-item-list:last-child::after {
  display: none;
}

.article__footer-item--location .article__footer-item-label::before {
  content: url("../../images/icon-pin.svg");
  display: inline-block;
  width: 15px;
  transform: translateY(0.3rem);
}
.article__footer-item--location .article__footer-item-list::after {
  content: ", ";
}
.article__footer-item--location .article__footer-item-list:last-child::after {
  display: none;
}

.footer {
  --footer-left-spacing: 24.5rem;
  --left-offset: 8rem;
  --cut: 230px;
  font-size: var(--text-18);
  background-image: url("../../images/texture-grit-onsand.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-color: var(--sand);
  padding-block-start: 14.5rem;
}
@media screen and (max-width: 1100px) {
  .footer {
    --cut: 170px;
    --footer-left-spacing: 8rem;
    --left-offset: 14rem;
  }
}

.footer__menu {
  margin-block-end: 6rem;
}

.footer__menu-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin-inline-start: var(--footer-left-spacing);
  padding-inline-end: 12rem;
  padding-block-end: 2rem;
  overflow: auto;
}
@media screen and (max-width: 1700px) {
  .footer__menu-columns {
    --footer-left-spacing: 8rem;
  }
}
@media screen and (max-width: 500px) {
  .footer__menu-columns {
    --footer-left-spacing: 4rem;
  }
}
@media screen and (max-width: 1300px) {
  .footer__menu-columns {
    gap: 3rem;
    padding-inline-end: 4rem;
  }
}
@media screen and (max-width: 680px) {
  .footer__menu-columns {
    display: flex;
  }
}

@media screen and (max-width: 1300px) {
  .footer__menu-column {
    min-width: 200px;
  }
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__column-title {
  font-size: var(--text-25);
  color: var(--brown);
  margin: 0 0 2.5rem;
}
.footer__column-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--red);
  margin: 1rem 0;
}

.footer__link {
  color: var(--brown-dark);
  margin: 0 0 1rem;
}
.footer__link a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__link a:hover {
  color: var(--red);
}

.footer__svg-mask {
  position: absolute;
  top: 0;
  left: 0;
}

.footer__container {
  background-color: var(--brown-dark);
  padding-block: 13rem 0;
  padding-inline: calc(var(--footer-left-spacing) + var(--left-offset)) 0;
  margin-inline-start: calc(var(--left-offset) * -1);
  color: var(--white);
  position: relative;
  margin-top: -1px;
  transform: translateZ(0);
  background-image: url("../../images/texture-grit-footer.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  -webkit-mask-image: linear-gradient(#000 0 0), url("../../images/angle-top-left.svg");
          mask-image: linear-gradient(#000 0 0), url("../../images/angle-top-left.svg");
  -webkit-mask-size: 100% 100%, 240px 660px;
          mask-size: 100% 100%, 240px 660px;
  -webkit-mask-position: 0 0, top left;
          mask-position: 0 0, top left;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
  .footer__container {
    -webkit-mask-size: 100% 100%, 240px 540px;
            mask-size: 100% 100%, 240px 540px;
  }
}
@media screen and (max-width: 800px) {
  .footer__container {
    flex-direction: column;
    align-items: flex-start;
    padding-inline-end: 4rem;
    -webkit-mask-size: 100% 100%, 180px 540px;
            mask-size: 100% 100%, 180px 540px;
  }
}
.footer__container::before {
  content: "";
  position: absolute;
  top: 18%;
  bottom: 0;
  left: 6rem;
  width: 60px;
  background-color: var(--red);
  transform: skew(-18.5deg);
}
@media screen and (max-width: 1100px) {
  .footer__container::before {
    display: none;
  }
}

.footer__content {
  padding-block-end: 12rem;
}

.footer__image {
  max-width: 740px;
  width: 100%;
  margin-inline-end: -6rem;
}
@media screen and (max-width: 800px) {
  .footer__image {
    margin-inline-end: 0;
    transform: translateX(10rem);
  }
}

.footer__logo {
  display: block;
  max-width: 400px;
  width: 100%;
  margin-block-end: 8.5rem;
}

.footer__extra-links {
  display: flex;
  align-items: center;
  margin-block-end: 6rem;
}
@media screen and (max-width: 800px) {
  .footer__extra-links {
    flex-wrap: wrap;
  }
}

.footer__extra-link {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-heavy);
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: inherit;
  text-decoration: none;
}
.footer__extra-link img {
  width: 32px;
}

.footer__contact {
  display: flex;
  align-items: flex-start;
  margin-block-end: 4rem;
}
@media screen and (max-width: 500px) {
  .footer__contact {
    flex-direction: column;
  }
}
.footer__contact p {
  margin: 0;
}

.footer__extra-links,
.footer__contact {
  -moz-column-gap: 7.5rem;
       column-gap: 7.5rem;
  row-gap: 3rem;
}

.footer__contact-title {
  color: var(--red);
  font-size: var(--text-18);
  letter-spacing: 0.9px;
  text-transform: uppercase;
  margin: 0 0 1.4rem;
}

.footer__contact-item {
  display: block;
  color: inherit;
  text-decoration: none;
}

.footer__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  row-gap: 2rem;
  font-size: var(--text-16);
}
@media screen and (max-width: 500px) {
  .footer__meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer__meta a,
.footer__meta p,
.footer__meta h2 {
  font-family: var(--font-regular);
  color: inherit;
  text-decoration: none;
  font-size: var(--text-16);
  text-transform: none;
  font-weight: normal;
  margin: 0;
  line-height: 1;
}

.footer__truemarket {
  font-size: inherit;
}

form input,
form textarea,
form select {
  display: block;
  padding: 1rem;
  width: 100%;
  font-size: inherit;
  color: inherit;
  margin-block-end: 1rem;
  border: none;
  background-color: var(--sand);
}
form input::-moz-placeholder, form textarea::-moz-placeholder, form select::-moz-placeholder {
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-size: inherit;
}
form input::placeholder,
form textarea::placeholder,
form select::placeholder {
  transition: opacity 0.3s ease;
  font-size: inherit;
}
form input:focus::-moz-placeholder, form textarea:focus::-moz-placeholder, form select:focus::-moz-placeholder {
  opacity: 0;
}
form input:focus::placeholder,
form textarea:focus::placeholder,
form select:focus::placeholder {
  opacity: 0;
}
form textarea {
  resize: none;
}
form label {
  font-size: inherit;
  font-family: var(--font-regular);
}
form input[type=checkbox] {
  display: inline;
  width: auto;
}

.asterisk {
  color: red;
}

.forminator-label {
  display: block;
  margin-block-end: 0.5rem;
  font-weight: 700;
  color: var(--brown-dark);
}

.forminator-grouped-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 1.5rem;
}
@media screen and (max-width: 800px) {
  .forminator-grouped-fields {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.forminator-row {
  gap: 1rem;
}

.forminator-row,
.forminator-col {
  margin: 0 !important;
  padding: 0 !important;
}

.forminator-ui [aria-hidden=false] {
  padding: 1rem;
}

.forminator-accessible {
  margin-block-end: 1.5rem;
}

.forminator-success {
  background-color: var(--sand);
  border: 2px solid #68c768;
  padding: 1rem;
}

.forminator-error {
  background-color: var(--red-light);
  color: var(--white);
}
.forminator-error ul {
  padding-block: 0.5rem;
}
.forminator-error ul li {
  margin: 0;
  padding-block: 0.5rem;
}
.forminator-error ul li::before {
  display: none;
}

@media all and (max-width: 800px) {
  .forminator-2-col .forminator-grouped-fields {
    grid-template-columns: 1fr;
  }
}
.forminator-field-checkbox {
  margin-block: 1rem !important;
}
.forminator-field-checkbox .forminator-label {
  margin-block-end: 1rem;
}

.forminator-checkbox {
  display: block;
  margin-block: 0.25rem;
}

.forminator-error-message {
  display: block;
  margin-block: -0.5rem 1rem;
  color: var(--red);
  font-size: var(--text-16);
}

.forminator-checkbox-inline {
  display: inline-block !important;
  margin-inline-end: 0.5rem;
}

.ui-widget-header,
.ui-state-default {
  background: var(--sand) !important;
  color: var(--brown-dark) !important;
}

.ui-state-highlight {
  background: var(--red-light) !important;
  border-color: var(--brown-dark) !important;
  color: var(--white) !important;
}

.forminator-field .iti__country-list li::before {
  display: none !important;
}
.forminator-field .forminator-iti-input {
  margin-block-end: 1rem !important;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0;
  transition: all 0.3s ease;
  z-index: 999;
  color: var(--white);
  max-width: 2250px;
  margin-inline: auto;
}
@media screen and (max-width: 1400px) {
  .header {
    padding: 4rem 4rem 0 0;
  }
}
@media screen and (max-width: 375px) {
  .header {
    padding: 4rem 2rem 0 0;
  }
}
.header a {
  text-decoration: none;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-inline-start: 7%;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1400px) {
  .header__container {
    align-items: center;
  }
}
@media screen and (max-width: 500px) {
  .header__container {
    margin-inline-start: 3rem;
  }
}
@media screen and (max-width: 375px) {
  .header__container {
    margin-inline-start: 2rem;
  }
}

.header__navigation {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 1400px) {
  .header__navigation {
    align-items: center;
  }
}
@media screen and (max-width: 680px) {
  .header__navigation {
    display: block;
  }
}

.header__navigation-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-inline-end: 3rem;
}
@media screen and (max-width: 1400px) {
  .header__navigation-container {
    gap: 1rem;
  }
}

.header__logo {
  display: block;
  width: 100%;
  position: relative;
  z-index: 998;
  max-width: 220px;
}
@media screen and (max-width: 500px) {
  .header__logo {
    max-width: 200px;
  }
}

.logo-text {
  transition: all 0.3s ease;
}

.header__logo-image {
  transition: all 0.3s ease;
  width: 100%;
}

.header__logo-image--scrolled {
  max-width: 100px;
  display: none;
}

.header__canadian {
  --cut: 50px;
  position: relative;
  background-color: var(--brown-dark);
  clip-path: polygon(var(--cut) 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
  z-index: 999;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1400px) {
  .header__canadian {
    display: none;
  }
}

.header__canadian-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 4rem 3rem 8rem;
  max-height: 999px;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: opacity 0.2s ease, transform 0.25s ease, max-height 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease, visibility 0s linear;
  will-change: opacity, transform, max-height, padding-top, padding-bottom;
}
@media screen and (max-width: 1600px) {
  .header__canadian-header {
    padding: 2rem 2rem 2rem 6rem;
  }
}
@media screen and (max-width: 1400px) {
  .header__canadian-header {
    padding: 2rem 3rem 2rem 8rem;
  }
}

.header__canadian-title {
  text-transform: uppercase;
  font-family: var(--font-heavy);
  letter-spacing: 0.85px;
  max-width: 90px;
}

.header__canadian-leaf {
  max-width: 50px;
  width: 100%;
}

.header__canadian-search-toggle {
  background-color: var(--white);
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 3rem;
  color: var(--black);
  font-size: var(--text-17);
  font-family: var(--font-heavy);
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.85px;
  position: relative;
  height: 42px;
}

@media screen and (max-width: 1600px) {
  .hide-on-tablet {
    display: none;
  }
}

.header__cta--desktop {
  position: relative;
  z-index: 999;
}
@media screen and (max-width: 680px) {
  .header__cta--desktop {
    display: none;
  }
}
.header__cta--desktop:focus, .header__cta--desktop:active {
  background-color: var(--red-light);
}

.header__cta--mobile {
  display: none;
}
@media screen and (max-width: 680px) {
  .header__cta--mobile {
    display: inline-block;
  }
}

.is-header-scrolled .header {
  background-color: rgba(28, 2, 2, 0.9);
  backdrop-filter: blur(8px);
  padding: 1.5rem 0 1.5rem 0;
}
@media screen and (max-width: 1400px) {
  .is-header-scrolled .header {
    padding-inline-end: 2rem;
  }
}
.is-header-scrolled .header__container {
  align-items: center;
}
.is-header-scrolled .logo-text {
  opacity: 0;
  visibility: hidden;
  max-width: 0;
  max-height: 0;
  margin-inline-end: 0;
  transform: translateX(-2rem);
}
.is-header-scrolled .header__canadian {
  --cut: 15px;
}
.is-header-scrolled .header__canadian-header {
  opacity: 0;
  transform: translateY(-0.6rem);
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.25s ease, max-height 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease, visibility 0s linear 0.3s;
}

.hero {
  background-color: var(--grey);
  background-color: var(--brown-dark);
  color: var(--white);
  padding-block: 24rem 18rem;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .hero .triangle-top-left {
    max-width: 160px;
  }
}
@media screen and (max-width: 680px) {
  .hero {
    padding-block-start: 14rem;
    padding-block-end: 0;
  }
  .hero .triangle-top-left {
    display: none;
  }
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero::before {
  background: transparent linear-gradient(180deg, var(--brown-dark) 0%, rgba(28, 2, 2, 0) 100%) 0% 0% no-repeat padding-box;
  height: 420px;
  opacity: 0.95;
  z-index: 1;
}
.hero::after {
  background: transparent linear-gradient(247deg, rgba(28, 2, 2, 0) 0%, var(--brown-dark) 100%) 0% 0% no-repeat padding-box;
  opacity: 0.98;
}
@media screen and (max-width: 680px) {
  .hero::after {
    display: none;
  }
}

.hero--tight {
  padding-block: 12rem;
}
@media screen and (max-width: 680px) {
  .hero--tight {
    padding-block: 7rem;
  }
  .hero--tight .hero__image {
    display: none;
  }
}
.hero--tight::before {
  height: auto;
}

.hero__wrapper {
  position: relative;
}
@media screen and (max-width: 680px) {
  .hero__wrapper::after {
    display: none;
  }
}

.hero__image {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
@media screen and (max-width: 680px) {
  .hero__image {
    position: relative;
    margin-block-start: -0.3rem;
  }
  .hero__image::before {
    content: url("../../images/angle-top-left-brown.svg");
    position: absolute;
    top: -1px;
    left: 0;
    width: 53px;
  }
}
@media screen and (max-width: 680px) and (max-width: 500px) {
  .hero__image::before {
    width: 40px;
  }
}
.hero__image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  height: 100%;
  width: 100%;
}

.hero__image--center img {
  -o-object-position: center center;
     object-position: center center;
}

.hero__image--bottom img {
  -o-object-position: bottom center;
     object-position: bottom center;
}

.hero__container {
  position: relative;
  z-index: 2;
  max-width: 930px;
  margin-inline-start: var(--left-spacing);
}
@media screen and (max-width: 680px) {
  .hero__container {
    padding-block-end: 8rem;
    margin-inline-start: 0;
    padding-inline: var(--padding-inline);
  }
}

.triangle-top-left--hero {
  max-width: 218px;
}

.hero__title {
  margin: 0;
  max-width: 800px;
  font-size: var(--text-70);
  margin-block-end: 3.5rem;
}

.hero__text {
  max-width: 1200px;
  padding-inline-end: 20%;
}
@media screen and (max-width: 680px) {
  .hero__text {
    padding-inline-end: 0;
  }
}
.hero__text p {
  margin: 0;
}

.hero__graphic {
  position: absolute;
  bottom: -4rem;
  right: -2rem;
  width: clamp(100px, 25vw, 420px);
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 680px) {
  .hero__graphic {
    bottom: -3rem;
  }
}

.desktop-navigation {
  margin-inline-end: 1rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 1600px) {
  .desktop-navigation {
    margin-inline-end: 1rem;
  }
}
@media screen and (max-width: 1400px) {
  .desktop-navigation {
    display: none;
  }
}
.desktop-navigation .menu-item {
  position: relative;
  cursor: pointer;
  font-family: var(--font-heavy);
  text-transform: uppercase;
  font-size: var(--text-17);
  letter-spacing: 0.85px;
}
@media screen and (max-width: 1400px) {
  .desktop-navigation .menu-item {
    font-size: var(--text-16);
  }
}
.desktop-navigation .menu-item::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2.25rem;
  left: 0;
  right: 0;
  width: 0;
  height: 3px;
  background-color: var(--red);
  transition: width 0.3s ease;
  margin: 1rem 0;
}
.desktop-navigation .menu-item a {
  position: relative;
  color: inherit;
}
.desktop-navigation .menu-item:hover::after {
  width: 100%;
}
.desktop-navigation .menu-item-has-children {
  position: relative;
}
.desktop-navigation .menu-item-has-children::before {
  content: "";
  display: block;
  height: 45px;
  width: 100%;
  position: absolute;
  top: 1rem;
  pointer-events: none;
}
.desktop-navigation .menu-item-has-children a::after {
  bottom: 0.35rem;
}
.desktop-navigation .menu-item-has-children:hover::before {
  pointer-events: auto;
}
.desktop-navigation .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.desktop-navigation .sub-menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: 5.5rem;
  left: -3rem;
  padding: 3rem;
  width: 335px;
  transition: all 0.3s ease;
  background-color: var(--brown-dark);
  background-image: url("../../images/texture-grit-footer.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  z-index: 990;
  list-style: none;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.desktop-navigation .sub-menu .sub-menu {
  position: relative;
  box-shadow: none;
  top: 0;
  width: 100%;
  padding: 1.5rem 0 0 1.5rem;
}

.menu-item-has-children a:not(.sub-menu a) {
  pointer-events: none;
  position: relative;
}

.navigation {
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
@media screen and (max-width: 1600px) {
  .navigation {
    gap: 2rem;
  }
}
.navigation .menu-item {
  margin: 0;
}

.sub-menu .menu-item {
  margin: 0 0 1.5rem;
  font-family: var(--font-regular);
  font-size: var(--text-17);
  text-transform: none;
  padding-inline-start: 3rem;
  transition: transform 0.2s ease;
}
.sub-menu .menu-item:hover a {
  transform: translateX(0.5rem);
}
.sub-menu .menu-item::after {
  display: none;
}
.sub-menu .menu-item:last-child {
  margin: 0;
}
.sub-menu .menu-item::before {
  content: url("../../images/icon-arrow.svg");
  display: inline-block;
  position: absolute;
  left: 1rem;
  margin-inline-end: 1rem;
  vertical-align: middle;
  width: 7px;
}
.sub-menu .menu-item a {
  display: inline-block;
  transition: transform 0.2s ease;
}
.sub-menu .menu-item a::after {
  display: none;
}
.sub-menu .nav-subsection {
  list-style: none;
  background: var(--white);
  padding: 2.5rem;
  margin: -3rem;
  margin-block-start: 2rem;
  padding-inline-start: 2rem;
}
.sub-menu .nav-subsection .menu-item {
  margin-block-end: 2rem;
  padding-inline-start: 2rem;
}
.sub-menu .nav-subsection .menu-item:hover a {
  transform: none;
}
.sub-menu .nav-subsection .menu-item::before {
  display: none;
}
.sub-menu .nav-subsection .menu-item a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--brown-dark);
  padding-inline-start: 0;
}
.sub-menu .nav-subsection .menu-item:last-child {
  margin-block-end: 0;
}
.sub-menu .nav-subsection .equipment-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.equipment-icon-mobile {
  display: none;
}
@media screen and (max-width: 1400px) {
  .equipment-icon-mobile {
    display: block;
  }
}

@media screen and (max-width: 1400px) {
  .equipment-icon-desktop {
    display: none;
  }
}

body.disable-desktop-submenu-hover .desktop-navigation .menu-item:hover::after {
  width: 0;
}
body.disable-desktop-submenu-hover .desktop-navigation .menu-item-has-children:hover .sub-menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.mobile-navigation {
  --inline-padding: 6rem;
  --menu-max-width: 600px;
  --cut: 30px;
  display: none;
  position: fixed;
  z-index: 998;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 4rem var(--inline-padding) 2rem;
  background-color: var(--brown-dark);
  transition: all 0.5s ease, opacity 0.4s ease;
  font-size: clamp(2.2rem, 6vw, 2.75rem);
  font-family: var(--font-heavy);
  letter-spacing: 0.85px;
  text-transform: uppercase;
  overflow-x: hidden;
  height: 90vh;
  overflow-y: hidden;
  opacity: 0;
  transform: translateY(-100%);
  visibility: hidden;
}
.mobile-navigation:has(.is-submenu-open) {
  overflow-y: auto;
}
.mobile-navigation::after {
  content: "";
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10rem;
  transform: translateY(75%);
  background: linear-gradient(to bottom, rgba(28, 2, 2, 0) 0%, rgba(28, 2, 2, 0.99) 50%, rgb(28, 2, 2) 100%);
  pointer-events: none;
  display: block;
  margin-top: -8rem;
  margin-left: calc(var(--inline-padding) * -1);
  width: calc(100% + var(--inline-padding) * 2);
}
@media screen and (max-width: 1400px) {
  .mobile-navigation {
    display: block;
  }
}
@media screen and (max-width: 680px) {
  .mobile-navigation {
    --menu-max-width: 400px;
  }
}
@media screen and (max-width: 500px) {
  .mobile-navigation {
    --inline-padding: 3rem;
  }
}
@media screen and (max-width: 375px) {
  .mobile-navigation {
    height: 85vh;
  }
}
.mobile-navigation .menu-main-menu-container {
  max-width: var(--menu-max-width);
}
.mobile-navigation .menu-item {
  position: relative;
  flex-direction: column;
  margin: 0 0 4rem;
}
.mobile-navigation .menu-item::before {
  left: -2rem;
  top: 0.5rem;
}
.mobile-navigation .menu-item a {
  color: var(--white);
}
.mobile-navigation .menu-item-has-children > a {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.mobile-navigation .menu-item-has-children > a::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11.06 6.59"><path d="m10.53.53-5 5-5-5" style="fill:none;stroke:%23DF1F30;stroke-miterlimit:10;stroke-width:1.5px"/></svg>');
  display: block;
  width: 17px;
  position: relative;
  bottom: 0.25rem;
  transition: 0.2s ease all;
}
.mobile-navigation .sub-menu {
  opacity: 0;
  max-height: 0;
  visibility: hidden;
  width: 100%;
  transition: all 0.4s ease;
  padding-inline-start: 2rem;
  list-style: none;
}
.mobile-navigation .sub-menu .menu-item {
  margin: 0 0 1.5rem;
  padding-inline-start: 0.5rem;
}
.mobile-navigation .sub-menu .menu-item a {
  font-size: var(--text-22);
  text-transform: none;
  font-family: var(--font-regular);
}
.mobile-navigation .nav-subsection {
  background: none;
  padding: 0;
  margin-block: 4rem;
}
.mobile-navigation .nav-subsection .menu-item {
  margin-block-end: 3rem;
}
.mobile-navigation .nav-subsection .menu-item:last-child {
  margin-block-end: 0;
}
.mobile-navigation .nav-subsection .menu-item a {
  color: var(--white);
}

.menu {
  list-style: none;
  padding: 0;
  position: relative;
}
.menu li::before {
  display: none;
}

.mobile-logo {
  display: block;
  margin-block-end: 4.5rem;
  max-width: 200px;
}

.is-submenu-open .sub-menu {
  opacity: 1;
  visibility: visible;
  max-height: 1000px;
  padding-block-start: 2rem;
}
.is-submenu-open a::after {
  transform: rotate(180deg) translateY(-0.6rem);
}

.is-menu-open .mobile-navigation {
  opacity: 1;
  transform: translateY(0%);
  visibility: visible;
}

.mobile-navigation__search {
  max-width: 80%;
  width: calc(100% + 12rem);
  margin-inline-start: calc(var(--inline-padding) * -1);
  position: relative;
  margin-block-end: 3.5rem;
}
@media screen and (max-width: 500px) {
  .mobile-navigation__search {
    max-width: 95%;
  }
}
.mobile-navigation__search .icon--search {
  position: absolute;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
}
.mobile-navigation__search .icon--search::after {
  background-color: var(--white);
}

.mobile-navigation__search-input {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  font-size: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  border: none;
  outline: thin;
  clip-path: polygon(0 0, 100% 0, calc(100% - var(--cut)) 100%, 0% 100%);
  padding: 1.5rem 10rem 1.5rem var(--inline-padding);
}
@media screen and (max-width: 375px) {
  .mobile-navigation__search-input {
    padding-inline-end: 8.5rem;
    font-size: 1.75rem;
  }
}
.mobile-navigation__search-input:focus {
  background-color: rgba(255, 255, 255, 0.2);
}

.header__cta--mobile {
  width: calc(100% + 12rem);
  margin-inline-start: calc(var(--inline-padding) * -1);
  clip-path: polygon(0 0, 100% 0, calc(100% - var(--cut)) 100%, 0% 100%);
  padding-inline-start: var(--inline-padding);
  padding-block: 1.5rem;
  font-size: inherit;
  max-width: 220px;
}

.mobile-navigation__canadian {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-navigation__canadian-title {
  font-size: var(--text-16);
}
@media screen and (max-width: 680px) {
  .mobile-navigation__canadian-title {
    text-align: right;
  }
}

.mobile-navigation__canadian-leaf {
  max-width: 50px;
}
@media screen and (max-width: 375px) {
  .mobile-navigation__canadian-leaf {
    width: 40px;
  }
}

.mobile-navigation__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.burger {
  display: none;
  width: 25px;
  height: 25px;
  margin-inline-end: 2rem;
}
@media screen and (max-width: 1400px) {
  .burger {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    transform: translateY(-0.2rem);
    z-index: 9999;
    margin-inline-end: 3rem;
  }
}
@media screen and (max-width: 680px) {
  .burger {
    margin-inline-end: 0;
  }
}

.burger__line {
  display: block;
  width: 23px;
  height: 2px;
  background-color: var(--white);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: absolute;
  right: 0;
  top: 50%;
}
.burger__line:nth-child(1) {
  transform: translateY(-8px);
}
.burger__line:nth-child(3) {
  transform: translateY(8px);
}

.burger__line--shorter {
  width: 15px;
}

.is-burger-active .burger__line--shorter {
  opacity: 0;
}
.is-burger-active .burger__line:nth-child(1) {
  transform: rotate(43deg);
}
.is-burger-active .burger__line:nth-child(3) {
  transform: rotate(-43deg);
}

.category__item--is-active {
  background-color: var(--grey);
  padding: 1rem;
}

.horizontal-categories__title {
  margin: 0;
}

.horizontal-categories__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  position: relative;
}
.horizontal-categories__container a {
  color: var(--white);
  text-decoration: none;
}

.modal {
  display: block; /** <-- Required to make the animation work */
  max-width: 1400px;
  width: 90%;
  opacity: 0;
  transform: translateY(15%);
  transition: transform 0.4s ease, opacity 0.2s ease;
  border: none;
  visibility: hidden;
  overflow: visible;
}
@media screen and (max-width: 500px) {
  .modal {
    width: 94%;
  }
}

.modal::backdrop {
  background: rgba(30, 68, 103, 0.8);
  backdrop-filter: blur(2px);
}

.modal[open] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 0;
  right: -5rem;
  cursor: pointer;
  width: 25px;
}
@media screen and (max-width: 1100px) {
  .close-modal {
    top: -6rem;
    right: 0;
  }
}
@media screen and (max-width: 800px) {
  .close-modal {
    width: 20px;
    top: -4rem;
  }
}

.modal--video {
  padding: 0;
}
.modal--video .modal__content {
  aspect-ratio: 16/9;
}
.modal--video iframe {
  width: 100%;
  height: 100%;
}

.gallery {
  display: grid;
  gap: 1rem;
  margin-block: 3rem;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

@media screen and (max-width: 1400px) {
  .gallery-columns-2, .gallery-columns-3, .gallery-columns-4, .gallery-columns-5, .gallery-columns-6, .gallery-columns-7, .gallery-columns-8, .gallery-columns-9 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.word-cycle {
  position: relative;
  overflow: hidden;
  height: var(--text-90);
}

.word-cycle__wrapper {
  display: flex;
  flex-direction: column;
  transition: all 0.8s ease;
}

.word-cycle__word {
  flex-shrink: 0;
  height: var(--text-90);
  display: flex;
  align-items: center;
}

.search-dropdown {
  position: fixed;
  left: 0;
  right: 0;
  padding: 4.95rem 4rem;
  background-color: var(--brown-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 1400px) {
  .search-dropdown {
    display: none;
  }
}
.search-dropdown .icon--search::after {
  background-color: var(--white);
}
.search-dropdown input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
          appearance: none;
  background-image: url("../../images/icon-close.svg");
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  background-size: contain;
  cursor: pointer;
  margin-inline-start: 1rem;
}

.search-dropdown__form {
  border-bottom: 2px solid var(--red);
  color: var(--white);
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
  position: relative;
}

.search-dropdown__input {
  margin: 0;
  font-size: var(--text-22);
  outline: thin;
  border: none;
  padding-inline-end: 16rem;
  background: none;
}
.search-dropdown__input:focus::-moz-placeholder {
  opacity: 0.5;
}
.search-dropdown__input:focus::placeholder {
  opacity: 0.5;
}

.search-dropdown__search {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heavy);
  text-transform: uppercase;
  letter-spacing: 0.85px;
  font-size: var(--text-22);
}

.search-dropdown--is-active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.primary-ctas {
  background-image: url("../../images/texture-grit-onwhite.jpg");
  background-repeat: no-repeat;
  background-size: 980px;
  background-position: bottom right;
  padding-block-end: 20rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .primary-ctas {
    background-position: top 30% right 0;
    background-size: 400px;
    padding-block-end: 8rem;
  }
}
.primary-ctas::before {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 229.745 713.085"><path d="M228.678 0H0v712.073z" style="fill:%231C0202;"/></svg>');
  position: absolute;
  top: -0.25rem;
  left: -1rem;
  width: clamp(61px, 12vw, 246px);
}

.primary-ctas__container {
  --cut: 110px;
  max-width: 1800px;
  margin-inline: auto;
}
@media screen and (max-width: 500px) {
  .primary-ctas__container {
    --cut: 60px;
  }
}

.primary-ctas__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-block-end: 5rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .primary-ctas__header {
    flex-direction: column-reverse;
  }
}

.primary-ctas__text {
  max-width: 800px;
  text-align: center;
  font-size: var(--text-28);
  margin-inline-start: 18%;
  flex: 60%;
  margin-block-start: 12rem;
}
@media screen and (max-width: 800px) {
  .primary-ctas__text {
    margin-inline-start: 0;
    margin-block-start: 4rem;
    padding-inline: 6rem;
  }
}
.primary-ctas__text p {
  margin: 0;
}

.primary-ctas__graphic {
  max-width: 660px;
  min-width: 200px;
  position: relative;
  right: -5.5%;
  top: -6rem;
}
@media screen and (max-width: 800px) {
  .primary-ctas__graphic {
    max-width: 500px;
    right: -4rem;
    top: -4rem;
    min-width: unset;
    align-self: flex-end;
  }
}
@media screen and (max-width: 680px) {
  .primary-ctas__graphic {
    max-width: 75%;
  }
}

.primary-ctas__items {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 3.5rem;
  padding-inline: 4rem;
  margin-inline-start: 12rem;
}
@media screen and (max-width: 1300px) {
  .primary-ctas__items {
    margin-inline-start: 0;
  }
}
@media screen and (max-width: 800px) {
  .primary-ctas__items {
    flex-direction: column;
    padding-inline: 0;
    gap: 0;
  }
}

.primary-ctas__item {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 340px;
  position: relative;
  clip-path: polygon(var(--cut) 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .primary-ctas__item {
    width: 105%;
    left: -2rem;
  }
}
.primary-ctas__item:hover .primary-ctas__image {
  transform: scale(1.05);
}
.primary-ctas__item:hover .primary-ctas__button {
  background-color: rgba(223, 31, 48, 0.95);
}
.primary-ctas__item:hover .primary-ctas__button::after {
  transform: translateX(5px);
}
.primary-ctas__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.primary-ctas__item:last-child {
  clip-path: polygon(0 0, 100% 0, calc(100% - var(--cut)) 100%, 0% 100%);
}
.primary-ctas__item:last-child:hover .primary-ctas__button {
  background-color: rgba(28, 2, 2, 0.95);
}
@media screen and (max-width: 800px) {
  .primary-ctas__item:last-child {
    right: -2rem;
  }
}
.primary-ctas__item:last-child .primary-ctas__button {
  right: calc(var(--cut) + 4rem);
  padding-inline-end: calc(var(--cut) + 5rem);
  background-color: rgba(28, 2, 2, 0.9);
}
@media screen and (max-width: 375px) {
  .primary-ctas__item:last-child .primary-ctas__button {
    padding-inline-end: calc(var(--cut) + 3rem);
  }
}

.primary-ctas__image {
  transition: 0.6s ease transform;
}

.primary-ctas__button {
  --cut: 30px;
  display: flex;
  align-items: center;
  gap: 2rem;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgba(223, 31, 48, 0.9);
  font-family: var(--font-heavy);
  text-transform: uppercase;
  letter-spacing: 0.85px;
  font-size: var(--text-30);
  z-index: 1;
  color: var(--white);
  padding: 3rem 6rem;
  clip-path: polygon(var(--cut) 0, 100% 0, 100% 100%, 0% 100%);
  transition: all 0.3s ease;
}
@media screen and (max-width: 960px) {
  .primary-ctas__button {
    padding: 2rem 5rem;
    font-size: var(--text-25);
  }
}
.primary-ctas__button::after {
  content: url("../../images/icon-arrow-white.svg");
  display: block;
  width: 13px;
  transition: transform 0.3s ease;
}

.key-stats {
  --cut: 200px;
  position: relative;
  padding-block-end: 21rem;
}
.key-stats::before {
  content: "";
  background-image: url("../../images/texture-grit-onwhite.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 5%;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 900px;
  transform: scaleX(-1);
  z-index: -1;
}
@media screen and (max-width: 800px) {
  .key-stats::before {
    top: 8%;
    width: 200%;
  }
}
@media screen and (max-width: 800px) {
  .key-stats {
    padding-block-end: 0;
  }
}

.key-stats__container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .key-stats__container {
    flex-direction: column;
    gap: 6.5rem;
  }
}

.key-stats__content {
  width: 100%;
  position: relative;
}

.key-stats__header {
  --cut: 85px;
  margin-block-end: 6rem;
  padding-inline-start: var(--left-spacing);
  padding-block: 9rem;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .key-stats__header {
    --cut: 70px;
    padding-inline-start: 8rem;
  }
}
@media screen and (max-width: 800px) {
  .key-stats__header {
    text-align: center;
    padding-inline-start: 0;
    padding-inline: 4rem;
    margin-block-end: 2rem;
    padding-block: 6rem;
  }
}
.key-stats__header::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: var(--sand);
  width: 865px;
  height: 265px;
  clip-path: polygon(0 0, 100% 0, calc(100% - var(--cut)) 100%, 0% 100%);
  z-index: -1;
}
@media screen and (max-width: 1100px) {
  .key-stats__header::after {
    width: 130%;
    height: 215px;
  }
}
@media screen and (max-width: 800px) {
  .key-stats__header::after {
    width: 100%;
    height: 100%;
    clip-path: none;
  }
}

.key-stats__title {
  font-size: clamp(5rem, 8vw, 6rem);
  margin: 0;
}
@media screen and (max-width: 500px) {
  .key-stats__title {
    max-width: 235px;
    margin-inline: auto;
  }
}

.key-stats__image {
  --cut: 210px;
  clip-path: polygon(var(--cut) 0, 100% 0, 100% 100%, 0% 100%);
  max-width: 840px;
  width: 100%;
  height: 673px;
  position: relative;
}
@media screen and (max-width: 800px) {
  .key-stats__image {
    height: 500px;
    width: 110%;
    left: -5%;
    right: 0;
  }
}
@media screen and (max-width: 680px) {
  .key-stats__image {
    --cut: 150px;
    left: -20%;
    width: 120%;
    height: 380px;
  }
}
.key-stats__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.key-stats__image::before {
  --cut: 125px;
  content: "";
  display: block;
  width: 240px;
  max-width: 100%;
  height: 60%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: var(--red);
  clip-path: polygon(0 0, 100% 0, calc(100% - var(--cut)) 100%, 0% 100%);
}
@media screen and (max-width: 680px) {
  .key-stats__image::before {
    --cut: 48px;
    width: 180px;
    height: 30%;
  }
}
@media screen and (max-width: 500px) {
  .key-stats__image::before {
    --cut: 48px;
    width: 180px;
  }
}
.key-stats__image::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 230.596 713.979"><path d="M230.596 713.979V1.902L1.917 713.979z" style="fill:%231C0202"/></svg>');
  display: block;
  position: absolute;
  bottom: -0.5rem;
  right: 0;
  width: clamp(61px, 12vw, 115px);
}

.key-stats__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  gap: clamp(2rem, 5vw, 6rem);
  margin-inline-start: var(--left-spacing);
  max-width: 800px;
}
@media screen and (max-width: 1100px) {
  .key-stats__items {
    grid-template-columns: repeat(2, 1fr);
    margin-inline-start: 8rem;
  }
}
@media screen and (max-width: 800px) {
  .key-stats__items {
    grid-template-columns: 1fr;
    margin-inline: auto;
    max-width: 400px;
    text-align: center;
    gap: 0;
    padding-inline: 4rem;
  }
}

.key-stats__item {
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .key-stats__item:last-child {
    grid-column: 1/-1;
    justify-self: center;
  }
  .key-stats__item:last-child .key-stats__description {
    padding-inline-end: 0;
  }
}
@media screen and (max-width: 800px) {
  .key-stats__item {
    border-bottom: 3px solid var(--red);
    padding-block: 3rem;
  }
  .key-stats__item:last-child {
    border-bottom: none;
  }
}

.key-stats__value {
  font-family: var(--font-extra-heavy);
  color: var(--red);
  font-size: clamp(7rem, 9vw, 8rem);
}

.key-stats__label {
  font-family: var(--font-extra-heavy);
  font-size: var(--text-35);
  text-transform: uppercase;
  margin-block-end: 3rem;
  color: var(--brown);
}
@media screen and (max-width: 800px) {
  .key-stats__label {
    margin-block-end: 1rem;
  }
}

.key-stats__description {
  position: relative;
  margin: 0;
  text-transform: lowercase;
  padding-inline-end: 6rem;
}
@media screen and (max-width: 800px) {
  .key-stats__description {
    padding-inline-end: 0;
    font-size: var(--text-25);
  }
  .key-stats__description br {
    display: none;
  }
}
.key-stats__description::before {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background-color: var(--red);
  margin-block-end: 3rem;
}
@media screen and (max-width: 800px) {
  .key-stats__description::before {
    display: none;
  }
}

.kvp {
  --bottom-offset: -18rem;
  --cut: 130px;
  background-image: url("../../images/home-mid.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-block: 0 2rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 1700px) {
  .kvp {
    --bottom-offset: -24rem;
  }
}
@media screen and (max-width: 1100px) {
  .kvp {
    --bottom-offset: 0;
    background: var(--brown-dark);
    flex-direction: column;
    padding-block: 0;
    margin-block-start: -0.05rem;
  }
}
.kvp::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 230.596 713.979"><path d="M230.596 713.979V1.902L1.917 713.979z" style="fill:%23fff"/></svg>');
  position: absolute;
  bottom: calc(var(--bottom-offset) - 1rem);
  right: 0;
  width: 254px;
  max-width: 100%;
  z-index: 1;
}
@media screen and (max-width: 1100px) {
  .kvp::after {
    display: none;
  }
}

.kvp__container {
  --cut: 250px;
  padding-inline-start: var(--left-spacing);
  padding-inline-end: 30rem;
  padding-block: 19rem 12rem;
  background-color: var(--brown-dark);
  color: var(--white);
  max-width: 990px;
  width: 100%;
  margin-block-end: 20rem;
  clip-path: polygon(0 0, 100% 0, calc(100% - var(--cut)) 100%, 0% 100%);
  background-image: url("../../images/texture-grit-ondark.jpg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1100px) {
  .kvp__container {
    clip-path: none;
    padding-inline-end: var(--right-spacing-large);
    margin-block-end: 0;
    padding-block: 6rem 0;
    padding-inline: 0;
    max-width: 100%;
  }
}

@media screen and (max-width: 1100px) {
  .kvp__content {
    max-width: 600px;
    margin-inline: auto;
    padding-inline: 4rem;
  }
}

.kvp__title {
  font-size: var(--text-60);
  max-width: 310px;
  line-height: 1;
  margin: 0 0 4rem;
}

.kvp__text {
  max-width: 405px;
  margin-block-end: 10rem;
}
@media screen and (max-width: 1100px) {
  .kvp__text {
    margin-block-end: 4rem;
  }
}

.kvp__cta-buttons {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 1rem;
}

.kvp__cta-button {
  color: var(--white);
}

.kvp__testimonial-wrapper {
  position: absolute;
  bottom: var(--bottom-offset);
  right: 0;
  max-width: 990px;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .kvp__testimonial-wrapper {
    position: relative;
    max-width: 100%;
  }
}
.kvp__testimonial-wrapper::before {
  content: url("../../images/icon-quotes.svg");
  display: block;
  width: 90px;
  margin-inline-start: 40%;
  margin-block-end: -4.5rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1100px) {
  .kvp__testimonial-wrapper::before {
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    width: 85px;
  }
}
@media screen and (max-width: 500px) {
  .kvp__testimonial-wrapper::before {
    width: 70px;
  }
}

.kvp__testimonial {
  padding: 6rem;
  padding-inline-end: 30%;
  padding-inline-start: 18%;
  width: 100%;
  color: var(--white);
  margin: 0;
  background-color: var(--red);
  text-align: center;
  clip-path: polygon(var(--cut) 0, 100% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 1100px) {
  .kvp__testimonial {
    clip-path: none;
    padding-inline: 6rem;
  }
}

.kvp__testimonial-title {
  margin: 3rem 0 2rem;
  font-size: var(--text-45);
  line-height: 1.1;
}
@media screen and (max-width: 500px) {
  .kvp__testimonial-title {
    margin-block-start: 1.5rem;
  }
}

.kvp__testimonial-text {
  margin-block-end: 3rem;
  max-width: 475px;
  margin-inline: auto;
}

.kvp__testimonial-attribution {
  font-family: var(--font-extra-heavy);
  font-size: var(--text-20);
  color: var(--brown);
  font-style: normal;
  text-transform: uppercase;
}

.kvp__mobile-image {
  display: none;
  margin-block-start: 10rem;
  position: relative;
  overflow: hidden;
}
.kvp__mobile-image::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 229.745 713.085"><path d="M228.678 0H0v712.073z" style="fill:%231C0202"/></svg>');
  display: block;
  position: absolute;
  top: -0.5rem;
  left: 0;
  width: clamp(40px, 10vw, 115px);
}
@media screen and (max-width: 1100px) {
  .kvp__mobile-image {
    display: block;
  }
}

.marquee {
  --gap: 8rem;
  --speed: 50s;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  gap: var(--gap);
  margin-block-start: -4rem;
  clip-path: polygon(var(--cut) 0, 100% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 500px) {
  .marquee {
    --gap: 4.5rem;
    --speed: 35s;
  }
}

.marquee-container {
  --cut: 70px;
  padding-block: 12rem 18rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
@media screen and (max-width: 1100px) {
  .marquee-container {
    padding-block: 4rem 6rem;
    gap: 0;
  }
}
@media screen and (max-width: 800px) {
  .marquee-container {
    flex-direction: column;
    padding-block: 4rem;
  }
}

.marquee-container--home {
  padding-block: 36rem 18rem;
}
@media screen and (max-width: 1700px) {
  .marquee-container--home {
    padding-block: 42rem 6rem;
  }
}
@media screen and (max-width: 1100px) {
  .marquee-container--home {
    clip-path: none;
    margin-block-start: 0;
    padding-block-start: 22rem;
  }
}
@media screen and (max-width: 800px) {
  .marquee-container--home {
    padding-block-start: 10rem;
  }
}

.marquee__inner {
  display: flex;
  align-items: center;
  gap: var(--gap);
  animation: scroll-left var(--speed) linear infinite;
  flex-shrink: 0;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
.marquee__item {
  flex: 0 0 auto;
  max-width: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1100px) {
  .marquee__item {
    max-width: 140px;
  }
}
@media screen and (max-width: 800px) {
  .marquee__item {
    max-width: 120px;
  }
}
@media screen and (max-width: 500px) {
  .marquee__item {
    max-width: 100px;
  }
}
@media screen and (max-width: 375px) {
  .marquee__item {
    max-width: 75px;
  }
}

.marquee__header {
  --cut: 70px;
  flex: 30%;
  flex-shrink: 0;
  padding-inline-start: var(--left-spacing);
  position: relative;
}
@media screen and (max-width: 1100px) {
  .marquee__header {
    padding-inline-start: 8rem;
  }
}
@media screen and (max-width: 800px) {
  .marquee__header {
    padding-inline-start: 0;
    padding-inline: 4rem;
    text-align: center;
    margin-block-end: 4rem;
    width: 100%;
  }
}
.marquee__header::after {
  content: "";
  display: block;
  position: absolute;
  top: -8rem;
  left: 0;
  bottom: 0;
  background-color: var(--sand);
  width: 460px;
  height: 260px;
  clip-path: polygon(0 0, 100% 0, calc(100% - var(--cut)) 100%, 0% 100%);
  z-index: -1;
}
@media screen and (max-width: 1100px) {
  .marquee__header::after {
    width: 400px;
    height: 215px;
  }
}
@media screen and (max-width: 800px) {
  .marquee__header::after {
    display: none;
  }
}

.marquee__title {
  margin: 0;
  min-width: 325px;
  font-size: var(--text-45);
}
@media screen and (max-width: 800px) {
  .marquee__title {
    min-width: auto;
  }
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 3rem 0;
  font-size: var(--text-18);
}
.pagination .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pagination__numbers {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.pagination__button {
  min-width: 40px;
  height: 40px;
  padding: 0.5rem 1rem;
  background-color: var(--sand);
  color: var(--black);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination__button--active {
  background-color: var(--red);
  font-family: var(--font-heavy);
  color: var(--white);
  pointer-events: none;
}

.pagination__button--next,
.pagination__button--prev {
  min-width: auto;
  background: none;
  padding: 0;
}
.pagination__button--next::after,
.pagination__button--prev::after {
  content: url("../../images/icon-arrow.svg");
  display: block;
  width: 14px;
}

.pagination__button--next {
  margin-inline-start: 0.75rem;
}

.pagination__button--prev {
  margin-inline-end: 0.75rem;
}
.pagination__button--prev::after {
  transform: scaleX(-1);
}

.filter__pagination {
  margin-top: 2rem;
}

.filter {
  background-color: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 3rem;
  margin-block-end: 3rem;
  margin-inline-end: 24%;
  max-width: 1140px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1700px) {
  .filter {
    max-width: 100%;
  }
}
@media screen and (max-width: 1400px) {
  .filter {
    margin-inline-end: 0;
  }
}
@media screen and (max-width: 680px) {
  .filter {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-inline-start: 0;
    padding: 1.5rem 2.5rem;
    cursor: pointer;
    margin-block-end: 2rem;
  }
}
.filter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--red);
  clip-path: polygon(0 0, 100% 0, calc(100% - 25px) 100%, 0% 100%);
}
@media screen and (max-width: 680px) {
  .filter::before {
    clip-path: none;
  }
}

.filter--is-active .filter__categories {
  max-height: 9999px;
  opacity: 1;
  visibility: visible;
  margin-block-start: -1rem;
}
.filter--is-active .filter__title::after {
  rotate: 180deg;
}

.filter__title {
  margin: 0;
  font-size: var(--text-16);
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}
@media screen and (max-width: 680px) {
  .filter__title {
    position: relative;
    width: 100%;
    padding-block: 1rem 2rem;
  }
  .filter__title::after {
    content: url("../../images/icon-arrow-white-down.svg");
    display: block;
    width: 11px;
    position: absolute;
    right: 0;
    transition: rotate 0.3s ease;
  }
}
.filter__title::before {
  content: url("../../images/icon-filter.svg");
  display: block;
  width: 27px;
}

@media screen and (max-width: 800px) {
  .filter__title-text {
    display: none;
  }
}
@media screen and (max-width: 680px) {
  .filter__title-text {
    display: block;
  }
}

.filter__categories {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 680px) {
  .filter__categories {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    margin-block-start: -2rem;
  }
}

.filter__dropdown {
  position: relative;
}
@media screen and (max-width: 680px) {
  .filter__dropdown {
    width: 100%;
  }
}

.filter__dropdown-label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
  margin: 0;
  background-color: rgba(152, 27, 30, 0.4);
  padding: 0.5rem 1.5rem;
}
@media screen and (max-width: 1100px) {
  .filter__dropdown-label {
    gap: 1rem;
  }
}
.filter__dropdown-label::after {
  content: url("../../images/icon-arrow-white-down.svg");
  display: block;
  width: 12px;
  position: relative;
  top: -3px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1100px) {
  .filter__dropdown-label::after {
    width: 9px;
  }
}

.filter__dropdown-content {
  position: absolute;
  top: 5rem;
  left: 0;
  width: 320px;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: var(--white);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  padding: 1.5rem;
  color: var(--black);
  z-index: 10;
  transform: translateY(-2rem);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 680px) {
  .filter__dropdown-content {
    width: 100% !important;
  }
}

.filter__dropdown-content--availability {
  width: 200px;
}

.filter__dropdown-content--locations {
  width: 160px;
}

.filter__dropdown-item {
  margin-block-end: 0.5rem;
  font-size: var(--text-18);
}
.filter__dropdown-item:last-child {
  margin-block-end: 0;
}
.filter__dropdown-item label {
  cursor: pointer;
}

.filter__dropdown--is-active .filter__dropdown-label::after {
  rotate: 180deg;
  transform: translateY(-0.65rem);
}
.filter__dropdown--is-active .filter__dropdown-content {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.filter__results {
  margin-block-end: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width: 680px) {
  .filter__results {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}

.filter__results-found {
  margin: 0;
}
@media screen and (max-width: 680px) {
  .filter__results-found {
    border-top: 3px solid var(--sand);
    padding-block-start: 2rem;
    width: 100%;
  }
}
.filter__results-found span {
  font-family: var(--font-heavy);
  color: var(--red);
}

.filter__selections {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media screen and (max-width: 680px) {
  .filter__selections {
    margin-block-end: 2rem;
  }
}

.filter__selection-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: var(--text-18);
  border: 3px solid #F8F6F3;
}
.filter__selection-tag span {
  line-height: 1;
}

.filter__selection-remove {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.filter__selection-remove::after {
  content: url("../../images/icon-x.svg");
  display: block;
  width: 9px;
}

.filter__clear-all {
  text-transform: uppercase;
  margin-inline-start: 1.5rem;
  color: var(--red);
  font-family: var(--font-heavy);
  font-size: var(--text-16);
  letter-spacing: 1.5px;
  padding-block: 1rem;
}
@media screen and (max-width: 680px) {
  .filter__clear-all {
    margin-inline-start: 0;
  }
}

/**
 * Swiper 12.1.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 28, 2026
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode {
  .swiper-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
  }
}

.swiper-virtual.swiper-css-mode.swiper-horizontal {
  .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
  .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
  }
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}

.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}

.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}

.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - var(--swiper-navigation-size) / 2);
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }
  &:only-child {
    display: none !important;
  }
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition: 200ms transform, 200ms top;
    }
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition: 200ms transform, 200ms left;
    }
  }
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}

.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  .swiper-scrollbar-disabled > &,
  &.swiper-scrollbar-disabled {
    display: none !important;
  }
  .swiper-horizontal > &,
  &.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
  .swiper-vertical > &,
  &.swiper-scrollbar-vertical {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  > img,
  > svg,
  > canvas {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-thumbs {
  .swiper-slide-thumb-active {
    /* Styles for active thumb slide */
  }
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active,
  .swiper-slide-next,
  .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }
  .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;
    &:before {
      content: "";
      background: #000;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      filter: blur(50px);
    }
  }
}

.swiper-cube {
  .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}

/* Cube slide shadows start */
.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-top,
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}

/* Cube slide shadows end */
.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

/* Flip slide shadows start */
.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-top,
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}

/* Flip slide shadows end */
.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards {
  .swiper-slide {
    transform-origin: center bottom;
    backface-visibility: hidden;
    overflow: hidden;
  }
}

.swiper-main {
  border: 3px solid var(--sand);
  margin-block-end: 2rem;
  aspect-ratio: 4/3;
  width: 100%;
}

.swiper-slide {
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  height: 100%;
}
.swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-thumbs-wrapper {
  --swiper-navigation-size: 20px;
  --swiper-navigation-color: var(--red);
  --swiper-navigation-sides-offset: 10px;
  background-color: var(--sand);
  padding: 2rem 1rem;
  position: relative;
}
@media screen and (max-width: 680px) {
  .swiper-thumbs-wrapper {
    width: 100vw;
    margin-inline-start: -4rem;
  }
}
.swiper-thumbs-wrapper .swiper-thumbs {
  margin-inline: 3rem;
}
@media screen and (max-width: 680px) {
  .swiper-thumbs-wrapper .swiper-thumbs {
    overflow: visible;
  }
}
.swiper-thumbs-wrapper .swiper-slide {
  cursor: pointer;
  aspect-ratio: 4/3;
}

.swiper-slide-thumb-active {
  border: 3px solid var(--red);
}

.swiper-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 680px) {
  .swiper-nav {
    display: none;
  }
}

.custom-checkmark {
  display: block;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  /* Style the checkmark/indicator */
}
.custom-checkmark input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom-checkmark .checkmark::after {
  left: 5px;
  top: 0;
  width: 6px;
  height: 15px;
  border: solid var(--red);
  border-width: 0 2px 2px 0px;
  transform: rotate(35deg);
}

.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 1px solid rgba(28, 2, 2, 0.15);
}
.checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

/* On mouse-over, add a grey background color */
.custom-checkmark:hover input ~ .checkmark {
  background-color: var(--sand);
}

/* When the checkbox is checked, add a blue background */
/* Show the checkmark when checked */
.custom-checkmark input:checked ~ .checkmark:after {
  display: block;
}

.flexible-layout-wrapper {
  position: relative;
}

.flexible-section {
  position: relative;
  padding-block: 10rem;
  /* Remove bottom margin from last block in a column */
}
@media screen and (max-width: 1100px) {
  .flexible-section {
    padding-block: 8rem;
  }
}
@media screen and (max-width: 800px) {
  .flexible-section {
    padding-block: 6rem;
  }
}
@media screen and (max-width: 375px) {
  .flexible-section {
    padding-block: 4rem;
  }
}
.flexible-section .block-wrapper:last-of-type {
  margin-bottom: 0;
}
.flexible-section .post-list {
  margin-block-end: 4rem;
}

.edit-section-btn {
  position: absolute;
  top: 3rem;
  right: 4rem;
  color: #000;
  padding: 5px 10px;
  font-size: 12px;
  text-decoration: none;
  border-radius: 3px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0.7;
  transition: all 0.2s ease;
}
.edit-section-btn img {
  width: 20px;
}
.edit-section-btn:hover {
  background: rgb(255, 255, 255);
  opacity: 0.9;
}

/* ============= OPTIONS ============= */
.flexible-section--remove-bottom-spacing {
  margin-block-end: 0;
  padding-block-end: 0;
}

.flexible-section--remove-top-spacing {
  padding-block-start: 0;
  margin-block-start: 0;
}

.flexible-section--reduce-width .flexible-section__container {
  max-width: calc(var(--max-width) - 30%);
}
@media screen and (max-width: 1100px) {
  .flexible-section--reduce-width .flexible-section__container {
    max-width: 100%;
  }
}

.flexible-section__title {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--padding-inline);
  margin-block-start: 0;
  margin-block-end: 6rem;
}
@media screen and (max-width: 1100px) {
  .flexible-section__title {
    margin-block-start: 4rem;
  }
}
@media screen and (max-width: 680px) {
  .flexible-section__title {
    margin-block-start: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .flexible-section__title {
    margin-block-start: 3rem;
  }
}
.flexible-section__title::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  margin-block-start: 1.8rem;
  background-color: var(--red);
}

.flexible-section__title--align-left {
  text-align: left;
}

.flexible-section__title--align-center {
  text-align: center;
}
.flexible-section__title--align-center::after {
  margin-inline: auto;
}

.flexible-section__title--align-right {
  text-align: right;
}
.flexible-section__title--align-right::after {
  margin-inline-start: auto;
}

.flexible-section__title--remove-spacing {
  margin-block-end: 0;
}

@media screen and (max-width: 800px) {
  .flexible-section--remove-mobile-gap .flexible-section__container {
    gap: 0;
  }
  .flexible-section--remove-mobile-gap .flexible-section__container .flexbile-section__column .text-block ul,
  .flexible-section--remove-mobile-gap .flexible-section__container .flexbile-section__column .text-block ol {
    border-bottom: 2px solid rgba(0, 0, 0, 0.07);
  }
  .flexible-section--remove-mobile-gap .flexible-section__container .flexbile-section__column:last-child .text-block ul,
  .flexible-section--remove-mobile-gap .flexible-section__container .flexbile-section__column:last-child .text-block ol {
    border-bottom: none;
  }
}

.flexible-section--hide-graphic {
  margin-block-start: 0 !important;
}
.flexible-section--hide-graphic .flexible-section__graphic {
  display: none;
}

/* ============= COLOURS ============= */
/* Default/Light theme colours custom properties */
/*--------------------------------------------------------------------------------------------------------------- */
.flexible-section {
  --section-bg: var(--white);
  --section-text: var(--brown-dark);
  --block-bg: var(--sand);
  --block-text: var(--brown);
  color: var(--section-text);
}
.flexible-section .media,
.flexible-section .dropdown,
.flexible-section .article {
  background-color: var(--block-bg);
  color: var(--block-text);
}
.flexible-section .article__title {
  color: var(--block-text);
}
.flexible-section .article__title a {
  color: inherit;
}
.flexible-section .forminator-field input,
.flexible-section .forminator-field select,
.flexible-section .forminator-field textarea {
  background-color: var(--block-bg);
}

/* LIGHT --------------------------------------------------------------------------------------------------------------------- */
.flexible-section--light {
  --block-bg: var(--white);
  --section-bg: var(--sand);
  margin-block-start: 2rem;
  background-color: var(--section-bg);
  color: var(--section-text);
}
.flexible-section--light .quote::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 230.596 713.979"><path d="M230.596 713.979V1.902L1.917 713.979z" style="fill:%23F8F6F3"/></svg>');
}
.flexible-section--light .flexible-section__graphic {
  position: absolute;
  top: -3rem;
  left: 0;
  right: 0;
  padding-inline-start: var(--padding-inline);
}
.flexible-section--light .flexible-section__graphic img {
  width: clamp(80px, 12vw, 120px);
}

/* DARK --------------------------------------------------------------------------------------------------------------------- */
.flexible-section--dark {
  --section-bg: var(--brown-dark);
  --section-text: var(--white);
  --block-bg: var(--brown);
  --block-text: var(--white);
  --button-bg: var(--white);
  --button-text: var(--white);
  background-color: var(--section-bg);
  background-image: url("../../images/texture-grit-footer.jpg");
  background-repeat: no-repeat;
  background-size: 900px;
  background-position: bottom right;
  color: var(--section-text);
  will-change: transform;
}
.flexible-section--dark .button {
  color: var(--button-text);
}
.flexible-section--dark::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 230.596 713.979"><path d="M230.596 713.979V1.902L1.917 713.979z" style="fill:%23fff"/></svg>');
  position: absolute;
  bottom: -0.5rem;
  right: 0;
  width: clamp(40px, 8vw, 95px);
}
@media screen and (max-width: 500px) {
  .flexible-section--dark::after {
    display: none;
  }
}
.flexible-section--dark .quote {
  background-color: var(--brown);
  background-image: url("../../images/texture-grit-onbrown.jpg");
}
.flexible-section--dark .quote::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 230.596 713.979"><path d="M230.596 713.979V1.902L1.917 713.979z" style="fill:%231C0202"/></svg>');
}
.flexible-section--dark .media__icon svg {
  fill: var(--brown-dark);
}

/* ============= COLUMN HANDLING ============= */
.flexible-section__container {
  display: grid;
  gap: clamp(2rem, 4vw, 12rem);
}

.flexible-section__container--center {
  align-items: center;
}

.flexible-section__container--flex-end {
  align-items: flex-end;
}

@media screen and (max-width: 800px) {
  .flexible-section__container--reverse .flexible-section__column:first-child {
    order: 2;
  }
  .flexible-section__container--reverse .flexible-section__column:last-child {
    order: 1;
  }
}

.flexible-section__container--2-cols {
  grid-template-columns: repeat(2, 1fr);
}
.flexible-section__container--2-cols .quote {
  padding-block-end: 12rem;
}
.flexible-section__container--2-cols .quote .quote__graphic {
  max-width: 140px;
}

.flexible-section__container--4-cols {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1100px) {
  .flexible-section__container--4-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

.flexible-section__container--3-cols,
.flexible-section__container--2-thirds-1-third,
.flexible-section__container--1-third-2-thirds {
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 960px) {
  .flexible-section__container--3-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
.flexible-section__container--3-cols .quote {
  padding: 4rem;
}
.flexible-section__container--3-cols .quote .quote__content {
  font-size: var(--text-25);
}
.flexible-section__container--3-cols .quote .quote__graphic {
  display: none;
}
.flexible-section__container--3-cols .quote::after {
  max-width: 60px;
}

@media screen and (max-width: 800px) {
  .flexible-section__container--2-cols,
  .flexible-section__container--3-cols,
  .flexible-section__container--4-cols,
  .flexible-section__container--2_thirds_1_third,
  .flexible-section__container--1_third_2_thirds {
    grid-template-columns: 1fr;
  }
}

.flexible-section__container--2-thirds-1-third .flexible-section__column:nth-child(1) {
  grid-column: span 2;
}

.flexible-section__container--1-third-2-thirds .flexible-section__column:nth-child(2) {
  grid-column: span 2;
}

.hidden {
  display: none;
}

.hidden--visually {
  clip-path: inset(100%);
  clip: rect(1px 1px 1px 1px); /* IE 6/7 */
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap; /* added line */
  width: 1px;
}

.alignleft {
  float: left;
  margin: 2rem 5rem 5rem 0;
}

.alignright {
  float: right;
  margin: 2rem 0 5rem 5rem;
}

@media screen and (max-width: 800px) {
  .alignleft,
  .alignright {
    float: none;
    margin: 2rem 0;
  }
}
.aligncenter {
  margin: 3rem auto;
}
