@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 > div {
  width: 100%;
  height: 100%;
  display: grid;
  box-sizing: border-box;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.9411764706) 20%, rgba(0, 0, 0, 0.9411764706) 100%);
}
@media only screen and (min-width: 320px) {
  section#hero > div {
    grid-template-columns: 1fr 29.504rem 1fr;
    grid-template-rows: 3rem 3fr 1fr 3rem;
  }
}
@media only screen and (min-width: 720px) {
  section#hero > div {
    grid-template-columns: 1fr 66.384rem 1fr;
  }
}
@media only screen and (min-width: 1000px) {
  section#hero > div {
    grid-template-columns: 1fr 92.2rem 1fr;
    grid-template-rows: 6rem 3fr 1fr 6rem;
  }
}
section#hero > div div.background-top {
  grid-column: 1/4;
  grid-row: 1/3;
  background-color: #327aad;
  mix-blend-mode: multiply;
}
section#hero > div div.background-bottom {
  grid-column: 1/4;
  grid-row: 3/5;
  background-color: #3e3d39;
  mix-blend-mode: multiply;
}
section#hero > div header {
  display: grid;
  grid-template-rows: min-content min-content;
  grid-template-columns: min-content min-content;
  grid-template-areas: "aside title" "aside text";
  grid-row: 2;
  grid-column: 2;
  z-index: 1;
}
@media only screen and (min-width: 320px) {
  section#hero > div header {
    grid-column-gap: 0.75rem;
    margin-top: 3rem;
  }
}
@media only screen and (min-width: 720px) {
  section#hero > div header {
    grid-column-gap: 1.5rem;
    margin-top: 3rem;
    margin-left: 1.5rem;
  }
}
@media only screen and (min-width: 1000px) {
  section#hero > div header {
    margin-top: 1.5rem;
  }
}
section#hero > div header aside.tag {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  display: grid;
  grid-area: aside;
  align-self: center;
  text-transform: uppercase;
  text-wrap: balance;
  color: #ffffff;
  background-color: #9d4d5c;
  border-radius: 3px;
}
@media only screen and (min-width: 320px) {
  section#hero > div header aside.tag {
    font-size: 2.24rem;
    line-height: 2.24rem;
    padding: 0 5px 0 2.5px;
    border: 1.5px solid #ffffff;
  }
}
@media only screen and (min-width: 720px) {
  section#hero > div header aside.tag {
    font-size: 3.752rem;
    line-height: 3.752rem;
    padding: 0 10px 0 5px;
    border: 3px solid #ffffff;
  }
}
@media only screen and (min-width: 1000px) {
  section#hero > div header aside.tag {
    font-size: 5.6rem;
    line-height: 5.6rem;
  }
}
section#hero > div header h1 {
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  grid-area: title;
  text-transform: uppercase;
  text-wrap: balance;
  color: #fff;
}
@media only screen and (min-width: 320px) {
  section#hero > div header h1 {
    font-size: 1.92rem;
    line-height: 1.6rem;
  }
}
@media only screen and (min-width: 720px) {
  section#hero > div header h1 {
    font-size: 3.216rem;
    line-height: 2.68rem;
  }
}
@media only screen and (min-width: 1000px) {
  section#hero > div header h1 {
    font-size: 4.8rem;
    line-height: 4rem;
  }
}
section#hero > div header p {
  font-family: "Knockout 34 A", "Knockout 34 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  grid-area: text;
  text-transform: uppercase;
  text-wrap: balance;
  color: #bee4ff;
}
@media only screen and (min-width: 320px) {
  section#hero > div header p {
    font-size: 0.6912rem;
    line-height: 0.64rem;
  }
}
@media only screen and (min-width: 720px) {
  section#hero > div header p {
    font-size: 1.15776rem;
    line-height: 1.072rem;
  }
}
@media only screen and (min-width: 1000px) {
  section#hero > div header p {
    font-size: 1.728rem;
    line-height: 1.6rem;
  }
}
section#hero > div > picture {
  display: flex;
  justify-self: center;
  grid-column: 2;
  grid-row: 2/4;
  margin-top: 6rem;
  height: auto;
  z-index: 1;
}
section#hero > div > picture img {
  width: 100%;
}

nav#page-navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  margin-top: -1px;
  background-color: #0e0e0e;
}
@media only screen and (min-width: 320px) {
  nav#page-navigation {
    padding: 3rem 3rem;
  }
}
@media only screen and (min-width: 720px) {
  nav#page-navigation {
    padding: 3rem 1.5rem;
  }
}
nav#page-navigation div ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  list-style-type: none;
}
@media only screen and (min-width: 720px) {
  nav#page-navigation div ul {
    flex-direction: row;
  }
}
nav#page-navigation div ul li a {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
  text-wrap: balance;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  color: #ADABA8;
}

section#offers {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: #eae9e6;
}
@media only screen and (min-width: 320px) {
  section#offers {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#offers {
    padding: 6rem 3rem;
  }
}
section#offers > div {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 320px) {
  section#offers > div > ul li {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (min-width: 1000px) {
  section#offers > div {
    max-width: 120rem;
  }
}
section#offers > div > header {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 4.5rem;
  width: 100%;
}
section#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#offers > div > header h2 abbr {
  text-decoration: none;
}
section#offers > div > header h2 a {
  color: transparent;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
}
section#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#offers > div > header h2 {
  color: #327aad;
}
section#offers > div > header p {
  color: #327aad;
}
section#offers > div div.limited-offer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section#offers > div div.limited-offer-container div.limited-offer {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  text-transform: unset;
  padding: 0 0.6rem 0 0.6rem;
  border: 4.4px solid white;
  border-radius: 0.6rem;
  background-color: #000;
}
@media only screen and (min-width: 720px) {
  section#offers > div div.limited-offer-container div.limited-offer {
    font-size: 1.8rem;
  }
}
section#offers > div > ul {
  width: 100%;
  display: flex;
  justify-content: center;
  list-style-type: none;
  column-gap: 6rem;
  row-gap: 1.5rem;
}
@media only screen and (min-width: 320px) {
  section#offers > div > ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  section#offers > div > ul > li {
    box-sizing: border-box;
    padding: 2rem;
    border-radius: 2rem;
    max-width: 50rem;
  }
  section#offers > div > ul > li img {
    width: 100%;
    display: block;
  }
  section#offers > div > ul > li div.feature-highlight {
    margin-top: calc(-1.4rem + (100% - 2 * 2rem) * 1376 / 1800);
  }
  section#offers > div > ul > li svg {
    margin-top: calc(19.2rem + (100% - 2 * 22.6rem) * 1376 / 1800);
  }
  section#offers > div > ul > li:first-child div.limited-offer-container {
    margin-bottom: -1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#offers > div > ul > li {
    padding: 3rem;
  }
  section#offers > div > ul > li div.feature-highlight {
    margin-top: calc(-0.4rem + (100% - 2 * 3rem) * 1376 / 1800);
  }
}
@media only screen and (min-width: 1000px) {
  section#offers > div > ul {
    flex-direction: row;
    align-items: stretch;
  }
  section#offers > div > ul > li {
    padding: 4rem;
  }
  section#offers > div > ul > li div.feature-highlight {
    margin-top: calc(0.6rem + (100% - 2 * 4rem) * 1376 / 1800);
  }
  section#offers > div > ul > li svg {
    margin-top: calc(19.5rem + (100% - 2 * 22.9rem) * 1376 / 1800);
  }
}
@media only screen and (min-width: 1281px) {
  section#offers > div > ul > li {
    margin: 0;
    padding: 5rem;
  }
  section#offers > div > ul > li div.feature-highlight {
    margin-top: calc(1.6rem + (100% - 2 * 5rem) * 1376 / 1800);
  }
  section#offers > div > ul > li svg {
    margin-top: calc(18.5rem + (100% - 2 * 21.9rem) * 1376 / 1800);
  }
}
section#offers > div > ul > li {
  flex-basis: calc((100% - 3rem) * 0.5);
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  transition: all 0.2s ease-in-out;
  background-color: rgba(255, 255, 255, 0.4);
}
@media only screen and (min-width: 320px) {
  section#offers > div > ul > li {
    row-gap: 1rem;
  }
}
@media only screen and (min-width: 720px) {
  section#offers > div > ul > li {
    row-gap: 1.5rem;
  }
}
section#offers > div > ul > li:hover {
  transform: scale(1.0125);
  box-shadow: 0 0 2rem 0 hsla(0, 0%, 0%, 0.1);
}
section#offers > div > ul > li picture {
  width: 100%;
  overflow: hidden;
}
section#offers > div > ul > li svg {
  position: absolute;
  top: 0;
}
section#offers > div > ul > li li {
  position: relative;
}
section#offers > div > ul > li figure {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  aspect-ration: unset;
  overflow: unset;
  box-shadow: -6px -22px 22px 6px rgba(0, 0, 0, 0.33);
}
@media only screen and (min-width: 320px) {
  section#offers > div > ul > li figure {
    display: none;
  }
}
@media only screen and (min-width: 720px) {
  section#offers > div > ul > li figure {
    display: block;
    max-width: 15.4rem;
    margin-top: calc(255rem + (100% - 2 * 255rem) * 180.4 / 355);
    margin-left: calc(382rem + (100% - 2 * 382rem) * 186.9 / 355);
  }
}
@media only screen and (min-width: 1000px) {
  section#offers > div > ul > li figure {
    max-width: 14.1rem;
    margin-top: calc(255rem + (100% - 2 * 255rem) * 180.2 / 355);
    margin-left: calc(382rem + (100% - 2 * 382rem) * 186.1 / 355);
  }
}
section#offers > div > ul > li figure div.tag {
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  top: 0;
  right: 0;
  position: absolute;
  padding: 0 0.5rem 0 0.5rem;
  margin: -1rem 1rem;
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #fff;
  background-color: #3279AD;
}
section#offers > div > ul > li div.feature-highlight {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  position: absolute;
  top: 0;
  min-height: 3rem;
  padding: 0.5rem 1rem;
  border: 0.45rem solid white;
  box-shadow: inset rgba(0, 0, 0, 0.3) 1px 1px 0px;
  text-align: center;
  text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 0px;
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 3rem;
  color: white;
  background-color: #fc9425;
}
@media only screen and (min-width: 720px) {
  section#offers > div > ul > li div.feature-highlight {
    font-size: 2.2rem;
  }
}
section#offers > div > ul > li header {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
section#offers > div > ul > li header h3 {
  text-align: center;
  text-transform: uppercase;
  font-size: 2.4rem;
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  line-height: 3rem;
  color: #3c84b6;
}
section#offers > div > ul > li header h3 span {
  color: #646464;
}
section#offers > div > ul > li header p, section#offers > div > ul > li header ul[onclick] li {
  text-align: center;
  text-transform: lowercase;
  font-size: 2rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  line-height: 2rem;
}
section#offers > div > ul > li ul {
  list-style-type: square;
}
section#offers > div > ul > li 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#offers > div > ul > li ul {
  margin-bottom: auto;
}
section#offers > div > ul > li ul li {
  display: list-item;
}
section#offers > div > ul > li ul li span {
  font: inherit;
  font-weight: 600;
}
section#offers > div > ul > li ul li span.free-sound-pack {
  padding: 0 0.5rem;
  text-transform: uppercase;
  background-color: #3279AD;
  color: #fff;
}
section#offers > div > ul > li ul li mark {
  padding: 0 0.5rem;
  font: inherit;
  font-weight: 700;
  font-size: 1.6rem;
  background-color: rgb(255, 210, 127.5);
}
section#offers > div > ul > li ul li a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
section#offers > div > ul > li ul li sup {
  position: absolute;
  top: -0.5rem;
}
section#offers > div > ul > li p.comparison-highlight {
  width: max-content;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  line-height: 2.5rem;
}
section#offers > div > ul > li p.comparison-highlight span {
  padding: 0 0.5rem;
  background-color: orange;
}
section#offers > div > ul > li div.prices span {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 3rem;
  color: black;
}
section#offers > div > ul > li div.prices span.regular {
  color: #99978E;
}
section#offers > div > ul > li div.prices span.regular data {
  text-decoration: line-through;
}
section#offers > div > ul > li div.prices span small {
  font: inherit;
  vertical-align: text-top;
  font-size: 66.6666%;
}
section#offers > div > ul > li div.prices span data {
  font: inherit;
}
section#offers > div > ul > li button.add-to-cart {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  border: none;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  font-family: "Knockout 53 A", "Knockout 53 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 1.8rem;
  line-height: 1.8rem;
  gap: 0.1rem;
}
section#offers > div > ul > li button.add-to-cart.call-to-action-option span {
  background-color: rgb(34.8148148148, 76.012345679, 106.1851851852);
}
section#offers > div > ul > li button.add-to-cart span, section#offers > div > ul > li 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: #3c83b7;
  color: white;
}
section#offers > div > ul > li p.limited-time-offer {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
}
section#offers > div > ul > li > aside {
  position: absolute;
  line-height: 1.8rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  font-size: 1.44rem;
  color: #424242;
  text-transform: uppercase;
}
@media only screen and (min-width: 320px) {
  section#offers > div > ul > li > aside {
    bottom: -1.5rem;
  }
}
@media only screen and (min-width: 1000px) {
  section#offers > div > ul > li > aside {
    bottom: -3rem;
  }
}
section#offers > div > ul > li > aside sup {
  vertical-align: text-top;
}
section#offers > div > footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media only screen and (min-width: 320px) {
  section#offers > div > footer h2 {
    font-size: 2rem;
    line-height: 3rem;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 700;
    padding-top: 3rem;
    text-transform: uppercase;
    color: #327aad;
  }
}
@media only screen and (min-width: 720px) {
  section#offers > div > footer h2 {
    padding-top: 6rem;
  }
}
section#offers > div > footer p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
  max-width: 100ch;
  padding-bottom: 0.5rem;
}
section#offers > div > footer div.call-to-action-2nd-tier {
  text-align: center;
}
section#offers > div > footer div.call-to-action-2nd-tier a {
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  font-weight: 600;
  font-size: 2rem;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  line-height: 3rem;
  color: #327aad;
}

section#newsfeed {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  background-color: #242321;
}
@media only screen and (min-width: 320px) {
  section#newsfeed {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#newsfeed {
    padding: 6rem 3rem;
  }
}
section#newsfeed > div {
  font-family: "Source Sans Pro", sans-serif;
  box-sizing: border-box;
  width: 100%;
  margin: 0px auto;
  text-align: center;
}
section#newsfeed > div p {
  color: white;
  font: inherit;
  text-wrap: balance;
  font-weight: 400;
  font-size: 1.9rem;
  line-height: 3rem;
}
section#newsfeed > div h2, section#newsfeed > div h2 a {
  text-wrap: balance;
  color: #ad5966;
  font: inherit;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 3rem;
  text-decoration: underline;
  text-transform: uppercase;
}

section#whats-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: #eae9e6;
}
section#whats-new > div {
  width: 100%;
  box-sizing: border-box;
}
section#whats-new > div header {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 4.5rem;
  margin-bottom: 0;
  padding-bottom: 4.5rem;
  background-color: #d3d2d1;
}
section#whats-new > 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#whats-new > div header h2 abbr {
  text-decoration: none;
}
section#whats-new > div header h2 a {
  color: transparent;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
}
section#whats-new > 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;
}
@media only screen and (min-width: 320px) {
  section#whats-new > div header {
    padding-top: 3rem;
  }
}
@media only screen and (min-width: 1000px) {
  section#whats-new > div header {
    padding-top: 6rem;
  }
}
section#whats-new > div header h2 {
  text-wrap: balance;
  color: #327aad;
}
section#whats-new > div header p {
  text-wrap: balance;
  color: #327aad;
}
section#whats-new > div article {
  display: grid;
  justify-content: center;
  gap: 3rem;
  padding-top: 3rem;
  border-bottom: solid 3px #b9b8b8;
  background: linear-gradient(0deg, #b7b6b6 -50%, #d3d2d1 50%);
}
@media only screen and (min-width: 320px) {
  section#whats-new > div article {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media only screen and (min-width: 1000px) {
  section#whats-new > div article {
    grid-template-columns: repeat(2, 50rem);
    grid-template-rows: 1fr;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
section#whats-new > div article figure {
  display: flex;
  justify-content: center;
  margin-bottom: -3px;
}
section#whats-new > div article figure picture {
  display: flex;
  max-width: 50rem;
}
section#whats-new > div article figure picture img {
  width: 100%;
}
section#whats-new > div article section {
  display: grid;
  justify-self: center;
  text-align: center;
  align-self: center;
}
@media only screen and (min-width: 320px) {
  section#whats-new > div article section {
    align-self: start;
  }
}
@media only screen and (min-width: 1000px) {
  section#whats-new > div article section {
    align-self: center;
  }
}
section#whats-new > div article section h2 {
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  grid-row: 1;
  text-wrap: balance;
}
section#whats-new > div article section p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
  grid-row: 2;
  text-wrap: balance;
}
section#whats-new > div article section a {
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  grid-row: 3;
  text-wrap: balance;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  color: #327aad;
}
section#whats-new > div article.physical-modeling {
  padding-top: 0;
}
@media only screen and (min-width: 320px) {
  section#whats-new > div article.physical-modeling figure, section#whats-new > div article.mpe-compatible figure {
    grid-row: 2;
    grid-column: 1;
  }
}
@media only screen and (min-width: 1000px) {
  section#whats-new > div article.physical-modeling figure, section#whats-new > div article.mpe-compatible figure {
    grid-row: 1;
    grid-column: 1;
  }
}
@media only screen and (min-width: 320px) {
  section#whats-new > div article.physical-modeling section, section#whats-new > div article.mpe-compatible section {
    grid-row: 1;
    grid-column: 1;
  }
}
@media only screen and (min-width: 1000px) {
  section#whats-new > div article.physical-modeling section, section#whats-new > div article.mpe-compatible section {
    grid-row: 1;
    grid-column: 2;
  }
}
@media only screen and (min-width: 320px) {
  section#whats-new > div article.polyphonic-instantly figure, section#whats-new > div article.fm-synthesis figure {
    grid-row: 2;
    grid-column: 1;
  }
}
@media only screen and (min-width: 1000px) {
  section#whats-new > div article.polyphonic-instantly figure, section#whats-new > div article.fm-synthesis figure {
    grid-row: 1;
    grid-column: 2;
  }
}
@media only screen and (min-width: 320px) {
  section#whats-new > div article.polyphonic-instantly section, section#whats-new > div article.fm-synthesis section {
    grid-row: 1;
    grid-column: 1;
  }
}
@media only screen and (min-width: 1000px) {
  section#whats-new > div article.polyphonic-instantly section, section#whats-new > div article.fm-synthesis section {
    grid-row: 1;
    grid-column: 1;
  }
}
section#whats-new > div > a {
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  text-decoration: underline;
  text-wrap: balance;
  text-decoration-thickness: 2px;
  color: #327aad;
  background-color: #d3d2d1;
}

section#cv-3-praise {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  padding: 0 !important;
  background-color: #242321;
}
@media only screen and (min-width: 320px) {
  section#cv-3-praise {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#cv-3-praise {
    padding: 6rem 3rem;
  }
}
@media only screen and (min-width: 1000px) {
  section#cv-3-praise {
    padding-left: 3rem !important;
  }
}
@media only screen and (min-width: 1281px) {
  section#cv-3-praise {
    padding-left: 0 !important;
  }
}
section#cv-3-praise > div {
  width: 100%;
  max-width: 140rem;
  display: grid;
}
@media only screen and (min-width: 320px) {
  section#cv-3-praise > div {
    grid-template-rows: auto auto;
  }
  section#cv-3-praise > div blockquote.nothing-like-it {
    grid-column: 1;
    grid-row: 2;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }
  section#cv-3-praise > div blockquote.perfect-modular-software-synthesizer {
    grid-column: 1;
    grid-row: 3;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
  }
  section#cv-3-praise > div picture {
    grid-column: 1;
    grid-row: 1;
  }
}
@media only screen and (min-width: 1000px) {
  section#cv-3-praise > div {
    grid-template-columns: auto 34rem;
    column-gap: 1.5rem;
  }
  section#cv-3-praise > div blockquote.nothing-like-it {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0.75rem;
  }
  section#cv-3-praise > div blockquote.perfect-modular-software-synthesizer {
    grid-column: 1;
    grid-row: 2;
    margin-top: 0.75rem;
  }
  section#cv-3-praise > div picture {
    grid-column: 2;
    grid-row: span 2;
  }
}
@media only screen and (min-width: 1000px) {
  section#cv-3-praise > div {
    grid-template-columns: auto 46rem;
  }
}
@media only screen and (min-width: 1281px) {
  section#cv-3-praise > div {
    grid-template-columns: auto 50rem;
  }
}
section#cv-3-praise > div blockquote {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  padding: 0;
  padding-left: 3rem;
  padding-right: 3rem;
  font-style: italic;
  text-align: center;
  line-height: 2.5rem;
  color: #ffffff;
}
section#cv-3-praise > div blockquote h3 {
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-wrap: balance;
  color: #4182b1;
}
section#cv-3-praise > div blockquote h3::before {
  content: "“";
  position: absolute;
  line-height: 4.5rem;
  text-indent: -5.5rem;
  font-size: 10rem;
}
section#cv-3-praise > div blockquote p {
  text-wrap: balance;
  color: #ffffff;
  font-weight: 300;
}
section#cv-3-praise > div blockquote footer {
  margin-top: 1.5rem;
  font-weight: 700;
}
section#cv-3-praise > div blockquote footer a {
  cursor: pointer;
  text-wrap: balance;
  color: #ffffff;
}
section#cv-3-praise > div blockquote footer a cite {
  cursor: pointer;
  text-decoration: underline;
  color: #ffffff;
}
section#cv-3-praise > div picture {
  width: 100%;
  display: flex;
  aspect-ratio: 1;
}
section#cv-3-praise > div picture img {
  width: 100%;
  aspect-ratio: 1;
}

section#instrument-and-effect > div {
  box-sizing: border-box;
  display: grid;
  background-color: #eae9e6;
}
@media only screen and (min-width: 320px) {
  section#instrument-and-effect > div {
    grid-template-columns: 1fr;
    grid-template-rows: 3rem 1fr min-content 3rem 1fr min-content 3rem;
  }
}
@media only screen and (min-width: 1000px) {
  section#instrument-and-effect > div {
    grid-template-columns: 1fr 50rem 50rem 1fr;
    grid-template-rows: 6rem 1fr 6rem 1fr 6rem;
  }
}
section#instrument-and-effect > div div.row {
  grid-column: 1/5;
  background-color: #f5f4f2;
}
section#instrument-and-effect > div aside#multiphonics-cv-3-instrument {
  background: radial-gradient(circle, rgb(40, 107, 152) 25%, rgb(40, 107, 152) 25%, rgb(23, 88, 134) 100%);
}
@media only screen and (min-width: 320px) {
  section#instrument-and-effect > div aside#multiphonics-cv-3-instrument {
    grid-column: 1;
    grid-row: 3;
  }
}
@media only screen and (min-width: 1000px) {
  section#instrument-and-effect > div aside#multiphonics-cv-3-instrument {
    grid-column: 2;
    grid-row: 2;
  }
}
section#instrument-and-effect > div aside#multiphonics-cv-3-instrument p {
  color: #b4e0ff;
}
section#instrument-and-effect > div picture#multiphonics-cv-3-instrument {
  display: flex;
}
@media only screen and (min-width: 320px) {
  section#instrument-and-effect > div picture#multiphonics-cv-3-instrument {
    grid-column: 1;
    grid-row: 2;
  }
}
@media only screen and (min-width: 1000px) {
  section#instrument-and-effect > div picture#multiphonics-cv-3-instrument {
    grid-column: 3;
    grid-row: 2;
  }
}
section#instrument-and-effect > div aside#multiphonics-cv-3-effect {
  background: radial-gradient(circle, rgb(158, 73, 89) 25%, rgb(158, 73, 89) 25%, rgb(122, 50, 62) 100%);
}
@media only screen and (min-width: 320px) {
  section#instrument-and-effect > div aside#multiphonics-cv-3-effect {
    grid-column: 1;
    grid-row: 6;
  }
}
@media only screen and (min-width: 1000px) {
  section#instrument-and-effect > div aside#multiphonics-cv-3-effect {
    grid-column: 3;
    grid-row: 4;
  }
}
section#instrument-and-effect > div aside#multiphonics-cv-3-effect p {
  color: #ffcbd4;
}
section#instrument-and-effect > div picture#multiphonics-cv-3-effect {
  display: flex;
}
@media only screen and (min-width: 320px) {
  section#instrument-and-effect > div picture#multiphonics-cv-3-effect {
    grid-column: 1;
    grid-row: 5;
  }
}
@media only screen and (min-width: 1000px) {
  section#instrument-and-effect > div picture#multiphonics-cv-3-effect {
    grid-column: 2;
    grid-row: 4;
  }
}
section#instrument-and-effect > div aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 3rem 3rem 3rem 3rem;
  width: 100%;
}
section#instrument-and-effect > div aside h3 {
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 4.5rem;
  font-style: italic;
  line-height: 4.5rem;
  text-wrap: balance;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}
@media only screen and (min-width: 320px) {
  section#instrument-and-effect > div aside h3 {
    padding-bottom: 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#instrument-and-effect > div aside h3 {
    padding-bottom: 3rem;
  }
}
section#instrument-and-effect > div aside p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
  text-wrap: balance;
  text-align: center;
}
@media only screen and (min-width: 320px) {
  section#instrument-and-effect > div aside p {
    padding-bottom: 0.75rem;
  }
}
@media only screen and (min-width: 720px) {
  section#instrument-and-effect > div aside p {
    padding-bottom: 1.5rem;
  }
}
section#instrument-and-effect > div aside a {
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  cursor: pointer;
  text-wrap: balance;
  text-align: center;
  text-decoration: underline;
  color: #fff;
}
section#instrument-and-effect > div picture {
  display: flex;
}
section#instrument-and-effect > div picture img {
  width: 100%;
}

section#the-aas-sound-and-feel {
  background-color: #eae9e6;
}
section#the-aas-sound-and-feel div {
  display: flex;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}
section#the-aas-sound-and-feel div figure picture {
  box-sizing: border-box;
  display: flex;
}
section#the-aas-sound-and-feel div figure picture img {
  width: 100%;
}
section#the-aas-sound-and-feel div header {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  display: flex;
  position: absolute;
  z-index: 2;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  background: rgba(0, 0, 0, 0.66);
}
@media only screen and (min-width: 320px) {
  section#the-aas-sound-and-feel div header {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#the-aas-sound-and-feel div header {
    padding: 6rem 3rem;
  }
}
section#the-aas-sound-and-feel div header div {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 4.5rem;
  margin-bottom: 0;
}
section#the-aas-sound-and-feel div header div 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#the-aas-sound-and-feel div header div h2 abbr {
  text-decoration: none;
}
section#the-aas-sound-and-feel div header div h2 a {
  color: transparent;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
}
section#the-aas-sound-and-feel div header div 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#the-aas-sound-and-feel div header div h2 {
  text-wrap: balance;
  color: #50a6e3;
}
section#the-aas-sound-and-feel div header div p {
  text-wrap: balance;
  color: #fff !important;
  font-weight: 600 !important;
}
section#the-aas-sound-and-feel div header div div.call-to-action, section#the-aas-sound-and-feel div header div div#see-all-modules-button {
  display: flex;
  justify-content: center;
  text-align: center;
  padding-top: 3rem;
}
section#the-aas-sound-and-feel div header div div.call-to-action a, section#the-aas-sound-and-feel div header div div#see-all-modules-button a {
  box-sizing: border-box;
  display: flex;
  justify-items: center;
  align-content: center;
  border: none;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-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;
  color: white;
}
section#the-aas-sound-and-feel div header div div.call-to-action a span, section#the-aas-sound-and-feel div header div div#see-all-modules-button a span {
  display: flex;
  height: 4.2rem;
  margin: 0;
  padding: 0 2rem;
  align-items: center;
  font: inherit;
  text-transform: uppercase;
  background-color: #3379ad;
}

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

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

section#audio-fx {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  background-color: #eae9e6;
}
@media only screen and (min-width: 320px) {
  section#audio-fx {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#audio-fx {
    padding: 6rem 3rem;
  }
}
section#audio-fx > div {
  box-sizing: border-box;
  width: 100%;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
}
section#audio-fx > div header {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 4.5rem;
}
section#audio-fx > 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#audio-fx > div header h2 abbr {
  text-decoration: none;
}
section#audio-fx > div header h2 a {
  color: transparent;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
}
section#audio-fx > 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#audio-fx > div header h2 {
  text-wrap: balance;
  color: #327aad;
}
section#audio-fx > div ul.audio-fx-video {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  margin-top: 6rem;
  padding: 0;
  list-style-type: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}
section#audio-fx > div ul.audio-fx-video li {
  box-sizing: border-box;
  width: 100%;
  position: relative;
  text-align: center;
}
@media only screen and (min-width: 320px) {
  section#audio-fx > div ul.audio-fx-video li {
    flex-basis: 100%;
  }
}
@media only screen and (min-width: 720px) {
  section#audio-fx > div ul.audio-fx-video li {
    flex-basis: calc((100% - 3rem) / 2);
  }
}
@media only screen and (min-width: 1000px) {
  section#audio-fx > div ul.audio-fx-video li {
    flex-basis: calc((100% - 6rem) / 3);
  }
}
section#audio-fx > div ul.audio-fx-video li.clicked iframe {
  position: absolute;
  z-index: 1;
}
section#audio-fx > div ul.audio-fx-video li.clicked span.play-icon {
  z-index: 0;
}
section#audio-fx > div ul.audio-fx-video li h3 {
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  text-wrap: balance;
}
section#audio-fx > div ul.audio-fx-video li iframe, section#audio-fx > div ul.audio-fx-video li img, section#audio-fx > div ul.audio-fx-video li a.video-url {
  display: block;
  width: 100%;
  margin: 0;
  aspect-ratio: 16/9;
  cursor: pointer;
  background-color: #fff;
}
section#audio-fx > div ul.audio-fx-video li span {
  position: absolute;
  height: auto;
  width: 100%;
  aspect-ratio: 16/9;
  top: 0;
  left: 0;
  background: url("../images/video-embed-play.svg") no-repeat 50%;
  background-size: 8rem 8rem;
  padding: 0;
  cursor: pointer;
}
section#audio-fx > div ul.audio-fx-video li a {
  display: block;
  text-wrap: balance;
  margin-top: 1.5rem;
  align-self: end;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 3rem;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
section#audio-fx > div ul.audio-fx-audio {
  list-style-type: none;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  row-gap: 4.6rem;
}
@media only screen and (min-width: 320px) {
  section#audio-fx > div ul.audio-fx-audio {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (min-width: 720px) {
  section#audio-fx > div ul.audio-fx-audio {
    flex-direction: row;
  }
}
section#audio-fx > div ul.audio-fx-audio li {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 320px) {
  section#audio-fx > div ul.audio-fx-audio li {
    flex-basis: 100%;
    text-align: center;
    align-items: center;
  }
}
@media only screen and (min-width: 720px) {
  section#audio-fx > div ul.audio-fx-audio li {
    flex-basis: calc((100% - 3rem) / 2);
    text-align: left;
    align-items: start;
  }
}
section#audio-fx > div ul.audio-fx-audio li h3 {
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  text-wrap: balance;
  position: relative;
}
section#audio-fx > div ul.audio-fx-audio li h3 > span {
  display: none;
  position: absolute;
  box-sizing: border-box;
  top: -4rem;
  left: 0rem;
  padding: 1rem;
  background-color: white;
  box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.15);
  font-weight: 200;
  font-size: 1.6rem;
  line-height: 1.6rem;
  text-transform: uppercase;
}
section#audio-fx > div ul.audio-fx-audio li h3 > span.show {
  display: inline;
}
section#audio-fx > div ul.audio-fx-audio li h3 > button {
  box-sizing: border-box;
  appearance: none;
  margin: 0;
  margin-left: 1rem;
  margin-right: 1rem;
  border: none;
  cursor: pointer;
  background-color: #3c83b7;
  color: white;
  font-size: 1.9rem;
  width: 4rem;
  line-height: 2rem;
  opacity: 1;
}
section#audio-fx > div ul.audio-fx-audio li h3 > button:hover {
  opacity: 1;
}
section#audio-fx > div ul.audio-fx-audio li p {
  text-wrap: balance;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
}
section#audio-fx > div ul.audio-fx-audio figure {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.5rem;
}
section#audio-fx > div ul.audio-fx-audio figure h3 {
  display: none;
  text-wrap: balance;
}
section#audio-fx > div ul.audio-fx-audio figure button.play-pause {
  border: none;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  width: auto;
  height: 4.5rem;
  aspect-ratio: 1;
}
section#audio-fx > div ul.audio-fx-audio figure button.play-pause.playing svg#play {
  display: none;
}
section#audio-fx > div ul.audio-fx-audio figure button.play-pause.playing svg#pause {
  display: block;
}
section#audio-fx > div ul.audio-fx-audio figure button.play-pause svg {
  width: auto;
  height: 100%;
  aspect-ratio: 1;
}
section#audio-fx > div ul.audio-fx-audio figure button.play-pause svg#play {
  display: block;
}
section#audio-fx > div ul.audio-fx-audio figure button.play-pause svg#play rect#bg {
  fill: #BDDFF8;
}
section#audio-fx > div ul.audio-fx-audio figure button.play-pause svg#play polygon#triangle {
  fill: #307CB0;
}
section#audio-fx > div ul.audio-fx-audio figure button.play-pause svg#pause {
  display: none;
}
section#audio-fx > div ul.audio-fx-audio figure button.play-pause svg#pause rect#bg {
  fill: #307CB0;
}
section#audio-fx > div ul.audio-fx-audio figure button.play-pause svg#pause g#bars {
  fill: white;
}
section#audio-fx > div ul.audio-fx-audio figure button.on-off {
  min-width: max-content;
  border: none;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  flex-grow: 1;
  width: auto;
  height: 4.5rem;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #BDDFF8;
  color: #307CB0;
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 2rem;
}
section#audio-fx > div ul.audio-fx-audio figure button.on-off.on span.on {
  color: #307CB0;
}
section#audio-fx > div ul.audio-fx-audio figure button.on-off.off span.on {
  color: #99C7E9;
}
section#audio-fx > div ul.audio-fx-audio figure button.patch-info {
  border: none;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  width: auto;
  height: 4.5rem;
  aspect-ratio: 1;
  color: #307CB0;
  background-color: #BDDFF8;
  font-size: 2.4rem;
}
section#audio-fx > div ul.audio-fx-audio figure p.patch-info-display {
  width: 100%;
  position: absolute;
  box-sizing: border-box;
  bottom: -4.1rem;
  left: 0rem;
  padding: 1rem;
  color: #307CB0;
  background-color: #BDDFF8;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.6rem;
  text-transform: uppercase;
}
section#audio-fx > div ul.audio-fx-audio figure p.patch-info-display.show {
  display: inline;
}
section#audio-fx > div ul.audio-fx-audio figure > div {
  box-sizing: border-box;
  padding: 1.6rem;
  background-color: #BDDFF8;
  flex-grow: 1;
  width: 100%;
  height: 4.5rem;
}
section#audio-fx > div ul.audio-fx-audio figure > div progress {
  width: 100%;
  height: 100%;
  cursor: url("../images/cursor-pointing-hand.png") 14 10, pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: #9AC7E8;
}
section#audio-fx > div ul.audio-fx-audio figure > div progress::-webkit-progress-bar {
  background-color: #9AC7E8;
}
section#audio-fx > div ul.audio-fx-audio figure > div progress::-moz-progress-bar {
  background-color: #9AC7E8;
}
section#audio-fx > div ul.audio-fx-audio figure > div progress::-webkit-progress-value {
  background-color: #307CB0;
  transition: width 25ms linear;
}
section#audio-fx > div ul.audio-fx-audio figure > div progress.instant::-webkit-progress-value {
  background-color: #307CB0;
  transition: none;
}
section#audio-fx > div details ul {
  margin: 0;
  margin-top: 3rem;
}
section#audio-fx > div details summary {
  width: 100%;
  margin: 0;
  margin-top: 3rem;
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  line-height: 3rem;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  color: #3c83b7;
}
section#audio-fx > div details summary p {
  text-wrap: balance;
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  display: inline;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  color: #3c83b7;
}

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

section#powerful-yet-easy-to-use {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  width: 100%;
  background-color: #f5f4f2;
}
@media only screen and (min-width: 320px) {
  section#powerful-yet-easy-to-use {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#powerful-yet-easy-to-use {
    padding: 6rem 3rem;
  }
}
section#powerful-yet-easy-to-use > div {
  width: 100%;
  box-sizing: border-box;
  max-width: 120rem;
  margin: 0 auto;
}
section#powerful-yet-easy-to-use > div header {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 4.5rem;
}
section#powerful-yet-easy-to-use > 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#powerful-yet-easy-to-use > div header h2 abbr {
  text-decoration: none;
}
section#powerful-yet-easy-to-use > div header h2 a {
  color: transparent;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
}
section#powerful-yet-easy-to-use > 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#powerful-yet-easy-to-use > div header h2 {
  color: #3c84b6;
  text-wrap: balance;
}
section#powerful-yet-easy-to-use > div header p {
  text-wrap: balance;
  color: #1a1b1a;
}
@media only screen and (min-width: 320px) {
  section#powerful-yet-easy-to-use > div ul {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    box-sizing: border-box;
    list-style-type: none;
  }
}
@media only screen and (min-width: 720px) {
  section#powerful-yet-easy-to-use > div ul {
    gap: 6rem;
  }
}
@media only screen and (min-width: 320px) {
  section#powerful-yet-easy-to-use > div ul li {
    width: 100%;
    flex-basis: calc(100% - 3rem);
  }
}
@media only screen and (min-width: 720px) {
  section#powerful-yet-easy-to-use > div ul li {
    flex-basis: calc(50% - 6rem);
  }
}
section#powerful-yet-easy-to-use > div ul li picture img {
  width: 100%;
}
section#powerful-yet-easy-to-use > div ul h3 {
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  text-wrap: balance;
  padding-top: 1.5rem;
  text-align: center;
}

section#trial {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  background-color: #D3D2D1;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 320px) {
  section#trial {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#trial {
    padding: 6rem 3rem;
  }
}
section#trial > div {
  box-sizing: border-box;
  width: 100%;
  max-width: 80rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section#trial > div > header {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 4.5rem;
  margin-bottom: 3rem !important;
}
section#trial > 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#trial > div > header h2 abbr {
  text-decoration: none;
}
section#trial > div > header h2 a {
  color: transparent;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
}
section#trial > 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#trial > div > header h2 {
  color: #31709f;
  text-wrap: balance;
}
section#trial > div ul {
  list-style-type: none;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  gap: 3rem;
}
@media only screen and (min-width: 320px) {
  section#trial > div ul {
    flex-direction: column;
  }
}
@media only screen and (min-width: 720px) {
  section#trial > div ul {
    flex-direction: row;
  }
}
section#trial > div ul li {
  flex-basis: 50%;
}
section#trial > div ul li a {
  text-decoration: none;
  text-align: center;
  text-wrap: balance;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section#trial > div ul li a svg {
  width: 25rem;
}
section#trial > div ul li a svg g#download-circle circle#circle {
  fill: #3377a8;
}
section#trial > div ul li a svg g#download-circle rect#down-bar {
  stroke: rgb(35, 84.7, 121.1);
  fill: white;
}
section#trial > div ul li a svg g#download-circle path#arrow {
  stroke: rgb(35, 84.7, 121.1);
  fill: white;
}
section#trial > div ul li a header {
  margin-top: 1.5rem;
}
section#trial > div ul li a header h3 {
  text-wrap: balance;
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Knockout 51 A", "Knockout 51 B", sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  font-size: 2.2rem;
  line-height: 2.2rem;
  text-transform: uppercase;
  color: #30719f;
}
section#trial > div ul li a header p {
  text-wrap: balance;
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 1.92rem;
  line-height: 2.2rem;
}
section#trial > div ul li a p {
  text-wrap: balance;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
  line-height: 2.2rem;
}

section#a-wild-sonic-journey {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  background-color: #eae9e6;
}
@media only screen and (min-width: 320px) {
  section#a-wild-sonic-journey {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#a-wild-sonic-journey {
    padding: 6rem 3rem;
  }
}
@media only screen and (min-width: 320px) {
  section#a-wild-sonic-journey {
    padding-bottom: 1.5rem !important;
  }
}
@media only screen and (min-width: 720px) {
  section#a-wild-sonic-journey {
    padding-bottom: 6rem !important;
  }
}
section#a-wild-sonic-journey > div {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
section#a-wild-sonic-journey > div header {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 4.5rem;
}
section#a-wild-sonic-journey > 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#a-wild-sonic-journey > div header h2 abbr {
  text-decoration: none;
}
section#a-wild-sonic-journey > div header h2 a {
  color: transparent;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
}
section#a-wild-sonic-journey > 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#a-wild-sonic-journey > div header h2 {
  color: #31709f;
  text-wrap: balance;
}
section#a-wild-sonic-journey > div ul.details {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
  gap: 3rem;
}
@media only screen and (min-width: 320px) {
  section#a-wild-sonic-journey > div ul.details {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 720px) {
  section#a-wild-sonic-journey > div ul.details {
    flex-wrap: nowrap;
  }
}
@media only screen and (min-width: 1281px) {
  section#a-wild-sonic-journey > div ul.details {
    max-width: 140rem;
  }
}
section#a-wild-sonic-journey > div ul.details li {
  flex-basis: 100%;
}
section#a-wild-sonic-journey > div ul.details li h3 {
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  text-wrap: balance;
}
section#a-wild-sonic-journey > div ul.details li h3 span {
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 4rem;
  color: #30719f;
}
section#a-wild-sonic-journey > div ul.details li p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
  text-wrap: balance;
}

section#sound-packs {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  background-color: initial;
  background-color: #f5f4f2;
}
@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;
  }
}
@media only screen and (min-width: 320px) {
  section#sound-packs {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 1.5rem !important;
  }
}
@media only screen and (min-width: 720px) {
  section#sound-packs {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
    padding-bottom: 6rem !important;
  }
}
section#sound-packs > div {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  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: #3279AD;
}
section#sound-packs > div > header h2 + p span {
  text-decoration: underline;
}
section#sound-packs > div > header + p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
  text-align: center;
  margin: 0;
  margin-top: 3rem;
  margin-bottom: 3rem;
  color: #1a1b1a;
}
section#sound-packs > div > header + p a {
  text-decoration: underline;
}
section#sound-packs > div h4 {
  color: #3279AD;
}
section#sound-packs > div .call-to-action span {
  background-color: #3279AD !important;
}
section#sound-packs > div > div {
  box-sizing: border-box;
  width: 100%;
  max-width: 162rem;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 5rem 3rem;
}
@media only screen and (min-width: 320px) {
  section#sound-packs > div > div {
    box-sizing: border-box;
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    padding: 0;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#sound-packs > div > div {
    flex-wrap: wrap;
    overflow-x: visible;
    scroll-snap-type: unset;
    padding: 0;
    justify-content: center;
  }
}
section#sound-packs > div > div a {
  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 > div a {
    box-sizing: content-box;
    max-width: 60vh;
    flex-basis: 66.666%;
    flex-shrink: 0;
    scroll-snap-align: center;
  }
  section#sound-packs > div > div a:first-child {
    padding-left: 3rem;
  }
  section#sound-packs > div > div a:last-child {
    padding-right: 3rem;
  }
}
@media only screen and (min-width: 720px) {
  section#sound-packs > div > div a {
    box-sizing: border-box;
    flex-basis: calc((100% - 6rem) / 3);
  }
  section#sound-packs > div > div a:first-child {
    padding-left: 0;
  }
  section#sound-packs > div > div a:last-child {
    padding-right: 0;
  }
}
@media only screen and (min-width: 1000px) {
  section#sound-packs > div > div a {
    flex-basis: calc((100% - 9rem) / 4);
  }
}
@media only screen and (min-width: 1281px) {
  section#sound-packs > div > div a {
    flex-basis: calc((100% - 12rem) / 5);
  }
}
@media only screen and (min-width: 1710px) {
  section#sound-packs > div > div a {
    flex-basis: calc((100% - 15rem) / 6);
  }
}
section#sound-packs > div > div a p.new {
  position: absolute;
  top: -1.25rem;
  right: 1.25rem;
}
section#sound-packs > div > 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: rgb(44.2825112108, 107.16367713, 153.2174887892);
}
section#sound-packs > div > div a picture {
  grid-column: span 2;
  width: 100%;
  display: flex;
}
section#sound-packs > div > div a picture img {
  width: 100%;
}
section#sound-packs > div > div a > header {
  grid-column: span 2;
}
section#sound-packs > div > 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: 2.4rem;
  color: #3279AD;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
section#sound-packs > div > div a > header h4 span {
  font: inherit;
}
section#sound-packs > div > 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 > div a div.price {
  grid-column: 1;
  justify-self: end;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #2D2D2D;
  font-size: 1.7rem;
  line-height: 2.1rem;
  font-size: 1.7rem;
}
section#sound-packs > div > div a div.price span.regular-price {
  color: #99978E !important;
  font: inherit;
  text-decoration: line-through;
  text-decoration-thickness: 0.2rem;
}
section#sound-packs > div > div a div.price span.current-price {
  font: inherit;
}
section#sound-packs > div > div a div.price span.currency-symbol {
  color: inherit;
  font: inherit;
  font-size: 66.666%;
  text-decoration: none;
  -webkit-text-decoration: solid line-through transparent;
  vertical-align: text-top;
}
section#sound-packs > div > 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;
  color: #3279AD;
}
section#sound-packs > div > 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 > div a button.call-to-action.call-to-action-option span {
  background-color: rgb(32.4494382022, 75.5730337079, 0.4269662921);
}
section#sound-packs > div > div a button.call-to-action span, section#sound-packs > div > 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 div a p.new span {
  background-color: #000;
}

section#plus-packs {
  background-color: #d3d2d1;
  box-sizing: border-box;
  width: 100%;
  background-color: #d3d2d1;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
}
section#plus-packs > div p.new {
  position: absolute;
  margin-top: 0.5rem;
  margin-right: 1.5rem;
  right: 0;
}
section#plus-packs > div div.call-to-action {
  color: white;
  line-height: 4.2rem;
  height: 4.2rem;
  box-sizing: border-box;
}
section#plus-packs > div div.call-to-action span:last-child {
  width: 4.2rem;
  margin-left: 0.2rem;
  padding: 0;
}
@media only screen and (min-width: 320px) {
  section#plus-packs > div {
    display: grid;
    justify-items: center;
    justify-content: space-around;
    padding: 3rem;
    gap: 1.5rem;
  }
  section#plus-packs > div > picture {
    grid-column: 1/3;
    grid-row: 3;
  }
  section#plus-packs > div > picture img {
    width: 100%;
  }
  section#plus-packs > div > header {
    grid-column: 1/3;
    grid-row: 2;
  }
  section#plus-packs > div ul {
    display: none;
  }
  section#plus-packs > div div.price {
    grid-column: span 2;
    grid-row: 4;
    align-self: center;
  }
  section#plus-packs > div button.call-to-action {
    grid-column: span 2;
    grid-row: 5;
  }
}
@media only screen and (min-width: 720px) {
  section#plus-packs > div {
    display: grid;
    align-content: start;
    justify-items: left;
    justify-content: center;
    grid-template-columns: max-content max-content 1fr;
    grid-template-rows: 1fr min-content min-content min-content min-content 1fr;
    width: 90vw;
    max-width: max-content;
    margin: 0 auto;
    padding: 0;
    gap: 0;
    column-gap: 3rem;
  }
  section#plus-packs > div picture {
    grid-column: 1/2;
    grid-row: 1/7;
    justify-self: right;
    width: 38.5714285714vw;
    margin: 0;
  }
  section#plus-packs > div picture#multiphonics-cv-3-plus-packs {
    margin: 0;
    margin-top: 4%;
  }
  section#plus-packs > div picture#lounge-lizard-ep-5-plus-packs {
    margin: 0;
    margin-top: 9.5%;
    margin-bottom: 5.5%;
  }
  section#plus-packs > div picture#ultra-analog-va-3-plus-packs {
    margin: 0;
    margin-top: 9.5%;
    margin-bottom: 5.5%;
  }
  section#plus-packs > div picture#chromaphone-3-plus-packs {
    margin: 0;
    margin-top: 9.5%;
    margin-bottom: 5.5%;
  }
  section#plus-packs > div picture#string-studio-vs-3-plus-packs {
    margin: 0;
    margin-top: 9.5%;
    margin-bottom: 5.5%;
  }
  section#plus-packs > div picture#strum-gs-2-plus-packs {
    margin: 0;
    margin-top: 9.5%;
    margin-bottom: 5.5%;
  }
  section#plus-packs > div > header {
    grid-column: 2/4;
    grid-row: 2;
  }
  section#plus-packs > div ul {
    grid-row: 3;
    grid-column: 2/4;
    display: block;
    margin: 1vw 0 3vw 0;
  }
  section#plus-packs > div div.price {
    grid-column: 2/3;
    grid-row: 4;
    align-self: center;
  }
  section#plus-packs > div button.call-to-action {
    grid-column: 3/4;
    grid-row: 4;
    align-self: start;
  }
}
@media only screen and (min-width: 1000px) {
  section#plus-packs > div {
    width: 90vw;
    max-width: max-content;
    column-gap: 3vw;
  }
  section#plus-packs > div picture {
    width: 38.5714285714vw;
    justify-self: right;
  }
  section#plus-packs > div ul {
    margin: 3rem 0 3.5vw 0;
  }
}
@media only screen and (min-width: 1281px) {
  section#plus-packs > div {
    width: 90vw;
    max-width: max-content;
  }
  section#plus-packs > div picture {
    width: 36vw;
    justify-self: right;
  }
  section#plus-packs > div ul {
    margin: 3rem 0 6rem 0;
  }
}
@media only screen and (min-width: 1710px) {
  section#plus-packs > div {
    width: 80vw;
    max-width: max-content;
    column-gap: 1.5vw;
    padding: 0;
    align-content: space-around;
  }
  section#plus-packs > div picture {
    width: calc(80vw * 0.333);
    justify-self: right;
  }
  section#plus-packs > div ul {
    margin: 3rem 0 6rem 0;
  }
}
section#plus-packs .call-to-action span {
  background-color: #3279AD !important;
}
section#plus-packs h4 {
  color: #3279AD;
  text-decoration: none;
  text-transform: uppercase;
}
@media only screen and (min-width: 320px) {
  section#plus-packs 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#plus-packs 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#plus-packs 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#plus-packs h4 span {
  color: #3279AD;
}
section#plus-packs h4 + p {
  color: black;
}
@media only screen and (min-width: 320px) {
  section#plus-packs 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#plus-packs 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#plus-packs 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#plus-packs 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#plus-packs ul {
  list-style-type: square;
}
section#plus-packs 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#plus-packs ul li {
  margin-left: 2.25rem;
}
section#plus-packs ul li mark {
  padding: 0 0.5rem;
  font: inherit;
  font-weight: 600;
  background-color: orange;
}
section#plus-packs div.price {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #2D2D2D;
  font-size: 1.7rem;
  line-height: 2.1rem;
  color: #2D2D2D;
  font-size: 1.7rem;
}
section#plus-packs div.price .regular-price {
  color: #99978E !important;
  font: inherit;
  text-decoration: line-through;
  text-decoration-thickness: 0.2rem;
}
section#plus-packs div.price span.current-price {
  font: inherit;
}
section#plus-packs div.price span.currency-symbol {
  color: inherit;
  font: inherit;
  font-size: 66.666%;
  text-decoration: none;
  -webkit-text-decoration: solid line-through transparent;
  vertical-align: text-top;
}
section#plus-packs 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;
  background-color: #3279AD;
}
section#plus-packs button.call-to-action.call-to-action-option span {
  background-color: rgb(32.4494382022, 75.5730337079, 0.4269662921);
}
section#plus-packs button.call-to-action span, section#plus-packs 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: 320px) {
  section#plus-packs {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#plus-packs {
    padding: 6rem 3rem;
  }
}
section#plus-packs div 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#plus-packs div div.price span.regular-price {
  color: #99978E;
  font: inherit;
  text-decoration: line-through;
}
section#plus-packs div div.price span.current-price {
  font: inherit;
}
section#plus-packs div div.price span.currency-symbol {
  font-size: 66.6666%;
  font: inherit;
  text-decoration: none;
  vertical-align: top;
}

section#tutorials {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  background-color: #eae9e6;
}
@media only screen and (min-width: 320px) {
  section#tutorials {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#tutorials {
    padding: 6rem 3rem;
  }
}
section#tutorials > div {
  box-sizing: border-box;
  max-width: 120rem;
  margin: 0 auto;
}
section#tutorials > div header {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 4.5rem;
}
section#tutorials > 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: #327aad;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  position: relative;
}
section#tutorials > div header h2 abbr {
  text-decoration: none;
}
section#tutorials > div header h2 a {
  color: transparent;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
}
section#tutorials > 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#tutorials > div ul {
  list-style-type: none;
  width: 100%;
  margin: 0;
  display: grid;
}
@media only screen and (min-width: 320px) {
  section#tutorials > div ul {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media only screen and (min-width: 720px) {
  section#tutorials > div ul {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
@media only screen and (min-width: 1000px) {
  section#tutorials > div ul {
    gap: 3rem;
  }
}
section#tutorials > div ul li {
  display: grid;
  position: relative;
  grid-template-rows: max-content max-content max-content auto;
  text-align: center;
}
section#tutorials > div ul li iframe, section#tutorials > div ul li img, section#tutorials > div ul li a.video-url {
  display: block;
  width: 100%;
  margin: 0;
  aspect-ratio: 16/9;
  cursor: pointer;
  background-color: #fff;
}
section#tutorials > div ul li span {
  position: absolute;
  height: auto;
  width: 100%;
  aspect-ratio: 16/9;
  top: 0;
  left: 0;
  background: url("../images/video-embed-play.svg") no-repeat 50%;
  background-size: 8rem 8rem;
  padding: 0;
  cursor: pointer;
}
section#tutorials > div ul li h3 {
  margin-top: 1.5rem;
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  text-wrap: balance;
}
section#tutorials > div ul li p {
  margin: 0 auto;
  text-wrap: balance;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
}
section#tutorials > div ul li a {
  color: #327aad;
  display: block;
  margin-top: 1.5rem;
  text-wrap: balance;
  align-self: end;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 3rem;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
section#tutorials > div ul li.clicked iframe {
  position: absolute;
  z-index: 1;
}
section#tutorials > div ul li.clicked span.play-icon {
  z-index: 0;
}

section.all-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
}
@media only screen and (min-width: 320px) {
  section.all-features {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section.all-features {
    padding: 6rem 3rem;
  }
}
section.all-features div {
  box-sizing: border-box;
  max-width: 120rem;
}
section.all-features div header {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 4.5rem;
}
section.all-features 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.all-features div header h2 abbr {
  text-decoration: none;
}
section.all-features div header h2 a {
  color: transparent;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
}
section.all-features 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.all-features div header h2 {
  text-wrap: balance;
  color: #31709f;
}
section.all-features div article {
  display: flex;
  column-gap: 12rem;
  padding-left: 3.7rem;
  padding-right: 1.5rem;
}
@media only screen and (min-width: 320px) {
  section.all-features div article {
    flex-direction: column;
  }
}
@media only screen and (min-width: 720px) {
  section.all-features div article {
    flex-direction: row;
  }
}
section.all-features div article ul {
  padding-top: 3rem;
}
section.all-features div article h3 {
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  text-wrap: balance;
  margin-left: -2.2rem;
}
section.all-features div article h3 a {
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  text-wrap: balance;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  color: #327aad;
}
section.all-features div article li {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
  text-wrap: balance;
}
section.all-features div article li span {
  font-size: 1.8rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 900;
  background-color: rgb(44.2825112108, 108.0493273543, 153.2174887892);
  padding: 0rem 0.6rem 0.1rem 0.6rem;
  color: white;
}
section.all-features div article li.expressivity, section.all-features div article li.module-breakdown {
  list-style-type: none;
}

section#neat-features {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  background-color: #242321;
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 320px) {
  section#neat-features {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#neat-features {
    padding: 6rem 3rem;
  }
}
section#neat-features > div {
  box-sizing: border-box;
  display: flex;
  max-width: 120rem;
}
section#neat-features > div header {
  display: flex;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 4.5rem;
}
section#neat-features > 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#neat-features > div header h2 abbr {
  text-decoration: none;
}
section#neat-features > div header h2 a {
  color: transparent;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
}
section#neat-features > 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;
}
@media only screen and (min-width: 320px) {
  section#neat-features > div {
    flex-direction: column;
    align-items: start;
    gap: 3rem;
  }
}
@media only screen and (min-width: 720px) {
  section#neat-features > div {
    flex-direction: row;
    justify-content: center;
  }
}
@media only screen and (min-width: 1000px) {
  section#neat-features > div {
    gap: 6rem;
  }
}
section#neat-features > div article {
  flex-basis: 100%;
}
section#neat-features > div article h2 {
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  text-wrap: balance;
  color: #4182b1;
}
section#neat-features > div article h2 a.section {
  position: absolute;
  cursor: pointer;
  color: transparent;
}
section#neat-features > div article ul {
  list-style-type: square;
  margin-left: 2.2rem;
}
section#neat-features > div article ul li {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
  color: #fff;
}

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

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

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

/*# sourceMappingURL=multiphonics-cv-3.css.map */
