@charset "UTF-8";
@font-face {
  font-family: "MachoModularBold";
  src: url("/fonts/MachoModularBold.woff2") format("woff2"), url("/fonts/MachoModularBold.woff") format("woff");
}
@font-face {
  font-family: "Adapt";
  src: url("/fonts/Adapt-Regular.woff2") format("woff2"), url("/fonts/Adapt-Regular.woff") format("woff"), url("/fonts/Adapt-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
:root {
  --black-color: #000b0e;
  --white-color: #ffffff;
  --yellow-color: #fcc018;
  --green-color: #61eea9;
  --red-color: #e74c3c;
  --page-width: 1200px;
  --text-size: 16px;
  --text-size-big: 18px;
  --text-size-small: 12px;
  --text-size-extra-small: 10px;
  --menu-desktop-items-spacer: 10px;
  --menu-desktop-lists-spacer: 10px;
}
@media (min-width: 850px) {
  :root {
    --menu-desktop-items-spacer: 20px;
  }
}
@media (min-width: 1000px) {
  :root {
    --menu-desktop-items-spacer: 30px;
  }
}
@media (min-width: 850px) {
  :root {
    --menu-desktop-lists-spacer: 20px;
  }
}
@media (min-width: 1000px) {
  :root {
    --menu-desktop-lists-spacer: 40px;
  }
}
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  background-color: var(--black-color);
  color: var(--white-color);
}
body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0 20px 0;
  font-family: Adapt;
  font-size: var(--text-size);
  line-height: 120%;
}
a {
  text-decoration: none;
  color: var(--white-color);
}
div p:first-child {
  margin-top: 0;
}
div p:last-of-type:not(form p) {
  margin-bottom: 0;
}
main {
  width: 100%;
  max-width: var(--page-width);
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 100px;
  transition: opacity 0.25s ease-in-out;
}
@media (min-width: 700px) {
  main {
    margin-top: 180px;
  }
}
main ul {
  padding-left: 15px;
}
main img {
  max-width: 100%;
  height: auto;
  display: block;
}
h2, h3, h4 {
  font-family: MachoModularBold;
}
h2 {
  font-size: 28px;
  line-height: 120%;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}
h2 + h3 {
  margin-bottom: 300px;
}
h3 {
  font-size: 34px;
  line-height: 130%;
  margin: 0;
  text-transform: uppercase;
  hyphens: auto !important;
  -webkit-hyphens: auto !important;
}
h3 + h4 {
  margin-top: 20px;
  margin-bottom: 20px;
}
h4 {
  font-size: 17px;
  line-height: 120%;
  margin: 0;
  text-transform: uppercase;
}
footer {
  width: 100%;
  max-width: var(--page-width);
  margin-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: var(--text-size-small);
  text-align: center;
}
footer .claim {
  display: flex;
  justify-content: center;
  margin: 20px 0 20px 0;
}
footer .claim img {
  width: 100%;
  max-width: 80%;
  height: auto;
}
footer .logo {
  font-size: 120%;
}
footer .logo img {
  width: 60px;
  height: 60px;
}
footer ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 20px 0 0 0;
}
footer ul li {
  line-height: 160%;
  white-space: nowrap;
}
footer ul#footer-app-store-links {
  flex-direction: row;
}
footer ul#footer-app-store-links li::before {
  content: "";
  margin-left: 10px;
  margin-right: 10px;
}
footer ul#footer-app-store-links img {
  height: 35px;
  border: 1px solid #fff;
  border-radius: 5px;
}
footer ul#footer-social-media-links {
  flex-direction: row;
}
footer ul#footer-social-media-links li {
  margin-left: 10px;
  margin-right: 10px;
}
footer ul#footer-social-media-links li a {
  color: var(--yellow-color);
  font-size: 160%;
}
@media (max-width: 699px) {
  footer ul#footer-text-links {
    font-size: 120%;
    margin-bottom: 5px;
  }
  footer ul#footer-text-links li {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
@media (min-width: 700px) {
  footer ul#footer-text-links {
    flex-direction: row;
  }
  footer ul#footer-text-links li::before {
    content: "|";
    margin-left: 5px;
    margin-right: 5px;
  }
  footer ul#footer-text-links li:first-of-type::before {
    content: "";
  }
}
.grid-container {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 60px;
}
.grid-container.hidden {
  display: none !important;
}
.grid-container .column {
  margin-bottom: 60px;
}
.grid-container:has(> .column:nth-of-type(3):last-of-type) {
  column-gap: 30px;
}
.grid-container:has(> .column:nth-of-type(3):last-of-type) .column {
  margin-bottom: 30px;
}
.grid-container.avatars > .column {
  margin-bottom: 0;
}
.grid-container.avatars .box {
  margin-bottom: 60px;
}
form .grid-container .column {
  margin-bottom: 0;
}
@media (min-width: 600px) {
  .grid-container:has(> .column:nth-of-type(3):last-of-type) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 700px) {
  .grid-container:has(> .column:nth-of-type(2):last-of-type) {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-container.avatars > .column:last-child {
    margin-top: 120px;
  }
}
@media (min-width: 900px) {
  .grid-container:has(> .column:nth-of-type(3):last-of-type) {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid-container.single-50 {
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .grid-container.single-50 > .column {
    width: calc(50% - 30px);
  }
}
.text-columns-2 {
  column-count: 1;
}
@media (min-width: 700px) {
  .text-columns-2 {
    column-count: 2;
    column-gap: 60px;
  }
  .text-columns-2 p {
    break-inside: avoid;
  }
}
.box {
  border: 2px solid transparent;
  border-radius: 15px;
  position: relative;
  /*> * {
    position: relative;
    z-index: 2;
  }*/
}
.box.p {
  padding: 30px;
}
.box.small-p {
  padding: 15px !important;
  border-radius: 7px;
}
.box.big-p {
  padding: 60px;
}
.box.gradient::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  padding: 2px;
  border-radius: 10px;
  background: linear-gradient(to right, var(--yellow-color), var(--green-color));
  -webkit-mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.box.error {
  border-color: color-mix(in srgb, var(--red-color) 85%, transparent);
  color: var(--red-color);
}
.box.yellow {
  border-color: var(--yellow-color);
}
.box.yellow h2, .box.yellow h3, .box.yellow h4, .box.yellow a {
  color: var(--yellow-color);
}
.box.green {
  border-color: var(--green-color);
}
.box.green h2, .box.green h3, .box.green h4, .box.green a {
  color: var(--green-color);
}
.box.transparent-border {
  border-color: transparent;
}
.box.transparent-border::before {
  content: none;
}
.box picture > img {
  border-radius: 13px;
  display: block;
}
.box .text {
  padding: 30px;
}
.box:has(> picture, > a > picture):has(> .text) picture {
  /*display: none;*/
}
@media (min-width: 1200px) {
  .box {
    /* Is overridden when inside .storyboard. */
  }
  .box:has(> picture, > a > picture):has(> .text) picture {
    display: block;
    width: 50%;
    margin-left: auto;
  }
  .box:has(> picture, > a > picture):has(> .text) .text {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 45%;
    padding: 0;
  }
}
.box a {
  text-transform: uppercase;
}
.box a.arrow {
  position: absolute;
  bottom: 1px;
  left: 80px;
  height: 30px;
  transform: translateY(55%);
  display: flex;
  align-items: center;
}
.box a.arrow img {
  position: absolute;
  top: 0;
  left: -20px;
  width: 30px;
  height: 30px;
}
.box a.arrow span {
  padding: 0 10px 0 20px;
  background-color: var(--black-color);
}
.box img.viyouu {
  position: absolute;
  top: 50%;
  transform: translateX(50%) translateY(-50%);
  height: auto;
}
.box img.top-label {
  position: absolute;
  z-index: 1001;
  top: -10px;
  height: 20px;
}
.box img.top-label.left {
  left: 50%;
  transform: translateX(-50%);
}
.box img.top-label.right {
  left: 50%;
  transform: translateX(-50%);
}
.box img.top-arrow {
  position: absolute;
  top: -20px;
  height: 40px;
}
.box img.top-arrow.left {
  left: calc(50% - 60px);
  transform: translateX(calc(50% - 60px)) rotate(-180deg);
}
.box img.top-arrow.right {
  left: calc(50% + 15px);
  transform: translateX(calc(50% + 15px)) rotate(0deg);
}
@media (min-width: 700px) {
  .box img.top-label {
    position: absolute;
    z-index: 1100;
    top: -74px;
    height: 20px;
  }
  .box img.top-label.left, .box img.top-label.right {
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
  }
  .box img.top-arrow {
    position: absolute;
    top: -46px;
    height: 55px;
  }
  .box img.top-arrow.left, .box img.top-arrow.right {
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}
.box ul:last-child {
  margin-bottom: 0;
}
.box ul {
  list-style: none;
  padding-left: 0;
}
.box ul li {
  position: relative;
  padding-left: 28px;
  margin: 5px 0 5px 0;
}
.box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 14px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
}
.box.yellow ul li::before {
  background-image: url("/images/arrow-right-yellow.svg");
}
.box.green ul li::before {
  background-image: url("/images/arrow-right-green.svg");
}
.box.slides .slide:not(.active) {
  display: none;
}
.box.wide-tile img.viyouu {
  left: -80px;
  transform: translateX(50%) translateY(-50%);
  width: 80px;
}
.box.wide-tile.slides video.overlay {
  position: absolute;
  height: auto;
}
.box.wide-tile.slides video.overlay.position-1 {
  top: 10%;
  right: 7%;
  width: 29%;
}
.box.wide-tile.slides video.overlay.position-2 {
  top: 37%;
  right: 15.4%;
  width: 35%;
}
.box.teaser video {
  padding: 30px;
}
.box.teaser .image-image {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 30px 0 30px;
}
.box.teaser .image-image > div img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 700px) {
  .box.teaser .image-image {
    flex-direction: row;
  }
  .box.teaser .image-image div {
    width: calc(50% - 15px);
  }
}
.box.teaser img.viyouu {
  transform: translateX(50%) translateY(-50%);
  width: 30px;
}
@media (min-width: 700px) {
  .box.teaser img.viyouu {
    width: 50px;
  }
}
.box.teaser img.viyouu.left {
  left: -30px;
}
@media (min-width: 700px) {
  .box.teaser img.viyouu.left {
    left: -50px;
  }
}
.box.teaser img.viyouu.right {
  right: 0;
}
.box.storyboard .meta {
  display: flex;
  gap: 15px;
  font-family: MachoModularBold;
  opacity: 0.7;
}
.box.storyboard.hidden {
  display: none !important;
}
.box.storyboard .picture-wrapper {
  position: relative;
}
.box.storyboard .picture-wrapper picture {
  display: initial !important;
  width: auto !important;
  margin-left: 0 !important;
}
.box.storyboard .picture-wrapper .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 0;
  transition: transform 0.25s ease;
}
.box.storyboard .picture-wrapper .play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.box.storyboard .picture-wrapper .play-button img {
  width: 72px;
  height: 72px;
}
.box.storyboard .picture-wrapper .test-button {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: block;
  text-align: center;
  padding: 10px 10px 8px 10px;
  color: var(--black-color) !important;
  background-color: color-mix(in srgb, var(--yellow-color) 85%, transparent);
  border-radius: 5px;
  font-family: MachoModularBold;
  transition: background-color 0.3s ease;
}
.box.storyboard .picture-wrapper .test-button:hover {
  background-color: var(--yellow-color);
}
.box.storyboard.portrait .picture-wrapper picture img {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 2px solid var(--yellow-color);
}
.box.storyboard.landscape {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.box.storyboard.landscape .picture-wrapper {
  flex: 2;
}
@media (max-width: 900px) {
  .box.storyboard.landscape .picture-wrapper picture img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 2px solid var(--yellow-color);
  }
}
@media (min-width: 901px) {
  .box.storyboard.landscape .picture-wrapper picture img {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 2px solid var(--yellow-color);
  }
}
.box.storyboard.landscape .text {
  flex: 1;
}
@media (max-width: 900px) {
  .box.storyboard.landscape .picture-wrapper, .box.storyboard.landscape .text {
    flex: 1 1 100%;
  }
}
.box.storyboard .text {
  position: static !important;
  width: auto !important;
  padding: 30px !important;
}
/* ---------- */
.storyboards .filters {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1100px) {
  .storyboards .filters {
    flex-direction: row;
  }
}
.storyboards .filters h4 {
  flex-basis: 100%;
}
.storyboards .filters .orientations, .storyboards .filters .industries {
  flex: 1 1 100%;
}
@media (min-width: 1100px) {
  .storyboards .filters .orientations {
    flex: 1;
  }
  .storyboards .filters .industries {
    flex: 4;
  }
}
@media (max-width: 1099px) {
  .storyboards .filters .orientations div {
    display: flex;
    flex-wrap: wrap;
    column-gap: 0.5rem;
  }
  .storyboards .filters .orientations div a {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.storyboards .filters .industries div {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.5rem;
}
.storyboards .filters .industries div.hidden {
  display: none;
}
.storyboards .filters .industries div a {
  padding-left: 20px;
  padding-right: 20px;
}
.storyboards .filters a {
  display: block;
  text-align: center;
  margin-top: 10px;
  padding: 10px 10px 8px 10px;
  color: color-mix(in srgb, var(--white-color) 60%, transparent) !important;
  background-color: color-mix(in srgb, var(--yellow-color) 50%, transparent);
  border-radius: 5px;
  font-family: MachoModularBold;
  transition: background-color 0.3s ease;
}
.storyboards .filters a:hover, .storyboards .filters a.active {
  color: var(--black-color) !important;
  background-color: var(--yellow-color) !important;
}
/* ---------- */
.avatar {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  align-items: end;
}
.avatar > img {
  grid-column: 1;
  grid-row: 1;
  max-width: 100%;
  height: auto;
}
.avatar > p {
  display: none;
  grid-column: 2;
  grid-row: 1;
  padding-bottom: 50px;
}
@media (min-width: 1200px) {
  .avatar > p {
    display: block;
  }
}
@media (min-width: 1200px) {
  .avatar-text-1 {
    display: none;
  }
}
/* ---------- */
.mobile-only {
  display: block;
}
.grid-container.mobile-only {
  display: grid;
}
.desktop-only {
  display: none;
}
@media (min-width: 700px) {
  .mobile-only {
    display: none;
  }
  .grid-container.mobile-only {
    display: none;
  }
  .desktop-only {
    display: block;
  }
  .grid-container.desktop-only {
    display: grid;
  }
}
.hidden {
  display: none;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-center {
  text-align: center;
}
.text-yellow {
  color: var(--yellow-color);
}
.text-fw-bold {
  font-family: MachoModularBold;
}
.bg-yellow-15 {
  background-color: color-mix(in srgb, var(--yellow-color) 15%, transparent);
}
div:has(#contact-form) {
  margin-top: 35px;
}
form p {
  position: relative;
  margin-bottom: 50px;
}
form#storyboard-try-it-out-form p {
  margin-bottom: 25px;
}
form .grid-container:last-of-type .column:last-of-type p {
  margin-bottom: 0;
}
@media (min-width: 700px) {
  form .grid-container:last-of-type p {
    margin-bottom: 15px;
  }
}
form label {
  position: absolute;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  cursor: text;
  font-size: 1em;
  transition: 0.3s ease-in-out;
}
form p:has(textarea) label {
  top: 20px;
  left: 20px;
}
form textarea {
  border: 1px solid var(--yellow-color);
  border-radius: 10px;
  padding: 10px;
  background-color: transparent;
  color: var(--white-color);
  width: 100%;
  height: 150px;
  font-size: 1em;
  resize: none;
}
form textarea:focus {
  outline: none;
}
form textarea::placeholder {
  color: transparent;
}
form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--yellow-color);
  background-color: transparent;
  color: var(--white-color);
  width: 100%;
  font-size: 1em;
  padding-left: 0;
}
form select:focus {
  outline: none;
}
form input {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--yellow-color);
  background-color: transparent;
  color: var(--white-color);
  width: 100%;
  font-size: 1em;
  padding-left: 0;
}
form input:focus {
  outline: none;
}
form input::placeholder {
  color: transparent;
}
form input:focus + label, form input:not(:placeholder-shown) + label, form textarea:focus + label, form textarea:not(:placeholder-shown) + label {
  font-size: 0.75em;
  top: -15px;
  pointer-events: none;
}
form textarea:focus + label, form textarea:valid + label {
  left: 0;
}
form button[type="submit"] {
  border: none;
  background-color: transparent;
  color: var(--yellow-color);
  width: 100%;
  font-size: 1em;
  text-align: left;
  padding-left: 28px;
  cursor: pointer;
}
form button[type="submit"]:focus {
  outline: none;
}
form button[type="submit"]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 14px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("/images/arrow-right-yellow.svg");
}
.visually-hidden {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
#menu-mobile {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  overflow: hidden;
  z-index: 2000;
  background-color: var(--black-color);
  padding: 20px;
  margin-bottom: 10px;
  transition: min-height 0.25s ease-out;
  font-size: var(--text-size-big);
}
#menu-mobile.open {
  min-height: 100vh;
  transition: min-height 0.25s ease-in;
  overflow-y: auto;
}
#menu-mobile ul:nth-of-type(2) {
  list-style: none;
  margin: 25px 0 0 0;
  padding: 0;
}
#menu-mobile ul:nth-of-type(2) li {
  position: relative;
  border-bottom: 1px solid var(--yellow-color);
  padding: 20px 0 20px 0;
}
#menu-mobile ul:nth-of-type(2) li.dropdown > a::after {
  font-family: "Font Awesome 6 Free";
  content: "";
  font-weight: 900;
  color: var(--yellow-color);
  transition: transform 0.25s ease;
}
#menu-mobile ul:nth-of-type(2) li:nth-child(2).dropdown > a::after {
  color: var(--white-color);
}
#menu-mobile ul:nth-of-type(2) li:nth-child(4).dropdown > a::after {
  color: var(--green-color);
}
#menu-mobile ul:nth-of-type(2) li.dropdown.open > a::after {
  transform: rotate(180deg);
}
#menu-mobile ul:nth-of-type(2) li a {
  font-family: MachoModularBold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  color: var(--yellow-color);
}
#menu-mobile ul:nth-of-type(2) li:nth-child(2) a {
  color: var(--white-color);
}
#menu-mobile ul:nth-of-type(2) li:nth-child(4) a {
  color: var(--green-color);
}
#menu-mobile ul:nth-of-type(2) li ul {
  display: none;
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
}
#menu-mobile ul:nth-of-type(2) li ul li {
  border-bottom: none;
  padding: 10px 0 10px 20px;
}
#menu-mobile ul:nth-of-type(2) li ul li:last-of-type {
  padding-bottom: 0;
}
#menu-mobile ul:nth-of-type(2) li ul li a {
  display: block;
  text-transform: none;
  color: var(--yellow-color);
}
#menu-mobile ul:nth-of-type(2) li:last-child {
  border-bottom: none;
}
#menu-mobile ul:first-child {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
  max-width: var(--page-width);
  padding: 0;
  margin: 0;
}
#menu-mobile ul:first-child li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
#menu-mobile ul:first-child li:not(:first-child) {
  border-radius: 5px;
  background-color: var(--yellow-color);
}
#menu-mobile ul:first-child li:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: auto;
  width: 40px;
  height: 40px;
  background-color: var(--yellow-color);
}
#menu-mobile ul:first-child li:nth-child(2) a {
  font-family: MachoModularBold;
  font-size: 8px;
  line-height: 100%;
  color: var(--black-color);
  text-transform: none;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}
#menu-mobile ul:first-child li:last-child {
  margin-right: 0;
  background-color: var(--black-color);
}
#menu-mobile ul:first-child li:last-child::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  padding: 1px;
  border-radius: 5px;
  background: linear-gradient(to right, var(--yellow-color), var(--green-color));
  -webkit-mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
#menu-mobile ul:first-child li:last-child a {
  color: var(--yellow-color);
}
#menu-mobile ul:first-child li a {
  position: absolute;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: var(--black-color);
}
#menu-mobile ul:first-child li a img {
  width: 100%;
  height: 100%;
}
#menu-desktop {
  display: none;
}
@media (min-width: 700px) {
  #menu-mobile {
    display: none;
  }
  #menu-desktop {
    display: flex;
    justify-content: center;
    position: fixed;
    z-index: 2000;
    top: 0;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--black-color);
    overflow: visible;
  }
  #menu-desktop > div {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: var(--page-width);
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 20px;
    gap: var(--menu-desktop-lists-spacer);
    transition: gap 0.25s ease;
  }
  #menu-desktop > div > ul {
    position: relative;
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: var(--black-color);
  }
  #menu-desktop > div > ul:nth-child(1) {
    width: 230px;
    height: 100px;
    gap: 10px;
  }
  #menu-desktop > div > ul:nth-child(1) li:nth-child(1) {
    width: 100px;
    height: 100px;
  }
  #menu-desktop > div > ul:nth-child(1) li:nth-child(2) {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    background-color: var(--yellow-color);
    border-radius: 10px;
  }
  #menu-desktop > div > ul:nth-child(1) li:nth-child(2) a {
    font-family: MachoModularBold;
    font-size: var(--text-size);
    color: var(--black-color);
    text-transform: none;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
  }
  #menu-desktop > div > ul:nth-child(2) {
    justify-content: center;
    position: relative;
    z-index: 10;
    width: 80%;
    height: 60px;
  }
  #menu-desktop > div > ul:nth-child(2)::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    padding: 2px;
    border-radius: 10px;
    background: linear-gradient(to right, var(--yellow-color), var(--green-color));
    -webkit-mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
  }
  #menu-desktop > div > ul:nth-child(2) > li {
    position: relative;
    margin-left: var(--menu-desktop-items-spacer);
    margin-right: var(--menu-desktop-items-spacer);
    transition: margin-left 0.25s ease, margin-right 0.25 ease;
  }
  #menu-desktop > div > ul:nth-child(2) > li a {
    font-family: MachoModularBold;
    text-transform: uppercase;
    color: var(--yellow-color);
    position: relative;
    z-index: 20;
  }
  #menu-desktop > div > ul:nth-child(2) > li:nth-child(2) a {
    color: var(--white-color);
  }
  #menu-desktop > div > ul:nth-child(2) > li:nth-child(4) a {
    color: var(--green-color);
  }
  #menu-desktop > div > ul:nth-child(2) > li ul {
    display: none;
    position: absolute;
    z-index: 400;
    top: 50px;
    left: -22px;
    list-style: none;
    margin: 0;
    padding: 10px;
    min-width: 200px;
    background-color: var(--black-color);
  }
  #menu-desktop > div > ul:nth-child(2) > li ul.open {
    display: block;
  }
  #menu-desktop > div > ul:nth-child(2) > li ul li {
    padding: 10px 10px 9px 10px;
  }
  #menu-desktop > div > ul:nth-child(2) > li ul li.active {
    border-radius: 10px;
  }
  #menu-desktop > div > ul:nth-child(2) > li ul li.active a {
    color: var(--black-color);
  }
  #menu-desktop > div > ul:nth-child(2) > li ul li a {
    text-transform: none;
  }
  #menu-desktop > div > ul:nth-child(2) > li ul.yellow li.active {
    background-color: var(--yellow-color);
  }
  #menu-desktop > div > ul:nth-child(2) > li ul.yellow li:not(.active) a:hover {
    color: var(--yellow-color);
  }
  #menu-desktop > div > ul:nth-child(2) > li ul.green li.active {
    background-color: var(--green-color);
  }
  #menu-desktop > div > ul:nth-child(2) > li ul.green li:not(.active) a:hover {
    color: var(--white-color);
  }
  #menu-desktop > div > ul:nth-child(2) > li:first-of-type ul.yellow li:not(.active) a:hover {
    color: var(--white-color);
  }
  #menu-desktop > div > ul:nth-child(3) {
    justify-content: flex-end;
    width: 20%;
    height: 60px;
  }
  #menu-desktop > div > ul:nth-child(3) li {
    display: flex;
    align-items: center;
    height: 35px;
    background-color: var(--yellow-color);
    border-radius: 5px;
  }
  #menu-desktop > div > ul:nth-child(3) li:nth-child(1) span.text {
    display: none;
  }
  #menu-desktop > div > ul:nth-child(3) li:nth-child(2) {
    display: flex;
    justify-content: center;
    width: 35px;
    margin-left: 10px;
  }
  #menu-desktop > div > ul:nth-child(3) li:nth-child(2) a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: var(--black-color);
  }
}
@media (min-width: 700px) and (max-width: 849px) {
  #menu-desktop > div > ul:nth-child(3) li:nth-child(1) {
    width: 35px;
  }
  #menu-desktop > div > ul:nth-child(3) li:nth-child(1) a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: var(--black-color);
  }
}
@media (min-width: 700px) and (min-width: 850px) {
  #menu-desktop > div > ul:nth-child(3) li:nth-child(1) span.text {
    display: inline;
  }
  #menu-desktop > div > ul:nth-child(3) li:nth-child(1) span.icon {
    display: none;
  }
  #menu-desktop > div > ul:nth-child(3) li:nth-child(1) a {
    background-color: var(--black-color);
    color: var(--yellow-color);
    padding: 2px 10px 0 10px;
    margin: 0 12px 0 12px;
    text-transform: uppercase;
    font-size: var(--text-size-extra-small);
    border-radius: 2px;
  }
}
.video-overlay, .storyboard-try-it-out-overlay {
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.video-overlay.active, .storyboard-try-it-out-overlay.active {
  visibility: visible;
  opacity: 1;
}
.storyboard-try-it-out-overlay {
  background-color: color-mix(in srgb, var(--black-color) 95%, transparent);
}
.video-container, .storyboard-try-it-out-container {
  position: relative;
  display: inline-block;
  max-width: 80vw;
  max-height: 80vh;
}
@media (min-width: 1500px) {
  .storyboard-try-it-out-container {
    max-width: 20vw;
    max-height: 80vh;
  }
}
.storyboard-try-it-out-container .box {
  padding: 30px;
}
video {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 10px;
}
.slide video {
  width: 100%;
}
.video-container video {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  max-width: 80vw;
  max-height: 80vh;
}
.video-close-button, .overlay-close-button {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 10;
  color: var(--white-color);
  background-color: var(--black-color);
  background-color: transparent;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border: none;
}
.video-close-button:hover, .overlay-close-button:hover {
  background-color: var(--black-color);
  background-color: transparent;
}
.button {
  align-items: center;
  padding: 20px 20px 20px 20px;
  color: var(--black-color) !important;
  background-color: var(--yellow-color);
  border-radius: 5px;
  font-family: MachoModularBold;
}
/* ---------- Overlay with activity indicator ---------- */
.ai-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.ai-overlay.hidden {
  display: none;
}
.ai-spinner {
  border: 16px solid #f3f3f3;
  border-top: 16px solid var(--yellow-color);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ---------- /Overlay with activity indicator ---------- */
