#bg {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  opacity: 0.4;
}
#bg * {
  margin: 0;
  padding: 0;
}

.glowing {
  position: relative;
  min-width: 700px;
  height: 550px;
  margin: -150px;
  transform-origin: right;
  animation: colorChange 5s linear infinite;
}

.glowing:nth-child(even) {
  transform-origin: left;
}

@keyframes colorChange {
  0% {
    filter: hue-rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
    transform: rotate(360deg);
  }
}
.glowing span {
  position: absolute;
  top: calc(80px * var(--i));
  left: calc(80px * var(--i));
  bottom: calc(80px * var(--i));
  right: calc(80px * var(--i));
}

.glowing span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  width: 15px;
  height: 15px;
  background: #f00;
  border-radius: 50%;
}

.glowing span:nth-child(3n+1)::before {
  background: rgb(134, 255, 0);
  box-shadow: 0 0 20px rgb(134, 255, 0), 0 0 40px rgb(134, 255, 0), 0 0 60px rgb(134, 255, 0), 0 0 80px rgb(134, 255, 0), 0 0 0 8px rgba(134, 255, 0, 0.1);
}

.glowing span:nth-child(3n+2)::before {
  background: rgb(255, 214, 0);
  box-shadow: 0 0 20px rgb(255, 214, 0), 0 0 40px rgb(255, 214, 0), 0 0 60px rgb(255, 214, 0), 0 0 80px rgb(255, 214, 0), 0 0 0 8px rgba(255, 214, 0, 0.1);
}

.glowing span:nth-child(3n+3)::before {
  background: rgb(0, 226, 255);
  box-shadow: 0 0 20px rgb(0, 226, 255), 0 0 40px rgb(0, 226, 255), 0 0 60px rgb(0, 226, 255), 0 0 80px rgb(0, 226, 255), 0 0 0 8px rgba(0, 226, 255, 0.1);
}

.glowing span:nth-child(3n+1) {
  animation: animate 10s alternate infinite;
}

.glowing span:nth-child(3n+2) {
  animation: animate-reverse 3s alternate infinite;
}

.glowing span:nth-child(3n+3) {
  animation: animate 8s alternate infinite;
}

@keyframes animate {
  0% {
    transform: rotate(180deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-reverse {
  0% {
    transform: rotate(360deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
* {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  color: #404040;
  padding: 0;
  margin: 0;
  text-decoration: none;
  border-width: 0;
}

section font {
  font-family: inherit;
  color: inherit;
  font-size: inherit;
}

html {
  min-height: 100%;
}

body {
  background: #eaeaea;
}

h1 {
  margin-bottom: 10px;
}

#logo {
  height: 50px;
}

section {
  max-width: 1700px;
  margin: 0 auto 60px auto;
  position: relative;
  box-sizing: border-box;
}

section.top {
  max-width: 2000px;
  overflow: hidden;
  margin-bottom: 70px;
  height: 100vh;
  position: relative;
  background: #fafafa;
}
section.top .topLeft {
  height: 100%;
  position: relative;
  padding: 40px 20px 20px 40px;
  box-sizing: border-box;
}
section.top .topLeft h2 {
  color: #333333;
  width: fit-content;
  max-width: calc(50% - 40px);
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -1px;
  font-size: 68px;
  line-height: 95%;
  margin: 0 0 40px 0;
}
section.top .topLeft #facts p {
  color: #606060;
  font-size: 28px;
  line-height: 40px;
}
section.top .topLeft #facts .toolTip {
  color: white;
  background: #00bde6;
  margin-left: 6px;
  padding: 0 12px;
  font-size: 18px;
  border-radius: 4px;
  position: relative;
  white-space: pre;
  vertical-align: top;
  height: 38px;
  line-height: 36px;
  display: inline-block;
  z-index: 1;
  transform: translateY(3px);
}
section.top .topLeft #facts .toolTip:before {
  display: block;
  position: absolute;
  top: 50%;
  left: 4px;
  transform: rotate(45deg) translate(-50%, -50%);
  content: "";
  border-radius: 2px;
  background: #00bde6;
  width: 20px;
  height: 20px;
  transform-origin: left top;
  z-index: -1;
}
section.top .topRight {
  background: #181818;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}
section.top video {
  /*
        //width: 600px;
        //border:1px solid #606060;
        display: block;//avoid cutting bottom border
       // box-shadow: 0 0 15px rgba(0, 0, 0, .4);
        //transform: perspective(50em) rotatex(10deg) rotatez(-2deg) translate(-50px, -10px);
        //transform: perspective(50em) rotatex(10deg) rotatez(-2deg) translate(50px, 0);
        transform: perspective(50em) rotatex(10deg) rotatez(-2deg);

  //https://stackoverflow.com/questions/6492027/css-transform-jagged-edges-in-chrome

  //try to make antialias
  //-webkit-backface-visibility: hidden;
     //outline: 1px solid transparent;
     -webkit-transform-style: preserve-3d;//THIS ONE, but try on parent, but makes it a blit blurred
     //will-change: transform;
     //-webkit-backface-visibility: initial;

        height:110vh;
        max-height: 800px;//860px;
        position: absolute;
        top:-30px;
        left:-40%;
        //filter: brightness(85%);
        */
  display: block;
  width: 50vw;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  backface-visibility: hidden;
}

#b_start, #b_start2 {
  text-align: center;
  padding: 18px 0 16px 0;
  font-size: 18px;
  width: 200px;
  background: #ff33cc;
  color: white;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  font-family: "oswald_regularregular";
  text-transform: uppercase;
  border-radius: 12px;
  letter-spacing: 0.6px;
  transition: background-color 0.2s;
}
#b_start:hover, #b_start2:hover {
  background: #282828;
}

#b_start {
  position: absolute;
  bottom: 80px;
  left: 40px;
}

#b_start2 {
  display: block;
  margin: 30px auto 50px auto;
}

.keyFeatures {
  text-align: left;
  max-width: 100%;
  margin: 0 0 30px 0;
  padding-left: 15px;
}
.keyFeatures li {
  list-style-type: disc;
  margin-bottom: 3px;
}

section.youtube {
  position: relative;
  padding: 0 40px;
  display: grid;
  grid-template-columns: auto fit-content(608px);
  grid-column-gap: 60px;
}
section.youtube h3 {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  margin: 0 0 10px 0;
  line-height: 30px;
  font-size: 32px;
  color: #303030;
}
section.youtube iframe {
  max-width: 100%;
  width: 608px;
  height: auto;
  aspect-ratio: 16/9;
}

.whatYouCanDo p {
  margin-bottom: 8px;
}
.whatYouCanDo a {
  text-decoration: underline;
}

section#features {
  display: grid;
  width: 840px;
  margin: 0 auto 80px auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
section#features > div {
  position: relative;
  border-radius: 8px;
  background: #fafafa;
  overflow: hidden;
}
section#features > div:nth-child(2), section#features > div:nth-child(5), section#features > div:nth-child(8) {
  transform: translateY(30px);
}
section#features video {
  width: 260px;
  height: 260px;
  display: block;
  margin-bottom: 10px;
}
section#features h3 {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  font-size: 20px;
  color: white;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.8) 90%);
  position: absolute;
  top: 215px;
  top: 210px;
  height: 50px;
  left: 0;
  right: 0;
  line-height: 50px;
  padding: 0 10px;
  letter-spacing: 0.2px;
  border-radius: 0 0 4px 4px;
}
section#features p {
  color: #808080;
  margin-top: -5px;
  margin: 12px 12px 18px 12px;
}

section#more {
  text-align: center;
  padding: 0 10px;
}
section#more > div {
  display: inline-grid;
  grid-template-columns: 700px 180px;
  grid-column-gap: 20px;
}
section#more > div div:nth-child(2) {
  padding-top: 40px;
  text-align: left;
}
section#more h3 {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  text-shadow: 0 2px 1px rgba(0, 0, 0, 0.2);
  margin: 0 0 20px 0;
  line-height: 30px;
  font-size: 32px;
  text-shadow: none;
  color: #303030;
}
section#more p {
  font-size: 18px;
  margin-bottom: 10px;
}
section#more li {
  list-style-type: disc;
  list-style-position: inside;
  opacity: 0.8;
}
section#more video {
  display: block;
  max-width: 100%;
  border-radius: 40px;
}
section#more .credits {
  font-size: 12px;
  color: #909090;
}
section#more .credits a {
  font-size: inherit;
  color: inherit;
  text-decoration: underline;
}

section#featured {
  text-align: center;
}
section#featured h3 {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  text-shadow: 0 2px 1px rgba(0, 0, 0, 0.2);
  margin: 0 0 20px 0;
  line-height: 30px;
  font-size: 32px;
  text-shadow: none;
  color: #303030;
}
section#featured > a {
  display: inline-block;
  margin: 5px 8px;
}
section#featured img {
  height: 54px;
  border-radius: 8px;
}

#languages {
  position: fixed;
  top: 0;
  right: 12px;
  z-index: 2;
  background: #fafafa;
  padding: 6px;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-size: 0;
  line-height: normal;
}
#languages a {
  margin-right: 10px;
  vertical-align: top;
}
#languages a.flag {
  display: inline-block;
  text-decoration: none;
  margin: 0;
  font-size: 0;
}
#languages a.flag:last-of-type img {
  margin-left: 6px;
}
#languages img {
  width: 32px;
}
#languages a:hover img {
  opacity: 0.7;
}

body > footer {
  z-index: 1;
  position: relative;
  min-height: 30px;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 5px;
  text-align: center;
  border-top: 1px solid #d0d0d0;
  background: rgba(255, 255, 255, 0.9);
  color: #404040;
  font-size: 13px;
  line-height: 26px;
}
body > footer > * {
  font-size: inherit;
}
body > footer a {
  color: inherit;
  text-decoration: underline;
}
body > footer a.twitter img, body > footer a.youtube img {
  vertical-align: middle;
  height: 20px;
}
body > footer .star {
  display: inline-block;
  padding: 0 3px;
  font-size: 15px;
  vertical-align: baseline;
  color: #dddddd;
}

@media screen and (min-height: 800px) {
  h1 {
    margin-bottom: 30px;
  }
  section.top .topLeft h2 {
    margin-bottom: 100px;
  }
  section.top .topLeft #facts p {
    line-height: 44px;
  }
  section.top .topLeft #facts .toolTip {
    transform: translateY(5px);
  }
  #b_start {
    bottom: 100px;
  }
}
@media screen and (max-width: 700px) {
  #languages {
    box-shadow: none;
    right: 5px;
  }
  section.top {
    height: auto;
    margin-bottom: 20px;
  }
  section.top .topLeft {
    padding: 20px;
    padding-top: 40px;
  }
  section.top .topLeft h2 {
    font-size: 50px;
    margin-bottom: 40px;
    max-width: unset;
  }
  section.top .topLeft #facts p {
    font-size: 18px;
    line-height: 30px;
  }
  section.top .topLeft #facts p .toolTip {
    padding: 0 8px;
    font-size: 14px;
    border-radius: 4px;
    height: 30px;
    line-height: 28px;
    margin-left: 4px;
    transform: none;
  }
  section.top .topLeft #facts p .toolTip:before {
    left: 8px;
    border-radius: 0;
  }
  section.top .topRight {
    height: 70vh;
    position: relative;
    top: auto;
    left: auto;
    width: auto;
  }
  section.top video {
    width: auto;
    height: 70vh;
  }
  #b_start {
    margin: 25px 0 15px 0;
    position: unset;
  }
  section.youtube {
    display: block;
    padding: 0 20px;
    margin-bottom: 40px;
  }
  section.youtube iframe {
    max-width: 100%;
  }
  section.youtube .whatYouCanDo {
    margin-bottom: 40px;
  }
  section#features {
    display: block;
    width: auto;
    padding: 0 20px;
    margin: 0 auto 50px auto;
  }
  section#features > div {
    padding: 5px;
    margin-bottom: 10px;
    overflow: auto;
    transform: none !important;
  }
  section#features video {
    width: 180px;
    height: 180px;
    float: left;
    margin: 0;
  }
  section#features h3 {
    position: absolute;
    top: 8px;
    right: 5px;
    left: 195px;
    background: none;
    color: #404040;
    line-height: normal;
    margin: 0;
    padding: 0;
    line-height: 20px;
    height: auto;
  }
  section#features p {
    float: right;
    width: calc(100% - 190px);
    margin-top: 50px;
  }
  section#featured > a {
    margin: 5px 8px;
  }
  section#featured img {
    height: 42px;
  }
  section#more > div {
    display: block;
  }
  section#more > div div:nth-child(2) {
    padding-top: 10px;
  }
  section#more video {
    border-radius: 30px;
  }
  /*
      #languages{
          position: unset;
      }
  */
  body > footer {
    background: white;
    padding: 10px 5px;
    line-height: 25px;
  }
}