

    :root {
        --color-primary: #E65989;
        --color-primary-gradient: linear-gradient(143.44deg, #DF005E 14.74%, #E65989 87.09%);
        --color-hero-gradient: linear-gradient(180deg, #E65989 0.27%, #DF005E 7.28%, #E65989 100%);
        --color-secondary: #3591A1;
        --color-secondary-gradient: linear-gradient(216.56deg, #00C3BA 9.74%, #3591A1 87.09%);
        --color-vegemi-dark: #1F1B26;
        --color-vegemi-dark-green: #3591A1;
        --color-vegemi-green: #00C3BA;
        --color-vegemi-pink: rgba(255, 202, 210, 1);
    }


    .bg-secondary-gradient {
        background: var(--color-secondary-gradient);
    }
    .bg-hero-gradient {
        background: var(--color-hero-gradient);
    }

    .overflow-x-hide {
        overflow-x: hidden;
    }

    body {
        margin: 0;
        font-family: 'Quicksand', sans-serif;
        font-size: 1.15rem;
        line-height: 1.5;
        background: #E65989;
        background-repeat: no-repeat;
    }

    body,
    button,
    input,
    select,
    optgroup,
    textarea {
        color: #fff;
        font-family: 'Quicksand', sans-serif;
        font-size: 1.15rem;
        line-height: 1.5;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        line-height: 100%;
        margin: 30px 0;
        clear: both;
    }

    h1,
    .h1 {
        font-family: 'The Foregen';
        font-size: 4.5rem;
        font-weight: 300;
    }

    h2,
    .h2,
    .home h1 {
        font-family: 'The Foregen';
        font-size: 2.75rem;
    }

    h3,
    .h3 {
        font-family: 'The Foregen';
        font-size: 2.25rem;
        font-weight: 400;
    }
    h4,
    .h4{
        font-size: 2rem;
        font-weight: 100;
    }

    h5,
    .h5{
        font-size: 1.5rem;
        font-weight: 300;
    }
    h6,
    .h6{
        font-size: 1rem;
        font-weight: 300;
    }

    @media (min-width: 768px){
        h1,
        .h1 {
            font-family: 'The Foregen';
            font-size: 6rem;
            font-weight: 300;
        }
    }
    @media (min-width: 992px){
        h1,
        .h1 {
            font-family: 'The Foregen';
            font-size: 8rem;
            font-weight: 300;
        }
        h2,
        .h2,
        .home h1 {
            font-family: 'The Foregen';
            font-size: 3.25rem;
        }
    }
    @media (min-width: 1200px){
        h1,
        .h1 {
            font-family: 'The Foregen';
            font-size: 10rem;
            font-weight: 300;
        }
        h2,
        .h2,
        .home h1 {
            font-family: 'The Foregen';
            font-size: 3.625rem;
        }
    }

    p {
        margin: 1.5rem 0;
    }

    .image-hero img {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
        display:block;
    }

    .image-hero {
        position: relative;
    }
    .image-hero-content {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        color: #fff;
    }

    .hero img {
        width: 100%;
        height: auto;
    }

    h2, .h2, .hero h1, .image-hero h1 {
        font-family: 'The Foregen';
        font-size: 2.75rem;
    }

    @media (min-width: 768px) {
        h1, .h1 {
            font-family: 'The Foregen';
            font-size: 6rem;
            font-weight: 300;
        }
    }

    @media (min-width: 1200px) {
        h2, .h2, .hero h1, .image-hero h1 {
            font-family: 'The Foregen';
            font-size: 3.625rem;
        }
    }
    @media (min-width: 992px) {
        h2, .h2, .hero h1, .image-hero h1 {
            font-family: 'The Foregen';
            font-size: 3.25rem;
        }
    }

    .content-length {
        padding: 0 30px;
        max-width: 1140px;
        margin: 0 auto;
    }

    nav div {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
    }

    ul.menu {
        list-style: none;
    }

    .menu-horizontal {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        gap: 10px;
    }

    nav input {
        display: none;
    }

    div {
        box-sizing: border-box;
        border-top: transparent 1px inset;
        border-bottom: transparent 1px inset;
    }


    @media screen and (min-width: 1000px) {
        .nav-menu {
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            gap: 10px;
        }

        nav label {
            display: none;
        }
    }

    @media screen and (max-width: 1000px) {

        nav label {
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 10001;
        }

        nav {
            height: 50px;
        }

        input ~ ul.menu {
            display: none;
        }
        input:checked ~ ul.menu {
            position: absolute;
            left: 0;
            top: -18px;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 10px;
            background-color: var(--color-secondary);
            z-index: 10000;
        }

        ul.menu li {
            min-width: 10vw;
        }

        ul.menu li a {
            display: block;
            text-decoration: none;
            text-transform: uppercase;
            margin-left: 0px;
            font-weight: bold;
            color: #fff;
            font-size: 2.75rem;
            font-style: normal;
            font-weight: 400;
            font-family: 'The Foregen';
        }
    }

    ul.menu li {
        display: block;
        text-decoration: none;
        text-transform: uppercase;
        margin-left: 0px;
        font-weight: bold;
        color: #fff;
        font-size: 2.75rem;
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 400;
        font-family: 'The Foregen';
    }

    ul.menu a, ul.menu a:visited, ul.menu a:hover, ul.menu a:active {
        color: #fff;
        text-decoration: none;
    }

    .current-menu-item a:after {
        content: "";
        display: block;
        width: 100%;
        height: 4px;
        border-radius: 40px;
        background-color: var(--color-secondary);
    }

    .hero {
        background-repeat: no-repeat;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .content-container {
        border-top: 10px solid #fff;
        padding: 25px 0;
    }

    .hero-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .hero-content lottie-player {
        width: 55%;
        margin: -230px 0 0 auto;
    }

    @media screen and (max-width: 900px) {
        .hero-content lottie-player {
            width: 380px;
            margin: -20% 0 0 auto;
        }
    }

    @media screen and (max-width: 700px) {
        .hero-content lottie-player {
            width: 200px;
            margin: -30% 0 0 auto;
        }
        .hero-content {
            display: flex;
            flex-direction: column-reverse;
            justify-content: space-between;
        }
    }

    footer {
        color: #404040;
        background-color: var(--color-vegemi-pink);
        padding: 30px 0 60px;
    }

    .footer-logo {
        width: 90px;
        height: auto;
        vertical-align: middle;
        margin-right: 5px;
    }


    @media screen and (min-width: 800px) {
        .illustration {
            max-width: 150px;
        }
    }
    @media screen and (min-width: 1000px) {
        .illustration {
            max-width: 200px;
        }
    }

    .cherish-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    @media screen and (max-width: 800px) {
        .cherish-container {
            display: none;
        }
    }



    .background-primary {
        background: var(--color-primary-gradient);
    }

    .background-secondary {
        background: var(--color-secondary-gradient);
    }

        /* Forms
    --------------------------------------------- */
    button,
    input[type="button"],
    input[type="reset"],
    input[type="submit"] {
        border: 1px solid;
        border-color: #ccc #ccc #bbb;
        border-radius: 3px;
        background: #e6e6e6;
        color: rgba(0, 0, 0, 0.8);
        line-height: 1;
        padding: 0.6em 1em 0.4em;
        background-color: transparent;
        border: none;
        cursor: pointer;
    }

    button:hover,
    input[type="button"]:hover,
    input[type="reset"]:hover,
    input[type="submit"]:hover {
        border-color: #ccc #bbb #aaa;
    }

    button:active,
    button:focus,
    input[type="button"]:active,
    input[type="button"]:focus,
    input[type="reset"]:active,
    input[type="reset"]:focus,
    input[type="submit"]:active,
    input[type="submit"]:focus {
        border-color: #aaa #bbb #bbb;
    }

    input[type="text"],
    input[type="email"],
    input[type="url"],
    input[type="password"],
    input[type="search"],
    input[type="number"],
    input[type="tel"],
    input[type="range"],
    input[type="date"],
    input[type="month"],
    input[type="week"],
    input[type="time"],
    input[type="datetime"],
    input[type="datetime-local"],
    input[type="color"],
    textarea {
        color: #666;
        border: 1px solid #ccc;
        border-radius: 30px;
        padding: 3px 10px;
    }

    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="url"]:focus,
    input[type="password"]:focus,
    input[type="search"]:focus,
    input[type="number"]:focus,
    input[type="tel"]:focus,
    input[type="range"]:focus,
    input[type="date"]:focus,
    input[type="month"]:focus,
    input[type="week"]:focus,
    input[type="time"]:focus,
    input[type="datetime"]:focus,
    input[type="datetime-local"]:focus,
    input[type="color"]:focus,
    textarea:focus {
        color: #111;
    }

    input[type="submit"],
    input[type="reset"],
    input[type="button"],
    button {
        background-color: var(--color-vegemi-green);
        display: inline-block;
        border-radius: 40px;
        color: #fff;
        box-shadow: 0px 4px 0px rgba(0, 0, 0, 0.25);
        padding: 7.5px 30px;
        margin: 5px 0;
    }

    select {
        border: 1px solid #ccc;
    }

    textarea {
        width: 100%;
    }

    /* Blocks    --------------------------------------------- */

    .image-with-text-block {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 60px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .image-with-text-block > * {
        flex-grow: 1; flex-shrink: 1; flex-basis: 0;
    }

    .image-with-text-block .image-container {
        margin: auto;
        text-align: center;
    }

    .image-with-text-block .image-container > img {
        display: inline-block;
        max-width:100%;
        max-height:100%;
        width: auto;
        height: auto;
    }

    @media screen and (max-width: 600px) {
        .image-with-text-block {
            flex-direction: column;
        }

        .image-with-text-block .image-container > img {
            display: inline-block;
            max-width: 400px;
            max-height: 300px;
            width: auto;
            height: auto;
        }
    }

    a, a:visited, a:hover, a:active {
        color: #fff;
        text-decoration: underline;
    }


    .document-link {
        display: block;
        text-decoration: none;
        font-size: 1rem;
        margin: 10px;
        padding: 10px;
        border-radius: 20px;
        text-align: center;
        background-color: var(--color-secondary);
        box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.25);
    }

    .background-secondary .document-link {
        background-color: var(--color-primary);
    }

    .document-link:hover {
        text-decoration: none;
    }

    .document-link img {
        display: inline;
        vertical-align: middle;
    }

    .embedaudio audio {
        width: 100%;
        margin-bottom: 10px;
    }

    .embedaudio .document-link {
        margin-top: 0;
    }

    .language-selector-open {
        display: block;
        margin: 5px;
        width: 30px;
        height: 30px;
        border-radius: 30px;
        overflow: hidden;
        position: relative;
    }

    .language-selector-open img {
        width: 40px;
        height: 40px;
        position:absolute;
        left: -5px;
        top: -5px;
    }

    .language-selector {
        display: none;
        position: absolute;
        left: 0;
        top: 0px;
        width: 100%;
        height: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        background-color: var(--color-primary);
        z-index: 10002;
    }

    .language-selector.open {
        display: flex;
    }

    .language-selector > * {
        min-width: 40vw;
    }

    .language-selector h5, .language-selector h4 {
        margin: 5px 0;
    }

    .language-selector h5 {
        text-align: center;
        margin-bottom: 15px;
    }

    .language-selector a {
            display: block;
            text-decoration: none;
            text-transform: uppercase;
            margin-left: 0px;
            font-weight: bold;
            color: #fff;
            font-size: 2.75rem;
            font-style: normal;
            font-weight: 400;
            font-family: 'The Foregen';
        }

    .embedding-group input {
      position: absolute;
      opacity: 0;
      z-index: -1;
    }
    .embedding-group {
      margin: 10px;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
    }
    .embedding-group .accordion-label  {
        display:flex;
        justify-content: center;
        gap: 10px;
        align-items: center;
        width: 100%;
      font-weight: bold;
      cursor: pointer;

      background-color: var(--color-secondary);
      color: #fff;
    }
    .embedding-group .accordion-label > *  {
        display: block;
    }

    .embedding-group .accordion-label img {
        transition: transform 0.35s;
    }

    .embedding-group input:checked ~ .accordion-label img {
        transform: rotate(180deg);
    }

    .background-secondary .embedding-group .accordion-label {
        background-color: var(--color-primary);
    }

    .embedding-group .accordion-content {
      max-height: 0;
      padding: 0 1em;
      background: white;
      transition: all 0.35s;
    }
    .embedding-group input:checked ~ .accordion-content {
      max-height: 100%;
      padding: 1em;
    }

    .license-registration-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }