:root {
  --padding: 1.25rem;
  --radius: 1rem;
}
@media (min-width: 37.5rem) {
  :root {
    --padding: 1.75rem;
  }
}
@media (min-width: 56.25rem) {
  :root {
    --padding: 2.5rem;
    --radius: 1.25rem;
  }
}
@media (min-width: 75rem) {
  :root {
    --padding: 5rem;
  }
}
.vishid,
.screen-reader-text,
.screen-reader-response {
  color: transparent !important;
  height: 1px !important;
  left: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  top: 0 !important;
  white-space: nowrap !important;
  width: 1px !important;
}
* {
  box-sizing: border-box;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}
* + * {
  margin-top: 1em;
}
html {
  background-color: #F7F8F5;
  min-height: 100%;
  scroll-behavior: smooth;
}
body,
br,
li,
dt,
dd,
th,
td,
option,
span,
main,
#wpadminbar {
  margin-top: 0;
}
body {
  background-color: #F7F8F5;
  color: #161913;
  display: flex;
  flex-direction: column;
  font-family: 'hanken-grotesk', sans-serif;
  font-variation-settings: 'wght' 400;
  font-weight: 400;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: clip;
}
/*
----------------------------------------------
BASE ELEMENTS
----------------------------------------------
*/
a {
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: #6F7C64;
}
a img {
  border: 0;
}
strong {
  font-weight: 600;
  font-variation-settings: 'wght' 900;
}
p a {
  color: inherit;
  text-decoration: underline;
  transition: background-color 0.3s;
}
p a:hover {
  background-color: #6F7C64;
}
p a[role='button'] {
  color: #F7F8F5;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
}
h1 {
  font-size: 2rem;
  font-variation-settings: 'wght' 900;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}
@media (min-width: 56.25rem) {
  h1 {
    font-size: 4rem;
  }
}
@media (min-width: 75rem) {
  h1 {
    font-size: 6rem;
  }
}
h2 {
  font-size: 1.75rem;
  font-variation-settings: 'wght' 900;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.125;
}
@media (min-width: 56.25rem) {
  h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 75rem) {
  h2 {
    font-size: 3rem;
  }
}
h3 {
  font-size: 1.25rem;
  font-variation-settings: 'wght' 900;
  font-weight: 900;
}
@media (min-width: 56.25rem) {
  h3 {
    font-size: 2rem;
  }
}
h4 {
  font-size: 1.3125rem;
}
h5 {
  font-size: 0.875rem;
}
h6 {
  font-size: 0.75rem;
}
form {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(12, 1fr);
  position: relative;
}
form > * {
  grid-column-end: span 12;
  margin-top: 0;
}
@media screen and (min-width: 37.5em) {
  form .one-quarter {
    grid-column-end: span 3;
  }
  form .third {
    grid-column-end: span 4;
  }
  form .half {
    grid-column-end: span 6;
  }
  form .two-thirds {
    grid-column-end: span 8;
  }
  form .three-quarters {
    grid-column-end: span 9;
  }
}
form .submit {
  margin-top: 0.5rem;
}
form .submit [type='submit'] + p {
  margin-top: 1rem;
}
form .submit p {
  max-width: 64em;
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.form-row > * {
  width: 100%;
}
fieldset {
  border: 0;
}
input,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #D6D8D5;
  border: none;
  border-radius: calc(var(--radius) * 0.5);
  color: #161913;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
  padding: 1em 1em;
  transition: background-color 0.3s, border 0.3s;
  width: 100%;
}
input:focus,
select:focus,
textarea:focus {
  outline: 0;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #161913;
  font-size: 1em;
  font-weight: 400;
  opacity: 0.75;
}
input[type='checkbox'],
input[type='radio'] {
  background-image: url(../images/icon-tick-background.svg);
  background-position: 50% 500%;
  background-repeat: no-repeat;
  background-size: 1em;
  cursor: pointer;
  display: inline-block;
  height: 1.5em;
  padding: 0;
  vertical-align: middle;
  transition: background 0.3s ease-out, border 0.3s;
  width: 1.5em;
}
input[type='checkbox']:checked,
input[type='radio']:checked {
  background-position: 50% 50%;
  border-color: #6F7C64;
}
input[type='checkbox'] + label,
input[type='radio'] + label {
  cursor: pointer;
  display: inline-block;
  margin-top: 0;
  max-width: calc(100% - 2rem);
  padding-left: 0.5em;
  transition: color 0.3s;
  vertical-align: middle;
}
label {
  display: block;
  padding-left: 1.5em;
}
label + input,
label + select,
label + textarea {
  margin-top: 0.25em;
}
select {
  background-image: url(../images/icon-arrow-down.svg);
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 1em;
  cursor: pointer;
  padding-right: 2.5em;
}
select::-ms-expand {
  display: none;
  opacity: 0;
}
textarea {
  display: block;
  height: 10em;
  resize: none;
  transition: background-color 0.3s, border 0.3s;
}
.input {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  /*
    select {
        background-image: url(../images/icon-arrow-down.svg);
        background-position: .75rem center;
        background-repeat: no-repeat;
        background-size: 1rem 1rem;
        font-weight: 500;
        line-height: 2;
        padding: 1.25em 1rem .375em 1rem;
        
        & ~ label {
            color: @foreground;
            font-size: .875rem;
            font-weight: 700;
            left: calc(1rem + 2px);
            letter-spacing: .1em;
            line-height: 1.5;
            margin: 0;
            padding: 0;
            pointer-events: none;
            position: absolute;
            text-transform: uppercase;
            top: calc(50% - .75em);
            transform: translateY(-.5rem) scale(.625);
            transform-origin: top left;
            transition: color .3s, transform .3s;
            z-index: 5;
        }
    }
    */
}
.input input,
.input select,
.input textarea {
  background-color: #D6D8D5;
  border: 1px solid #D6D8D5;
  color: #161913;
  padding: 1.625em 1rem 1em 1rem;
  transition: background-color 0.3s, border 0.3s, color 0.3s;
}
.input input:focus,
.input select:focus,
.input textarea:focus {
  color: #161913;
}
.input input ~ label,
.input select ~ label,
.input textarea ~ label {
  color: #90918F;
  font-size: 0.875rem;
  font-weight: 500;
  left: 1rem;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0.5rem;
}
.input select {
  background-image: url(../images/icon-arrow-down.svg);
  background-repeat: no-repeat;
  background-size: 1rem 1rem;
}
.input .units {
  align-items: center;
  background-color: #D6D8D5;
  display: flex;
  height: calc(100% - 2px);
  padding: 0.5rem;
  position: absolute;
  right: 1px;
  top: 1px;
}
.input.hidden {
  display: none;
}
.checkbox {
  align-items: center;
  display: flex;
}
.checkbox label {
  color: #161913;
  font-size: 0.875rem;
}
.checkbox input {
  height: 1.5rem;
  width: 1.5rem;
}
.checkbox input:checked + label {
  color: #161913;
}
.checkbox.small label {
  font-size: 0.75rem;
  line-height: 1.25;
}
.checkboxes {
  background-color: #F7F8F5;
  box-shadow: 0.25rem 0.25rem 1rem rgba(0, 0, 0, 0.05);
  padding: 1rem;
  transition: box-shadow 0.3s;
}
.checkboxes h3 {
  color: #161913;
  font-size: 0.75rem;
  font-weight: 600;
  left: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}
.checkboxes p {
  font-size: 0.625rem;
  max-width: 64em;
}
.checkboxes .choices {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem -0.5rem -0.5rem;
}
.checkboxes .choices > * {
  margin: 0.5rem;
}
.radio {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.radio > * {
  margin: 0.25rem;
  position: relative;
}
@media (min-width: 56.25rem) {
  .radio > * {
    margin: 0.75rem;
  }
}
.radio input[type='radio']:checked + label {
  background-color: #6F7C64;
  color: #F7F8F5;
}
.radio input[type='radio'] + label {
  align-items: center;
  background-color: #F7F8F5;
  border: 1px solid #6F7C64;
  border-radius: 0;
  color: #6F7C64;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
  max-width: none;
  padding: 0.75rem 1.25rem;
  text-shadow: none;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
@media (min-width: 37.5rem) {
  .radio input[type='radio'] + label {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
}
.radio input[type='radio'] + label:hover {
  background-color: #6F7C64;
  color: #F7F8F5;
}
[role='button'],
input[type='submit'],
button,
.btn {
  align-items: center;
  background-color: #6F7C64;
  border: none;
  border-radius: 0.5rem;
  color: #F7F8F5;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 900;
  font-variation-settings: 'wght' 900;
  letter-spacing: 0.1em;
  line-height: 1.3333333;
  padding: 1.25rem 1.25rem;
  position: relative;
  text-align: center;
  text-shadow: none;
  text-transform: uppercase;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
[role='button']:hover,
input[type='submit']:hover,
button:hover,
.btn:hover {
  background-color: #161913;
  border-color: #161913;
  color: #F7F8F5;
}
[role='button']:active:hover,
input[type='submit']:active:hover,
button:active:hover,
.btn:active:hover {
  background-color: #ECECEC;
  outline: none;
}
[role='button']:focus,
input[type='submit']:focus,
button:focus,
.btn:focus {
  outline: 2px solid #6F7C64;
  outline-offset: 2px;
}
[role='button'][target='_blank']::after,
input[type='submit'][target='_blank']::after,
button[target='_blank']::after,
.btn[target='_blank']::after {
  background-image: url(../images/icon-new-tab.svg);
  content: '';
}
[role='button'].secondary,
input[type='submit'].secondary,
button.secondary,
.btn.secondary {
  background-color: #90918F;
  color: #F7F8F5;
}
[role='button'].secondary:hover,
input[type='submit'].secondary:hover,
button.secondary:hover,
.btn.secondary:hover {
  background-color: #161913;
  color: #F7F8F5;
}
input[type='submit'],
button {
  cursor: pointer;
  width: auto;
}
input[type='submit']:disabled,
button:disabled {
  cursor: auto;
  opacity: 0.5;
}
input[type='submit'] .arrow,
button .arrow {
  margin-left: 0.5em;
  width: 2.5em;
}
[type='submit']::after {
  background-image: url(../images/icon-arrow-right-background.svg);
  display: inline-block;
  height: 0.75rem;
  margin-left: 1em;
  position: relative;
  right: auto;
  top: auto;
}
button::before {
  content: none;
}
q {
  display: block;
  line-height: 1.5;
}
q:after {
  content: none;
}
blockquote {
  font-style: italic;
}
table {
  background-color: #F7F8F5;
  border: 1px solid #D6D8D5;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 0.9375rem;
  width: 100%;
}
tbody tr + tr th,
tbody tr + tr td {
  border-top: 0.5px solid #6F7C64;
}
thead {
  font-weight: 600;
}
td,
th {
  border: 1px solid #D6D8D5;
  padding: 0.5rem;
  text-align: left;
  vertical-align: text-top;
}
td ol,
th ol,
td ul,
th ul {
  margin-left: 1em;
}
/*
td {
    
}
*/
th {
  background-color: #FFFAD6;
  font-weight: 500;
}
address {
  font-style: normal;
}
time {
  display: block;
}
/*
----------------------------------------------
LAYOUT
----------------------------------------------
*/
body > header {
  align-items: center;
  display: flex;
  left: 0;
  padding: 1rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}
@media (min-width: 37.5rem) {
  body > header {
    padding: 1.25rem;
  }
}
@media (min-width: 56.25rem) {
  body > header {
    padding: 2.5rem;
  }
}
body > header::before {
  background-image: linear-gradient(#F7F8F5, rgba(247, 248, 245, 0));
  content: '';
  height: calc(100% + 1em);
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}
body > header > * {
  flex-basis: 33.33%;
  margin: 0;
  position: relative;
  z-index: 10;
}
body > header > *:first-child {
  display: flex;
  justify-content: center;
  order: 2;
}
body > header > *:nth-child(2) {
  align-items: center;
  display: flex;
  order: 1;
  z-index: 100;
}
body > header > *:nth-child(3) {
  order: 3;
}
body > header nav {
  background-color: #161913;
  color: #F7F8F5;
  font-size: 0.75rem;
  font-weight: 500;
  height: 100%;
  left: 0;
  letter-spacing: 0.3em;
  margin: 0;
  padding: calc(var(--padding) * 2);
  padding-top: calc(4rem + var(--padding) * 2);
  position: fixed;
  text-transform: uppercase;
  top: 0;
  transform: scale(0);
  transform-origin: left top;
  transition: transform 0.4s ease-in, visibility 0s 0.4s;
  visibility: hidden;
  width: 100%;
  z-index: 100;
}
@media (min-width: 37.5rem) {
  body > header nav {
    border-radius: var(--radius);
    height: calc(100% - 3rem);
    left: 1.5rem;
    padding: var(--padding);
    top: 1.5rem;
    width: 20rem;
  }
}
body > header nav ul {
  list-style: none;
}
body > header nav ul li + li {
  margin-top: 2em;
}
body > header [for='menu-btn'] {
  color: currentColor;
  cursor: pointer;
  display: inline-block;
  height: 1.25rem;
  line-height: 3;
  margin-top: 0;
  max-width: none;
  pointer-events: auto;
  position: relative;
  transition: color 0.3s;
  width: 1.25em;
  z-index: 1000;
}
body > header [for='menu-btn']:hover {
  background-color: transparent;
  color: #6F7C64;
}
body > header [for='menu-btn'] span:first-child {
  background-color: currentColor;
  height: 2px;
  left: calc(50% - 0.625em);
  position: absolute;
  top: calc(50% - 1px);
  transition: background-color 0.2s;
  width: 1.25em;
}
body > header [for='menu-btn'] span:first-child::after,
body > header [for='menu-btn'] span:first-child::before {
  background-color: currentColor;
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: background-color 0.2s;
  width: 100%;
}
body > header [for='menu-btn'] span:first-child::after {
  animation: menu-btn-bot-rev 0.4s;
  transform: translateY(300%);
}
body > header [for='menu-btn'] span:first-child::before {
  animation: menu-btn-top-rev 0.4s;
  transform: translateY(-300%);
}
body > header [for='menu-btn'] span:last-child {
  display: inline-block;
}
body > header .logo {
  display: block;
  margin: -0.5rem 0;
  text-align: center;
}
body > header .logo img {
  display: block;
  height: 2rem;
  width: auto;
}
@media (min-width: 37.5rem) {
  body > header .logo img {
    height: 2.5rem;
  }
}
body > header .social {
  justify-content: flex-end;
}
body > header .tag-line {
  font-weight: 500;
  margin: 0 0 0 1em;
}
@media (max-width: 56.249rem) {
  body > header .tag-line {
    display: none;
  }
}
body > header #menu-btn {
  display: none;
}
body > header #menu-btn:checked ~ [for='menu-btn'] {
  color: #F7F8F5;
}
body > header #menu-btn:checked ~ [for='menu-btn'] span {
  background-color: transparent;
  transition-delay: 0s;
}
body > header #menu-btn:checked ~ [for='menu-btn'] span::before {
  animation: menu-btn-top 0.4s forwards;
}
body > header #menu-btn:checked ~ [for='menu-btn'] span::after {
  animation: menu-btn-bot 0.4s forwards;
}
body > header #menu-btn:checked ~ nav {
  transform: scale(1);
  transition: transform 0.4s ease-out, visibility 0s;
  visibility: visible;
}
body > footer {
  margin-top: 0;
}
body > footer .footer {
  background-color: #161913;
  color: #F7F8F5;
  margin-top: 0;
  padding: calc(var(--padding) * 2) var(--padding) 0 var(--padding);
}
@media (max-width: 56.249rem) {
  body > footer .footer {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 56.25rem) {
  body > footer .footer {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    padding: var(--padding) var(--padding) 0 var(--padding);
  }
}
@media (min-width: 56.25rem) {
  body > footer .footer > * {
    align-self: end;
    grid-column-end: span 4;
  }
}
@media (max-width: 56.249rem) {
  body > footer .footer > * + * {
    margin-top: calc(var(--padding) * 2);
  }
}
@media (min-width: 56.25rem) {
  body > footer .footer .logo {
    display: flex;
    grid-column-start: 5;
    grid-row: 1;
    justify-content: center;
  }
}
body > footer .footer .logo img {
  display: block;
  height: 3rem;
  width: auto;
}
@media (min-width: 56.25rem) {
  body > footer .footer .social {
    grid-column-start: 9;
    grid-row: 1;
    justify-content: end;
  }
}
@media (max-width: 56.249rem) {
  body > footer .footer .tag-line {
    text-align: center;
  }
}
@media (min-width: 56.25rem) {
  body > footer .footer .tag-line {
    grid-column-start: 1;
    grid-row: 1;
  }
}
body > footer .footer .legal {
  border-top: 1px solid #90918F;
  color: #90918F;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 56.249rem) {
  body > footer .footer .legal {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-top: calc(var(--padding) * 2);
    padding: calc(var(--padding) * 2) 0;
  }
}
@media (min-width: 56.25rem) {
  body > footer .footer .legal {
    display: flex;
    grid-column: 1 / span 12;
    justify-content: space-between;
    margin-top: var(--padding);
    padding: 1.5em 0;
  }
}
@media (min-width: 56.25rem) {
  body > footer .footer .legal > * {
    margin-top: 0;
  }
}
body > footer .footer .legal nav ul {
  display: flex;
  gap: 1.5em;
  list-style: none;
}
main {
  display: block;
  margin-top: 4rem;
}
@media (min-width: 56.25rem) {
  main {
    font-size: 1.25rem;
    margin-top: 7.5rem;
  }
}
main > * + * {
  margin-top: 0;
}
main > article > * + * {
  margin-top: 0;
}
/*
----------------------------------------------
HELPERS
----------------------------------------------
*/
.align-right {
  float: right;
  margin: 0 0 1rem 1rem;
}
.align-right img {
  display: block;
  height: auto;
  max-width: 100%;
  width: auto;
}
.align-left {
  float: left;
  margin: 0 1rem 1rem 0;
}
.align-left img {
  display: block;
  height: auto;
  max-width: 100%;
  width: auto;
}
.align-center {
  margin: 1rem auto;
}
.align-center img {
  display: block;
  height: auto;
  margin: auto;
  max-width: 100%;
  width: auto;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.actions > * {
  margin: 0;
}
.content ol,
.content ul {
  margin-left: 1em;
}
.cookies {
  background-color: #6F7C64;
  border-radius: var(--radius);
  bottom: 0.5rem;
  box-shadow: 0 0 2em rgba(0, 0, 0, 0.25);
  color: #F7F8F5;
  padding: 1rem;
  position: fixed;
  right: 0.5rem;
  width: calc(100% - 1rem);
  z-index: 9999;
}
@media (min-width: 37.5rem) {
  .cookies {
    bottom: 1rem;
    right: 1rem;
    width: 24rem;
  }
}
.cookies [role='button'] {
  background-color: #161913;
  color: #F7F8F5;
}
.cookies [role='button']:hover {
  background-color: #90918F;
  color: #F7F8F5;
}
.cookies [role='button']:nth-child(2) {
  background-color: #90918F;
  color: #F7F8F5;
}
.cookies [role='button']:nth-child(2):hover {
  background-color: #161913;
  color: #F7F8F5;
}
.cookies.hidden {
  display: none;
}
.faqs-list {
  margin-left: auto;
  margin-right: auto;
  max-width: 48rem;
}
.faqs-list h3 {
  font-size: 1rem;
  position: relative;
}
@media (min-width: 56.25rem) {
  .faqs-list h3 {
    font-size: 1.25rem;
  }
}
.faqs-list h3 + * {
  margin-top: 0;
}
.faqs-list h3 a {
  display: block;
  padding: 1rem 1rem 1rem 1.75rem;
  transition: color 0.3s;
}
.faqs-list h3 a::before,
.faqs-list h3 a::after {
  background-color: #6F7C64;
  content: '';
  height: 3px;
  left: 0;
  position: absolute;
  top: calc(50% - 1px);
  transition: transform 0.5s;
  width: 15px;
}
.faqs-list h3 a::after {
  transform: rotate(90deg);
}
.faqs-list h3 a:hover {
  color: #90918F;
}
.faqs-list .answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem 0 1.75rem;
  transition: max-height 0.5s, padding 0.5s;
}
.faqs-list .question {
  border-top: 1px solid #D6D8D5;
}
.faqs-list .question:last-child {
  border-bottom: 1px solid #D6D8D5;
}
.faqs-list .question + .question {
  margin-top: 0;
}
.faqs-list .question:target h3 a::after,
.faqs-list .question.active h3 a::after {
  transform: rotate(0deg);
}
.faqs-list .question:target .answer,
.faqs-list .question.active .answer {
  margin-top: 0;
  max-height: 16em;
  overflow-y: auto;
  padding: 0 1rem 1rem 1.75rem;
}
.slider {
  position: relative;
}
.slider label {
  cursor: pointer;
}
.slider li {
  background-color: #F7F8F5;
  color: #161913;
  height: 100%;
  left: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.75s ease-in-out;
  width: 100%;
}
.slider li .content {
  margin: 0;
  position: relative;
  z-index: 10;
}
.slider ul {
  display: block;
  height: 100vw;
  list-style: none;
  margin: 0;
  max-height: 100vh;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.slider input[name^='slider'] {
  display: none;
}
.slider input[name^='slider']:checked:nth-of-type(1) ~ ul li:nth-child(1),
.slider input[name^='slider']:checked:nth-of-type(2) ~ ul li:nth-child(2),
.slider input[name^='slider']:checked:nth-of-type(3) ~ ul li:nth-child(3),
.slider input[name^='slider']:checked:nth-of-type(4) ~ ul li:nth-child(4),
.slider input[name^='slider']:checked:nth-of-type(5) ~ ul li:nth-child(5),
.slider input[name^='slider']:checked:nth-of-type(6) ~ ul li:nth-child(6),
.slider input[name^='slider']:checked:nth-of-type(7) ~ ul li:nth-child(7),
.slider input[name^='slider']:checked:nth-of-type(8) ~ ul li:nth-child(8),
.slider input[name^='slider']:checked:nth-of-type(9) ~ ul li:nth-child(9),
.slider input[name^='slider']:checked:nth-of-type(10) ~ ul li:nth-child(10) {
  opacity: 1;
  z-index: 50;
}
.slider input[name^='slider']:checked:nth-of-type(1) ~ .dots label:nth-child(1),
.slider input[name^='slider']:checked:nth-of-type(2) ~ .dots label:nth-child(2),
.slider input[name^='slider']:checked:nth-of-type(3) ~ .dots label:nth-child(3),
.slider input[name^='slider']:checked:nth-of-type(4) ~ .dots label:nth-child(4),
.slider input[name^='slider']:checked:nth-of-type(5) ~ .dots label:nth-child(5),
.slider input[name^='slider']:checked:nth-of-type(6) ~ .dots label:nth-child(6),
.slider input[name^='slider']:checked:nth-of-type(7) ~ .dots label:nth-child(7),
.slider input[name^='slider']:checked:nth-of-type(8) ~ .dots label:nth-child(8),
.slider input[name^='slider']:checked:nth-of-type(9) ~ .dots label:nth-child(9),
.slider input[name^='slider']:checked:nth-of-type(10) ~ .dots label:nth-child(10) {
  background-color: #F7F8F5;
  width: 1.5rem;
}
.slider input[name^='slider']:checked:nth-of-type(1) ~ .arrows label:nth-child(2),
.slider input[name^='slider']:checked:nth-of-type(2) ~ .arrows label:nth-child(3),
.slider input[name^='slider']:checked:nth-of-type(3) ~ .arrows label:nth-child(4),
.slider input[name^='slider']:checked:nth-of-type(4) ~ .arrows label:nth-child(5),
.slider input[name^='slider']:checked:nth-of-type(5) ~ .arrows label:nth-child(6),
.slider input[name^='slider']:checked:nth-of-type(6) ~ .arrows label:nth-child(7),
.slider input[name^='slider']:checked:nth-of-type(7) ~ .arrows label:nth-child(8),
.slider input[name^='slider']:checked:nth-of-type(8) ~ .arrows label:nth-child(9),
.slider input[name^='slider']:checked:nth-of-type(9) ~ .arrows label:nth-child(10),
.slider input[name^='slider']:checked:nth-last-of-type(1) ~ .arrows label:first-child {
  visibility: visible;
}
@media (max-width: 37.49rem) {
  .slider input[name^='slider']:checked:nth-of-type(1) ~ .arrows label:nth-child(2),
  .slider input[name^='slider']:checked:nth-of-type(2) ~ .arrows label:nth-child(3),
  .slider input[name^='slider']:checked:nth-of-type(3) ~ .arrows label:nth-child(4),
  .slider input[name^='slider']:checked:nth-of-type(4) ~ .arrows label:nth-child(5),
  .slider input[name^='slider']:checked:nth-of-type(5) ~ .arrows label:nth-child(6),
  .slider input[name^='slider']:checked:nth-of-type(6) ~ .arrows label:nth-child(7),
  .slider input[name^='slider']:checked:nth-of-type(7) ~ .arrows label:nth-child(8),
  .slider input[name^='slider']:checked:nth-of-type(8) ~ .arrows label:nth-child(9),
  .slider input[name^='slider']:checked:nth-of-type(9) ~ .arrows label:nth-child(10),
  .slider input[name^='slider']:checked:nth-last-of-type(1) ~ .arrows label:first-child {
    left: calc(50% + 0.5rem);
  }
}
@media (min-width: 37.5rem) {
  .slider input[name^='slider']:checked:nth-of-type(1) ~ .arrows label:nth-child(2),
  .slider input[name^='slider']:checked:nth-of-type(2) ~ .arrows label:nth-child(3),
  .slider input[name^='slider']:checked:nth-of-type(3) ~ .arrows label:nth-child(4),
  .slider input[name^='slider']:checked:nth-of-type(4) ~ .arrows label:nth-child(5),
  .slider input[name^='slider']:checked:nth-of-type(5) ~ .arrows label:nth-child(6),
  .slider input[name^='slider']:checked:nth-of-type(6) ~ .arrows label:nth-child(7),
  .slider input[name^='slider']:checked:nth-of-type(7) ~ .arrows label:nth-child(8),
  .slider input[name^='slider']:checked:nth-of-type(8) ~ .arrows label:nth-child(9),
  .slider input[name^='slider']:checked:nth-of-type(9) ~ .arrows label:nth-child(10),
  .slider input[name^='slider']:checked:nth-last-of-type(1) ~ .arrows label:first-child {
    right: 1rem;
  }
}
.slider input[name^='slider']:checked:nth-of-type(1) ~ .arrows label:last-child,
.slider input[name^='slider']:checked:nth-of-type(2) ~ .arrows label:nth-child(1),
.slider input[name^='slider']:checked:nth-of-type(3) ~ .arrows label:nth-child(2),
.slider input[name^='slider']:checked:nth-of-type(4) ~ .arrows label:nth-child(3),
.slider input[name^='slider']:checked:nth-of-type(5) ~ .arrows label:nth-child(4),
.slider input[name^='slider']:checked:nth-of-type(6) ~ .arrows label:nth-child(5),
.slider input[name^='slider']:checked:nth-of-type(7) ~ .arrows label:nth-child(6),
.slider input[name^='slider']:checked:nth-of-type(8) ~ .arrows label:nth-child(7),
.slider input[name^='slider']:checked:nth-of-type(9) ~ .arrows label:nth-child(8),
.slider input[name^='slider']:checked:nth-of-type(10) ~ .arrows label:nth-child(9) {
  transform: scaleX(-1);
  visibility: visible;
}
@media (max-width: 37.49rem) {
  .slider input[name^='slider']:checked:nth-of-type(1) ~ .arrows label:last-child,
  .slider input[name^='slider']:checked:nth-of-type(2) ~ .arrows label:nth-child(1),
  .slider input[name^='slider']:checked:nth-of-type(3) ~ .arrows label:nth-child(2),
  .slider input[name^='slider']:checked:nth-of-type(4) ~ .arrows label:nth-child(3),
  .slider input[name^='slider']:checked:nth-of-type(5) ~ .arrows label:nth-child(4),
  .slider input[name^='slider']:checked:nth-of-type(6) ~ .arrows label:nth-child(5),
  .slider input[name^='slider']:checked:nth-of-type(7) ~ .arrows label:nth-child(6),
  .slider input[name^='slider']:checked:nth-of-type(8) ~ .arrows label:nth-child(7),
  .slider input[name^='slider']:checked:nth-of-type(9) ~ .arrows label:nth-child(8),
  .slider input[name^='slider']:checked:nth-of-type(10) ~ .arrows label:nth-child(9) {
    right: calc(50% + 0.5rem);
  }
}
@media (min-width: 37.5rem) {
  .slider input[name^='slider']:checked:nth-of-type(1) ~ .arrows label:last-child,
  .slider input[name^='slider']:checked:nth-of-type(2) ~ .arrows label:nth-child(1),
  .slider input[name^='slider']:checked:nth-of-type(3) ~ .arrows label:nth-child(2),
  .slider input[name^='slider']:checked:nth-of-type(4) ~ .arrows label:nth-child(3),
  .slider input[name^='slider']:checked:nth-of-type(5) ~ .arrows label:nth-child(4),
  .slider input[name^='slider']:checked:nth-of-type(6) ~ .arrows label:nth-child(5),
  .slider input[name^='slider']:checked:nth-of-type(7) ~ .arrows label:nth-child(6),
  .slider input[name^='slider']:checked:nth-of-type(8) ~ .arrows label:nth-child(7),
  .slider input[name^='slider']:checked:nth-of-type(9) ~ .arrows label:nth-child(8),
  .slider input[name^='slider']:checked:nth-of-type(10) ~ .arrows label:nth-child(9) {
    left: 1rem;
  }
}
.slider input[name^='slider']:checked:nth-of-type(1) ~ .tabs label:nth-child(1),
.slider input[name^='slider']:checked:nth-of-type(2) ~ .tabs label:nth-child(2),
.slider input[name^='slider']:checked:nth-of-type(3) ~ .tabs label:nth-child(3),
.slider input[name^='slider']:checked:nth-of-type(4) ~ .tabs label:nth-child(4),
.slider input[name^='slider']:checked:nth-of-type(5) ~ .tabs label:nth-child(5),
.slider input[name^='slider']:checked:nth-of-type(6) ~ .tabs label:nth-child(6),
.slider input[name^='slider']:checked:nth-of-type(7) ~ .tabs label:nth-child(7),
.slider input[name^='slider']:checked:nth-of-type(8) ~ .tabs label:nth-child(8),
.slider input[name^='slider']:checked:nth-of-type(9) ~ .tabs label:nth-child(9),
.slider input[name^='slider']:checked:nth-of-type(10) ~ .tabs label:nth-child(10) {
  background-color: rgba(255, 255, 255, 0.25);
  border-bottom-color: #6F7C64;
}
.slider .arrows {
  margin-top: 0;
  position: static !important;
  z-index: 100;
}
.slider .arrows label {
  background-color: transparent;
  background-image: url(../images/icon-arrow-right-background.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 2rem 2rem;
  border-radius: 50%;
  display: block;
  height: 3rem;
  margin: 0;
  padding: 0;
  position: absolute;
  transition: background-color 0.3s, opacity 0.5s;
  visibility: hidden;
  width: 3rem;
  z-index: 900;
}
@media (max-width: 37.49rem) {
  .slider .arrows label {
    bottom: var(--padding);
  }
}
@media (min-width: 37.5rem) {
  .slider .arrows label {
    top: calc(50% - 1.5rem);
  }
}
.slider .arrows label:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
.slider .dots {
  bottom: calc(var(--padding) * -3);
  display: flex;
  justify-content: center;
  position: absolute;
  right: var(--padding);
  width: 100%;
  z-index: 100;
}
.slider .dots label {
  background-color: #6F7C64;
  border-radius: 0.375rem;
  display: block;
  height: 0.75rem;
  padding: 0;
  transition: width 0.5s ease-in-out;
  width: 0.75rem;
}
.slider .dots label + label {
  margin-left: 0.5rem;
  margin-top: 0;
}
.slider.transition-slide li {
  background-color: transparent;
  left: 0%;
  width: 100%;
  transition: transform 0.75s ease-in-out, opacity 0s;
}
.slider.transition-slide li::after {
  background-color: #F7F8F5;
  content: '';
  height: 100%;
  left: 0;
  opacity: 0.85;
  position: absolute;
  top: 0;
  transition: opacity 0.75s ease-in-out;
  width: 100%;
}
.slider.transition-slide ul {
  height: 60vw;
}
@media (min-width: 37.5rem) {
  .slider.transition-slide ul {
    height: 53vw;
  }
}
@media (min-width: 56.25rem) {
  .slider.transition-slide ul {
    height: 40vw;
  }
}
.slider.transition-slide input[name^='slider']:checked:nth-of-type(1) ~ ul li:nth-child(1),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(2) ~ ul li:nth-child(2),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(3) ~ ul li:nth-child(3),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(4) ~ ul li:nth-child(4),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(5) ~ ul li:nth-child(5),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(6) ~ ul li:nth-child(6),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(7) ~ ul li:nth-child(7),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(8) ~ ul li:nth-child(8),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(9) ~ ul li:nth-child(9),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(10) ~ ul li:nth-child(10),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(11) ~ ul li:nth-child(11),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(12) ~ ul li:nth-child(12),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(13) ~ ul li:nth-child(13),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(14) ~ ul li:nth-child(14),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(15) ~ ul li:nth-child(15),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(16) ~ ul li:nth-child(16),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(17) ~ ul li:nth-child(17),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(18) ~ ul li:nth-child(18),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(19) ~ ul li:nth-child(19),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(20) ~ ul li:nth-child(20),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(21) ~ ul li:nth-child(21),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(22) ~ ul li:nth-child(22),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(23) ~ ul li:nth-child(23),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(24) ~ ul li:nth-child(24),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(25) ~ ul li:nth-child(25),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(26) ~ ul li:nth-child(26),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(27) ~ ul li:nth-child(27),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(28) ~ ul li:nth-child(28),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(29) ~ ul li:nth-child(29),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(30) ~ ul li:nth-child(30) {
  opacity: 1;
  transform: translateX(0);
  z-index: 75;
}
.slider.transition-slide input[name^='slider']:checked:nth-of-type(1) ~ ul li:nth-child(1)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(2) ~ ul li:nth-child(2)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(3) ~ ul li:nth-child(3)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(4) ~ ul li:nth-child(4)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(5) ~ ul li:nth-child(5)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(6) ~ ul li:nth-child(6)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(7) ~ ul li:nth-child(7)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(8) ~ ul li:nth-child(8)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(9) ~ ul li:nth-child(9)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(10) ~ ul li:nth-child(10)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(11) ~ ul li:nth-child(11)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(12) ~ ul li:nth-child(12)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(13) ~ ul li:nth-child(13)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(14) ~ ul li:nth-child(14)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(15) ~ ul li:nth-child(15)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(16) ~ ul li:nth-child(16)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(17) ~ ul li:nth-child(17)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(18) ~ ul li:nth-child(18)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(19) ~ ul li:nth-child(19)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(20) ~ ul li:nth-child(20)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(21) ~ ul li:nth-child(21)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(22) ~ ul li:nth-child(22)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(23) ~ ul li:nth-child(23)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(24) ~ ul li:nth-child(24)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(25) ~ ul li:nth-child(25)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(26) ~ ul li:nth-child(26)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(27) ~ ul li:nth-child(27)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(28) ~ ul li:nth-child(28)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(29) ~ ul li:nth-child(29)::after,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(30) ~ ul li:nth-child(30)::after {
  opacity: 0;
}
.slider.transition-slide input[name^='slider']:checked:nth-of-type(1) ~ ul li:nth-child(2),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(2) ~ ul li:nth-child(3),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(3) ~ ul li:nth-child(4),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(4) ~ ul li:nth-child(5),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(5) ~ ul li:nth-child(6),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(6) ~ ul li:nth-child(7),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(7) ~ ul li:nth-child(8),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(8) ~ ul li:nth-child(9),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(9) ~ ul li:nth-child(10),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(10) ~ ul li:nth-child(11),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(11) ~ ul li:nth-child(12),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(12) ~ ul li:nth-child(13),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(13) ~ ul li:nth-child(14),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(14) ~ ul li:nth-child(15),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(15) ~ ul li:nth-child(16),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(16) ~ ul li:nth-child(17),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(17) ~ ul li:nth-child(18),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(18) ~ ul li:nth-child(19),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(19) ~ ul li:nth-child(20),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(20) ~ ul li:nth-child(21),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(21) ~ ul li:nth-child(22),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(22) ~ ul li:nth-child(23),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(23) ~ ul li:nth-child(24),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(24) ~ ul li:nth-child(25),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(25) ~ ul li:nth-child(26),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(26) ~ ul li:nth-child(27),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(27) ~ ul li:nth-child(28),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(28) ~ ul li:nth-child(29),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(29) ~ ul li:nth-child(30),
.slider.transition-slide input[name^='slider']:checked:nth-last-of-type(1) ~ ul li:nth-child(1) {
  opacity: 1;
  transform: translateX(calc(100% + 2rem));
  z-index: 50;
}
.slider.transition-slide input[name^='slider']:checked:nth-of-type(1) ~ ul li:nth-child(3),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(2) ~ ul li:nth-child(4),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(3) ~ ul li:nth-child(5),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(4) ~ ul li:nth-child(6),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(5) ~ ul li:nth-child(7),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(6) ~ ul li:nth-child(8),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(7) ~ ul li:nth-child(9),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(8) ~ ul li:nth-child(10),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(9) ~ ul li:nth-child(11),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(10) ~ ul li:nth-child(12),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(11) ~ ul li:nth-child(13),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(12) ~ ul li:nth-child(14),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(13) ~ ul li:nth-child(15),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(14) ~ ul li:nth-child(16),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(15) ~ ul li:nth-child(17),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(16) ~ ul li:nth-child(18),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(17) ~ ul li:nth-child(19),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(18) ~ ul li:nth-child(20),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(19) ~ ul li:nth-child(21),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(20) ~ ul li:nth-child(22),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(21) ~ ul li:nth-child(23),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(22) ~ ul li:nth-child(24),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(23) ~ ul li:nth-child(25),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(24) ~ ul li:nth-child(26),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(25) ~ ul li:nth-child(27),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(26) ~ ul li:nth-child(28),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(27) ~ ul li:nth-child(29),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(28) ~ ul li:nth-child(30),
.slider.transition-slide input[name^='slider']:checked:nth-last-of-type(2) ~ ul li:nth-child(1),
.slider.transition-slide input[name^='slider']:checked:nth-last-of-type(1) ~ ul li:nth-child(2) {
  opacity: 1;
  transform: translateX(calc(200% + 4rem));
  transition: transform 0.75s ease-in-out, opacity 0.75s;
  z-index: 25;
}
.slider.transition-slide input[name^='slider']:checked:nth-of-type(1) ~ ul li:nth-last-child(1),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(2) ~ ul li:nth-child(1),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(3) ~ ul li:nth-child(2),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(4) ~ ul li:nth-child(3),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(5) ~ ul li:nth-child(4),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(6) ~ ul li:nth-child(5),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(7) ~ ul li:nth-child(6),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(8) ~ ul li:nth-child(7),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(9) ~ ul li:nth-child(8),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(10) ~ ul li:nth-child(9),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(11) ~ ul li:nth-child(10),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(12) ~ ul li:nth-child(11),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(13) ~ ul li:nth-child(12),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(14) ~ ul li:nth-child(13),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(15) ~ ul li:nth-child(14),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(16) ~ ul li:nth-child(15),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(17) ~ ul li:nth-child(16),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(18) ~ ul li:nth-child(17),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(19) ~ ul li:nth-child(18),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(20) ~ ul li:nth-child(19),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(21) ~ ul li:nth-child(20),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(22) ~ ul li:nth-child(21),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(23) ~ ul li:nth-child(22),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(24) ~ ul li:nth-child(23),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(25) ~ ul li:nth-child(24),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(26) ~ ul li:nth-child(25),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(27) ~ ul li:nth-child(26),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(28) ~ ul li:nth-child(27),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(29) ~ ul li:nth-child(28),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(30) ~ ul li:nth-child(29) {
  opacity: 1;
  transform: translateX(calc(-100% - 2rem));
  z-index: 50;
}
.slider.transition-slide input[name^='slider']:checked:nth-of-type(1) ~ ul li:nth-last-child(2),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(2) ~ ul li:nth-last-child(1),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(3) ~ ul li:nth-child(1),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(4) ~ ul li:nth-child(2),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(5) ~ ul li:nth-child(3),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(6) ~ ul li:nth-child(4),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(7) ~ ul li:nth-child(5),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(8) ~ ul li:nth-child(6),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(9) ~ ul li:nth-child(7),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(10) ~ ul li:nth-child(8),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(11) ~ ul li:nth-child(9),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(12) ~ ul li:nth-child(10),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(13) ~ ul li:nth-child(11),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(14) ~ ul li:nth-child(12),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(15) ~ ul li:nth-child(13),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(16) ~ ul li:nth-child(14),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(17) ~ ul li:nth-child(15),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(18) ~ ul li:nth-child(16),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(19) ~ ul li:nth-child(17),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(20) ~ ul li:nth-child(18),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(21) ~ ul li:nth-child(19),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(22) ~ ul li:nth-child(20),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(23) ~ ul li:nth-child(21),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(24) ~ ul li:nth-child(22),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(25) ~ ul li:nth-child(23),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(26) ~ ul li:nth-child(24),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(27) ~ ul li:nth-child(25),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(28) ~ ul li:nth-child(26),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(29) ~ ul li:nth-child(27),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(30) ~ ul li:nth-child(28) {
  opacity: 1;
  transform: translateX(calc(-200% - 4rem));
  transition: transform 0.75s ease-in-out, opacity 0.75s;
  z-index: 25;
}
.slider.transition-slide input[name^='slider']:checked:nth-of-type(1) ~ .arrows label:last-child,
.slider.transition-slide input[name^='slider']:checked:nth-of-type(2) ~ .arrows label:nth-child(1),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(3) ~ .arrows label:nth-child(2),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(4) ~ .arrows label:nth-child(3),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(5) ~ .arrows label:nth-child(4),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(6) ~ .arrows label:nth-child(5),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(7) ~ .arrows label:nth-child(6),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(8) ~ .arrows label:nth-child(7),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(9) ~ .arrows label:nth-child(8),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(10) ~ .arrows label:nth-child(9),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(11) ~ .arrows label:nth-child(10),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(12) ~ .arrows label:nth-child(11),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(13) ~ .arrows label:nth-child(12),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(14) ~ .arrows label:nth-child(13),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(15) ~ .arrows label:nth-child(14),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(16) ~ .arrows label:nth-child(15),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(17) ~ .arrows label:nth-child(16),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(18) ~ .arrows label:nth-child(17),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(19) ~ .arrows label:nth-child(18),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(20) ~ .arrows label:nth-child(19),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(21) ~ .arrows label:nth-child(20),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(22) ~ .arrows label:nth-child(21),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(23) ~ .arrows label:nth-child(22),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(24) ~ .arrows label:nth-child(23),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(25) ~ .arrows label:nth-child(24),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(26) ~ .arrows label:nth-child(25),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(27) ~ .arrows label:nth-child(26),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(28) ~ .arrows label:nth-child(27),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(29) ~ .arrows label:nth-child(28),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(30) ~ .arrows label:nth-child(29) {
  left: -3rem;
}
.slider.transition-slide input[name^='slider']:checked:nth-of-type(1) ~ .arrows label:nth-child(2),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(2) ~ .arrows label:nth-child(3),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(3) ~ .arrows label:nth-child(4),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(4) ~ .arrows label:nth-child(5),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(5) ~ .arrows label:nth-child(6),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(6) ~ .arrows label:nth-child(7),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(7) ~ .arrows label:nth-child(8),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(8) ~ .arrows label:nth-child(9),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(9) ~ .arrows label:nth-child(10),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(10) ~ .arrows label:nth-child(11),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(11) ~ .arrows label:nth-child(12),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(12) ~ .arrows label:nth-child(13),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(13) ~ .arrows label:nth-child(14),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(14) ~ .arrows label:nth-child(15),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(15) ~ .arrows label:nth-child(16),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(16) ~ .arrows label:nth-child(17),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(17) ~ .arrows label:nth-child(18),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(18) ~ .arrows label:nth-child(19),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(19) ~ .arrows label:nth-child(20),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(20) ~ .arrows label:nth-child(21),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(21) ~ .arrows label:nth-child(22),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(22) ~ .arrows label:nth-child(23),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(23) ~ .arrows label:nth-child(24),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(24) ~ .arrows label:nth-child(25),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(25) ~ .arrows label:nth-child(26),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(26) ~ .arrows label:nth-child(27),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(27) ~ .arrows label:nth-child(28),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(28) ~ .arrows label:nth-child(29),
.slider.transition-slide input[name^='slider']:checked:nth-of-type(29) ~ .arrows label:nth-child(30),
.slider.transition-slide input[name^='slider']:checked:nth-last-of-type(1) ~ .arrows label:first-child {
  right: -3rem;
}
.social {
  align-items: center;
  display: flex;
  list-style: none;
}
.social a {
  display: block;
}
.social a:hover {
  color: #6F7C64;
}
.social li + li {
  margin-left: 0.75em;
}
.social svg {
  display: block;
  fill: currentColor;
  height: 1em;
  width: 1em;
}
@media (min-width: 56.25rem) {
  .social svg {
    height: 1.125em;
    width: 1.125em;
  }
}
.background-background + .background-background {
  padding-top: 0;
}
.background-foreground {
  background-color: #161913;
  color: #F7F8F5;
}
/*
----------------------------------------------
BLOCKS
----------------------------------------------
*/
article > [class*='-block'] {
  padding: calc(var(--padding) * 1.5) var(--padding);
}
@media (min-width: 56.25rem) {
  article > [class*='-block'] {
    padding: var(--padding);
  }
}
@media (min-width: 56.25rem) {
  .about-block {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (max-width: 56.249rem) {
  .about-block > figure {
    margin-left: calc(0.25rem - var(--padding));
    margin-right: calc(0.25rem - var(--padding));
    margin-top: calc(var(--padding) * -2);
    height: 100vw;
  }
}
@media (min-width: 56.25rem) {
  .about-block > figure {
    grid-column: 1 / span 6;
    margin-left: calc(1.5rem - var(--padding));
    margin-top: calc(var(--padding) * -1);
    position: sticky;
    top: 7.5rem;
  }
}
@media (max-width: 56.249rem) {
  .about-block figure {
    margin-left: calc(0.25rem - var(--padding));
    margin-right: calc(0.25rem - var(--padding));
    height: 100vw;
  }
}
@media (min-width: 56.25rem) {
  .about-block figure {
    height: calc(100vh - 9rem);
  }
}
.about-block figure img {
  border-radius: var(--radius);
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.about-block .content {
  position: relative;
}
@media (min-width: 56.25rem) {
  .about-block .content {
    grid-column: 8 / span 5;
  }
}
.about-block .content h1 {
  color: #6F7C64;
}
@media (min-width: 56.25rem) {
  .about-block .content h1 {
    margin-left: -40%;
    text-shadow: 0 0 2rem #ffffff;
  }
}
.about-block .content h1 + * {
  margin-top: var(--padding);
}
@media (max-width: 56.249rem) {
  .about-block .content figure,
  .about-block .content .quote {
    margin: calc(var(--padding) * 1.5) calc(0.25rem - var(--padding));
    height: 100vw;
  }
}
@media (min-width: 56.25rem) {
  .about-block .content figure,
  .about-block .content .quote {
    animation: fade-in linear both;
    animation-range: entry calc(100% + 1.5rem) entry calc(100% + 10rem);
    animation-timeline: view();
    height: calc(100vh - 9rem);
    margin-left: calc(-140% - (var(--padding) - 1.5rem));
    margin-top: calc(-50vh + 4.5rem);
    position: sticky;
    top: 7.5rem;
    width: calc(120% + (var(--padding) - 1.5rem));
  }
}
@media (min-width: 56.25rem) {
  .about-block .content figure + *,
  .about-block .content .quote + * {
    margin-top: calc(-50vh + 4.5rem + 1em);
  }
}
@media (max-width: 56.249rem) {
  .about-block .content .quote {
    height: auto;
  }
}
.about-block .quote {
  background-color: #6F7C64;
  border-radius: var(--radius);
  color: #F7F8F5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--padding) * 1.5) var(--padding);
}
@media (min-width: 56.25rem) {
  .about-block .quote {
    padding: var(--padding);
  }
}
.about-block .quote h3 {
  color: #D6D8D5;
  font-size: 1rem;
  font-weight: 500;
}
.about-block .quote h3::before {
  content: '- ';
}
.about-block .quote q {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1.125;
}
@media (min-width: 56.25rem) {
  .about-block .quote q {
    font-size: 2rem;
  }
}
.about-block .quote q::before {
  display: block;
  font-size: 10rem;
  line-height: 0.2;
}
@media (max-width: 56.249rem) {
  .about-block .quote q::before {
    margin-top: 0.25em;
  }
}
@media (min-width: 56.25rem) {
  .form-block {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
}
.form-block:first-child {
  padding-top: 0;
}
.form-block figure {
  position: relative;
}
@media (min-width: 56.25rem) {
  .form-block figure {
    grid-column: 8 / span 5;
    margin-right: calc(1.5rem - var(--padding));
  }
}
.form-block figure img {
  border-radius: var(--radius);
  display: block;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
@media (min-width: 56.25rem) {
  .form-block .content {
    grid-column: 1 / span 6;
    grid-row: 1;
    margin-bottom: calc(var(--padding) * 0.5);
    margin-top: calc(var(--padding) * 0.5);
    position: relative;
  }
}
.form-block .content h1 {
  color: #6F7C64;
}
@media (min-width: 56.25rem) {
  .form-block .content h1 {
    text-shadow: 0 0 2rem #f7f8f5;
    width: 180%;
  }
}
.form-block .content h1 + * {
  margin-top: 2rem;
}
.form-block .content [role='button'] {
  margin-top: 2em;
}
.form-block .content [role='button'] + * {
  margin-top: 2em;
}
.content-block {
  /*
    &.banner-above-text-below-right {
        @keyframes shrink-half-left {
            100% {
                width: calc(50% + (var(--padding) * 1) - 1.5rem);
            }
        }
        figure {
            background-color: @foreground;
            border-radius: var(--radius);
            height: 100vw;
            margin-left: calc(.25rem - var(--padding));
            overflow: hidden;
            position: relative;
            width: calc(100% + (var(--padding) * 2) - .5rem);

            @media (max-width: 56.249rem) {
                margin-right: calc(.25rem - var(--padding));
            }
            @media (min-width: 56.25rem) {
                animation: shrink-half-left ease-in-out both;
                animation-range: entry 150% entry 250%;
                animation-timeline: view();
                height: calc(100vh - 7.5rem);
                margin-left: calc(1.5rem - var(--padding));
                position: sticky;
                top: 6rem;
                width: calc(100% + (var(--padding) * 2) - 3rem);
            }
            
            img, video {
                height: 100%;
                left: 0;
                object-fit: cover;
                position: absolute;
                top: 0;
                width: 100%;
            }
        }
        
        .content {
            @media (min-width: 56.25rem) {
                margin-left: auto;
                margin-top: calc(100vh - 7.5rem);
                padding-bottom: calc(var(--padding) * .5);
                position: relative;
                width: 41.666666%;
            }
            
            [role='button'] {
                margin-top: 2em;
            }

            ul {
                align-items: flex-start;
                display: flex;
                flex-direction: column;
                font-size: 1.25rem;
                font-weight: 700;
                list-style: none;
                margin-left: 0;

                @media (min-width: 56.25rem) {
                    font-size: 1.5rem;
                }

                li {
                    border-bottom: 2px solid #f5c968;
                    padding-bottom: .125em;

                    & + li {
                        margin-top: 1em;
                    }
                }
            }
        }
        
        .title {
            display: flex;
            flex-direction: column;
            color: @background;
            padding: var(--padding) 0;

            @media (max-width: 56.249rem) {
                height: 100vw;
                margin-top: -100vw;
                position: relative;
            }
            @media (min-width: 56.25rem) {
                height: calc(100vh - 7.5rem);
                margin-top: calc((100vh - 7.5rem) * -0.5);
                position: sticky;
                top: 6rem;
                width: 41.66666%;
            }
            
            h2 {
                margin-top: auto;
                @media (max-width: 56.249rem) {
                    font-size: 3rem;
                }
                @media (min-width: 56.25rem) {
                    font-size: 6rem;
                    
                }
            }
        }
    }
    */
}
@media (min-width: 56.25rem) {
  .content-block.text-left-image-right,
  .content-block.text-right-image-left {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (min-width: 56.25rem) {
  .content-block.text-left-image-right:has(.quote),
  .content-block.text-right-image-left:has(.quote) {
    grid-template-rows: min-content 1fr;
  }
}
@media (min-width: 56.25rem) {
  .content-block.text-left-image-right:has(.quote) figure,
  .content-block.text-right-image-left:has(.quote) figure {
    grid-row: 2;
  }
}
@media (min-width: 56.25rem) {
  .content-block.text-left-image-right:has(.quote) .content,
  .content-block.text-right-image-left:has(.quote) .content {
    grid-row: 1 / span 2;
    margin-bottom: 0;
    margin-top: 0;
  }
}
.content-block.text-left-image-right figure,
.content-block.text-right-image-left figure {
  position: relative;
}
@media (max-width: 56.249rem) {
  .content-block.text-left-image-right figure,
  .content-block.text-right-image-left figure {
    margin-left: calc(0.25rem - var(--padding));
    margin-right: calc(0.25rem - var(--padding));
    height: 100vw;
  }
}
@media (min-width: 56.25rem) {
  .content-block.text-left-image-right figure,
  .content-block.text-right-image-left figure {
    grid-column-end: span 6;
  }
}
.content-block.text-left-image-right figure img,
.content-block.text-right-image-left figure img,
.content-block.text-left-image-right figure video,
.content-block.text-right-image-left figure video {
  border-radius: var(--radius);
  display: block;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.content-block.text-left-image-right figure figcaption,
.content-block.text-right-image-left figure figcaption {
  bottom: var(--padding);
  color: #F7F8F5;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  left: var(--padding);
  position: absolute;
  text-shadow: 0 0 2rem rgba(22, 25, 19, 0.5);
  width: calc(100% - (var(--padding) * 2));
}
@media (min-width: 56.25rem) {
  .content-block.text-left-image-right figure figcaption,
  .content-block.text-right-image-left figure figcaption {
    bottom: calc(var(--padding) * 0.5);
    font-size: 3rem;
    left: calc(var(--padding) * 0.5);
    width: calc(100% - var(--padding));
  }
}
@media (min-width: 56.25rem) {
  .content-block.text-left-image-right .content,
  .content-block.text-right-image-left .content {
    grid-column-end: span 5;
    margin-bottom: calc(var(--padding) * 0.5);
    margin-top: calc(var(--padding) * 0.5);
  }
}
.content-block.text-left-image-right .content h2,
.content-block.text-right-image-left .content h2 {
  color: #6F7C64;
}
.content-block.text-left-image-right .content .actions,
.content-block.text-right-image-left .content .actions {
  margin-top: 1.5em;
}
@media (min-width: 56.25rem) {
  .content-block.text-left-image-right .content .actions,
  .content-block.text-right-image-left .content .actions {
    margin-top: 2em;
  }
}
@media (min-width: 56.25rem) {
  .content-block.text-left-image-right .quote,
  .content-block.text-right-image-left .quote {
    grid-column-end: span 6;
    margin-bottom: var(--padding);
  }
}
.content-block.text-left-image-right .quote h3,
.content-block.text-right-image-left .quote h3 {
  font-size: 1rem;
  font-weight: 500;
}
.content-block.text-left-image-right .quote h3::before,
.content-block.text-right-image-left .quote h3::before {
  content: '- ';
}
.content-block.text-left-image-right .quote q,
.content-block.text-right-image-left .quote q {
  color: #6F7C64;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1.25;
}
@media (min-width: 56.25rem) {
  .content-block.text-left-image-right .quote q,
  .content-block.text-right-image-left .quote q {
    font-size: 2rem;
  }
}
.content-block.text-left-image-right .quote q::before,
.content-block.text-right-image-left .quote q::before {
  display: block;
  font-size: 10rem;
  line-height: 0.6;
  margin-bottom: -2rem;
}
@media (max-width: 56.249rem) {
  .content-block.text-left-image-right .quote q::before,
  .content-block.text-right-image-left .quote q::before {
    margin-top: 0.25em;
  }
}
@media (min-width: 56.25rem) {
  .content-block.text-left-image-right.wider-text figure,
  .content-block.text-right-image-left.wider-text figure,
  .content-block.text-left-image-right.wider-text .quote,
  .content-block.text-right-image-left.wider-text .quote {
    grid-column-end: span 5;
  }
}
@media (min-width: 56.25rem) {
  .content-block.text-left-image-right.wider-text .content,
  .content-block.text-right-image-left.wider-text .content {
    grid-column-end: span 6;
  }
}
@media (min-width: 56.25rem) {
  .content-block.text-left-image-right figure {
    grid-column-start: 7;
    grid-row: 1;
    margin-right: calc(1.5rem - var(--padding));
  }
}
@media (min-width: 56.25rem) {
  .content-block.text-left-image-right .content {
    grid-column-start: 1;
    grid-row: 1;
  }
}
@media (min-width: 56.25rem) {
  .content-block.text-left-image-right .quote {
    grid-column-start: 7;
    grid-row: 1;
  }
}
@media (min-width: 56.25rem) {
  .content-block.text-left-image-right.wider-text figure,
  .content-block.text-left-image-right.wider-text .quote {
    grid-column-start: 8;
  }
}
@media (min-width: 56.25rem) {
  .content-block.text-right-image-left figure {
    grid-column-start: 1;
    margin-left: calc(1.5rem - var(--padding));
  }
}
@media (min-width: 56.25rem) {
  .content-block.text-right-image-left .content {
    grid-column-start: 8;
  }
}
@media (min-width: 56.25rem) {
  .content-block.text-right-image-left .quote {
    grid-column-start: 1;
    grid-row: 1;
  }
}
@media (min-width: 56.25rem) {
  .content-block.text-right-image-left.wider-text .content {
    grid-column-start: 7;
  }
}
@media (min-width: 56.25rem) {
  .content-block.banner-above-text-below-right {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
}
.content-block.banner-above-text-below-right figure {
  background-color: #6F7C64;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
@media (max-width: 56.249rem) {
  .content-block.banner-above-text-below-right figure {
    margin-left: calc(0.25rem - var(--padding));
    margin-right: calc(0.25rem - var(--padding));
    height: 100vw;
  }
}
@media (min-width: 56.25rem) {
  .content-block.banner-above-text-below-right figure {
    grid-column: 1 / span 6;
    grid-row: 1;
    margin-left: calc(1.5rem - var(--padding));
  }
}
.content-block.banner-above-text-below-right figure img,
.content-block.banner-above-text-below-right figure video {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
@media (min-width: 56.25rem) {
  .content-block.banner-above-text-below-right .content {
    grid-column: 8 / span 5;
    margin-bottom: calc(var(--padding) * 0.5);
    margin-top: calc(var(--padding) * 0.5);
  }
}
.content-block.banner-above-text-below-right .content [role='button'] {
  margin-top: 2em;
}
.content-block.banner-above-text-below-right .content ul {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  font-size: 1.25rem;
  font-weight: 700;
  list-style: none;
  margin-left: 0;
}
@media (min-width: 56.25rem) {
  .content-block.banner-above-text-below-right .content ul {
    font-size: 1.5rem;
  }
}
.content-block.banner-above-text-below-right .content ul li {
  border-bottom: 2px solid #f5c968;
  padding-bottom: 0.125em;
}
.content-block.banner-above-text-below-right .content ul li + li {
  margin-top: 1em;
}
.content-block.banner-above-text-below-right .title {
  display: flex;
  flex-direction: column;
  color: #F7F8F5;
  padding: var(--padding);
  position: relative;
}
@media (max-width: 56.249rem) {
  .content-block.banner-above-text-below-right .title {
    height: 100vw;
    margin-left: calc(0.25rem - var(--padding));
    margin-right: calc(0.25rem - var(--padding));
    margin-top: -100vw;
  }
}
@media (min-width: 56.25rem) {
  .content-block.banner-above-text-below-right .title {
    grid-column: 1 / span 6;
    grid-row: 1;
    margin-left: calc(1.5rem - var(--padding));
    margin-top: 0;
  }
}
.content-block.banner-above-text-below-right .title h2 {
  margin-top: auto;
}
@media (max-width: 56.249rem) {
  .content-block.banner-above-text-below-right .title h2 {
    font-size: 3rem;
  }
}
@media (min-width: 56.25rem) {
  .content-block.banner-above-text-below-right .title h2 {
    font-size: 5rem;
  }
}
@media (min-width: 56.25rem) {
  .content-block.two-columns {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
}
.content-block.two-columns .title {
  color: #6F7C64;
  grid-column: 1 / -1;
}
@media (min-width: 56.25rem) {
  .content-block.two-columns .content {
    grid-column-end: span 6;
    margin-top: 1rem;
  }
}
@media (min-width: 56.25rem) {
  .content-block.two-columns .content + .content {
    grid-column: 8 / span 5;
  }
}
.expression-block {
  color: #6F7C64;
  font-size: 6.75vw;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.125;
}
.expression-block span {
  display: block;
}
.expression-block span:last-child {
  text-align: right;
}
.faqs-block > .content {
  margin-left: auto;
  margin-right: auto;
  max-width: 48rem;
}
.faqs-block > .content h1 {
  color: #6F7C64;
}
.faqs-block > .content + .faqs-list {
  margin-top: var(--padding);
}
.next-step-block {
  animation: fade-in ease-in-out both;
  animation-range: entry 10% entry 75%;
  animation-timeline: view();
  background-color: #161913;
  color: #F7F8F5;
  padding: 0;
  view-timeline-name: --next-step-block;
}
.next-step-block figure {
  animation: half-fade-out ease-in-out both;
  animation-range: entry 130% entry 160%;
  animation-timeline: --next-step-block;
}
.next-step-block .foreground {
  animation: fade-out linear both;
  animation-range: entry 135% entry 135%;
  animation-timeline: --next-step-block;
}
.next-step-block figure {
  height: 100vh;
  position: sticky;
  top: 0;
  width: 100%;
}
.next-step-block figure img {
  display: block;
  height: 100%;
  left: 0;
  margin: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.next-step-block .container {
  padding: calc(var(--padding) * 2) var(--padding);
  position: relative;
  z-index: 200;
}
@media (max-width: 56.249rem) {
  .next-step-block .container {
    margin-top: -20vh;
  }
}
@media (min-width: 56.25rem) {
  .next-step-block .container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    margin-top: -50vh;
    min-height: 60vh;
    padding: var(--padding);
  }
}
.next-step-block .container h3 {
  font-size: 1.5rem;
}
.next-step-block .container .actions {
  margin-top: 2rem;
}
.next-step-block .container .content {
  align-self: center;
  font-size: 1.25rem;
}
.next-step-block .container .content:nth-child(1) {
  grid-column: 1 / span 5;
}
.next-step-block .container .content:nth-child(2) {
  grid-column: 8 / span 4;
}
.next-step-block .foreground {
  display: block;
  height: 100vh;
  margin-top: -100vh;
  object-fit: cover;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
}
.next-step-block .title {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: -60vh;
  padding: calc(var(--padding) * 2) var(--padding) 30vh var(--padding);
  position: relative;
  top: 0;
  z-index: 50;
}
@media (min-width: 56.25rem) {
  .next-step-block .title {
    height: 100vh;
    padding: var(--padding) var(--padding) 60vh var(--padding);
    position: sticky;
  }
}
.next-step-block .title h2 {
  font-size: 20vw;
  text-align: center;
}
@media (min-width: 56.25rem) {
  .next-step-block .title h2 {
    font-size: 14vw;
  }
}
.packages-block .packages {
  list-style: none;
}
.packages-block .packages > li {
  border-top: 1px solid #D6D8D5;
  padding: calc(var(--padding) * 2) 0;
}
@media (min-width: 56.25rem) {
  .packages-block .packages > li {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    padding: calc(var(--padding) * 0.5) 0;
  }
}
.packages-block .packages > li h2 {
  grid-column: 1 / span 6;
}
.packages-block .packages > li .content {
  font-size: 1.125rem;
  grid-column: 1 / span 6;
  grid-row-end: span 2;
}
.packages-block .packages > li .points {
  font-size: 1rem;
  grid-column: 8 / span 5;
}
.packages-block .packages > li .points h3 {
  color: #6F7C64;
  font-size: 1.25rem;
  font-weight: 700;
}
.packages-block .packages > li .points ul {
  line-height: 1.25;
  list-style: none;
  margin-left: 1.25em;
}
.packages-block .packages > li .points ul li {
  position: relative;
}
.packages-block .packages > li .points ul li::before {
  background-image: url('../images/icon-plus.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0.875rem;
  content: '';
  display: block;
  height: 1.25em;
  left: -1.25em;
  position: absolute;
  top: 0;
  width: 0.875em;
}
.packages-block .packages > li .points ul li + li {
  margin-top: 0.5em;
}
.packages-block .packages > li .points * + h3 {
  margin-top: 2.5rem;
}
.packages-block .packages > li [role='button'] {
  align-self: end;
  grid-column: 8 / span 5;
  justify-self: start;
  margin-top: 2rem;
}
.page-header-block figure img {
  border-radius: var(--radius);
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.page-header-block.hero {
  color: #F7F8F5;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 8rem);
  position: relative;
}
@media (max-aspect-ratio: 0.8) {
  .page-header-block.hero {
    min-height: 125vw;
  }
}
@media (min-width: 56.25rem) {
  .page-header-block.hero {
    padding-bottom: calc(var(--padding) - 1.5rem);
    padding-top: calc(var(--padding) - 1.5rem);
  }
}
@media (min-width: 56.25rem) {
  .page-header-block.hero:first-child {
    margin-top: -1rem;
  }
}
.page-header-block.hero figure {
  background-color: #161913;
  border-radius: var(--radius);
  height: 100%;
  left: 0.25rem;
  position: absolute;
  top: 0;
  width: calc(100% - 0.5rem);
}
@media (min-width: 56.25rem) {
  .page-header-block.hero figure {
    left: 1.5rem;
    width: calc(100% - 3rem);
  }
}
.page-header-block.hero figure::after {
  background-color: #161913;
  background-image: linear-gradient(45deg, #6F7C64 25%, #f5c968);
  border-radius: var(--radius);
  content: '';
  height: 100%;
  left: 0;
  mix-blend-mode: multiply;
  opacity: 1;
  position: absolute;
  top: 0;
  width: 100%;
}
.page-header-block.hero figure img:first-child {
  filter: grayscale(1);
}
.page-header-block.hero figure .foreground {
  margin: 0;
  pointer-events: none;
  z-index: 1000;
}
.page-header-block.hero .content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  font-size: 1.25rem;
  font-weight: 500;
  height: 100%;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin: 0;
  max-width: 16em;
  position: relative;
}
@media (min-width: 56.25rem) {
  .page-header-block.hero .content {
    font-size: 2rem;
  }
}
@media (min-width: 56.25rem) {
  .page-header-block.hero .content h1 {
    width: 200%;
  }
}
.page-header-block.hero .content h1 + * {
  margin-top: auto;
}
.page-header-block.hero [role='button'] {
  align-self: flex-start;
  background-image: linear-gradient(60deg, #6F7C64 60%, #f5c968);
  background-position: 100% center;
  background-size: 200% 100%;
  transition: background-position 0.4s;
}
@media (max-width: 56.249rem) {
  .page-header-block.hero [role='button'] {
    margin-top: 1.5em;
  }
}
@media (min-width: 56.25rem) {
  .page-header-block.hero [role='button'] {
    bottom: calc(var(--padding) - 1.5rem);
    font-size: 1rem;
    position: absolute;
    right: var(--padding);
  }
}
.page-header-block.hero [role='button']:hover {
  background-position: 0% center;
}
.page-header-block.text-left-image-right {
  padding-top: 0;
}
@media (min-width: 56.25rem) {
  .page-header-block.text-left-image-right {
    display: flex;
    flex-direction: row-reverse;
  }
}
.page-header-block.text-left-image-right figure {
  position: relative;
}
@media (max-width: 56.249rem) {
  .page-header-block.text-left-image-right figure {
    margin-left: calc(0.25rem - var(--padding));
    margin-right: calc(0.25rem - var(--padding));
    height: 100vw;
  }
}
@media (min-width: 56.25rem) {
  .page-header-block.text-left-image-right figure {
    flex-basis: calc(50% + var(--padding) - 1.5rem);
    margin-right: calc(1.5rem - var(--padding));
  }
}
.page-header-block.text-left-image-right figure img {
  border-radius: var(--radius);
  display: block;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
@media (min-width: 56.25rem) {
  .page-header-block.text-left-image-right .content {
    flex-basis: 41.66666%;
    margin-bottom: calc(var(--padding) * 0.5);
    margin-right: auto;
    margin-top: calc(var(--padding) * 0.5);
    position: relative;
  }
}
.page-header-block.text-left-image-right .content h1 {
  color: #6F7C64;
}
@media (min-width: 56.25rem) {
  .page-header-block.text-left-image-right .content h1 {
    text-shadow: 0 0 3rem #f7f8f5;
    width: 180%;
  }
}
.press-block > ul {
  display: flex;
  gap: 1rem;
  justify-content: center;
  list-style: none;
}
@media (min-width: 56.25rem) {
  .press-block > ul {
    gap: 2.5rem;
  }
}
.press-block > ul a {
  display: block;
}
.press-block > ul img {
  display: block;
  height: 3rem;
  width: auto;
}
@media (min-width: 37.5rem) {
  .press-block > ul img {
    height: 4rem;
  }
}
@media (min-width: 56.25rem) {
  .press-block > ul img {
    height: 6rem;
  }
}
.press-block .content {
  margin-left: auto;
  margin-right: auto;
  max-width: 48rem;
  text-align: center;
}
.press-block .content + * {
  margin-top: var(--padding);
}
@media (min-width: 75rem) {
  .press-block .content + * {
    margin-top: calc(var(--padding) * 0.25);
  }
}
.press-block .content h2 {
  color: #6F7C64;
}
.statement-block {
  position: relative;
}
@media (min-width: 56.25rem) {
  .statement-block {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
}
.statement-block > h2 {
  color: #6F7C64;
}
@media (min-width: 56.25rem) {
  .statement-block > h2 {
    font-size: 2.75rem;
    grid-column: 1 / span 5;
  }
}
@media (min-width: 75rem) {
  .statement-block > h2 {
    font-size: 3.5rem;
    grid-column: 1 / span 6;
  }
}
@media (min-width: 56.25rem) {
  .statement-block .content {
    grid-column: 7 / span 6;
    margin-top: 0.5em;
  }
}
@media (min-width: 75rem) {
  .statement-block .content {
    grid-column: 8 / span 5;
  }
}
.statement-block .discovery-session {
  align-self: start;
  background-color: #f5c968;
  background-image: linear-gradient(200deg, #6F7C64 15%, #f5c968);
  border-radius: var(--radius);
  color: #F7F8F5;
  line-height: 1.33;
  padding: 1.5rem;
  text-shadow: 0 0 1em #6F7C64;
}
@media (max-width: 56.249rem) {
  .statement-block .discovery-session {
    margin-left: calc(0.25rem - var(--padding));
    margin-right: calc(0.25rem - var(--padding));
    margin-top: calc(var(--padding) * 1.5);
    padding: var(--padding) calc(var(--padding) - 0.25rem);
  }
}
@media (min-width: 56.25rem) {
  .statement-block .discovery-session {
    align-items: center;
    background-image: linear-gradient(45deg, #6F7C64 25%, #f5c968);
    display: grid;
    grid-column: 1 / span 12;
    grid-template-columns: repeat(12, 1fr);
    margin-left: calc(1.5rem - var(--padding));
    margin-right: calc(1.5rem - var(--padding));
    margin-top: calc(var(--padding) * 1);
    padding: calc(var(--padding) - 1.5rem);
  }
}
@media (min-width: 56.25rem) {
  .statement-block .discovery-session > * {
    margin-top: 0;
  }
}
@media (min-width: 56.25rem) {
  .statement-block .discovery-session h3 {
    grid-column: 1 / span 4;
  }
}
@media (min-width: 56.25rem) {
  .statement-block .discovery-session h3 + * {
    grid-column: 6 / span 5;
  }
}
@media (max-width: 56.249rem) {
  .statement-block .discovery-session .btn-container {
    margin-top: 1.25rem;
  }
}
@media (min-width: 56.25rem) {
  .statement-block .discovery-session .btn-container {
    grid-column: 11 / span 2;
    justify-self: end;
  }
}
.testimonials-block > .content h2 {
  color: #6F7C64;
}
.testimonials-block > .content + ul {
  margin-top: var(--padding);
}
@media (min-width: 75rem) {
  .testimonials-block > .content + ul {
    margin-top: calc(var(--padding) * 0.5);
  }
}
.testimonials-block ul {
  list-style: none;
}
@media (min-width: 56.25rem) {
  .testimonials-block ul {
    columns: 2;
    column-gap: var(--padding);
  }
}
.testimonials-block ul li {
  break-inside: avoid;
  margin-bottom: var(--padding);
}
.testimonials-block ul li .content {
  display: flex;
  flex-direction: column-reverse;
}
.testimonials-block ul li .content .quote::before {
  content: '“';
  display: block;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 4em;
  line-height: 0.75;
  margin-bottom: -0.3em;
}
.testimonials-block ul li .content h3 {
  font-size: 1rem;
  margin-top: 0.5rem;
}
.testimonials-block ul li .content h3::before {
  content: '- ';
}
.testimonials-block ul li .content h3 + * {
  margin-top: 0;
}
.transform-block {
  /*
    .steps {
        counter-reset: step;
        display: flex;
        line-height: 1.25;
        list-style: none;
        margin-left: calc(var(--padding) * -1);
        margin-right: calc(var(--padding) * -1);
        overflow-x: auto;

        @media (max-width: 56.249rem) {
            font-size: 1rem;
        }
        @media (min-width: 56.25rem) {
            grid-column: 1 / -1;
        }

        &::before, &::after {
            content: '';
            flex-basis: .25rem;
            flex-shrink: 0;

            @media (min-width: 56.25rem) {
                flex-basis: 1.5rem;
            }
        }

        li {
            background-color: @accent-1;
            border-radius: var(--radius);
            color: @background;
            counter-increment: step;
            flex-basis: 16rem;
            flex-grow: 1;
            flex-shrink: 0;
            position: relative;

            & + li {
                margin-left: .25rem;

                @media (min-width: 56.25rem) {
                    margin-left: 1.5rem;
                }
            }

            figure {
                img {
                    border-radius: var(--radius);
                    display: block;
                    height: auto;
                    width: 100%;
                }
            }

            h3 {
                line-height: 1.125;

                @media (min-width: 75rem) {
                    font-size: 2.5rem;
                }
                & + * {
                    margin-top: .5em;
                }
            }

            .content {
                background-image: linear-gradient(rgba(22,25,19,0), rgba(22,25,19,.75) 75%);
                border-radius: 0 0 var(--radius) var(--radius);
                bottom: 0;
                left: 0;
                padding: calc(var(--padding) - .25rem);
                position: absolute;
                text-shadow: 0 0 2rem rgba(22,25,19,.5);
                width: 100%;

                @media (min-width: 56.25rem) {
                    padding: calc(var(--padding) - 1.5rem);
                }

                &::before {
                    border-bottom: 4px solid currentColor;
                    content: '0'counter(step);
                    display: inline-block;
                    font-size: 2.5rem;
                    font-weight: 900;
                    margin-bottom: .25em;

                    @media (min-width: 56.25rem) {
                        font-size: 4rem;
                    }
                }
            }
        }
    }
    */
}
@media (min-width: 56.25rem) {
  .transform-block {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (min-width: 56.25rem) {
  .transform-block > .content {
    grid-column-end: span 7;
  }
}
.transform-block > .content h2 {
  color: #6F7C64;
}
.transform-block > .content + .steps {
  margin-top: calc(var(--padding) * 1.5);
}
@media (min-width: 56.25rem) {
  .transform-block > .content + .steps {
    margin-top: calc(var(--padding) * 0.5);
  }
}
.transform-block .steps {
  counter-reset: step;
  display: flex;
  line-height: 1.25;
  list-style: none;
  overflow-x: auto;
}
@media (max-width: 56.249rem) {
  .transform-block .steps {
    font-size: 1rem;
    margin-left: calc(var(--padding) * -1);
    margin-right: calc(var(--padding) * -1);
  }
}
@media (min-width: 56.25rem) {
  .transform-block .steps {
    flex-wrap: wrap;
    grid-column: 1 / -1;
    justify-content: center;
    margin-left: calc(1.5rem - var(--padding));
    margin-right: calc(1.5rem - var(--padding));
  }
}
@media (max-width: 56.249rem) {
  .transform-block .steps::before,
  .transform-block .steps::after {
    content: '';
    flex-basis: 0.25rem;
    flex-shrink: 0;
  }
}
.transform-block .steps li {
  background-color: #6F7C64;
  border-radius: var(--radius);
  color: #F7F8F5;
  counter-increment: step;
  position: relative;
}
@media (max-width: 56.249rem) {
  .transform-block .steps li {
    flex-basis: 16rem;
    flex-grow: 1;
    flex-shrink: 0;
  }
}
@media (min-width: 56.25rem) {
  .transform-block .steps li {
    flex-basis: calc(50% - 0.75rem);
  }
}
.transform-block .steps li + li {
  margin-left: 0.25rem;
}
@media (min-width: 56.25rem) {
  .transform-block .steps li + li {
    margin-left: 1.5rem;
  }
}
@media (min-width: 56.25rem) {
  .transform-block .steps li:nth-child(n + 3) {
    margin-top: 1.5rem;
  }
}
.transform-block .steps li figure img {
  border-radius: var(--radius);
  display: block;
  height: auto;
  width: 100%;
}
@media (min-width: 56.25rem) {
  .transform-block .steps li figure img {
    aspect-ratio: 16 / 11;
    object-fit: cover;
  }
}
.transform-block .steps li h3 {
  line-height: 1.125;
}
@media (min-width: 75rem) {
  .transform-block .steps li h3 {
    font-size: 2.5rem;
  }
}
.transform-block .steps li h3 + * {
  margin-top: 0.5em;
}
.transform-block .steps li .content {
  background-image: linear-gradient(rgba(22, 25, 19, 0), rgba(22, 25, 19, 0.75) 75%);
  border-radius: 0 0 var(--radius) var(--radius);
  bottom: 0;
  left: 0;
  padding: calc(var(--padding) - 0.25rem);
  position: absolute;
  text-shadow: 0 0 2rem rgba(22, 25, 19, 0.5);
  width: 100%;
}
@media (min-width: 56.25rem) {
  .transform-block .steps li .content {
    padding: calc(var(--padding) - 1.5rem);
  }
}
.transform-block .steps li .content::before {
  border-bottom: 4px solid currentColor;
  content: '0' counter(step);
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.25em;
}
@media (min-width: 56.25rem) {
  .transform-block .steps li .content::before {
    font-size: 4rem;
  }
}
.page-id-89 .page-header-block .content,
.page-id-223 .page-header-block .content {
  max-width: none;
  padding-bottom: calc(var(--padding) * 3);
}
.page-id-89 .page-header-block .content h1,
.page-id-223 .page-header-block .content h1 {
  margin-top: auto;
  text-align: center;
  width: auto;
}
.page-id-89 .page-header-block + .embed-block,
.page-id-223 .page-header-block + .embed-block {
  margin-top: calc(var(--padding) * -4);
  padding-top: 0;
}
/*
----------------------------------------------
WOOCOMMERCE
----------------------------------------------
*/
.wc-block-components-address-form__state {
  margin-top: 0;
}
.wc-block-components-address-form__state select {
  margin-top: 0;
}
.wc-block-checkout__sidebar,
.wp-block-woocommerce-checkout-order-summary-block {
  margin-top: 0;
}
.wp-block-woocommerce-checkout-order-summary-block {
  background-color: #fff;
  border-color: #D6D8D5;
  border-radius: var(--radius);
}
.wp-block-woocommerce-checkout-order-summary-block .wp-block-woocommerce-checkout-order-summary-totals-block {
  border-top-color: #D6D8D5;
}
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-wrapper {
  border-top-color: #D6D8D5;
}
.wc-block-components-address-card {
  background-color: #fff;
  border-color: #D6D8D5;
  border-radius: var(--radius);
}
.wc-block-components-radio-control {
  background-color: #fff;
  border-color: #D6D8D5;
  border-radius: var(--radius);
}
.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted,
.wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted {
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1.5px #6F7C64;
}
.wc-block-components-radio-control--highlight-checked:after {
  border-radius: var(--radius);
}
.wc-block-components-express-payment--checkout .wc-block-components-express-payment__title-container:before,
.wc-block-components-express-payment--checkout .wc-block-components-express-payment__title-container:after {
  height: var(--radius);
  top: calc(var(--radius) * -1);
}
.wc-block-components-express-payment--checkout .wc-block-components-express-payment__title-container {
  top: calc(var(--radius) * -1);
}
.wc-block-components-express-payment--checkout .wc-block-components-express-payment__content {
  margin-top: var(--radius);
}
.wc-block-components-express-payment--checkout .wc-block-components-express-payment__title-container:before {
  border-radius: var(--radius) 0 0 0;
}
.wc-block-components-express-payment--checkout .wc-block-components-express-payment__title-container:after {
  border-radius: 0 var(--radius) 0 0;
}
.wc-block-components-express-payment--checkout .wc-block-components-express-payment__content {
  border-radius: 0 0 var(--radius) var(--radius);
  padding-top: 0;
}
.wc-block-components-checkout-place-order-button {
  background-color: #6F7C64;
  padding: 1rem;
}
.wc-block-checkout__terms {
  margin-bottom: 0px;
}
.woocommerce-order {
  padding: calc(var(--padding) * 1.5) var(--padding);
}
@media (min-width: 56.25rem) {
  .woocommerce-order {
    padding: var(--padding);
  }
}
/*
----------------------------------------------
ANIMATION
----------------------------------------------
*/
@keyframes fade-in {
  0% {
    opacity: 0;
  }
}
@keyframes fade-out {
  100% {
    opacity: 0;
  }
}
@keyframes half-fade-out {
  100% {
    opacity: 0.4;
  }
}
@keyframes move-quicker {
  100% {
    transform: translateY(-100%);
  }
}
@keyframes menu-btn-top {
  50% {
    transform: translateY(0);
  }
  100% {
    transform: rotate(45deg);
  }
}
@keyframes menu-btn-bot {
  50% {
    transform: translateY(0);
  }
  100% {
    transform: rotate(-45deg);
  }
}
@keyframes menu-btn-top-rev {
  0% {
    transform: rotate(45deg);
  }
  50% {
    transform: translateY(0);
  }
}
@keyframes menu-btn-bot-rev {
  0% {
    transform: rotate(-45deg);
  }
  50% {
    transform: translateY(0);
  }
}
