@import url("https://fast.fonts.net/t/1.css?apiType=css&projectid=9ecb9982-4797-4fbe-9edb-b87e309ac88c");
@font-face {
  font-family: "ITC Avant Garde Gothic W01 Bk";
  src: url("../fonts/6f1146c0-9c0b-4949-866d-9affc396531f.woff2") format("woff2"), url("../fonts/2c50f982-bb73-4891-8d0e-587c1136c2e5.woff") format("woff");
}
@font-face {
  font-family: "ITC Avant Garde Gothic W01 Bd";
  src: url("../fonts/4cadb55f-822a-4a35-8918-becfc5a866a3.woff2") format("woff2"), url("../fonts/af007af5-dcfa-465a-a278-47ab3eb9a589.woff") format("woff");
}
@font-face {
  font-family: "Helvetica Neue LT W05_45 Light";
  src: url("../fonts/f9c5199e-a996-4c08-9042-1eb845bb7495.woff2") format("woff2"), url("../fonts/2a34f1f8-d701-4949-b12d-133c1c2636eb.woff") format("woff");
}
@font-face {
  font-family: "Helvetica Neue LT W05_55 Roman";
  src: url("../fonts/08b57253-2e0d-4c12-9c57-107f6c67bc49.woff2") format("woff2"), url("../fonts/08edde9d-c27b-4731-a27f-d6cd9b01cd06.woff") format("woff");
}
@font-face {
  font-family: "Helvetica Neue LT W05_75 Bold";
  src: url("../fonts/800da3b0-675f-465f-892d-d76cecbdd5b1.woff2") format("woff2"), url("../fonts/7b415a05-784a-4a4c-8c94-67e9288312f5.woff") format("woff");
}
:root {
  --colorBlack: #000000;
  --colorWhite: #FFFFFF;
  --colorGrey: #F1F1F1;
  --colorRed: #D30000;
  --sideSpacing: 4vw;
  --fontSize16: 0.8rem;
  --fontSize18: 0.9rem;
  --fontSize20: 1rem;
  --fontSize22: 1.1rem;
  --fontSize26: 1.3rem;
  --fontSize50: 2.5rem;
}
@media only screen and (max-width: 1024px) {
  :root {
    --sideSpacing: 3rem;
  }
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=submit],
button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}

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

*:focus:not(:focus-visible) {
  outline: 0;
}

html {
  font-size: 1.4vw;
}
@media only screen and (min-width: 1570px) {
  html {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1024px) {
  html {
    font-size: 2vw;
  }
}
@media only screen and (max-width: 600px) {
  html {
    font-size: 4vw;
  }
}

body {
  margin: 0;
  padding: 0;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: var(--fontSize20);
  line-height: 1.6;
  font-family: "Helvetica Neue LT W05_45 Light";
  font-weight: 300;
}

.preview_check {
  position: fixed;
  left: 10px;
  top: 10px;
  z-index: 999999;
}

body:not(.wp-admin) .preview {
  width: 100%;
  position: absolute;
  left: 0%;
  top: 0;
  height: auto;
  z-index: 999999;
  pointer-events: none;
  opacity: 0.4;
  display: block;
}

.preview_check:checked + .preview {
  display: none;
}

img {
  border: 0;
}

.outerwrapper {
  width: 100%;
  overflow: hidden;
}

.innerwrapper {
  max-width: 1680px;
  margin: 0 auto;
  width: calc(100% - var(--sideSpacing));
  max-width: calc(1570px - var(--sideSpacing) - var(--sideSpacing));
}

.logo {
  width: 10rem;
  font-size: 0;
  line-height: 0;
}
.logo svg {
  width: 100%;
  height: auto;
}

h1 {
  font-size: var(--fontSize50);
  font-weight: 400;
  font-family: "ITC Avant Garde Gothic W01 Bd";
  margin: 0;
  color: var(--colorRed);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 1em;
}

h2 {
  font-size: var(--fontSize26);
  font-family: "ITC Avant Garde Gothic W01 Bd";
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 1.5em;
}

p {
  margin: 1.5em 0;
}

section {
  background-color: var(--backgroundColor);
  position: relative;
  overflow: visible;
  color: var(--color);
}
section[data-background=white] {
  --backgroundColor: var(--colorWhite);
  --color: var(--colorBlack);
}
section[data-background=black] {
  --backgroundColor: var(--colorBlack);
  --color: var(--colorWhite);
}
section[data-background=grey] {
  --backgroundColor: var(--colorGrey);
  --color: var(--colorBlack);
}
section .innerwrapper {
  position: relative;
  z-index: 2;
}
section .particles {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.divider-bottom {
  --dividerSize: 1.3rem;
}
.divider-bottom:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(0, 0, 0, 0);
  border-top-color: var(--backgroundColor);
  border-width: var(--dividerSize);
  margin-left: calc(var(--dividerSize) * -1);
  z-index: 1;
}

.section__default-header .innerwrapper {
  display: flex;
  flex-direction: column;
  padding-top: 3rem;
  align-items: center;
  padding-bottom: 3.6rem;
  position: relative;
}
.section__default-header .innerwrapper h1 {
  margin-top: 5rem;
}
.section__default-header .innerwrapper .cta__button {
  background-color: var(--colorRed);
  position: absolute;
  right: 2rem;
  border-radius: 0.5em;
  height: 2.2em;
  font-size: var(--fontSize18);
  padding-top: 0.2em;
  padding-right: 1em;
  padding-left: 1em;
}
.section__default-header .innerwrapper .content {
  color: var(--color);
  max-width: 37em;
  margin: 0 auto;
  margin-top: 7.8rem;
}

.section__default-page .innerwrapper {
  padding-top: 2.8rem;
  padding-bottom: 2.7rem;
  min-height: 26rem;
}
.section__default-page .innerwrapper a {
  color: inherit;
}
.section__default-page .innerwrapper .content {
  margin: 0 auto;
  max-width: 50em;
  text-align: left;
}

.section__start .innerwrapper {
  display: flex;
  flex-direction: column;
  padding-top: 3rem;
  align-items: center;
  padding-bottom: 3.6rem;
  position: relative;
}
.section__start .innerwrapper .cta__button {
  background-color: var(--colorRed);
  position: absolute;
  right: 2rem;
  border-radius: 0.5em;
  height: 2.2em;
  font-size: var(--fontSize18);
  padding-top: 0.2em;
  padding-right: 1em;
  padding-left: 1em;
}
@media only screen and (max-width: 1024px) {
  .section__start .innerwrapper .cta__button {
    right: 0;
  }
}
@media only screen and (max-width: 600px) {
  .section__start .innerwrapper .cta__button {
    position: relative;
    right: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
  }
}
.section__start .innerwrapper .content {
  color: var(--color);
  max-width: 37em;
  margin: 0 auto;
  margin-top: 7.8rem;
}
@media only screen and (max-width: 600px) {
  .section__start .innerwrapper .content {
    margin-top: 5rem;
  }
}

.section__three-columns .innerwrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 3.8rem;
  padding-bottom: 3.2rem;
  gap: 0 3.5rem;
  text-align: left;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media only screen and (max-width: 1024px) {
  .section__three-columns .innerwrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 600px) {
  .section__three-columns .innerwrapper {
    grid-template-columns: 100%;
  }
}
.section__three-columns .innerwrapper ul {
  padding-left: 1em;
}
.section__three-columns .innerwrapper .image {
  font-size: 0;
  line-height: 0;
  max-width: 12rem;
  margin-inline: auto;
}
.section__three-columns .innerwrapper .image img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 600px) {
  .section__three-columns .innerwrapper .column h2 {
    text-align: center;
  }
}

.section__text-centered .innerwrapper {
  padding-top: 2.8rem;
  padding-bottom: 2.7rem;
}
.section__text-centered .innerwrapper .content {
  margin: 0 auto;
  max-width: 50em;
}

.section__module .innerwrapper {
  padding-top: 2.8rem;
  padding-bottom: 3.8rem;
}
.section__module .innerwrapper .tab__holder {
  display: grid;
  grid-template-columns: 1fr 23rem;
  gap: 0 0;
  padding: 0 2rem;
  padding-top: 0.2rem;
}
@media only screen and (max-width: 1024px) {
  .section__module .innerwrapper .tab__holder {
    padding: 0;
    grid-template-columns: 100%;
  }
}
.section__module .innerwrapper .tab__holder .tab__content {
  background-color: var(--colorWhite);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  min-height: 28rem;
}
@media only screen and (max-width: 1024px) {
  .section__module .innerwrapper .tab__holder .tab__content {
    order: 2;
  }
}
.section__module .innerwrapper .tab__holder .tab__content .tab__sheet {
  padding: 2rem;
  min-height: 100%;
}
@media only screen and (max-width: 600px) {
  .section__module .innerwrapper .tab__holder .tab__content .tab__sheet {
    padding: 2rem;
  }
}
.section__module .innerwrapper .tab__holder .tab__content .tab__sheet:not(.current) {
  display: none;
}
.section__module .innerwrapper .tab__holder .tab__content .tab__sheet .tab__sheet-inner {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto 1fr;
  gap: 0 3.3rem;
  align-items: center;
  min-height: 100%;
}
@media only screen and (max-width: 600px) {
  .section__module .innerwrapper .tab__holder .tab__content .tab__sheet .tab__sheet-inner {
    grid-template-columns: 100%;
  }
}
.section__module .innerwrapper .tab__holder .tab__content .tab__sheet .tab__sheet-inner .image {
  font-size: 0;
  line-height: 0;
  width: 100%;
  grid-column: 1/2;
  grid-row: 1/2;
  margin-inline: auto;
  max-width: 10rem;
}
.section__module .innerwrapper .tab__holder .tab__content .tab__sheet .tab__sheet-inner .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.section__module .innerwrapper .tab__holder .tab__content .tab__sheet .tab__sheet-inner .text {
  text-align: left;
  font-size: var(--fontSize22);
  grid-column: 1/2;
  grid-row: 2/3;
  margin-bottom: auto;
}
.section__module .innerwrapper .tab__holder .tab__content .tab__sheet .tab__sheet-inner .text p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 600px) {
  .section__module .innerwrapper .tab__holder .tab__content .tab__sheet .tab__sheet-inner .text p:last-child {
    margin-bottom: 0;
  }
}
.section__module .innerwrapper .tab__holder .tab__nav {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1024px) {
  .section__module .innerwrapper .tab__holder .tab__nav {
    order: 1;
  }
}
.section__module .innerwrapper .tab__holder .tab__nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: var(--fontSize20);
  display: flex;
  flex-direction: column;
  padding-top: 2.1rem;
  padding-bottom: 2.1rem;
  gap: 1.05rem 0;
  line-height: 1.2;
  min-height: 100%;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .section__module .innerwrapper .tab__holder .tab__nav ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem 0.5rem;
  }
}
@media only screen and (max-width: 600px) {
  .section__module .innerwrapper .tab__holder .tab__nav ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.section__module .innerwrapper .tab__holder .tab__nav ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  font-family: "ITC Avant Garde Gothic W01 Bk";
  padding-left: 4rem;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .section__module .innerwrapper .tab__holder .tab__nav ul li {
    padding-left: 0;
    background-color: var(--colorWhite);
    border-radius: 0.5rem;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 1em 0.5em;
    font-size: 0.8rem;
    display: flex;
  }
}
.section__module .innerwrapper .tab__holder .tab__nav ul li.current {
  font-family: "ITC Avant Garde Gothic W01 Bd";
  color: var(--colorRed);
}
.section__module .innerwrapper .tab__holder .tab__nav ul li.current:after {
  left: 0%;
  top: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-left-color: var(--colorWhite);
  border-width: 1rem;
  margin-top: -1rem;
}
@media only screen and (max-width: 1024px) {
  .section__module .innerwrapper .tab__holder .tab__nav ul li.current:after {
    display: none;
  }
}
@media (hover: hover) {
  .section__module .innerwrapper .tab__holder .tab__nav ul li:hover {
    color: var(--colorRed);
  }
}

.section__options .innerwrapper {
  padding-top: 2.8rem;
  padding-bottom: 3.8rem;
}
.section__options .innerwrapper .boxes__wrapper {
  display: flex;
  gap: 0 4rem;
  margin-top: 3.6rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media only screen and (max-width: 1024px) {
  .section__options .innerwrapper .boxes__wrapper {
    padding-left: 0;
    padding-right: 0;
    gap: 0 2rem;
  }
}
@media only screen and (max-width: 600px) {
  .section__options .innerwrapper .boxes__wrapper {
    flex-direction: column;
    gap: 2rem 0;
  }
}
.section__options .innerwrapper .boxes__wrapper .box {
  --headerBackground: var(--colorBlack);
  --headerColor: var(--colorWhite);
  background-color: var(--colorGrey);
  flex: 1;
  border-radius: 1rem;
}
@media only screen and (max-width: 600px) {
  .section__options .innerwrapper .boxes__wrapper .box {
    flex: none;
    width: 100%;
  }
}
.section__options .innerwrapper .boxes__wrapper .box.highlight {
  --headerBackground: var(--colorRed);
}
.section__options .innerwrapper .boxes__wrapper .box h3 {
  margin: 0;
  padding: 0;
  height: 4.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--headerBackground);
  color: var(--headerColor);
  font-weight: 400;
  font-family: "Helvetica Neue LT W05_75 Bold";
  padding-top: 0.4em;
  border-radius: 1rem 1rem 0 0;
}
.section__options .innerwrapper .boxes__wrapper .box .text {
  padding: 0.7em 1.2em 1.5em 1.2em;
  border-radius: 0 0 1rem 1rem;
}

.cta__button {
  display: inline-flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  background-color: #313131;
  color: var(--colorWhite);
  font-family: "Helvetica Neue LT W05_75 Bold";
  font-size: var(--fontSize20);
  height: 3.3em;
  padding-top: 0.5em;
  border-radius: 0.5rem;
}

.section__downloads .innerwrapper {
  padding-bottom: 5.5rem;
  padding-top: 5rem;
}
.section__downloads .innerwrapper h3 {
  font-size: var(--fontSize26);
  margin: 0;
  font-weight: 400;
  font-family: "Helvetica Neue LT W05_75 Bold";
  color: var(--colorRed);
  line-height: 1.3;
}
.section__downloads .innerwrapper h2 {
  font-size: var(--fontSize50);
  font-weight: 400;
  font-family: "Helvetica Neue LT W05_75 Bold";
  color: var(--colorWhite);
  text-transform: none;
  margin-top: 0.35em;
  margin-bottom: 1em;
}
.section__downloads .innerwrapper a {
  color: inherit;
  text-decoration: none;
}
.section__downloads .innerwrapper .button__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 19rem);
  gap: 0 2.4rem;
  justify-content: center;
  display: none;
}
@media only screen and (max-width: 600px) {
  .section__downloads .innerwrapper .button__wrapper {
    grid-template-columns: 80%;
    gap: 2rem 0;
  }
}
.section__downloads .innerwrapper .button__wrapper br {
  display: none;
}
.section__downloads .innerwrapper .button__wrapper p {
  margin: 0;
}
.section__downloads .innerwrapper .button__wrapper .cta__button {
  display: flex;
}

footer {
  border-top: 1px solid #313131;
  background-color: var(--colorBlack);
}
footer .innerwrapper {
  display: grid;
  grid-template-columns: 6rem auto;
  justify-content: space-between;
  padding: 1.4rem 2rem;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  footer .innerwrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
footer .innerwrapper .logo {
  width: 100%;
}
footer .innerwrapper ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  font-weight: 400;
  font-family: "Helvetica Neue LT W05_45 Light";
  gap: 0 1.8em;
}
footer .innerwrapper ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: var(--fontSize16);
  color: var(--colorWhite);
}
footer .innerwrapper ul li a {
  color: inherit;
  text-decoration: none;
}
