<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
html {
  box-sizing: border-box;
  background-color: #f5f4f2;
}
@media only screen and (min-width: 320px) {
  html {
    font-size: 53%;
  }
}
@media only screen and (min-width: 720px) {
  html {
    font-size: 56%;
  }
}
@media only screen and (min-width: 1000px) {
  html {
    font-size: 59%;
  }
}
@media only screen and (min-width: 1281px) {
  html {
    font-size: 62.5%;
  }
}
@media only screen and (min-width: 1281px) {
  html {
    font-size: 66.666%;
  }
}

* {
  font-family: Source Sans Pro, Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

.border-error {
  border-color: #e55a20;
  border-width: 2px;
}

a, abbr, span, u {
  font: inherit;
  color: inherit;
}

ul {
  list-style-type: square;
}

hr {
  margin: 3rem 0;
  background-color: #ccc;
  height: 1px;
  border: none;
  outline-style: none;
}

.border-error input {
  border-color: #e55a20;
  border-style: solid;
}

ul.errorlist {
  margin: 0;
  margin-bottom: 0.5rem;
  padding: 1rem;
  background-color: rgba(220, 20, 60, 0.05);
  border: none;
  border-color: crimson;
  border-width: 0.2rem;
  border-style: solid;
  border-radius: 1rem;
}
ul.errorlist li {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 1.22rem;
  text-transform: uppercase;
  color: crimson;
  padding: 0;
  margin: 0;
}

a.section {
  padding: 1.5rem 3rem;
}

@media only screen and (min-width: 320px) {
  body &gt; header {
    width: 100%;
    height: 7rem;
    position: sticky;
    top: 0;
    z-index: 500;
  }
  body &gt; header &gt; div.laptop-screens {
    display: none;
  }
  body &gt; header &gt; div.tablet-screens {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    background-color: #32312E;
    transition: background-color 0.2s linear;
  }
  body &gt; header &gt; div.tablet-screens nav &gt; p, body &gt; header &gt; div.tablet-screens nav &gt; p &gt; a, body &gt; header &gt; div.tablet-screens nav &gt; ul &gt; li {
    line-height: 7rem;
  }
  body &gt; header &gt; div.tablet-screens p {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }
  body &gt; header &gt; div.tablet-screens figure {
    margin-right: auto;
  }
  body &gt; header &gt; div.tablet-screens figure img {
    height: 7rem;
    cursor: pointer;
  }
  body &gt; header &gt; div.tablet-screens canvas {
    width: 7rem;
    height: 7rem;
  }
  body &gt; header &gt; div.tablet-screens nav.cart {
    margin-right: 2rem;
    flex-shrink: 2;
    display: flex;
    align-items: center;
  }
  body &gt; header &gt; div.tablet-screens nav.cart p.empty {
    background-color: #394336;
    opacity: 0.6;
  }
  body &gt; header &gt; div.tablet-screens nav.cart p {
    background-color: #2A5E3E;
    border-radius: 0.4rem;
    line-height: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    padding-left: 1rem;
    padding-right: 0.5rem;
  }
  body &gt; header &gt; div.tablet-screens nav.cart p img {
    display: inline-block;
    width: 3rem;
    height: 3rem;
  }
  body &gt; header &gt; div.tablet-screens nav.cart p span {
    display: inline-block;
    height: 3rem;
    width: 3rem;
    line-height: 3rem;
    text-align: center;
    color: white;
  }
  body &gt; header &gt; div.tablet-screens nav.main figure.nav-main-menu-icon {
    margin: 0;
    width: 3rem;
    height: 3rem;
    position: relative;
    display: block;
    cursor: pointer;
    z-index: 0;
  }
  body &gt; header &gt; div.tablet-screens nav.main figure.nav-main-menu-icon span {
    background-color: #ceccc6;
    display: block;
    position: absolute;
    width: 17px;
    height: 2px;
    transform-origin: center;
    animation-duration: 0.15s;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
  }
  body &gt; header &gt; div.tablet-screens nav.main figure.nav-main-menu-icon span.top_rect {
    left: 5px;
    top: 7.5px;
  }
  body &gt; header &gt; div.tablet-screens nav.main figure.nav-main-menu-icon span.top_rect.to_close {
    animation-name: anim_top_rect_to_close;
  }
  body &gt; header &gt; div.tablet-screens nav.main figure.nav-main-menu-icon span.top_rect.to_open {
    animation-name: anim_top_rect_to_open;
  }
  body &gt; header &gt; div.tablet-screens nav.main figure.nav-main-menu-icon span.mid_rect {
    left: 5px;
    top: 12.5px;
  }
  body &gt; header &gt; div.tablet-screens nav.main figure.nav-main-menu-icon span.mid_rect.to_close {
    animation-name: anim_mid_rect_to_close;
  }
  body &gt; header &gt; div.tablet-screens nav.main figure.nav-main-menu-icon span.mid_rect.to_open {
    animation-name: anim_mid_rect_to_open;
  }
  body &gt; header &gt; div.tablet-screens nav.main figure.nav-main-menu-icon span.bot_rect {
    left: 5px;
    top: 17.5px;
  }
  body &gt; header &gt; div.tablet-screens nav.main figure.nav-main-menu-icon span.bot_rect.to_close {
    animation-name: anim_bot_rect_to_close;
  }
  body &gt; header &gt; div.tablet-screens nav.main figure.nav-main-menu-icon span.bot_rect.to_open {
    animation-name: anim_bot_rect_to_open;
  }
  @keyframes anim_top_rect_to_open {
    0% {
      transform: rotate(45deg);
      top: 12.5px;
    }
    50% {
      transform: rotate(0deg);
      top: 12.5px;
    }
    100% {
      transform: rotate(0deg);
      top: 7.5px;
    }
  }
  @keyframes anim_bot_rect_to_open {
    0% {
      transform: rotate(45deg);
      top: 12.5px;
    }
    50% {
      transform: rotate(0deg);
      top: 12.5px;
    }
    100% {
      transform: rotate(0deg);
      top: 17.5px;
    }
  }
  @keyframes anim_mid_rect_to_open {
    0% {
      transform: rotate(-45deg);
    }
    50% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }
  @keyframes anim_top_rect_to_close {
    0% {
      top: 7.5px;
      transform: rotate(0deg);
    }
    50% {
      top: 12.5px;
      transform: rotate(0deg);
    }
    100% {
      top: 12.5px;
      transform: rotate(45deg);
    }
  }
  @keyframes anim_bot_rect_to_close {
    0% {
      top: 17.5px;
      transform: rotate(0deg);
    }
    50% {
      top: 12.5px;
      transform: rotate(0deg);
    }
    100% {
      top: 12.5px;
      transform: rotate(45deg);
    }
  }
  @keyframes anim_mid_rect_to_close {
    0% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(-45deg);
    }
  }
  body &gt; header &gt; div.tablet-screens nav.main, body &gt; header &gt; div.tablet-screens nav.cart {
    display: flex;
    align-items: center;
    margin-top: auto;
    margin-bottom: auto;
  }
  body &gt; header &gt; div.tablet-screens nav.main div, body &gt; header &gt; div.tablet-screens nav.cart div {
    display: none;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }
  body &gt; header &gt; div.tablet-screens nav.main div ul, body &gt; header &gt; div.tablet-screens nav.cart div ul {
    transition: margin-left 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
    box-sizing: border-box;
    position: fixed;
    display: block;
    width: 24rem;
    margin-left: -24rem;
    height: 100%;
    overflow: auto;
    background-color: #32312E;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 1rem;
    list-style-type: none;
  }
  body &gt; header &gt; div.tablet-screens nav.main div ul li, body &gt; header &gt; div.tablet-screens nav.cart div ul li {
    display: flex;
    flex-direction: row;
    flex-basis: 100%;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  body &gt; header &gt; div.tablet-screens nav.main div ul li::last, body &gt; header &gt; div.tablet-screens nav.cart div ul li::last {
    padding-bottom: 0px;
  }
  body &gt; header &gt; div.tablet-screens nav.main div ul li hr, body &gt; header &gt; div.tablet-screens nav.cart div ul li hr {
    background-color: #3b3b3b;
    margin: 0px 0px 2rem 0px;
    height: 2px;
    flex-grow: 1;
    width: 100%;
  }
  body &gt; header &gt; div.tablet-screens nav.main div ul li a, body &gt; header &gt; div.tablet-screens nav.cart div ul li a {
    display: flex;
    align-items: center;
    width: 100%;
  }
  body &gt; header &gt; div.tablet-screens nav.main div ul li a img, body &gt; header &gt; div.tablet-screens nav.cart div ul li a img {
    width: 3rem;
    height: 3rem;
    margin-right: 1rem;
  }
  body &gt; header &gt; div.tablet-screens nav.main div ul li:nth-child(1), body &gt; header &gt; div.tablet-screens nav.cart div ul li:nth-child(1) {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  body &gt; header &gt; div.tablet-screens nav.main div ul li:nth-child(1) a img, body &gt; header &gt; div.tablet-screens nav.cart div ul li:nth-child(1) a img {
    width: auto;
    height: 7rem;
  }
  body &gt; header &gt; div.tablet-screens li, body &gt; header &gt; div.tablet-screens a, body &gt; header &gt; div.tablet-screens p {
    color: #CECCC6;
    font-size: 1.92rem;
    line-height: 3rem;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
  }
}
@media only screen and (min-width: 1000px) {
  body &gt; header {
    width: 100%;
    height: 8rem;
    position: sticky;
    top: 0;
  }
  body &gt; header &gt; div.tablet-screens {
    display: none;
  }
  body &gt; header &gt; div.laptop-screens {
    box-sizing: border-box;
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
    height: 100%;
    background-color: #32312E;
    display: grid;
    grid-template-columns: 1fr max-content max-content;
    align-items: center;
    gap: 1.5rem;
  }
  body &gt; header &gt; div.laptop-screens li, body &gt; header &gt; div.laptop-screens a, body &gt; header &gt; div.laptop-screens p {
    color: #CECCC6;
    font-size: 1.92rem;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
  }
  body &gt; header &gt; div.laptop-screens nav.home {
    display: block;
    height: 8rem;
    grid-column: 1;
    grid-row: 1;
  }
  body &gt; header &gt; div.laptop-screens nav.home &gt; a {
    z-index: 40;
    display: inline-block;
  }
  body &gt; header &gt; div.laptop-screens nav.home &gt; a figure {
    display: block;
    height: 8rem;
  }
  body &gt; header &gt; div.laptop-screens nav.home &gt; a figure img {
    display: block;
    height: 8rem;
  }
  body &gt; header &gt; div.laptop-screens nav.main {
    grid-column: 1/-1;
    grid-row: 1;
  }
  body &gt; header &gt; div.laptop-screens nav.main ul {
    display: flex;
    justify-content: center;
    gap: 3rem;
  }
  body &gt; header &gt; div.laptop-screens nav.main ul li {
    z-index: 18;
  }
  body &gt; header &gt; div.laptop-screens nav.main ul li a {
    display: flex;
    align-items: center;
    height: 8rem;
  }
  body &gt; header &gt; div.laptop-screens nav.cart {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  body &gt; header &gt; div.laptop-screens nav.cart p.empty {
    background-color: #394336;
    opacity: 0.6;
  }
  body &gt; header &gt; div.laptop-screens nav.cart p {
    background-color: #2A5E3E;
    border-radius: 0.4rem;
    line-height: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    padding-left: 1rem;
    padding-right: 0.5rem;
  }
  body &gt; header &gt; div.laptop-screens nav.cart p img {
    display: inline-block;
    width: 3rem;
    height: 3rem;
  }
  body &gt; header &gt; div.laptop-screens nav.cart p span {
    display: inline-block;
    height: 3rem;
    width: 3rem;
    line-height: 3rem;
    text-align: center;
    color: white;
  }
  body &gt; header &gt; div.laptop-screens p.account {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    height: 8rem;
    align-items: center;
  }
  body &gt; header &gt; div.laptop-screens p.account a {
    height: 8rem;
    display: flex;
    align-items: center;
  }
  body &gt; header &gt; div.laptop-screens nav.account {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    height: 8rem;
    align-items: center;
  }
  body &gt; header &gt; div.laptop-screens nav.account p {
    height: 4rem;
    line-height: 4rem;
  }
  body &gt; header &gt; div.laptop-screens nav.account p img {
    display: inline-block;
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    margin: 0 1.5rem;
  }
  body &gt; header &gt; div.laptop-screens li {
    list-style-type: none;
    display: inline;
    margin: 0;
  }
  body &gt; header &gt; div.laptop-screens figure a {
    cursor: default;
  }
  body &gt; header &gt; div.laptop-screens figure img {
    height: 8rem;
    cursor: pointer;
  }
  body &gt; header &gt; div.laptop-screens p {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }
  body &gt; header &gt; div.laptop-screens nav.account div {
    display: none;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    transition: opacity 0.15s linear;
  }
  body &gt; header &gt; div.laptop-screens nav.account div ul {
    background-color: #1F1E1C;
    position: absolute;
    top: 8rem;
    right: 2rem;
    padding: 1rem;
  }
  body &gt; header &gt; div.laptop-screens nav.account div ul li {
    display: flex;
    align-items: center;
    padding: 1rem;
    height: 3rem;
    line-height: 3rem;
  }
  body &gt; header &gt; div.laptop-screens nav.account div ul li a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  body &gt; header &gt; div.laptop-screens nav.account div ul li a img {
    margin-right: 1rem;
    width: 3rem;
    height: 3rem;
  }
  body &gt; header &gt; div.laptop-screens nav.account div ul li hr {
    background-color: #3b3b3b;
    margin: 0px 0px 2rem 0px;
    height: 2px;
  }
}
body &gt; section#promo, body &gt; section.promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0 1.5rem;
  color: white;
  background-color: black;
}
body &gt; section#promo a, body &gt; section.promo a {
  width: 100%;
  max-width: 120rem;
  margin: 0;
  padding: 0;
  padding-top: 1.5rem;
  padding-bottom: 1.1rem;
  display: grid;
  justify-items: center;
  align-items: center;
}
body &gt; section#promo a article, body &gt; section.promo a article {
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  font-family: "Knockout 51 A", "Knockout 51 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 2rem;
  text-align: center;
}
body &gt; section#promo a aside, body &gt; section.promo a aside {
  grid-column: 1;
  grid-row: 2;
  justify-self: center;
  font-family: "Knockout 51 A", "Knockout 51 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 1.4rem;
  text-transform: uppercase;
  line-height: 2rem;
  text-align: center;
  color: #cccccc;
}
body &gt; section#messages {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  padding-top: 9rem;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.15s linear;
}
body &gt; section#messages div {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 68rem;
  width: 100%;
  height: fit-content;
  position: relative;
  box-sizing: border-box;
  padding: 3.6rem;
  background-color: #f6f5f2;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.5);
}
body &gt; section#messages div img.close-icon {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
body &gt; section#messages div ul {
  width: 100%;
}
body &gt; section#messages div ul li {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
  margin: 0;
  padding: 0;
  padding-left: 1.5rem;
  list-style: none;
}
body &gt; section#messages div ul li::before {
  content: "▬";
  position: absolute;
  left: 3rem;
}
body &gt; section#messages div ul li.debug::before {
  color: goldenrod;
}
body &gt; section#messages div ul li.info::before {
  color: skyblue;
}
body &gt; section#messages div ul li.success::before {
  color: limegreen;
}
body &gt; section#messages div ul li.warning::before {
  color: orange;
}
body &gt; section#messages div ul li.error::before {
  color: red;
}
body &gt; section#messages div ul li strong {
  color: black;
  font: inherit;
  font-weight: bold;
}
body &gt; section#messages div ul li .underline {
  text-decoration: underline;
}
body &gt; footer {
  background-color: #373633;
}
body &gt; footer li, body &gt; footer span, body &gt; footer a, body &gt; footer p, body &gt; footer h2 {
  color: hsl(45, 7.55%, 79.22%);
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  line-height: 3rem;
  font-size: 1.8rem;
}
body &gt; footer section.util form {
  display: table;
  text-align: left;
  padding: 0.2rem 1rem 0.2rem 0.25rem;
  border-radius: 0.5rem;
  cursor: pointer;
  border: 1px solid #CECCC6;
}
@media only screen and (min-width: 320px) {
  body &gt; footer section.util form {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 720px) {
  body &gt; footer section.util form {
    margin: 0;
  }
}
body &gt; footer section.util form img {
  width: 3rem;
  height: 3rem;
  vertical-align: bottom;
}
body &gt; footer section.util form span {
  vertical-align: bottom;
  margin-left: 0.5rem;
}
body &gt; footer section#engagement {
  text-align: center;
}
body &gt; footer section#engagement h2 {
  text-align: center;
  font-size: 2rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  line-height: 3rem;
  margin-bottom: 0.75rem;
}
body &gt; footer section#engagement input {
  box-sizing: border-box;
  margin-left: 1rem;
  margin-right: 1rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #232322;
  font-size: 1.6rem;
  border: none;
  outline: none;
}
body &gt; footer section#engagement input[type=email] {
  font-size: 1.9rem;
  font-weight: 400;
  width: 80%;
  padding-left: 1rem;
  padding-right: 1rem;
  height: 4.5rem;
}
body &gt; footer section#engagement button[type=submit] {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  border: none;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  font-family: "Knockout 53 A", "Knockout 53 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 1.8rem;
  line-height: 1.8rem;
  gap: 0.1rem;
}
body &gt; footer section#engagement button[type=submit].call-to-action-option span {
  background-color: rgb(32.4494382022, 75.5730337079, 0.4269662921);
}
body &gt; footer section#engagement button[type=submit] span, body &gt; footer section#engagement button[type=submit] a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0 2rem;
  height: 4.2rem;
  min-width: 4.2rem;
  font: inherit;
  text-transform: uppercase;
  background-color: #4CB101;
  color: white;
}
body &gt; footer section#engagement input[type=submit] {
  padding: 0;
  height: 3rem;
  font-size: 1.9rem;
  padding: 0 1rem;
  display: inline-block;
  background: #4CB101;
  border: none;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}
body &gt; footer section#engagement input[type=submit]:focus {
  outline: none;
}
body &gt; footer {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media only screen and (min-width: 320px) {
  body &gt; footer {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  body &gt; footer {
    padding: 6rem 3rem;
  }
}
body &gt; footer div {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 320px) {
  body &gt; footer div {
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
  }
  body &gt; footer div nav {
    display: flex;
    justify-content: center;
  }
  body &gt; footer div nav ul {
    display: block;
    column-count: 2;
    column-gap: 3rem;
    list-style-type: none;
  }
  body &gt; footer div section.newsletter form {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
    align-items: center;
  }
  body &gt; footer div section.newsletter form button span {
    background-color: #28a15b !important;
  }
  body &gt; footer div section.social-media {
    margin-top: 3rem;
  }
  body &gt; footer div section.social-media ul {
    list-style-type: none;
    display: flex;
    gap: 2rem;
    justify-content: center;
  }
  body &gt; footer div section.social-media ul li {
    display: block;
  }
  body &gt; footer div section.social-media ul li a {
    display: block;
    line-height: 0;
    font-size: 0;
  }
}
@media only screen and (min-width: 720px) {
  body &gt; footer div {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  body &gt; footer div nav {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    box-sizing: border-box;
  }
  body &gt; footer div nav ul {
    width: 75%;
    margin-right: auto;
  }
  body &gt; footer div nav ul li {
    break-inside: avoid;
    width: 20ch;
  }
  body &gt; footer div section.util {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    align-self: end;
  }
  body &gt; footer div section#engagement {
    grid-column: 2;
    grid-row: 1/span 2;
    width: 100%;
    box-sizing: border-box;
  }
}
@media only screen and (min-width: 1000px) {
  body &gt; footer div {
    max-width: 90rem;
  }
}
@media only screen and (min-width: 1281px) {
  body &gt; footer div {
    max-width: 100rem;
  }
}
@media only screen and (min-width: 1710px) {
  body &gt; footer div {
    max-width: 110rem;
  }
}
body &gt; footer &gt; p {
  width: 100%;
  text-align: center;
  background-color: #373633;
  margin: 0;
  margin-top: 3rem;
}
body &gt; footer &gt; p.to-the-top, body &gt; footer &gt; p.to-the-top a {
  color: hsl(45, 7.55%, 40%);
}
body &gt; footer &gt; p.copyrights {
  border-top: 1px solid #585755;
  padding: 0;
  padding-top: 3rem;
}

section#download-feedback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  opacity: 0;
  transition: opacity 200ms linear;
  box-sizing: border-box;
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
  z-index: 500;
  background-color: rgba(0, 0, 0, 0.2980392157);
}
section#download-feedback div {
  box-sizing: border-box;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.5019607843);
  position: relative;
  width: max-content;
  border-radius: 1.5rem;
  background-color: #f5f4f2;
}
section#download-feedback div p {
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  text-align: center;
  padding: 3rem;
}

section#lightbox {
  display: none;
  flex-grow: 1;
  justify-content: center;
  box-sizing: border-box;
  position: fixed;
  top: 0px !important;
  opacity: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  transition: opacity 0.15s linear;
}
section#lightbox &gt; div {
  position: relative;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-basis: 68rem;
  padding: 3.6rem 0 3.6rem 0;
  background-color: #f5f4f2;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 320px) {
  section#lightbox &gt; div {
    height: 100%;
    margin: 0 5rem 0 0;
  }
}
@media only screen and (min-width: 720px) {
  section#lightbox &gt; div {
    height: fit-content;
    margin: 4.5rem;
  }
}
@media only screen and (min-width: 320px) {
  section#lightbox &gt; div img.close-icon {
    display: none;
  }
}
@media only screen and (min-width: 720px) {
  section#lightbox &gt; div img.close-icon {
    display: block;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
  }
}
section#lightbox &gt; div section#cart-detail-empty button.call-to-action-2nd-tier {
  margin-bottom: 3rem;
}
section#lightbox &gt; div &gt; section {
  box-sizing: border-box;
  width: 100%;
  opacity: 0;
  transition: height 0.5s;
}
@media only screen and (min-width: 320px) {
  section#lightbox &gt; div &gt; section {
    overflow-y: scroll;
    padding: 0 3.6rem 0 3.6rem;
    max-height: calc(100vh - 7.2rem);
  }
  section#lightbox &gt; div &gt; section div &gt; img {
    display: none;
  }
}
@media only screen and (min-width: 720px) {
  section#lightbox &gt; div &gt; section {
    overflow: auto;
    max-height: calc(100vh - 9rem - 7.2rem);
  }
}
section#lightbox &gt; div &gt; section img {
  display: block;
}
section#lightbox &gt; div &gt; section img.close-icon {
  cursor: pointer;
}
section#lightbox &gt; div &gt; section .cart-icon, section#lightbox &gt; div &gt; section svg {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 4.5rem;
  height: 4.5rem;
}
section#lightbox &gt; div &gt; section .cart-icon g#cart-add-item, section#lightbox &gt; div &gt; section svg g#cart-add-item {
  fill: transparent;
}
section#lightbox &gt; div &gt; section .cart-icon path#cart,
section#lightbox &gt; div &gt; section .cart-icon g#checkmark path,
section#lightbox &gt; div &gt; section .cart-icon g#cart-filled path,
section#lightbox &gt; div &gt; section .cart-icon path#Combined-Shape,
section#lightbox &gt; div &gt; section .cart-icon path#dummy, section#lightbox &gt; div &gt; section svg path#cart,
section#lightbox &gt; div &gt; section svg g#checkmark path,
section#lightbox &gt; div &gt; section svg g#cart-filled path,
section#lightbox &gt; div &gt; section svg path#Combined-Shape,
section#lightbox &gt; div &gt; section svg path#dummy {
  fill: #17a352 !important;
}
section#lightbox &gt; div &gt; section h2 {
  font-size: 3.61rem;
  line-height: 3.61rem;
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  text-align: center;
  color: #17a352;
}
section#lightbox &gt; div &gt; section h2 + p {
  text-align: center;
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  margin-bottom: 3rem;
}
section#lightbox &gt; div &gt; section h3 {
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
}
section#lightbox &gt; div &gt; section h3 label {
  display: block;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 1.22rem;
  text-transform: uppercase;
  color: #808080;
}
section#lightbox &gt; div &gt; section h3 input[type=text], section#lightbox &gt; div &gt; section h3 input[type=email], section#lightbox &gt; div &gt; section h3 select {
  width: 100%;
  box-sizing: border-box;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 1.9rem;
  color: rgba(0, 0, 0, 0.85);
  line-height: 4.5rem;
  height: 4.5rem;
  background: #FFFFFF;
  border: 1px solid #786F53;
  box-shadow: inset 0 0 6px 0 rgba(0, 0, 0, 0.24);
  border-radius: 6px;
  padding: 0 1.5rem 0 1.5rem;
}
section#lightbox &gt; div &gt; section h3 select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url("../images/cart-dropdown-list-arrows.svg");
  background-position: center right 1rem;
  background-repeat: no-repeat;
}
section#lightbox &gt; div &gt; section ul.cart-items {
  list-style-type: none;
  margin-bottom: 3rem;
  box-sizing: border-box;
}
section#lightbox &gt; div &gt; section ul.cart-items li {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid black;
  position: relative;
  padding: 0.3rem 0;
}
section#lightbox &gt; div &gt; section ul.cart-items li.short {
  margin-left: auto;
  width: 22rem;
}
section#lightbox &gt; div &gt; section ul.cart-items li:first-child {
  border-top: 1px solid black;
}
section#lightbox &gt; div &gt; section ul.cart-items li:hover img {
  opacity: 100%;
}
section#lightbox &gt; div &gt; section ul.cart-items li img {
  display: inline;
  vertical-align: bottom;
  opacity: 100%;
  cursor: pointer;
}
section#lightbox &gt; div &gt; section ul.cart-items li p {
  font: inherit;
  line-height: 3rem;
}
section#lightbox &gt; div &gt; section ul.cart-items li p.name {
  margin-right: auto;
  overflow: hidden;
}
section#lightbox &gt; div &gt; section ul.cart-items li p.subtotal, section#lightbox &gt; div &gt; section ul.cart-items li p.subtotal-amount, section#lightbox &gt; div &gt; section ul.cart-items li p.taxes, section#lightbox &gt; div &gt; section ul.cart-items li p.taxes-amount, section#lightbox &gt; div &gt; section ul.cart-items li p.total, section#lightbox &gt; div &gt; section ul.cart-items li p.total-amount {
  width: 12rem;
  text-align: right;
}
section#lightbox &gt; div &gt; section ul.cart-items li p.price-regular {
  text-decoration: line-through;
  opacity: 0.5;
  text-align: right;
}
section#lightbox &gt; div &gt; section ul.cart-items li p.price-current {
  text-align: right;
  margin-left: 0.5rem;
}
section#lightbox &gt; div &gt; section ul.cart-items li p.subtotal, section#lightbox &gt; div &gt; section ul.cart-items li p.taxes, section#lightbox &gt; div &gt; section ul.cart-items li p.total {
  margin-left: auto;
}
section#lightbox &gt; div &gt; section ul.cart-items li p.subtotal, section#lightbox &gt; div &gt; section ul.cart-items li p.subtotal-amount, section#lightbox &gt; div &gt; section ul.cart-items li p.total, section#lightbox &gt; div &gt; section ul.cart-items li p.total-amount {
  font-weight: bold;
}
section#lightbox &gt; div &gt; section h4 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1.22rem;
  line-height: 1.5rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  color: #808080;
  line-height: 1.9rem;
  margin-top: auto;
}
section#lightbox &gt; div &gt; section img.payment-methods {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 386px;
}
section#lightbox &gt; div &gt; section &gt; div.call-to-action {
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  margin-top: 3rem;
}
@media only screen and (min-width: 320px) {
  section#lightbox &gt; div &gt; section &gt; div.call-to-action {
    flex-direction: column;
  }
  section#lightbox &gt; div &gt; section &gt; div.call-to-action button {
    display: list-item;
    margin: 1rem 0;
  }
}
@media only screen and (min-width: 720px) {
  section#lightbox &gt; div &gt; section &gt; div.call-to-action {
    flex-direction: row;
  }
  section#lightbox &gt; div &gt; section &gt; div.call-to-action button {
    margin: 0 1rem;
  }
}
section#lightbox &gt; div &gt; section button {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0 1rem;
}
section#lightbox &gt; div &gt; section button:focus {
  outline: none;
}
section#lightbox &gt; div &gt; section button.call-to-action {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  border: none;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  font-family: "Knockout 53 A", "Knockout 53 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 1.8rem;
  line-height: 1.8rem;
  gap: 0.1rem;
}
section#lightbox &gt; div &gt; section button.call-to-action.call-to-action-option span {
  background-color: rgb(32.4494382022, 75.5730337079, 0.4269662921);
}
section#lightbox &gt; div &gt; section button.call-to-action span, section#lightbox &gt; div &gt; section button.call-to-action a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0 2rem;
  height: 4.2rem;
  min-width: 4.2rem;
  font: inherit;
  text-transform: uppercase;
  background-color: #4CB101;
  color: white;
}
section#lightbox &gt; div &gt; section button.call-to-action span {
  background-color: #15a150 !important;
}
section#lightbox &gt; div &gt; section button.call-to-action-option {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  border: none;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  font-family: "Knockout 53 A", "Knockout 53 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 1.8rem;
  line-height: 1.8rem;
  gap: 0.1rem;
}
section#lightbox &gt; div &gt; section button.call-to-action-option.call-to-action-option span {
  background-color: rgb(32.4494382022, 75.5730337079, 0.4269662921);
}
section#lightbox &gt; div &gt; section button.call-to-action-option span, section#lightbox &gt; div &gt; section button.call-to-action-option a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0 2rem;
  height: 4.2rem;
  min-width: 4.2rem;
  font: inherit;
  text-transform: uppercase;
  background-color: #4CB101;
  color: white;
}
section#lightbox &gt; div &gt; section button.call-to-action-option span {
  background-color: rgb(9.2307692308, 70.7692307692, 35.1648351648) !important;
}
section#lightbox &gt; div &gt; section button.call-to-action-2nd-tier {
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.8rem;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  background-color: transparent;
}

section#hero &gt; div div.background-top, .STYLES &gt; div div.background-top {
  background: radial-gradient(circle, rgb(105.8, 87.4, 108.1) 0%, rgb(64.4, 53.2, 65.8) 75%, rgb(64.4, 53.2, 65.8) 100%);
}
section#hero &gt; div div.background-bottom, .STYLES &gt; div div.background-bottom {
  background-color: #32312e;
}
section#hero &gt; div div.tag span, .STYLES &gt; div div.tag span {
  color: white;
  background-color: black;
  font-size: 1.8rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 900;
  padding: 0rem 1.5rem 0rem 1.5rem;
}
section#hero &gt; div header, .STYLES &gt; div header {
  text-align: center;
}
section#hero &gt; div header h1, .STYLES &gt; div header h1 {
  font-size: 3.61rem;
  line-height: 4rem;
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  color: #fff;
}
@media only screen and (min-width: 320px) {
  section#hero &gt; div header h1, .STYLES &gt; div header h1 {
    font-size: 2.8rem;
    line-height: 3rem;
    padding-top: 1.8rem;
  }
}
@media only screen and (min-width: 720px) {
  section#hero &gt; div header h1, .STYLES &gt; div header h1 {
    font-size: 4.6rem;
    line-height: 4.6rem;
    padding-top: 0;
  }
}
section#hero &gt; div header p, .STYLES &gt; div header p {
  font-family: "Knockout 34 A", "Knockout 34 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  color: #bee4ff;
  text-transform: uppercase;
}
@media only screen and (min-width: 320px) {
  section#hero &gt; div header p, .STYLES &gt; div header p {
    font-size: 1.4rem;
    line-height: 1.5rem;
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 720px) {
  section#hero &gt; div header p, .STYLES &gt; div header p {
    font-size: 2rem;
    line-height: 2.4rem;
    max-width: unset;
    margin: 0;
  }
}
section#hero &gt; div section.offer, .STYLES &gt; div section.offer {
  text-align: center;
}
section#hero &gt; div section.offer p:first-child, .STYLES &gt; div section.offer p:first-child {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  color: white;
  font-size: 1.92rem;
  line-height: 2.4rem;
}
section#hero &gt; div section.offer p.new span, .STYLES &gt; div section.offer p.new span {
  font-size: 1.8rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 900;
  background-color: black;
  padding: 0.3rem 2.6rem 0.3rem 0.6rem;
  color: white;
}
section#hero &gt; div section.offer button.add-to-cart, .STYLES &gt; div section.offer button.add-to-cart {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  border: none;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  font-family: "Knockout 53 A", "Knockout 53 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 1.8rem;
  line-height: 1.8rem;
  gap: 0.1rem;
}
section#hero &gt; div section.offer button.add-to-cart.call-to-action-option span, .STYLES &gt; div section.offer button.add-to-cart.call-to-action-option span {
  background-color: rgb(68.3620689655, 60.5172413793, 69.4827586207);
}
section#hero &gt; div section.offer button.add-to-cart span, section#hero &gt; div section.offer button.add-to-cart a, .STYLES &gt; div section.offer button.add-to-cart span, .STYLES &gt; div section.offer button.add-to-cart a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0 2rem;
  height: 4.2rem;
  min-width: 4.2rem;
  font: inherit;
  text-transform: uppercase;
  background-color: #7a6c7c;
  color: white;
}
section#hero &gt; div header p, .STYLES &gt; div header p {
  color: #cebbd0;
  margin: 0 auto;
}

section#hero, .LAYOUTS {
  width: 100%;
}
section#hero &gt; div, .LAYOUTS &gt; div {
  width: 100%;
  position: relative;
  display: grid;
  flex-basis: 100%;
  flex-shrink: 0;
  margin: 0;
  position: relative;
  scroll-snap-align: center;
}
section#hero &gt; div &gt; div.background-bottom, .LAYOUTS &gt; div &gt; div.background-bottom {
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 320px) {
  section#hero &gt; div, .LAYOUTS &gt; div {
    grid-template-rows: auto auto auto 1fr;
    grid-template-columns: 1fr;
  }
  section#hero &gt; div div.background-top, .LAYOUTS &gt; div div.background-top {
    grid-column: 1/2;
    grid-row: 1/3;
  }
  section#hero &gt; div div.background-bottom, .LAYOUTS &gt; div div.background-bottom {
    grid-column: 1/2;
    grid-row: 3/5;
  }
  section#hero &gt; div div.background-bottom img, .LAYOUTS &gt; div div.background-bottom img {
    width: 100%;
  }
  section#hero &gt; div div.tag, .LAYOUTS &gt; div div.tag {
    grid-column: 1/2;
    grid-row: 2/4;
    position: relative;
    width: 100%;
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
    z-index: 20;
  }
  section#hero &gt; div div.tag span, .LAYOUTS &gt; div div.tag span {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: -1rem;
  }
  section#hero &gt; div header, .LAYOUTS &gt; div header {
    grid-column: 1/2;
    grid-row: 1/2;
    margin-bottom: 1.5rem;
    position: relative;
  }
  section#hero &gt; div header span, .LAYOUTS &gt; div header span {
    position: absolute;
    display: block;
  }
  section#hero &gt; div picture, .LAYOUTS &gt; div picture {
    width: 100%;
    display: flex;
    z-index: 10;
    grid-column: 1/2;
    grid-row: 2/4;
    max-width: 56.5rem;
    margin-left: auto;
    margin-right: auto;
    align-self: center;
    position: relative;
  }
  section#hero &gt; div picture img, .LAYOUTS &gt; div picture img {
    width: 100%;
    align-self: center;
    position: relative;
  }
  section#hero &gt; div section.offer, .LAYOUTS &gt; div section.offer {
    z-index: 10;
    grid-column: 1/2;
    grid-row: 4/5;
    padding-top: 3rem;
    padding-bottom: 4.5rem;
    display: grid;
    grid-template-columns: 1fr auto auto 1fr;
    grid-row-gap: 3rem;
    justify-content: center;
    justify-items: center;
    align-items: center;
    margin: 0 1.5rem;
  }
  section#hero &gt; div section.offer p:first-child, .LAYOUTS &gt; div section.offer p:first-child {
    min-height: 7.2rem;
  }
  section#hero &gt; div section.offer p:first-child.expanded, .LAYOUTS &gt; div section.offer p:first-child.expanded {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 600;
    line-height: 2.4rem;
    align-self: center;
  }
  section#hero &gt; div section.offer h2, section#hero &gt; div section.offer p, .LAYOUTS &gt; div section.offer h2, .LAYOUTS &gt; div section.offer p {
    grid-column: 2/4;
  }
  section#hero &gt; div section.offer div.prices span, .LAYOUTS &gt; div section.offer div.prices span {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 3rem;
    color: black;
  }
  section#hero &gt; div section.offer div.prices span.regular, .LAYOUTS &gt; div section.offer div.prices span.regular {
    color: #99978E;
  }
  section#hero &gt; div section.offer div.prices span.regular data, .LAYOUTS &gt; div section.offer div.prices span.regular data {
    text-decoration: line-through;
  }
  section#hero &gt; div section.offer div.prices span small, .LAYOUTS &gt; div section.offer div.prices span small {
    font: inherit;
    vertical-align: text-top;
    font-size: 66.6666%;
  }
  section#hero &gt; div section.offer div.prices span data, .LAYOUTS &gt; div section.offer div.prices span data {
    font: inherit;
  }
  section#hero &gt; div section.offer div.prices span.price, .LAYOUTS &gt; div section.offer div.prices span.price {
    font-size: 3.5rem;
    line-height: 4rem;
    color: white;
  }
  section#hero &gt; div section.offer div.prices span.price small, .LAYOUTS &gt; div section.offer div.prices span.price small {
    vertical-align: top;
  }
}
@media only screen and (min-width: 320px) and (min-width: 320px) {
  section#hero &gt; div section.offer div.prices, .LAYOUTS &gt; div section.offer div.prices {
    grid-column: 2/4;
  }
}
@media only screen and (min-width: 320px) and (min-width: 720px) {
  section#hero &gt; div section.offer div.prices, .LAYOUTS &gt; div section.offer div.prices {
    grid-column: 2/3;
    justify-self: end;
  }
}
@media only screen and (min-width: 320px) {
  section#hero &gt; div section.offer div.prices span, .LAYOUTS &gt; div section.offer div.prices span {
    display: inline;
  }
  section#hero &gt; div section.offer button.add-to-cart, .LAYOUTS &gt; div section.offer button.add-to-cart {
    grid-column: 2/4;
    margin: 0;
  }
}
@media only screen and (min-width: 720px) {
  section#hero &gt; div, .LAYOUTS &gt; div {
    grid-template-rows: 6rem repeat(2, 21rem);
    grid-template-columns: minmax(0, auto) 42rem minmax(32rem, 54rem) minmax(0, auto);
  }
  section#hero &gt; div div.background-top, .LAYOUTS &gt; div div.background-top {
    grid-column: 1/5;
    grid-row: 1/5;
  }
  section#hero &gt; div div.background-bottom, .LAYOUTS &gt; div div.background-bottom {
    grid-column: 1/5;
    grid-row: 3/5;
  }
  section#hero &gt; div header, .LAYOUTS &gt; div header {
    grid-column: 3/4;
    grid-row: 1/3;
    align-content: center;
    display: grid;
    margin: 0;
    padding: 0;
  }
  section#hero &gt; div picture, section#hero &gt; div div.tag, .LAYOUTS &gt; div picture, .LAYOUTS &gt; div div.tag {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    z-index: 10;
    justify-self: center;
    grid-column: 2/3;
    grid-row: 2/4;
    display: grid;
  }
  section#hero &gt; div picture img, section#hero &gt; div div.tag img, .LAYOUTS &gt; div picture img, .LAYOUTS &gt; div div.tag img {
    width: 100%;
    align-self: center;
  }
  section#hero &gt; div div.tag, .LAYOUTS &gt; div div.tag {
    z-index: 20;
  }
  section#hero &gt; div div.tag span, .LAYOUTS &gt; div div.tag span {
    top: 1rem;
    right: -1rem;
  }
  section#hero &gt; div section.offer, .LAYOUTS &gt; div section.offer {
    grid-column: 3/4;
    grid-row: 2/4;
    z-index: 10;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 25% 25% 25% 25%;
    justify-content: center;
    align-content: center;
    padding: 0;
    grid-column-gap: 6rem;
    grid-row-gap: 0;
  }
  section#hero &gt; div section.offer p:first-child, .LAYOUTS &gt; div section.offer p:first-child {
    min-height: unset;
    margin: 0;
  }
  section#hero &gt; div section.offer div.prices, .LAYOUTS &gt; div section.offer div.prices {
    grid-column: 1/3;
    grid-row: 3/4;
    align-self: center;
    justify-self: center;
  }
  section#hero &gt; div section.offer h2, section#hero &gt; div section.offer p, section#hero &gt; div section.offer div.call-to-action, .LAYOUTS &gt; div section.offer h2, .LAYOUTS &gt; div section.offer p, .LAYOUTS &gt; div section.offer div.call-to-action {
    grid-column: 1/3;
  }
  section#hero &gt; div section.offer p, .LAYOUTS &gt; div section.offer p {
    grid-row: 2/3;
  }
  section#hero &gt; div section.offer button.add-to-cart, .LAYOUTS &gt; div section.offer button.add-to-cart {
    grid-column: 1/3;
    grid-row: 4/5;
    align-self: start;
    justify-self: center;
  }
}
@media only screen and (min-width: 1000px) {
  section#hero &gt; div, .LAYOUTS &gt; div {
    grid-template-rows: 6rem repeat(2, 25rem);
    grid-template-columns: auto 50rem 54rem auto;
  }
  section#hero &gt; div p.summary, .LAYOUTS &gt; div p.summary {
    padding: 0;
    padding-bottom: 0.5rem;
  }
}
@media only screen and (min-width: 1281px) {
  section#hero &gt; div, .LAYOUTS &gt; div {
    grid-template-rows: 6rem repeat(2, 27.5rem);
    grid-template-columns: auto 55rem 54rem auto;
  }
}
@media only screen and (min-width: 1710px) {
  section#hero &gt; div, .LAYOUTS &gt; div {
    grid-template-rows: 6rem repeat(2, 30rem);
    grid-template-columns: auto 60rem 54rem auto;
  }
}

section#low-end-theory-2 {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f5f4f2;
}
@media only screen and (min-width: 320px) {
  section#low-end-theory-2 {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#low-end-theory-2 {
    padding: 6rem 3rem;
  }
}
section#low-end-theory-2 div {
  width: 100%;
  max-width: 120rem;
}
section#low-end-theory-2 div &gt; header {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 4.5rem;
}
section#low-end-theory-2 div &gt; header h2 {
  font-size: 3.61rem;
  line-height: 3.61rem;
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  color: #4CB101;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  position: relative;
}
section#low-end-theory-2 div &gt; header h2 abbr {
  text-decoration: none;
}
section#low-end-theory-2 div &gt; header h2 a {
  color: transparent;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
}
section#low-end-theory-2 div &gt; header h2 + p {
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  text-align: center;
  max-width: 100ch;
}
section#low-end-theory-2 div &gt; header h2 {
  color: #756378;
}
section#low-end-theory-2 div section {
  display: flex;
  gap: 3rem;
}
@media only screen and (min-width: 320px) {
  section#low-end-theory-2 div section {
    flex-direction: column;
  }
}
@media only screen and (min-width: 720px) {
  section#low-end-theory-2 div section {
    flex-direction: row;
  }
}
section#low-end-theory-2 div section figure {
  flex-basis: 40%;
}
section#low-end-theory-2 div section figure picture {
  width: 100%;
}
section#low-end-theory-2 div section figure picture img {
  width: 100%;
}
section#low-end-theory-2 div section article {
  flex-basis: 60%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
section#low-end-theory-2 div section article header h2 {
  font-size: 3.61rem;
  line-height: 3.61rem;
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  color: #81a144;
}
section#low-end-theory-2 div section article header p {
  color: #7c7c78;
}
section#low-end-theory-2 div section article h3 {
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
}
section#low-end-theory-2 div section article p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
}
section#low-end-theory-2 div section article a {
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  font-weight: 600;
  font-size: 2rem;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  line-height: 3rem;
  color: #79973f;
}

section#string-it {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #eae9e6;
}
@media only screen and (min-width: 320px) {
  section#string-it {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#string-it {
    padding: 6rem 3rem;
  }
}
section#string-it div {
  width: 100%;
  max-width: 120rem;
}
section#string-it div section {
  display: flex;
  gap: 3rem;
}
@media only screen and (min-width: 320px) {
  section#string-it div section {
    flex-direction: column;
  }
}
@media only screen and (min-width: 720px) {
  section#string-it div section {
    flex-direction: row-reverse;
  }
}
section#string-it div section figure {
  flex-basis: 40%;
}
section#string-it div section figure picture {
  width: 100%;
}
section#string-it div section figure picture img {
  width: 100%;
}
section#string-it div section article {
  flex-basis: 60%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
section#string-it div section article header h2 {
  font-size: 3.61rem;
  line-height: 3.61rem;
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  color: #d46334;
}
section#string-it div section article header p {
  color: #7c7c78;
}
section#string-it div section article h3 {
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
}
section#string-it div section article p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
}
section#string-it div section article a {
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  font-weight: 600;
  font-size: 2rem;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  line-height: 3rem;
  color: #d46334;
}

section#urban-trip {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #d3d1cc;
}
@media only screen and (min-width: 320px) {
  section#urban-trip {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#urban-trip {
    padding: 6rem 3rem;
  }
}
section#urban-trip div {
  width: 100%;
  max-width: 120rem;
}
section#urban-trip div section {
  display: flex;
  gap: 3rem;
}
@media only screen and (min-width: 320px) {
  section#urban-trip div section {
    flex-direction: column;
  }
}
@media only screen and (min-width: 720px) {
  section#urban-trip div section {
    flex-direction: row;
  }
}
section#urban-trip div section figure {
  flex-basis: 40%;
}
section#urban-trip div section figure picture {
  width: 100%;
}
section#urban-trip div section figure picture img {
  width: 100%;
}
section#urban-trip div section article {
  flex-basis: 60%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
section#urban-trip div section article header h2 {
  font-size: 3.61rem;
  line-height: 3.61rem;
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  color: #728e3d;
}
section#urban-trip div section article header p {
  color: #7c7c78;
}
section#urban-trip div section article h3 {
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
}
section#urban-trip div section article p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
}
section#urban-trip div section article a {
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  font-weight: 600;
  font-size: 2rem;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  line-height: 3rem;
  color: #698338;
}

section#hop-riffs {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f5f4f2;
}
@media only screen and (min-width: 320px) {
  section#hop-riffs {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#hop-riffs {
    padding: 6rem 3rem;
  }
}
section#hop-riffs div {
  width: 100%;
  max-width: 120rem;
}
section#hop-riffs div section {
  display: flex;
  gap: 3rem;
}
@media only screen and (min-width: 320px) {
  section#hop-riffs div section {
    flex-direction: column;
  }
}
@media only screen and (min-width: 720px) {
  section#hop-riffs div section {
    flex-direction: row-reverse;
  }
}
section#hop-riffs div section figure {
  flex-basis: 40%;
}
section#hop-riffs div section figure picture {
  width: 100%;
}
section#hop-riffs div section figure picture img {
  width: 100%;
}
section#hop-riffs div section article {
  flex-basis: 60%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
section#hop-riffs div section article header h2 {
  font-size: 3.61rem;
  line-height: 3.61rem;
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  color: #d4a02a;
}
section#hop-riffs div section article header p {
  color: #7c7c78;
}
section#hop-riffs div section article h3 {
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
}
section#hop-riffs div section article p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
}
section#hop-riffs div section article a {
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  font-weight: 600;
  font-size: 2rem;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  line-height: 3rem;
  color: #cc992b;
}

section#turmoil-district {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #eae9e6;
}
@media only screen and (min-width: 320px) {
  section#turmoil-district {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#turmoil-district {
    padding: 6rem 3rem;
  }
}
section#turmoil-district div {
  width: 100%;
  max-width: 120rem;
}
section#turmoil-district div section {
  display: flex;
  gap: 3rem;
}
@media only screen and (min-width: 320px) {
  section#turmoil-district div section {
    flex-direction: column;
  }
}
@media only screen and (min-width: 720px) {
  section#turmoil-district div section {
    flex-direction: row;
  }
}
section#turmoil-district div section figure {
  flex-basis: 40%;
}
section#turmoil-district div section figure picture {
  width: 100%;
}
section#turmoil-district div section figure picture img {
  width: 100%;
}
section#turmoil-district div section article {
  flex-basis: 60%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
section#turmoil-district div section article header h2 {
  font-size: 3.61rem;
  line-height: 3.61rem;
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  color: #15958a;
}
section#turmoil-district div section article header p {
  color: #7c7c78;
}
section#turmoil-district div section article h3 {
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
}
section#turmoil-district div section article p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
}
section#turmoil-district div section article a {
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  font-weight: 600;
  font-size: 2rem;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  line-height: 3rem;
  color: #118d83;
}

section#low-end-theory {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #d3d1cc;
}
@media only screen and (min-width: 320px) {
  section#low-end-theory {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#low-end-theory {
    padding: 6rem 3rem;
  }
}
section#low-end-theory div {
  width: 100%;
  max-width: 120rem;
}
section#low-end-theory div section {
  display: flex;
  gap: 3rem;
}
@media only screen and (min-width: 320px) {
  section#low-end-theory div section {
    flex-direction: column;
  }
}
@media only screen and (min-width: 720px) {
  section#low-end-theory div section {
    flex-direction: row-reverse;
  }
}
section#low-end-theory div section figure {
  flex-basis: 40%;
}
section#low-end-theory div section figure picture {
  width: 100%;
}
section#low-end-theory div section figure picture img {
  width: 100%;
}
section#low-end-theory div section article {
  flex-basis: 60%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
section#low-end-theory div section article header h2 {
  font-size: 3.61rem;
  line-height: 3.61rem;
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  color: #728e3d;
}
section#low-end-theory div section article header p {
  color: #7c7c78;
}
section#low-end-theory div section article h3 {
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
}
section#low-end-theory div section article p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
}
section#low-end-theory div section article a {
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  font-weight: 600;
  font-size: 2rem;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  line-height: 3rem;
  color: #698338;
}

section#fix-my-halo-thiago-pinheiro-video,
section#no-time-to-play-thiago-pinheiro-video {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 320px) {
  section#fix-my-halo-thiago-pinheiro-video,
  section#no-time-to-play-thiago-pinheiro-video {
    aspect-ratio: 719/404;
  }
}
@media only screen and (min-width: 720px) {
  section#fix-my-halo-thiago-pinheiro-video,
  section#no-time-to-play-thiago-pinheiro-video {
    aspect-ratio: 999/354;
  }
}
@media only screen and (min-width: 1000px) {
  section#fix-my-halo-thiago-pinheiro-video,
  section#no-time-to-play-thiago-pinheiro-video {
    aspect-ratio: 1280/425;
  }
}
@media only screen and (min-width: 1281px) {
  section#fix-my-halo-thiago-pinheiro-video,
  section#no-time-to-play-thiago-pinheiro-video {
    aspect-ratio: 1709/600;
  }
}
@media only screen and (min-width: 1710px) {
  section#fix-my-halo-thiago-pinheiro-video,
  section#no-time-to-play-thiago-pinheiro-video {
    aspect-ratio: 2560/720;
  }
}
section#fix-my-halo-thiago-pinheiro-video &gt; div,
section#no-time-to-play-thiago-pinheiro-video &gt; div {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}
section#fix-my-halo-thiago-pinheiro-video &gt; div ul,
section#no-time-to-play-thiago-pinheiro-video &gt; div ul {
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  justify-content: center;
  list-style-type: none;
  gap: 3rem;
}
@media only screen and (min-width: 320px) {
  section#fix-my-halo-thiago-pinheiro-video &gt; div ul,
  section#no-time-to-play-thiago-pinheiro-video &gt; div ul {
    flex-direction: column;
  }
}
@media only screen and (min-width: 720px) {
  section#fix-my-halo-thiago-pinheiro-video &gt; div ul,
  section#no-time-to-play-thiago-pinheiro-video &gt; div ul {
    flex-direction: row;
  }
}
section#fix-my-halo-thiago-pinheiro-video &gt; div ul header,
section#no-time-to-play-thiago-pinheiro-video &gt; div ul header {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 4.5rem;
  position: absolute;
  margin-bottom: 0;
  z-index: 1;
}
section#fix-my-halo-thiago-pinheiro-video &gt; div ul header h2,
section#no-time-to-play-thiago-pinheiro-video &gt; div ul header h2 {
  font-size: 3.61rem;
  line-height: 3.61rem;
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  color: #4CB101;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  position: relative;
}
section#fix-my-halo-thiago-pinheiro-video &gt; div ul header h2 abbr,
section#no-time-to-play-thiago-pinheiro-video &gt; div ul header h2 abbr {
  text-decoration: none;
}
section#fix-my-halo-thiago-pinheiro-video &gt; div ul header h2 a,
section#no-time-to-play-thiago-pinheiro-video &gt; div ul header h2 a {
  color: transparent;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
}
section#fix-my-halo-thiago-pinheiro-video &gt; div ul header h2 + p,
section#no-time-to-play-thiago-pinheiro-video &gt; div ul header h2 + p {
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  text-align: center;
  max-width: 100ch;
}
@media only screen and (min-width: 320px) {
  section#fix-my-halo-thiago-pinheiro-video &gt; div ul header,
  section#no-time-to-play-thiago-pinheiro-video &gt; div ul header {
    top: 66%;
  }
}
@media only screen and (min-width: 720px) {
  section#fix-my-halo-thiago-pinheiro-video &gt; div ul header,
  section#no-time-to-play-thiago-pinheiro-video &gt; div ul header {
    top: 64%;
  }
}
@media only screen and (min-width: 1000px) {
  section#fix-my-halo-thiago-pinheiro-video &gt; div ul header,
  section#no-time-to-play-thiago-pinheiro-video &gt; div ul header {
    top: 62%;
  }
}
@media only screen and (min-width: 1281px) {
  section#fix-my-halo-thiago-pinheiro-video &gt; div ul header,
  section#no-time-to-play-thiago-pinheiro-video &gt; div ul header {
    top: 60%;
  }
}
section#fix-my-halo-thiago-pinheiro-video &gt; div ul header h2, section#fix-my-halo-thiago-pinheiro-video &gt; div ul header p,
section#no-time-to-play-thiago-pinheiro-video &gt; div ul header h2,
section#no-time-to-play-thiago-pinheiro-video &gt; div ul header p {
  color: white !important;
}
section#fix-my-halo-thiago-pinheiro-video &gt; div ul li.clicked,
section#no-time-to-play-thiago-pinheiro-video &gt; div ul li.clicked {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
section#fix-my-halo-thiago-pinheiro-video &gt; div ul li.clicked iframe,
section#no-time-to-play-thiago-pinheiro-video &gt; div ul li.clicked iframe {
  position: absolute;
  z-index: 1;
}
section#fix-my-halo-thiago-pinheiro-video &gt; div ul li.clicked span.play-icon,
section#no-time-to-play-thiago-pinheiro-video &gt; div ul li.clicked span.play-icon {
  z-index: 0;
}
section#fix-my-halo-thiago-pinheiro-video &gt; div ul li.clicked picture,
section#no-time-to-play-thiago-pinheiro-video &gt; div ul li.clicked picture {
  z-index: -1;
  filter: blur(8px);
  transform: scale(1.1);
}
section#fix-my-halo-thiago-pinheiro-video &gt; div ul li.clicked header,
section#no-time-to-play-thiago-pinheiro-video &gt; div ul li.clicked header {
  z-index: 0;
}
@media only screen and (min-width: 720px) {
  section#fix-my-halo-thiago-pinheiro-video &gt; div ul li.clicked iframe,
  section#no-time-to-play-thiago-pinheiro-video &gt; div ul li.clicked iframe {
    max-width: 70rem;
  }
}
@media only screen and (min-width: 1000px) {
  section#fix-my-halo-thiago-pinheiro-video &gt; div ul li.clicked iframe,
  section#no-time-to-play-thiago-pinheiro-video &gt; div ul li.clicked iframe {
    max-width: 80rem;
  }
}
@media only screen and (min-width: 1281px) {
  section#fix-my-halo-thiago-pinheiro-video &gt; div ul li.clicked iframe,
  section#no-time-to-play-thiago-pinheiro-video &gt; div ul li.clicked iframe {
    max-width: 100rem;
  }
}
@media only screen and (min-width: 1710px) {
  section#fix-my-halo-thiago-pinheiro-video &gt; div ul li.clicked iframe,
  section#no-time-to-play-thiago-pinheiro-video &gt; div ul li.clicked iframe {
    max-width: 100rem;
  }
}
section#fix-my-halo-thiago-pinheiro-video &gt; div ul li iframe, section#fix-my-halo-thiago-pinheiro-video &gt; div ul li a.video-url,
section#no-time-to-play-thiago-pinheiro-video &gt; div ul li iframe,
section#no-time-to-play-thiago-pinheiro-video &gt; div ul li a.video-url {
  display: block;
  width: auto;
  height: 100%;
  margin: 0;
  aspect-ratio: 16/9;
  cursor: pointer;
}
section#fix-my-halo-thiago-pinheiro-video &gt; div ul li span,
section#no-time-to-play-thiago-pinheiro-video &gt; div ul li span {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: url("../images/video-embed-play.svg") no-repeat 50%;
  background-size: 8rem 8rem;
  padding: 0;
  cursor: pointer;
  z-index: 1;
}
section#fix-my-halo-thiago-pinheiro-video &gt; div ul li picture,
section#no-time-to-play-thiago-pinheiro-video &gt; div ul li picture {
  display: block;
  width: 100%;
  height: 100%;
}
section#fix-my-halo-thiago-pinheiro-video &gt; div ul li picture img,
section#no-time-to-play-thiago-pinheiro-video &gt; div ul li picture img {
  width: 100%;
  height: 100%;
}
section#fix-my-halo-thiago-pinheiro-video &gt; div ul li svg,
section#no-time-to-play-thiago-pinheiro-video &gt; div ul li svg {
  position: absolute;
  width: 100%;
  z-index: -1;
  transform: scale(100%);
}

section#videos {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  background-color: #f5f4f2;
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 320px) {
  section#videos {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#videos {
    padding: 6rem 3rem;
  }
}
section#videos &gt; div {
  box-sizing: border-box;
  width: 100%;
  max-width: 120rem;
}
section#videos &gt; div header {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 4.5rem;
}
section#videos &gt; div header h2 {
  font-size: 3.61rem;
  line-height: 3.61rem;
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  color: #4CB101;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  position: relative;
}
section#videos &gt; div header h2 abbr {
  text-decoration: none;
}
section#videos &gt; div header h2 a {
  color: transparent;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
}
section#videos &gt; div header h2 + p {
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  text-align: center;
  max-width: 100ch;
}
section#videos &gt; div h2 {
  color: #756378 !important;
}
section#videos &gt; div button.call-to-action-2nd-tier {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  font-weight: 600;
  font-size: 2rem;
  line-height: 3rem;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  background-color: transparent;
}
section#videos &gt; div ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
  gap: 3rem;
}
@media only screen and (min-width: 320px) {
  section#videos &gt; div ul {
    flex-direction: column;
  }
}
@media only screen and (min-width: 720px) {
  section#videos &gt; div ul {
    flex-direction: row;
  }
}
section#videos &gt; div ul li {
  flex-basis: calc(50% - 3rem);
  box-sizing: border-box;
  width: 100%;
  position: relative;
}
section#videos &gt; div ul li iframe, section#videos &gt; div ul li img, section#videos &gt; div ul li a.video-url {
  display: block;
  width: 100%;
  margin: 0;
  aspect-ratio: 16/9;
  cursor: pointer;
  background-color: #fff;
}
section#videos &gt; div ul li span {
  position: absolute;
  height: auto;
  width: 100%;
  aspect-ratio: 16/9;
  top: 0;
  left: 0;
  background: url("../images/video-embed-play.svg") no-repeat 50%;
  background-size: 8rem 8rem;
  padding: 0;
  cursor: pointer;
}
section#videos &gt; div ul li a {
  display: block;
  margin-top: 1.5rem;
  align-self: end;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 3rem;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
section#videos &gt; div ul li.clicked iframe {
  position: absolute;
  z-index: 1;
}
section#videos &gt; div ul li.clicked span.play-icon {
  z-index: 0;
}
section#videos &gt; div ul &gt; li.featured, section#videos &gt; div ul li.more {
  display: none;
}
section#videos &gt; div details ul {
  margin: 0;
  margin-top: 1.5rem;
}
section#videos &gt; div details summary {
  width: 100%;
  margin: 0;
  margin-top: 1.5rem;
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  line-height: 3rem;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  color: #736175;
}
section#videos &gt; div details summary p {
  display: inline;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  color: #736175;
}
section#videos &gt; div details &gt; ul li.main {
  display: none;
}
section#videos &gt; div details &gt; ul li.more {
  display: list-item;
}

section#audio-demos {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  background-color: #f5f4f2;
  padding-top: 0 !important;
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 320px) {
  section#audio-demos {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#audio-demos {
    padding: 6rem 3rem;
  }
}
section#audio-demos &gt; div {
  width: 100%;
  max-width: 80rem;
}
section#audio-demos &gt; div details ul {
  margin: 0;
  margin-top: 1.5rem;
}
section#audio-demos &gt; div details summary {
  width: 100%;
  margin: 0;
  margin-top: 1.5rem;
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  line-height: 3rem;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  color: #736175;
}
section#audio-demos &gt; div details summary p {
  display: inline;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  color: #736175;
}
section#audio-demos &gt; div ul {
  list-style-type: none;
  transition: height 1s;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 1000px) {
  section#audio-demos &gt; div ul {
    max-width: 80rem;
  }
}
section#audio-demos &gt; div ul svg filter#flood-filter-stopped feFlood {
  flood-color: #b9aab9;
  flood-opacity: 0.6;
}
section#audio-demos &gt; div ul svg filter#flood-filter-playing feFlood {
  flood-color: #826f84;
  flood-opacity: 0.6;
}
section#audio-demos &gt; div ul svg {
  position: absolute;
}
section#audio-demos &gt; div ul li {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
  flex-basis: 100%;
  padding-bottom: 0.4rem;
  break-inside: avoid;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
}
section#audio-demos &gt; div ul li.playing button {
  background-color: #5c4c5e;
}
section#audio-demos &gt; div ul li.playing button svg#play {
  display: none;
}
section#audio-demos &gt; div ul li.playing button svg#pause {
  display: block;
}
section#audio-demos &gt; div ul li.playing div {
  background-color: #5c4c5e;
}
section#audio-demos &gt; div ul li.playing div h3 {
  color: white;
}
section#audio-demos &gt; div ul li.playing div h3 span.composer {
  color: white;
}
section#audio-demos &gt; div ul li.playing div p.time {
  color: white;
  font-weight: 700;
}
section#audio-demos &gt; div ul li.playing div img {
  filter: url(#flood-filter-playing);
}
section#audio-demos &gt; div ul li.playing div progress {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: #5c4c5e;
}
section#audio-demos &gt; div ul li.playing div progress::-webkit-progress-bar {
  background-color: #5c4c5e;
}
section#audio-demos &gt; div ul li.playing div progress::-webkit-progress-value {
  background-color: #564358;
}
section#audio-demos &gt; div ul li.playing div progress::-moz-progress-bar {
  background-color: #564358;
}
section#audio-demos &gt; div ul li button {
  border: none;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  position: relative;
  background-color: #ded5de;
}
section#audio-demos &gt; div ul li button svg {
  width: 100%;
  height: auto;
}
section#audio-demos &gt; div ul li button svg#play {
  display: block;
}
section#audio-demos &gt; div ul li button svg#play rect#bg {
  fill: #ded5de;
}
section#audio-demos &gt; div ul li button svg#play polygon#triangle {
  fill: #5c4c5e;
}
section#audio-demos &gt; div ul li button svg#pause {
  display: none;
}
section#audio-demos &gt; div ul li button svg#pause rect#bg {
  fill: #5c4c5e;
}
section#audio-demos &gt; div ul li button svg#pause g#bars {
  fill: white;
}
section#audio-demos &gt; div ul li &gt; div, section#audio-demos &gt; div ul li &gt; div::selection, section#audio-demos &gt; div ul li h3, section#audio-demos &gt; div ul li p, section#audio-demos &gt; div ul li progress {
  cursor: url("../images/cursor-pointing-hand.png") 14 10, pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
section#audio-demos &gt; div ul li &gt; div {
  position: relative;
  background-color: #ded5de;
}
section#audio-demos &gt; div ul li &gt; div h3 {
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #5c4c5e;
}
section#audio-demos &gt; div ul li &gt; div h3 span.composer {
  color: #4b4c48;
  font-weight: 400;
}
section#audio-demos &gt; div ul li &gt; div p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
}
section#audio-demos &gt; div ul li &gt; div p.time {
  color: #4b4c48;
}
section#audio-demos &gt; div ul li &gt; div img {
  filter: url(#flood-filter-stopped);
}
section#audio-demos &gt; div ul li &gt; div svg {
  position: absolute;
  top: 0;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}
section#audio-demos &gt; div ul li &gt; div progress {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: #ded5de;
}
section#audio-demos &gt; div ul li &gt; div progress::-webkit-progress-bar {
  background-color: #ded5de;
}
section#audio-demos &gt; div ul li &gt; div progress::-moz-progress-bar {
  background-color: #cfc6d0;
}
section#audio-demos &gt; div ul li &gt; div progress::-webkit-progress-value {
  background-color: #cfc6d0;
}
@media only screen and (min-width: 320px) {
  section#audio-demos &gt; div ul li button {
    display: grid;
    align-items: center;
    width: 5rem;
    min-height: 7.5rem;
    margin: 0;
    padding: 0;
  }
  section#audio-demos &gt; div ul li div h3 span {
    display: block;
  }
}
@media only screen and (min-width: 720px) {
  section#audio-demos &gt; div ul li button {
    width: 7.5rem;
    height: 7.5rem;
  }
  section#audio-demos &gt; div ul li div h3 span {
    display: inline;
  }
  section#audio-demos &gt; div ul li div p.notes {
    display: block;
    min-height: 3rem;
  }
}
section#audio-demos &gt; div ul li div {
  box-sizing: border-box;
  position: relative;
  flex-grow: 1;
  margin-left: 0.4rem;
  background-position: bottom left;
  background-repeat: repeat-x;
  overflow: hidden;
}
section#audio-demos &gt; div ul li div span.progress {
  position: absolute;
  height: 100%;
}
section#audio-demos &gt; div ul li div h3, section#audio-demos &gt; div ul li div p {
  position: relative;
  box-sizing: border-box;
  margin-left: 1rem;
  margin-right: 1rem;
  line-height: 2.5rem;
}
section#audio-demos &gt; div ul li div p.time {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}
section#audio-demos &gt; div ul li div img {
  z-index: 40;
  width: 100%;
  height: 5rem;
  position: absolute;
  bottom: 0;
}
section#audio-demos &gt; div ul li div progress {
  width: 100%;
  height: 7.5rem;
  flex-shrink: 0;
  position: absolute;
  bottom: 0px;
}

section#upgrades-and-offers {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  width: 100%;
  background-color: #242321;
}
@media only screen and (min-width: 320px) {
  section#upgrades-and-offers {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#upgrades-and-offers {
    padding: 6rem 3rem;
  }
}
section#upgrades-and-offers &gt; div {
  box-sizing: border-box;
  width: 100%;
}
section#upgrades-and-offers &gt; div header {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 4.5rem;
  margin-bottom: 0;
  text-align: center;
}
section#upgrades-and-offers &gt; div header h2 {
  font-size: 3.61rem;
  line-height: 3.61rem;
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  color: #4CB101;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  position: relative;
}
section#upgrades-and-offers &gt; div header h2 abbr {
  text-decoration: none;
}
section#upgrades-and-offers &gt; div header h2 a {
  color: transparent;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
}
section#upgrades-and-offers &gt; div header h2 + p {
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  text-align: center;
  max-width: 100ch;
}
section#upgrades-and-offers &gt; div header h2 {
  color: #9e72a3;
}
section#upgrades-and-offers &gt; div header h2 + p {
  color: #DCDCDC;
}
section#upgrades-and-offers &gt; div div.call-to-action-2nd-tier {
  margin-top: 1.5rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  line-height: 2rem;
  font-size: 1.9rem;
  text-align: center;
}
section#upgrades-and-offers &gt; div div.call-to-action-2nd-tier a {
  color: #9e72a3;
  text-decoration: underline;
}

section#works-to-ways {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #eae9e6;
}
@media only screen and (min-width: 320px) {
  section#works-to-ways {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#works-to-ways {
    padding: 6rem 3rem;
  }
}
section#works-to-ways &gt; div {
  display: flex;
  gap: 3rem;
  width: 100%;
  max-width: 115rem;
}
@media only screen and (min-width: 320px) {
  section#works-to-ways &gt; div {
    flex-direction: column-reverse;
  }
}
@media only screen and (min-width: 720px) {
  section#works-to-ways &gt; div {
    flex-direction: row;
  }
}
section#works-to-ways &gt; div section {
  flex-basis: 100%;
  padding-right: 3rem;
}
section#works-to-ways &gt; div section article {
  margin-bottom: 3rem;
}
section#works-to-ways &gt; div section article h2 {
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 3.61rem;
  line-height: 3.61rem;
  color: #69596a;
  margin-bottom: 1.5rem;
}
section#works-to-ways &gt; div section article p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 1.9rem;
  line-height: 3rem;
}
section#works-to-ways &gt; div section article mark {
  padding: 0 0.5rem;
  padding-bottom: 0.25rem;
  background-color: hsl(294, 20%, 75%);
}
section#works-to-ways &gt; div section article h3 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 5rem;
}
section#works-to-ways &gt; div section article ul {
  margin-left: 3rem;
}
section#works-to-ways &gt; div section article ul li {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 1.9rem;
  line-height: 3rem;
  list-style-type: disc;
}
section#works-to-ways &gt; div figure {
  flex-basis: 100%;
  align-self: center;
}
section#works-to-ways &gt; div figure picture {
  display: flex;
  width: 100%;
}
section#works-to-ways &gt; div figure picture img {
  width: 100%;
}

section#neat-features {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #242321;
}
@media only screen and (min-width: 320px) {
  section#neat-features {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#neat-features {
    padding: 6rem 3rem;
  }
}
section#neat-features &gt; div {
  display: flex;
  justify-content: center;
  max-width: 120rem;
}
@media only screen and (min-width: 320px) {
  section#neat-features &gt; div {
    flex-direction: column;
    gap: 3rem;
  }
}
@media only screen and (min-width: 1000px) {
  section#neat-features &gt; div {
    flex-direction: row;
    gap: 6rem;
  }
}
section#neat-features &gt; div article {
  max-width: 50rem;
}
section#neat-features &gt; div article h2 {
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #9e72a3;
}
section#neat-features &gt; div p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
  color: #fff;
}

section#specifications {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  background-color: #eae9e6;
  justify-content: center;
  display: flex;
}
@media only screen and (min-width: 320px) {
  section#specifications {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#specifications {
    padding: 6rem 3rem;
  }
}
section#specifications &gt; div {
  box-sizing: border-box;
  width: 100%;
  max-width: 120rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
section#specifications &gt; div header {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 4.5rem;
}
section#specifications &gt; div header h2 {
  font-size: 3.61rem;
  line-height: 3.61rem;
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  color: #4CB101;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  position: relative;
}
section#specifications &gt; div header h2 abbr {
  text-decoration: none;
}
section#specifications &gt; div header h2 a {
  color: transparent;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
}
section#specifications &gt; div header h2 + p {
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  text-align: center;
  max-width: 100ch;
}
section#specifications &gt; div header h2 {
  color: #69596a;
}
section#specifications &gt; div header h2 ul {
  font-family: inherit;
}
section#specifications &gt; div header h2 ul li {
  display: inline-block;
  font-family: inherit;
}
section#specifications &gt; div header h2 ul li:after {
  content: " · ";
}
section#specifications &gt; div header h2 ul li:last-child:after {
  content: "";
}
section#specifications &gt; div header h2 ul li.no-dot:after {
  content: "";
}
section#specifications &gt; div ul.digital-audio-workstations {
  box-sizing: border-box;
  list-style-type: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  row-gap: 2.25rem;
  margin-bottom: 3rem;
}
section#specifications &gt; div ul.digital-audio-workstations li {
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 320px) {
  section#specifications &gt; div ul.digital-audio-workstations li {
    flex-basis: 30%;
  }
}
@media only screen and (min-width: 720px) {
  section#specifications &gt; div ul.digital-audio-workstations li {
    flex-basis: 20%;
  }
}
@media only screen and (min-width: 1000px) {
  section#specifications &gt; div ul.digital-audio-workstations li {
    flex-basis: 15%;
  }
}
section#specifications &gt; div ul.digital-audio-workstations li a {
  display: flex;
  justify-content: center;
}
section#specifications &gt; div ul.digital-audio-workstations li a picture img {
  width: 4.1rem;
  height: 4.1rem;
}
section#specifications &gt; div ul.digital-audio-workstations li h3 {
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.35rem;
  line-height: 1.875rem;
}
section#specifications &gt; div ul.digital-audio-workstations li p {
  margin-top: 0.75rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
  text-decoration: none;
  font-size: 1.35rem;
  line-height: 1.35rem;
}
section#specifications &gt; div ul.minimum-system-requirements {
  list-style-type: none;
  display: flex;
  gap: 3rem;
  justify-content: center;
}
@media only screen and (min-width: 320px) {
  section#specifications &gt; div ul.minimum-system-requirements {
    flex-direction: column;
  }
}
@media only screen and (min-width: 720px) {
  section#specifications &gt; div ul.minimum-system-requirements {
    flex-direction: row;
  }
}
section#specifications &gt; div ul.minimum-system-requirements &gt; li h3 {
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
section#specifications &gt; div ul.minimum-system-requirements &gt; li &gt; ul {
  list-style-type: square;
}
section#specifications &gt; div ul.minimum-system-requirements &gt; li &gt; ul &gt; li {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
  font-size: 1.52rem;
  line-height: 2.4rem;
  margin-left: 2.2rem;
}
section#specifications &gt; div p.note {
  margin-top: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
  font-size: 1.52rem;
  line-height: 2.4rem;
  text-align: center;
}

section#resources {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  background-color: #f5f4f2;
}
@media only screen and (min-width: 320px) {
  section#resources {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#resources {
    padding: 6rem 3rem;
  }
}
section#resources &gt; div {
  box-sizing: border-box;
  display: grid;
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  gap: 3rem;
}
@media only screen and (min-width: 320px) {
  section#resources &gt; div {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 720px) {
  section#resources &gt; div {
    grid-template-columns: 1fr 1fr;
  }
}
section#resources &gt; div &gt; section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section#resources &gt; div &gt; section h2 {
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #756378;
  text-transform: uppercase;
}
section#resources &gt; div &gt; section p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
  padding-bottom: 0.5rem;
}
section#resources &gt; div &gt; section div.call-to-action-2nd-tier {
  text-align: center;
  margin-top: auto;
}
section#resources &gt; div &gt; section div.call-to-action-2nd-tier a {
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  line-height: 3rem;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

section.benefits, .LAYOUTS {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  background-color: #686763;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media only screen and (min-width: 320px) {
  section.benefits, .LAYOUTS {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section.benefits, .LAYOUTS {
    padding: 6rem 3rem;
  }
}
section.benefits &gt; div, .LAYOUTS &gt; div {
  box-sizing: border-box;
  width: 100%;
}
@media only screen and (min-width: 720px) {
  section.benefits &gt; div, .LAYOUTS &gt; div {
    max-width: 180ch;
  }
}
@media only screen and (min-width: 1710px) {
  section.benefits &gt; div, .LAYOUTS &gt; div {
    max-width: 360ch;
  }
}
section.benefits &gt; div ul, .LAYOUTS &gt; div ul {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}
section.benefits &gt; div ul li, .LAYOUTS &gt; div ul li {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  text-align: center;
}
section.benefits &gt; div ul li img, .LAYOUTS &gt; div ul li img {
  width: 6rem;
  height: 6rem;
}
section.benefits &gt; div ul li h2, .LAYOUTS &gt; div ul li h2 {
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: white;
  color: #FFFFFD;
  text-transform: uppercase;
}
@media only screen and (min-width: 320px) {
  section.benefits &gt; div ul li h2, .LAYOUTS &gt; div ul li h2 {
    margin-top: 0.75rem;
  }
}
section.benefits &gt; div ul li p, .LAYOUTS &gt; div ul li p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
  color: #FFFFFD;
}
@media only screen and (min-width: 320px) {
  section.benefits &gt; div ul, .LAYOUTS &gt; div ul {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  section.benefits &gt; div ul li, .LAYOUTS &gt; div ul li {
    flex-basis: 100%;
    max-width: 90ch;
  }
}
@media only screen and (min-width: 720px) {
  section.benefits &gt; div ul, .LAYOUTS &gt; div ul {
    gap: 6rem 3rem;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: start;
  }
  section.benefits &gt; div ul li, .LAYOUTS &gt; div ul li {
    flex-basis: calc((100% - 3rem) / 2);
  }
}
@media only screen and (min-width: 1710px) {
  section.benefits &gt; div ul, .LAYOUTS &gt; div ul {
    gap: 6rem 3rem;
    flex-direction: row;
    flex-wrap: wrap;
  }
  section.benefits &gt; div ul li, .LAYOUTS &gt; div ul li {
    flex-basis: calc((100% - 9rem) / 4);
  }
}

/*# sourceMappingURL=beatmaker-bundle.css.map */
</pre></body></html>