/* Fonts */

/* latin */
@font-face {
  font-family: 'Menlo';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../font/arcade.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.arcade {
  font-family: Arcade;
}

@font-face {
  font-family: 'Menlo';
  src: url(../font/menlo.woff2) format('woff2');
}

.menlo {
  font-family: Menlo;
}


@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(../font/material.woff2) format('woff2');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: 'liga';
  -moz-osx-font-smoothing: grayscale;
}


/* Reset CSS
 * --------------------------------------- */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,
form,fieldset,input,textarea,p,blockquote,th,td {
  padding: 0;
  margin: 0;
}
a{
  text-decoration:none;
}
table {
  border-spacing: 0;
}
fieldset,img {
  border: 0;
}
address,caption,cite,code,dfn,em,strong,th,var {
  font-weight: normal;
  font-style: normal;
}
strong{
  font-weight: bold;
}
ol,ul {
  list-style: none;
  margin:0;
  padding:0;
}
caption,th {
  text-align: left;

}
h1,h2,h3,h4,h5,h6 {
  font-weight: normal;
  font-size: 100%;
  margin:0;
  padding:0;
  font-family: Menlo;
  padding-bottom: 1em;
  padding-top: 1em;
}
q:before,q:after {
  content:'';
}
abbr,acronym { border: 0;
}

a {
  text-decoration: underline;
  color: #d5d5d5;
  outline: 0;
}

a:hover {
  color: white;
}

/* Custom CSS
 * --------------------------------------- */
body{
  font-family: arial,helvetica;
  color: rgba(0,0,0,0.5);
  background-color: #343434;
  font-family: Helvetica, sans-serif
}
.wrap{
  margin-left: auto;
  margin-right: auto;
  width: 960px;
  position: relative;
}
h1{
  font-size: 2em;
}
h2{
  font-size: 2em;
}
h3{
  font-size: 1.5em;
}
p{
  font-family: Menlo;
  padding-bottom: 1em;
}
.intro p{
  width: 50%;
  margin: 0 auto;
  font-size: 1.5em;
}
.section{
  text-align:center;
}


/* Flexboxen */

.flexwrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  height: 100%;

}

.flexbox {
  width: 30%;
  /* background-color: red; */
  /*height: 80vh;*/
}

@media (orientation: portrait) {
  .flexwrapper {
    flex-direction: column;
  }
  .flexbox {
    height: auto;
    width: 90%;
    margin: 0 auto;
  }
}

/* Farben */

.rot, .blau, .gruen {
  color: #fff;
}

.rot {
  background-color: #f00;
}

.schwarz {
  background-color: #343434;
  color: #d5d5d5;
}

.blau {
  background-color: #00f;
}

.gruen {
  background-color: #d5d5d5;
  color: #000;
}


/* Header */

.header {
  font-family: Menlo;
  background-color: #000;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  position: fixed;
  width: 100%;
  z-index: 3;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  /*background-color: #fff;*/
}

.header li a {
  display: block;
  padding: 20px 20px;
  /* border-right: 1px solid #f4f4f4;*/
  text-decoration: none;
  text-align: right;
}

.header li a:hover,
.header .menu-btn:hover {
  background-color: #d5d5d5;
}

.header li.active a {
  background-color: #d5d5d5;
}

.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
  color: #d5d5d5;
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: red;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: red;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */

@media (min-width: 48em) {
  .header li {
    float: left;
  }
  .header li a {
    padding: 20px 30px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
}


/* Slides */

.fp-controlArrow {
    top: 50%;
}
.fp-controlArrow.fp-prev {
    width: 0;
    border-width: 18.5px 14px 18.5px 0;
    border-color: transparent #555 transparent transparent;
}
.fp-controlArrow.fp-next {
    border-width: 18.5px 0 18.5px 14px;
    border-color: transparent transparent transparent #555;
}
.fp-controlArrow.fp-prev:hover {
    border-color: transparent white transparent transparent;
}
.fp-controlArrow.fp-next:hover {
    border-color: transparent transparent transparent white;
}


