@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-BoldItalic.woff2') format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Light.woff2') format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Medium.woff2') format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-LightItalic.woff2') format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Bold.woff2') format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Black.woff2') format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Italic.woff2') format("woff2"), url('../fonts/Satoshi-VariableItalic.woff2') format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-MediumItalic.woff2') format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Regular.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-BlackItalic.woff2') format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi Variable;
  src: url('../fonts/Satoshi-Variable.woff2') format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --color--backgroung: #efefef;
  --font--satoshi: Satoshi, sans-serif;
  --color--font: #151515;
  --text-size--regular: 1rem;
  --heading--h1: 4rem;
  --heading--h2: 2.4rem;
  --heading--h3: 1.5rem;
  --heading--h4: 1.375rem;
  --heading--h5: 1.25rem;
  --heading--h6: 1.125rem;
  --text-size--medium: 1.125rem;
  --text-size--huge: 3rem;
  --text-size--small: .875rem;
  --color--button: #151515;
  --color--primary: #e1e433;
  --color--card: white;
  --text-size--large: 1.5rem;
  --0-5rem: var(--text-size--small);
  --text-size--display: 1.5rem;
  --font--satoshi-variable: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --border--radius: .2rem;
  --h2-mobile: var(--text-size--huge);
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

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

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

body {
  background-color: var(--color--backgroung);
  font-family: var(--font--satoshi);
  color: var(--color--font);
  font-size: var(--text-size--regular);
  cursor: default;
  max-width: 100vw;
  line-height: 1.5;
  text-decoration: none;
}

h1 {
  font-size: var(--heading--h1);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1;
}

h2 {
  font-size: var(--heading--h2);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.3;
}

h3 {
  font-size: var(--heading--h3);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
}

h4 {
  font-size: var(--heading--h4);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
}

h5 {
  font-size: var(--heading--h5);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
}

h6 {
  font-size: var(--heading--h6);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
}

p {
  font-size: var(--text-size--regular);
  margin-bottom: 0;
}

a {
  color: var(--color--font);
  font-size: var(--text-size--regular);
  text-decoration: none;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

li {
  font-size: var(--text-size--regular);
  font-weight: 400;
}

img {
  object-fit: cover;
  max-width: 100%;
  display: inline-block;
}

blockquote {
  font-size: var(--text-size--medium);
  border-left: 5px solid #e2e2e2;
  margin-bottom: 0;
  padding: 10px 20px;
  line-height: 1.1;
}

.container {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 110rem;
  min-height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  display: flex;
}

.container.container-small {
  max-width: 80rem;
}

.container.container-large {
  width: 90vw;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.container.hero {
  background-image: linear-gradient(#00000080, #00000080);
  justify-content: center;
  align-items: flex-start;
  max-width: none;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.heading-1 {
  font-size: var(--heading--h1);
  text-align: center;
  overflow-wrap: break-word;
  font-weight: 700;
  line-height: 1;
}

.heading-1.white {
  color: var(--color--backgroung);
  font-size: var(--heading--h1);
  text-align: left;
  text-transform: uppercase;
  word-break: normal;
}

.heading-1.white.smaller {
  font-size: 4rem;
}

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

.heading-1.smaller {
  font-size: var(--heading--h2);
  text-transform: uppercase;
  word-break: normal;
  overflow-wrap: normal;
  flex-flow: wrap;
  display: flex;
}

.heading-1.smaller.tracks {
  font-size: var(--heading--h3);
}

.heading-1.left {
  opacity: .05;
  font-size: var(--heading--h1);
  text-align: left;
  margin-bottom: 1.5rem;
}

.heading-1.left.larger {
  font-size: var(--heading--h3);
  text-transform: none;
}

.heading-1.left.caps {
  font-size: var(--heading--h1);
  text-transform: none;
}

.heading-1.left.blog {
  font-size: 2rem;
  line-height: 1.2;
}

.heading-1.programmes {
  font-size: var(--heading--h2);
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.heading-1.programmes.small {
  font-size: var(--heading--h2);
  text-align: center;
  margin-bottom: auto;
  line-height: 1.25;
}

.heading-1.price {
  font-size: var(--heading--h2);
  margin-top: 0;
}

.heading-1.price.smaller {
  font-size: var(--heading--h3);
  margin-top: 0;
}

.rich-text p {
  font-size: var(--text-size--regular);
  margin-bottom: 0;
}

.rich-text h1, .rich-text h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 500;
}

.rich-text li {
  font-size: var(--text-size--regular);
}

.rich-text h3 {
  font-size: var(--heading--h3);
  margin-bottom: 1rem;
  font-weight: 500;
}

.rich-text h4, .rich-text h5 {
  margin-bottom: 1rem;
  font-weight: 500;
}

.rich-text blockquote {
  margin-bottom: 1rem;
}

.rich-text h6 {
  margin-bottom: 1rem;
  font-weight: 500;
}

.rich-text.rich-text-size {
  text-align: center;
  max-width: 60ch;
}

.text-weight-medium {
  font-weight: 500;
}

.text-size-medium {
  opacity: .61;
  font-size: var(--text-size--small);
  margin-top: 1rem;
  line-height: 1.25;
}

.text-size-display {
  opacity: .09;
  font-size: var(--text-size--medium);
  letter-spacing: normal;
  font-weight: 900;
}

.text-size-display.large {
  opacity: 100;
  font-size: var(--heading--h1);
  line-height: 1.25;
}

.button-primary {
  grid-row-gap: .25rem;
  background-color: var(--color--button);
  color: var(--color--backgroung);
  font-size: var(--text-size--small);
  text-transform: uppercase;
  cursor: pointer;
  border-radius: .2rem;
  flex-direction: column;
  padding: .8rem 2.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s cubic-bezier(.455, .03, .515, .955);
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.text-size-small {
  font-size: var(--text-size--small);
  line-height: 1.5;
}

.heading-2 {
  font-size: var(--heading--h2);
  text-transform: none;
  font-weight: 500;
  line-height: 1;
}

.heading-2.text-weight-regular {
  font-size: 2rem;
  font-weight: 400;
}

.hero-wrapper {
  background-image: url('../images/roxd-hero-thumbnail.jpg'), linear-gradient(#0009, #0009);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: cover, auto;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 90vh;
  padding-top: 8vh;
  display: flex;
  position: relative;
}

.hero-header {
  z-index: 3;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-flow: column;
  align-items: center;
  display: flex;
  position: static;
}

.hero-header.home {
  max-width: 60%;
}

.tag-wrapper {
  grid-column-gap: .6875rem;
  grid-row-gap: .6875rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.elipse {
  background-color: var(--color--primary);
  border-radius: 50%;
  width: .4rem;
  height: .4rem;
}

.elipse.hide-mobile {
  background-color: var(--color--font);
}

.caps {
  text-transform: uppercase;
}

.heading.smaller {
  max-width: 60ch;
}

.hero-component {
  flex-flow: column;
  align-items: center;
  width: 100%;
  display: none;
}

.hero-big-text {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  white-space: nowrap;
  align-items: center;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.hero-content {
  justify-content: space-between;
  width: 100%;
  padding-left: 4rem;
  padding-right: 4rem;
  display: none;
}

.hero-left-content {
  text-align: left;
  max-width: 30ch;
}

.big-elipse {
  background-color: var(--color--font);
  opacity: .13;
  border-radius: 50%;
  width: .5rem;
  min-width: .5rem;
  height: .5rem;
  min-height: .5rem;
  margin-left: 1rem;
  margin-right: 1rem;
}

.hero-marquee {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  align-items: center;
  min-width: 30rem;
  display: flex;
}

.hero-marquee._2 {
  min-width: 35rem;
}

.hero-button {
  display: none;
}

.button-line-wrap {
  background-color: #1515151a;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 1px;
  margin-top: 3px;
  display: flex;
}

.button-line-animation {
  background-color: #151515;
  width: 30%;
  height: 1px;
}

.hero-grid {
  z-index: 0;
  pointer-events: none;
  width: 74vw;
  max-width: 80rem;
  margin-top: -4vw;
  position: absolute;
}

.hero-interaction-wrapper {
  z-index: 2;
  pointer-events: none;
  cursor: none;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding-bottom: 0;
  display: none;
  position: absolute;
  inset: 0%;
}

.text-images-wrapper {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0;
  display: flex;
}

.text-images {
  flex-flow: column;
  max-width: none;
  display: flex;
}

.big-numbers {
  font-size: var(--heading--h2);
  font-weight: 700;
  line-height: 1;
}

.big-numbers.smaller {
  font-size: var(--heading--h3);
}

.big-numbers-card {
  font-size: var(--text-size--small);
}

.big-numbers-wrapper {
  grid-column-gap: 10.5rem;
  grid-row-gap: 10.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  place-items: center;
  display: flex;
}

.span {
  text-align: left;
  white-space: nowrap;
  vertical-align: bottom;
  object-fit: cover;
  background-image: url('../images/Placeholder.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 3.75rem 3.75rem;
  border: 2px solid #0000;
  border-radius: 4.75rem;
  width: 6.5rem;
  height: 4rem;
  font-size: .875rem;
  line-height: 7.5;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.span.three {
  pointer-events: none;
  cursor: default;
  background-image: url('../images/will-means-get-faster-for-hyrox.jpg');
  background-size: cover;
  border-radius: 5rem;
  display: none;
}

.span.one {
  pointer-events: none;
  white-space: nowrap;
  cursor: default;
  background-image: url('../images/willisaac-podium-cropped.jpg');
  background-position: 50% 0;
  background-size: cover;
  border-radius: 5rem;
  display: none;
}

.span.two {
  pointer-events: none;
  cursor: default;
  background-image: url('../images/roxd-coaches.jpg');
  background-size: cover;
  border-radius: 5rem;
  display: none;
}

.grid {
  grid-column-gap: 2rem;
  grid-row-gap: 5.875rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: grid;
}

.grid._8rem-below {
  padding-bottom: 8rem;
  display: none;
}

.card {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  background-color: var(--color--card);
  text-align: left;
  border-radius: 5px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  padding: 4rem 2.5rem 4.3rem;
  display: flex;
  box-shadow: 0 2px 5px #0003;
}

.top-content {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  align-items: flex-start;
  max-width: 29ch;
  display: flex;
}

.big-text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.section {
  padding-top: 4.5rem;
}

.section.light-grey {
  background-color: #fff;
  padding-top: 0;
  padding-bottom: 0;
}

.section._8rem {
  flex-flow: column;
  justify-content: center;
  padding-top: 8rem;
  padding-bottom: 8rem;
  display: flex;
  overflow: hidden;
}

.section.blog-hero {
  background-color: var(--color--card);
  justify-content: flex-start;
  align-items: center;
  min-height: 300px;
  padding-left: 10vw;
  padding-right: 10vw;
  display: flex;
}

.section.blog-hero.team {
  flex-flow: column;
  padding-bottom: 8rem;
  display: block;
}

.section.blog-hero.team.top {
  background-color: var(--color--backgroung);
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.section.blog-hero.story {
  padding-top: 8rem;
  padding-bottom: 8rem;
  padding-left: 5vw;
}

.section.blog-hero.blog {
  margin-top: 4rem;
  padding-left: 2vw;
}

.section.programmes {
  z-index: 5;
  background-color: var(--color--card);
  border-radius: 0;
  margin-top: -1rem;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  position: relative;
  overflow: hidden;
}

.section.product-page {
  min-height: auto;
}

.section.classes {
  background-color: var(--color--card);
  padding-top: 0;
  padding-bottom: 0;
}

.number {
  opacity: .2;
}

.button-hero {
  color: var(--color--font);
  border-radius: .25rem;
}

.logos-component {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  align-items: center;
  display: none;
}

.logos-grid {
  grid-column-gap: 5rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto auto;
  grid-template-columns: auto auto auto auto auto;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  display: grid;
}

.logos {
  justify-content: center;
  align-items: center;
  height: 2.6rem;
  display: flex;
}

.section-logos {
  margin-top: 0;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.section-logos.white {
  background-color: var(--color--card);
  color: var(--color--backgroung);
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.section-logos.equal-padding {
  color: var(--color--card);
  background-image: linear-gradient(#00000080, #00000080), url('../images/will--isaac-hyrox-podium.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  justify-content: center;
  padding-bottom: 8rem;
  display: flex;
}

.section-logos.details {
  display: none;
}

.big-gap {
  grid-column-gap: 12rem;
  grid-row-gap: 12rem;
  flex-flow: column;
  display: flex;
}

.testimonial-wrapper {
  grid-column-gap: 4.9rem;
  grid-row-gap: 4.9rem;
  color: var(--color--font);
  flex-flow: column;
  align-items: center;
  display: flex;
}

.header {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: center;
  word-break: normal;
  flex-flow: column;
  align-items: center;
  max-width: 70vw;
  display: flex;
}

.max-width-45ch {
  max-width: 45ch;
}

.testimonial-text {
  grid-column-gap: 1.5rem;
  grid-row-gap: 2.3rem;
  color: var(--color--card);
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  min-width: auto;
  max-width: 80%;
  margin-top: 1.4rem;
  margin-bottom: 1.5rem;
  display: grid;
}

.testimonial-image {
  border-radius: 2px;
  height: auto;
  max-height: none;
  overflow: hidden;
}

.name {
  grid-column-gap: .3rem;
  grid-row-gap: .3rem;
  flex-flow: column;
  display: flex;
}

.icon {
  object-fit: contain;
}

.display-none {
  display: none;
}

.clip {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-radius: 2px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  display: block;
  overflow: hidden;
}

.slider {
  width: 100%;
}

.opacity-50 {
  opacity: .5;
}

.testimonial-info {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.testimonial-slider-content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  color: var(--color--font);
  flex-flow: row;
  justify-content: center;
  align-items: stretch;
  min-width: 100%;
  height: auto;
  padding: 1.5rem;
  display: flex;
}

.card-testimonial {
  background-color: var(--color--font);
  border-radius: .25rem;
  width: 100%;
  max-width: none;
}

.quote {
  max-width: 100%;
  margin-right: .4rem;
}

.testimonial-slider {
  justify-content: center;
  align-items: flex-start;
  width: auto;
  min-width: 100%;
  max-width: none;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

.image.review {
  border-radius: 100px;
  width: 50px;
  height: 50px;
  display: none;
}

.text-size-large {
  font-size: var(--text-size--large);
}

.text-size-large.height-1-15 {
  line-height: 1.15;
}

.slider-arrow-right {
  background-color: var(--color--card);
  border: 1px solid #ddd;
  border-radius: 100%;
  order: 1;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  padding: 1rem .5rem;
  transition: all .2s;
  display: flex;
}

.slider-arrow-right:hover {
  background-color: var(--color--primary);
}

.text-size-regular {
  font-size: var(--text-size--regular);
  line-height: 1.5;
}

.text-size-regular.height-1-15 {
  line-height: 1.15;
}

.text-size-regular.height-1-15.width_limit {
  max-width: none;
}

.slider-arrow-left {
  background-color: var(--color--card);
  border: 1px solid #ddd;
  border-radius: 100%;
  order: -1;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  padding: 1rem .5rem;
  transition: all .2s;
  display: flex;
}

.slider-arrow-left:hover {
  background-color: var(--color--primary);
}

.slider-star {
  grid-column-gap: .1rem;
  grid-row-gap: .1rem;
  justify-content: flex-start;
  display: block;
}

.footer-component {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.credits-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-links {
  grid-column-gap: 1.1rem;
  grid-row-gap: 1.1rem;
  align-items: center;
  display: flex;
}

.footer-links-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-heading {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.credits {
  text-decoration: none;
  transition: opacity .2s;
}

.credits:hover {
  opacity: .8;
}

.footer-link {
  font-size: 1rem;
  font-weight: 500;
  transition: all .25s;
}

.footer-link:hover {
  color: #15151599;
  transform: translate(0, -2px);
}

.footer-social {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2.6rem;
  height: 2.6rem;
  padding: .7rem;
  transition: all .3s;
  display: flex;
}

.footer-social:hover {
  background-color: var(--color--primary);
  transform: translate(0, -2px);
}

.icon-links {
  object-fit: contain;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.credits-text {
  color: #15151599;
}

.footer-social-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.vertical-line {
  background-color: #8e8c87;
  width: 1px;
  height: .8rem;
}

.section-footer {
  border-top: 1px solid var(--color--backgroung);
  background-color: var(--color--card);
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  margin-top: 0;
  padding-bottom: 3rem;
  display: flex;
  position: static;
  inset: auto 0% 0%;
  overflow: hidden;
}

.font-color {
  color: var(--color--font);
}

.footer-links-component {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-flow: column;
  display: flex;
}

.tag {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  display: flex;
}

.heading-3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.heading-4 {
  margin-top: 0;
}

.text-box {
  max-width: 60ch;
}

.text-box.large {
  max-width: 60rem;
}

.heading-3 {
  font-size: var(--heading--h3);
  font-weight: 400;
  line-height: 1;
}

.hero-style-guide-wrapper {
  background-color: #1a1a1a;
  border-radius: 1rem;
  width: 100%;
  margin-top: 6rem;
  padding: 13rem 2rem 2rem;
  overflow: hidden;
}

.hero-style-guide-content {
  grid-row-gap: 1.5rem;
  color: #f3f3f3;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.style-guide-header {
  grid-row-gap: 2.5rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 4.5rem;
  display: flex;
}

.text-weight-bold {
  font-weight: 700;
}

.text-weight-bold.track {
  font-size: var(--text-size--large);
}

.color-palette-text {
  margin-bottom: 2rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.heading-4 {
  font-size: var(--heading--h4);
  font-weight: 400;
  line-height: 1;
}

.style-guide-content {
  margin-bottom: 8rem;
}

.text-weight-light {
  font-weight: 300;
}

.style-guide-menu {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.color-palette {
  width: 100%;
  height: 10rem;
}

.color-palette.background {
  background-color: var(--color--backgroung);
}

.color-palette.card {
  background-color: var(--color--card);
}

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

.color-palette.font-color {
  background-color: var(--color--font);
}

.heading-6 {
  font-size: var(--heading--h6);
  font-weight: 400;
  line-height: 1;
}

.style-guide-menu-links {
  grid-row-gap: 1.5rem;
  opacity: .5;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  transition: opacity .3s;
  display: flex;
}

.style-guide-menu-links:hover, .style-guide-menu-links.w--current {
  opacity: 1;
}

.typography-content {
  grid-row-gap: .5rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.text-weight-regular {
  font-weight: 400;
}

.style-guide-menu-wrapper {
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
}

.class-name-wrapper {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.class-name-wrapper.margin-bottom-0 {
  margin-bottom: 0;
}

.text-size-tiny {
  font-size: .75rem;
  line-height: 1.15;
}

.typography-wrapper {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  max-width: 30rem;
  display: flex;
}

.heading-5 {
  font-size: var(--heading--h5);
  font-weight: 400;
  line-height: 1;
}

.text-opacity {
  opacity: .7;
}

.divider-line {
  background-color: var(--color--backgroung);
  opacity: 1;
  width: 100%;
  height: 1px;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.text-size-huge {
  font-size: var(--text-size--huge);
  line-height: 1.25;
}

.style-gudie-content {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.style-gudie-content.grid {
  grid-column-gap: 3rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  font-size: 2rem;
  display: grid;
}

.sticky-menu {
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 4rem;
}

.style-guide-component {
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  margin-top: 8rem;
  margin-bottom: 10rem;
}

.style-tag {
  color: #121212;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #fbfbfb;
  border: 1px solid #fbfbfb33;
  border-radius: 10rem;
  padding: .625rem 1.5rem;
  font-weight: 500;
}

.color-palette-card {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: var(--color--card);
  flex-flow: column;
  display: flex;
}

.works-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-flow: column;
  align-items: center;
  display: flex;
}

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

.collection-list._2 {
  border-top: 1px solid #afafaf;
  padding-top: 4rem;
}

.collection-list-wrapper {
  width: 100%;
  margin-bottom: 5vh;
}

.works_card {
  background-color: var(--color--card);
  pointer-events: auto;
  border-radius: .5rem;
  height: auto;
  overflow: hidden;
  box-shadow: 0 0 11px -4px #00000021;
}

.works_card.horizontal {
  opacity: 1;
}

.works_card.video {
  pointer-events: auto;
}

.works_card.video.complete {
  border: 3px #d3d3d3;
  position: relative;
}

.works_card.video.available {
  border: 3px solid #151515;
  position: relative;
}

.works-link {
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  min-height: auto;
  display: flex;
}

.works-link.horizontal {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
}

.works-image {
  flex-flow: row;
  justify-content: center;
  align-items: stretch;
  height: 100%;
  min-height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.work-content {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem;
  display: flex;
}

.max-width-35ch {
  max-width: 30ch;
}

.max-width-35ch.price-wrapper {
  margin-top: .5rem;
  margin-bottom: .5rem;
}

.works-hover-follow {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  white-space: nowrap;
  background-color: #fff6;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 10rem;
  height: 10rem;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.blog-image-wrapper {
  border-radius: 1.5rem;
  width: 100%;
  height: 80vh;
  position: relative;
  overflow: hidden;
}

.mask-frame {
  z-index: 2;
  background-color: var(--color--primary);
  opacity: 1;
  position: absolute;
  inset: auto 0% 0%;
}

.work-template-images {
  width: 100%;
  height: 60vh;
  margin-top: 4rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.work-template-images.margin-bottom {
  margin-bottom: 8rem;
}

.work-template-images.vertical {
  width: 50%;
  height: 90vh;
  margin-bottom: 6rem;
  margin-left: 6vw;
  margin-right: auto;
}

.work-template-images.vertical.right {
  margin-left: auto;
  margin-right: 6vw;
}

.work-template-images.no-margin {
  margin-bottom: 0;
}

.hero-section {
  padding-top: 15vh;
  padding-bottom: 6rem;
}

.content-section {
  padding-top: 12rem;
  padding-bottom: 2.5rem;
}

.work-content-cms {
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
}

.hero-works {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.works-header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-flow: column;
  max-width: 60ch;
  display: flex;
}

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

.form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.text-field-contact {
  color: var(--color--font);
  background-color: #0000;
  border: 1px solid #0000;
  border-bottom-color: #1515151a;
  border-radius: 0;
  margin-top: .5rem;
  margin-bottom: 1.5rem;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  padding-left: 1rem;
  font-size: 1rem;
  transition: all .4s;
}

.text-field-contact:hover {
  color: var(--color--font);
  border-width: 1px;
  border-color: #1515151a;
  padding-left: 1.2rem;
}

.text-field-contact:active {
  color: #212121;
}

.text-field-contact:focus {
  color: var(--color--font);
  border-color: #212121;
}

.form-content {
  width: 100%;
}

.success-message {
  color: #000;
  text-align: center;
  background-color: #f4f4f4;
  border-radius: .6rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.text-size-medium-vw {
  font-size: 1vw;
  font-weight: 400;
}

.form-wrapper {
  margin-top: 1rem;
}

.form-wrapper.full-width {
  width: 60vw;
}

.text-size-contact {
  font-size: 1.375rem;
}

.name-wrapper-contact {
  width: 100%;
}

.submit-button {
  z-index: 3;
  color: #0000;
  background-color: #0000;
  position: absolute;
  inset: 0%;
}

.contact-button {
  background-color: #1d1d1f;
  border-radius: .3rem;
  transition: all .25s;
}

.contact-button.align-center {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.error-message {
  color: #fbfbfb;
  text-align: center;
  background-color: #ec3c3c;
  border-radius: .7rem;
  margin-top: 2rem;
  padding: 1.5rem 1.1rem;
}

.form-component {
  justify-content: center;
  align-items: center;
  min-width: 100%;
  margin-top: 2rem;
  display: flex;
}

.hero-card {
  background-color: var(--color--font);
  border-radius: 1vh;
  width: 45vh;
  height: 55vh;
  position: absolute;
  overflow: hidden;
}

.hero-card.first {
  z-index: 3;
  transform: rotate(-4.89deg);
}

.hero-card.second {
  z-index: 2;
  background-color: var(--color--primary);
  transform: rotate(-.463deg);
}

.hero-card.third {
  z-index: 1;
  background-color: #aa4646;
  transform: rotate(3.712deg);
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.hero-form {
  margin-left: auto;
  padding-top: 8rem;
  padding-bottom: 4rem;
  display: block;
  overflow: visible;
}

.nav-menu-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: flex;
}

.right-navbar-content {
  grid-column-gap: .8rem;
  grid-row-gap: .8rem;
  align-items: center;
  display: flex;
}

.navbar-component {
  grid-column-gap: 1.75rem;
  grid-row-gap: 1.75rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: .75rem;
  padding-bottom: .75rem;
  display: flex;
}

.link-block-navbar {
  color: var(--color--backgroung);
  background-color: #000;
  border: 1px #000;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  padding: .46rem .75rem;
  text-decoration: none;
  transition: all .25s;
  display: flex;
}

.link-block-navbar:hover {
  opacity: .8;
  transform: translate(0, 1px);
}

.brand {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: center;
  width: 7rem;
  height: 1.8rem;
  display: flex;
}

.nav-link {
  color: #fbfbfb;
  padding-top: .2rem;
  padding-bottom: .2rem;
  text-decoration: none;
  transition: all .25s;
  position: relative;
}

.nav-link:hover {
  opacity: .8;
  transform: translate(0, 1px);
}

.nav-menu {
  z-index: 2;
  grid-column-gap: 2.875rem;
  grid-row-gap: 2.875rem;
  align-items: center;
  display: none;
}

.navbar {
  background-color: #fff;
  width: 100%;
  display: block;
}

.empty-state {
  text-align: center;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  display: flex;
}

.hero-section-works {
  padding-top: 15vh;
  padding-bottom: 6rem;
}

.grid-layout {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-layout.desktop-3-column {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-layout.desktop-3-column.grid-gap-m {
  justify-content: end;
}

.grid-layout.grid-gap-m {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
}

.utility-image-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
  inset: 0%;
}

.utility-aspect-4x3 {
  aspect-ratio: 4 / 3;
  position: relative;
}

.utility-margin-bottom-2rem {
  margin-bottom: 2rem;
}

.button-group {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: #0000;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button-wrapper {
  display: flex;
}

.button-secondary {
  grid-row-gap: .25rem;
  border: 1px solid var(--color--font);
  color: var(--color--font);
  font-size: var(--text-size--medium);
  text-transform: uppercase;
  cursor: pointer;
  background-color: #0000;
  border-radius: .2rem;
  flex-direction: column;
  padding: .8rem 2.5rem;
  text-decoration: none;
  transition: all .3s cubic-bezier(.455, .03, .515, .955);
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.delete-this {
  z-index: 20;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: #fbfbfb;
  border-radius: .75rem;
  flex-flow: column;
  padding: 1.5rem;
  text-decoration: none;
  display: flex;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
}

.modal-button {
  color: #fbfbfb;
  text-align: center;
  cursor: pointer;
  background-color: #101011;
  border-radius: .5rem;
  width: 100%;
  padding: .8rem 1rem;
  text-decoration: none;
  transition: all .25s;
}

.modal-button:hover {
  background-color: #101011cc;
  transform: scale(.98);
}

.modal-text {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #101828;
  flex-flow: column;
  display: flex;
}

.modal-embed {
  display: flex;
}

.webflix-link {
  color: #101828;
}

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

.code-embed {
  width: .8rem;
  height: .8rem;
  display: flex;
}

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

.opacity-80 {
  opacity: .8;
}

.exit {
  z-index: 5;
  cursor: pointer;
  background-color: #efefef;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
  position: relative;
  bottom: 1rem;
  left: .5rem;
}

.max-width-37ch {
  max-width: 37ch;
}

.modal-link {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #101828;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.modal-content {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.body {
  background-color: var(--color--backgroung);
  font-family: var(--font--satoshi);
  max-width: 100vw;
  overflow: hidden;
}

.div-block {
  z-index: 4;
  justify-content: center;
  margin-top: 2em;
  padding-top: 2vh;
  padding-bottom: 2vh;
  display: flex;
  position: relative;
}

.image-2 {
  max-width: 30%;
}

.button {
  color: var(--color--font);
  font-size: var(--text-size--small);
  cursor: pointer;
  background-color: #e1e433;
  border-radius: 2px;
  font-weight: 700;
}

.button.home-hero {
  font-size: var(--text-size--regular);
  min-width: 100%;
  margin-top: 0;
}

.button.home-hero.inverse {
  color: var(--color--backgroung);
  background-color: #e1e43300;
  border: 1px solid #fff;
}

.button.nav {
  display: block;
}

.button.alternative {
  text-transform: uppercase;
  background-color: #e1e43300;
  border: 1px solid #1515155c;
}

.button.underline {
  background-color: var(--color--backgroung);
  padding-left: 0;
  padding-right: 0;
  text-decoration: underline;
}

.button.underline.no-background {
  background-color: var(--color--card);
  text-transform: capitalize;
}

.button._1rem-above {
  margin-top: 1rem;
}

.div-block-2 {
  min-width: 100vw;
  max-width: 100vw;
  min-height: auto;
}

.video-container {
  z-index: 0;
  background-image: linear-gradient(360deg, #000, #0000 66%), url('../images/Wedge-Lite-white-setup.jpg');
  background-position: 0 0, 50% 75%;
  background-size: auto, cover;
  border-radius: 20px;
  flex-direction: row;
  min-width: auto;
  min-height: 50em;
  margin-left: 6em;
  margin-right: 6em;
  display: flex;
  position: relative;
}

.video-container.lp {
  background-image: none;
  border-radius: 0;
  align-items: center;
  height: auto;
  min-height: auto;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  display: none;
  position: relative;
}

.html-embed {
  opacity: 1;
  background-color: #212129;
  border-radius: 9px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: auto;
  max-height: 40em;
  display: flex;
  overflow: hidden;
}

.html-embed._3 {
  z-index: 1;
  background-color: #21212900;
  border-radius: 0;
  min-width: auto;
  min-height: auto;
  max-height: none;
  position: static;
  inset: 0%;
}

.html-embed._3.hero {
  inset: 0%;
  background-image: none;
  position: absolute;
  inset: 0%;
}

.video {
  display: block;
  overflow: visible;
}

.div-block-3 {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
}

.div-block-3.coming-soon {
  opacity: .5;
}

._1rem {
  height: 1rem;
}

.image-3 {
  width: 30px;
}

.yellow-text {
  color: var(--color--primary);
  font-weight: 700;
}

.form07_link {
  font-size: 13px;
  font-weight: 700;
}

.text-counter {
  color: #5b617c73;
  font-size: 14px;
}

.paragraph {
  color: #5b617c;
  text-align: center;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
  line-height: 23px;
}

.error-message-2 {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.next-button {
  background-color: var(--color--primary);
  color: var(--color--font);
  text-transform: uppercase;
  border-radius: 5px;
  flex: 1;
  align-self: center;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 700;
  transition: background-color .2s ease-in;
}

.field-title {
  color: #000037;
  background-color: #fff;
  margin-bottom: 5px;
  padding-left: 6px;
  font-size: 14px;
  font-weight: 400;
}

.checkbox {
  z-index: 5;
  opacity: 0;
  cursor: pointer;
  border: 2px solid #0000;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  display: none;
  position: absolute;
  inset: 0%;
}

.checkbox:active {
  border: 1px solid #000;
}

.success-message-2 {
  letter-spacing: 1px;
  padding: 50px;
}

.form12_checkbox_field {
  background-color: #fff;
  border: 1.2px solid #3e34c81a;
  border-radius: 8px;
  flex-direction: column;
  justify-content: flex-start;
  width: 140px;
  height: 120px;
  margin-bottom: 0;
  margin-left: 5px;
  margin-right: 5px;
  padding: 35px 22px 22px;
  display: flex;
  position: relative;
  box-shadow: 1px 1px 35px #c6d3ff47;
}

.checkbox-title {
  color: var(--color--font);
  justify-content: center;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 14px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.form-title-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
  display: flex;
}

.slider-2 {
  background-color: #0000;
  max-width: 700px;
  height: 80vh;
  position: relative;
}

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

.submit-btn {
  background-color: var(--color--primary);
  box-shadow: none;
  color: var(--color--font);
  font-size: var(--text-size--small);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  height: auto;
  margin: 3rem auto auto;
  padding: 14px 2rem;
  font-weight: 700;
  transition: background-color .2s ease-in, box-shadow .2s ease-in;
  display: flex;
}

.submit-btn.no-margin {
  margin-top: 0;
}

.previous {
  opacity: .45;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 100px;
  height: 35px;
  margin: auto auto 30px 30px;
  transition: opacity .2s;
  display: flex;
  position: absolute;
  inset: auto auto 0% 0%;
}

.previous:hover {
  opacity: 1;
}

.field-input {
  color: #000037bf;
  background-color: #0000;
  border: 1.5px solid #3e34c80a;
  border-radius: 6px;
  width: 100%;
  min-height: 45px;
  font-size: 16px;
}

.field-input:focus {
  border-color: #0064fe;
}

.field-input::placeholder {
  color: #0000371a;
  font-family: Varela Round, sans-serif;
}

.next {
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 159px;
  height: 47px;
  margin: auto auto 25px;
  display: block;
  position: absolute;
  right: 35px;
  overflow: visible;
}

.checkbox-field {
  box-shadow: none;
  border-radius: 2px;
  justify-content: flex-start;
  align-items: center;
  width: 28%;
  min-width: 150px;
  height: auto;
  margin-left: 6px;
  margin-right: 6px;
  padding-top: 22px;
  display: flex;
}

.checkbox_wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.checkbox_wrap.checkbox_centre {
  justify-content: center;
}

.checkbox_wrap.checkbox_centre.grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.title-left {
  margin-top: 15px;
  margin-left: 15px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.form-wrapper-2 {
  z-index: 4;
  margin-bottom: 0;
  padding: 0;
  position: absolute;
}

.form-wrap {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 390px;
  margin-bottom: 5px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.form-section-title {
  margin-bottom: 12px;
  font-size: 32px;
  font-weight: 500;
  line-height: 32px;
}

.form-full {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 20px;
  padding-left: 3%;
  padding-right: 3%;
  display: flex;
}

.slide {
  border-radius: 20px;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  position: static;
}

.previous-button {
  opacity: 1;
  color: #5b617c;
  text-indent: -2px;
  flex: none;
  align-self: center;
  padding: 5px 0;
  font-size: 15px;
  transition: opacity .2s ease-in;
}

.previous-button:hover {
  opacity: 1;
  border-bottom-color: #0000008c;
}

.form07_legal {
  color: #101c2e8a;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
}

.slider-content-wrap {
  text-align: center;
  background-color: #fff;
  border-radius: 3px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 90px 0 75px;
  display: flex;
  position: relative;
}

.line-bottom {
  background-color: #c5c7ca;
  height: 1px;
}

.arrow {
  width: 16px;
  margin-right: 8px;
}

.form-content-2 {
  width: 100%;
  margin-bottom: -20px;
}

.form-content-2.final {
  margin-bottom: 0;
}

.text-block {
  color: #5b3acc;
  font-weight: 500;
}

.checkbox-image {
  width: 45px;
}

.counter-image {
  width: 16px;
  margin-right: 5px;
}

.details-right {
  align-items: center;
  margin-top: 15px;
  margin-right: 15px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.results_container {
  z-index: 1;
  opacity: 0;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  max-height: none;
  padding-top: 0;
  padding-left: 5vw;
  padding-right: 5vw;
  display: none;
  position: absolute;
  overflow: auto;
}

.price-wrapper {
  margin-top: 2rem;
}

.full-quiz-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  height: auto;
  min-height: 200vh;
  padding-left: 10vw;
  padding-right: 10vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

._1-5-rem-below {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 1.5rem;
  display: grid;
}

._1-5-rem-below.complete {
  flex-flow: column;
  align-items: end;
  display: flex;
}

._1-5-rem-below.pricing {
  display: block;
}

.navbar-logo-center-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.navbar-logo-center-container.shadow-three {
  width: 100%;
  max-width: 1140px;
}

.container-2 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper-three {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.navbar-brand-three {
  z-index: 5;
  position: absolute;
}

.nav-menu-wrapper-three {
  width: 100%;
}

.nav-menu-three {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-menu-block {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-link-2 {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-2:hover {
  color: #1a1b1fbf;
}

.nav-link-2:focus-visible, .nav-link-2[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible, .nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link:focus-visible, .nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-link-accent {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 20px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-accent:hover {
  color: #1a1b1fbf;
}

.button-primary-2 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-2:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-2:active {
  background-color: #43464d;
}

.nav_logo {
  max-width: 30px;
}

.navbar-logo-center-2 {
  z-index: 200;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  height: 9.5vh;
  display: none;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar-logo-center-container-2 {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.navbar-logo-center-container-2.shadow-three {
  background-color: #fff;
  border: 1px #000;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  height: 9.5vh;
  min-height: auto;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: fixed;
}

.container-3 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper-three-2 {
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.navbar-brand-three-2 {
  z-index: 5;
  position: static;
}

.nav-menu-wrapper-three-2 {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #fdfdfdf2;
  width: 50vw;
  min-height: 100vh;
  margin-top: 9.5vh;
  padding-top: 1rem;
  position: fixed;
  inset: 0% auto 0% 0%;
}

.nav-menu-three-2 {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0;
  padding-bottom: 36px;
  padding-left: 2rem;
  display: flex;
}

.nav-menu-block-2 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
}

.nav-menu-block-2.smaller {
  font-size: var(--text-size--small);
}

.nav-link-3 {
  color: #1a1b1f;
  font-size: var(--text-size--regular);
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-3:hover {
  color: #1a1b1fbf;
}

.nav-link-3:focus-visible, .nav-link-3[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-2 {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle-2 {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle-2:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle-2:focus-visible, .nav-dropdown-toggle-2[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon-2 {
  margin-right: 10px;
}

.nav-dropdown-list-2 {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list-2.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link-2 {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link-2:focus-visible, .nav-dropdown-link-2[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-link-accent-2 {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 20px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-accent-2:hover {
  color: #1a1b1fbf;
}

.button-primary-3 {
  font-family: var(--font--satoshi);
  color: #fff;
  font-size: var(--text-size--regular);
  text-transform: uppercase;
  background-color: #1a1b1f;
  border-radius: 4px;
  padding: 12px 25px;
  font-weight: 400;
  line-height: 1.5;
  transition: all .2s;
}

.button-primary-3:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-3:active {
  background-color: #43464d;
}

.menu-button-3 {
  margin-top: 6px;
  margin-bottom: 6px;
  padding: 12px;
}

.menu-button-3.w--open {
  background-color: #dbdada;
  margin-top: 6px;
  margin-bottom: 6px;
  padding: 12px;
}

.image-4 {
  max-width: 2rem;
}

.div-block-4 {
  padding-left: 24px;
  padding-right: 24px;
}

.divider {
  background-color: #000;
  width: 90%;
  height: 1px;
  margin-top: 50vh;
  margin-bottom: 1rem;
}

.divider.nav {
  opacity: .11;
  margin-top: 0;
}

.small_link {
  font-size: var(--text-size--small);
}

.form-2 {
  display: block;
}

.gradient-overlay-hero {
  z-index: 2;
  background-image: linear-gradient(0deg, #0000008c 8%, #0000008a 55%, #0000);
  min-width: 100%;
  min-height: 70%;
  max-height: none;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.div-block-5 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  min-height: auto;
  margin-top: 9vh;
  padding-top: 5vh;
  padding-bottom: 6vh;
  display: flex;
  position: relative;
  overflow: visible;
}

.code-embed-3 {
  z-index: 4;
  position: static;
  inset: 0%;
}

.custom-input-group {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: stretch;
  min-width: 50vw;
  padding-top: 2rem;
  display: flex;
}

.custom-input-group.checkbox {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 60vw;
  display: grid;
  position: static;
}

.custom-radio {
  min-width: 100%;
}

.buttons-wrapper {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  min-width: 100%;
  padding-top: 2rem;
  display: flex;
}

.next-button {
  flex-flow: row;
  justify-content: center;
  align-items: flex-end;
  min-width: 10vw;
  max-width: 12rem;
  margin-left: auto;
  display: flex;
}

.prev-button {
  z-index: 4;
  margin-right: auto;
  position: static;
  inset: auto auto 2% 2%;
}

.quiz-question {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 5vw;
  padding-right: 5vw;
  display: block;
}

.prev-button-wrapper {
  z-index: 5;
  background-color: #fff;
  justify-content: space-around;
  align-items: center;
  padding: 1% 2%;
  display: flex;
  position: fixed;
  inset: auto 0% 0%;
}

.question-title-wrapper {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.quiz-question-title {
  font-size: var(--heading--h3);
  margin-top: 2rem;
  font-weight: 500;
}

.email-input-field {
  margin-top: 4rem;
  margin-bottom: 1rem;
}

.terms {
  font-size: var(--text-size--small);
}

.icon-2 {
  color: #888;
  margin-right: 0;
  padding-top: 1px;
}

.dropdown-description-wrapper {
  width: 100%;
  padding: 2rem 24px 1.5rem;
}

.infotext {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 22px;
}

.infotext.grey {
  color: #b8b8b8;
}

.nav-point-wrapper {
  margin-left: 4rem;
  margin-right: 0;
  padding-left: 9px;
  padding-right: 9px;
  position: static;
}

.nav-point-wrapper.dropdown {
  cursor: default;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.nav-point-wrapper.last-nav-item {
  padding-right: 0;
}

.nav-point-wrapper.button {
  background-color: #fff0;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.logo {
  width: 150px;
  margin-top: 2px;
}

.dropdown-icon-wrapper {
  width: 100%;
}

.dropdown-list {
  background-color: #f8f9fc;
  height: 400px;
  inset: 4.5rem 0% auto;
  overflow: hidden;
  box-shadow: 0 10px 14px #00000026;
}

.dropdown-list.w--open {
  height: 14rem;
  position: absolute;
  top: 4rem;
  overflow: visible;
}

.nav-menu-2 {
  flex: 1;
  justify-content: flex-end;
  display: flex;
  position: static;
}

.dropdown-item {
  text-align: center;
  background-color: #f7f9fc;
  border-right: 1px solid #ddd;
  flex-wrap: wrap;
  flex: 1;
  align-items: flex-end;
  height: 20rem;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
}

.dropdown-item:hover {
  background-color: #eff1f5;
}

.dropdown-item.image {
  background-image: linear-gradient(0deg, #000, #0000003d), url('../images/scroll-animation-teaser-newsletter.jpg'), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0, 50%, 0 0;
  background-size: auto, cover, auto;
}

.dropdown-item.image._2 {
  background-image: linear-gradient(0deg, #000, #0000003d), url('../images/will-means-get-faster-for-hyrox.jpg');
  background-position: 0 0, 100%;
  background-size: auto, cover;
  max-width: 20vw;
  height: 20rem;
}

.dropdown-item._1 {
  background-image: linear-gradient(0deg, #000, #0000 62%), url('../images/ROXD-complete-track-cover.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 10px;
  max-width: none;
  height: auto;
  margin-left: .1rem;
  margin-right: .1rem;
}

.dropdown-item._3 {
  background-image: url('../images/roxd-coaches.jpg'), linear-gradient(0deg, #000, #0000);
  background-position: 50%, 0 0;
  background-size: cover, auto;
  max-width: 20vw;
  height: 20rem;
}

.dropdown-item._4 {
  background-image: linear-gradient(0deg, #000, #0000 62%), url('../images/ROXD-conditioning-track-cover.jpg');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 10px;
  max-width: none;
  height: auto;
  margin-left: .25rem;
  margin-right: .25rem;
  transition: opacity .2s, background-color .3s;
}

.dropdown-item._5 {
  background-image: linear-gradient(0deg, #000, #0000 72%), url('../images/ROXD-RUN-TRACK.jpg');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, 120%;
  border-radius: 10px;
  max-width: none;
  height: auto;
  margin-left: .25rem;
  margin-right: .25rem;
}

.dropdown-item._6 {
  background-color: var(--color--font);
  text-align: left;
  border-radius: 12px;
  flex-flow: row;
  justify-content: center;
  align-items: flex-end;
  height: auto;
}

.dropdown-item._50 {
  border-right-style: none;
  max-width: none;
  height: auto;
}

.dropdown-item._50.team {
  background-image: linear-gradient(0deg, #000000a1, #0000), url('../images/Huw-and-Charles-ROXD.jpg');
  background-position: 0 0, 50% 30%;
  background-size: auto, cover;
}

.dropdown-item._50.story {
  background-image: linear-gradient(0deg, #000, #0000007d 0%, #0000 99%), url('../images/will--isaac-hyrox-podium.jpg');
  background-position: 0 0, 30% 40%;
  background-size: auto, auto;
}

.dropdown-item._2 {
  background-image: linear-gradient(0deg, #000, #0000 62%), url('../images/ROXD-strength-track-cover.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, 100%;
  border-radius: 10px;
  height: auto;
}

.dropdown-icon {
  width: 60px;
  height: 60px;
}

.centered_w1 {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2em;
  padding-right: 2em;
  display: block;
}

.centered_w1.nav-wrapper {
  z-index: 2;
  border-bottom: 1px solid var(--color--backgroung);
  background-color: var(--color--card);
  justify-content: space-between;
  align-items: center;
  min-width: 100%;
  max-width: 100vw;
  padding-left: 4em;
  padding-right: 4em;
  display: flex;
  position: relative;
}

.nav-main {
  z-index: 99;
  background-color: #f7f9fc;
  border: 1px #000;
  flex-flow: row;
  justify-content: space-between;
  align-items: stretch;
  width: 100vw;
  height: 4.5rem;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-link-4 {
  color: #909090;
  letter-spacing: .2px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 1rem 0;
  font-size: 15px;
  font-weight: 500;
  transition: color .3s ease-in-out;
}

.nav-link-4:hover {
  color: #de5000;
}

.nav-link-4.w--current {
  color: #de5000;
  border-bottom: 3px solid #de5000;
}

.dropdown-item-wrapper {
  z-index: 1;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--color--card);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 100vw;
  height: 100%;
  padding: .9rem 2rem;
  display: flex;
  box-shadow: 0 55px 50px #0000000f;
}

.dropdown-item-wrapper.grid {
  grid-column-gap: 1rem;
}

.dropdown-toggle {
  padding: 0 18px 0 0;
}

.logo-wrapper {
  align-self: center;
  margin-right: 42px;
  padding-left: 0;
}

.logo-wrapper.page-transition {
  padding: 4px 8px;
}

.dropdown-link {
  color: var(--color--primary);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.dropdown-link.title {
  color: var(--color--button);
  margin-bottom: .5rem;
  font-weight: 700;
}

.nav-link-5 {
  display: block;
}

.drop-down-list-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: auto;
  max-width: none;
  padding-top: .5rem;
  padding-left: 0;
  padding-right: 1rem;
  display: flex;
}

.div-block-6 {
  flex-flow: column;
  display: flex;
}

.drop-down-list-item {
  font-size: var(--text-size--small);
  margin-bottom: .5rem;
  text-decoration: none;
}

.drop-down-list-item:hover {
  color: var(--color--primary);
}

.drop-down-list-item.inactive {
  opacity: .19;
}

.drop-down-list-item.inactive:hover {
  opacity: .23;
  color: var(--color--font);
}

.vertical-divider {
  background-color: var(--color--backgroung);
  width: 1px;
  margin-left: .5rem;
  margin-right: .5rem;
}

.sticky-section {
  flex-flow: column;
  min-height: 250vh;
  display: flex;
  position: relative;
}

.star-icon {
  width: 1rem;
  max-width: none;
}

.heading-7 {
  max-width: 40px;
}

.home-hero-text {
  z-index: 5;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: stretch;
  place-items: center;
  min-width: 100%;
  max-width: none;
  display: grid;
  position: relative;
}

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

.white.subtitle {
  font-size: var(--text-size--medium);
}

.yellow-marquee-section {
  background-color: var(--color--primary);
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.yellow-marquee-section._2 {
  display: none;
}

.half-div-wrapper {
  min-width: 10%;
}

.hero-left {
  color: #fff;
  text-align: center;
  background-color: #070606;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  min-width: auto;
  height: auto;
  min-height: 100%;
  padding-bottom: 40px;
  padding-left: 2rem;
  padding-right: 4rem;
  display: flex;
  position: relative;
}

.hero-left.product-page {
  min-width: 50vw;
  padding: 0;
}

.hero-left.product-page.roxd_unlimited {
  background-image: url('../images/ROXD_unlimited.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-left.product-page.midweek-madness {
  background-image: url('../images/midweek_madness_event.jpg');
  background-position: 50% 10%;
  background-repeat: no-repeat;
  background-size: cover;
}

.contents-wrapper-steps {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch start;
  max-width: 100%;
  display: grid;
}

.contents-wrapper-steps.product {
  justify-items: stretch;
  min-width: 100%;
}

.hero-cont {
  flex-flow: row;
  height: auto;
  display: flex;
}

.hero-cont.product-page {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.how-it-works {
  height: auto;
  display: flex;
}

.how-it-works.home {
  display: none;
}

.hero-left-content-2 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  max-width: none;
  height: auto;
  margin-top: 20rem;
  margin-bottom: 30vh;
  display: grid;
  position: sticky;
  top: 30vh;
  bottom: 40px;
}

.half-page-right-div {
  width: 100%;
  min-height: 70vh;
  padding-left: 4rem;
  padding-right: 6rem;
  display: flex;
}

.half-page-right-div.product {
  background-color: var(--color--backgroung);
}

.half-page-right-div.smaller-gap {
  width: auto;
}

.hero-right {
  background-color: #ebebeb;
  width: auto;
  max-width: none;
  position: static;
}

.hero-right.product {
  min-width: 50vw;
}

.section-wrapper-steps {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 100%;
  padding-top: 18rem;
  padding-bottom: 4rem;
  display: flex;
}

.section-wrapper-steps.last {
  padding-bottom: 15rem;
}

.section-wrapper-steps.product {
  padding-top: 4rem;
  padding-bottom: 8rem;
}

.hero-para {
  width: 50%;
}

.how-it-works-header {
  font-size: var(--heading--h2);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.25;
}

.div-block-7 {
  text-align: center;
  flex-flow: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.profession {
  color: #475467;
  line-height: 1.5;
}

.relative {
  position: relative;
}

.relative.rounded-20 {
  border-radius: 20px;
  overflow: hidden;
}

.card-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  perspective-origin: 50% 100%;
  transform-origin: 50% 100%;
  flex-direction: column;
  transition: all .2s;
  display: flex;
}

.card-2:hover {
  transform: scale(1.05);
}

.wrapper {
  justify-content: flex-start;
  display: flex;
}

.card-image {
  object-fit: cover;
  width: 400px;
  height: 300px;
}

.horizontal-between-center {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.list {
  grid-column-gap: 32px;
  flex: none;
  margin-right: 32px;
  display: flex;
}

.media-icon {
  width: 32px;
  height: 32px;
}

.media-icons {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
}

.section-2 {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100vw;
  height: 100vh;
  display: flex;
  overflow: hidden;
}

.name-2 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
}

.slide-img {
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.slide-divider {
  background-color: #ff7a00;
  width: 4em;
  height: .1em;
  margin-top: 2em;
}

.text-f-13 {
  color: #000;
  white-space: nowrap;
  font-family: Oswald, sans-serif;
  font-size: 1.05em;
  font-weight: 300;
  line-height: 1;
}

.text-f-13.all-caps {
  letter-spacing: .15em;
  text-transform: uppercase;
}

.text-f-13.all-caps.light-grey-font {
  color: #fff9;
}

.swiper-slide {
  opacity: .9;
  filter: grayscale();
  color: #ffffff80;
  align-items: center;
  display: flex;
}

.carousel-arrow-w {
  cursor: pointer;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
}

.carousel-arrow-w.arrow-next {
  margin-right: 2em;
}

.carousel-arrow-w.arrow-previous {
  margin-left: 2em;
}

.slide-2 {
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  display: flex;
  position: relative;
}

.location {
  justify-content: center;
  align-items: center;
  margin-bottom: 1em;
  display: flex;
}

.slide-img-overlay {
  z-index: 1;
  background-image: linear-gradient(#0000, #0000 50%, #00000080 65%, #000000bf);
  width: 100%;
  height: 100%;
  position: absolute;
}

.swiper-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  display: flex;
}

.swiper-wrapper.first-swiper-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.slide-content {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 3em;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.heading-9 {
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.75em;
  font-weight: 400;
  line-height: 1;
}

.carousel-arrows {
  z-index: 4;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: center end;
  width: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.swiper.first-swiper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.carousel-arrow-icon {
  z-index: 4;
  flex: none;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 1.25em;
  position: relative;
}

.carousel-arrow-oval {
  z-index: 3;
  background-color: var(--color--primary);
  border-radius: 100%;
  width: 3.25em;
  height: 3.25em;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.carousel-arrow-oval.next-arrow {
  background-color: var(--color--primary);
  inset: 0% 0% 0% auto;
}

.carousel-arrow {
  align-items: center;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 1em;
  display: flex;
  position: relative;
}

.carousel-arrow.arrow-next {
  padding-left: 0;
  padding-right: 1em;
}

.slider-3 {
  margin-bottom: 4em;
  position: relative;
  overflow: visible;
}

.section-3 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: auto;
  display: flex;
}

.credential {
  align-items: center;
  text-decoration: none;
  display: flex;
}

.content {
  overflow: hidden;
}

.header-2 {
  margin-top: 4em;
  margin-bottom: 4em;
}

.text-f-15 {
  color: #000;
  white-space: nowrap;
  font-family: Inconsolata, monospace;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1;
}

.text-f-15.grey-font {
  color: #000000bf;
}

.text-f-15.light-grey-font {
  color: #00000080;
}

.text-f-14-w {
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5em;
  display: flex;
}

.heading-10 {
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.75em;
  font-weight: 400;
  line-height: 1;
}

.credentials {
  justify-content: space-between;
  margin-top: 2em;
  padding-bottom: 2em;
  padding-left: 3em;
  padding-right: 3em;
  display: flex;
}

.text-f-14 {
  color: #878787;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 1.1em;
  font-weight: 300;
  line-height: 1;
}

.slider-4 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: center;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding-top: 8rem;
  padding-bottom: 8rem;
  display: grid;
  position: relative;
  overflow: visible;
}

.dot-divider {
  background-color: #ff7a00;
  border-radius: 100%;
  width: .25em;
  height: .25em;
  margin-left: .75em;
  margin-right: .75em;
}

.heading-11 {
  color: #000;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 5.5em;
  font-weight: 400;
  line-height: 1;
}

.divider-2 {
  background-color: #878787;
  width: 4em;
  height: 1px;
  margin-right: 1.5em;
}

.divider-2.left-margin {
  margin-left: 1.2em;
  margin-right: 0;
}

.code-embed-4 {
  flex: 1;
  min-height: 400px;
  display: none;
}

.slide-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.swiper-slide {
  filter: none;
  justify-content: center;
  align-items: center;
}

.footer-main-grid {
  grid-column-gap: 3rem;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-left: 2rem;
  margin-right: 2rem;
  padding: 2rem 2rem 4rem;
  display: grid;
}

.footer-main-grid.results-page {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.footer-internal-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

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

.text-block-2 {
  font-size: var(--text-size--small);
  font-weight: 500;
}

.footer-credits-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  opacity: .52;
  font-size: var(--text-size--small);
  text-transform: uppercase;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  min-width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  display: grid;
}

.footer-credits-wrapper.results-page {
  padding-bottom: 2rem;
  padding-left: 0;
  padding-right: 0;
}

.footer-credits-text {
  font-size: var(--text-size--small);
}

.link {
  font-size: var(--text-size--small);
  cursor: pointer;
  transition: opacity .2s;
}

.link:hover {
  opacity: .62;
}

.footer-terms-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row dense;
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
}

.blog-grid {
  grid-column-gap: .875rem;
  grid-row-gap: .875rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1.75fr 1.75fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 1rem;
  display: grid;
}

.blog-grid._2 {
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 4rem;
}

.blog-banner-section {
  min-width: auto;
  min-height: 100%;
}

.blog-title-wrapper {
  text-align: left;
  max-width: 70%;
}

.blog-card-content-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-post-image {
  width: 100%;
}

.blog-card-text-content-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: 1rem;
  display: grid;
}

.blog-card-img-wrapper {
  position: relative;
}

.category-label-wrapper {
  z-index: 1;
  background-color: var(--color--primary);
  font-size: var(--text-size--small);
  text-transform: uppercase;
  border-radius: 20px;
  margin-top: .5rem;
  margin-left: .5rem;
  padding: .5rem 1rem;
  font-weight: 700;
  position: absolute;
  inset: 0% auto auto 0%;
}

.category-label-wrapper.apparel {
  background-color: var(--color--backgroung);
}

.blog-title {
  font-size: var(--text-size--regular);
  font-weight: 700;
}

.filter-option-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--color--card);
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  border-radius: 0;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: end;
  place-items: center end;
  min-width: auto;
  max-width: none;
  margin: 0 auto 2rem;
  padding: 1rem 2rem;
  display: flex;
}

.filter-option-wrapper.blog-page {
  margin-bottom: 0;
}

.filter-option-wrapper.home {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px #000;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  min-width: 100%;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 0;
  display: grid;
}

.filter-option-wrapper.home-title {
  border: 1px #000;
  padding-top: 4rem;
}

.filter-option {
  font-size: var(--text-size--small);
  text-transform: uppercase;
  border: 1px solid #000;
  border-radius: 20px;
  padding: .25rem 1rem;
  font-weight: 700;
}

.filter-option.home {
  border-color: #fff;
}

.filter-option.stages {
  border-radius: 100px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.filter-option.no-border {
  border-style: none;
}

.filter-option.small {
  border-color: var(--color--backgroung);
  border-radius: 100px;
  padding: .25rem 1rem;
  font-size: .65rem;
  font-weight: 500;
}

.filter-option.small.inverted {
  border-color: var(--color--button);
  position: absolute;
  inset: 10px 10px auto auto;
}

.filter-option.small.inverted.yellow {
  background-color: var(--color--primary);
  top: 10px;
  right: 10px;
}

.blog-page-title-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: 4rem;
  padding-bottom: 2rem;
  display: grid;
}

.blog-page-subtitles {
  font-size: var(--text-size--small);
  text-transform: none;
}

.blog-banner-image {
  object-fit: cover;
  height: 500px;
  max-height: none;
}

.blog-post-banner-image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  max-height: 100%;
}

.blog-post-content-wrapper {
  background-color: var(--color--card);
  padding: 2rem 8rem 4rem;
}

.author-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: minmax(60px, 60px) 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-author-image {
  border-radius: 60px;
  width: 60px;
  height: 60px;
}

.filter-label {
  font-size: var(--text-size--small);
}

.related-posts-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.related-content-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: 4rem 8rem;
  display: grid;
}

.related-title-wrapper {
  margin-bottom: 2rem;
}

.related-articles-header {
  text-transform: uppercase;
  font-weight: 700;
}

.subtitle-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  margin-top: 1rem;
  display: grid;
}

.youtube-grid {
  grid-column-gap: 5vw;
  grid-row-gap: 5vw;
  border-top: 1px solid var(--color--backgroung);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 2rem;
  display: grid;
}

.youtube-video-content-wrapper {
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 1rem;
  display: flex;
}

.youtube-video-header {
  font-size: var(--heading--h5);
  text-transform: uppercase;
  font-weight: 700;
}

.team-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team-member-card-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team-member-image-wrapper {
  height: 400px;
}

.team-member-image {
  width: 100%;
  height: 100%;
}

.team-member-content-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-9 {
  border: 1px #000;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  display: block;
}

.div-block-10 {
  position: sticky;
}

.team-member-expanded-wrapper {
  z-index: 99;
  background-color: var(--color--backgroung);
  opacity: 0;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: visible;
}

.team-member-expanded-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
}

.team-member-expanded-content-wrapper {
  flex-flow: column;
  margin-top: 4rem;
  padding-top: 4rem;
  padding-left: 4rem;
  padding-right: 4rem;
  display: flex;
  overflow: auto;
}

.team-member-expanded-content-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team-member-close {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-top: .5rem;
  margin-right: .5rem;
  display: flex;
  position: fixed;
  inset: 0% 0% auto auto;
}

.image-7 {
  width: 30px;
}

.team-link {
  text-decoration: underline;
}

.modal-background-wrapper {
  z-index: 9999;
  opacity: 0;
  background-color: #0000008f;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.modal-video-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.our-story-card-item {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 8rem;
  display: flex;
}

.our-story-card-item.flip {
  flex-flow: row-reverse;
  padding-left: 5rem;
}

.our-story-card-item.team {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: auto;
}

.story-item-content-wrapper {
  width: 50%;
}

.story-item-content-wrapper.image {
  border-radius: .25rem;
  height: 600px;
  max-height: none;
  overflow: hidden;
}

.story-item-content-wrapper.content {
  z-index: 2;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--color--backgroung);
  border-radius: .25rem;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  padding: 57px 3rem;
  display: grid;
  position: relative;
  transform: translate(40px);
}

.story-item-content-wrapper.content.reverse {
  background-color: var(--color--backgroung);
  border-radius: .25rem;
  transform: translate(-40px);
}

.story-item-image {
  width: 100%;
  min-height: 100%;
  max-height: 100%;
}

.story-item-image.reverse {
  transform: translate(5rem);
}

.meet-the-team-header-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 50%;
  padding-right: 10vw;
  display: grid;
}

.footer-email-sign-up-container {
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  margin-left: auto;
  display: flex;
}

.footer-email-input-wrapper {
  display: flex;
}

.footer-email-input-text-field {
  margin-bottom: 0;
  padding-bottom: 8px;
}

.form-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-8 {
  max-width: 4rem;
}

.blog-title-large {
  font-size: var(--heading--h2);
  font-weight: 700;
}

.sled-push-illustration-wrapper {
  width: 100%;
  display: flex;
  position: absolute;
  inset: auto auto 0% 0%;
  overflow: hidden;
}

.sled-push-illustration-icon {
  opacity: 1;
  pointer-events: none;
  width: 6rem;
}

.product-image {
  min-width: 100%;
  height: 500px;
  min-height: 100%;
}

.product-faq-wrapper {
  width: 100%;
  margin-top: 2rem;
}

.buy-button-embed {
  margin-top: 10px;
}

.price-text {
  opacity: 1;
  font-size: var(--text-size--medium);
  font-weight: 700;
}

.product-page-header-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-items: start;
  min-width: 100%;
  display: grid;
}

.hidden {
  display: none;
}

.reviewer_wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  max-width: 80%;
  display: flex;
}

.complete-card {
  background-color: var(--color--card);
  border-radius: .5rem;
}

.label_wrapper {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  opacity: .57;
  flex-flow: wrap;
  margin-top: .75rem;
  display: flex;
}

.klaviyo-form-tzu299 {
  padding-top: 0;
  position: relative;
  top: -20px;
}

.link-card {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.relative-slide {
  width: 400px;
  height: 200px;
  position: relative;
}

.works_image {
  object-fit: cover;
  object-position: 50% 25%;
  width: 100%;
  height: 250px;
}

.div-block-11 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-12 {
  position: absolute;
  inset: 6rem 4rem auto auto;
}

.label-div {
  color: var(--color--backgroung);
  font-size: var(--text-size--small);
  text-transform: uppercase;
  background-color: #d3d3d3;
  border-bottom-left-radius: .5rem;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
  padding: 9px;
  font-weight: 700;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.label-div.available {
  background-color: var(--color--font);
}

.open-modal-btn {
  background-color: var(--color--primary);
  color: var(--color--font);
  font-size: var(--text-size--small);
  font-weight: 700;
}

.in-person-grid {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-bottom: 8px;
  padding-left: 8px;
  padding-right: 8px;
  display: grid;
}

.session-card {
  background-image: linear-gradient(0deg, #000, #0000 38%), url('../images/midweek_madness_event.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: .25rem;
  min-width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.session-card.freshold {
  background-image: linear-gradient(0deg, #000, #0000 38%), linear-gradient(#00000054, #00000054), url('../images/Freshold_friday_event_img.jpg');
  background-position: 0 0, 0 0, 0 0;
  background-size: auto, auto, cover;
}

.session-card.saturday {
  background-image: linear-gradient(0deg, #000, #0000 22%), linear-gradient(#00000054, #00000054), url('../images/Strength_saturday_event_pic.jpg');
  background-position: 0 0, 0 0, 0 0;
  background-size: auto, auto, cover;
  border-radius: .25rem;
}

.in-person-sessions {
  flex-flow: column;
  min-height: 80vh;
  display: flex;
}

.event-heading-wrapper {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: start;
  width: 100%;
  margin: auto auto 0%;
  padding: 3px 2rem 2rem;
  display: grid;
}

.event-heading-wrapper.relative {
  z-index: 2;
  justify-content: start;
  margin-left: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.event-heading {
  color: var(--color--card);
  font-size: var(--heading--h4);
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.2;
}

.event-heading.smaller {
  font-size: var(--text-size--regular);
}

.event-subheading {
  opacity: .61;
  color: var(--color--backgroung);
  font-size: var(--text-size--small);
}

.section-header_wrapper {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.grid_section_alt {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template: "."
                 "."
                 / 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 8px;
  display: grid;
}

.grid_section_alt.testimonials {
  background-color: var(--color--card);
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid_section_alt._2 {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  background-color: var(--color--card);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 2.5rem 4rem;
}

.grid-label_wrapper {
  background-color: var(--color--backgroung);
  border-radius: .25rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 400px;
  padding: 4rem 1rem 42px 2rem;
  display: flex;
  overflow: hidden;
}

.grid-label_wrapper.classes {
  background-color: var(--color--card);
  min-height: auto;
}

.grid-label_wrapper.white {
  background-color: var(--color--card);
  color: var(--color--font);
}

.grid-label_wrapper._2 {
  padding-left: 1rem;
}

.grid-label_wrapper.pricing {
  background-color: var(--color--card);
  min-height: auto;
  padding-top: 2rem;
  padding-left: 0;
  padding-right: 0;
}

.programmes-label_container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.programmes-label_container.classes {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.programmes-label_container.centre {
  justify-content: flex-start;
  align-items: center;
}

.programmes-label_container.base {
  margin-top: 2rem;
}

.programmes-label_container.pricing {
  margin-top: 0;
}

.labels_white {
  color: var(--color--backgroung);
}

.coming-soon_label {
  z-index: 1;
  border: 1px solid var(--color--primary);
  background-color: var(--color--font);
  color: var(--color--backgroung);
  font-size: var(--text-size--small);
  border-radius: 0;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: auto;
  margin-left: auto;
  padding: 9px;
  font-weight: 700;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.event-info_wrapper {
  overflow: hidden;
}

.programmes_wrapper {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: auto;
  min-width: 50vw;
  min-height: 90vh;
  display: block;
}

.programme_card {
  border-radius: .25rem;
  height: auto;
  min-height: 300px;
  overflow: hidden;
}

.programme-content_wrapper {
  background-color: var(--color--backgroung);
  font-size: var(--text-size--small);
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 16px 16px 1rem 1rem;
  display: flex;
  position: relative;
}

.programme-content_wrapper.results {
  background-color: var(--color--backgroung);
  border-radius: .25rem;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.programme-type_label {
  font-size: var(--text-size--small);
  background-color: #e0e0e0;
  padding: 8px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.image-9 {
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
}

.programme-title_heading {
  z-index: 1;
  color: var(--color--backgroung);
  font-size: var(--text-size--regular);
  font-weight: 700;
  position: relative;
}

.programme_img {
  z-index: 0;
  background-image: linear-gradient(#00000080, #00000080), url('../images/Terrible-Tuesday-09.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.gradient-cover_div {
  z-index: 1;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

.membership-section {
  background-color: var(--color--card);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: auto;
  padding: 0 8px 8px;
  display: none;
}

.membership-card_div {
  background-color: var(--color--backgroung);
  border-radius: .25rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 50vh;
  padding: 3rem;
  display: flex;
}

.coming-soon_card {
  background-color: var(--color--primary);
  border-radius: .25rem;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: .25rem;
  padding: .25rem .5rem;
  font-size: .5rem;
  display: flex;
}

.coming-soon_text {
  font-size: .6rem;
  font-weight: 700;
}

.ticket-option_card {
  background-color: var(--color--card);
  border-radius: .25rem;
  padding: 24px;
}

.pricing-option_card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--color--card);
  border: 1px solid #d6d6d6;
  border-radius: .25rem;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: stretch;
  height: 100%;
  padding: 2rem;
  display: flex;
  position: relative;
}

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

.pricing-option_card.highlighted {
  border-color: var(--color--font);
}

.pricing-option_card.hidden {
  display: none;
}

.div-block-15 {
  background-color: var(--color--primary);
  margin-top: auto;
  padding: 18px;
}

._1rem-below {
  margin-bottom: 1rem;
}

.grey {
  opacity: .52;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@media screen and (min-width: 1280px) {
  .heading-1.left.larger {
    font-size: var(--heading--h3);
  }

  .section.blog-hero {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .section.product-page {
    min-height: auto;
  }

  .button.home-hero {
    justify-content: center;
    align-items: center;
    min-width: 100%;
    display: flex;
  }

  .form-full {
    padding-top: 20px;
  }

  .navbar-logo-center-container-2.shadow-three {
    max-width: none;
  }

  .container-3 {
    max-width: 1100px;
  }

  .section-wrapper-steps.product {
    min-width: 100%;
  }

  .how-it-works-header {
    font-size: var(--heading--h2);
  }

  .div-block-7 {
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .blog-page-title-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    padding-top: 4rem;
    padding-bottom: 2rem;
    display: grid;
  }

  .blog-page-subtitles {
    text-transform: uppercase;
    font-weight: 500;
  }

  .blog-banner-image {
    min-width: 100%;
    height: 400px;
  }

  .blog-post-banner-image {
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
    max-height: 100%;
  }

  .blog-post-content-wrapper {
    padding: 2rem 8rem 4rem;
  }

  .author-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: minmax(60px, 60px) 1fr;
    grid-auto-columns: 1fr;
    place-content: center start;
    justify-items: start;
    display: grid;
  }

  .blog-author-image {
    border-radius: 60px;
    width: 60px;
    height: 60px;
  }

  .team-member-expanded-wrapper {
    opacity: 0;
    display: none;
  }
}

@media screen and (min-width: 1440px) {
  .heading-1 {
    text-align: left;
  }

  .heading-1.left.larger {
    font-size: var(--heading--h3);
  }

  .section.product-page {
    min-height: auto;
  }

  .hero-left {
    padding-left: 4rem;
    padding-right: 2rem;
  }

  .profession {
    font-size: 18px;
  }

  .blog-page-title-wrapper {
    max-width: 1000px;
  }
}

@media screen and (min-width: 1920px) {
  .video-container {
    background-color: #f8f8f8;
  }

  .container-3 {
    max-width: 1700px;
  }

  .slider-3 {
    margin-bottom: 8em;
  }

  .header-2 {
    margin-top: 8em;
    margin-bottom: 2em;
  }

  .slider-4 {
    margin-bottom: 8em;
  }

  .meet-the-team-header-wrapper {
    padding-right: 10vw;
  }
}

@media screen and (max-width: 991px) {
  .container {
    width: auto;
    max-width: 110rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .container.container-large {
    width: auto;
  }

  .container.hero {
    background-image: none;
    padding-bottom: 1rem;
  }

  .heading-1 {
    font-size: 4rem;
  }

  .heading-1.white {
    font-size: var(--heading--h1);
    text-align: center;
  }

  .heading-1.white.smaller {
    color: var(--color--font);
  }

  .text-size-medium {
    opacity: .47;
  }

  .text-size-display {
    letter-spacing: 0;
    font-size: 1rem;
    line-height: 1.5;
  }

  .heading-2 {
    font-size: 2.5rem;
  }

  .hero-wrapper {
    background-image: linear-gradient(#0006, #0006), url('../images/roxd-hero-thumbnail.jpg');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    justify-content: flex-end;
    align-items: center;
    height: auto;
    min-height: auto;
    margin-top: 0;
    padding-top: 15vh;
    padding-bottom: 6rem;
  }

  .heading {
    max-width: 60ch;
  }

  .hero-component {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .hero-content {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    text-align: center;
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .hero-left-content {
    text-align: center;
  }

  .hero-marquee {
    min-width: 20rem;
  }

  .hero-interaction-wrapper {
    justify-content: center;
    align-items: center;
    height: 50vh;
    padding-bottom: 0;
    position: relative;
  }

  .text-images-wrapper {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
  }

  .text-images {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .big-numbers {
    font-size: var(--heading--h2);
    margin-bottom: .25rem;
  }

  .big-numbers.smaller {
    font-size: var(--heading--h3);
  }

  .big-numbers-card {
    text-align: left;
    justify-content: center;
    align-items: center;
  }

  .big-numbers-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 4rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-around;
    place-items: center;
    width: 100%;
    display: flex;
  }

  .span {
    border-radius: 1rem;
    width: 3rem;
    height: 3rem;
    line-height: 6;
  }

  .span.three, .span.one, .span.two {
    width: 4rem;
  }

  .grid {
    grid-row-gap: 2rem;
    flex-flow: column;
    width: 100%;
    display: flex;
  }

  .card {
    flex-flow: row;
    min-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .top-content {
    max-width: none;
  }

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

  .section {
    margin-top: 9.5vh;
    padding-top: 0;
  }

  .section.light-grey {
    margin-top: 0;
    padding-top: 0;
  }

  .section._8rem {
    margin-top: 0;
  }

  .section.blog-hero {
    margin-top: 9.5vh;
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .section.blog-hero.team {
    padding-top: 4.5rem;
  }

  .section.blog-hero.team.top {
    padding-left: 0;
  }

  .section.blog-hero.team.bottom {
    margin-top: 0;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .section.blog-hero.story.not-top {
    margin-top: 0;
  }

  .section.blog-hero.blog {
    margin-top: 9vh;
  }

  .section.programmes {
    margin-top: 0;
    padding-top: .5rem;
    padding-bottom: 1rem;
  }

  .section.product-page {
    min-height: 90vh;
    position: relative;
  }

  .section.classes {
    margin-top: 0;
  }

  .hero {
    min-height: 60vh;
    margin-top: 4vh;
    position: relative;
  }

  .logos-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 4rem;
    flex-flow: wrap;
  }

  .section-logos {
    margin-top: auto;
  }

  .big-gap {
    grid-column-gap: 8rem;
    grid-row-gap: 8rem;
  }

  .testimonial-wrapper {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .header {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
    max-width: 90vw;
    display: grid;
  }

  .testimonial-text {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    max-width: none;
    margin-top: .5rem;
    margin-bottom: .5rem;
  }

  .testimonial-image {
    height: 100%;
    max-height: none;
  }

  .clip {
    height: 100%;
  }

  .testimonial-slider-content {
    flex-flow: column;
  }

  .card-testimonial {
    border-radius: .25rem;
    width: auto;
    max-width: none;
    height: auto;
  }

  .testimonial-slider {
    max-width: none;
  }

  .image {
    height: 20rem;
  }

  .slider-arrow-right, .slider-arrow-left {
    display: none;
  }

  .footer-component {
    min-height: 0;
  }

  .section-footer {
    padding-top: 0;
  }

  .footer-links-component {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .text-box {
    max-width: 26ch;
  }

  .heading-3 {
    font-size: 3rem;
    line-height: 1.2;
  }

  .text-weight-bold.track {
    font-size: var(--text-size--medium);
  }

  .heading-4 {
    font-size: 1.75rem;
  }

  .style-guide-menu {
    grid-column-gap: 5rem;
    flex-flow: wrap;
    width: 100%;
  }

  .color-palette.primary-color {
    background-color: #fbfbfb;
  }

  .heading-6 {
    font-size: 1.25rem;
  }

  .heading-5 {
    font-size: 1.5rem;
  }

  .text-size-huge {
    font-size: 2rem;
  }

  .style-gudie-content.grid {
    grid-column-gap: 1rem;
  }

  .style-guide-component {
    grid-column-gap: 2rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .collection-list, .collection-list._2 {
    grid-template-columns: 1fr;
  }

  .works-link {
    justify-content: flex-start;
    min-height: auto;
  }

  .works-image {
    height: 73%;
  }

  .work-content {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    align-items: stretch;
    padding-bottom: 1.5rem;
  }

  .max-width-35ch {
    min-width: 100%;
    max-width: none;
  }

  .max-width-35ch.price-wrapper {
    justify-content: center;
    max-width: 100%;
    display: flex;
  }

  .works-hover-follow {
    display: none;
  }

  .blog-image-wrapper {
    justify-content: flex-start;
  }

  .mask-frame {
    z-index: 4;
  }

  .work-template-images.vertical {
    margin-bottom: 6rem;
  }

  .content-section {
    padding-top: 8rem;
  }

  .form {
    justify-content: flex-start;
    align-items: center;
  }

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

  .form-wrapper, .form-wrapper.full-width {
    width: 100%;
  }

  .form-component {
    margin-top: 6rem;
  }

  .hero-card {
    width: 30vh;
    height: 38vh;
  }

  .hero-form {
    margin-top: 4.5rem;
    padding-top: 4.5rem;
    padding-bottom: 4rem;
  }

  .nav-menu-wrap {
    justify-content: flex-end;
    align-items: center;
  }

  .menu-button {
    border-radius: 4px;
    overflow: hidden;
  }

  .menu-button.w--open {
    color: #fbfbfb;
    background-color: #ee64ff;
  }

  .right-navbar-content {
    display: none;
  }

  .navbar-component {
    min-height: 10vh;
    padding-top: .6rem;
    padding-bottom: .6rem;
  }

  .brand, .brand.w--current {
    width: 8rem;
  }

  .nav-link {
    color: #151515;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 2rem;
    display: flex;
  }

  .nav-menu {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    color: #151515;
    background-color: #efefef;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
    display: flex;
    position: absolute;
  }

  .grid-layout.tablet-1-column {
    grid-template-columns: 1fr;
  }

  .image-2 {
    max-width: 20%;
  }

  .button {
    text-align: center;
    width: 100%;
  }

  .button.home-hero {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .button.alternative {
    width: auto;
    position: absolute;
    inset: 0% 0% auto auto;
  }

  .button.underline {
    width: auto;
  }

  .div-block-2 {
    min-width: 75vw;
  }

  .video-container {
    border-radius: .5em;
    min-height: 40em;
    margin-left: 2em;
    margin-right: 2em;
  }

  .html-embed._3.hero {
    justify-content: flex-start;
    align-items: center;
  }

  .html-embed._3.hero.company {
    position: absolute;
  }

  .html-embed._3.hero {
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
    position: absolute;
  }

  .checkbox_wrap.checkbox_centre.grid {
    grid-template-columns: 1fr 1fr;
  }

  .results_container {
    opacity: 0;
    display: none;
  }

  .container-2 {
    max-width: 728px;
  }

  .navbar-wrapper-three {
    justify-content: space-between;
  }

  .navbar-brand-three {
    position: relative;
  }

  .nav-menu-wrapper-three {
    background-color: #0000;
    top: 70px;
  }

  .nav-menu-three {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-link-2 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .menu-button-2 {
    padding: 12px;
  }

  .menu-button-2.w--open {
    color: #fff;
    background-color: #a6b1bf;
  }

  .navbar-logo-center-2 {
    display: flex;
  }

  .navbar-logo-center-container-2.shadow-three {
    border-bottom-style: solid;
    border-bottom-color: var(--color--backgroung);
    min-height: 9.5vh;
  }

  .container-3 {
    max-width: 1100px;
  }

  .navbar-wrapper-three-2 {
    justify-content: space-between;
  }

  .navbar-brand-three-2 {
    position: relative;
  }

  .nav-menu-wrapper-three-2 {
    z-index: 1;
    background-color: var(--color--card);
    width: 65vw;
    margin-top: 9.5vh;
    padding-top: 0;
    padding-bottom: 8rem;
    top: 70px;
    overflow: auto;
  }

  .nav-menu-three-2 {
    background-color: var(--color--backgroung);
    border-radius: 0;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 0;
    padding: 0 0 20px;
    display: flex;
  }

  .nav-menu-block-2 {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }

  .nav-menu-block-2.button, .nav-menu-block-2.nav-base {
    justify-content: center;
    align-items: center;
  }

  .nav-link-3 {
    font-size: var(--text-size--regular);
    padding: 15px;
    display: flex;
  }

  .nav-dropdown-list-2.shadow-three.w--open {
    position: absolute;
  }

  .mobile-margin-top-11 {
    width: 90%;
  }

  .menu-button-3 {
    padding: 12px;
  }

  .menu-button-3.w--open {
    color: #fff0;
    background-color: #a6b1bf00;
    background-image: url('../images/Left-Slider-Arrow.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 40%;
  }

  .divider {
    width: 100%;
    margin-top: 1rem;
  }

  .gradient-overlay-hero {
    background-image: linear-gradient(0deg, #000000a6, #0000008a 41%, #0000);
    min-height: 70%;
  }

  .infotext.grey {
    font-size: 13px;
  }

  .logo {
    width: 106px;
  }

  .centered_w1 {
    padding-left: 42px;
    padding-right: 42px;
  }

  .centered_w1.nav-wrapper {
    align-items: center;
  }

  .nav-main {
    display: none;
  }

  .nav-link-4.w--current {
    padding-bottom: 2px;
  }

  .logo-wrapper {
    flex: 1;
    margin-top: 1px;
  }

  .home-hero-text {
    text-align: center;
    place-items: center stretch;
    padding-bottom: 1rem;
  }

  .hero-left {
    background-color: var(--color--backgroung);
    color: #000;
    width: auto;
    min-width: auto;
    max-width: 100vw;
    min-height: auto;
    padding-bottom: 8rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero-left.product-page {
    min-width: 100vw;
    height: 50vh;
  }

  .contents-wrapper-steps {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    justify-content: start;
    place-items: stretch start;
    max-width: none;
  }

  .contents-wrapper-steps.product {
    min-width: 100%;
  }

  .hero-cont {
    flex-flow: column;
  }

  .hero-cont.product-page {
    grid-template-columns: 1fr;
  }

  .hero-left-content-2 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-items: center;
    max-width: 90%;
    margin-top: 8rem;
    margin-bottom: 1rem;
    display: grid;
  }

  .half-page-right-div {
    background-color: var(--color--card);
    justify-content: center;
    align-items: center;
    width: auto;
    max-width: 100vw;
    min-height: auto;
    padding-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .half-page-right-div.smaller-gap {
    justify-content: center;
    align-items: flex-start;
  }

  .hero-right {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    background-color: var(--color--backgroung);
    grid-template: "."
                   "Area"
                   / 1fr;
    grid-auto-columns: 1fr;
    width: auto;
    max-width: none;
    padding-bottom: 1.5rem;
    display: grid;
  }

  .hero-right.product {
    min-width: 100vw;
    padding-bottom: 0;
    display: block;
  }

  .hero-right.how-it-works {
    grid-template-columns: 1fr 1fr;
    place-items: stretch stretch;
  }

  .section-wrapper-steps {
    text-align: left;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 0;
  }

  .section-wrapper-steps.last {
    max-width: none;
    padding-top: 4rem;
    padding-bottom: 2rem;
  }

  .section-wrapper-steps.product {
    min-width: 100%;
    padding-bottom: 4rem;
  }

  .how-it-works-header {
    font-size: var(--heading--h3);
    max-width: 30ch;
  }

  .how-it-works-header.product-page {
    font-size: var(--heading--h2);
  }

  .how-it-works-header.results {
    font-size: var(--heading--h3);
    min-width: 100%;
    max-width: none;
  }

  .text-span {
    font-size: 2.5rem;
    font-weight: 700;
  }

  .div-block-7 {
    text-align: center;
    flex-flow: column;
    text-decoration: none;
    display: flex;
  }

  .profession {
    font-size: 14px;
  }

  .card-2 {
    grid-row-gap: 16px;
  }

  .card-2:hover {
    margin-right: 64px;
  }

  .card-image {
    width: 320px;
    height: 240px;
  }

  .media-icon {
    width: 24px;
    height: 24px;
  }

  .name-2 {
    font-size: 18px;
  }

  .slider-3 {
    display: flex;
  }

  .header-2 {
    z-index: 0;
    margin-top: 8em;
    margin-bottom: 4em;
  }

  .credentials {
    margin-top: 4em;
    padding-bottom: 6em;
  }

  .slider-4 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    text-align: center;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    display: flex;
  }

  .footer-main-grid {
    grid-column-gap: 29px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-internal-grid {
    grid-column-gap: 9px;
  }

  .blog-grid {
    grid-template-columns: 1.75fr 1.75fr;
  }

  .blog-title-wrapper {
    max-width: none;
  }

  .filter-option-wrapper.home {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    text-align: left;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    place-items: center;
    min-width: 100%;
    padding-top: 0;
    display: block;
    position: relative;
  }

  .filter-option-wrapper.home-title {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .filter-option.inverted {
    border-color: var(--color--backgroung);
  }

  .blog-page-title-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    min-width: 100%;
  }

  .blog-post-content-wrapper {
    padding-top: 4rem;
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .filter-label {
    font-size: var(--text-size--small);
  }

  .related-posts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .related-content-wrapper {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .subtitle-wrapper {
    flex-flow: column;
    display: flex;
  }

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

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

  .team-member-expanded-wrapper {
    z-index: 10000;
  }

  .team-member-expanded-content-wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .our-story-card-item {
    flex-flow: column;
    margin-bottom: 4rem;
  }

  .our-story-card-item.flip {
    flex-flow: column;
    margin-bottom: 4rem;
    padding-left: 0;
  }

  .our-story-card-item.team {
    margin-bottom: 0;
  }

  .story-item-content-wrapper.image {
    width: 100%;
  }

  .story-item-content-wrapper.content {
    background-color: var(--color--card);
    width: auto;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    transform: none;
  }

  .story-item-content-wrapper.content.reverse {
    background-color: var(--color--card);
    transform: none;
  }

  .meet-the-team-header-wrapper {
    width: auto;
    padding: 4rem 2rem;
  }

  .quiz-email-input-container {
    flex-flow: column;
    align-items: center;
    padding-left: 5vw;
    padding-right: 5vw;
    display: flex;
  }

  .sled-push-illustration-wrapper {
    display: none;
  }

  .list-item-2 {
    text-align: left;
  }

  .product-image {
    height: 400px;
  }

  .buy-button-embed {
    min-width: 100%;
  }

  .works_image {
    height: 400px;
  }

  .works_image.top {
    object-position: 50% 0%;
  }

  .div-block-12 {
    position: absolute;
    inset: 3rem 2rem auto 70%;
  }

  .mobile-nav-tabs {
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    min-width: 100%;
    display: flex;
  }

  .tab-link {
    background-color: #ddd0;
  }

  .tab-link.w--current {
    background-color: #c8c8c800;
    border-bottom: 2px solid #000;
    font-weight: 700;
  }

  .tab-menu {
    background-color: var(--color--card);
    margin-bottom: 1rem;
    padding-top: 2rem;
    padding-bottom: 0;
    box-shadow: 0 7px 6px -5px #00000029;
  }

  .div-block-13 {
    z-index: 9999;
    position: absolute;
    inset: 0%;
  }

  .div-block-14 {
    z-index: 99999;
    background-color: var(--color--card);
    min-width: 75%;
    height: 100vh;
    position: fixed;
    inset: 0% auto auto 0%;
    overflow: auto;
  }

  .list-2 {
    min-width: 100%;
    padding-left: 0;
  }

  .text-block-3 {
    font-size: var(--heading--h4);
    text-align: left;
    display: flex;
  }

  .nav-link {
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-right: 2rem;
    font-weight: 500;
  }

  .nav-link.header {
    border-bottom: 1px solid #b8b8b84f;
    min-width: 100%;
    padding-left: 2rem;
  }

  .nav-link.header-larger {
    border-bottom: 1px solid #e2e2e2;
    padding-left: 2rem;
  }

  .small-nav {
    font-weight: 400;
  }

  .list-item-3 {
    background-color: #f3f3f3;
    margin-bottom: .5rem;
    padding: 1rem 2rem;
  }

  .in-person-grid {
    grid-template-columns: 1fr 1fr;
  }

  .session-card {
    min-height: 350px;
  }

  .session-card.freshold {
    background-image: linear-gradient(0deg, #000, #0000 38%), linear-gradient(#0000, #0000), url('../images/Freshold_friday_event_img.jpg');
    background-position: 0 0, 0 0, 50%;
  }

  .session-card.saturday {
    background-image: linear-gradient(0deg, black, #0000 22%), linear-gradient(to bottom, null, null), url('../images/Strength_saturday_event_pic.jpg');
    background-position: 0 0, 0 0, 50%;
  }

  .event-heading-wrapper {
    margin-bottom: 2%;
  }

  .grid_section_alt {
    flex-flow: column;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .grid_section_alt.testimonials {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .grid_section_alt._2 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-label_wrapper {
    min-width: 100%;
    min-height: auto;
    padding-right: 2rem;
    display: block;
  }

  .grid-label_wrapper.black {
    background-color: var(--color--font);
    color: var(--color--card);
  }

  .programmes-label_container {
    justify-content: center;
    align-items: flex-start;
  }

  .programme-content_wrapper.results {
    justify-content: flex-start;
    align-items: center;
    min-height: 150px;
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .container.hero {
    background-image: none;
    padding-bottom: 1rem;
  }

  .heading-1 {
    font-size: var(--heading--h2);
  }

  .heading-1.white {
    font-size: var(--heading--h1);
  }

  .heading-1.white.smaller {
    font-size: 3rem;
  }

  .heading-1.smaller {
    font-size: var(--heading--h2);
  }

  .heading-1.smaller.tracks {
    font-size: 2.25rem;
  }

  .heading-1.left.caps {
    font-size: var(--heading--h2);
  }

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

  .text-size-display {
    font-size: 1rem;
    line-height: 1;
  }

  .heading-2 {
    font-size: 2.375rem;
  }

  .hero-wrapper {
    background-image: linear-gradient(#0006, #0006), url('../images/roxd-hero-thumbnail.jpg');
    background-position: 0 0, 0 0;
    background-repeat: repeat, no-repeat;
    background-size: auto, auto;
    justify-content: flex-end;
    align-items: center;
    min-height: 30rem;
    margin-top: auto;
    padding-bottom: 4rem;
  }

  .hero-content {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .hero-marquee {
    min-width: 30ch;
  }

  .hero-marquee._2 {
    min-width: 45rem;
  }

  .text-images-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .big-numbers {
    font-size: 2rem;
  }

  .big-numbers-card {
    text-align: left;
    max-width: none;
  }

  .big-numbers-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
    display: flex;
  }

  .span {
    background-size: 2.5rem 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
  }

  .card {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
  }

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

  .section {
    margin-top: 4rem;
  }

  .section.blog-hero {
    margin-top: 4rem;
    padding: 4.5rem 1rem 2rem;
  }

  .section.blog-hero.team.top {
    margin-top: 9.5vh;
  }

  .section.blog-hero.team.bottom {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section.blog-hero.story {
    margin-top: 0;
  }

  .section.blog-hero.story.not-top {
    padding-left: 1rem;
  }

  .hero {
    min-height: 30rem;
  }

  .logos-grid {
    grid-row-gap: 3rem;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .section-logos {
    margin-top: 6rem;
  }

  .section-logos.white, .section-logos.equal-padding, .section-logos.details {
    margin-top: 0;
  }

  .big-gap {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .testimonial-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .header {
    max-width: 90vw;
  }

  .testimonial-text {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .testimonial-image {
    object-position: 50% 0%;
    height: auto;
    max-height: none;
  }

  .testimonial-slider-content {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    background-color: var(--color--font);
    flex-flow: column;
    padding: 1rem;
  }

  .card-testimonial {
    border-radius: .3rem;
    width: 100%;
  }

  .image {
    object-position: 50% 20%;
  }

  .text-size-large {
    font-size: var(--text-size--medium);
  }

  .text-size-large.bold {
    font-size: var(--text-size--large);
  }

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

  .footer-social-wrapper {
    justify-content: flex-start;
    align-items: center;
    margin-top: 2rem;
  }

  .section-footer {
    padding-top: 0;
  }

  .heading-3 {
    font-size: 2.875rem;
  }

  .hero-style-guide-wrapper {
    padding-top: 8rem;
  }

  .style-guide-header {
    font-size: .875rem;
  }

  .text-weight-bold.track {
    font-size: var(--heading--h5);
  }

  .heading-4 {
    font-size: 1.625rem;
  }

  .style-guide-menu {
    grid-column-gap: 2rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .heading-6 {
    font-size: 1.125rem;
  }

  .heading-5 {
    font-size: 1.375rem;
  }

  .style-gudie-content.grid {
    grid-column-gap: 1rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .style-guide-component {
    grid-row-gap: 4rem;
    flex-flow: column;
    grid-template-columns: 1fr;
    margin-top: 4rem;
    display: flex;
  }

  .works-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .collection-list {
    grid-row-gap: 2rem;
    flex-flow: column;
    display: flex;
  }

  .works-link {
    min-height: 0;
  }

  .work-content {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .max-width-35ch {
    max-width: 100%;
  }

  .works-hover-follow {
    width: 8rem;
    height: 8rem;
  }

  .work-template-images.margin-bottom {
    margin-bottom: 6rem;
  }

  .work-template-images.vertical {
    width: 100%;
    margin-bottom: 4rem;
    margin-left: auto;
  }

  .work-template-images.vertical.right {
    width: 100%;
  }

  .content-section {
    padding-top: 4rem;
  }

  .form-component {
    margin-top: 4rem;
  }

  .navbar-component {
    padding-top: .3rem;
    padding-bottom: .3rem;
  }

  .brand, .brand.w--current {
    width: 10rem;
  }

  .navbar {
    display: none;
  }

  .hero-section-works {
    padding-bottom: 4rem;
  }

  .grid-layout.grid-gap-m {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .utility-margin-bottom-2rem {
    margin-bottom: 1rem;
  }

  .delete-this {
    left: 1.5rem;
  }

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

  .button.alternative {
    display: block;
    position: static;
  }

  .video-container {
    border-radius: .5em;
    min-height: 500px;
  }

  .video-container.lp {
    min-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .html-embed {
    min-width: auto;
    min-height: 200px;
  }

  .html-embed._3 {
    min-width: 100%;
  }

  .form12_checkbox_field {
    width: 48%;
    margin-bottom: 15px;
    margin-left: 0;
    margin-right: 0;
  }

  .mobile-nav-bottom {
    z-index: 5;
    background-color: #fff;
    border-top: 1px solid #8395b126;
    height: 100px;
    display: block;
    position: fixed;
    inset: auto 0% 0%;
  }

  .previous, .next {
    z-index: 6;
    position: fixed;
  }

  .checkbox_wrap {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .checkbox_wrap.checkbox_centre.grid {
    grid-template-columns: 1fr;
  }

  .form-wrapper-2 {
    width: 100%;
    display: block;
  }

  .form-full {
    padding-top: 0;
  }

  .form-content-2 {
    width: 90%;
  }

  .results_container {
    height: auto;
    min-height: 100vh;
    overflow: auto;
  }

  .full-quiz-wrapper {
    min-height: 400vh;
    overflow: visible;
  }

  ._1-5-rem-below.complete {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .navbar-logo-center-container.shadow-three {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar-brand-three {
    padding-left: 0;
  }

  .nav-menu-wrapper-three {
    border-radius: 0;
    left: -20px;
  }

  .nav-menu-three {
    border-radius: 0;
    flex-direction: column;
    min-width: 100vw;
    margin-top: 0;
    padding-bottom: 30px;
  }

  .nav-menu-block {
    flex-direction: column;
  }

  .nav-link-2 {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .nav-link-accent {
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .navbar-logo-center-container-2.shadow-three {
    border-style: solid;
    border-color: var(--color--backgroung);
    background-color: #fff;
  }

  .navbar-brand-three-2 {
    padding-left: 0;
  }

  .nav-menu-wrapper-three-2 {
    z-index: 9999;
    background-color: var(--color--card);
    width: 65vw;
    padding-bottom: 6rem;
    overflow: auto;
  }

  .nav-menu-three-2 {
    border-radius: 0;
    flex-direction: column;
    margin-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .nav-menu-block-2 {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: .75rem;
  }

  .nav-link-3 {
    font-size: var(--text-size--regular);
    margin-left: 0;
    padding: 16px;
    display: inline-block;
  }

  .nav-dropdown-2 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle-2 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list-2.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list-2.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list-2.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .nav-link-accent-2 {
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .mobile-margin-top-11 {
    min-width: 90%;
    margin-top: 10px;
  }

  .divider {
    margin-top: auto;
  }

  .gradient-overlay-hero {
    min-height: 75%;
  }

  .custom-input-group.checkbox {
    grid-template-rows: auto auto auto auto auto auto;
    max-width: 90vw;
    min-height: auto;
  }

  .custom-checkbox {
    min-width: 100%;
  }

  .buttons-wrapper {
    justify-content: space-between;
    align-items: center;
    min-width: 90vw;
    padding-top: 2rem;
    display: flex;
  }

  .next-button {
    text-align: center;
    justify-content: center;
    align-items: center;
    min-width: auto;
    max-width: 19ch;
    margin-left: auto;
    margin-right: 5%;
    display: flex;
  }

  .prev-button {
    margin-left: 5%;
    bottom: auto;
  }

  .prev-button-wrapper {
    z-index: 4;
    grid-column-gap: 56px;
    grid-row-gap: 56px;
    background-color: #fff;
    flex-flow: row;
    justify-content: space-around;
    align-items: center;
    height: auto;
    min-height: 3rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    display: flex;
    position: fixed;
    inset: auto 0% 0%;
  }

  .centered_w1 {
    padding-left: 36px;
    padding-right: 36px;
  }

  .nav-main {
    justify-content: center;
    align-items: center;
    height: 80px;
    display: none;
  }

  .nav-link-4 {
    font-size: 6vw;
  }

  .logo-wrapper.page-transition {
    margin-right: 0;
  }

  .home-hero-text {
    max-width: 100%;
    padding-bottom: 2rem;
  }

  .hero-left {
    max-width: none;
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 40px;
  }

  .hero-left.product-page {
    min-height: 400px;
  }

  .hero-left.product-page.midweek-madness {
    background-position: 50% 15%;
  }

  .contents-wrapper-steps {
    text-align: left;
    justify-items: start;
    max-width: none;
  }

  .hero-cont {
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-cont.product-page {
    grid-template-columns: 1fr;
  }

  .hero-left-content-2 {
    justify-items: center;
    margin-top: 5vh;
    margin-bottom: 5vh;
  }

  .half-page-right-div {
    min-height: auto;
    padding: 4rem 2rem;
  }

  .half-page-right-div._3 {
    padding-bottom: 8rem;
  }

  .hero-right {
    flex-flow: column wrap;
    flex: 0 auto;
    place-content: flex-end;
    align-self: flex-end;
    align-items: flex-end;
    width: auto;
    max-width: none;
    display: flex;
  }

  .hero-right.how-it-works {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .section-wrapper-steps {
    justify-content: center;
    align-items: flex-start;
    max-width: none;
    padding-top: 0;
    padding-bottom: 0;
  }

  .section-wrapper-steps.last {
    max-width: none;
    padding-top: 0;
    padding-bottom: 0;
  }

  .section-wrapper-steps.product {
    padding-top: 0;
    padding-bottom: 4rem;
  }

  .how-it-works-header, .how-it-works-header.product-page {
    font-size: 2.25rem;
  }

  .text-span {
    font-size: var(--heading--h3);
    font-weight: 700;
    display: block;
  }

  .div-block-7 {
    text-align: center;
    flex-flow: column;
    display: flex;
  }

  .heading-8 {
    font-size: var(--heading--h3);
  }

  .card-2 {
    margin-right: 0;
  }

  .card-2:hover {
    margin-right: 0;
    transform: none;
  }

  .card-image {
    width: 280px;
    height: 210px;
  }

  .media-icons {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
  }

  .header-2 {
    margin-top: 4em;
  }

  .code-embed-4 {
    margin-bottom: 2rem;
  }

  .footer-main-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 1.2rem;
    grid-template-columns: 1fr;
    padding: 4rem 1rem 2rem;
  }

  .footer-internal-grid {
    grid-column-gap: 9px;
  }

  .footer-credits-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-terms-grid {
    justify-content: center;
    align-items: stretch;
  }

  .blog-grid._2 {
    grid-template-columns: 1fr 1fr;
  }

  .filter-option-wrapper.home {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    text-align: left;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: flex-start;
    padding-top: 4rem;
    display: flex;
  }

  .blog-post-content-wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .related-posts-grid {
    grid-template-columns: 1fr;
  }

  .related-content-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .team-grid {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .team-member-image-wrapper {
    height: 600px;
  }

  .team-member-image {
    object-position: 50% 0%;
  }

  .div-block-10 {
    height: 600px;
  }

  .team-member-expanded-wrapper {
    overflow: auto;
  }

  .team-member-expanded-grid {
    flex-flow: column;
    display: flex;
  }

  .team-member-expanded-content-wrapper {
    margin-top: 0;
    padding: 2rem 2rem 4rem 1rem;
    overflow: visible;
  }

  .team-member-close {
    background-color: var(--color--backgroung);
    border-radius: 100px;
  }

  .our-story-card-item {
    margin-bottom: 2rem;
  }

  .story-item-content-wrapper.content {
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .meet-the-team-header-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .form-block {
    width: 100%;
  }

  .image-8 {
    max-width: 12vw;
  }

  .quiz-email-input-container {
    align-items: center;
    padding-left: 5vw;
    padding-right: 5vw;
    display: flex;
  }

  .product-image {
    height: 400px;
  }

  .buy-button-embed {
    min-width: 100%;
  }

  .div-block-11 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: flex-start;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
  }

  .div-block-12 {
    display: block;
    position: absolute;
    inset: auto 30vw 10%;
  }

  .subtitle-paragraph {
    max-width: none;
  }

  .list-2 {
    max-width: 100%;
  }

  .text-block-3 {
    font-size: var(--text-size--medium);
  }

  .nav-link.smaller-link {
    margin-bottom: .25rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .nav-link.header-larger {
    padding-left: 2rem;
  }

  .small-nav {
    font-size: var(--0-5rem);
  }

  .list-item-3 {
    padding-left: 2rem;
  }

  .in-person-grid {
    grid-template-columns: 1fr;
  }

  .session-card {
    background-position: 0 0, 50% 10%;
    min-height: 500px;
  }

  .event-heading-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .grid_section_alt.testimonials {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .grid_section_alt._2 {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .grid-label_wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .programme-content_wrapper.results {
    justify-content: center;
    align-items: flex-start;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media screen and (max-width: 479px) {
  .container {
    flex-flow: column;
    max-width: 100vw;
    min-height: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
  }

  .container.hero {
    padding-bottom: 4rem;
  }

  .heading-1 {
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    max-width: 90vw;
    font-size: 2.9rem;
    display: block;
  }

  .heading-1.white {
    font-size: var(--text-size--huge);
    max-width: none;
  }

  .heading-1.white.smaller {
    font-size: 12vw;
  }

  .heading-1.smaller {
    justify-content: center;
    align-items: center;
    max-width: none;
    font-size: 10vw;
    line-height: 1.2;
  }

  .heading-1.smaller.tracks {
    text-align: left;
  }

  .heading-1.left.larger {
    max-width: none;
  }

  .heading-1.left.caps {
    font-size: var(--heading--h2);
  }

  .heading-1.left.blog {
    font-size: 1.75rem;
  }

  .heading-1.programmes.small {
    font-size: var(--heading--h2);
    text-align: center;
    line-height: 1.25;
  }

  .rich-text {
    width: 100%;
  }

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

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

  .text-size-display.break-mobile {
    word-break: break-all;
  }

  .text-size-display.large {
    font-size: 3rem;
  }

  .button-primary {
    align-items: center;
    width: 100%;
  }

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

  .heading-2.text-weight-regular {
    font-size: 2rem;
  }

  .hero-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    width: auto;
    max-width: 100vw;
    height: auto;
    min-height: 95vh;
    padding-bottom: 0;
    overflow: hidden;
  }

  .hero-header {
    flex-flow: column;
    display: flex;
    position: relative;
  }

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

  .elipse.hide-mobile {
    display: none;
  }

  .heading {
    max-width: 90vw;
  }

  .hero-component {
    display: block;
  }

  .hero-marquee {
    min-width: 30ch;
  }

  .hero-marquee._2 {
    min-width: 50ch;
  }

  .hero-interaction-wrapper {
    height: 60vh;
    display: none;
    position: relative;
  }

  .big-numbers {
    margin-bottom: .25rem;
    font-size: 2.5rem;
  }

  .big-numbers.smaller {
    font-size: var(--heading--h2);
  }

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

  .section.light-grey {
    margin-top: 0;
    padding-top: 0;
  }

  .section._8rem {
    margin-top: 0;
    padding-top: 4rem;
    padding-bottom: 4rem;
    overflow: hidden;
  }

  .section.blog-hero, .section.blog-hero.team.bottom {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .section.blog-hero.story {
    padding-top: 2rem;
  }

  .section.blog-hero.story.not-top {
    padding-left: .5rem;
  }

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

  .hero {
    max-width: 100vw;
    min-height: 20rem;
  }

  .logos-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: auto auto;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .logos {
    height: auto;
  }

  .section-logos {
    max-width: 100vw;
    margin-top: 0;
  }

  .big-gap {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
  }

  .testimonial-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .header {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    max-width: 90vw;
    display: flex;
  }

  .testimonial-text {
    grid-row-gap: 1.4rem;
    padding-top: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .testimonial-image {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .clip {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .testimonial-slider-content {
    margin-top: 2rem;
    padding: 0 0 1.3rem;
  }

  .card-testimonial {
    border-radius: .5rem;
    width: 100%;
  }

  .image.review, .text-size-regular.height-1-15.width_limit {
    max-width: none;
  }

  .footer-component {
    justify-content: center;
    align-items: center;
  }

  .credits-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .footer-links-wrapper {
    text-align: center;
  }

  .footer-social-wrapper {
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .vertical-line.hide-mobile {
    display: none;
  }

  .tag.vertical-mobile {
    flex-flow: column;
  }

  .heading-3 {
    font-size: 2.75rem;
  }

  .hero-style-guide-wrapper {
    padding-top: 6rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .text-weight-bold.track {
    font-size: var(--heading--h5);
  }

  .heading-4 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .style-guide-content {
    margin-bottom: 6rem;
  }

  .style-guide-menu {
    grid-column-gap: 0rem;
    grid-row-gap: 1.5rem;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .heading-6 {
    font-size: 1rem;
  }

  .class-name-wrapper {
    width: 100%;
    overflow: hidden;
  }

  .heading-5 {
    font-size: 1.25rem;
  }

  .style-guide-content-wrapper {
    flex-flow: column;
    align-items: stretch;
    display: flex;
  }

  .divider-line {
    width: 100%;
  }

  .style-gudie-content {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .style-guide-component {
    grid-template-columns: auto;
    grid-auto-columns: auto;
  }

  .collection-list-wrapper {
    max-width: 100%;
  }

  .works-hover-follow {
    width: 6rem;
    height: 6rem;
  }

  .blog-image-wrapper {
    margin-left: 0;
    margin-right: 0;
  }

  .mask-frame {
    z-index: 4;
  }

  .form, .form-wrapper {
    width: 100%;
  }

  .hero-card {
    width: 45vh;
    height: 60vh;
    position: absolute;
  }

  .hero-form {
    padding-top: 12vh;
  }

  .navbar-component {
    padding-top: .2rem;
    padding-bottom: .2rem;
  }

  .brand {
    width: 15rem;
  }

  .brand.w--current {
    width: 14rem;
  }

  .nav-menu {
    width: 100%;
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
  }

  .button-secondary {
    align-items: center;
    width: 100%;
  }

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

  .modal-link {
    flex-flow: wrap;
  }

  .div-block {
    flex-flow: column;
    position: static;
  }

  .image-2 {
    max-width: 20%;
  }

  .div-block-2 {
    min-width: 100vw;
    max-width: 100vw;
    margin-top: 0;
  }

  .video-container {
    background-image: linear-gradient(360deg, #000 14%, #0000 73%), url('../images/Wedge-Lite-white-setup.jpg');
    background-position: 0 0, 50% 100%;
    background-repeat: repeat, no-repeat;
    background-size: auto, 200%;
    margin-left: 3vw;
    margin-right: 3vw;
  }

  .video-container.lp {
    height: auto;
  }

  .html-embed._3 {
    border-radius: 0;
  }

  .div-block-3 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    align-items: flex-start;
    margin-bottom: 0;
    display: grid;
  }

  .form12_checkbox_field {
    width: 75%;
    min-width: auto;
    height: auto;
    margin-bottom: 8px;
    margin-right: 0;
  }

  .slider-2 {
    height: auto;
  }

  .submit-btn {
    margin-bottom: -85px;
    position: static;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .submit-btn.hero {
    position: static;
  }

  .previous {
    max-width: 75px;
    display: flex;
  }

  .mask {
    position: static;
  }

  .checkbox_wrap {
    flex-wrap: wrap;
  }

  .form-section-title {
    font-size: 2em;
    line-height: 1.3em;
  }

  .form-full {
    min-height: auto;
  }

  .slider-content-wrap {
    justify-content: center;
    width: 100%;
    margin-bottom: 140px;
    padding: 50px 10px;
  }

  .form-content-2 {
    width: 100%;
  }

  .results_container {
    min-width: 100%;
    max-height: none;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  ._1-5-rem-below {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    margin-bottom: 2rem;
  }

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

  .container-2 {
    max-width: none;
  }

  .nav-menu-three {
    flex-direction: column;
  }

  .container-3 {
    max-width: none;
  }

  .nav-menu-wrapper-three-2 {
    width: 100vw;
    padding-bottom: 8rem;
    overflow: auto;
  }

  .nav-menu-three-2 {
    flex-direction: column;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .nav-menu-block-2.base {
    margin-top: 0;
  }

  .nav-menu-block-2.white {
    margin-top: 0;
    margin-bottom: 0;
  }

  .nav-link-3 {
    font-size: var(--text-size--regular);
  }

  .menu-button-3.w--open {
    color: #fff0;
    background-color: #a6b1bf00;
  }

  .gradient-overlay-hero {
    background-image: linear-gradient(0deg, #000000a6, #0000008a 69%, #0000);
    min-height: 55%;
    max-height: 55%;
  }

  .buttons-wrapper {
    flex-flow: column-reverse wrap;
  }

  .next-button {
    max-width: 16ch;
    margin-bottom: auto;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 14px;
  }

  .quiz-question-title {
    margin-bottom: 1rem;
  }

  .terms {
    font-size: .65rem;
  }

  .centered_w1 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-link-4 {
    font-size: 7vw;
  }

  .yellow-marquee-section {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .hero-left {
    background-image: linear-gradient(#0000, #0000);
    min-width: auto;
    max-width: 100vw;
    padding: 2rem 1rem 4rem;
    display: flex;
  }

  .contents-wrapper-steps {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    text-align: left;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-content: stretch center;
    align-items: flex-start;
    max-width: 90vw;
    padding-bottom: 0;
    display: flex;
  }

  .half-page-right-div {
    max-width: 100vw;
    min-height: 60vh;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .half-page-right-div._1 {
    min-width: 100%;
    min-height: auto;
    padding-top: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .half-page-right-div.product {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .half-page-right-div.smaller-gap {
    min-width: 100%;
    min-height: auto;
    padding: 4rem 1rem;
  }

  .half-page-right-div._3 {
    min-width: 100%;
    min-height: auto;
    padding-bottom: 6rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-right {
    place-content: center;
    align-items: center;
    min-width: 100vw;
  }

  .hero-right.how-it-works {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .section-wrapper-steps {
    max-width: none;
    padding-bottom: 0;
  }

  .section-wrapper-steps.last {
    max-width: none;
    padding-bottom: 0;
  }

  .hero-para {
    width: 100%;
  }

  .how-it-works-header {
    max-width: 80vw;
    font-size: 8vw;
  }

  .how-it-works-header.product-page {
    font-size: 2.25rem;
  }

  .wrapper {
    min-height: 80%;
  }

  .card-image {
    background-color: var(--color--backgroung);
    background-image: url('../images/Hyroxer-fitness-cover.jpg');
    background-position: 50%;
    background-size: cover;
  }

  .image-5 {
    width: auto;
    max-width: none;
    max-height: 300px;
  }

  .text-f-13, .text-f-13.all-caps.light-grey-font {
    font-size: 1.2em;
  }

  .carousel-arrow-w.arrow-next {
    margin-right: 1em;
  }

  .carousel-arrow-w.arrow-previous {
    margin-left: 1em;
  }

  .heading-9 {
    font-size: 3.25em;
  }

  .carousel-arrows {
    margin-top: 2.5em;
  }

  .section-3 {
    min-height: 90vh;
  }

  .credential.top-margin {
    margin-top: 2em;
  }

  .header-2 {
    margin-top: 5em;
    margin-bottom: 5em;
  }

  .text-f-15 {
    font-size: 1.4em;
  }

  .heading-10 {
    font-size: 3.25em;
  }

  .credentials {
    flex-direction: column;
    align-items: center;
  }

  .text-f-14 {
    font-size: 1.4em;
  }

  .heading-11 {
    font-size: 5em;
  }

  .footer-main-grid {
    grid-template-columns: 1fr;
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .footer-main-grid.results-page {
    grid-template-columns: 1fr;
    margin-top: 4rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .footer-credits-wrapper, .footer-credits-wrapper.results-page {
    grid-template-columns: 1fr;
  }

  .footer-terms-grid {
    justify-content: center;
    align-items: stretch;
  }

  .blog-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1.75fr;
  }

  .blog-grid._2 {
    grid-template-columns: 1fr;
  }

  .filter-option-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    place-items: center end;
    padding-left: .5rem;
    padding-right: .5rem;
    display: flex;
  }

  .filter-option-wrapper.blog {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: center;
    padding-left: 1rem;
    display: grid;
  }

  .filter-option, .filter-option.home {
    font-size: var(--text-size--small);
  }

  .blog-page-title-wrapper {
    padding-top: 0;
  }

  .blog-page-subtitles {
    text-transform: none;
  }

  .blog-post-content-wrapper {
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .filter-label {
    display: block;
  }

  .youtube-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .team-member-image-wrapper {
    height: 400px;
  }

  .team-member-expanded-wrapper {
    flex-flow: column;
    height: 100vh;
    display: none;
    position: fixed;
    inset: 0%;
  }

  .team-member-expanded-grid {
    flex-flow: column;
    display: flex;
  }

  .team-member-expanded-content-wrapper {
    margin-top: 2rem;
    padding-top: 0;
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .modal-background-wrapper {
    z-index: 999;
    opacity: 0;
    display: none;
  }

  .story-item-content-wrapper.content.reverse {
    padding-top: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .meet-the-team-header-wrapper {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .quiz-email-input-container {
    align-items: center;
  }

  .reviewer_wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: .25fr;
    grid-auto-columns: 1fr;
    max-width: none;
    display: grid;
  }

  .works_image.top {
    height: 350px;
  }

  .nav-link.header-larger {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
  }

  .list-item-3 {
    padding-left: 1.5rem;
  }

  .event-heading-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .grid_section_alt.testimonials {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .grid_section_alt._2, .grid-label_wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .programmes-label_container.centre {
    text-align: center;
  }

  .programme-content_wrapper.results {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

#w-node-_35e999c5-ac05-ae74-0e22-8baee0a93ee8-42f09c13, #w-node-_0e40e90b-9d43-23fa-21ea-f08f7e0f1f53-42f09c13 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_303dff88-d79c-0f93-1778-480a1e9086f1-42f09c13, #w-node-_57490d62-d295-2a8c-11c3-e39ac20a97a2-42f09c13 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#quiz-start-how-it-works.w-node-a0214055-a5b9-6870-0c35-2638d43cc460-42f09c13 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-cdec4faf-db5c-533f-c277-60d9045ca2a1-42f09c13 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_746f81be-0f25-7824-c033-30f6180a14f9-42f09c13 {
  grid-area: span 3 / span 2 / span 3 / span 2;
}

#w-node-_746f81be-0f25-7824-c033-30f6180a1506-42f09c13, #w-node-_746f81be-0f25-7824-c033-30f6180a1515-42f09c13 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_746f81be-0f25-7824-c033-30f6180a1524-42f09c13, #w-node-a97d7d8e-4efa-82b6-95d4-f169f2b6acb9-42f09c13 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_26c277f8-ba92-62f3-2ff2-f96f34dca641-42f09c13 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_28156a0e-a93d-fb8a-be3e-8c4a190c5ce2-42f09c13 {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-a89859e9-218a-a843-15b8-967caf40468c-42f09c13 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_549cf4f9-929f-b455-e366-999aa29812dc-1dae5d7d {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_243157cd-3cb6-ab15-fab9-64d3f7ad8f90-42f09c71 {
  align-self: center;
}

#w-node-_16161a0c-e67f-a71c-f21e-bd0cd2ccc7f1-42f09c71 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_2fa2d160-604e-3ab1-1c40-272a39eb7e67-da0c5edd, #w-node-ce6c088f-9445-8d06-0a28-10db41feff14-da0c5edd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ec4957b2-e830-2a98-3ff3-7c0970b1ac54-da0c5edd {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-ec4957b2-e830-2a98-3ff3-7c0970b1ac61-da0c5edd, #w-node-b08771a7-3dcb-2c25-a68b-551e23111869-da0c5edd, #w-node-b0b6f671-b5db-e261-6a2e-853ddb6f068b-da0c5edd {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_8a414a79-5ebe-a972-a233-e0ccf07ca6e4-f07ca6e3 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_8a414a79-5ebe-a972-a233-e0ccf07ca6ee-f07ca6e3, #w-node-_8a414a79-5ebe-a972-a233-e0ccf07ca6f7-f07ca6e3, #w-node-_8a414a79-5ebe-a972-a233-e0ccf07ca703-f07ca6e3 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

@media screen and (min-width: 1440px) {
  #w-node-cdec4faf-db5c-533f-c277-60d9045ca2a1-42f09c13 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (min-width: 1280px) {
  #w-node-_3bd32612-9869-9bf6-4565-bc2a80807f35-42f09c13 {
    justify-self: auto;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_47db8337-257e-7c34-b386-9eecb2090eec-42f09c13 {
    justify-self: stretch;
  }

  #w-node-_35e999c5-ac05-ae74-0e22-8baee0a93ee8-42f09c13 {
    grid-area: span 2 / span 3 / span 2 / span 3;
    justify-self: start;
  }

  #w-node-f570a72f-723e-d5f7-7883-c999e78a7de3-42f09c13 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-cdec4faf-db5c-533f-c277-60d9045ca2a1-42f09c13 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_3bd32612-9869-9bf6-4565-bc2a80807f35-42f09c13 {
    justify-self: stretch;
  }

  #w-node-_5188517b-ddd8-e2ff-0b7e-4fafcbfb4731-42f09c13 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_746f81be-0f25-7824-c033-30f6180a14f9-42f09c13 {
    grid-area: span 2 / span 4 / span 2 / span 4;
    justify-self: start;
  }

  #w-node-_746f81be-0f25-7824-c033-30f6180a1506-42f09c13 {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_746f81be-0f25-7824-c033-30f6180a1515-42f09c13 {
    grid-area: span 3 / span 2 / span 3 / span 2;
  }

  #w-node-_746f81be-0f25-7824-c033-30f6180a1524-42f09c13, #w-node-a97d7d8e-4efa-82b6-95d4-f169f2b6acb9-42f09c13 {
    grid-area: span 3 / span 1 / span 3 / span 1;
  }

  #w-node-_26c277f8-ba92-62f3-2ff2-f96f34dca641-42f09c13 {
    grid-area: span 3 / span 2 / span 3 / span 2;
  }

  #w-node-_549cf4f9-929f-b455-e366-999aa29812dc-1dae5d7d, #w-node-_16161a0c-e67f-a71c-f21e-bd0cd2ccc7f1-42f09c71 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-ec4957b2-e830-2a98-3ff3-7c0970b1ac54-da0c5edd {
    grid-area: span 2 / span 3 / span 2 / span 3;
    justify-self: start;
  }

  #w-node-_8a414a79-5ebe-a972-a233-e0ccf07ca6e4-f07ca6e3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_8a414a79-5ebe-a972-a233-e0ccf07ca6ee-f07ca6e3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-be17febb-a7b3-ab41-8eb6-931cc5267fc7-42f09c13 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_0e40e90b-9d43-23fa-21ea-f08f7e0f1f53-42f09c13 {
    grid-area: span 2 / span 3 / span 2 / span 3;
  }

  #w-node-_57490d62-d295-2a8c-11c3-e39ac20a97a2-42f09c13 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-f570a72f-723e-d5f7-7883-c999e78a7de3-42f09c13 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_746f81be-0f25-7824-c033-30f6180a14f9-42f09c13 {
    grid-area: span 1 / span 6 / span 1 / span 6;
    justify-self: start;
  }

  #w-node-_746f81be-0f25-7824-c033-30f6180a1506-42f09c13 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_746f81be-0f25-7824-c033-30f6180a1515-42f09c13 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_746f81be-0f25-7824-c033-30f6180a1524-42f09c13, #w-node-a97d7d8e-4efa-82b6-95d4-f169f2b6acb9-42f09c13, #w-node-_26c277f8-ba92-62f3-2ff2-f96f34dca641-42f09c13 {
    grid-area: span 3 / span 2 / span 3 / span 2;
  }

  #w-node-_549cf4f9-929f-b455-e366-999aa29812dc-1dae5d7d, #w-node-_95b0ea12-5de1-9214-bb74-3cd21dae5d7f-1dae5d7d, #w-node-_95b0ea12-5de1-9214-bb74-3cd21dae5d8c-1dae5d7d, #w-node-_95b0ea12-5de1-9214-bb74-3cd21dae5d95-1dae5d7d, #w-node-_16161a0c-e67f-a71c-f21e-bd0cd2ccc7f1-42f09c71, #w-node-_16161a0c-e67f-a71c-f21e-bd0cd2ccc7f4-42f09c71, #w-node-_16161a0c-e67f-a71c-f21e-bd0cd2ccc803-42f09c71, #w-node-_16161a0c-e67f-a71c-f21e-bd0cd2ccc80c-42f09c71 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_8a414a79-5ebe-a972-a233-e0ccf07ca6e4-f07ca6e3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_35e999c5-ac05-ae74-0e22-8baee0a93ee8-42f09c13 {
    grid-area: span 2 / span 1 / span 2 / span 1;
    justify-self: start;
  }

  #w-node-_0e40e90b-9d43-23fa-21ea-f08f7e0f1f53-42f09c13 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_57490d62-d295-2a8c-11c3-e39ac20a97a2-42f09c13 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_746f81be-0f25-7824-c033-30f6180a14f9-42f09c13 {
    grid-area: span 1 / span 6 / span 1 / span 6;
    justify-self: start;
  }

  #w-node-_746f81be-0f25-7824-c033-30f6180a1506-42f09c13, #w-node-_746f81be-0f25-7824-c033-30f6180a1515-42f09c13 {
    grid-area: span 1 / span 6 / span 1 / span 6;
  }

  #w-node-_746f81be-0f25-7824-c033-30f6180a1524-42f09c13, #w-node-a97d7d8e-4efa-82b6-95d4-f169f2b6acb9-42f09c13 {
    grid-area: span 2 / span 6 / span 2 / span 6;
  }

  #w-node-_26c277f8-ba92-62f3-2ff2-f96f34dca641-42f09c13 {
    grid-area: span 3 / span 6 / span 3 / span 6;
  }

  #w-node-_95b0ea12-5de1-9214-bb74-3cd21dae5d7f-1dae5d7d, #w-node-_95b0ea12-5de1-9214-bb74-3cd21dae5d8c-1dae5d7d, #w-node-_16161a0c-e67f-a71c-f21e-bd0cd2ccc7f4-42f09c71, #w-node-_16161a0c-e67f-a71c-f21e-bd0cd2ccc803-42f09c71 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-ec4957b2-e830-2a98-3ff3-7c0970b1ac54-da0c5edd, #w-node-_8a414a79-5ebe-a972-a233-e0ccf07ca6e4-f07ca6e3 {
    grid-area: span 2 / span 1 / span 2 / span 1;
    justify-self: start;
  }
}


@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Italic.woff2') format('woff2'), url('../fonts/Satoshi-VariableItalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BlackItalic.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi Variable';
  src: url('../fonts/Satoshi-Variable.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}