@font-face {
    font-family: 'New Edge';
    src:  url('NewEdgeTM-Regular.ttf') format('truetype');
}

* {
 	margin: 0;
 	padding: 0;
 	box-sizing: border-box;
    font-family: 'New Edge', sans-serif;
    color:  var(--fg);
    font-size: 20px;

 }

body {
    background: var(--bg);
}
a {
    color:  var(--fg);
}
 .menu {
    display: flex;
    position: fixed;
    top: -80px;
    width: 100%;
    background: transparent;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    transition: top 0.5s;
 }

 .menu.visible {
    top: 0px;
    transition: top 0.5s;

    /*top: 0;*/
 }

.menu-items {
    display: flex;
    flex-direction: row;

}
.menu-item  {
    padding: calc(var(--p) / 2) var(--p);
}

.menu + * {
    /*margin-top: 40px ; */
}

.logo {
    width: 250px;
    max-width: 100%;
    padding: 5px;
}

.block {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    /*background: red;*/
}
.vertical {
    flex-direction: column;
}
svg.shape {
    width: 100vmin;
    height: 100vmin;
    animation: 10s rot linear infinite ;
}
svg.shape:hover {
    animation-play-state: paused;
}
.metallic-strip {
    width: 500px;
    height: 800px;
    position: absolute;
    border-radius: 500px;
    background:  radial-gradient(circle at center, #aaa, #ddd,  #ddd, #ccc, #ddd, #aaa);
}
.fold {
    position: relative;
    display: block;
    /*transform: skewX(20deg);*/
    /*transform : translate(100% 0);*/

    z-index: 999;
}

.svg-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    margin: 0 auto;
    pointer-events: none;
}
.text {
    position: relative;
    display: block;
    clear: both;

}

.text, .text p {
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--p);
}
.title {
    padding: var(--p);
    font-size: 1.5vw;
    text-transform: uppercase;
    text-align: center;
}

.portfolio-link {
    width: 100%;
    position: relative;
    display: block;
    text-align: center;
    padding: var(--p);

}


@keyframes rot {
    from {
        transform: rotate(0deg)  scaleX(1);

    }
    50% {
        transform: rotate(180deg)  scaleX(0.5);

    }
    to {
        transform: rotate(360deg)  scaleX(1);

    }
}

.f-top-right {
    transform-origin: 95% 25%;

}

.f-bottom-right {
    transform-origin: 95% 75%;

}


.images {
    max-height: 100vh;
    width: 100%;
    display: block;
    position: relative;
    float: left;
    clear: both;
}
.slider-image {
    display: block;
    max-height: 100vh;
    width: auto;
    height: auto;
    position: relative;

}
.detail-image {
    mix-blend-mode: multiply;
    opacity: 0.9;
    position: relative;
    display: block;
    margin: 0 auto;
    clear: both;
    max-height: 90vh;
    height: auto;
    max-width: 100%;
}
.logo-wall {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: space-around;
}
.logos {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: space-around;
}
