
@import url('https://fonts.googleapis.com/css?family=Poppins:wght@300;400;700;900');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700;800;900');

:root {
    --navbar-bg-color: hsl(0, 0%, 5%);
    --navbar-text-color: hsl(0, 0%, 85%);
    --navbar-text-color-focus: white;
    --navbar-bg-contrast: hsl(0, 0%, 25%);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /*scroll-behavior: smooth; */
}
html {
    overflow: hidden;
}


.sources
{
    /*background-color: rgba(0, 0, 0, 0.1);
    border-left: 5px solid rgba(0, 0, 0, 0.2);
    padding: 1em;
    */
    color: #555;
    font-size: 0.9em;
    
    margin-top: 1em;
    
}


body {
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    perspective: 1px;
    -webkit-perspective: 1px;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    line-height: 1.6;
    text-align: justify;
    hyphens: auto;
    overflow-y: hidden;
    background: #282729;
}

h1 {
    font-size: 3.6em;
    letter-spacing: 0.01em;
    font-family:'Poppins'; 
    color:whitesmoke;
    font-weight: 900;
    color: rgba(20, 20, 20, 0.5);
}

h2 {
    padding-bottom: 1vh;
    letter-spacing: 0.01em;
    font-weight: 700;
    font-family: "Montserrat";
    font-size: 1.5em;
    opacity: 0.9;
}

h3 {
    padding-bottom: 1vh;
    font-weight: 700;
    
    font-family: "Montserrat";
    font-size: 1.3em;
    opacity: 0.8;
}

a {
    text-decoration: none;

    color: var(--link, --color-black);

    /*color:#42a86c;*/
    font-weight:600;
}

a:hover {
    color:#4fc37f;
}


main {
    min-height: calc(100vh - 10vh);
    display: flex;
    flex-direction: column;
}

footer {
    min-height: 10vh;
    background-color: #262626;
}

.container {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
    margin-left: auto;
    margin-right: auto;
    z-index: 0;

}

.cont {
    height: 100vh;
    background-image: linear-gradient(90deg, #181818 0%, #262627 15%, #262627 85%, #181818 100%);
    overflow: hidden;
    overflow-y: auto;
    perspective: 3px;
    z-index: -1;
}


section {
    background-size: cover;
    color: #f8f8f8;
    background-color: var(--bg, --color-black);
    position: relative;
    display: grid;
    align-items: center;
    justify-content: center;
  /*  z-index: -1; */

}

.panel {
    border-top: 1px;
    border-top-style: none;
    border-top-color: #00000080;

    border-bottom: 1px;
    border-bottom-style: none;
    border-bottom-color: #ffffff60;


    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);

}

section.image {
    background-position: center center;
    transform: translateZ(-0.90px) scale(1.31);
    background-size: cover;
    z-index: -2;
    height: 15vh;
}

section.ribbon {
    background-position: center center;
    transform: translateZ(-0.35px) scale(1.5);
    background-size: cover;
    z-index: -2;
    margin-bottom: -1rem;
    margin-top: -1rem;
}
.text {
    color:black;
}


#logo {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    height: -200px;
    /* position: fixed; */
    /* top: -4vh; */
    /* left: 32vh; */
    color: whitesmoke;
    font-size: 18rem;
    z-index: 33;
    font-weight: 600;
    letter-spacing: 0.06rem;

}



.heading {
    
    padding: 0.9rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: solid #b0b0b04d 1px;
    background-color: rgb(28 28 30 / 75%);
    border-bottom: solid rgba(0, 0, 0, 0.4) 1px;
    text-align: center;

    padding-top: var(--top-offset, 0.9rem);
    clip-path: polygon(
    0 var(--left-down, 0%), /* left top */
    100% var(--right-down, 0%), /* right top */ 
    100% 100%, /* right bottom */
    0 100% /* left bottom */
    );

}

.section-bottom
{
    padding-top: 1rem; 
    border:none; 
    /*opacity:0.9; */
    height: 7vh;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);

border-bottom: solid #00000096 1px;
    

}


.color-bar {
    margin-top: -40px;
    height: 40px;
    background-color: blueviolet;
    
    color:white;


}

p {
    line-height: 1.55;
}

/* PARALLAX */

.parallax-video
{
    width:100%;
}

div.parallax {

    min-width: 1500px; 
    max-width:2600px; 
    width: 120%;
    height: 0%;
    transform: translateX(-20px) translateZ(-0.2px) translateY(-100px);
    margin: 0 auto;
    display:block;
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    z-index: -1;
}

div.parallax:after {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 0;
    content: "";
    transform: translateZ(-1px) scale(2);
    -webkit-transform: translateZ(-1px) scale(2);
}

div.content-outer {
    width: 100%;
    background-color: white;
    perspective: 2px;
    -webkit-perspective: 2px;
}

div.content-inner {
    width: 1200px;
    font-family: "Arial";
    font-size: 13pt;
    color: #333;
    line-height: 1.40em;
    padding: 50px 20px;
    margin: 0px auto;
    display: block;
}


#parallax-vid {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
  }

.centred {
    text-align: center;
}

/* graph */

/*
#vid {
    margin:7rem;
    margin-top: 5rem;

}

#vid {
    width: 900px;
    height: 550px;
    }

@media screen and (max-width: 600px) {
    #vid {
    width: 550px;
    height: 300px;

    }

}
*/

/*GRID  */

.button-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(20rem, 20rem));
    grid-template-rows: repeat(1, minmax(10rem, 0rem));
    grid-column-gap: 10rem;
    grid-row-gap: 4rem;
    margin: 2rem;
    margin-left: 12rem;
    margin-right: 12rem;
    margin-top: 6rem;
    margin-bottom: 6rem;
    padding: 0vh 0 0rem 0;
    }

    @media screen and (max-width: 950px) {
        .button-grid {
            grid-template-columns: repeat(2, minmax(20rem, 30rem));
            grid-template-rows: repeat(1, minmax(20rem, 20rem));
            margin-bottom: 0;

      }
      #vid {
        width: 512px;
        height: 315px;
        }

    }

    @media screen and (max-width: 850px) {
        .button-grid {
            grid-template-columns: repeat(1, minmax(20rem, 20rem));
            grid-template-rows: repeat(2, minmax(1rem, 15rem));
            margin-bottom: 4rem;
      }

    }

.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(20rem, 20rem));
    grid-template-rows: repeat(2, minmax(20rem, 20rem));
    grid-column-gap: 40px;
    grid-row-gap: 32px;
    margin: 2vh;
    padding: 0vh 0 8vh 0 ;
    }

    @media screen and (max-width: 1090px) {
        .grid {
            grid-template-columns: repeat(2, minmax(20rem, 20rem));
            grid-template-rows: repeat(3, minmax(20rem, 20rem));
      }
      #vid {
        width: 512px;
        height: 315px;
        }

    }

    @media screen and (max-width: 800px) {
        .grid {
            grid-template-columns: repeat(1, minmax(20rem, 10rem));
            grid-template-rows: repeat(6, minmax(0rem, 20rem));
      }

    }

.testimonial-grid {
    display: grid;
    max-width: 1000px;
    grid-template-columns: repeat(2, 50vh);
    grid-column-gap: 40px;
    grid-row-gap: 20px;
    margin: 2vh;
    padding: 0vh 0 8vh 0 ;
    }

    @media screen and (max-width: 950px) {
        .testimonial-grid {
            grid-template-columns: repeat(1, minmax(20rem, 30vh));
            grid-template-rows: repeat(2, minmax(30vh, 30vh));
      }
    }

    @media screen and (max-width: 600px) {
        .testimonial-grid {
            grid-template-columns: repeat(1, minmax(38vh, 20vh));
            grid-template-rows: repeat(2, minmax(0vh, 38vh));
      }

    }

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(31vh, 30vh));
    grid-template-rows: repeat(1, minmax(31vh, 30vh));
    grid-column-gap: 40px;
    grid-row-gap: 20px;
    margin: 2vh;
    padding: 8vh 0 8vh 0 ;
    }

    @media screen and (max-width: 950px) {
        .resource-grid {
            grid-template-columns: repeat(1, minmax(30vh, 30vh));
            grid-template-rows: repeat(3, minmax(30vh, 30vh));
      }
      #vid {
        width: 512px;
        height: 315px;
        }

    }

    @media screen and (max-width: 600px) {
        .resource-grid {
            grid-template-columns: repeat(1, minmax(38vh, 20vh));
            grid-template-rows: repeat(3, minmax(0vh, 38vh));
      }

    }

.icon {
    text-align:center;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(40vh, 50vh));
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 50px;
    grid-row-gap: 30px;
    
    }

    @media screen and (max-width: 1060px) {
        .video-grid {
            grid-template-columns: repeat(1, minmax(38vh, 60vh));
            grid-template-rows: 1fr 1.6fr 1fr 1.6fr 1fr 1.6fr;
            grid-row-gap: 2vh;
            padding: 6vh 0 6vh 0;
        }
    }

    @media screen and (max-width: 800px) {
        .video-grid {
            grid-template-columns: repeat(1, minmax(38vh, 60vh));
            grid-template-rows: 1.3fr 2.1fr 1.3fr 2.1fr 1.3fr 2fr;
            grid-row-gap: 4vh;
            padding: 5vh 0 5vh 0;
        }
    }

.feature-row
{
    margin: 0 auto;
    margin-top: 1em;
    margin-bottom: 1em;
    max-width: 1900px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(30rem, 20rem));
    max-width: 80rem;
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 50px;
    grid-row-gap: 67px;
    font-size: 1.1em;

    padding: 6rem 0 6rem 0;
    }

    @media screen and (max-width: 1060px) {
        .feature-grid {
            grid-template-columns: repeat(1, minmax(20rem, 40rem));
            grid-template-rows: 2fr;
            grid-row-gap: 4rem;
            padding: 6vh 0 6vh 0;
        }
    }

    @media screen and (max-width: 800px) {
        .feature-grid {
            grid-template-columns: repeat(1, minmax(12rem, 40rem));
            grid-template-rows: 1fr;
            grid-row-gap: 5vh;
            padding: 4rem 2rem 4rem 2rem;
            padding-top: 6rem;
        }
    }


.community-grid {
    display: grid;
    padding:2rem 2rem 4rem 2rem;
    grid-template-columns: repeat(3, minmax(25vh, 50vh));
    grid-template-rows: repeat(1, 100%);
    grid-column-gap: 3vh;
    grid-row-gap: 10vh;
    max-width: 120vh;
    margin: 3rem auto;
    margin-bottom:2rem;

    }

    @media screen and (max-width: 800px) {
        .community-grid {
            grid-template-columns: repeat(1, minmax(20rem, 20rem));
            grid-template-rows: repeat(3, minmax(0vh, 27rem));
            margin-left: auto;
            margin-right: auto;
            display: block;
        }
        .community-inset {
            margin-bottom: 2rem;
        }
    }




.community-inset
{
    background-color: #222;
    padding: 3rem;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.showreel-grid {
    display: grid;
    grid-template-columns:1fr minmax(12rem, 38rem);
    grid-template-rows: repeat(6, minmax(10rem, 20rem));
    grid-column-gap: 4rem;
    grid-row-gap: 6rem;
    margin: 2vh;
    margin-top:12rem;
    max-width: 60rem;
    margin-bottom: 12rem;
    overflow: hidden;
    }


    @media screen and (max-width: 800px) {
        .showreel-grid {
            justify-items: center;
            /* grid-row-gap: 2vh; */
            grid-template-columns: 1fr;
            grid-template-rows: 1fr;
        }
    }



.text-container
{
    max-width: 1000px;

}

.about-grid {
    display: grid;
    grid-template-columns: 1fr minmax(25vh, 80vh);
    grid-template-rows: repeat(2, minmax(20vh, 10vh));
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-items: center;
    margin: 2vh;
    overflow: hidden;
    padding: 8vh 0 8vh 0;
    }


    @media screen and (max-width: 800px) {
        .about-grid {
            justify-items:center;
            grid-row-gap: 2vh;
            grid-template-columns: 1fr;
            grid-template-rows: repeat(2, 0.7fr 1fr);
        }
    }

.license-icon
{
    display: inline;
    max-height: 2em;
    vertical-align: bottom;
    margin-right: 0.5em;
}

#license-style {
    padding: 3rem 2rem 3rem 2rem;
    margin: 0 auto;
    max-width:52rem;
}
#license-style > p {
    padding-left:1vh;
}



.license-table {
 margin: 2rem 0 2rem 0; 
 padding-inline: initial;
}


.license-row {
    padding: 2rem;
    margin: 2rem 1rem 2rem 1em;
    border-radius: 15px;
    background-color: #333;
    box-shadow: inset 0 0 5px #000;
}

.license-table ul {
    margin-left: 20px;
    color: #aaa;
}

.license-table h3 {
    margin-left: 20px;
    margin-bottom: 1em;
    color: #ddd;

}



@media screen and (max-width: 800px) {
    .license-row {
        margin: 0;
        margin-bottom: 1rem;

    }
}

.license-table small {
    color: #888;
}

@media screen and (max-width: 700px) {
        #license-style {
            justify-items:center;
            max-width: 45vh;
            width:auto;

    }
}



table.center {
    margin-left:auto; 
    margin-right:auto;
  }


/* STICKY */
.sticky-title {
    height: 0px;
}

.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2;
}



.sticky-title-container {
    position: relative;
    padding-top: 80px;
}

.text-hider {
    background-color: #c8c8bc;
    position: absolute;
    top: 0;

    bottom: 20px;
    right: 0;
    width: calc(100% );
}

.section-break {
    margin: auto;
    margin-bottom: 60px;
    margin-top: 40px;
    text-align: center;
    width: 100%;
    max-width: 80vw;
}



 .row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }
  
  .column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;

    flex: 1;
    text-align: left;
  }


  @media screen and (min-width: 800px) {
    .column {
      flex: 1
    }
  }

  @media screen and (max-width: 800px) {
    .flex-item > .column {
      flex: auto
    }
  }


/* LINKED NAVBAR */

.section-jump {
    position: relative;
}

#download {
    position: absolute;
    top: -110px;
    width: 100%;
}

#features {
    position: absolute;
    top: -180px;
    width: 100%;
}

#resources {
    position: absolute;
    top: -110px;
    width: 100%;
}
#showcase {
    position: absolute;
    top: -180px;
    width: 100%;
}
#license {
    position: absolute;
    top: -55px;
    width: 100%;
}
#about-it {
    position: absolute;
    top: -180px;
    width: 100%;
}

#top {
    position: absolute;
    top: -180px;
    width: 100%;
}

/* BUTTON */
    
  /*Button One*/

.wrap {
    margin: 8vh auto;
    display: inline-block;
}

.text-left
{
    text-align: left;
    margin: 2vh;
    padding-top: 3vh;
}

.button-one {
display: inline-block;
font-family: "Poppins";
cursor: pointer;
font-size:22px;
padding:18px 50px;
padding-top: 18px;
margin-bottom: 30px;
color:#fbfbfb;
outline: none;
background-color: var(--link, --color-black);
border: none;
border-radius:5px;
box-shadow: 0px 3px 2px rgb(0 0 0 / 54%);

}

.button-one:hover{
background-color: var(--link, --color-black);
box-shadow: 0px 3px 3px rgba(0,0,0,0.58);
color: #fff;
transition: .04s
}

.button-one:active {
background-color: var(--link, --color-black);
color: #fff;
box-shadow: 0px 2px 2px rgba(0,0,0,0.4);
transition: .04s
}



#navbar {
    --navbar-height: 64px;
    position: fixed;
    height: var(--navbar-height);
    background-color: var(--navbar-bg-color);
    left: 0;
    right: 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
    z-index:1;
    margin-right:1rem;
}
@media screen and (max-width: 800px) {
    #navbar {
        margin-right: 0;
    }
  }

.navbar-container {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
}

.home-link,
.navbar-link {
    color: var(--navbar-text-color);
    transition: color 0.2s ease-in-out;
    text-decoration: none;
    font-size: 1.21rem;
    display: flex;
    font-weight: 400;
    align-items: center;
    transition: background-color 0.2s ease-in-out,
        color 0.2s ease-in-out;
}

.home-link:focus,
.home-link:hover {
    color: var(--navbar-text-color-focus);
}

.navbar-link {
    justify-content: center;
    width: 100%;
    padding: 0.4em 0.8em;
    border-radius: 5px;
}

.navbar-link:focus,
.navbar-link:hover {
    color: var(--navbar-text-color-focus);
    background-color: var(--navbar-bg-contrast);
}


.navbar-logo {
font-size: 1.77rem;
font-weight: 600;
letter-spacing: 0.06rem;
}


.navbar-toggle {
    cursor: pointer;
    border: none;
    background-color: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.icon-bar {
    display: block;
    width: 25px;
    height: 4px;
    margin: 2px;
    transition: background-color 0.2s ease-in-out,
        transform 0.2s ease-in-out,
        opacity 0.2s ease-in-out;
    background-color: var(--navbar-text-color);
}

.navbar-toggle:focus .icon-bar,
.navbar-toggle:hover .icon-bar {
    background-color: var(--navbar-text-color-focus);
}


#navbar.opened .navbar-toggle .icon-bar:first-child,
#navbar.opened .navbar-toggle .icon-bar:last-child {
    position: absolute;
    margin: 0;
    width: 30px;
}

#navbar.opened .navbar-toggle .icon-bar:first-child {
    transform: rotate(45deg);
}

#navbar.opened .navbar-toggle .icon-bar:nth-child(2) {
    opacity: 0;
}

#navbar.opened .navbar-toggle .icon-bar:last-child {
    transform: rotate(-45deg);
}

.navbar-menu {
    position: fixed;
    top: var(--navbar-height);
    bottom: 0;
    transition: opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        left 0.2s ease-in-out,
        right 0.2s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.navbar-menu.sidebar,
.navbar-menu.sidebar.left {
    left: -1000px;
    right: 0;
}

.navbar-menu.sidebar.right {
    right: -1000px;
    left: 0;
}

.navbar-menu.detached,
.navbar-menu.attached {
    left: 0;
    right: 0;
}

#navbar.opened .navbar-menu {
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 1;
    visibility: visible;
}

#navbar.opened .navbar-menu.sidebar.left {
    left: 0;
}

#navbar.opened .navbar-menu.sidebar.right {
    right: 0;
}

.navbar-links {
    list-style-type: none;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    background-color: var(--navbar-bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#navbar.opened .navbar-links {
    padding: 1em;
    max-height: none;
    margin-right: 1rem;
}

.sidebar .navbar-links {
    top: 0;
    bottom: 0;
}

.left.sidebar .navbar-links {
    left: 0;
    right: unset;
    box-shadow: 5px 20px 20px rgba(0, 0, 0, 0.3);
}

.right.sidebar .navbar-links {
    right: 0;
    left: unset;
    box-shadow: -5px 20px 20px rgba(0, 0, 0, 0.3);
}

.detached .navbar-links {
    left: 0;
    right: 0;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.3);
}

.attached .navbar-links {
    left: 0;
    right: 0;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.3);
}

.navbar-item {
    margin: 0.4em;
    width: 100%;
}

@media screen and (min-width: 850px) {
    .navbar-toggle {
        display: none;
    }

    #navbar .navbar-menu,
    #navbar.opened .navbar-menu {
        visibility: visible;
        opacity: 1;
        position: static;
        display: block;
        height: 100%;
    }

    #navbar .navbar-links,
    #navbar.opened .navbar-links {
        margin: 0;
        padding: 0;
        box-shadow: none;
        position: static;
        flex-direction: row;
        list-style-type: none;
        max-height: max-content;
        width: 100%;
        height: 100%;
    }

    #navbar .navbar-link:last-child {
        margin-right: 0;
    }
    .einruck {
        margin-left:2rem;
    }
}







#options {
    display: flex;
    flex-direction: column;
}


.tg  {border-collapse:collapse;border-spacing:0;}
.tg td{border-color:black;border-style:solid;border-width:1px;font-family:Arial, sans-serif;font-size:14px;
  overflow:hidden;padding:10px 5px;word-break:normal;}
.tg th{border-color:black;border-style:solid;border-width:1px;font-family:Arial, sans-serif;font-size:14px;
  font-weight:normal;overflow:hidden;padding:10px 5px;word-break:normal;}
.tg .tg-lboi{border-color:inherit;text-align:left;vertical-align:middle}
.tg .tg-0pky{border-color:inherit;text-align:left;vertical-align:top}



  
  .row::before,
  .row::after {
    display: table;
    content: " ";
    clear: both;
  }
  
  .one,
  .one-third,
  .two-thirds,
  .one-fourth,
  .half {
    width: 100%;
  }
  /* 
  * Any styling that should be applied to screen widths larger
  * than a mobile device: tablet, laptop, desktop, etc. 
  */
  
  @media only screen and (min-width: 800px) {
    .one {
      width: 100%;
    }
    .half {
      width: calc(100% / 2);
    }
    .one-third {
      width: calc(100% / 3);
    }
    .one-fourth {
      width: calc(100% / 4);
    }
    .two-thirds {
      width: calc(100% / 3 * 2);
    }
    .column {
      float: left;
    }
  }
  /* Styling */
  

  /** LIGHTBOX MARKUP **/
  #img1{
    transition: 1s
  }
  .enlarge{
    width:auto;
    height:auto;
  }

  .bggrid
  {
    background-color: var(--bg, --color-black);
    

    
    top: 0;right: 0;bottom: 261px;left: 0; 
     
    background-image: linear-gradient(rgba(128, 128, 128, 0.1) 1px, transparent 2px), linear-gradient(90deg, rgba(128, 128, 128, 0.1) 1px, transparent 2px), linear-gradient(rgba(128, 128, 128, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(128, 128, 128, 0.05) 1px, transparent 1px);
    background-size: 100px 100px, 100px 100px, 10px 10px, 10px 10px;
    background-position:-2px -2px, -2px -2px, -1px -1px, -1px -1px;
  }

.bggradient
  {
    background-color: var(--bg, --color-black);
     
    background-image: linear-gradient(rgba(255,255,255,0.05) 50%, transparent 100%);
  }

  .bggradientside
  {
    background-color: var(--bg, --color-black);
     
    background-image: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.05) 50%, transparent 100%);
  }

  .bgnoise
  {

    background: var(--bg, --color-black);
    
    background-image: url(noise20.png);
    background-size: initial;
    background-blend-mode: soft-light;
  }

.screenshot
{
    max-width: 100%; 
    height: auto;
    border-radius:5px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
}

.rotate-left
{
    transform:rotate(0.5deg);    
}

.rotate-right
{
    transform:rotate(-0.5deg);
}



.small-button
{
    margin-left: -2em;
    scale: 0.7;
}

.button-img
{
    height: 2em;
    margin-left: -30px;
    margin-right: 20px;
    vertical-align: bottom;
}

.button-img-shop
{
    height: 2em;
    margin-left: -30px;
    margin-right: 20px;
    vertical-align: bottom;
}

.grey
{
    color: #1e1e1e;
}
.grey b
{
    color: #222;
}

.open-source-img
{
    border-radius: 10px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
}

.deploy-grid
{
    max-width: 60vh;
    padding-top:2vh;
}

.deploy-grid ul
{
    margin-top:1em;
    margin-bottom:1em;
    list-style: inside;
    text-align: left;
}

.deploy-grid li
{
    color:#333;
}

.youtube-thumb
{
    border-radius: 5px;
    max-width: 33%;
    margin: 20px;
    box-shadow: 0px 0px 4px rgb(0 0 0 / 54%);
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}



.flex-container{
  display:flex;
  flex-direction:column;
  align-items: center;
  justify-content: center;
  max-width: 60rem;
}

.flex-container > span{
  flex-grow:1; 
}

.flex-container > .flex-item{
  flex-grow:0;
}
.flex-container > .flex-item > .column > p{
    padding-top:0.4rem;
  }
  

.flex-container > .flex-item > .column{
    padding:1.5rem;
  }



@media screen and (max-width: 800px) {
.flex-item > .column > p {
    max-width: auto;
}
    #showcase-clapper {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }


}




.graph-svg
{
    width:auto; margin-top:2vh; margin-bottom:3vh;
    padding: 0 2rem 0 2rem;
}

hr
{
    border: 1px solid var(--hrcolor, black);
    margin-top: 1em;
    margin-bottom: 1em;
}

.testimonial
{
    color: #eee;
    text-align: left;
    margin-left: 20px;
    margin-right: 20px;
}

.testimonial-quote
{

    background-color: rgba(255,255,255,0.05);
    color: #bbb;
    text-align: left;
    font-style: italic;
    
    padding: 22px;
    font-size: 0.95em;
    

    margin-top: -100px;
    padding-top: 100px;
    border-radius: 20px;
}

.testimonial-header
{
    text-align: left;
    width: 100%;
    display: flex;
    margin-bottom: 10px;
}

.testimonial-header span
{
    font-size: 1.2em;

}

.testimonial-author
{
    margin-top: 20px;
}

.testimonial img
{
    margin-right: 20px;
    border-radius: 50%;
    border: 10px solid #444;
    box-shadow: 0 0 10px rgba(0,0,0,.5);
                    
}

.about-content
{
    font-size: 1.1em;
    max-width: 60rem;
    padding:2rem;
    text-align: left;
    margin-top: 4rem;
}

.email
{
    height: 30px;
    padding: 10px;
    margin: 30px;
    min-width: 50%;
}

.bio
{
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 3px;

    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

.header-img
{
    max-width: 100%;
    margin: 0 auto;
}


#fullpage {
    display: none;
    position: absolute;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-color: black;
  }

  .faq {
    width: 100%;
    
    margin: 0 auto;
    margin-top: 2em;
    margin-bottom: 2em;
  }
  
  .question {
    color:#EEE;
    font-weight: normal;
    position: relative;
    background: rgba(0,0,0,0.4);
    border-radius: 4px;
    margin: 0 auto;
    opacity: .9;
    padding: 10px 10px 10px 50px;
    display: block;
    cursor: pointer;
  }
  
  .answers {
    
    padding: 0px 15px;
    padding-left:3.2em;
    color:#CCC;
    margin: 0 0 7px 0;
    height: 0;
    overflow: hidden;
    z-index: -1;
    opacity: 0;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
  }
  
  .questions:checked ~ .answers{
    height: auto;
    opacity: 1;
    padding: 15px;
    max-width: 48rem;
    padding-left: 3.2em;
    color:#CCC;

  }
  
  .plus {
    position: absolute;
    margin-left: 10px;
    z-index: 5;
    font-size: 2.5em;
    line-height: 100%;
    -webkit-user-select: none;    
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
  }
  
  .questions:checked ~ .plus {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    
  }
  
  .questions {
    display: none;
    padding-left: 3.2em;
  }