html,
body {
  background-color: #000000;
  color: #ffffff;
  font-family: "Hind";
  font-size: 12px;
}

h1 {
  background-color: #000000;
  color: #ffffff;
  font-family: "Hind";
  font-size: 16px;
  font-style: bold;
}

.PageLayout {
  display: grid;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  grid-template-columns: 200px 50px auto 50px;
  grid-template-rows: 100px auto 50px;
  grid-gap: 0px;
  border: 1px;
}

.LateralMenu {
  grid-column: 1;
  grid-row: 1 / 3;
  text-align: center;
}

#menu-accordeon {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  width: 180px;
}
#menu-accordeon ul {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
#menu-accordeon li {
  background-color: #434a4f;
  background-image: -webkit-linear-gradient(top, #353c41 0%, #111212 100%);
  background-image: linear-gradient(to bottom, #353c41 0%, #111212 100%);
  border-radius: 6px;
  margin-bottom: 2px;
  box-shadow: 3px 3px 3px #999;
  border: solid 1px #212222;
}
#menu-accordeon li li {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s;
  border-radius: 0;
  background: #444;
  box-shadow: none;
  border: none;
  margin: 0;
}
#menu-accordeon a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 8px 0;
  font-family: verdana;
  font-size: 1.2em;
}
#menu-accordeon ul li a,
#menu-accordeon li:hover li a {
  font-size: 1em;
}
#menu-accordeon li:hover {
  background: #729ebf;
}
#menu-accordeon li li:hover {
  background: #999;
}
#menu-accordeon ul li:last-child {
  border-radius: 0 0 6px 6px;
  border: none;
}
#menu-accordeon li:hover li {
  max-height: 15em;
}

.Title {
  grid-column: 2 / 4;
  grid-row: 1;
}

.Title h1 {
  text-align: center;
  color: #ffffff;
  font-family: "Dancing Script";
  font-size: 48px;
  font-style: italic;
}

.Content {
  grid-column: 3;
  grid-row: 2;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 25px;
  justify-content: space-between;
  align-content: flex-start;
}

.content-tourniquet {
  display: block;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: 100%;
  margin-top: 0px;
  margin-bottom: 200px;
  align-self: auto;
  color: #ff0000;
  text-align: center;
}

.content-title {
  display: block;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: 100%;
  margin-top: 50px;
  margin-bottom: 10px;
  align-self: auto;
  color: #ff0000;
  text-align: center;

  font-size: 20px;
  font-style: italic;
}

.content-title p {
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  font-style: italic;
}

.content-raw {
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 65%;
  align-self: stretch;
  color: #ffffff;
  text-align: left;
  font-size: 14px;
}

.content-raw-large {
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 80%;
  color: #ffffff;
  text-align: left;
  font-size: 14px;
}

.content-image-small {
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 15%;
}

.content-image {
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 30%;
}

.content-spacer {
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 30%;
}

.content-video {
  display: block;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 100%;
  text-align: center;
  align-self: auto;
}

.FollowMe {
  grid-column: 1;
  grid-row: 3;
  color: #aaaaaa;
  vertical-align: middle;
  text-align: center;
  font-size: 12px;
  font-style: italic;
}
.FootPage {
  grid-column: 2 / 4;
  grid-row: 3;
  color: #aaaaaa;
  vertical-align: middle;
  text-align: center;
  font-size: 12px;
  font-style: italic;
}

.slider {
    position: relative;
    width: 350px;
    margin: 50px auto;
    perspective: 1000px;
    padding-top: 120px;
    }
 .rotator {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 55%;
    height: 150px;
    transform-style: preserve-3d;
    animation: roter 29s linear infinite;
    }

     .items {
    position: absolute;
    height: 100%;
    width: 100%;
    overflow: hidden;
    border: 2px solid white;
    }

 .items img {
    height: 100%;
    width: 100%;
    transition: all 3s ease;
    }

     .items:hover img {
    transform: scale(1.25);
    }

     @keyframes roter {
    from {
    transform: rotateY(0deg);
    }
    to {
    transform: rotateY(360deg);
    }
    }

    .items:first-child {
    transform: rotateY(calc(40deg)) translateZ(300px);
    }

 .items:nth-child(2) {
    transform: rotateY(calc(80deg)) translateZ(300px);
    }

 .items:nth-child(3) {
    transform: rotateY(calc(120deg)) translateZ(300px);
    }

 .items:nth-child(4) {
    transform: rotateY(calc(160deg)) translateZ(300px);
    }

 .items:nth-child(5) {
    transform: rotateY(calc(200deg)) translateZ(300px);
    }

 .items:nth-child(6) {
    transform: rotateY(calc(240deg)) translateZ(300px);
    }

 .items:nth-child(7) {
    transform: rotateY(calc(280deg)) translateZ(300px);
    }

 .items:nth-child(8) {
    transform: rotateY(calc(320deg)) translateZ(300px);
    }

 .items:nth-child(9) {
    transform: rotateY(calc(360deg)) translateZ(300px);
    }

