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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

svg {
  display: block;
}

/* Natural flow and rhythm in articles by default */
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  border: 0 none;
  border-radius: 0;
  background: none;
  color: inherit;
}

/* Reset headings for custom fonts */
h1, h2, h3, h4, h5 {
  font-weight: normal;
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

/* Remove _all_ animations and transitions for people that prefer not to see them */
:root {
  --black: #000000;
  --black_rgb: 0, 0, 0;
  --white: #FFFFFF;
  --white_rgb: 255, 255, 255;
  --darkgrey: #474747;
  --darkgrey_rgb: 71, 71, 71;
  --blue: #73A5AF;
  --blue_rgb: 115, 165, 175;
  --offwhite: #F3F3F3;
  --offwhite_rgb: 243, 243, 243;
  --error: #D10000;
  --error_rgb: 209, 0, 0;
  --highlight-color: null;
}

/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}
.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* ---- draggable ---- */
.flickity-enabled.is-draggable {
  tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
/* ---- flickity-button ---- */
.flickity-button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}
.flickity-button:hover {
  cursor: pointer;
}
.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}
.flickity-button:active {
  opacity: 0.6;
}
.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  width: 1.5rem;
  height: 1.5rem;
}
.flickity-prev-next-button.previous {
  order: 2;
}
.flickity-rtl .flickity-prev-next-button.previous {
  order: 4;
}
.flickity-prev-next-button.next {
  order: 4;
}
.flickity-rtl .flickity-prev-next-button.next {
  order: 2;
}
.flickity-prev-next-button .flickity-button-icon {
  fill: currentColor;
}

/* ---- page dots ---- */
.flickity-page-dots {
  order: 3;
  bottom: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}
.flickity-rtl .flickity-page-dots {
  direction: rtl;
}
.flickity-page-dots .dot {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 0.25rem;
  opacity: 0.25;
  cursor: pointer;
}
.flickity-page-dots .dot.is-selected {
  opacity: 1;
}
.flickity-page-dots .dot:after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: currentColor;
}

.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

:root {
  --override-tsn: color 1s cubic-bezier(0.37, 0, 0.63, 1) .3s, border-color 1s cubic-bezier(0.37, 0, 0.63, 1) .3s;
}

body {
  font-family: omnes-pro;
  background-color: var(--offwhite);
  color: var(--darkgrey);
  --lh: 1.25rem;
  font-size: 1rem;
  line-height: var(--lh);
}
@media only screen and (min-width: 768px) {
  body {
    --lh: 1.5rem;
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 768px) {
  body {
    background-color: var(--override-bg, var(--offwhite));
    transition: background-color 1s cubic-bezier(0.37, 0, 0.63, 1) 0.3s;
  }
  body:after {
    display: block;
    content: "";
    width: 100%;
    padding-bottom: var(--ft);
  }
}

main {
  width: 100%;
  min-height: calc(100 * var(--vhs));
  position: relative;
  z-index: 2;
  background-color: inherit;
  padding-top: 9.5625rem;
}
@media only screen and (min-width: 768px) {
  main {
    padding-top: 11.875rem;
  }
}

.hide-mobile {
  display: none;
}
@media only screen and (min-width: 768px) {
  .hide-mobile {
    display: unset;
  }
}

@media only screen and (min-width: 768px) {
  .hide-desktop {
    display: none;
  }
}

.ratio-box {
  padding-bottom: var(--pad);
  position: relative;
  overflow: hidden;
  background-color: var(--blue);
}
.ratio-box > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

img {
  background-color: var(--blue);
}

.modules {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 2rem;
  background-color: inherit;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .modules {
    grid-row-gap: 4rem;
  }
}
@media only screen and (min-width: 1440px) {
  .modules {
    grid-row-gap: 7.5rem;
  }
}
.modules:after {
  display: block;
  content: "";
}
.modules.no-top-space:before {
  display: none;
}
.modules.no-btm-space:after {
  display: none;
}
.modules .wysiwyg :link,
.modules .wysiwyg :visited {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--grey);
  color: inherit;
}
@media only screen and (min-width: 768px) {
  .modules .wysiwyg :link,
  .modules .wysiwyg :visited {
    position: relative;
    display: inline-block;
  }
  .modules .wysiwyg :link:after,
  .modules .wysiwyg :visited:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 3px;
    width: 0;
    border-bottom: 1px solid var(--black);
    transition: width 0.3s ease;
  }
  .modules .wysiwyg :link:hover:after, .modules .wysiwyg :link:active:after,
  .modules .wysiwyg :visited:hover:after,
  .modules .wysiwyg :visited:active:after {
    width: 100%;
  }
}
.modules .wysiwyg p:not(:last-child) {
  margin-bottom: var(--lh);
}

.lag-wrapper {
  pointer-events: none;
}

.lag-item {
  pointer-events: auto;
}

:link,
:visited {
  text-decoration: none;
  color: inherit;
}

::-moz-selection {
  background: var(--white);
  color: var(--blue);
}

::selection {
  background: var(--white);
  color: var(--blue);
}

.landing {
  display: block;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 5.625rem;
  padding: 0 1rem;
}
@media only screen and (min-width: 768px) {
  .landing {
    grid-template-columns: repeat(12, 1fr);
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .landing {
    padding: 0 1.5rem;
  }
}
.landing__h2 {
  --lh: 2.1875rem;
  font-size: 1.875rem;
  line-height: var(--lh);
  transition: var(--override-tsn);
  color: var(--darkgrey);
  grid-column: span 4;
}
@media only screen and (min-width: 768px) {
  .landing__h2 {
    --lh: 4.0625rem;
    font-size: 4.375rem;
  }
}
@media only screen and (min-width: 768px) {
  .landing__h2 {
    grid-column: span 9;
  }
}
.landing__img {
  grid-column: span 4;
  width: calc(100% + 1rem);
}
@media only screen and (min-width: 768px) {
  .landing__img {
    grid-column: 6/span 7;
    width: calc(100% + 1.5rem);
  }
}

.text {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  padding: 0 1rem;
  color: var(--darkgrey);
}
@media only screen and (min-width: 768px) {
  .text {
    grid-template-columns: repeat(12, 1fr);
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .text {
    padding: 0 1.5rem;
  }
}
.text__copy {
  --lh: 1.5625rem;
  font-size: 1.25rem;
  line-height: var(--lh);
  grid-column: span 4;
  transition: var(--override-tsn);
  color: var(--dargrey);
}
@media only screen and (min-width: 768px) {
  .text__copy {
    --lh: 2.1875rem;
    font-size: 1.875rem;
  }
}
.blue .text__copy {
  color: var(--blue);
}
.big .text__copy {
  --lh: 2.1875rem;
  font-size: 1.875rem;
  line-height: var(--lh);
}
@media only screen and (min-width: 768px) {
  .big .text__copy {
    --lh: 4.0625rem;
    font-size: 4.375rem;
  }
}
@media only screen and (min-width: 768px) {
  .text__copy {
    grid-column: 2/span 10;
  }
  .big .text__copy {
    grid-column: 1/span 9;
  }
}

.ticker {
  --lh: 1.5625rem;
  font-size: 1.25rem;
  line-height: var(--lh);
  padding: 0.6875rem 0;
  width: 100%;
  overflow: hidden;
  color: var(--darkgrey);
}
@media only screen and (min-width: 768px) {
  .ticker {
    --lh: 2.1875rem;
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 768px) {
  .ticker {
    padding: 1.3125rem 0;
    transition: var(--override-tsn);
  }
}
@media only screen and (min-width: 1440px) {
  .ticker {
    padding: 1.5rem 0;
  }
}
.ticker__wrapper {
  display: flex;
}
.ticker__item {
  white-space: nowrap;
}
.ticker__item a,
.ticker__item span {
  padding: 0 0.5rem;
}
.ticker :link,
.ticker :visited {
  text-decoration: none;
  color: inherit;
}
@media only screen and (min-width: 768px) {
  .ticker :link:hover, .ticker :link:active,
  .ticker :visited:hover,
  .ticker :visited:active {
    color: var(--blue);
    transition: color 0.3s ease;
  }
}

.hub {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1.5rem;
  padding: 0 1rem;
}
@media only screen and (min-width: 768px) {
  .hub {
    grid-template-columns: repeat(12, 1fr);
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .hub {
    padding: 0 1.5rem;
  }
}
.hub__item {
  position: relative;
  grid-column: span 4;
}
@media only screen and (min-width: 768px) {
  .hub__item:nth-child(1) {
    grid-column: 2/span 4;
  }
  .hub__item:nth-child(1) .ratio-box {
    padding-bottom: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hub__item:nth-child(2) {
    grid-column: 2/span 4;
    grid-row: 2;
  }
  .hub__item:nth-child(2) .ratio-box {
    padding-bottom: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hub__item:nth-child(3) {
    grid-column: 6/span 6;
    grid-row: 1/span 2;
  }
}
.hub__item * {
  pointer-events: none;
}
.hub .lag-wrapper {
  width: 100%;
  height: 100%;
}
.hub .lag-item {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.hub__title {
  text-transform: uppercase;
  font-weight: 500;
  --lh: 1.125rem;
  font-size: 0.875rem;
  letter-spacing: 1px;
  line-height: var(--lh);
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  padding: 2px 1rem 4px;
  border-radius: 1rem;
  color: var(--offwhite);
  background-color: var(--blue);
}
@media only screen and (min-width: 768px) {
  .hub__title {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
.product .hub__title {
  top: auto;
  bottom: 1rem;
}
.hub__price {
  margin-left: 1rem;
}

.news {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1.5rem;
  padding: 0 1rem;
}
@media only screen and (min-width: 768px) {
  .news {
    grid-template-columns: repeat(12, 1fr);
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .news {
    padding: 0 1.5rem;
    row-gap: 2.5rem;
  }
}
.news__title {
  text-transform: uppercase;
  font-weight: 500;
  --lh: 1.125rem;
  font-size: 0.875rem;
  letter-spacing: 1px;
  line-height: var(--lh);
  grid-column: span 4;
  color: var(--darkgrey);
  border-top: 1px solid;
  border-color: var(--blue);
  padding-top: 0.75rem;
  transition: var(--override-tsn);
}
@media only screen and (min-width: 768px) {
  .news__title {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .news__title {
    grid-column: span 12;
    padding-top: 0.75rem;
  }
}
.news__excerpt {
  grid-column: span 2;
  color: var(--darkgrey);
}
@media only screen and (min-width: 768px) {
  .news__excerpt {
    grid-column: span 3;
  }
  .news__excerpt:link .more, .news__excerpt:visited .more {
    position: relative;
    transition: color 0.3s ease-in-out;
  }
  .news__excerpt:link .more:before, .news__excerpt:visited .more:before {
    content: "";
    position: absolute;
    top: 100%;
    width: 100%;
    height: 2px;
    background-color: var(--blue);
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
  }
  .news__excerpt:link:hover .more, .news__excerpt:link:active .more, .news__excerpt:visited:hover .more, .news__excerpt:visited:active .more {
    color: var(--blue);
  }
  .news__excerpt:link:hover .more:before, .news__excerpt:link:active .more:before, .news__excerpt:visited:hover .more:before, .news__excerpt:visited:active .more:before {
    transform: scaleX(1);
  }
}
.news__excerpt iframe {
  width: 100%;
}
.news__ex-img {
  margin-bottom: var(--lh);
}
.news__ex-title {
  --lh: 1.25rem;
  font-size: 1rem;
  line-height: var(--lh);
  margin-bottom: var(--lh);
  color: var(--blue);
  transition: var(--override-tsn);
}
@media only screen and (min-width: 768px) {
  .news__ex-title {
    --lh: 1.5rem;
    font-size: 1.125rem;
  }
}
.news__ex-ex {
  margin-bottom: var(--lh);
  transition: var(--override-tsn);
}
.news .price {
  display: inline-block;
  width: 50%;
}
.news .mini-button {
  text-transform: uppercase;
  font-weight: 500;
  --lh: 1.125rem;
  font-size: 0.875rem;
  letter-spacing: 1px;
  line-height: var(--lh);
  border: 1px solid var(--blue);
  color: var(--blue);
  border-radius: 2rem;
  padding: 3px 0.5625rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .news .mini-button {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .news .mini-button:link, .news .mini-button:visited {
    transition: all 0.3s ease-in-out;
  }
  .news .mini-button:link:hover, .news .mini-button:link:active, .news .mini-button:visited:hover, .news .mini-button:visited:active {
    background-color: var(--blue);
    color: var(--offwhite);
  }
}

.menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  padding: 0 1rem;
}
@media only screen and (min-width: 768px) {
  .menu {
    grid-template-columns: repeat(12, 1fr);
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .menu {
    padding: 0 1.5rem;
    grid-template-rows: -webkit-min-content 1fr;
    grid-template-rows: min-content 1fr;
    align-content: start;
  }
}
.menu__copy {
  grid-column: span 4;
  transition: var(--override-tsn);
  color: var(--dargrey);
  margin-bottom: 4rem;
}
@media only screen and (min-width: 768px) {
  .menu__copy {
    grid-column: span 5;
    margin-bottom: 5rem;
    align-items: start;
  }
}
.menu__media {
  grid-column: 1/span 4;
  margin-bottom: 4rem;
}
@media only screen and (min-width: 768px) {
  .menu__media {
    grid-column: 1/span 5;
    margin-bottom: 0;
  }
}
.menu__menu {
  grid-column: 1/span 4;
}
@media only screen and (min-width: 768px) {
  .menu__menu {
    grid-row: 1/span 2;
    grid-column: 7/span 6;
  }
}
@media only screen and (min-width: 768px) {
  .menu__wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 6rem;
  }
}
.menu__menu-title {
  --lh: 1.5625rem;
  font-size: 1.25rem;
  line-height: var(--lh);
  margin-bottom: 2.5rem;
}
@media only screen and (min-width: 768px) {
  .menu__menu-title {
    --lh: 2.1875rem;
    font-size: 1.875rem;
  }
}
.menu__menu-course {
  margin-bottom: 1.25rem;
}
.menu__menu-course:last-child {
  margin-bottom: 4rem;
}
@media only screen and (min-width: 768px) {
  .menu__menu-course {
    margin-bottom: 3.75rem;
  }
  .menu__menu-course:last-child {
    margin-bottom: 6rem;
  }
}
.menu__menu-course h4 {
  text-transform: uppercase;
  font-weight: 500;
  --lh: 1.25rem;
  font-size: 1.125rem;
  letter-spacing: 1px;
  line-height: var(--lh);
  color: var(--blue);
  padding-bottom: 0.625rem;
  border-bottom: 1px solid;
  margin-bottom: 0.625rem;
}
@media only screen and (min-width: 768px) {
  .menu__menu-course h4 {
    --lh: 1.625rem;
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .menu__menu-course h4 {
    margin-bottom: 1.5rem;
  }
}
.menu__notes {
  border-top: 1px solid var(--blue);
  padding-top: 0.625rem;
}
.menu__notes .wysiwyg {
  margin-bottom: 4rem;
}
@media only screen and (min-width: 768px) {
  .menu__notes .wysiwyg {
    margin-bottom: 2rem;
  }
}
.menu__notes .button {
  text-transform: uppercase;
  font-weight: 500;
  --lh: 1.125rem;
  font-size: 0.875rem;
  letter-spacing: 1px;
  line-height: var(--lh);
  border: 1px solid var(--blue);
  color: var(--blue);
  border-radius: 2rem;
  padding: 0.5625rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .menu__notes .button {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .menu__notes .button:link, .menu__notes .button:visited {
    transition: all 0.3s ease-in-out;
  }
  .menu__notes .button:link:hover, .menu__notes .button:link:active, .menu__notes .button:visited:hover, .menu__notes .button:visited:active {
    background-color: var(--blue);
    color: var(--offwhite);
  }
}

.menu-gallery {
  display: block;
  width: 100%;
}
.menu-gallery:after {
  content: "flickity";
  display: none; /* hide :after */
}
@media only screen and (min-width: 768px) {
  .menu-gallery:after {
    content: "";
  }
}
.menu-gallery__slide {
  width: 100%;
}
.menu-gallery__slide .ratio-box {
  padding-bottom: 66.65%;
}
@media only screen and (min-width: 768px) {
  .menu-gallery__slide .ratio-box {
    padding-bottom: var(--pad);
    margin-bottom: 1.5rem;
  }
}

.two-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  padding: 0 1rem;
  row-gap: 1.25rem;
}
@media only screen and (min-width: 768px) {
  .two-columns {
    grid-template-columns: repeat(12, 1fr);
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .two-columns {
    padding: 0 1.5rem;
    align-items: center;
  }
  .two-columns.wide {
    align-items: start;
  }
}
.two-columns__media-col {
  grid-column: span 4;
}
@media only screen and (min-width: 768px) {
  .two-columns__media-col {
    grid-column: 2/span 5;
    grid-row: 1;
  }
  .reverse .two-columns__media-col {
    grid-column: 7/span 5;
  }
  .wide .two-columns__media-col {
    grid-column: 1/span 6;
  }
  .wide.reverse .two-columns__media-col {
    grid-column: 7/span 6;
  }
}
.two-columns__copy-col {
  grid-column: span 4;
}
@media only screen and (min-width: 768px) {
  .two-columns__copy-col {
    grid-column: 8/span 4;
    grid-row: 1;
  }
  .reverse .two-columns__copy-col {
    grid-column: 2/span 4;
  }
  .wide .two-columns__copy-col {
    grid-column: 8/span 5;
  }
  .wide.reverse .two-columns__copy-col {
    grid-column: 1/span 5;
  }
}
.two-columns__copy-col .block + .block {
  margin-top: 4.875rem;
}
@media only screen and (min-width: 768px) {
  .two-columns__copy-col .block + .block {
    margin-top: 6.25rem;
  }
}
.two-columns__copy-col h3 {
  --lh: 1.5625rem;
  font-size: 1.25rem;
  line-height: var(--lh);
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 768px) {
  .two-columns__copy-col h3 {
    --lh: 2.1875rem;
    font-size: 1.875rem;
  }
}
.two-columns__copy-col .button {
  text-transform: uppercase;
  font-weight: 500;
  --lh: 1.125rem;
  font-size: 0.875rem;
  letter-spacing: 1px;
  line-height: var(--lh);
  border: 1px solid var(--blue);
  color: var(--blue);
  border-radius: 2rem;
  padding: 0.5625rem;
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .two-columns__copy-col .button {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .wide .two-columns__copy-col .button {
    width: 37.5%;
  }
  .two-columns__copy-col .button:link, .two-columns__copy-col .button:visited {
    transition: all 0.3s ease-in-out;
  }
  .two-columns__copy-col .button:link:hover, .two-columns__copy-col .button:link:active, .two-columns__copy-col .button:visited:hover, .two-columns__copy-col .button:visited:active {
    background-color: var(--blue);
    color: var(--offwhite);
  }
}

.three-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  padding: 0 1rem;
  row-gap: 3rem;
}
@media only screen and (min-width: 768px) {
  .three-columns {
    grid-template-columns: repeat(12, 1fr);
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .three-columns {
    padding: 0 1.5rem;
    align-items: start;
  }
}
.three-columns__column {
  grid-column: span 4;
  display: grid;
  row-gap: 1.25rem;
}
@media only screen and (min-width: 768px) {
  .three-columns__column {
    row-gap: 2.5rem;
    height: 100%;
    align-content: start;
    grid-template-rows: -webkit-min-content -webkit-min-content 1fr;
    grid-template-rows: min-content min-content 1fr;
  }
}
.three-columns__copy h3 {
  --lh: 1.5625rem;
  font-size: 1.25rem;
  line-height: var(--lh);
  margin-bottom: 1.25rem;
  padding-top: 0.625rem;
}
@media only screen and (min-width: 768px) {
  .three-columns__copy h3 {
    --lh: 2.1875rem;
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 768px) {
  .three-columns__copy h3 {
    padding-top: 0;
  }
}
.three-columns .button {
  text-transform: uppercase;
  font-weight: 500;
  --lh: 1.125rem;
  font-size: 0.875rem;
  letter-spacing: 1px;
  line-height: var(--lh);
  border: 1px solid var(--blue);
  color: var(--blue);
  border-radius: 2rem;
  padding: 0.5625rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .three-columns .button {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .three-columns .button {
    align-self: end;
  }
  .three-columns .button:link, .three-columns .button:visited {
    transition: all 0.3s ease-in-out;
  }
  .three-columns .button:link:hover, .three-columns .button:link:active, .three-columns .button:visited:hover, .three-columns .button:visited:active {
    background-color: var(--blue);
    color: var(--offwhite);
  }
}

.column-gallery {
  display: block;
  width: 100%;
}
.column-gallery__slide {
  width: 100%;
  opacity: 0 !important;
  transition: opacity 1s ease !important;
}
.column-gallery__slide.is-selected {
  opacity: 1 !important;
}
.column-gallery .flickity-page-dots {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  color: var(--offwhite);
}
.column-gallery .flickity-page-dots .dot {
  width: 1rem;
  height: 1rem;
}
.column-gallery .flickity-page-dots .dot:after {
  width: 0.625rem;
  height: 0.625rem;
}

@media only screen and (min-width: 768px) {
  .keyline {
    padding: 0 1.5rem;
  }
}
.keyline__line {
  border-top: 1px solid var(--blue);
  transition: var(--override-tsn);
}
.keyline__line.medium {
  margin: 1rem 0;
}
.keyline__line.large {
  margin: 2rem 0;
}
.keyline__line.grey {
  border-color: var(--darkgrey);
}
.keyline__line.none {
  border: 0 none;
}

.gallery {
  padding: 0 1rem;
}
@media only screen and (min-width: 768px) {
  .gallery {
    padding: 0 1.5rem;
  }
}

.gallery-carousel {
  display: block;
  width: 100%;
}
.gallery-carousel__slide {
  width: 100%;
}
.gallery-carousel .flickity-page-dots {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  color: var(--offwhite);
}
.gallery-carousel .flickity-page-dots .dot:after {
  width: 1rem;
  height: 1rem;
}

.faqs {
  padding: 0 1rem;
}
@media only screen and (min-width: 768px) {
  .faqs {
    padding: 0 1.5rem;
  }
}
.faqs__title {
  text-transform: uppercase;
  font-weight: 500;
  --lh: 1.125rem;
  font-size: 0.875rem;
  letter-spacing: 1px;
  line-height: var(--lh);
  color: var(--blue);
  margin-bottom: 0.625rem;
}
@media only screen and (min-width: 768px) {
  .faqs__title {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .faqs__title {
    margin-bottom: 0.8125rem;
  }
}
.faqs__faq {
  display: block;
  border-top: 1px dotted var(--blue);
  padding: 0.625rem 0;
}
@media only screen and (min-width: 768px) {
  .faqs__faq {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    padding: 0.625rem 0 2.5rem;
    transition: color 0.3s ease;
  }
  .faqs__faq:hover {
    color: var(--blue);
  }
}
.faqs__summary {
  text-transform: uppercase;
  font-weight: 500;
  --lh: 1.25rem;
  font-size: 1.125rem;
  letter-spacing: 1px;
  line-height: var(--lh);
  display: block;
}
@media only screen and (min-width: 768px) {
  .faqs__summary {
    --lh: 1.625rem;
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .faqs__summary {
    grid-column: 1/span 5;
  }
}
.faqs__summary + input {
  position: absolute;
}
.faqs__description {
  height: 0;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .faqs__description {
    display: block;
    grid-column: 6/span 7;
    height: auto;
  }
}
input:checked + .faqs__description {
  height: auto;
}
.faqs__description-wrapper {
  padding-top: 1.25rem;
}
@media only screen and (min-width: 768px) {
  .faqs__description-wrapper {
    padding-top: 3px;
  }
}

.information {
  display: grid;
  row-gap: 2.5rem;
}
.information__main {
  display: grid;
  row-gap: 2.5rem;
  background-color: var(--blue);
  color: var(--offwhite);
  padding: 1rem 1rem 2.5rem;
}
@media only screen and (min-width: 768px) {
  .information__main {
    grid-template-columns: repeat(12, 1fr);
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    align-items: center;
    padding: 5rem 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .information__copy {
    grid-column: 1/span 4;
  }
}
.information__title {
  --lh: 1.5625rem;
  font-size: 1.25rem;
  line-height: var(--lh);
  margin-bottom: var(--lh);
}
@media only screen and (min-width: 768px) {
  .information__title {
    --lh: 2.1875rem;
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 768px) {
  .information__media {
    grid-column: 6/span 7;
  }
}
.information__actions {
  display: grid;
  row-gap: 1.25rem;
  padding: 0 1rem 2.5rem;
  border-bottom: 1px solid var(--blue);
}
@media only screen and (min-width: 768px) {
  .information__actions {
    grid-template-columns: repeat(12, 1fr);
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    padding: 0 1.5rem 2.5rem;
  }
}
.information__blocks {
  display: grid;
  row-gap: 1.25rem;
  padding: 0 1rem;
}
@media only screen and (min-width: 768px) {
  .information__blocks {
    grid-template-columns: repeat(12, 1fr);
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    padding: 0 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .information__block {
    grid-column: span 3;
  }
}
.information .button {
  text-transform: uppercase;
  font-weight: 500;
  --lh: 1.125rem;
  font-size: 0.875rem;
  letter-spacing: 1px;
  line-height: var(--lh);
  border: 1px solid var(--blue);
  color: var(--blue);
  border-radius: 2rem;
  padding: 0.5625rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .information .button {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .information .button {
    grid-column: span 3;
  }
  .information .button:link, .information .button:visited {
    transition: all 0.3s ease-in-out;
  }
  .information .button:link:hover, .information .button:link:active, .information .button:visited:hover, .information .button:visited:active {
    background-color: var(--blue);
    color: var(--offwhite);
  }
}

.attractions {
  padding: 2rem 1rem 0;
}
@media only screen and (min-width: 768px) {
  .attractions {
    padding: 4rem 1.5rem 0;
  }
}
.attractions__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media only screen and (min-width: 768px) {
  .attractions__header {
    margin-bottom: 4rem;
  }
}
.attractions__title {
  --lh: 2.1875rem;
  font-size: 1.875rem;
  line-height: var(--lh);
}
@media only screen and (min-width: 768px) {
  .attractions__title {
    --lh: 4.0625rem;
    font-size: 4.375rem;
  }
}
@media only screen and (min-width: 768px) {
  .attractions__title {
    margin-bottom: 1.25rem;
  }
}
.attractions__sub {
  text-align: center;
  --lh: 1.125rem;
  font-size: 0.875rem;
  line-height: var(--lh);
}
@media only screen and (min-width: 768px) {
  .attractions__sub {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
.attractions__listing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 0.75rem;
}
@media only screen and (min-width: 768px) {
  .attractions__listing {
    grid-template-columns: repeat(12, 1fr);
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}

.filters {
  position: -webkit-sticky;
  position: sticky;
  top: 77px;
  margin: 0 -1rem;
  padding: 1rem;
  z-index: 1;
  height: 5.25rem;
}
@media only screen and (min-width: 768px) {
  .filters {
    position: relative;
    height: auto;
    top: 0;
    margin: 0 -1.5rem;
    padding: 1.5rem;
    background-color: var(--offwhite);
  }
}
.filters__wrapper {
  border: 1px solid var(--blue);
  border-radius: 1.25rem;
  padding: 0.625rem 1.25rem;
  background-color: var(--offwhite);
}
@media only screen and (min-width: 768px) {
  .filters__wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    border: 0 none;
    padding: 0;
    background-color: transparent;
  }
}
.filters__toggle {
  text-transform: uppercase;
  font-weight: 500;
  --lh: 1.125rem;
  font-size: 0.875rem;
  letter-spacing: 1px;
  line-height: var(--lh);
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
  color: var(--blue);
}
@media only screen and (min-width: 768px) {
  .filters__toggle {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .filters__toggle {
    display: none;
  }
}
.filters__toggle svg {
  display: inline-block;
  width: 1.875rem;
  height: 1.875rem;
  color: var(--blue);
}
.filters__toggle .down,
.filters__toggle .up {
  line-height: 1.875rem;
  width: 1.875rem;
  text-align: center;
}
.filters__toggle .down {
  display: inline-block;
}
.filters__toggle .up {
  display: none;
}
.filters__toggler {
  position: absolute;
}
.filters__toggler ~ div {
  display: none;
}
@media only screen and (min-width: 768px) {
  .filters__toggler ~ div {
    display: block;
  }
}
.filters__toggler:checked ~ div {
  display: block;
}
.filters__toggler:checked + label .up {
  display: inline-block;
}
.filters__toggler:checked + label .down {
  display: none;
}
.filters h5 {
  text-transform: uppercase;
  font-weight: 500;
  --lh: 1.125rem;
  font-size: 0.875rem;
  letter-spacing: 1px;
  line-height: var(--lh);
  text-align: center;
  color: var(--blue);
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .filters h5 {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .filters h5 {
    display: none;
  }
}
.filters__set {
  --lh: 1.125rem;
  font-size: 0.875rem;
  line-height: var(--lh);
}
@media only screen and (min-width: 768px) {
  .filters__set {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
.filters__set:first-of-type {
  border-top: 1px solid var(--blue);
  padding-top: 0.6875rem;
  margin-top: 0.6875rem;
}
@media only screen and (min-width: 768px) {
  .filters__set:first-of-type {
    border-top: 0 none;
    padding: 0;
    margin: 0;
  }
}
.filters__set:not(:last-child) {
  border-bottom: 1px solid var(--blue);
  padding-bottom: 0.6875rem;
  margin-bottom: 0.6875rem;
}
@media only screen and (min-width: 768px) {
  .filters__set {
    grid-column: span 2;
  }
  .filters__set:not(:last-child) {
    border-bottom: 0 none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .filters__set.all {
    display: none;
  }
}
.filters__set.active {
  display: none;
}
@media only screen and (min-width: 768px) {
  .filters__set.active {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .filters__set.reset {
    display: none;
  }
}
.filters__setlist {
  display: none;
}
@media only screen and (min-width: 768px) {
  .filters__setlist {
    display: block;
    margin-top: 0.625rem;
    padding-left: 0.25rem;
  }
}
.filters__setlist li a {
  display: flex;
  margin-bottom: 0.5rem;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.filters__title {
  text-transform: uppercase;
  font-weight: 500;
  --lh: 1.125rem;
  font-size: 0.875rem;
  letter-spacing: 1px;
  line-height: var(--lh);
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
  color: var(--blue);
}
@media only screen and (min-width: 768px) {
  .filters__title {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
.active .filters__title {
  color: var(--darkgrey);
}
@media only screen and (min-width: 768px) {
  .filters__title {
    color: var(--darkgrey);
    flex-direction: row;
    justify-content: flex-start;
  }
  .active .filters__title {
    color: var(--blue);
  }
}
@media only screen and (min-width: 768px) {
  .filters__title .counter {
    display: none;
  }
}
.filters__title svg {
  display: inline-block;
  width: 1.875rem;
  height: 1.875rem;
}
@media only screen and (min-width: 768px) {
  .filters__title svg {
    color: var(--blue);
  }
}
.filters__index {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  background-color: var(--blue);
  color: var(--offwhite);
  border-radius: 0.5rem;
  font-size: 1rem;
  line-height: 1.25rem;
}

.attraction {
  grid-column: span 2;
  position: relative;
  padding-top: 0.75rem;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .attraction.highlight {
    grid-column: span 4;
  }
}
.attraction.feature {
  grid-column: span 4;
}
@media only screen and (min-width: 768px) {
  .attraction.feature {
    grid-column: span 6;
  }
}
.attraction:before {
  content: "";
  display: block;
  border-top: 1px solid var(--blue);
  position: absolute;
  top: 0;
  left: -1rem;
  right: -1rem;
}
@media only screen and (min-width: 768px) {
  .attraction:before {
    left: 0;
    right: -1.5rem;
  }
}
.attraction:after {
  content: "";
  display: block;
  border-right: 1px solid var(--blue);
  position: absolute;
  top: 0.75rem;
  right: -0.5rem;
  bottom: 0;
}
@media only screen and (min-width: 768px) {
  .attraction:after {
    top: 0.75rem;
    right: -0.75rem;
  }
}
.attraction.last-small:after {
  display: none;
}
@media only screen and (min-width: 768px) {
  .attraction.last-full:before {
    right: 0;
  }
}
@media only screen and (min-width: 768px) {
  .attraction.last-full:after {
    display: none;
  }
}
.attraction__img {
  margin-bottom: 0.9375rem;
}
.highlight .attraction__img {
  padding-bottom: 150%;
}
@media only screen and (min-width: 768px) {
  .highlight .attraction__img {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .attraction__img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    padding-bottom: 0;
  }
  .highlight .attraction__img {
    grid-template-columns: repeat(4, 1fr);
  }
  .feature .attraction__img {
    grid-template-columns: repeat(6, 1fr);
  }
  .attraction__img:before {
    content: "";
    display: block;
    padding-bottom: 341.5%;
  }
}
.attraction__index {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1.875rem;
  height: 1.875rem;
  background-color: var(--blue);
  color: var(--offwhite);
  border-radius: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.5rem;
}
.attraction__icons {
  display: flex;
  margin-bottom: 0.9375rem;
  -moz-column-gap: 0.3125rem;
       column-gap: 0.3125rem;
  color: var(--blue);
}
.attraction__icon {
  display: inline-block;
  width: 1.875rem;
  height: 1.875rem;
}
.attraction h3 {
  margin-bottom: 0.9375rem;
}
@media only screen and (min-width: 768px) {
  .attraction h3 {
    display: flex;
    align-items: center;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }
}
.attraction h3 svg {
  color: #d3072b;
  display: inline-block;
  height: 0.9375rem;
  width: auto;
}
@media only screen and (min-width: 768px) {
  .attraction h3 svg {
    height: 1.25rem;
  }
  .attraction h3 svg:first-of-type {
    margin-left: 0.25rem;
  }
}
.attraction__description {
  --lh: 1.125rem;
  font-size: 0.875rem;
  line-height: var(--lh);
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 768px) {
  .attraction__description {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
.feature .attraction__description {
  --lh: 1.25rem;
  font-size: 1rem;
  line-height: var(--lh);
}
@media only screen and (min-width: 768px) {
  .feature .attraction__description {
    --lh: 1.5rem;
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 768px) {
  .highlight .attraction__description {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}
.attraction__footer {
  --lh: 1.125rem;
  font-size: 0.875rem;
  line-height: var(--lh);
  display: flex;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) {
  .attraction__footer {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .attraction__footer {
    margin-top: auto;
  }
}

intro-set {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  pointer-events: none;
}
intro-set .curtains,
intro-set .backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
intro-set .curtains {
  background-color: var(--blue);
}
intro-set .backdrop {
  background-color: rgba(var(--offwhite_rgb), 1);
}

.header {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: center;
  padding: 1rem;
  color: var(--blue);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 30;
  transition: all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
  background-color: rgba(var(--offwhite_rgb), 0);
  --active: var(--blue);
}
@media only screen and (min-width: 768px) {
  .header {
    grid-template-columns: repeat(12, 1fr);
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .header {
    padding: 1rem 1.5rem;
  }
}
.header.stick, .header.open {
  background-color: var(--blue);
  color: var(--offwhite);
  --active: var(--offwhite);
}
@media only screen and (min-width: 768px) {
  .header.stick, .header.open {
    padding: 0.5rem 1.5rem;
  }
}
.header__logo {
  grid-column: span 2;
}
.header__logo svg {
  height: 2.8125rem;
  width: auto;
}
@media only screen and (min-width: 768px) {
  .header__logo svg {
    width: 80.85%;
    max-width: 9.5rem;
    height: auto;
    transition: width 0.3s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .stick .header__logo svg {
    width: 4.5rem;
  }
}
.header__star {
  width: 1.5625rem;
  margin: 0.375rem 0 auto;
}
@media only screen and (min-width: 768px) {
  .header__star {
    margin: 0.625rem 0 auto;
    transition: margin 0.3s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .stick .header__star {
    margin-top: 0.25rem;
  }
}
.header__star svg {
  width: 100%;
  height: auto;
}
.header__nav {
  display: none;
}
@media only screen and (min-width: 768px) {
  .header__nav {
    text-transform: uppercase;
    font-weight: 500;
    --lh: 1.125rem;
    font-size: 0.875rem;
    letter-spacing: 1px;
    line-height: var(--lh);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    grid-column: 6/span 7;
    color: var(--darkgrey);
    margin: 1rem 0 auto;
    transition: margin 0.3s cubic-bezier(0.65, 0, 0.35, 1);
  }
}
@media only screen and (min-width: 768px) and (min-width: 768px) {
  .header__nav {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .stick .header__nav {
    color: var(--offwhite);
    margin: 0.4375rem 0 auto;
  }
  .header__nav :link,
  .header__nav :visited {
    position: relative;
    transition: color 0.3s ease-in-out;
  }
  .header__nav :link:before,
  .header__nav :visited:before {
    content: "";
    position: absolute;
    top: 100%;
    width: 100%;
    height: 2px;
    background-color: var(--active);
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
  }
  .header__nav :link:hover, .header__nav :link:active, .header__nav :link.active,
  .header__nav :visited:hover,
  .header__nav :visited:active,
  .header__nav :visited.active {
    color: var(--active);
  }
  .header__nav :link:hover:before, .header__nav :link:active:before, .header__nav :link.active:before,
  .header__nav :visited:hover:before,
  .header__nav :visited:active:before,
  .header__nav :visited.active:before {
    transform: scaleX(1);
  }
}
@media only screen and (max-width: 767px) {
  .header__overlay-trigger {
    width: 2.875rem;
    height: 1rem;
    justify-self: end;
    position: relative;
    cursor: pointer;
  }
  .header__overlay-trigger svg {
    pointer-events: none;
    position: relative;
    transform: translateY(-1rem);
  }
  .header__overlay-trigger rect {
    transition: all 0.3s;
    position: relative;
    transform-origin: 50%;
  }
  .header__overlay-trigger.open rect:nth-child(1) {
    animation: ease 0.7s top-o forwards;
  }
  .header__overlay-trigger.open rect:nth-child(2) {
    animation: ease 0.7s mid-o forwards;
  }
  .header__overlay-trigger.open rect:nth-child(3) {
    animation: ease 0.7s btm-o forwards;
  }
  .header__overlay-trigger:not(.open):not(.closed) rect:nth-child(1) {
    animation: ease 0.7s top-c forwards;
  }
  .header__overlay-trigger:not(.open):not(.closed) rect:nth-child(2) {
    animation: ease 0.7s mid-c forwards;
  }
  .header__overlay-trigger:not(.open):not(.closed) rect:nth-child(3) {
    animation: ease 0.7s btm-c forwards;
  }
}
@media only screen and (min-width: 768px) {
  .header__overlay-trigger {
    display: none;
  }
}

@keyframes top-o {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(0) translateY(7px);
  }
  100% {
    transform: rotate(45deg) translateY(7px);
  }
}
@keyframes btm-o {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(0) translateY(-7px);
  }
  100% {
    transform: rotate(135deg) translateY(-7px);
  }
}
@keyframes mid-o {
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes top-c {
  0% {
    transform: rotate(45deg) translateY(7px);
  }
  50% {
    transform: rotate(0deg) translateY(7px);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes btm-c {
  0% {
    transform: rotate(135deg) translateY(-7px);
  }
  50% {
    transform: rotate(0) translateY(-7px);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes mid-c {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
overlay-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  background-color: var(--blue);
  color: var(--offwhite);
  z-index: 25;
  padding: 9.5625rem 1rem 1.25rem;
  flex-direction: column;
  justify-content: flex-end;
}
overlay-nav.open {
  transform: translateY(0%);
}
overlay-nav.open nav a {
  transition: all 0.3s ease-in-out var(--delay);
  opacity: 1;
}
overlay-nav.open nav a:after {
  transition: all 0.3s ease-in-out var(--delay);
  transform: scaleX(1);
}
overlay-nav.open form {
  transition: all 0.3s ease-in-out var(--delay);
  opacity: 1;
}
overlay-nav:not(.open):not(.closed) nav a {
  transition: all 0.1s ease-in-out 0s;
}
overlay-nav:not(.open):not(.closed) nav a:after {
  transition: all 0.1s ease-in-out 0s;
}
overlay-nav:not(.open):not(.closed) form {
  transition: all 0.1s ease-in-out 0s;
}
@media only screen and (min-width: 768px) {
  overlay-nav {
    display: none;
  }
}
overlay-nav nav {
  text-transform: uppercase;
  font-weight: 500;
  --lh: 1.25rem;
  font-size: 1.125rem;
  letter-spacing: 1px;
  line-height: var(--lh);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media only screen and (min-width: 768px) {
  overlay-nav nav {
    --lh: 1.625rem;
    font-size: 1.5rem;
  }
}
overlay-nav nav a {
  padding: 0.625rem 0;
  opacity: 0;
  position: relative;
}
overlay-nav nav a:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--offwhite);
  transform: scaleX(0);
  transform-origin: 0;
}
overlay-nav form {
  --lh: 1.125rem;
  font-size: 0.875rem;
  line-height: var(--lh);
  opacity: 0;
}
@media only screen and (min-width: 768px) {
  overlay-nav form {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
overlay-nav form h3 {
  text-transform: uppercase;
  font-weight: 500;
  --lh: 1.25rem;
  font-size: 1.125rem;
  letter-spacing: 1px;
  line-height: var(--lh);
  padding: 0.625rem 0;
}
@media only screen and (min-width: 768px) {
  overlay-nav form h3 {
    --lh: 1.625rem;
    font-size: 1.5rem;
  }
}
overlay-nav form p {
  margin-bottom: 2rem;
}
overlay-nav form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid;
  display: flex;
  justify-content: space-between;
}
overlay-nav form input,
overlay-nav form button {
  padding: 3px 0;
}
overlay-nav form input {
  --lh: 1.125rem;
  font-size: 0.875rem;
  line-height: var(--lh);
  flex-grow: 1;
  padding: 3px 0.5rem 3px 0.25rem;
}
@media only screen and (min-width: 768px) {
  overlay-nav form input {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
overlay-nav form input:focus {
  background-color: rgba(var(--offwhite_rgb), 0.2);
  outline: none;
}
overlay-nav form input::-moz-placeholder {
  color: var(--white);
}
overlay-nav form input::placeholder {
  color: var(--white);
}
overlay-nav form button {
  text-transform: uppercase;
  font-weight: 500;
  --lh: 1.125rem;
  font-size: 0.875rem;
  letter-spacing: 1px;
  line-height: var(--lh);
  padding: 3px 0 3px 0.5rem;
}
@media only screen and (min-width: 768px) {
  overlay-nav form button {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}

.footer {
  color: var(--offwhite);
  background-color: var(--blue);
  padding: 0 1rem;
}
@media only screen and (min-width: 768px) {
  .footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    padding: 0 1.5rem;
  }
}
@media only screen and (min-width: 768px) and (min-width: 768px) {
  .footer {
    grid-template-columns: repeat(12, 1fr);
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .footer :link:not(.button),
  .footer :visited:not(.button) {
    position: relative;
    transition: color 0.3s ease-in-out;
  }
  .footer :link:not(.button):before,
  .footer :visited:not(.button):before {
    content: "";
    position: absolute;
    top: 100%;
    width: 100%;
    height: 2px;
    background-color: var(--offwhite);
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
  }
  .footer :link:not(.button):hover:before, .footer :link:not(.button):active:before,
  .footer :visited:not(.button):hover:before,
  .footer :visited:not(.button):active:before {
    transform: scaleX(1);
  }
}
.footer__header {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 3.5rem;
  padding: 1.25rem 0 2.5rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .footer__header {
    grid-column: span 4;
    grid-template-rows: 14.625rem -webkit-min-content;
    grid-template-rows: 14.625rem min-content;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    row-gap: 0;
    padding: 2.5rem 0;
  }
}
.footer__header:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: -1rem;
  right: -1rem;
  border-top: 1px solid;
}
@media only screen and (min-width: 768px) {
  .footer__header:after {
    left: -1.5rem;
    right: -0.75rem;
  }
}
.footer__logo {
  grid-column: span 2;
}
.footer__logo svg {
  height: 2.8125rem;
  width: auto;
}
@media only screen and (min-width: 768px) {
  .footer__logo svg {
    width: 80.85%;
    max-width: 9.5rem;
    height: auto;
    transition: width 0.3s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .stick .footer__logo svg {
    width: 4.5rem;
  }
}
.footer__star {
  width: 1.5625rem;
  margin: 0.375rem 0 auto;
}
@media only screen and (min-width: 768px) {
  .footer__star {
    margin: 0.625rem 0 auto;
    transition: margin 0.3s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .stick .footer__star {
    margin-top: 0.25rem;
  }
}
.footer__star svg {
  width: 100%;
  height: auto;
}
.footer__nav {
  grid-column: span 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .footer__nav {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    justify-items: start;
  }
}
.footer__nav-item {
  text-transform: uppercase;
  font-weight: 500;
  --lh: 1.125rem;
  font-size: 0.875rem;
  letter-spacing: 1px;
  line-height: var(--lh);
  grid-column-end: span 2;
}
@media only screen and (min-width: 768px) {
  .footer__nav-item {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
.footer__nav-item:nth-child(odd) {
  grid-column-start: 1;
}
.footer__nav-item:nth-child(even) {
  grid-column-start: 3;
}
.footer__actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 2.5rem;
  padding: 2.5rem 0;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .footer__actions {
    grid-column: 5/span 8;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: 14.625rem -webkit-min-content -webkit-min-content;
    grid-template-rows: 14.625rem min-content min-content;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    row-gap: 0;
  }
}
.footer__actions:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: -1rem;
  right: -1rem;
  border-top: 1px solid;
}
@media only screen and (min-width: 768px) {
  .footer__actions:after {
    left: -0.75rem;
    right: -1.5rem;
  }
}
.footer__actions h3 {
  text-transform: uppercase;
  font-weight: 500;
  --lh: 1.125rem;
  font-size: 0.875rem;
  letter-spacing: 1px;
  line-height: var(--lh);
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .footer__actions h3 {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
.footer__actions p:not(:last-child) {
  margin-bottom: var(--lh);
}
.footer__newsletter {
  grid-column: span 4;
}
@media only screen and (min-width: 768px) {
  .footer__newsletter {
    grid-column: span 8;
  }
}
@media only screen and (min-width: 768px) {
  .footer .footer-newsletter-component__newsletter-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    align-items: end;
  }
}
.footer .footer-newsletter-component__newsletter-form p:last-of-type {
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .footer .footer-newsletter-component__newsletter-form p:last-of-type {
    margin-bottom: 0;
  }
}
.footer .footer-newsletter-component__newsletter-form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid;
  display: flex;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) {
  .footer .footer-newsletter-component__newsletter-form fieldset {
    grid-column: span 3;
  }
}
.footer .footer-newsletter-component__newsletter-form input,
.footer .footer-newsletter-component__newsletter-form button {
  padding: 3px 0;
}
.footer .footer-newsletter-component__newsletter-form input {
  --lh: 1.125rem;
  font-size: 0.875rem;
  line-height: var(--lh);
  flex-grow: 1;
  padding: 3px 0.5rem 3px 0;
}
@media only screen and (min-width: 768px) {
  .footer .footer-newsletter-component__newsletter-form input {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
.footer .footer-newsletter-component__newsletter-form input:focus {
  background-color: rgba(var(--offwhite_rgb), 0.2);
  outline: none;
}
.footer .footer-newsletter-component__newsletter-form input::-moz-placeholder {
  color: var(--white);
}
.footer .footer-newsletter-component__newsletter-form input::placeholder {
  color: var(--white);
}
.footer .footer-newsletter-component__newsletter-form button {
  text-transform: uppercase;
  font-weight: 500;
  --lh: 1.125rem;
  font-size: 0.875rem;
  letter-spacing: 1px;
  line-height: var(--lh);
  padding: 3px 0 3px 0.5rem;
}
@media only screen and (min-width: 768px) {
  .footer .footer-newsletter-component__newsletter-form button {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
.footer__action-block {
  grid-column: span 2;
}
@media only screen and (min-width: 768px) {
  .footer__action-block:nth-last-child(-n+2) {
    grid-column: span 4;
    margin-top: 1.5rem;
  }
}
.footer__action-block .button {
  text-transform: uppercase;
  font-weight: 500;
  --lh: 1.125rem;
  font-size: 0.875rem;
  letter-spacing: 1px;
  line-height: var(--lh);
  border: 1px solid var(--offwhite);
  border-radius: 2rem;
  padding: 0.5625rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .footer__action-block .button {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .footer__action-block .button:link, .footer__action-block .button:visited {
    transition: all 0.3s ease-in-out;
  }
  .footer__action-block .button:link:hover, .footer__action-block .button:link:active, .footer__action-block .button:visited:hover, .footer__action-block .button:visited:active {
    background-color: var(--offwhite);
    color: var(--blue);
  }
}
.footer__properties {
  display: block;
  -moz-columns: 2;
       columns: 2;
  padding: 1rem 0 1.25rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .footer__properties {
    grid-column: span 12;
    -moz-columns: initial;
         columns: initial;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}
.footer__properties:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: -1rem;
  right: -1rem;
  border-top: 1px solid;
}
@media only screen and (min-width: 768px) {
  .footer__properties:after {
    left: -1.5rem;
    right: -1.5rem;
  }
}
.footer__properties .wrapper {
  display: flex;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .footer__properties .wrapper {
    justify-content: space-between;
  }
}
.footer__properties .item {
  white-space: nowrap;
  display: flex;
}
.footer__property {
  text-transform: uppercase;
  font-weight: 500;
  --lh: 1.125rem;
  font-size: 0.875rem;
  letter-spacing: 1px;
  line-height: var(--lh);
  display: block;
  padding: 0 1rem;
}
@media only screen and (min-width: 768px) {
  .footer__property {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
.footer__property svg {
  width: 0.6875rem;
  height: 0.75rem;
  display: inline-block;
  margin-left: 0.25rem;
}
.footer__notices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 0.5rem;
  padding: 1rem 0;
}
@media only screen and (min-width: 768px) {
  .footer__notices {
    grid-template-columns: repeat(12, 1fr);
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .footer__notices {
    grid-column: span 12;
  }
}
.footer__notice {
  --lh: 1.125rem;
  font-size: 0.875rem;
  line-height: var(--lh);
  grid-column-end: span 2;
}
@media only screen and (min-width: 768px) {
  .footer__notice {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer__notice:nth-child(odd) {
    grid-column-start: 1;
  }
  .footer__notice:nth-child(even) {
    grid-column-start: 3;
  }
}
@media only screen and (min-width: 768px) {
  .footer__notice {
    grid-column: span 2;
  }
  .footer__notice:first-child {
    grid-column: span 4;
  }
}

.article {
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1.5rem;
}
.article:first-child {
  padding-top: 6rem;
}
@media only screen and (min-width: 768px) {
  .article {
    padding: 0 3.5rem;
  }
}
@media only screen and (min-width: 1440px) {
  .article {
    padding: 0 4.5rem;
    grid-template-columns: repeat(16, 1fr);
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    align-items: start;
  }
  .article:first-child {
    padding-top: 3rem;
  }
}
.article__media {
  grid-column: span 4;
  grid-row: 2;
}
@media only screen and (min-width: 1440px) {
  .article__media {
    grid-column: 1/span 7;
    grid-row: 1;
    position: relative;
    position: -webkit-sticky;
    position: sticky;
    top: 8rem;
  }
  .media-text-product .article__media {
    grid-column: 1/span 7;
  }
  .text-media-product .article__media {
    grid-column: 7/span 7;
  }
  .product-media-text .article__media {
    grid-column: 4/span 7;
  }
  .product-text-media .article__media {
    grid-column: 5/span 8;
    grid-row: 2;
  }
}
.article__media-wrapper .ratio-box:not(:last-child) {
  margin-bottom: 1rem;
}
@media only screen and (min-width: 1440px) {
  .article__media-wrapper .ratio-box:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}
.article__text {
  grid-column: span 4;
  grid-row: 1;
}
@media only screen and (min-width: 1440px) {
  .article__text {
    grid-column: 9/span 6;
    max-width: 25rem;
    position: -webkit-sticky;
    position: sticky;
    top: 8rem;
  }
  .media-text-product .article__text {
    grid-column: 9/span 6;
  }
  .text-media-product .article__text {
    grid-column: 1/span 6;
  }
  .product-media-text .article__text {
    grid-column: 11/span 6;
    justify-self: end;
  }
  .product-text-media .article__text {
    grid-column: 5/span 8;
    max-width: none;
    position: static;
    top: revert;
  }
}
.article__sub-heading {
  --lh: 1.125rem;
  font-size: 0.875rem;
  line-height: var(--lh);
  display: inline-block;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .article__sub-heading {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
.article__heading {
  --lh: 1.5625rem;
  font-size: 1.25rem;
  line-height: var(--lh);
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .article__heading {
    --lh: 2.1875rem;
    font-size: 1.875rem;
  }
}
.article__copy {
  --lh: 1.25rem;
  font-size: 1rem;
  line-height: var(--lh);
}
@media only screen and (min-width: 768px) {
  .article__copy {
    --lh: 1.5rem;
    font-size: 1.125rem;
  }
}
.article__copy:not(:last-child) {
  margin-bottom: 2rem;
}
.article__copy p:not(:last-child) {
  margin-bottom: var(--mb);
}
.article__copy h1, .article__copy h2, .article__copy h3, .article__copy h4, .article__copy h5, .article__copy h6 {
  margin: calc(var(--mb) * 1.5) 0 var(--mb);
}
.article__copy h1 {
  --lh: 2.1875rem;
  font-size: 1.875rem;
  line-height: var(--lh);
}
@media only screen and (min-width: 768px) {
  .article__copy h1 {
    --lh: 4.0625rem;
    font-size: 4.375rem;
  }
}
.article__copy h2 {
  --lh: 1.5625rem;
  font-size: 1.25rem;
  line-height: var(--lh);
}
@media only screen and (min-width: 768px) {
  .article__copy h2 {
    --lh: 2.1875rem;
    font-size: 1.875rem;
  }
}
.article__copy h3 {
  text-transform: uppercase;
  font-weight: 500;
  --lh: 1.25rem;
  font-size: 1.125rem;
  letter-spacing: 1px;
  line-height: var(--lh);
}
@media only screen and (min-width: 768px) {
  .article__copy h3 {
    --lh: 1.625rem;
    font-size: 1.5rem;
  }
}
.article__copy h4 {
  text-transform: uppercase;
  font-weight: 500;
  --lh: 1.125rem;
  font-size: 0.875rem;
  letter-spacing: 1px;
  line-height: var(--lh);
}
@media only screen and (min-width: 768px) {
  .article__copy h4 {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
.article__copy h5 {
  --lh: 1.125rem;
  font-size: 0.875rem;
  line-height: var(--lh);
}
@media only screen and (min-width: 768px) {
  .article__copy h5 {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
.article__copy h6 {
  text-transform: uppercase;
  --lh: 1.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.78px;
  line-height: var(--lh);
}
.article__copy ul {
  list-style: disc;
}
.article__copy ol {
  list-style: decimal;
}
.article__copy ul, .article__copy ol {
  margin-bottom: var(--mb);
}
@media only screen and (max-width: 1439px) {
  .article__copy ul, .article__copy ol {
    list-style-position: inside;
  }
}
.article__copy ul li, .article__copy ol li {
  margin-bottom: calc(var(--mb) * 0.5);
}
.article__product {
  grid-column: span 2;
  grid-row: 3;
}
@media only screen and (min-width: 1440px) {
  .article__product {
    grid-column: 15/span 2;
    grid-row: 1;
    margin-left: -1rem;
    align-self: center;
    position: -webkit-sticky;
    position: sticky;
    top: 8rem;
  }
  .media-text-product .article__product {
    grid-column: 15/span 2;
  }
  .text-media-product .article__product {
    grid-column: 15/span 2;
  }
  .product-media-text .article__product {
    grid-column: 1/span 2;
    margin-left: 0;
    margin-right: -1rem;
  }
  .product-text-media .article__product {
    grid-row: 2;
    grid-column: 1/span 2;
    margin-left: 0;
    margin-right: -1rem;
  }
}
.article__product .button-small {
  text-transform: uppercase;
  font-weight: 500;
  --lh: 1.125rem;
  font-size: 0.875rem;
  letter-spacing: 1px;
  line-height: var(--lh);
  display: inline-block;
  padding: 0.5rem;
  border-radius: 1.625rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  width: 100%;
  margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
  .article__product .button-small {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
.article__product .button-small:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--black);
  border-radius: 1.625rem;
}
@media only screen and (min-width: 768px) {
  .article__product .button-small {
    padding: 0.6875rem 0.75rem 0.75rem;
    transition: color 0.2s ease;
  }
  .article__product .button-small:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--black);
    transition: width 0.2s ease;
    transform-origin: 1.625rem 0;
  }
  .article__product .button-small:hover, .article__product .button-small:active {
    cursor: pointer;
    color: var(--bbg, var(--white));
  }
  .article__product .button-small:hover:before, .article__product .button-small:active:before {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .article__product .button-small {
    padding: 0.6875rem 0.875rem 0.625rem;
  }
}
.article__product-img {
  margin-bottom: 0.5rem;
  display: block;
}
.article__product-sub-heading {
  text-transform: uppercase;
  --lh: 1.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.78px;
  line-height: var(--lh);
  color: var(--grey);
}
.article__product-heading {
  --lh: 1.125rem;
  font-size: 0.875rem;
  line-height: var(--lh);
}
@media only screen and (min-width: 768px) {
  .article__product-heading {
    --lh: 1.25rem;
    font-size: 1rem;
  }
}
.article__product-heading :link, .article__product-heading :visited {
  text-decoration: none;
}
.article__product-price {
  text-transform: uppercase;
  --lh: 1.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.78px;
  line-height: var(--lh);
}

.article-gallery {
  display: block;
}
.article-gallery__primary {
  margin-bottom: 0.75rem;
}
.article-gallery__primary:after {
  content: "flickity";
  display: none;
}
@media only screen and (min-width: 1440px) {
  .article-gallery__primary:after {
    content: "";
  }
}
@media only screen and (min-width: 1440px) {
  .article-gallery__primary {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
}
.article-gallery__primary-slide {
  width: 100%;
  margin-right: 1rem;
}
@media only screen and (min-width: 1440px) {
  .article-gallery__primary-slide {
    margin-right: 0;
  }
}
.article-gallery__nav:after {
  content: "flickity";
  display: none;
}
@media only screen and (min-width: 1440px) {
  .article-gallery__nav:after {
    content: "";
  }
}
@media only screen and (min-width: 1440px) {
  .article-gallery__nav {
    display: none;
  }
}
.article-gallery__nav-slide {
  width: calc((100% - 3rem) / 4);
}
.article-gallery__nav-slide:not(:last-child) {
  margin-right: 1rem;
}
