html {
    cursor: url("data:image/svg+xml,%3Csvg height='25' width='25' viewBox='0 0 8 8' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4' cy='4' fill='#ffffff' r='4'/%3E%3C/svg%3E") 3 3, auto;
}

:root {
    --color: #00000000;
    --color-a: #000000;
    --color-b: #ffffff;
}

@font-face {
    font-family: "Joyride-Round";
    src: url("../font/Joyride-Extended.otf");
    src: url("../font/Joyride-Extended.woff");
    font-weight: normal;
    font-weight: bold;
    font-weight: medium;
    font-weight: lighter;
}

@font-face {
    font-family: "Joyride-Outline";
    src: url("../font/Joyride-Outline.woff");
    src: url("../font/Joyride-Outline.otf");
    font-weight: normal;
    font-weight: bold;
    font-weight: medium;
    font-weight: lighter;
}

@font-face {
    font-family: "SweetSansPro-Regular";
    src: url("../font/sweetsanspro/SweetSansPro-Regular.otf");
    font-weight: normal;
    font-weight: bold;
    font-weight: medium;
    font-weight: lighter;
}

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

body {
    height: 100%;
    width: 100%;
}


a {
    color: #cbcbcb;
    font-size: 25px;
    text-decoration: none;
}

p {
    font-weight: lighter;
    font-size: 90px;
    text-align: center;
}

h1 {
    color: #fff;
    font-family: "Joyride-Round";
    font-size: 90px;
    color: #FFFFFF;
    text-align: center;
    word-spacing: -47px;
}

h3 {
    color: #fff;
    font-family: "Joyride-Outline";
    font-size: 90px;
    color: #FFFFFF;
    text-align: center;
    word-spacing: 47px;
}

h4 {
    color: #BFBFBF;
    font-size: 70px;
    font-family: "Joyride-Round";
    text-align: center;
}

h5 {
    color: #fff;
    font-size: 13px;
    padding-bottom: 20px;
}

small {
    color: #ffffff;
    text-align: center;
    font-family: "SweetSansPro-Regular";
    font-size: 10px;
    letter-spacing: 0.19px;
}


/* -------------------------------- 

card


-------------------------------- */
.card {
    width: 25vw;
    height: 1vh;
    padding-bottom: 15vw;
    border-radius: 1em;
    margin: 5vh;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
    background-image: url("https://agsitemain.web.app/css/img/boost.svg");
    background-repeat: no-repeat;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transform: perspective(500px);
    transform-style: preserve-3d;
    background-size: contain;
    position: absolute;
    z-index: 5;
}

.cardback {
    width: 25vw;
    height: 1vh;
    padding-bottom: 15vw;
    border-radius: 1em;
    margin: 5vh;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-image: url("https://agsitemain.web.app/css/img/boost_v2.svg");
    background-color: #00E87E;
    background-repeat: no-repeat;
    transform: perspective(500px);
    transform-style: preserve-3d;
    background-size: contain;
    position: absolute;
    z-index: 5;
}

/* -------------------------------- 

emeil


-------------------------------- */
svg {
    margin: 5vh 0;
}

.field {
    margin: 0 auto;
    width: calc(90vw/2.7);
    background-color: black;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 15px;
    display: flex;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s ease;
    -webkit-transform: none!important;
    transform: none!important;
}

.field button {
    z-index: 2;
}

.field input {
    border: none;
    background-color: black;
    padding: 0 0.1em;
    flex-grow: 1;
    font: 300 16px "Proxima Nova", Arial, Helvetica;
    transition: opacity 0.25s ease;
    color: #BFBFBF;
    -webkit-transform: none!important;
    transform: none!important;
}

.field input:focus {
    outline: none;
}

.field__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: black;
    border-radius: 15px;
    z-index: 1;
    color: #BFBFBF;
    font: 500 14px "Proxima Nova", Arial, Helvetica;
    text-align: center;
    padding: 0 1.5em;
    display: flex;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.25s ease;
    -webkit-transform: none!important;
    transform: none!important;
}

.loading-done.field {
    border-color: transparent;
}

.loading-done .field__overlay {
    opacity: 1;
    visibility: visible;
}

.arrow-loader__main-path {
    stroke-dasharray: 98, 400;
    stroke-dashoffset: -4;
    transition: all 1s ease;
    transform-origin: 50% 50%;
}

.arrow-loader--loading .arrow-loader__main-path {
    stroke-dasharray: 300, 400;
    stroke-dashoffset: -108;
}

.arrow-loader--spin .arrow-loader__main-path {
    animation: spin 1.5s linear infinite;
}

.arrow-loader--full-circle .arrow-loader__main-path {
    stroke-dasharray: 390, 400;
    stroke-dashoffset: -108;
}

.arrow-loader__checkmark-path {
    stroke-dasharray: 63;
    stroke-dashoffset: 63;
    transition: stroke-dashoffset 0.5s ease;
    position: relative;
    transform: translateY(5px);
    -webkit-transform: none!important;
    transform: none!important;
}

.arrow-loader--checkmark-visible .arrow-loader__checkmark-path {
    stroke-dashoffset: 0;
}

.arrow-loader__arrow-top-path,
.arrow-loader__arrow-bottom-path {
    transform-origin: 90.2% center;
    transition: transform 0.25s ease, opacity 0.25s ease 0.15s;
    -webkit-transform: none!important;
    transform: none!important;
}

.arrow-loader--arrow-collapsed .arrow-loader__arrow-top-path {
    transform: rotate(-40.9deg);
    opacity: 0;
    -webkit-transform: none!important;
    transform: none!important;
}

.arrow-loader--arrow-collapsed .arrow-loader__arrow-bottom-path {
    transform: rotate(40.9deg);
    opacity: 0;
    -webkit-transform: none!important;
    transform: none!important;
}

@keyframes spin {
    to {
        transform: rotate(-360deg);
        -webkit-transform: none!important;
        transform: none!important;
    }
}

#debug {
    display: none;
}

.section {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    /* display: none; */
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #BFBFBF;
    opacity: 1;

    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #BFBFBF;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #BFBFBF;
    display: none;
}

.button {
    background: black;
    border: none;
    color: #BFBFBF;
    line-height: 0;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    transition: all 0.25s ease;
    -webkit-transform: none!important;
    transform: none!important;
}

.button:focus {
    outline: none;
}

.button--scale:hover,
.button--scale.button--loading {
    transform: scale(1.15);
    -webkit-transform: none!important;
    transform: none!important;
}

.button svg {
    width: 100%;
    margin: 0;
}

/* -------------------------------- 

Marquee


-------------------------------- */
.track {
    font-family: "SweetSansPro-Regular";
    text-transform: uppercase;
    object-fit: contain;
    font-style: italic;
    font-size: 29px;
    color: #FFFFFF;
    letter-spacing: 2.07px;
    text-align: center;
    width: 100%;
    word-spacing: 1rem;
    height: 200px;
    overflow-x: hidden;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 60s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(100);
    }

    to {
        transform: translateX(-100%);
    }
}

/* -------------------------------- 

Slideshow 



-------------------------------- */
.cd-slideshow-wrapper {
    overflow: hidden;
}

@media only screen and (min-width: 1100px) {
    .cd-slideshow-wrapper {
        height: 100vh;
    }
}

.cd-slideshow {
    position: relative;
    background: #000;
}

.cd-slideshow::before {
    content: "mobile";
}

.cd-slideshow .sub-slides {
    width: 100%;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
}

.cd-slideshow .sub-slides::after {
    clear: both;
    content: "";
    display: table;
}

.cd-slideshow > li,
.cd-slideshow .sub-slides > li {
    position: relative;
    z-index: 1;
    height: 100vh;
    width: 100vw;
}

.cd-slideshow > li::after,
.cd-slideshow .sub-slides > li::after {
    clear: left;
    content: "";
    display: table;
}

.cd-slideshow .sub-slides > li {
    float: left;
}

.cd-slideshow .slider-dots {
    position: absolute;
    z-index: 3;
    bottom: 20px;
    left: 0;
    width: 100vw;
    text-align: center;
}

.cd-slideshow .slider-dots li {
    display: inline-block;
    height: 10px;
    width: 40px;
    margin-right: 5px;
    border-radius: 20px;
    border: 1px solid #000;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.cd-slideshow .slider-dots li.active {
    background-color: #000;
}

.cd-slideshow .slider-dots li:last-of-type {
    margin-right: 0;
}

.cd-slideshow.remove-transitions {
    -webkit-transition: -webkit-transform 0s;
    -moz-transition: -moz-transform 0s;
    transition: transform 0s;
}

.cd-slideshow.remove-transitions .sub-slides {
    -webkit-transition: -webkit-transform 0s;
    -moz-transition: -moz-transform 0s;
    transition: transform 0s;
}

@media only screen and (min-width: 1100px) {
    .cd-slideshow {
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-transition: -webkit-transform 0.6s;
        -moz-transition: -moz-transform 0.6s;
        transition: transform 0.6s;
    }

    .cd-slideshow::before {
        content: "desktop";
    }

    .cd-slideshow .sub-slides {
        -webkit-transition-duration: 0.6s;
        -moz-transition-duration: 0.6s;
        transition-duration: 0.6s;
    }

    .cd-slideshow > li,
    .cd-slideshow .sub-slides > li {
        height: auto;
        width: auto;
    }

    .cd-slideshow .slider-dots {
        opacity: 0;
        visibility: hidden;
    }
}

/* -------------------------------- 

Slide Content

-------------------------------- */
.cd-slider-content {
    position: relative;
    height: 100vh;
    width: 100vw;
    float: left;
    display: inline;
}


.cd-slider-content .content-wrapper {
    height: 100vh;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    border-radius: 50px;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 1100px) {
    .content-wrapper {
        height: 50vh;
        width: 100vw;
        border-radius: 20px;
        margin-left: 5vw;
        margin-right: 5vw;
        margin-top: 5vw;
    }
}


@keyframes gradientAnim {
    0% {
        background-position: -5% 0;
    }

    100% {
        background-position: 105% 0;
    }
}

* {
    box-sizing: border-box;
}

.cd-slideshow > li:nth-of-type(2) .cd-slider-content .content-wrapper {
    background: #ffffff;
}

.cd-slideshow > li:nth-of-type(3) .cd-slider-content .content-wrapper {
    background: #000;
}

.cd-slideshow > li:nth-of-type(4) .cd-slider-content .content-wrapper {
    background: #000;
}

.cd-slideshow > li:nth-of-type(5) .cd-slider-content .content-wrapper {
    background: #000;
}

.cd-slideshow > li:nth-of-type(6) .cd-slider-content .content-wrapper {
    background: #000;
}

.cd-slider-content h2 {
    color: #000;
}

.cd-slider-content p {
    margin: 1em 0 2em;
}

@media only screen and (min-width: 20em) {
    .cd-slider-content {
        height: 80vh;
        width: 90vw;
        border-radius: 20px;
        margin-left: 5vw;
        margin-right: 5vw;
        margin-top: 5vw;
    }

    .content-wrapper {
        height: 80vh;
        width: 90vw;
        border-radius: 20px;
        margin-left: 5vw;
        margin-right: 5vw;
        margin-top: 5vw;
    }

    .sub-slides > li:first-of-type .cd-slider-content {
        margin-left: 5vw;
    }

    .sub-slides > li .cd-slider-content {
        margin-left: 1.25vw;
        margin-right: 1.25vw;
    }

    .cd-slider-content .content-wrapper {
        height: 80vh;
        opacity: 0;
    }

    .cd-slider-content::after {
        content: "";
        position: absolute;
        z-index: 3;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        border-radius: inherit;
        background-color: #000000;
        opacity: 1;
        visibility: visible;
        -webkit-transition: opacity 0.6s, visibility 0.6s;
        -moz-transition: opacity 0.6s, visibility 0.6s;
        transition: opacity 0.6s, visibility 0.6s;
    }

    .cd-slider-content .content-wrapper {
        opacity: 1;
    }

    .cd-slider-content::after {
        opacity: 0;
        visibility: hidden;
    }

    .cd-slider-content h2 {
        font-size: 4rem;
        font-weight: 300;
    }

    .cd-slider-content p {
        font-weight: bold;
    }
}

/* -------------------------------- 

Logo

-------------------------------- */
.logo_menu {
    position: absolute;
    top: 0;
    right: 0.5em;
    height: 100%;
    width: 0.9765625vw;
    cursor: pointer;
    z-index: 9999;
    float: right;
    background: url(https://agsitemain.web.app/css/img/logo_menu.svg);
    background-size: 100px 82px;
    padding: 4vh 3vw;
    margin-bottom: 0.8em;
}

.cursor {
    height: 1.5em;
    width: 1.5em;
    border: 1px solid black;
    border-radius: 60%;
    background: white;
    pointer-events: none;
    position: fixed;
    display: flex;
    transition: transform .6s ease, 
    background .6s ease, 
    height .5s ease,
    width .4s ease;
    opacity: 0.4;
}

/* -------------------------------- 

Slideshow Navigation

-------------------------------- */
.cd-slideshow-nav {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
}

.cd-slideshow-nav .cd-nav-items {
    position: fixed;
    z-index: 1;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.91);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0s;
    -moz-transition: -moz-transform 0s;
    transition: transform 0s;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(20px);
}

.cd-slideshow-nav .cd-nav-items > ol {
    height: 100%;
    overflow: auto;
    padding: 80px 20px 80px 30px;
}

.cd-slideshow-nav ol ol {
    padding-left: 1em;
}

.cd-slideshow-nav a {
    color: rgb(255, 255, 255);
    display: inline-block;
    margin-bottom: 0.5em;
}

.cd-slideshow-nav.nav-open .cd-nav-items {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}


.cd-slideshow-nav.nav-open .cd-nav-items > ol {
    -webkit-overflow-scrolling: touch;
}

    .cd-slideshow-nav a {
        font-family: "Joyride-Round";
        color: #ffffff;
        font-size: 5rem;
        -webkit-transition: all 0s;
        -moz-transition: all 0s;
        transition: all 0s;
        text-align: center !important;
        justify-content: center !important;
        text-transform: uppercase;
    }

    .cd-slideshow-nav a:before {
        font-family: "Joyride-Round";
        width: 10px;
        -webkit-transition: all  0s;
        -moz-transition: all 0s;
        transition: all 0s;
        text-transform: uppercase;
        padding-bottom: 10px;
    }

    .no-touch .cd-slideshow-nav a:hover {
        color: white;
        font-family: "Joyride-Outline";
        text-transform: uppercase;
    }

    .cd-nav-trigger {
        position: absolute;
        z-index: 2;
        top: 20px;
        left: 20px;
        height: 25px;
        width: 25px;
        border-radius: 10px;
        border: none;
        outline: none;
        background-color: transparent;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0);
        overflow: hidden;
        text-indent: 100%;
        white-space: nowrap;
        color: transparent;
        transform: rotate(90deg);
    }

    .cd-nav-trigger span,
    .cd-nav-trigger span::after {
        position: absolute;
        height: 4px;
        width: 4px;
        background-color: rgb(255, 255, 255);
        border-radius: 20px;
        z-index: 99999;
    }

    .cd-nav-trigger span::before {
        position: absolute;
        height: 4px;
        width: 4px;
        border-radius: 20px;
    }

    .cd-nav-trigger span {
        left: 50%;
        top: 50%;
        border-radius: 90px;
        bottom: auto;
        right: auto;
        -webkit-transform: translateX(-50%) translateY(-50%);
        -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        -o-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        -webkit-transition: background-color 0.3s;
        -moz-transition: background-color 0.3s;
        transition: background-color 0.3s;
    }

    .cd-nav-trigger span::after {
        content: "";
        left: 0;
        -webkit-transition: -webkit-transform 0.3s;
        -moz-transition: -moz-transform 0.3s;
        transition: transform 0.3s;
        background-color: white;
    }

    .cd-nav-trigger span::before {
        content: "";
        left: 0;
        -webkit-transition: -webkit-transform 0.3s;
        -moz-transition: -moz-transform 0.3s;
        transition: transform 0.3s;
        background-color: white;
    }

    .cd-nav-trigger span::before {
        -webkit-transform: translateY(-12px);
        -moz-transform: translateY(-12px);
        -ms-transform: translateY(-12px);
        -o-transform: translateY(-12px);
        transform: translateY(-12px);
    }

    .cd-nav-trigger span::after {
        -webkit-transform: translateY(12px);
        -moz-transform: translateY(12px);
        -ms-transform: translateY(12px);
        -o-transform: translateY(12px);
        transform: translateY(12px);
    }

    .nav-open .cd-nav-trigger span {
        background-color: white;
        width: 25px;
        height: 25px;
        transition: all ease 0.3s;
    }

    .nav-open .cd-nav-trigger span::before {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        background-color: transparent;
    }

    .nav-open .cd-nav-trigger span::after {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        background-color: transparent;
    }

    @media only screen and (min-width: 20em) {
        .cd-nav-trigger {
            height: 4em;
            width: 4em;
            left: calc(2.5vw - 1em);
            top: calc(2.5vw - 1em);
        }
    }

    /* -------------------------------- 

no-js

-------------------------------- */
    .no-js .cd-slideshow-wrapper {
        overflow: visible;
        height: auto;
    }

    .no-js .cd-slideshow > li,
    .no-js .cd-slideshow .sub-slides > li {
        height: auto;
        width: 100vw;
        margin: 0;
    }

    .no-js .cd-slider-content {
        margin: 0;
        height: 100vh;
        width: 100%;
        border-radius: 0;
    }

    .no-js .cd-slideshow > li:first-of-type .cd-slider-content,
    .no-js .sub-slides > li:first-of-type .cd-slider-content,
    .no-js .sub-slides > li .cd-slider-content {
        margin: 0;
    }

    .no-js .cd-slider-content .content-wrapper {
        opacity: 1;
        box-shadow: none;
    }

    .no-js .cd-slider-content::after {
        opacity: 0;
        visibility: hidden;
    }

    .no-js .cd-nav-trigger {
        display: none;
    }

    .no-js .cd-slideshow-nav {
        position: static;
    }

    .no-js #icon-keyboard {
        display: none;
    }

    .no-js .cd-slideshow-nav .cd-nav-items {
        position: static;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }

    .no-js .cd-slideshow-nav .cd-nav-items {
        height: auto;
        position: absolute;
    }

    .no-js .sub-nav {
        display: none;
    }

    /* GRID */
    .twelve {
        width: 100%;
    }

    .eleven {
        width: 91.53%;
    }

    .ten {
        width: 83.06%;
    }

    .nine {
        width: 74.6%;
    }

    .eight {
        width: 66.13%;
    }

    .seven {
        width: 57.66%;
    }

    .six {
        width: 49.2%;
    }

    .five {
        width: 40.73%;
    }

    .four {
        width: 32.26%;
    }

    .three {
        width: 23.8%;
    }

    .two {
        width: 15.33%;
    }

    .one {
        width: 6.866%;
    }

    /* COLUMNS */
    .col {
        display: block;
        float: left;
        margin: 1% 0 1% 1.6%;
    }

    .col:first-of-type {
        margin-left: 0;
    }

    .container {
        width: 100%;
        max-width: 1200px;
        margin: auto;
        position: relative;
    }

    /* CLEARFIX */
    .cf:before,
    .cf:after {
        content: " ";
        display: table;
    }

    .cf:after {
        clear: both;
    }

    .cf {
        zoom: 1;
    }

    .row {
        padding: 5px 0 18px;
        text-align: left;
    }

    /* FORM */
    .form-wrapper {
        background-color: #000;
        color: #000;
        margin: 0px 0;
        text-align: center;
        width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0px 5% 10px;
    }

    .form-wrapper h2 {
        text-align: center;
    }

    input:focus {
        outline: none;
    }

    /* TEXT INPUTS */
    .text-input {
        width: 100%;
        border: none;
        border-bottom: 7px solid #fff;
        color: #fff;
        margin: 0;
        padding: 10px 45px;
        font-family: "Scandia";
        font-size: 13px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        font-size: 25px;
        background-color: #000;
    }


/* -------------------------------- 

battons 

-------------------------------- */
    .nav-example {
        justify-content: center;
    }

    .nav-example .keys {
        position: absolute;
        transform: scale(0.7, 0.7);
    }


    .nav-example [class^="key-"] {
        display: block;
        float: left;
        width: 60px;
        height: 26px;
        margin: 1px;
        position: relative;
    }

    .nav-example [class^="key-"]:after {
        content: "";
        width: 0;
        height: 0;
        border: 8px solid transparent;
        font-size: 0;
        position: absolute;
    }

    .nav-example .key-up:after,
    .nav-example .key-down:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-example .key-left:after,
    .nav-example .key-right:after {
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-example .key-up {
        float: none;
        margin: 0 auto 1px;
        animation-delay: 2500ms;
        border-radius: 5px;
        background-color: #000;
    }

    .nav-example .key-up:after {
        border-bottom-color: #1b1b1b;
        top: 0px;
        animation: move-key-top 2500ms ease infinite;
    }

    .nav-example .key-left {
        animation-delay: 575ms;
        border-radius: 5px;
        background-color: #000;
    }

    .nav-example .key-left:after {
        border-right-color: #1b1b1b;
        left: 23px;
        animation: move-key-left 2500ms ease infinite;
    }

    .nav-example .key-right {
        animation-delay: 575ms;
        border-radius: 5px;
        background-color: #000;
    }

    .nav-example .key-right:after {
        border-left-color: #1b1b1b;
        right: 23px;
        animation: move-key-right 2500ms ease infinite;
    }

    .nav-example .key-down {
        animation-delay: 500ms;
        border-radius: 5px;
        background-color: #000;
    }

    .nav-example .key-down:after {
        border-top-color: #1b1b1b;
        bottom: 0px;
        animation: move-key-down 2500ms ease infinite;
    }

    @keyframes move-key-top {
        0% {
            border-bottom-color: #fff;
        }

        25% {
            border-bottom-color: #BFBFBF;
        }
    }

    @keyframes move-key-right {
        25% {
            border-left-color: #fff;
        }

        50% {
            border-left-color: #BFBFBF;
        }
    }

    @keyframes move-key-down {
        50% {
            border-top-color: #fff;
        }

        75% {
            border-top-color: #BEFF00;
        }
    }

    @keyframes move-key-left {
        70% {
            border-right-color: #fff;
        }

        95% {
            border-right-color: #BFBFBF;
        }
    }


/* -------------------------------- 

navs 

-------------------------------- */


a {
    text-decoration: none;
    display: block;
  }
  

span {
  display: block;
  align-items: flex-start;
}

.portfolio {
  color:white;
  font-size: 0.5rem;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 5rem;
  height: 100%;
  font-family: "SweetSansPro-Regular";
}

@media screen and (max-width: 600px) {
    .portfolio {
        padding-top: 0rem;
    }
  }

.portfolio-title {
  font-weight: 600;
  font-size: calc(2rem * var(--scale));
  position: relative;
  font-family: "SweetSansPro-Regular";

}

.portfolio__list-works {
  font-weight: 300;
  display: flex;
  flex-direction: column;
  align-items: baseline;
}

.portfolio__list-item {
  position: relative;
  margin-top: 1rem;
}

.portfolio__list-item::before, .title-work, .subtitle-work{
  pointer-events: none;
}

.portfolio__list-item::before {
  content: attr(data-number);
  position: absolute;
  top: calc(50% - 0.6rem / 2);
  left: -2rem;
  font-size: 0.6rem;
}

.title-work,
.subtitle-work {
  font-family: "SweetSansPro-Regular";
  text-transform: capitalize;
  text-align: left;
}

.title-work,
.subtitle-work,
.portfolio__list-item::before{
  transition-duration: 0.5s;
  transition-property: transform, opacity;
  text-align: left;
}

.title-work {
  font-weight: 500;
  font-size: calc(1.5rem * var(--scale));
  font-family: "Joyride-Round";

}

@media screen and (max-width: 600px) {
    .title-work {
        font-size: 0.19em;
        overflow: hidden;
    }
  }


.subtitle-work {
  margin-top: 0.5rem;
  font-size: calc(0.8rem * var(--scale));
  transition-delay: 0.15s;
  letter-spacing: normal;
  text-align: left;

}

.portfolio__list-item:hover .title-work,
.portfolio__list-item:hover .subtitle-work {
  opacity: 1;
  transform: translatex(10px);
}

.portfolio__list-item:hover::before {
  opacity: 0;
  transform: translatex(20px);
}

#wrap-texture {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#canvas {
  /* make the canvas wrapper fits the document */
  position: absolute;
  width: 100%;
  height: 100vh;
}

.plane {
  /* define the size of your plane */
  width: 100%;
  min-height: 100%;
  z-index: 100;
}

.plane img {
  
  /* hide the img element */
  display: none;
}

@media screen and (min-width: 20em) {
  :root {
    --scale: 1.1;
  }
}