@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 > header {
    width: 100%;
    height: 7rem;
    position: sticky;
    top: 0;
    z-index: 500;
  }
  body > header > div.laptop-screens {
    display: none;
  }
  body > header > 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 > header > div.tablet-screens nav > p, body > header > div.tablet-screens nav > p > a, body > header > div.tablet-screens nav > ul > li {
    line-height: 7rem;
  }
  body > header > 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 > header > div.tablet-screens figure {
    margin-right: auto;
  }
  body > header > div.tablet-screens figure img {
    height: 7rem;
    cursor: pointer;
  }
  body > header > div.tablet-screens canvas {
    width: 7rem;
    height: 7rem;
  }
  body > header > div.tablet-screens nav.cart {
    margin-right: 2rem;
    flex-shrink: 2;
    display: flex;
    align-items: center;
  }
  body > header > div.tablet-screens nav.cart p.empty {
    background-color: #394336;
    opacity: 0.6;
  }
  body > header > 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 > header > div.tablet-screens nav.cart p img {
    display: inline-block;
    width: 3rem;
    height: 3rem;
  }
  body > header > div.tablet-screens nav.cart p span {
    display: inline-block;
    height: 3rem;
    width: 3rem;
    line-height: 3rem;
    text-align: center;
    color: white;
  }
  body > header > 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 > header > 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 > header > div.tablet-screens nav.main figure.nav-main-menu-icon span.top_rect {
    left: 5px;
    top: 7.5px;
  }
  body > header > div.tablet-screens nav.main figure.nav-main-menu-icon span.top_rect.to_close {
    animation-name: anim_top_rect_to_close;
  }
  body > header > div.tablet-screens nav.main figure.nav-main-menu-icon span.top_rect.to_open {
    animation-name: anim_top_rect_to_open;
  }
  body > header > div.tablet-screens nav.main figure.nav-main-menu-icon span.mid_rect {
    left: 5px;
    top: 12.5px;
  }
  body > header > div.tablet-screens nav.main figure.nav-main-menu-icon span.mid_rect.to_close {
    animation-name: anim_mid_rect_to_close;
  }
  body > header > div.tablet-screens nav.main figure.nav-main-menu-icon span.mid_rect.to_open {
    animation-name: anim_mid_rect_to_open;
  }
  body > header > div.tablet-screens nav.main figure.nav-main-menu-icon span.bot_rect {
    left: 5px;
    top: 17.5px;
  }
  body > header > div.tablet-screens nav.main figure.nav-main-menu-icon span.bot_rect.to_close {
    animation-name: anim_bot_rect_to_close;
  }
  body > header > 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 > header > div.tablet-screens nav.main, body > header > div.tablet-screens nav.cart {
    display: flex;
    align-items: center;
    margin-top: auto;
    margin-bottom: auto;
  }
  body > header > div.tablet-screens nav.main div, body > header > 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 > header > div.tablet-screens nav.main div ul, body > header > 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 > header > div.tablet-screens nav.main div ul li, body > header > 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 > header > div.tablet-screens nav.main div ul li::last, body > header > div.tablet-screens nav.cart div ul li::last {
    padding-bottom: 0px;
  }
  body > header > div.tablet-screens nav.main div ul li hr, body > header > 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 > header > div.tablet-screens nav.main div ul li a, body > header > div.tablet-screens nav.cart div ul li a {
    display: flex;
    align-items: center;
    width: 100%;
  }
  body > header > div.tablet-screens nav.main div ul li a img, body > header > div.tablet-screens nav.cart div ul li a img {
    width: 3rem;
    height: 3rem;
    margin-right: 1rem;
  }
  body > header > div.tablet-screens nav.main div ul li:nth-child(1), body > header > div.tablet-screens nav.cart div ul li:nth-child(1) {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  body > header > div.tablet-screens nav.main div ul li:nth-child(1) a img, body > header > div.tablet-screens nav.cart div ul li:nth-child(1) a img {
    width: auto;
    height: 7rem;
  }
  body > header > div.tablet-screens li, body > header > div.tablet-screens a, body > header > 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 > header {
    width: 100%;
    height: 8rem;
    position: sticky;
    top: 0;
  }
  body > header > div.tablet-screens {
    display: none;
  }
  body > header > 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 > header > div.laptop-screens li, body > header > div.laptop-screens a, body > header > div.laptop-screens p {
    color: #CECCC6;
    font-size: 1.92rem;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
  }
  body > header > div.laptop-screens nav.home {
    display: block;
    height: 8rem;
    grid-column: 1;
    grid-row: 1;
  }
  body > header > div.laptop-screens nav.home > a {
    z-index: 40;
    display: inline-block;
  }
  body > header > div.laptop-screens nav.home > a figure {
    display: block;
    height: 8rem;
  }
  body > header > div.laptop-screens nav.home > a figure img {
    display: block;
    height: 8rem;
  }
  body > header > div.laptop-screens nav.main {
    grid-column: 1/-1;
    grid-row: 1;
  }
  body > header > div.laptop-screens nav.main ul {
    display: flex;
    justify-content: center;
    gap: 3rem;
  }
  body > header > div.laptop-screens nav.main ul li {
    z-index: 18;
  }
  body > header > div.laptop-screens nav.main ul li a {
    display: flex;
    align-items: center;
    height: 8rem;
  }
  body > header > div.laptop-screens nav.cart {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  body > header > div.laptop-screens nav.cart p.empty {
    background-color: #394336;
    opacity: 0.6;
  }
  body > header > 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 > header > div.laptop-screens nav.cart p img {
    display: inline-block;
    width: 3rem;
    height: 3rem;
  }
  body > header > div.laptop-screens nav.cart p span {
    display: inline-block;
    height: 3rem;
    width: 3rem;
    line-height: 3rem;
    text-align: center;
    color: white;
  }
  body > header > div.laptop-screens p.account {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    height: 8rem;
    align-items: center;
  }
  body > header > div.laptop-screens p.account a {
    height: 8rem;
    display: flex;
    align-items: center;
  }
  body > header > div.laptop-screens nav.account {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    height: 8rem;
    align-items: center;
  }
  body > header > div.laptop-screens nav.account p {
    height: 4rem;
    line-height: 4rem;
  }
  body > header > div.laptop-screens nav.account p img {
    display: inline-block;
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    margin: 0 1.5rem;
  }
  body > header > div.laptop-screens li {
    list-style-type: none;
    display: inline;
    margin: 0;
  }
  body > header > div.laptop-screens figure a {
    cursor: default;
  }
  body > header > div.laptop-screens figure img {
    height: 8rem;
    cursor: pointer;
  }
  body > header > 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 > header > 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 > header > div.laptop-screens nav.account div ul {
    background-color: #1F1E1C;
    position: absolute;
    top: 8rem;
    right: 2rem;
    padding: 1rem;
  }
  body > header > div.laptop-screens nav.account div ul li {
    display: flex;
    align-items: center;
    padding: 1rem;
    height: 3rem;
    line-height: 3rem;
  }
  body > header > div.laptop-screens nav.account div ul li a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  body > header > div.laptop-screens nav.account div ul li a img {
    margin-right: 1rem;
    width: 3rem;
    height: 3rem;
  }
  body > header > div.laptop-screens nav.account div ul li hr {
    background-color: #3b3b3b;
    margin: 0px 0px 2rem 0px;
    height: 2px;
  }
}
body > section#promo, body > 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 > section#promo a, body > 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 > section#promo a article, body > 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 > section#promo a aside, body > 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 > 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 > 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 > section#messages div img.close-icon {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
body > section#messages div ul {
  width: 100%;
}
body > 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 > section#messages div ul li::before {
  content: "▬";
  position: absolute;
  left: 3rem;
}
body > section#messages div ul li.debug::before {
  color: goldenrod;
}
body > section#messages div ul li.info::before {
  color: skyblue;
}
body > section#messages div ul li.success::before {
  color: limegreen;
}
body > section#messages div ul li.warning::before {
  color: orange;
}
body > section#messages div ul li.error::before {
  color: red;
}
body > section#messages div ul li strong {
  color: black;
  font: inherit;
  font-weight: bold;
}
body > section#messages div ul li .underline {
  text-decoration: underline;
}
body > footer {
  background-color: #373633;
}
body > footer li, body > footer span, body > footer a, body > footer p, body > 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 > 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 > footer section.util form {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 720px) {
  body > footer section.util form {
    margin: 0;
  }
}
body > footer section.util form img {
  width: 3rem;
  height: 3rem;
  vertical-align: bottom;
}
body > footer section.util form span {
  vertical-align: bottom;
  margin-left: 0.5rem;
}
body > footer section#engagement {
  text-align: center;
}
body > 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 > 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 > 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 > 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 > footer section#engagement button[type=submit].call-to-action-option span {
  background-color: rgb(32.4494382022, 75.5730337079, 0.4269662921);
}
body > footer section#engagement button[type=submit] span, body > 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 > 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 > footer section#engagement input[type=submit]:focus {
  outline: none;
}
body > 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 > footer {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  body > footer {
    padding: 6rem 3rem;
  }
}
body > footer div {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 320px) {
  body > footer div {
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
  }
  body > footer div nav {
    display: flex;
    justify-content: center;
  }
  body > footer div nav ul {
    display: block;
    column-count: 2;
    column-gap: 3rem;
    list-style-type: none;
  }
  body > footer div section.newsletter form {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
    align-items: center;
  }
  body > footer div section.newsletter form button span {
    background-color: #28a15b !important;
  }
  body > footer div section.social-media {
    margin-top: 3rem;
  }
  body > footer div section.social-media ul {
    list-style-type: none;
    display: flex;
    gap: 2rem;
    justify-content: center;
  }
  body > footer div section.social-media ul li {
    display: block;
  }
  body > footer div section.social-media ul li a {
    display: block;
    line-height: 0;
    font-size: 0;
  }
}
@media only screen and (min-width: 720px) {
  body > footer div {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  body > footer div nav {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    box-sizing: border-box;
  }
  body > footer div nav ul {
    width: 75%;
    margin-right: auto;
  }
  body > footer div nav ul li {
    break-inside: avoid;
    width: 20ch;
  }
  body > footer div section.util {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    align-self: end;
  }
  body > 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 > footer div {
    max-width: 90rem;
  }
}
@media only screen and (min-width: 1281px) {
  body > footer div {
    max-width: 100rem;
  }
}
@media only screen and (min-width: 1710px) {
  body > footer div {
    max-width: 110rem;
  }
}
body > footer > p {
  width: 100%;
  text-align: center;
  background-color: #373633;
  margin: 0;
  margin-top: 3rem;
}
body > footer > p.to-the-top, body > footer > p.to-the-top a {
  color: hsl(45, 7.55%, 40%);
}
body > footer > 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 > 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 > div {
    height: 100%;
    margin: 0 5rem 0 0;
  }
}
@media only screen and (min-width: 720px) {
  section#lightbox > div {
    height: fit-content;
    margin: 4.5rem;
  }
}
@media only screen and (min-width: 320px) {
  section#lightbox > div img.close-icon {
    display: none;
  }
}
@media only screen and (min-width: 720px) {
  section#lightbox > div img.close-icon {
    display: block;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
  }
}
section#lightbox > div section#cart-detail-empty button.call-to-action-2nd-tier {
  margin-bottom: 3rem;
}
section#lightbox > div > section {
  box-sizing: border-box;
  width: 100%;
  opacity: 0;
  transition: height 0.5s;
}
@media only screen and (min-width: 320px) {
  section#lightbox > div > section {
    overflow-y: scroll;
    padding: 0 3.6rem 0 3.6rem;
    max-height: calc(100vh - 7.2rem);
  }
  section#lightbox > div > section div > img {
    display: none;
  }
}
@media only screen and (min-width: 720px) {
  section#lightbox > div > section {
    overflow: auto;
    max-height: calc(100vh - 9rem - 7.2rem);
  }
}
section#lightbox > div > section img {
  display: block;
}
section#lightbox > div > section img.close-icon {
  cursor: pointer;
}
section#lightbox > div > section .cart-icon, section#lightbox > div > section svg {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 4.5rem;
  height: 4.5rem;
}
section#lightbox > div > section .cart-icon g#cart-add-item, section#lightbox > div > section svg g#cart-add-item {
  fill: transparent;
}
section#lightbox > div > section .cart-icon path#cart,
section#lightbox > div > section .cart-icon g#checkmark path,
section#lightbox > div > section .cart-icon g#cart-filled path,
section#lightbox > div > section .cart-icon path#Combined-Shape,
section#lightbox > div > section .cart-icon path#dummy, section#lightbox > div > section svg path#cart,
section#lightbox > div > section svg g#checkmark path,
section#lightbox > div > section svg g#cart-filled path,
section#lightbox > div > section svg path#Combined-Shape,
section#lightbox > div > section svg path#dummy {
  fill: #17a352 !important;
}
section#lightbox > div > 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 > div > 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 > div > section h3 {
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
}
section#lightbox > div > 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 > div > section h3 input[type=text], section#lightbox > div > section h3 input[type=email], section#lightbox > div > 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 > div > 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 > div > section ul.cart-items {
  list-style-type: none;
  margin-bottom: 3rem;
  box-sizing: border-box;
}
section#lightbox > div > 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 > div > section ul.cart-items li.short {
  margin-left: auto;
  width: 22rem;
}
section#lightbox > div > section ul.cart-items li:first-child {
  border-top: 1px solid black;
}
section#lightbox > div > section ul.cart-items li:hover img {
  opacity: 100%;
}
section#lightbox > div > section ul.cart-items li img {
  display: inline;
  vertical-align: bottom;
  opacity: 100%;
  cursor: pointer;
}
section#lightbox > div > section ul.cart-items li p {
  font: inherit;
  line-height: 3rem;
}
section#lightbox > div > section ul.cart-items li p.name {
  margin-right: auto;
  overflow: hidden;
}
section#lightbox > div > section ul.cart-items li p.subtotal, section#lightbox > div > section ul.cart-items li p.subtotal-amount, section#lightbox > div > section ul.cart-items li p.taxes, section#lightbox > div > section ul.cart-items li p.taxes-amount, section#lightbox > div > section ul.cart-items li p.total, section#lightbox > div > section ul.cart-items li p.total-amount {
  width: 12rem;
  text-align: right;
}
section#lightbox > div > section ul.cart-items li p.price-regular {
  text-decoration: line-through;
  opacity: 0.5;
  text-align: right;
}
section#lightbox > div > section ul.cart-items li p.price-current {
  text-align: right;
  margin-left: 0.5rem;
}
section#lightbox > div > section ul.cart-items li p.subtotal, section#lightbox > div > section ul.cart-items li p.taxes, section#lightbox > div > section ul.cart-items li p.total {
  margin-left: auto;
}
section#lightbox > div > section ul.cart-items li p.subtotal, section#lightbox > div > section ul.cart-items li p.subtotal-amount, section#lightbox > div > section ul.cart-items li p.total, section#lightbox > div > section ul.cart-items li p.total-amount {
  font-weight: bold;
}
section#lightbox > div > 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 > div > section img.payment-methods {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 386px;
}
section#lightbox > div > section > 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 > div > section > div.call-to-action {
    flex-direction: column;
  }
  section#lightbox > div > section > div.call-to-action button {
    display: list-item;
    margin: 1rem 0;
  }
}
@media only screen and (min-width: 720px) {
  section#lightbox > div > section > div.call-to-action {
    flex-direction: row;
  }
  section#lightbox > div > section > div.call-to-action button {
    margin: 0 1rem;
  }
}
section#lightbox > div > 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 > div > section button:focus {
  outline: none;
}
section#lightbox > div > 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 > div > section button.call-to-action.call-to-action-option span {
  background-color: rgb(32.4494382022, 75.5730337079, 0.4269662921);
}
section#lightbox > div > section button.call-to-action span, section#lightbox > div > 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 > div > section button.call-to-action span {
  background-color: #15a150 !important;
}
section#lightbox > div > 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 > div > section button.call-to-action-option.call-to-action-option span {
  background-color: rgb(32.4494382022, 75.5730337079, 0.4269662921);
}
section#lightbox > div > section button.call-to-action-option span, section#lightbox > div > 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 > div > section button.call-to-action-option span {
  background-color: rgb(9.2307692308, 70.7692307692, 35.1648351648) !important;
}
section#lightbox > div > 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 {
  width: 100%;
  position: relative;
}
section#hero ul#hero-gallery-container {
  width: 100%;
  margin-top: -1px;
  display: flex;
  flex-direction: row;
  list-style-type: none;
  scroll-snap-type: x mandatory;
  overflow-x: scroll;
  -ms-overflow-style: none;
}
section#hero ul#hero-gallery-container::-webkit-scrollbar {
  display: none;
}
section#hero ul#hero-gallery-container li {
  flex-basis: 100%;
  flex-shrink: 0;
  scroll-snap-align: center;
}
section#hero ul#hero-gallery-controls {
  width: 100%;
  position: absolute;
  bottom: 1.5rem;
  list-style-type: none;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  z-index: 100;
}
section#hero ul#hero-gallery-controls li {
  margin: 0;
}
section#hero ul#hero-gallery-controls button {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: "Knockout 34 A", "Knockout 34 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 15px;
  text-transform: uppercase;
  color: white;
  background-color: darkgrey;
  cursor: pointer;
  border: 0px solid white;
  padding: 1.5rem 3rem;
  font-family: "Knockout 51 A", "Knockout 51 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 18px;
  line-height: 3rem;
  box-sizing: border-box;
  border-radius: 1.998rem;
  height: 3.996rem;
  line-height: 3.996rem;
  min-width: 3.996rem;
  margin: 0 2px;
  padding: 0 1.5rem;
}
section#hero ul#hero-gallery-controls button:focus {
  outline: none;
}
section#hero ul#hero-gallery-controls button:hover {
  background: rgb(181.75, 181.75, 181.75);
}
section#hero ul#hero-gallery-controls button.current {
  background: #767676;
}
section#hero ul#hero-gallery-controls li:last-child button {
  background-image: url("../images/gallery-next.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
section#hero ul#hero-gallery-controls li:first-child button {
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../images/gallery-previous.svg");
}

section#hero ul#hero-gallery-container li, .GRID-LAYOUT-ONLY {
  box-sizing: border-box;
  width: 100%;
  display: grid;
}
@media only screen and (min-width: 320px) {
  section#hero ul#hero-gallery-container li, .GRID-LAYOUT-ONLY {
    grid-template-columns: 100%;
    grid-template-rows: 32vh 40vh 8.5rem;
  }
  section#hero ul#hero-gallery-container li div.background-top, .GRID-LAYOUT-ONLY div.background-top {
    grid-column: 1;
    grid-row: 1;
  }
  section#hero ul#hero-gallery-container li div.background-bottom, .GRID-LAYOUT-ONLY div.background-bottom {
    grid-column: 1;
    grid-row: 2/4;
  }
  section#hero ul#hero-gallery-container li article, .GRID-LAYOUT-ONLY article {
    grid-column: 1;
    grid-row: 1/3;
    justify-self: center;
  }
}
@media only screen and (min-width: 720px) {
  section#hero ul#hero-gallery-container li, .GRID-LAYOUT-ONLY {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 20rem) 8.5rem;
  }
  section#hero ul#hero-gallery-container li div.background-top, .GRID-LAYOUT-ONLY div.background-top {
    grid-column: 1;
    grid-row: 1/2;
  }
  section#hero ul#hero-gallery-container li div.background-bottom, .GRID-LAYOUT-ONLY div.background-bottom {
    grid-column: 1;
    grid-row: 2/5;
  }
  section#hero ul#hero-gallery-container li article, .GRID-LAYOUT-ONLY article {
    grid-column: 1;
    grid-row: 1/3;
    justify-self: unset;
  }
}
@media only screen and (min-width: 1000px) {
  section#hero ul#hero-gallery-container li, .GRID-LAYOUT-ONLY {
    grid-template-columns: 1fr;
    grid-template-rows: 18rem 18rem 8.5rem;
  }
  section#hero ul#hero-gallery-container li article, .GRID-LAYOUT-ONLY article {
    justify-self: unset;
  }
}
@media only screen and (min-width: 1710px) {
  section#hero ul#hero-gallery-container li article, .GRID-LAYOUT-ONLY article {
    justify-self: center;
  }
}

section#hero ul#hero-gallery-container li article, .GENTLE-DEFAULTS {
  z-index: 18;
}
section#hero ul#hero-gallery-container li article svg, .GENTLE-DEFAULTS svg {
  display: initial;
}
section#hero ul#hero-gallery-container li article svg path#text, .GENTLE-DEFAULTS svg path#text {
  fill: orange;
}
section#hero ul#hero-gallery-container li article header h1, .GENTLE-DEFAULTS header h1 {
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  color: #fff;
  text-transform: uppercase;
}
@media only screen and (min-width: 320px) {
  section#hero ul#hero-gallery-container li article header h1, .GENTLE-DEFAULTS header h1 {
    font-size: 4.332rem;
    line-height: 4.8rem;
  }
}
@media only screen and (min-width: 720px) {
  section#hero ul#hero-gallery-container li article header h1, .GENTLE-DEFAULTS header h1 {
    font-size: 5.776rem;
    line-height: 6.4rem;
  }
}
@media only screen and (min-width: 1000px) {
  section#hero ul#hero-gallery-container li article header h1, .GENTLE-DEFAULTS header h1 {
    font-size: 7.22rem;
    line-height: 8rem;
  }
}
@media only screen and (min-width: 320px) {
  section#hero ul#hero-gallery-container li article header h1, .GENTLE-DEFAULTS header h1 {
    font-size: 2.8rem;
    line-height: 3rem;
    margin: 0;
    padding: 0;
  }
}
@media only screen and (min-width: 720px) {
  section#hero ul#hero-gallery-container li article header h1, .GENTLE-DEFAULTS header h1 {
    font-size: 4.6rem;
    line-height: 4.6rem;
    padding-top: 0;
  }
}
section#hero ul#hero-gallery-container li article header h1, .GENTLE-DEFAULTS header h1 {
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  color: #fff;
  text-transform: uppercase;
}
@media only screen and (min-width: 320px) {
  section#hero ul#hero-gallery-container li article header h1, .GENTLE-DEFAULTS header h1 {
    font-size: 4.332rem;
    line-height: 4.8rem;
  }
}
@media only screen and (min-width: 720px) {
  section#hero ul#hero-gallery-container li article header h1, .GENTLE-DEFAULTS header h1 {
    font-size: 5.776rem;
    line-height: 6.4rem;
  }
}
@media only screen and (min-width: 1000px) {
  section#hero ul#hero-gallery-container li article header h1, .GENTLE-DEFAULTS header h1 {
    font-size: 7.22rem;
    line-height: 8rem;
  }
}
@media only screen and (min-width: 320px) {
  section#hero ul#hero-gallery-container li article header h1, .GENTLE-DEFAULTS header h1 {
    font-size: 2.8rem;
    line-height: 3rem;
    margin: 0;
    padding: 0;
  }
}
@media only screen and (min-width: 720px) {
  section#hero ul#hero-gallery-container li article header h1, .GENTLE-DEFAULTS header h1 {
    font-size: 4.6rem;
    line-height: 4.6rem;
    padding-top: 0;
  }
}
section#hero ul#hero-gallery-container li article header p, .GENTLE-DEFAULTS 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 ul#hero-gallery-container li article header p, .GENTLE-DEFAULTS header p {
    font-size: 1.4rem;
    line-height: 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#hero ul#hero-gallery-container li article header p, .GENTLE-DEFAULTS header p {
    font-size: 2rem;
    line-height: 2.4rem;
    margin: 0;
  }
}
section#hero ul#hero-gallery-container li article figure, .GENTLE-DEFAULTS figure {
  width: 100%;
  height: 100%;
}
section#hero ul#hero-gallery-container li article figure picture, .GENTLE-DEFAULTS figure picture {
  width: 100%;
  height: 100%;
}
section#hero ul#hero-gallery-container li article figure picture img, .GENTLE-DEFAULTS figure picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
section#hero ul#hero-gallery-container li article p, .GENTLE-DEFAULTS p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  font-size: 1.92rem;
  line-height: 2.4rem;
  color: white;
  padding: 0 1.5rem;
}
section#hero ul#hero-gallery-container li article footer, .GENTLE-DEFAULTS footer {
  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 ul#hero-gallery-container li article footer, .GENTLE-DEFAULTS footer {
    font-size: 1.4rem;
    line-height: 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#hero ul#hero-gallery-container li article footer, .GENTLE-DEFAULTS footer {
    font-size: 2rem;
    line-height: 2.4rem;
    margin: 0;
  }
}

section#hero ul#hero-gallery-container li.sound-pack article, .GRID-LAYOUT-ONLY {
  display: grid;
  align-items: center;
  justify-items: center;
  text-align: center;
}
@media only screen and (min-width: 320px) {
  section#hero ul#hero-gallery-container li.sound-pack article, .GRID-LAYOUT-ONLY {
    grid-template-columns: 1fr;
    grid-template-rows: 4.2rem calc(16vh - 4.2rem) 32vh auto min-content;
    justify-self: stretch;
  }
  section#hero ul#hero-gallery-container li.sound-pack article svg, .GRID-LAYOUT-ONLY svg {
    grid-column: 1;
    grid-row: 1;
    height: 4.2rem;
  }
  section#hero ul#hero-gallery-container li.sound-pack article header, .GRID-LAYOUT-ONLY header {
    grid-column: 1;
    grid-row: 2;
  }
  section#hero ul#hero-gallery-container li.sound-pack article figure, .GRID-LAYOUT-ONLY figure {
    grid-column: 1;
    grid-row: 3;
  }
  section#hero ul#hero-gallery-container li.sound-pack article p, .GRID-LAYOUT-ONLY p {
    grid-column: 1;
    grid-row: 4;
  }
  section#hero ul#hero-gallery-container li.sound-pack article footer, .GRID-LAYOUT-ONLY footer {
    grid-column: 1;
    grid-row: 5;
  }
}
@media only screen and (min-width: 720px) {
  section#hero ul#hero-gallery-container li.sound-pack article, .GRID-LAYOUT-ONLY {
    grid-template-columns: 3rem 1fr 1fr 3rem;
    grid-template-rows: 5rem calc(50% - 5rem) 1fr min-content;
    justify-self: stretch;
  }
  section#hero ul#hero-gallery-container li.sound-pack article svg, .GRID-LAYOUT-ONLY svg {
    grid-column: 2;
    grid-row: 1;
    height: 5rem;
  }
  section#hero ul#hero-gallery-container li.sound-pack article header, .GRID-LAYOUT-ONLY header {
    grid-column: 2;
    grid-row: 2;
  }
  section#hero ul#hero-gallery-container li.sound-pack article figure, .GRID-LAYOUT-ONLY figure {
    grid-column: 3;
    grid-row: 1/5;
  }
  section#hero ul#hero-gallery-container li.sound-pack article p, .GRID-LAYOUT-ONLY p {
    grid-column: 2;
    grid-row: 3;
  }
  section#hero ul#hero-gallery-container li.sound-pack article footer, .GRID-LAYOUT-ONLY footer {
    grid-column: 2;
    grid-row: 4;
  }
}
@media only screen and (min-width: 1000px) {
  section#hero ul#hero-gallery-container li.sound-pack article, .GRID-LAYOUT-ONLY {
    grid-template-columns: 45rem 45rem;
    justify-self: center;
  }
  section#hero ul#hero-gallery-container li.sound-pack article svg, .GRID-LAYOUT-ONLY svg {
    grid-column: 1;
    grid-row: 1;
  }
  section#hero ul#hero-gallery-container li.sound-pack article header, .GRID-LAYOUT-ONLY header {
    grid-column: 1;
    grid-row: 2;
  }
  section#hero ul#hero-gallery-container li.sound-pack article figure, .GRID-LAYOUT-ONLY figure {
    grid-column: 2;
    grid-row: 1/5;
  }
  section#hero ul#hero-gallery-container li.sound-pack article p, .GRID-LAYOUT-ONLY p {
    grid-column: 1;
    grid-row: 3;
  }
  section#hero ul#hero-gallery-container li.sound-pack article footer, .GRID-LAYOUT-ONLY footer {
    grid-column: 1;
    grid-row: 4;
  }
}

section#hero ul#hero-gallery-container li.sound-pack article footer, .GRID-LAYOUT-ONLY {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: min-content min-content;
  gap: 1.5rem 3rem;
}
section#hero ul#hero-gallery-container li.sound-pack article footer div.prices, .GRID-LAYOUT-ONLY div.prices {
  grid-column: 1;
  grid-row: 1;
}
section#hero ul#hero-gallery-container li.sound-pack article footer p.call-to-action-2nd-tier, .GRID-LAYOUT-ONLY p.call-to-action-2nd-tier {
  grid-column: 2;
  grid-row: 1;
}
section#hero ul#hero-gallery-container li.sound-pack article footer button, .GRID-LAYOUT-ONLY button {
  grid-column: 1/3;
  grid-row: 2;
}

section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 {
  background: radial-gradient(ellipse, #fff -100%, #000 150%);
  overflow: hidden;
}
section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 div.background-top {
  background-color: #ac2329;
  mix-blend-mode: overlay;
}
section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 div.background-bottom {
  background-color: #32312e;
  mix-blend-mode: overlay;
}
section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 article {
  column-gap: 6rem;
}
section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 article svg {
  display: default;
}
section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 article svg path#text {
  fill: #fff;
}
section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 article figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 320px) {
  section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 article figure {
    height: 80%;
  }
}
@media only screen and (min-width: 720px) {
  section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 article figure {
    height: 53%;
  }
}
@media only screen and (min-width: 1000px) {
  section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 article figure {
    height: 80%;
  }
}
section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 article figure picture {
  width: auto;
  position: relative;
}
section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 article figure picture::before {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzgwcHgiIGhlaWdodD0iOTVweCIgdmlld0JveD0iMCAwIDM4MCA5NSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGQ9Ik05NSwwIEwyODUsMCBDMzM3LjQ2NzA1MSwtOS42MzgwNDA5NWUtMTUgMzgwLDQyLjUzMjk0ODggMzgwLDk1IEwzODAsOTUgTDM4MCw5NSBMMCw5NSBDLTYuNDI1MzYwNjRlLTE1LDQyLjUzMjk0ODggNDIuNTMyOTQ4OCw5LjYzODA0MDk1ZS0xNSA5NSwwIFoiIGlkPSJSZWN0YW5nbGUiIGZpbGw9IiMwMDAwMDAiPjwvcGF0aD4KICAgIDwvZz4KPC9zdmc+);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 95%;
  filter: blur(10px);
  opacity: 0.5;
  z-index: -1;
}
@media only screen and (min-width: 320px) {
  section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 article figure picture img {
    object-fit: contain;
    object-position: center;
  }
}
@media only screen and (min-width: 720px) {
  section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 article figure picture img {
    object-fit: contain;
    object-position: center;
  }
}
section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 article header picture {
  display: flex;
  justify-self: center;
  max-width: 33rem;
}
section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 article header picture img {
  width: 100%;
}
section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 article header p {
  color: #b2adad;
}
section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 article p {
  color: white;
}
section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 article footer div.prices {
  margin-bottom: 0.5rem;
}
section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 article footer div.prices span {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 1.94rem;
  line-height: 2.4rem;
  color: white;
}
section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 article footer div.prices span.regular {
  color: #b6b5af;
}
section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 article footer div.prices span.regular data {
  text-decoration: line-through;
  text-decoration-thickness: 0.2rem;
}
section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 article footer div.prices span small {
  font: inherit;
  vertical-align: text-top;
  font-size: 66.6666%;
}
section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 article footer div.prices span data {
  font: inherit;
}
section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 article footer p.call-to-action-2nd-tier {
  text-decoration: underline;
  cursor: pointer;
  text-transform: none;
  font-weight: 600;
}
section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 article footer 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;
  justify-content: center;
}
section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 article footer button.add-to-cart.call-to-action-option span {
  background-color: rgb(125.7250996016, 31.2749003984, 35.6533864542);
}
section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 article footer button.add-to-cart span, section#hero ul#hero-gallery-container li.for-lounge-lizard-ep-5 article footer 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: #cd363d;
  color: white;
}

section#hero ul#hero-gallery-container li.for-multiphonics-cv-3 {
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.9411764706) -100%, rgba(0, 0, 0, 0.9411764706) 150%);
  overflow: hidden;
}
section#hero ul#hero-gallery-container li.for-multiphonics-cv-3 div.background-top {
  background-color: #327aad;
  mix-blend-mode: overlay;
}
section#hero ul#hero-gallery-container li.for-multiphonics-cv-3 div.background-bottom {
  background-color: #32312e;
  mix-blend-mode: overlay;
}
section#hero ul#hero-gallery-container li.for-multiphonics-cv-3 article svg {
  display: default;
}
section#hero ul#hero-gallery-container li.for-multiphonics-cv-3 article svg path#text {
  fill: #ab4b5b;
}
section#hero ul#hero-gallery-container li.for-multiphonics-cv-3 article figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 320px) {
  section#hero ul#hero-gallery-container li.for-multiphonics-cv-3 article figure {
    height: 80%;
  }
}
@media only screen and (min-width: 720px) {
  section#hero ul#hero-gallery-container li.for-multiphonics-cv-3 article figure {
    height: 60%;
  }
}
@media only screen and (min-width: 1000px) {
  section#hero ul#hero-gallery-container li.for-multiphonics-cv-3 article figure {
    height: 85%;
  }
}
section#hero ul#hero-gallery-container li.for-multiphonics-cv-3 article figure picture {
  width: auto;
  position: relative;
}
section#hero ul#hero-gallery-container li.for-multiphonics-cv-3 article figure picture::before {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzgwcHgiIGhlaWdodD0iOTVweCIgdmlld0JveD0iMCAwIDM4MCA5NSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGQ9Ik05NSwwIEwyODUsMCBDMzM3LjQ2NzA1MSwtOS42MzgwNDA5NWUtMTUgMzgwLDQyLjUzMjk0ODggMzgwLDk1IEwzODAsOTUgTDM4MCw5NSBMMCw5NSBDLTYuNDI1MzYwNjRlLTE1LDQyLjUzMjk0ODggNDIuNTMyOTQ4OCw5LjYzODA0MDk1ZS0xNSA5NSwwIFoiIGlkPSJSZWN0YW5nbGUiIGZpbGw9IiMwMDAwMDAiPjwvcGF0aD4KICAgIDwvZz4KPC9zdmc+);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 95%;
  filter: blur(10px);
  opacity: 0.5;
  z-index: -1;
}
@media only screen and (min-width: 320px) {
  section#hero ul#hero-gallery-container li.for-multiphonics-cv-3 article figure picture img {
    object-fit: contain;
    object-position: center;
  }
}
@media only screen and (min-width: 720px) {
  section#hero ul#hero-gallery-container li.for-multiphonics-cv-3 article figure picture img {
    object-fit: contain;
    object-position: center;
  }
}
section#hero ul#hero-gallery-container li.for-multiphonics-cv-3 article header h1 {
  color: white;
}
section#hero ul#hero-gallery-container li.for-multiphonics-cv-3 article header p {
  color: #bee4ff;
}
section#hero ul#hero-gallery-container li.for-multiphonics-cv-3 article p {
  color: white;
}
section#hero ul#hero-gallery-container li.for-multiphonics-cv-3 article footer div.prices {
  margin-bottom: 0.5rem;
}
section#hero ul#hero-gallery-container li.for-multiphonics-cv-3 article footer div.prices span {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 1.94rem;
  line-height: 2.4rem;
  color: white;
}
section#hero ul#hero-gallery-container li.for-multiphonics-cv-3 article footer div.prices span.regular {
  color: #b6b5af;
}
section#hero ul#hero-gallery-container li.for-multiphonics-cv-3 article footer div.prices span.regular data {
  text-decoration: line-through;
  text-decoration-thickness: 0.2rem;
}
section#hero ul#hero-gallery-container li.for-multiphonics-cv-3 article footer div.prices span small {
  font: inherit;
  vertical-align: text-top;
  font-size: 66.6666%;
}
section#hero ul#hero-gallery-container li.for-multiphonics-cv-3 article footer div.prices span data {
  font: inherit;
}
section#hero ul#hero-gallery-container li.for-multiphonics-cv-3 article footer p.call-to-action-2nd-tier {
  text-decoration: underline;
  cursor: pointer;
  text-transform: none;
  font-weight: 600;
}
section#hero ul#hero-gallery-container li.for-multiphonics-cv-3 article footer 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;
  justify-content: center;
}
section#hero ul#hero-gallery-container li.for-multiphonics-cv-3 article footer button.add-to-cart.call-to-action-option span {
  background-color: rgb(34.3083003953, 84.5454545455, 120.6916996047);
}
section#hero ul#hero-gallery-container li.for-multiphonics-cv-3 article footer button.add-to-cart span, section#hero ul#hero-gallery-container li.for-multiphonics-cv-3 article footer 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: #3a8cc7;
  color: white;
}

section#hero ul#hero-gallery-container li.for-chromaphone-3 {
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.9411764706) -100%, rgba(0, 0, 0, 0.9411764706) 150%);
  overflow: hidden;
}
section#hero ul#hero-gallery-container li.for-chromaphone-3 div.background-top {
  background-color: #0e887d;
  mix-blend-mode: overlay;
}
section#hero ul#hero-gallery-container li.for-chromaphone-3 div.background-bottom {
  background-color: #32312e;
  mix-blend-mode: overlay;
}
section#hero ul#hero-gallery-container li.for-chromaphone-3 article svg {
  display: default;
}
section#hero ul#hero-gallery-container li.for-chromaphone-3 article svg path#text {
  fill: #b59561;
}
section#hero ul#hero-gallery-container li.for-chromaphone-3 article figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 320px) {
  section#hero ul#hero-gallery-container li.for-chromaphone-3 article figure {
    height: 100%;
  }
}
@media only screen and (min-width: 720px) {
  section#hero ul#hero-gallery-container li.for-chromaphone-3 article figure {
    height: 85%;
  }
}
section#hero ul#hero-gallery-container li.for-chromaphone-3 article figure picture {
  width: auto;
  position: relative;
  aspect-ratio: 1;
}
section#hero ul#hero-gallery-container li.for-chromaphone-3 article figure picture::before {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzgwcHgiIGhlaWdodD0iOTVweCIgdmlld0JveD0iMCAwIDM4MCA5NSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGQ9Ik05NSwwIEwyODUsMCBDMzM3LjQ2NzA1MSwtOS42MzgwNDA5NWUtMTUgMzgwLDQyLjUzMjk0ODggMzgwLDk1IEwzODAsOTUgTDM4MCw5NSBMMCw5NSBDLTYuNDI1MzYwNjRlLTE1LDQyLjUzMjk0ODggNDIuNTMyOTQ4OCw5LjYzODA0MDk1ZS0xNSA5NSwwIFoiIGlkPSJSZWN0YW5nbGUiIGZpbGw9IiMwMDAwMDAiPjwvcGF0aD4KICAgIDwvZz4KPC9zdmc+);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 95%;
  filter: blur(10px);
  opacity: 0.5;
  z-index: -1;
}
@media only screen and (min-width: 320px) {
  section#hero ul#hero-gallery-container li.for-chromaphone-3 article figure picture img {
    object-fit: contain;
    object-position: center;
  }
}
@media only screen and (min-width: 720px) {
  section#hero ul#hero-gallery-container li.for-chromaphone-3 article figure picture img {
    object-fit: contain;
    object-position: center;
  }
}
section#hero ul#hero-gallery-container li.for-chromaphone-3 article header h1 {
  color: white;
}
section#hero ul#hero-gallery-container li.for-chromaphone-3 article header p {
  color: #aefaf3;
}
section#hero ul#hero-gallery-container li.for-chromaphone-3 article p {
  color: white;
}
section#hero ul#hero-gallery-container li.for-chromaphone-3 article footer div.prices {
  margin-bottom: 0.5rem;
}
section#hero ul#hero-gallery-container li.for-chromaphone-3 article footer div.prices span {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 1.94rem;
  line-height: 2.4rem;
  color: white;
}
section#hero ul#hero-gallery-container li.for-chromaphone-3 article footer div.prices span.regular {
  color: #b6b5af;
}
section#hero ul#hero-gallery-container li.for-chromaphone-3 article footer div.prices span.regular data {
  text-decoration: line-through;
  text-decoration-thickness: 0.2rem;
}
section#hero ul#hero-gallery-container li.for-chromaphone-3 article footer div.prices span small {
  font: inherit;
  vertical-align: text-top;
  font-size: 66.6666%;
}
section#hero ul#hero-gallery-container li.for-chromaphone-3 article footer div.prices span data {
  font: inherit;
}
section#hero ul#hero-gallery-container li.for-chromaphone-3 article footer p.call-to-action-2nd-tier {
  text-decoration: underline;
  cursor: pointer;
  text-transform: none;
  font-weight: 600;
}
section#hero ul#hero-gallery-container li.for-chromaphone-3 article footer 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;
  justify-content: center;
}
section#hero ul#hero-gallery-container li.for-chromaphone-3 article footer button.add-to-cart.call-to-action-option span {
  background-color: rgb(13.622754491, 51.377245509, 47.874251497);
}
section#hero ul#hero-gallery-container li.for-chromaphone-3 article footer button.add-to-cart span, section#hero ul#hero-gallery-container li.for-chromaphone-3 article footer 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: #23847b;
  color: white;
}

section#hero ul#hero-gallery-container li.for-ultra-analog-va-3 {
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.9411764706) -100%, rgba(0, 0, 0, 0.9411764706) 150%);
  overflow: hidden;
}
section#hero ul#hero-gallery-container li.for-ultra-analog-va-3 div.background-top {
  background-color: #7b9a43;
  mix-blend-mode: overlay;
}
section#hero ul#hero-gallery-container li.for-ultra-analog-va-3 div.background-bottom {
  background-color: #32312e;
  mix-blend-mode: overlay;
}
section#hero ul#hero-gallery-container li.for-ultra-analog-va-3 article svg {
  display: default;
}
section#hero ul#hero-gallery-container li.for-ultra-analog-va-3 article svg path#text {
  fill: #9ac2dc;
}
section#hero ul#hero-gallery-container li.for-ultra-analog-va-3 article figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 320px) {
  section#hero ul#hero-gallery-container li.for-ultra-analog-va-3 article figure {
    height: 100%;
  }
}
@media only screen and (min-width: 720px) {
  section#hero ul#hero-gallery-container li.for-ultra-analog-va-3 article figure {
    height: 85%;
  }
}
section#hero ul#hero-gallery-container li.for-ultra-analog-va-3 article figure picture {
  width: auto;
  position: relative;
  aspect-ratio: 1;
}
section#hero ul#hero-gallery-container li.for-ultra-analog-va-3 article figure picture::before {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzgwcHgiIGhlaWdodD0iOTVweCIgdmlld0JveD0iMCAwIDM4MCA5NSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGQ9Ik05NSwwIEwyODUsMCBDMzM3LjQ2NzA1MSwtOS42MzgwNDA5NWUtMTUgMzgwLDQyLjUzMjk0ODggMzgwLDk1IEwzODAsOTUgTDM4MCw5NSBMMCw5NSBDLTYuNDI1MzYwNjRlLTE1LDQyLjUzMjk0ODggNDIuNTMyOTQ4OCw5LjYzODA0MDk1ZS0xNSA5NSwwIFoiIGlkPSJSZWN0YW5nbGUiIGZpbGw9IiMwMDAwMDAiPjwvcGF0aD4KICAgIDwvZz4KPC9zdmc+);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 95%;
  filter: blur(10px);
  opacity: 0.5;
  z-index: -1;
}
@media only screen and (min-width: 320px) {
  section#hero ul#hero-gallery-container li.for-ultra-analog-va-3 article figure picture img {
    object-fit: contain;
    object-position: center;
  }
}
@media only screen and (min-width: 720px) {
  section#hero ul#hero-gallery-container li.for-ultra-analog-va-3 article figure picture img {
    object-fit: contain;
    object-position: center;
  }
}
section#hero ul#hero-gallery-container li.for-ultra-analog-va-3 article header h1 {
  color: white;
}
section#hero ul#hero-gallery-container li.for-ultra-analog-va-3 article header p {
  color: #e0fea9;
}
section#hero ul#hero-gallery-container li.for-ultra-analog-va-3 article p {
  color: white;
}
section#hero ul#hero-gallery-container li.for-ultra-analog-va-3 article footer div.prices {
  margin-bottom: 0.5rem;
}
section#hero ul#hero-gallery-container li.for-ultra-analog-va-3 article footer div.prices span {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 1.94rem;
  line-height: 2.4rem;
  color: white;
}
section#hero ul#hero-gallery-container li.for-ultra-analog-va-3 article footer div.prices span.regular {
  color: #b6b5af;
}
section#hero ul#hero-gallery-container li.for-ultra-analog-va-3 article footer div.prices span.regular data {
  text-decoration: line-through;
  text-decoration-thickness: 0.2rem;
}
section#hero ul#hero-gallery-container li.for-ultra-analog-va-3 article footer div.prices span small {
  font: inherit;
  vertical-align: text-top;
  font-size: 66.6666%;
}
section#hero ul#hero-gallery-container li.for-ultra-analog-va-3 article footer div.prices span data {
  font: inherit;
}
section#hero ul#hero-gallery-container li.for-ultra-analog-va-3 article footer p.call-to-action-2nd-tier {
  text-decoration: underline;
  cursor: pointer;
  text-transform: none;
  font-weight: 600;
}
section#hero ul#hero-gallery-container li.for-ultra-analog-va-3 article footer 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;
  justify-content: center;
}
section#hero ul#hero-gallery-container li.for-ultra-analog-va-3 article footer button.add-to-cart.call-to-action-option span {
  background-color: rgb(73.652360515, 89.9570815451, 41.0429184549);
}
section#hero ul#hero-gallery-container li.for-ultra-analog-va-3 article footer button.add-to-cart span, section#hero ul#hero-gallery-container li.for-ultra-analog-va-3 article footer 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: #83a049;
  color: white;
}

section#hero ul#hero-gallery-container li.for-string-studio-vs-3 {
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.9411764706) -100%, rgba(0, 0, 0, 0.9411764706) 150%);
  overflow: hidden;
}
section#hero ul#hero-gallery-container li.for-string-studio-vs-3 div.background-top {
  background-color: #d46234;
  mix-blend-mode: overlay;
}
section#hero ul#hero-gallery-container li.for-string-studio-vs-3 div.background-bottom {
  background-color: #32312e;
  mix-blend-mode: overlay;
}
section#hero ul#hero-gallery-container li.for-string-studio-vs-3 article svg {
  display: default;
}
section#hero ul#hero-gallery-container li.for-string-studio-vs-3 article svg path#text {
  fill: #909140;
}
section#hero ul#hero-gallery-container li.for-string-studio-vs-3 article figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 320px) {
  section#hero ul#hero-gallery-container li.for-string-studio-vs-3 article figure {
    height: 100%;
  }
}
@media only screen and (min-width: 720px) {
  section#hero ul#hero-gallery-container li.for-string-studio-vs-3 article figure {
    height: 85%;
  }
}
section#hero ul#hero-gallery-container li.for-string-studio-vs-3 article figure picture {
  width: auto;
  position: relative;
  aspect-ratio: 1;
}
section#hero ul#hero-gallery-container li.for-string-studio-vs-3 article figure picture::before {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzgwcHgiIGhlaWdodD0iOTVweCIgdmlld0JveD0iMCAwIDM4MCA5NSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGQ9Ik05NSwwIEwyODUsMCBDMzM3LjQ2NzA1MSwtOS42MzgwNDA5NWUtMTUgMzgwLDQyLjUzMjk0ODggMzgwLDk1IEwzODAsOTUgTDM4MCw5NSBMMCw5NSBDLTYuNDI1MzYwNjRlLTE1LDQyLjUzMjk0ODggNDIuNTMyOTQ4OCw5LjYzODA0MDk1ZS0xNSA5NSwwIFoiIGlkPSJSZWN0YW5nbGUiIGZpbGw9IiMwMDAwMDAiPjwvcGF0aD4KICAgIDwvZz4KPC9zdmc+);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 95%;
  filter: blur(10px);
  opacity: 0.5;
  z-index: -1;
}
section#hero ul#hero-gallery-container li.for-string-studio-vs-3 article figure picture img {
  object-fit: contain;
  object-position: center;
}
section#hero ul#hero-gallery-container li.for-string-studio-vs-3 article header h1 {
  color: white;
}
section#hero ul#hero-gallery-container li.for-string-studio-vs-3 article header p {
  color: #ffdd84;
}
section#hero ul#hero-gallery-container li.for-string-studio-vs-3 article p {
  color: white;
}
section#hero ul#hero-gallery-container li.for-string-studio-vs-3 article footer div.prices {
  margin-bottom: 0.5rem;
}
section#hero ul#hero-gallery-container li.for-string-studio-vs-3 article footer div.prices span {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 1.94rem;
  line-height: 2.4rem;
  color: white;
}
section#hero ul#hero-gallery-container li.for-string-studio-vs-3 article footer div.prices span.regular {
  color: #b6b5af;
}
section#hero ul#hero-gallery-container li.for-string-studio-vs-3 article footer div.prices span.regular data {
  text-decoration: line-through;
  text-decoration-thickness: 0.2rem;
}
section#hero ul#hero-gallery-container li.for-string-studio-vs-3 article footer div.prices span small {
  font: inherit;
  vertical-align: text-top;
  font-size: 66.6666%;
}
section#hero ul#hero-gallery-container li.for-string-studio-vs-3 article footer div.prices span data {
  font: inherit;
}
section#hero ul#hero-gallery-container li.for-string-studio-vs-3 article footer p.call-to-action-2nd-tier {
  text-decoration: underline;
  cursor: pointer;
  text-transform: none;
  font-weight: 600;
}
section#hero ul#hero-gallery-container li.for-string-studio-vs-3 article footer 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;
  justify-content: center;
}
section#hero ul#hero-gallery-container li.for-string-studio-vs-3 article footer button.add-to-cart.call-to-action-option span {
  background-color: rgb(127.7419354839, 61.935483871, 32.2580645161);
}
section#hero ul#hero-gallery-container li.for-string-studio-vs-3 article footer button.add-to-cart span, section#hero ul#hero-gallery-container li.for-string-studio-vs-3 article footer 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: #cd6739;
  color: white;
}

section#hero ul#hero-gallery-container li.for-strum-gs-2 {
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.9411764706) -100%, rgba(0, 0, 0, 0.9411764706) 150%);
  overflow: hidden;
}
section#hero ul#hero-gallery-container li.for-strum-gs-2 div.background-top {
  background-color: #cb9410;
  mix-blend-mode: overlay;
}
section#hero ul#hero-gallery-container li.for-strum-gs-2 div.background-bottom {
  background-color: #32312e;
  mix-blend-mode: overlay;
}
section#hero ul#hero-gallery-container li.for-strum-gs-2 article svg {
  display: default;
}
section#hero ul#hero-gallery-container li.for-strum-gs-2 article figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 320px) {
  section#hero ul#hero-gallery-container li.for-strum-gs-2 article figure {
    height: 100%;
  }
}
@media only screen and (min-width: 720px) {
  section#hero ul#hero-gallery-container li.for-strum-gs-2 article figure {
    height: 85%;
  }
}
section#hero ul#hero-gallery-container li.for-strum-gs-2 article figure picture {
  width: auto;
  position: relative;
  aspect-ratio: 1;
}
section#hero ul#hero-gallery-container li.for-strum-gs-2 article figure picture::before {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzgwcHgiIGhlaWdodD0iOTVweCIgdmlld0JveD0iMCAwIDM4MCA5NSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGQ9Ik05NSwwIEwyODUsMCBDMzM3LjQ2NzA1MSwtOS42MzgwNDA5NWUtMTUgMzgwLDQyLjUzMjk0ODggMzgwLDk1IEwzODAsOTUgTDM4MCw5NSBMMCw5NSBDLTYuNDI1MzYwNjRlLTE1LDQyLjUzMjk0ODggNDIuNTMyOTQ4OCw5LjYzODA0MDk1ZS0xNSA5NSwwIFoiIGlkPSJSZWN0YW5nbGUiIGZpbGw9IiMwMDAwMDAiPjwvcGF0aD4KICAgIDwvZz4KPC9zdmc+);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 95%;
  filter: blur(10px);
  opacity: 0.5;
  z-index: -1;
}
section#hero ul#hero-gallery-container li.for-strum-gs-2 article figure picture img {
  object-fit: contain;
  object-position: center;
}
section#hero ul#hero-gallery-container li.for-strum-gs-2 article header h1 {
  color: white;
}
section#hero ul#hero-gallery-container li.for-strum-gs-2 article header p {
  color: #ffdd84;
}
section#hero ul#hero-gallery-container li.for-strum-gs-2 article p {
  color: white;
}
section#hero ul#hero-gallery-container li.for-strum-gs-2 article footer div.prices {
  margin-bottom: 0.5rem;
}
section#hero ul#hero-gallery-container li.for-strum-gs-2 article footer div.prices span {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 1.94rem;
  line-height: 2.4rem;
  color: white;
}
section#hero ul#hero-gallery-container li.for-strum-gs-2 article footer div.prices span.regular {
  color: #b6b5af;
}
section#hero ul#hero-gallery-container li.for-strum-gs-2 article footer div.prices span.regular data {
  text-decoration: line-through;
  text-decoration-thickness: 0.2rem;
}
section#hero ul#hero-gallery-container li.for-strum-gs-2 article footer div.prices span small {
  font: inherit;
  vertical-align: text-top;
  font-size: 66.6666%;
}
section#hero ul#hero-gallery-container li.for-strum-gs-2 article footer div.prices span data {
  font: inherit;
}
section#hero ul#hero-gallery-container li.for-strum-gs-2 article footer p.call-to-action-2nd-tier {
  text-decoration: underline;
  cursor: pointer;
  text-transform: none;
  font-weight: 600;
}
section#hero ul#hero-gallery-container li.for-strum-gs-2 article footer 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;
  justify-content: center;
}
section#hero ul#hero-gallery-container li.for-strum-gs-2 article footer button.add-to-cart.call-to-action-option span {
  background-color: rgb(108.4491525424, 81.7627118644, 25.5508474576);
}
section#hero ul#hero-gallery-container li.for-strum-gs-2 article footer button.add-to-cart span, section#hero ul#hero-gallery-container li.for-strum-gs-2 article footer 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: #bf902d;
  color: white;
}

nav#page-navigation {
  width: 100%;
  background-color: #0e0e0e;
  margin-top: -1px;
}
nav#page-navigation div {
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  box-sizing: border-box;
}
@media only screen and (min-width: 1000px) {
  nav#page-navigation div {
    max-width: 100rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 1281px) {
  nav#page-navigation div {
    max-width: 110rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 320px) {
  nav#page-navigation div ul {
    display: block;
  }
  nav#page-navigation div ul li {
    display: block;
    line-height: 3rem;
  }
}
@media only screen and (min-width: 720px) {
  nav#page-navigation div ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
  nav#page-navigation div ul li {
    display: inline-block;
  }
}
nav#page-navigation div ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
nav#page-navigation div ul > li {
  margin: 0;
  padding: 0;
}
nav#page-navigation div ul li {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  color: #ADABA8;
  text-align: center;
  font-weight: 500;
  font-size: 1.9rem;
  text-align: center;
}
nav#page-navigation div ul li a {
  font-family: "Source Sans Pro", sans-serif;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

section#instruments-and-effects, section#bundles {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  width: 100%;
}
@media only screen and (min-width: 320px) {
  section#instruments-and-effects, section#bundles {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#instruments-and-effects, section#bundles {
    padding: 6rem 3rem;
  }
}
section#instruments-and-effects > div, section#bundles > div {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
@media only screen and (min-width: 320px) {
  section#instruments-and-effects > div, section#bundles > div {
    gap: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#instruments-and-effects > div, section#bundles > div {
    gap: 6rem 3rem;
  }
}
section#instruments-and-effects > div > header, section#bundles > div > header {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 4.5rem;
  margin-bottom: 0 !important;
}
section#instruments-and-effects > div > header h2, section#bundles > 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#instruments-and-effects > div > header h2 abbr, section#bundles > div > header h2 abbr {
  text-decoration: none;
}
section#instruments-and-effects > div > header h2 a, section#bundles > div > header h2 a {
  color: transparent;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
}
section#instruments-and-effects > div > header h2 + p, section#bundles > 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#instruments-and-effects > div > header h2, section#bundles > div > header h2 {
  color: #1a1a1a;
}
section#instruments-and-effects > div a, section#bundles > div a {
  box-sizing: border-box;
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  justify-items: center;
  gap: 1.5rem 3rem;
  text-align: center;
  color: #2C2B28;
}
@media only screen and (min-width: 320px) {
  section#instruments-and-effects > div a, section#bundles > div a {
    flex-basis: 100%;
  }
}
@media only screen and (min-width: 720px) {
  section#instruments-and-effects > div a, section#bundles > div a {
    flex-basis: calc((100% - 3rem) / 2);
  }
}
@media only screen and (min-width: 1000px) {
  section#instruments-and-effects > div a, section#bundles > div a {
    flex-basis: calc((100% - 6rem) / 3);
  }
}
@media only screen and (min-width: 1281px) {
  section#instruments-and-effects > div a, section#bundles > div a {
    flex-basis: calc((100% - 9rem) / 4);
  }
}
@media only screen and (min-width: 1710px) {
  section#instruments-and-effects > div a, section#bundles > div a {
    flex-basis: calc((100% - 12rem) / 5);
  }
}
section#instruments-and-effects > div a > header, section#bundles > div a > header {
  grid-column: span 2;
}
section#instruments-and-effects > div a > p.tag, section#bundles > div a > p.tag {
  top: -1.4rem;
  right: 1.1rem;
}
section#instruments-and-effects > div a > picture, section#instruments-and-effects > div a > header, section#bundles > div a > picture, section#bundles > div a > header {
  grid-column: span 2;
}
section#instruments-and-effects > div a > picture, section#bundles > div a > picture {
  grid-row: 1/span 1;
}
section#instruments-and-effects > div a > div.price, section#bundles > div a > div.price {
  grid-column: 1;
  grid-row: 3;
  justify-self: end;
}
section#instruments-and-effects > div a > div.call-to-action-2nd-tier, section#bundles > div a > div.call-to-action-2nd-tier {
  grid-column: 2;
  grid-row: 3;
  justify-self: start;
}
section#instruments-and-effects > div a > button.call-to-action, section#bundles > div a > 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;
  grid-column: span 2;
  grid-row: 4;
  margin: 0;
}
section#instruments-and-effects > div a > button.call-to-action.call-to-action-option span, section#bundles > div a > button.call-to-action.call-to-action-option span {
  background-color: rgb(32.4494382022, 75.5730337079, 0.4269662921);
}
section#instruments-and-effects > div a > button.call-to-action span, section#instruments-and-effects > div a > button.call-to-action a, section#bundles > div a > button.call-to-action span, section#bundles > div a > 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#instruments-and-effects > div a > picture, section#bundles > div a > picture {
  display: flex;
  width: 100%;
  aspect-ratio: 1/1;
}
section#instruments-and-effects > div a > picture img, section#bundles > div a > picture img {
  width: 100%;
  aspect-ratio: 1/1;
}
section#instruments-and-effects > div a > svg, section#bundles > div a > svg {
  position: absolute;
  top: 0;
  width: 38%;
  aspect-ratio: 1;
  margin-top: 50%;
  filter: drop-shadow(-2.2px 6.6px 6.66px rgba(0, 0, 0, 0.66));
}
section#instruments-and-effects > div a dialog.plus-one[open], section#bundles > div a dialog.plus-one[open] {
  display: flex;
  opacity: 1;
}
section#instruments-and-effects > div a dialog.plus-one, section#bundles > div a dialog.plus-one {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  opacity: 0;
  transition: opacity 400ms linear;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100vh;
  border: none;
  padding: 0;
  margin: 0;
  z-index: 500;
  background-color: transparent;
}
section#instruments-and-effects > div a dialog.plus-one::backdrop, section#bundles > div a dialog.plus-one::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}
section#instruments-and-effects > div a dialog.plus-one p, section#bundles > div a dialog.plus-one p {
  max-width: 40rem;
  box-sizing: border-box;
  box-shadow: 0px 0px 40px 0px black;
  position: relative;
  width: max-content;
  border-radius: 1.5rem;
  background-color: #f5f4f2;
  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#instruments-and-effects > div a button.plus-one, section#bundles > div a button.plus-one {
  position: absolute;
  top: 0;
  padding: 0;
  margin: 0;
  margin-top: 78%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
section#instruments-and-effects > div a button.plus-one:has(svg#plus-one-en), section#bundles > div a button.plus-one:has(svg#plus-one-en) {
  width: 44%;
}
section#instruments-and-effects > div a button.plus-one:has(svg#plus-one-fr), section#bundles > div a button.plus-one:has(svg#plus-one-fr) {
  width: 47%;
}
section#instruments-and-effects > div a header h3, section#bundles > div a header h3 {
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  line-height: 3rem;
  font-size: 2.4rem;
  text-transform: uppercase;
}
section#instruments-and-effects > div a header h3 + p, section#bundles > div a header h3 + p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 900;
  line-height: 2rem;
  font-size: 1.8rem;
}
section#instruments-and-effects > div a#swatches h3, section#bundles > div a#swatches h3 {
  color: #814a70;
}
section#instruments-and-effects > div a#swatches button.call-to-action span, section#bundles > div a#swatches button.call-to-action span {
  color: white;
  background-color: #814a70;
}
section#instruments-and-effects > div a#lounge-lizard-ep-5 h3, section#bundles > div a#lounge-lizard-ep-5 h3 {
  color: #c43b3e;
}
section#instruments-and-effects > div a#lounge-lizard-ep-5 button.call-to-action span, section#bundles > div a#lounge-lizard-ep-5 button.call-to-action span {
  color: white;
  background-color: #c43b3e;
}
section#instruments-and-effects > div a#string-studio-vs-3 h3, section#bundles > div a#string-studio-vs-3 h3 {
  color: #e55a20;
}
section#instruments-and-effects > div a#string-studio-vs-3 button.call-to-action span, section#bundles > div a#string-studio-vs-3 button.call-to-action span {
  color: white;
  background-color: #e55a20;
}
section#instruments-and-effects > div a#multiphonics-cv-3 h3, section#bundles > div a#multiphonics-cv-3 h3 {
  color: #3279AD;
}
section#instruments-and-effects > div a#multiphonics-cv-3 button.call-to-action span, section#bundles > div a#multiphonics-cv-3 button.call-to-action span {
  color: white;
  background-color: #3279AD;
}
section#instruments-and-effects > div a#ultra-analog-va-3 h3, section#bundles > div a#ultra-analog-va-3 h3 {
  color: #81a144;
}
section#instruments-and-effects > div a#ultra-analog-va-3 button.call-to-action span, section#bundles > div a#ultra-analog-va-3 button.call-to-action span {
  color: white;
  background-color: #81a144;
}
section#instruments-and-effects > div a#chromaphone-3 h3, section#bundles > div a#chromaphone-3 h3 {
  color: #169b8f;
}
section#instruments-and-effects > div a#chromaphone-3 button.call-to-action span, section#bundles > div a#chromaphone-3 button.call-to-action span {
  color: white;
  background-color: #189b8f;
}
section#instruments-and-effects > div a#strum-gs-2 h3, section#bundles > div a#strum-gs-2 h3 {
  color: #d4a02a;
}
section#instruments-and-effects > div a#strum-gs-2 button.call-to-action span, section#bundles > div a#strum-gs-2 button.call-to-action span {
  color: white;
  background-color: #d39f29;
}
section#instruments-and-effects > div a#objeq-delay h3, section#bundles > div a#objeq-delay h3 {
  color: #106f67;
}
section#instruments-and-effects > div a#objeq-delay button.call-to-action span, section#bundles > div a#objeq-delay button.call-to-action span {
  color: white;
  background-color: #0f6f67;
}
section#instruments-and-effects > div a#the-integral h3, section#instruments-and-effects > div a#modeling-collection h3, section#instruments-and-effects > div a#libraries h3, section#instruments-and-effects > div a#session-bundle h3, section#instruments-and-effects > div a#beatmaker-bundle h3, section#bundles > div a#the-integral h3, section#bundles > div a#modeling-collection h3, section#bundles > div a#libraries h3, section#bundles > div a#session-bundle h3, section#bundles > div a#beatmaker-bundle h3 {
  color: #756378;
}
section#instruments-and-effects > div a#the-integral button.call-to-action span, section#instruments-and-effects > div a#modeling-collection button.call-to-action span, section#instruments-and-effects > div a#libraries button.call-to-action span, section#instruments-and-effects > div a#session-bundle button.call-to-action span, section#instruments-and-effects > div a#beatmaker-bundle button.call-to-action span, section#bundles > div a#the-integral button.call-to-action span, section#bundles > div a#modeling-collection button.call-to-action span, section#bundles > div a#libraries button.call-to-action span, section#bundles > div a#session-bundle button.call-to-action span, section#bundles > div a#beatmaker-bundle button.call-to-action span {
  color: white;
  background-color: #705e73;
}
section#instruments-and-effects > div a a, section#bundles > div a a {
  text-decoration: none;
}
section#instruments-and-effects > div a p.tag, section#bundles > div a p.tag {
  position: absolute;
  margin: 0;
}
section#instruments-and-effects > div a p.tag span, section#bundles > div a p.tag span {
  font-size: 1.8rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  background-color: black;
  padding: 0rem 0.6rem 0.1rem 0.6rem;
  color: white;
}
section#instruments-and-effects > div a span, section#instruments-and-effects > div a h3 + p, section#bundles > div a span, section#bundles > div a h3 + p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
  text-decoration: none;
  line-height: 2rem;
}
section#instruments-and-effects > div a div.price, section#bundles > div a div.price {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 2.625rem;
}
section#instruments-and-effects > div a div.price span.regular-price, section#bundles > div a div.price span.regular-price {
  color: #99978E;
  font: inherit;
  text-decoration: line-through;
}
section#instruments-and-effects > div a div.price span.regular-price span.currency-symbol, section#bundles > div a div.price span.regular-price span.currency-symbol {
  color: #99978E;
}
section#instruments-and-effects > div a div.price span.current-price, section#bundles > div a div.price span.current-price {
  font: inherit;
}
section#instruments-and-effects > div a div.price span.currency-symbol, section#bundles > div a div.price span.currency-symbol {
  font-size: 66.6666%;
  font: inherit;
  text-decoration: none;
  vertical-align: top;
}
section#instruments-and-effects > div a div.call-to-action-2nd-tier, section#bundles > div a div.call-to-action-2nd-tier {
  grid-column: 2;
  margin-top: 0;
  justify-self: start;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 1.7rem;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

section#bundles {
  background-color: #eae9e6;
}
section#bundles div header h3 {
  color: #69596a !important;
}
section#bundles div button span {
  background-color: #69596a !important;
}

section#upgrades-and-offers {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  width: 100%;
  background-color: #2A2928;
}
@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 > div {
  box-sizing: border-box;
  width: 100%;
}
section#upgrades-and-offers > 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 > 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 > div header h2 abbr {
  text-decoration: none;
}
section#upgrades-and-offers > div header h2 a {
  color: transparent;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
}
section#upgrades-and-offers > 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 > div header h2 {
  color: white;
}
section#upgrades-and-offers > div header h2 + p {
  color: #DCDCDC;
}
section#upgrades-and-offers > 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 > div div.call-to-action-2nd-tier a {
  color: #149B4D;
  text-decoration: underline;
}

section#sound-packs {
  background-color: #eae9e6;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding-bottom: 0 !important;
}
@media only screen and (min-width: 320px) {
  section#sound-packs {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#sound-packs {
    padding: 6rem 3rem;
  }
}
section#sound-packs > div {
  box-sizing: border-box;
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section#sound-packs > div > header {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 4.5rem;
  margin-bottom: 0;
}
section#sound-packs > 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#sound-packs > div > header h2 abbr {
  text-decoration: none;
}
section#sound-packs > div > header h2 a {
  color: transparent;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
}
section#sound-packs > 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#sound-packs > div > header h2 {
  color: #1a1a1a;
}
section#sound-packs > div > header h2 + p span {
  text-decoration: underline;
}
section#sound-packs > div > section {
  box-sizing: border-box;
  padding: 0;
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section#sound-packs > div > section:nth-child(2) {
  margin-top: 3rem;
}
@media only screen and (min-width: 320px) {
  section#sound-packs > div > section {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#sound-packs > div > section {
    width: 100%;
    max-width: 162rem;
    margin-bottom: 3rem;
  }
}
section#sound-packs > div > section#chromaphone-3-sound-packs > h3 {
  color: white;
  background-color: #118177;
}
section#sound-packs > div > section#chromaphone-3-sound-packs > h3 span {
  opacity: 50%;
}
@media only screen and (min-width: 320px) {
  section#sound-packs > div > section#chromaphone-3-sound-packs > h3 span {
    font-size: 90%;
    line-height: 90%;
  }
}
@media only screen and (min-width: 720px) {
  section#sound-packs > div > section#chromaphone-3-sound-packs > h3 span {
    font-size: 100%;
    line-height: 90%;
  }
}
section#sound-packs > div > section#chromaphone-3-sound-packs h4 {
  color: #118177;
}
section#sound-packs > div > section#chromaphone-3-sound-packs .call-to-action span {
  background-color: #118177;
}
section#sound-packs > div > section#chromaphone-3-sound-packs h3 {
  color: #15958a;
}
section#sound-packs > div > section#chromaphone-3-sound-packs button.call-to-action span {
  color: white;
  background-color: #13958a;
}
section#sound-packs > div > section#chromaphone-3-sound-packs h3 {
  color: #fff;
}
section#sound-packs > div > section#lounge-lizard-ep-5-sound-packs > h3 {
  color: white;
  background-color: #ab2429;
}
section#sound-packs > div > section#lounge-lizard-ep-5-sound-packs > h3 span {
  opacity: 50%;
}
@media only screen and (min-width: 320px) {
  section#sound-packs > div > section#lounge-lizard-ep-5-sound-packs > h3 span {
    font-size: 90%;
    line-height: 90%;
  }
}
@media only screen and (min-width: 720px) {
  section#sound-packs > div > section#lounge-lizard-ep-5-sound-packs > h3 span {
    font-size: 100%;
    line-height: 90%;
  }
}
section#sound-packs > div > section#lounge-lizard-ep-5-sound-packs h4 {
  color: #ab2429;
}
section#sound-packs > div > section#lounge-lizard-ep-5-sound-packs .call-to-action span {
  background-color: #ab2429;
}
section#sound-packs > div > section#lounge-lizard-ep-5-sound-packs h3 {
  color: #bc3236;
}
section#sound-packs > div > section#lounge-lizard-ep-5-sound-packs button.call-to-action span {
  color: white;
  background-color: #bc3236;
}
section#sound-packs > div > section#lounge-lizard-ep-5-sound-packs h3 {
  color: #fff;
}
section#sound-packs > div > section#string-studio-vs-3-sound-packs > h3 {
  color: white;
  background-color: #D46234;
}
section#sound-packs > div > section#string-studio-vs-3-sound-packs > h3 span {
  opacity: 50%;
}
@media only screen and (min-width: 320px) {
  section#sound-packs > div > section#string-studio-vs-3-sound-packs > h3 span {
    font-size: 90%;
    line-height: 90%;
  }
}
@media only screen and (min-width: 720px) {
  section#sound-packs > div > section#string-studio-vs-3-sound-packs > h3 span {
    font-size: 100%;
    line-height: 90%;
  }
}
section#sound-packs > div > section#string-studio-vs-3-sound-packs h4 {
  color: #D46234;
}
section#sound-packs > div > section#string-studio-vs-3-sound-packs .call-to-action span {
  background-color: #D46234;
}
section#sound-packs > div > section#string-studio-vs-3-sound-packs h3 {
  color: #d46334;
}
section#sound-packs > div > section#string-studio-vs-3-sound-packs button.call-to-action span {
  color: white;
  background-color: #d46334;
}
section#sound-packs > div > section#string-studio-vs-3-sound-packs h3 {
  color: #fff;
}
section#sound-packs > div > section#ultra-analog-va-3-sound-packs > h3 {
  color: white;
  background-color: #658f30;
}
section#sound-packs > div > section#ultra-analog-va-3-sound-packs > h3 span {
  opacity: 50%;
}
@media only screen and (min-width: 320px) {
  section#sound-packs > div > section#ultra-analog-va-3-sound-packs > h3 span {
    font-size: 90%;
    line-height: 90%;
  }
}
@media only screen and (min-width: 720px) {
  section#sound-packs > div > section#ultra-analog-va-3-sound-packs > h3 span {
    font-size: 100%;
    line-height: 90%;
  }
}
section#sound-packs > div > section#ultra-analog-va-3-sound-packs h4 {
  color: #658f30;
}
section#sound-packs > div > section#ultra-analog-va-3-sound-packs .call-to-action span {
  background-color: #658f30;
}
section#sound-packs > div > section#ultra-analog-va-3-sound-packs h3 {
  color: #7b9a41;
}
section#sound-packs > div > section#ultra-analog-va-3-sound-packs button.call-to-action span {
  color: white;
  background-color: #7b9a41;
}
section#sound-packs > div > section#ultra-analog-va-3-sound-packs h3 {
  color: #fff;
}
section#sound-packs > div > section#strum-gs-2-sound-packs > h3 {
  color: white;
  background-color: #CB9410;
}
section#sound-packs > div > section#strum-gs-2-sound-packs > h3 span {
  opacity: 50%;
}
@media only screen and (min-width: 320px) {
  section#sound-packs > div > section#strum-gs-2-sound-packs > h3 span {
    font-size: 90%;
    line-height: 90%;
  }
}
@media only screen and (min-width: 720px) {
  section#sound-packs > div > section#strum-gs-2-sound-packs > h3 span {
    font-size: 100%;
    line-height: 90%;
  }
}
section#sound-packs > div > section#strum-gs-2-sound-packs h4 {
  color: #CB9410;
}
section#sound-packs > div > section#strum-gs-2-sound-packs .call-to-action span {
  background-color: #CB9410;
}
section#sound-packs > div > section#strum-gs-2-sound-packs h3 {
  color: #cd982c;
}
section#sound-packs > div > section#strum-gs-2-sound-packs button.call-to-action span {
  color: white;
  background-color: #cc982b;
}
section#sound-packs > div > section#strum-gs-2-sound-packs h3 {
  color: #fff;
}
section#sound-packs > div > section#multiphonics-cv-3-sound-packs > h3 {
  color: white;
  background-color: #3279AD;
}
section#sound-packs > div > section#multiphonics-cv-3-sound-packs > h3 span {
  opacity: 50%;
}
@media only screen and (min-width: 320px) {
  section#sound-packs > div > section#multiphonics-cv-3-sound-packs > h3 span {
    font-size: 90%;
    line-height: 90%;
  }
}
@media only screen and (min-width: 720px) {
  section#sound-packs > div > section#multiphonics-cv-3-sound-packs > h3 span {
    font-size: 100%;
    line-height: 90%;
  }
}
section#sound-packs > div > section#multiphonics-cv-3-sound-packs h4 {
  color: #3279AD;
}
section#sound-packs > div > section#multiphonics-cv-3-sound-packs .call-to-action span {
  background-color: #3279AD;
}
section#sound-packs > div > section#multiphonics-cv-3-sound-packs h3 {
  color: #327aad;
}
section#sound-packs > div > section#multiphonics-cv-3-sound-packs button.call-to-action span {
  color: white;
  background-color: #327aad;
}
section#sound-packs > div > section#multiphonics-cv-3-sound-packs h3 {
  color: #fff;
}
section#sound-packs > div > section > h3 {
  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;
  width: calc(100% + 3rem);
  margin-left: -1.5rem;
  box-sizing: border-box;
  text-transform: uppercase;
}
@media only screen and (min-width: 320px) {
  section#sound-packs > div > section > h3 {
    text-align: center;
    display: block;
    padding: 1.2033333333rem;
    margin-bottom: 1.5rem;
  }
  section#sound-packs > div > section > h3 span {
    display: block;
    line-height: 2.7075rem;
  }
}
@media only screen and (min-width: 720px) {
  section#sound-packs > div > section > h3 {
    display: flex;
    align-items: center;
    text-align: initial;
    margin-bottom: 4rem;
  }
  section#sound-packs > div > section > h3 span {
    display: inline-block;
    margin-left: auto;
    text-align: right;
  }
}
@media only screen and (min-width: 1710px) {
  section#sound-packs > div > section > h3 {
    display: flex;
    align-items: center;
    text-align: initial;
    column-gap: 1rem;
  }
  section#sound-packs > div > section > h3 span {
    display: inline-block;
    margin-left: 0;
  }
}
section#sound-packs > div > section > div {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 5rem 3rem;
}
@media only screen and (min-width: 320px) {
  section#sound-packs > div > section > div {
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
    flex-wrap: nowrap;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    padding: 1.5rem 0;
    padding-left: 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#sound-packs > div > section > div {
    flex-wrap: wrap;
    overflow-x: visible;
    scroll-snap-type: unset;
    padding: 0;
    justify-content: center;
  }
}
section#sound-packs > div > section > div a {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-auto-flow: row dense;
  justify-items: center;
  gap: 1.5rem;
}
@media only screen and (min-width: 320px) {
  section#sound-packs > div > section > div a {
    flex-basis: 75%;
    flex-shrink: 0;
    max-width: 60vh;
    scroll-snap-align: center;
  }
}
@media only screen and (min-width: 720px) {
  section#sound-packs > div > section > div a {
    flex-basis: calc((100% - 6rem) / 3);
  }
}
@media only screen and (min-width: 1000px) {
  section#sound-packs > div > section > div a {
    flex-basis: calc((100% - 9rem) / 4);
  }
}
@media only screen and (min-width: 1281px) {
  section#sound-packs > div > section > div a {
    flex-basis: calc((100% - 12rem) / 5);
  }
}
@media only screen and (min-width: 1710px) {
  section#sound-packs > div > section > div a {
    flex-basis: calc((100% - 15rem) / 6);
  }
}
section#sound-packs > div > section > div a p.new {
  position: absolute;
  top: -1.25rem;
  right: 1.25rem;
}
section#sound-packs > div > section > div a p.new span {
  font-size: 1.8rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 3rem;
  padding: 0rem 0.6rem 0.1rem 0.6rem;
  color: white;
  background-color: black;
}
section#sound-packs > div > section > div a picture {
  grid-column: span 2;
  width: 100%;
  display: flex;
  aspect-ratio: 1/1;
}
section#sound-packs > div > section > div a picture img {
  width: 100%;
  aspect-ratio: 1/1;
}
section#sound-packs > div > section > div a > header {
  grid-column: span 2;
}
section#sound-packs > div > section > div a > header h4 {
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 2.4rem;
  line-height: 3rem;
  line-height: 2.4rem;
  color: black;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
section#sound-packs > div > section > div a > header h4 span {
  font: inherit;
}
section#sound-packs > div > section > div a > header p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2rem;
  text-align: center;
  text-decoration: none;
}
section#sound-packs > div > section > div a div.price {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  justify-self: end;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 2.1rem;
}
section#sound-packs > div > section > div a div.price span.regular-price {
  color: #99978E;
  font: inherit;
  text-decoration: line-through;
}
section#sound-packs > div > section > div a div.price span.current-price {
  font: inherit;
}
section#sound-packs > div > section > div a div.price span.currency-symbol {
  font-size: 66.6666%;
  font: inherit;
  text-decoration: none;
  vertical-align: top;
}
section#sound-packs > div > section > div a div.call-to-action-2nd-tier {
  grid-column: 2;
  margin-top: 0;
  justify-self: start;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 1.7rem;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
section#sound-packs > div > section > div a 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;
  grid-column: span 2;
}
section#sound-packs > div > section > div a button.call-to-action.call-to-action-option span {
  background-color: rgb(32.4494382022, 75.5730337079, 0.4269662921);
}
section#sound-packs > div > section > div a button.call-to-action span, section#sound-packs > div > section > div a 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#sound-packs div aside, .PLUS-PACKS {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 320px) {
  section#sound-packs div aside, .PLUS-PACKS {
    width: calc(100% + 3rem);
  }
}
@media only screen and (min-width: 720px) {
  section#sound-packs div aside, .PLUS-PACKS {
    width: calc(100% + 6rem);
  }
}
@media only screen and (min-width: 320px) {
  section#sound-packs div aside > div, .PLUS-PACKS > div {
    display: grid;
    justify-items: center;
    justify-content: space-around;
    padding: 3rem 1.5rem;
    gap: 1.5rem;
  }
  section#sound-packs div aside > div p.new, .PLUS-PACKS > div p.new {
    position: absolute;
    margin-top: 0.5rem;
    margin-right: 1.5rem;
    right: 0;
  }
  section#sound-packs div aside > div header, .PLUS-PACKS > div header {
    grid-row: 1;
  }
}
@media only screen and (min-width: 320px) and (min-width: 320px) {
  section#sound-packs div aside > div header, .PLUS-PACKS > div header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (min-width: 320px) and (min-width: 720px) {
  section#sound-packs div aside > div header, .PLUS-PACKS > div header {
    align-items: unset;
  }
}
@media only screen and (min-width: 320px) {
  section#sound-packs div aside > div > picture, .PLUS-PACKS > div > picture {
    grid-row: 2;
  }
  section#sound-packs div aside > div > picture img, .PLUS-PACKS > div > picture img {
    width: 100%;
    margin-top: 0;
  }
  section#sound-packs div aside > div ul, .PLUS-PACKS > div ul {
    grid-row: 3;
  }
  section#sound-packs div aside > div div.price, .PLUS-PACKS > div div.price {
    grid-row: 4;
  }
  section#sound-packs div aside > div button.call-to-action, .PLUS-PACKS > div button.call-to-action {
    grid-row: 5;
    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#sound-packs div aside > div button.call-to-action.call-to-action-option span, .PLUS-PACKS > div button.call-to-action.call-to-action-option span {
    background-color: rgb(32.4494382022, 75.5730337079, 0.4269662921);
  }
  section#sound-packs div aside > div button.call-to-action span, section#sound-packs div aside > div button.call-to-action a, .PLUS-PACKS > div button.call-to-action span, .PLUS-PACKS > div 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;
  }
}
@media only screen and (min-width: 720px) {
  section#sound-packs div aside > div, .PLUS-PACKS > div {
    display: grid;
    justify-items: left;
    align-items: center;
    column-gap: 3rem;
    grid-template-columns: max-content max-content 1fr;
    grid-template-rows: 1fr max-content max-content max-content 1fr;
    width: 90vw;
    max-width: max-content;
    margin: 0;
    padding: 0;
  }
  section#sound-packs div aside > div picture, .PLUS-PACKS > div picture {
    display: flex;
    grid-column: 1/2;
    grid-row: 1/6;
    width: 38.5714285714vw;
    justify-self: right;
  }
  section#sound-packs div aside > div picture#products-chromaphone-3-packs img, .PLUS-PACKS > div picture#products-chromaphone-3-packs img {
    margin-top: 9.5238095238%;
    margin-bottom: 5.5%;
  }
  section#sound-packs div aside > div picture#products-string-studio-vs-3-packs img, .PLUS-PACKS > div picture#products-string-studio-vs-3-packs img {
    margin-top: 9.5238095238%;
    margin-bottom: 5.5%;
  }
  section#sound-packs div aside > div picture#products-strum-gs-2-packs img, .PLUS-PACKS > div picture#products-strum-gs-2-packs img {
    margin-top: 9.5238095238%;
    margin-bottom: 5.5%;
  }
  section#sound-packs div aside > div picture#products-ultra-analog-va-3-packs img, .PLUS-PACKS > div picture#products-ultra-analog-va-3-packs img {
    margin-top: 9.5238095238%;
    margin-bottom: 5.5%;
  }
  section#sound-packs div aside > div picture#products-lounge-lizard-ep-5-packs img, .PLUS-PACKS > div picture#products-lounge-lizard-ep-5-packs img {
    margin-top: 9.5238095238%;
    margin-bottom: 5.5%;
  }
  section#sound-packs div aside > div picture#products-multiphonics-cv-3-packs img, .PLUS-PACKS > div picture#products-multiphonics-cv-3-packs img {
    margin-top: 9.5238095238%;
    margin-bottom: 5.5%;
  }
  section#sound-packs div aside > div picture img, .PLUS-PACKS > div picture img {
    width: 100%;
  }
  section#sound-packs div aside > div header, .PLUS-PACKS > div header {
    grid-column: 2/4;
    grid-row: 2;
  }
  section#sound-packs div aside > div header h4 + p, .PLUS-PACKS > div header h4 + p {
    margin-bottom: 0;
  }
  section#sound-packs div aside > div ul, .PLUS-PACKS > div ul {
    display: block;
    grid-column: 2/4;
    grid-row: 3;
    margin: 0;
    margin-bottom: 1.5rem;
  }
  section#sound-packs div aside > div div.price, .PLUS-PACKS > div div.price {
    grid-column: 2;
    grid-row: 4;
  }
  section#sound-packs div aside > div button.call-to-action, .PLUS-PACKS > div button.call-to-action {
    grid-column: 3;
    grid-row: 4;
    align-self: start;
  }
}
@media only screen and (min-width: 1000px) {
  section#sound-packs div aside > div, .PLUS-PACKS > div {
    width: 90vw;
    max-width: max-content;
    column-gap: 3vw;
  }
  section#sound-packs div aside > div picture, .PLUS-PACKS > div picture {
    width: 38.5714285714vw;
    justify-self: right;
  }
}
@media only screen and (min-width: 1281px) {
  section#sound-packs div aside > div, .PLUS-PACKS > div {
    width: 90vw;
    max-width: max-content;
  }
  section#sound-packs div aside > div picture, .PLUS-PACKS > div picture {
    width: 36vw;
    justify-self: right;
  }
}
@media only screen and (min-width: 1710px) {
  section#sound-packs div aside > div, .PLUS-PACKS > div {
    width: 80vw;
    max-width: max-content;
    column-gap: 1.5vw;
    padding: 0;
    align-content: space-around;
  }
  section#sound-packs div aside > div picture, .PLUS-PACKS > div picture {
    width: calc(80vw * 0.333);
    justify-self: right;
  }
  section#sound-packs div aside > div h4 + p, .PLUS-PACKS > div h4 + p {
    margin-bottom: 0;
  }
}

section#sound-packs aside, .PLUS-PACKS, .STYLES {
  background-color: #d3d2d1;
}
section#sound-packs aside#chromaphone-3-plus-packs h4, .PLUS-PACKS#chromaphone-3-plus-packs h4, .STYLES#chromaphone-3-plus-packs h4 {
  color: #2D2D2D;
}
section#sound-packs aside#chromaphone-3-plus-packs h4 span, .PLUS-PACKS#chromaphone-3-plus-packs h4 span, .STYLES#chromaphone-3-plus-packs h4 span {
  color: #118177;
}
section#sound-packs aside#chromaphone-3-plus-packs h4 + p, .PLUS-PACKS#chromaphone-3-plus-packs h4 + p, .STYLES#chromaphone-3-plus-packs h4 + p {
  color: #898989;
}
section#sound-packs aside#chromaphone-3-plus-packs .call-to-action span, .PLUS-PACKS#chromaphone-3-plus-packs .call-to-action span, .STYLES#chromaphone-3-plus-packs .call-to-action span {
  background-color: #118177;
}
section#sound-packs aside#chromaphone-3-plus-packs h3, .PLUS-PACKS#chromaphone-3-plus-packs h3, .STYLES#chromaphone-3-plus-packs h3 {
  color: #08867b;
}
section#sound-packs aside#chromaphone-3-plus-packs button.call-to-action span, .PLUS-PACKS#chromaphone-3-plus-packs button.call-to-action span, .STYLES#chromaphone-3-plus-packs button.call-to-action span {
  color: white;
  background-color: #08867b;
}
section#sound-packs aside#lounge-lizard-ep-5-plus-packs h4, .PLUS-PACKS#lounge-lizard-ep-5-plus-packs h4, .STYLES#lounge-lizard-ep-5-plus-packs h4 {
  color: #2D2D2D;
}
section#sound-packs aside#lounge-lizard-ep-5-plus-packs h4 span, .PLUS-PACKS#lounge-lizard-ep-5-plus-packs h4 span, .STYLES#lounge-lizard-ep-5-plus-packs h4 span {
  color: #ab2429;
}
section#sound-packs aside#lounge-lizard-ep-5-plus-packs h4 + p, .PLUS-PACKS#lounge-lizard-ep-5-plus-packs h4 + p, .STYLES#lounge-lizard-ep-5-plus-packs h4 + p {
  color: #898989;
}
section#sound-packs aside#lounge-lizard-ep-5-plus-packs .call-to-action span, .PLUS-PACKS#lounge-lizard-ep-5-plus-packs .call-to-action span, .STYLES#lounge-lizard-ep-5-plus-packs .call-to-action span {
  background-color: #ab2429;
}
section#sound-packs aside#lounge-lizard-ep-5-plus-packs h3, .PLUS-PACKS#lounge-lizard-ep-5-plus-packs h3, .STYLES#lounge-lizard-ep-5-plus-packs h3 {
  color: #ad2328;
}
section#sound-packs aside#lounge-lizard-ep-5-plus-packs button.call-to-action span, .PLUS-PACKS#lounge-lizard-ep-5-plus-packs button.call-to-action span, .STYLES#lounge-lizard-ep-5-plus-packs button.call-to-action span {
  color: white;
  background-color: #ac2328;
}
section#sound-packs aside#string-studio-vs-3-plus-packs h4, .PLUS-PACKS#string-studio-vs-3-plus-packs h4, .STYLES#string-studio-vs-3-plus-packs h4 {
  color: #2D2D2D;
}
section#sound-packs aside#string-studio-vs-3-plus-packs h4 span, .PLUS-PACKS#string-studio-vs-3-plus-packs h4 span, .STYLES#string-studio-vs-3-plus-packs h4 span {
  color: #D46234;
}
section#sound-packs aside#string-studio-vs-3-plus-packs h4 + p, .PLUS-PACKS#string-studio-vs-3-plus-packs h4 + p, .STYLES#string-studio-vs-3-plus-packs h4 + p {
  color: #898989;
}
section#sound-packs aside#string-studio-vs-3-plus-packs .call-to-action span, .PLUS-PACKS#string-studio-vs-3-plus-packs .call-to-action span, .STYLES#string-studio-vs-3-plus-packs .call-to-action span {
  background-color: #D46234;
}
section#sound-packs aside#string-studio-vs-3-plus-packs h3, .PLUS-PACKS#string-studio-vs-3-plus-packs h3, .STYLES#string-studio-vs-3-plus-packs h3 {
  color: #c85e31;
}
section#sound-packs aside#string-studio-vs-3-plus-packs button.call-to-action span, .PLUS-PACKS#string-studio-vs-3-plus-packs button.call-to-action span, .STYLES#string-studio-vs-3-plus-packs button.call-to-action span {
  color: white;
  background-color: #d46334;
}
section#sound-packs aside#ultra-analog-va-3-plus-packs h4, .PLUS-PACKS#ultra-analog-va-3-plus-packs h4, .STYLES#ultra-analog-va-3-plus-packs h4 {
  color: #2D2D2D;
}
section#sound-packs aside#ultra-analog-va-3-plus-packs h4 span, .PLUS-PACKS#ultra-analog-va-3-plus-packs h4 span, .STYLES#ultra-analog-va-3-plus-packs h4 span {
  color: #658f30;
}
section#sound-packs aside#ultra-analog-va-3-plus-packs h4 + p, .PLUS-PACKS#ultra-analog-va-3-plus-packs h4 + p, .STYLES#ultra-analog-va-3-plus-packs h4 + p {
  color: #898989;
}
section#sound-packs aside#ultra-analog-va-3-plus-packs .call-to-action span, .PLUS-PACKS#ultra-analog-va-3-plus-packs .call-to-action span, .STYLES#ultra-analog-va-3-plus-packs .call-to-action span {
  background-color: #658f30;
}
section#sound-packs aside#ultra-analog-va-3-plus-packs h3, .PLUS-PACKS#ultra-analog-va-3-plus-packs h3, .STYLES#ultra-analog-va-3-plus-packs h3 {
  color: #728e3d;
}
section#sound-packs aside#ultra-analog-va-3-plus-packs button.call-to-action span, .PLUS-PACKS#ultra-analog-va-3-plus-packs button.call-to-action span, .STYLES#ultra-analog-va-3-plus-packs button.call-to-action span {
  color: white;
  background-color: #728e3c;
}
section#sound-packs aside#strum-gs-2-plus-packs h4, .PLUS-PACKS#strum-gs-2-plus-packs h4, .STYLES#strum-gs-2-plus-packs h4 {
  color: #2D2D2D;
}
section#sound-packs aside#strum-gs-2-plus-packs h4 span, .PLUS-PACKS#strum-gs-2-plus-packs h4 span, .STYLES#strum-gs-2-plus-packs h4 span {
  color: #CB9410;
}
section#sound-packs aside#strum-gs-2-plus-packs h4 + p, .PLUS-PACKS#strum-gs-2-plus-packs h4 + p, .STYLES#strum-gs-2-plus-packs h4 + p {
  color: #898989;
}
section#sound-packs aside#strum-gs-2-plus-packs .call-to-action span, .PLUS-PACKS#strum-gs-2-plus-packs .call-to-action span, .STYLES#strum-gs-2-plus-packs .call-to-action span {
  background-color: #CB9410;
}
section#sound-packs aside#strum-gs-2-plus-packs h3, .PLUS-PACKS#strum-gs-2-plus-packs h3, .STYLES#strum-gs-2-plus-packs h3 {
  color: #bb8d2d;
}
section#sound-packs aside#strum-gs-2-plus-packs button.call-to-action span, .PLUS-PACKS#strum-gs-2-plus-packs button.call-to-action span, .STYLES#strum-gs-2-plus-packs button.call-to-action span {
  color: white;
  background-color: #c0902d;
}
section#sound-packs aside#multiphonics-cv-3-plus-packs h4, .PLUS-PACKS#multiphonics-cv-3-plus-packs h4, .STYLES#multiphonics-cv-3-plus-packs h4 {
  color: #2D2D2D;
}
section#sound-packs aside#multiphonics-cv-3-plus-packs h4 span, .PLUS-PACKS#multiphonics-cv-3-plus-packs h4 span, .STYLES#multiphonics-cv-3-plus-packs h4 span {
  color: #3279AD;
}
section#sound-packs aside#multiphonics-cv-3-plus-packs h4 + p, .PLUS-PACKS#multiphonics-cv-3-plus-packs h4 + p, .STYLES#multiphonics-cv-3-plus-packs h4 + p {
  color: #898989;
}
section#sound-packs aside#multiphonics-cv-3-plus-packs .call-to-action span, .PLUS-PACKS#multiphonics-cv-3-plus-packs .call-to-action span, .STYLES#multiphonics-cv-3-plus-packs .call-to-action span {
  background-color: #3279AD;
}
section#sound-packs aside#multiphonics-cv-3-plus-packs h3, .PLUS-PACKS#multiphonics-cv-3-plus-packs h3, .STYLES#multiphonics-cv-3-plus-packs h3 {
  color: #31709f;
}
section#sound-packs aside#multiphonics-cv-3-plus-packs button.call-to-action span, .PLUS-PACKS#multiphonics-cv-3-plus-packs button.call-to-action span, .STYLES#multiphonics-cv-3-plus-packs button.call-to-action span {
  color: white;
  background-color: #3377a8;
}
@media only screen and (min-width: 720px) {
  section#sound-packs aside, .PLUS-PACKS, .STYLES {
    text-align: initial;
  }
}
section#sound-packs aside h4, .PLUS-PACKS h4, .STYLES h4 {
  color: #2D2D2D;
  text-decoration: none;
  text-transform: uppercase;
}
@media only screen and (min-width: 320px) {
  section#sound-packs aside h4, .PLUS-PACKS h4, .STYLES h4 {
    font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-rendering: optimizeLegibility;
    font-size: 4rem;
    line-height: 4rem;
    text-align: center;
  }
}
@media only screen and (min-width: 720px) {
  section#sound-packs aside h4, .PLUS-PACKS h4, .STYLES h4 {
    font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-rendering: optimizeLegibility;
    font-size: 3.2rem;
    line-height: 3.2rem;
    text-align: left;
  }
}
@media only screen and (min-width: 1000px) {
  section#sound-packs aside h4, .PLUS-PACKS h4, .STYLES h4 {
    font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-rendering: optimizeLegibility;
    font-size: 3.8rem;
    line-height: 3.8rem;
  }
}
section#sound-packs aside h4 + p, .PLUS-PACKS h4 + p, .STYLES h4 + p {
  color: #717070;
}
@media only screen and (min-width: 320px) {
  section#sound-packs aside h4 + p, .PLUS-PACKS h4 + p, .STYLES h4 + p {
    font-family: "Knockout 34 A", "Knockout 34 B", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-rendering: optimizeLegibility;
    font-size: 2.4rem;
    line-height: 2.4rem;
    text-transform: uppercase;
    text-align: center;
  }
}
@media only screen and (min-width: 720px) {
  section#sound-packs aside h4 + p, .PLUS-PACKS h4 + p, .STYLES h4 + p {
    font-family: "Knockout 34 A", "Knockout 34 B", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-rendering: optimizeLegibility;
    font-size: 1.68rem;
    line-height: 1.68rem;
    text-transform: uppercase;
    text-align: left;
  }
}
@media only screen and (min-width: 1000px) {
  section#sound-packs aside h4 + p, .PLUS-PACKS h4 + p, .STYLES h4 + p {
    font-family: "Knockout 34 A", "Knockout 34 B", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-rendering: optimizeLegibility;
    font-size: 2.28rem;
    line-height: 2.28rem;
    text-transform: uppercase;
  }
}
section#sound-packs aside p.new span, .PLUS-PACKS p.new span, .STYLES p.new span {
  font-size: 1.8rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 900;
  background-color: black;
  padding: 0rem 0.6rem 0.1rem 0.6rem;
  color: white;
}
section#sound-packs aside ul, .PLUS-PACKS ul, .STYLES ul {
  list-style-type: square;
}
section#sound-packs aside ul li, .PLUS-PACKS ul li, .STYLES ul li {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
  margin-left: 3rem;
}
section#sound-packs aside ul li, .PLUS-PACKS ul li, .STYLES ul li {
  margin-left: 2.25rem;
}
section#sound-packs aside div.price, .PLUS-PACKS div.price, .STYLES div.price {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  font-size: 2.55rem;
  font-weight: 700;
  line-height: 3.15rem;
}
section#sound-packs aside div.price span.regular-price, .PLUS-PACKS div.price span.regular-price, .STYLES div.price span.regular-price {
  color: #99978E;
  font: inherit;
  text-decoration: line-through;
}
section#sound-packs aside div.price span.current-price, .PLUS-PACKS div.price span.current-price, .STYLES div.price span.current-price {
  font: inherit;
}
section#sound-packs aside div.price span.currency-symbol, .PLUS-PACKS div.price span.currency-symbol, .STYLES div.price span.currency-symbol {
  font-size: 66.6666%;
  font: inherit;
  text-decoration: none;
  vertical-align: top;
}
section#sound-packs aside div.call-to-action, .PLUS-PACKS div.call-to-action, .STYLES div.call-to-action {
  color: white;
  font-family: "Knockout 53 A", "Knockout 53 B", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
}
section#sound-packs aside div.call-to-action div, .PLUS-PACKS div.call-to-action div, .STYLES div.call-to-action div {
  font: inherit;
  color: inherit;
  display: flex;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
section#sound-packs aside div.call-to-action div span, .PLUS-PACKS div.call-to-action div span, .STYLES div.call-to-action div span {
  padding-left: 1rem;
  padding-right: 1rem;
  font: inherit;
  color: inherit;
  display: table-cell;
}
section#sound-packs aside div.call-to-action > div.add-to-cart span:last-child, .PLUS-PACKS div.call-to-action > div.add-to-cart span:last-child, .STYLES div.call-to-action > div.add-to-cart span:last-child {
  background-image: url("../images/icon-instant-download-delivery.svg");
  background-position: center center;
  background-repeat: no-repeat;
  padding: 0;
  width: 4.2rem;
}
section#sound-packs aside div.call-to-action > div.owned, section#sound-packs aside div.call-to-action div.in-cart, .PLUS-PACKS div.call-to-action > div.owned, .PLUS-PACKS div.call-to-action div.in-cart, .STYLES div.call-to-action > div.owned, .STYLES div.call-to-action div.in-cart {
  display: none;
}
section#sound-packs aside div.call-to-action > div.owned > span, section#sound-packs aside div.call-to-action div.in-cart > span, .PLUS-PACKS div.call-to-action > div.owned > span, .PLUS-PACKS div.call-to-action div.in-cart > span, .STYLES div.call-to-action > div.owned > span, .STYLES div.call-to-action div.in-cart > span {
  background-color: grey;
}

section#objeq-for-ios a header, .STYLES a header {
  background-color: white;
}
section#objeq-for-ios a footer, .STYLES a footer {
  background-color: #145c55;
  color: white;
}
section#objeq-for-ios a footer h2, .STYLES a footer h2 {
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 4.5rem;
  line-height: 4.5rem;
  text-transform: uppercase;
}
section#objeq-for-ios a footer p, .STYLES a footer p {
  font-family: "Knockout 34 A", "Knockout 34 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 2.25rem;
  line-height: 2.25rem;
  text-transform: uppercase;
}

section#objeq-for-ios, .LAYOUTS {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
section#objeq-for-ios a header, .LAYOUTS a header {
  width: 100%;
  margin: 0;
  padding: 0;
}
section#objeq-for-ios a header div, .LAYOUTS a header div {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
@media only screen and (min-width: 720px) {
  section#objeq-for-ios a header div, .LAYOUTS a header div {
    padding: 0 3rem;
  }
}
@media only screen and (min-width: 320px) {
  section#objeq-for-ios a header div picture#products-objeq-for-ios-phone-screens, .LAYOUTS a header div picture#products-objeq-for-ios-phone-screens {
    display: flex;
    width: 100%;
  }
  section#objeq-for-ios a header div picture#products-objeq-for-ios-phone, .LAYOUTS a header div picture#products-objeq-for-ios-phone {
    display: none;
    width: calc(50vw - 3rem);
    max-width: 48rem;
    margin-left: auto;
  }
  section#objeq-for-ios a header div picture#products-objeq-for-ios-phone img, .LAYOUTS a header div picture#products-objeq-for-ios-phone img {
    width: 100%;
    max-width: 48rem;
    height: intrinsic;
  }
  section#objeq-for-ios a header div picture#products-objeq-for-ios-hands, .LAYOUTS a header div picture#products-objeq-for-ios-hands {
    display: none;
    width: calc(50vw - 3rem);
    max-width: 48rem;
    margin-right: auto;
  }
  section#objeq-for-ios a header div picture#products-objeq-for-ios-hands img, .LAYOUTS a header div picture#products-objeq-for-ios-hands img {
    width: 100%;
    max-width: 48rem;
    height: intrinsic;
  }
}
@media only screen and (min-width: 720px) {
  section#objeq-for-ios a header div picture#products-objeq-for-ios-phone-screens, .LAYOUTS a header div picture#products-objeq-for-ios-phone-screens {
    display: none;
  }
  section#objeq-for-ios a header div picture#products-objeq-for-ios-phone, .LAYOUTS a header div picture#products-objeq-for-ios-phone {
    display: flex;
  }
  section#objeq-for-ios a header div picture#products-objeq-for-ios-hands, .LAYOUTS a header div picture#products-objeq-for-ios-hands {
    display: flex;
  }
}
section#objeq-for-ios a footer, .LAYOUTS a footer {
  width: 100%;
  margin: 0;
  padding: 0;
  padding: 1.5rem 0;
}
section#objeq-for-ios a footer div, .LAYOUTS a footer div {
  margin: 0 auto;
  max-width: 120rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  justify-content: start;
  column-gap: 1.5rem;
}
@media only screen and (min-width: 320px) {
  section#objeq-for-ios a footer div, .LAYOUTS a footer div {
    padding: 0 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#objeq-for-ios a footer div, .LAYOUTS a footer div {
    padding: 0 3rem;
  }
}
@media only screen and (min-width: 320px) {
  section#objeq-for-ios a footer div picture#products-objeq-for-ios-icon, .LAYOUTS a footer div picture#products-objeq-for-ios-icon {
    display: flex;
    grid-column: 1/2;
    grid-row: 1/3;
  }
  section#objeq-for-ios a footer div picture#products-objeq-for-ios-icon img, .LAYOUTS a footer div picture#products-objeq-for-ios-icon img {
    height: 6.75rem;
  }
  section#objeq-for-ios a footer div h2, .LAYOUTS a footer div h2 {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  section#objeq-for-ios a footer div p, .LAYOUTS a footer div p {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  section#objeq-for-ios a footer div a, .LAYOUTS a footer div a {
    display: none;
  }
}
@media only screen and (min-width: 720px) {
  section#objeq-for-ios a footer div picture#products-objeq-for-ios-icon, .LAYOUTS a footer div picture#products-objeq-for-ios-icon {
    display: flex;
    grid-column: 1/2;
    grid-row: 1/3;
  }
  section#objeq-for-ios a footer div picture#products-objeq-for-ios-icon img, .LAYOUTS a footer div picture#products-objeq-for-ios-icon img {
    height: 6.75rem;
  }
  section#objeq-for-ios a footer div h2, .LAYOUTS a footer div h2 {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  section#objeq-for-ios a footer div p, .LAYOUTS a footer div p {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  section#objeq-for-ios a footer div picture, .LAYOUTS a footer div picture {
    display: flex;
    display: flex;
    grid-column: 3/4;
    grid-row: 1/3;
  }
  section#objeq-for-ios a footer div picture img, .LAYOUTS a footer div picture img {
    height: 6.75rem;
  }
}

section.benefits {
  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 {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section.benefits {
    padding: 6rem 3rem;
  }
}
section.benefits > div {
  box-sizing: border-box;
  width: 100%;
}
@media only screen and (min-width: 720px) {
  section.benefits > div {
    max-width: 180ch;
  }
}
@media only screen and (min-width: 1710px) {
  section.benefits > div {
    max-width: 360ch;
  }
}
section.benefits > div ul {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}
section.benefits > div ul li {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  text-align: center;
}
section.benefits > div ul li img {
  width: 6rem;
  height: 6rem;
}
section.benefits > 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 > div ul li h2 {
    margin-top: 0.75rem;
  }
}
section.benefits > 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 > div ul {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  section.benefits > div ul li {
    flex-basis: 100%;
    max-width: 90ch;
  }
}
@media only screen and (min-width: 720px) {
  section.benefits > div ul {
    gap: 6rem 3rem;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: start;
  }
  section.benefits > div ul li {
    flex-basis: calc((100% - 3rem) / 2);
  }
}
@media only screen and (min-width: 1710px) {
  section.benefits > div ul {
    gap: 6rem 3rem;
    flex-direction: row;
    flex-wrap: wrap;
  }
  section.benefits > div ul li {
    flex-basis: calc((100% - 9rem) / 4);
  }
}

/*# sourceMappingURL=products.css.map */
