body {
  display: flex;
  flex-flow: row no-wrap;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #232323;
  font-size: 2vw;
  font-family: "Lato", sans-serif;
}

img, svg, figure, video {
  width: 100%;
  height: auto;
  display: block;
}

h1 {
  font-size: 1.5em;
  width: 100%;
  margin: 0 auto;
  color: white;
  font-weight: 900;
  text-align: center;
  margin: 1em 0;
  line-height: 1.1em;
}
h1 span {
  display: block;
  font-weight: 400;
}

h2 {
  font-size: 1.4em;
  width: 100%;
  margin: 0 auto;
  color: white;
  font-weight: 900;
  text-align: center;
  margin: 1em 0;
  line-height: 1.1em;
}

h3 {
  font-size: 1.2em;
  width: 100%;
  margin: 0 auto;
  color: white;
  font-weight: 900;
  text-align: center;
  margin: 1em 0;
  line-height: 1.1em;
}

.header {
  width: 55%;
  height: 100vh;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  background: #1b1b1b;
  position: relative;
  padding: 0 4em 0 2em;
  box-sizing: border-box;
}
.header:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #232323;
  z-index: 1;
  top: 0;
  right: 0;
  transform-origin: top right;
  transform: skewY(86deg);
}
.header .social a {
  text-decoration: none;
}
.header .icon {
  display: inline-block;
  width: 2em;
  height: 2em;
  margin: 0 1em;
  stroke-width: 0;
  stroke: white;
  fill: white;
}

.logo {
  display: block;
  width: 15em;
  margin: 0 auto;
  height: auto;
  shape-rendering: geometricPrecision;
}
.logo .a, .logo .W {
  fill: #FFFFFF;
}
.logo .b {
  fill: none;
  stroke-miterlimit: 10;
  stroke-width: 9;
  stroke: #FFFFFF;
}
.logo .w {
  fill: #FFFFFF;
  stroke-miterlimit: 10;
  stroke: #FFFFFF;
}
.logo .rotate {
  -webkit-animation: rotate-anim 20s infinite;
          animation: rotate-anim 20s infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  transform-origin: center center;
}

@-webkit-keyframes rotate-anim {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate-anim {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.intro {
  width: 45%;
  height: 100vh;
  padding: 0 2em 0 4em;
  box-sizing: border-box;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
}
.intro ul, .intro ol{ padding: 0; }
.intro p, .intro ul li, .intro ol li {
  color: white;
  text-align: center;
  line-height: 1.25;
  font-size: 0.8em;
  list-style: none;
}
.visually-hidden{position: absolute; width: 0; height: 0; overflow: hidden;}
@media screen and (min-width: 1000px) {
  body {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 767px){
  body{
    display: flex;
    flex-flow: column wrap;
    font-size: 4vw;
  }
  .header {
    width: 100%;
    height: auto;
    padding: 2em;
  }
  .header:after{
    content:  none;
  }
  .intro{
    width: 100%;
    height: auto;
    padding: 2em;
  }
  .intro p, .intro ul li, .intro ol li {
    font-size: 1em;
  }
}