:root {
  --main-bg-color: #363537;
  --white-color: #fafafa;
  --green-color: #7ac142;
  --app-color: #35b087;
  --pink-color: #bb86fc;
  --regal-purple: #b01473;
  --muted-1deg: #a19f9f;
  --muted-2deg: #4d4d4e;
  --dark: #4e5457;
  --shadow: 0 1px 1px hsla(0, 0%, 0%, 0.075), 0 2px 2px hsla(0, 0%, 0%, 0.075),
    0 4px 4px hsla(0, 0%, 0%, 0.075);
  --inner-glow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075),
    /* shadow ring 👇 */ 0 0 0 1px hsla(0, 0%, 0%, 0.05),
    /* multiple soft shadows 👇 */ 0 0.3px 0.4px hsla(0, 0%, 0%, 0.02),
    0 0.9px 1.5px hsla(0, 0%, 0%, 0.045), 0 3.5px 6px hsla(0, 0%, 0%, 0.09);
  --fruity-loops: linear-gradient(
    90deg,
    #27a4ff,
    #3354ff 28%,
    #7433ff 50%,
    #f64abb 79%,
    #ff7c33
  );
  --fruity-loops-activated: linear-gradient(90deg, #f64abb, #ff7c33 99%);
}

@font-face {
  font-family: Wotfard;
  src: url("/assets/wotfard-regular-webfont.woff2");
}

html * {
  font-size: 16px;
  font-weight: 400;
  font-family: Wotfard, Arial, Futura, sans-serif;

  padding: 0;
  margin: 0;

  overflow-x: hidden;
}

html * * > * {
    overflow-x: visible;
  }

/* General */

body {
  /*background: linear-gradient(0deg, rgb(52, 29, 43) 0%, rgb(0, 0, 0) 70%);
  background-color: rgb(52, 29, 43);*/
  background-color: black;
  margin: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  color: #fafafa;
  color: var(--white-color);

  max-width: 100%;
  overflow-x: hidden;
}

button,
a {
  font-family: Arial, Futura, sans-serif;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

main {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section {
  margin: 36px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section p {
  font-size: 22px;
}

section > h2 {
  font-size: 54px;
  text-align: center;
  margin: 36px 0px 60px 0px;
}

section#intro > h2 {
  margin-bottom: 16px;
}

section h3 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 24px;
}

@media screen and (max-width: 1024px) {
  section > h2 {
    font-size: 32px;
    margin: 30px 0px;
  }
  section#intro h3 {
    font-size: 18px;
  }
}

section#stats {
  margin-top: 120px;
}

.stats-container {
  width: 55vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;

  height: 200px;
  width: 300px;
  max-height: 200px;
}

.stat h3 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 12px;
  }

.stat p {
    text-align: center;
    max-width: 80%;
  }

@media screen and (max-width: 1024px) {
  .stats-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
  }

  .stat {
    height: auto;
    height: initial;
    margin-top: 24px;
  }
}

section#solutions {
  margin-top: 120px;
}

section#solutions h2 {
    margin-bottom: 96px;
  }

@media screen and (max-width: 1024px) {
    section#solutions h2 {
      font-size: 54px;
    }
}

.feature#mutual {
  margin-top: 0px;
}

.feature {
  margin-top: 96px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 96px;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  opacity: 0;
  -webkit-transform: translateX(-50vw);
      -ms-transform: translateX(-50vw);
          transform: translateX(-50vw);
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
}

.feature.reverse {
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
  -webkit-transform: translateX(50vw);
      -ms-transform: translateX(50vw);
          transform: translateX(50vw);
}

.feature.in-view {
  opacity: 1;
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}

.feature .desc {
  width: 42%;
  min-width: 350px;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;

  z-index: 2;
}

.feature .desc h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;

    width: -webkit-fit-content;

    width: -moz-fit-content;

    width: fit-content;

    padding: 12px 18px;
    border-radius: 10px;
    background-color: #d7d7d7;
    background-image: linear-gradient(
      147deg,
      #26785d 18%,
      #35b087 95%
    );
    background-image: linear-gradient(
      147deg,
      #26785d 18%,
      var(--app-color) 95%
    );

    font-size: 24px;
    color: #fafafa;
    color: var(--white-color);
  }

.feature .desc h3 img {
      margin: 0px 6px;
      width: 24px;
      height: 24px;
    }

.feature .desc #feat-sig-title {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

.feature .desc p > a {
    color: #bb86fc;
    color: var(--pink-color);
    font-size: 20px;
    margin-top: 2px;
    margin-left: 6px;
  }

.feature .media {
  width: 42%;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-orient: horizontal;

  -webkit-box-direction: normal;

      -ms-flex-direction: row;

          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.feature .media video {
    max-width: 800px;
  }

@media screen and (max-width: 1024px) {
  .feature {
    gap: 36px;
  }
  .feature .desc {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .feature .media > img {
    margin-top: 12px;
    max-width: 350px;
  }

  .feature .media > video {
    margin-top: 24px;
    max-width: 600px;
  }
}

section#highlights {
  margin-top: 60px;
}

.highlights {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.highlight {
  position: relative;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;

  width: 300px;
  height: 400px;

  margin: 0px 12px;
  padding: 12px 12px 24px 12px;
  border: 2px solid #3f0388;
  border-radius: 40px;
  background-color: black;

  -webkit-transition: 0.2s ease-in-out 0s;

  transition: 0.2s ease-in-out 0s;
}

.highlight h3 {
    text-align: center;
    color: #bb86fc;
    color: var(--pink-color);
    margin-top: 90px;
  }

.highlight p {
    text-align: center;
  }

.highlight a {
    margin-top: 12px;
    color: #bb86fc;
    color: var(--pink-color);
  }

.highlight img {
    position: absolute;
  }

.highlight img#lock {
    top: 14px;
  }

.highlight img#globe {
    top: 18px;
  }

.highlight img#focus {
    top: 9px;
  }

.highlight:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

section#get-started {
  margin: 80px 0px;
}

section#get-started h3 {
    font-size: 38px;
    margin-bottom: 12px;
  }

section#get-started a {
    padding: 0px 12px;
  }

section#get-started p {
    text-align: center;
    margin-top: 12px;
    font-size: 14px;
  }

@media screen and (max-width: 1024px) {
  .highlights {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .highlight {
    margin: 12px 0px;
  }
}

hr.divider {
  border: none;
  border-top: 0.5px solid #fafafa;
  border-top: 0.5px solid var(--white-color);
  overflow: visible;
  text-align: center;
  height: 5px;
  width: 100vw;
  -ms-flex-item-align: center;
      align-self: center;
}

a {
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #fafafa;
  color: var(--white-color);
  cursor: pointer;
  font-weight: bold;
}

a:hover {
    -webkit-text-decoration: underline;
    text-decoration: underline;
  }

footer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;

  margin-top: 60px;
  margin-bottom: 30px;
}

footer > p {
  margin-top: 12px;
  font-size: 14px;
}

a.footer-link {
  margin: 6px;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  text-shadow: inherit;
  color: #fafafa;
  color: var(--white-color);
}

#year-brand {
  margin: 6px;
  font-size: 13px;
}

#home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;

  margin-top: 60px;
  width: 86%;
  max-width: 800px;
}

/* Brand */
.logo {
  position: absolute;
  top: 22px;
  left: 5%;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#title {
  margin-left: 6px;
  font-size: 30px;
  color: #fafafa;
  color: var(--white-color);
  text-shadow: 1px 1px 0 #b01473, -1px 1px 0 #b01473,
    -1px -1px 0 #b01473, 1px -1px 1px #b01473;
  text-shadow: 1px 1px 0 var(--regal-purple), -1px 1px 0 var(--regal-purple),
    -1px -1px 0 var(--regal-purple), 1px -1px 1px var(--regal-purple);
}

/* CTA */
.cta {
  margin: 0;
  width: 86%;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cta-input,
.cta-link,
.cta-price {
  height: 60px;
  font-size: 20px;
  border-radius: 20px;

  -webkit-transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);

  transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.cta-link:hover {
  -webkit-text-decoration: none;
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, right top, from(#f64abb), color-stop(99%, #ff7c33));
  background-image: linear-gradient(90deg, #f64abb, #ff7c33 99%);
  background-image: var(--fruity-loops-activated);
  border-radius: 10px;
}

.cta-price:hover {
  -webkit-text-decoration: none;
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, right top, from(#f64abb), color-stop(99%, #ff7c33));
  background-image: linear-gradient(90deg, #f64abb, #ff7c33 99%);
  background-image: var(--fruity-loops-activated);
}

.cta-link:hover img {
  -webkit-transform: translateX(12px) scale(1.2);
      -ms-transform: translateX(12px) scale(1.2);
          transform: translateX(12px) scale(1.2);
}

.cta > a {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 6px;
}

.cta-link,
.cta-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;

  font-size: 18px;
  font-weight: bold;
  line-height: 56px;
  text-align: center;
  color: #fafafa;
  color: var(--white-color);
  cursor: pointer;
  border: 0px;

  background-image: -webkit-gradient(
    linear,
    left top, right top,
    from(#27a4ff),
    color-stop(28%, #3354ff),
    color-stop(50%, #7433ff),
    color-stop(79%, #f64abb),
    to(#ff7c33)
  );

  background-image: linear-gradient(
    90deg,
    #27a4ff,
    #3354ff 28%,
    #7433ff 50%,
    #f64abb 79%,
    #ff7c33
  );

  background-image: var(--fruity-loops);
}

.cta-link img, .cta-price img {
    margin-left: 6px;
    height: 14px;
    width: 14px;

    -webkit-transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);

    transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }

.cta-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-flex: 4;
      -ms-flex-positive: 4;
          flex-grow: 4;
}

.cta-input > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;

  font-size: 22px;
  font-family: monospace;

  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;

  background-color: #d7d7d7;
  background-image: linear-gradient(147deg, #858585 0%, #353535 74%);

  border-right: 0;
  padding-left: 16px;
  padding-right: 16px;
}

.cta-input > input {
  border: 0;
  padding-left: 10px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  width: 92%;

  font-size: 22px;
  font-family: monospace;
}

@media screen and (max-width: 768px) {
  .cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .cta-input,
  .cta-link {
    width: 70%;
    min-width: 288px;
  }

    .cta-input label, .cta-link label {
      width: 84px;
      font-size: 20px;
    }

    .cta-input input, .cta-link input {
      font-size: 20px;
    }

  .cta > a {
    margin-top: 6px;
    margin-left: 0;
  }
}

/* Responsive Menu */
.top-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
  border: 2px solid #fafafa;
  border: 2px solid var(--white-color);
  border-radius: 30px;
}

.login,
.signup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;

  padding: 0px 12px;
}

.login {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 20px;
  right: 5%;
  height: 46px;

  color: #fafafa;

  color: var(--white-color);
  background-color: #4d4d4e;
  background-color: var(--muted-2deg);
  border: 2px solid #4d4d4e;
  border: 2px solid var(--muted-2deg);
  border-radius: 30px;
}

.login:hover {
    background-color: #a19f9f;
    background-color: var(--muted-1deg);
    color: black;
    -webkit-text-decoration: none;
    text-decoration: none;
  }

.signup {
  height: 46px;
  position: absolute;
  top: 20px;
  right: calc(5% + 100px);

  color: #fafafa;

  color: var(--white-color);
  background-image: -webkit-gradient(
    linear,
    left top, right top,
    from(#27a4ff),
    color-stop(28%, #3354ff),
    color-stop(50%, #7433ff),
    color-stop(79%, #f64abb),
    to(#ff7c33)
  );
  background-image: linear-gradient(
    90deg,
    #27a4ff,
    #3354ff 28%,
    #7433ff 50%,
    #f64abb 79%,
    #ff7c33
  );
  border-radius: 30px;
}

.signup:hover {
    border-radius: 16px;
    -webkit-text-decoration: none;
    text-decoration: none;
  }

@media screen and (max-width: 900px) {
  .signup {
    right: calc(5% + 82px);
  }
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
  z-index: 999;
}

.menu > li:not(:nth-last-child(-n + 2)) {
  overflow: hidden;
  cursor: pointer;
}

.menu > li:not(:nth-last-child(-n + 2)) a {
    padding: 14px;
    border-radius: 60px;
    -webkit-transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }

.menu > li:nth-last-child(-n + 2) {
  overflow: hidden;
  padding: 0;
}

.highlightable > a {
  display: block;
  font-size: 18px;
}

.highlightable > a:hover {
  background-color: #fafafa;
  background-color: var(--white-color);
  color: black;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.menu-button-container {
  display: none;

  position: absolute;
  top: 24px;
  right: 12px;

  width: 30px;
  cursor: pointer;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #b01473;
  background-color: var(--regal-purple);
  position: absolute;
  height: 4px;
  width: 30px;
  -webkit-transition: -webkit-transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: -webkit-transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: "";
  margin-top: -8px;
}

.menu-button::after {
  content: "";
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  -webkit-transform: rotate(405deg);
      -ms-transform: rotate(405deg);
          transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  -webkit-transform: rotate(-405deg);
      -ms-transform: rotate(-405deg);
          transform: rotate(-405deg);
}

@media screen and (max-width: 768px) {
  .logo {
    top: 6px;
    left: 6px;
  }

  .logo > img {
    width: 40px;
    height: 40px;
  }

  .login,
  .signup {
    position: static;
    background-color: transparent;
    background-color: initial;
    background-image: none;
    background-image: initial;
    border: medium none currentcolor;
    border: initial;
  }

    .login:hover, .signup:hover {
      background-color: transparent;
      background-color: initial;
      color: #bb86fc;
      color: var(--pink-color);
      cursor: pointer;
      font-weight: bold;
    }

  .top-nav {
    border: 0;
  }

  .menu-button-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .menu {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 98%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    -webkit-transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .menu-item > a {
    -ms-flex-item-align: center;
        align-self: center;
  }

  .highlightable > a:hover {
    background-color: transparent;
    background-color: initial;
    color: #fafafa;
    color: var(--white-color);
  }

  #menu-toggle:checked ~ .menu li {
    border: 1px solid #333;
    height: 2.5em;
    padding: 0.5em;
    -webkit-transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .menu > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: #222;
  }

  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
}

/* Intro Section */
section#intro {
  position: relative;
  margin-top: 0px;
  margin-bottom: 0px;
}

section#video-player {
  position: relative;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;

  z-index: 2;
  width: 200%;
  height: 300%;
  max-width: 1920px;
  max-height: 1080px;
  margin-bottom: 0px;
  margin-top: 0px;
  padding: 0;
}

section#video-player .full-screen {
    -webkit-transition: 150ms;
    transition: 150ms;
    position: absolute;
    bottom: 9.5%;
    right: 4.7%;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;

    height: 8px;
    width: 8px;

    background-color: rgba(255, 255, 255, 0.5);
    border-color: transparent;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    cursor: pointer;
  }

section#video-player .full-screen:hover {
    background-color: rgba(255, 255, 255, 1);
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
  }

#video-container {
  position: relative;
  width: 58%;
  height: 58%;
}

#video-container > video {
  width: 100%;
  height: 100%;
}

section#cta {
  margin-top: 60px;
  width: 100%;
}

/* Pricing Section */

section#pricing p {
    text-align: center;
    margin-top: 12px;
    font-size: 16px;
  }

.prices {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;

  width: 320px;
  height: 330px;

  margin: 0px 12px;
  border: 2px solid #313638;
  border-radius: 40px;

  -webkit-transition: 0.2s ease-in-out 0s;

  transition: 0.2s ease-in-out 0s;
}

.price:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

@media screen and (max-width: 1024px) {
  .prices {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .price {
    margin: 12px 0px;
  }
}

.price-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;

  width: 100%;
  height: 50px;

  font-size: 24px;

  background-color: #d7d7d7;
  background-image: linear-gradient(147deg, #858585 0%, #353535 74%);

  border-top-left-radius: 38px;
  border-top-right-radius: 38px;
}

.price-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;

  height: 100%;
  width: 100%;
}

.price-summary {
  position: relative;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;

  padding: 26px 0px 20px 0px;
  height: 150px;
  width: 100%;

  font-size: 24px;
}

.price-summary .amount {
    font-size: 60px;
  }

.price-summary .per-month {
    font-size: 24px;
  }

.price-summary .vat {
    position: absolute;
    font-size: 12px;
    font-weight: bold;
    bottom: 97px;
    left: 88px;
  }

.price-summary .vat.starter {
    left: 105px;
  }

.price-summary .summary-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 6px;
  }

.price-summary .summary-item img {
    margin-right: 6px;
  }

.price-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;

  padding: 20px;
}

.cta-price {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 18px;
  border-radius: 30px;
  width: 90%;
}
