*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

.noanimation::after {
  animation: none !important;
}

.slidercontainer {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 75vh;
  border-radius: 2rem;
  z-index: 10000;
}

.slider {
  display: flex;
  width: 500%;
  height: 100%;
  transition: all 0.5s ease-in;
  transform: translateX(0);
}

.slider .box {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
  position: relative;
}



.slider .box .details {
  margin-left: 5rem;
  z-index: 100;
  width: 40%;
  padding: 5rem 0 0 2rem;
}


.slider .box .details .glitch,
.slider .box .details .glitch::before,
.slider .box .details .glitch::after {
  width: 100%;
}

.slider .box .details h2 {
  font-family: Martian Mono, monospace;
  font-weight: 600;
  font-size: 3vw;
  width: 100%;
  color: #fff;
  z-index: 100;
  text-align: end;
  text-transform: uppercase;
}

.slider .box .details p {
  display: inline-block;
  font-size: 1.3rem;
  color: #B5B4B4;
  margin-bottom: 2rem;
  margin-right: 5rem;
}




.slider .box .details button {
  padding: 1rem 3rem;
  color: #fff;
  border-radius: 2rem;
  outline: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider .box .details button:hover {
  opacity: 0.8;
}

.slider .box .details button:focus {
  outline: none;
  border: none;
}

.slider .box .statistik__count {
  font-size: 10vw;
  display: inline-block;
  float: right;
  font-family: sans-serif;
  text-align: end;
  position: relative;
}

.slider .box .statistik__count::after {
  content: '+';
  position: absolute;
  left: 105%;
  top: 20%;
  line-height: 100%;
  font-size: 50%;
  opacity: 0;
  color: #fff;
  font-weight: 600;
  font-family: Martian Mono, monospace;
  animation-name: visaplus;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-delay: 2s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}


.blixt .statistik__count::after {
  animation: none;
  text-shadow: none;
  color: #b52f2f !important;
}


.slider .box1 .illustration .inner {
  background-color: rgba(255, 0, 119, 0.3);
}

.slider .box1 .illustration .inner::after,
.slider .box1 .illustration .inner::before {
  background-color: rgba(255, 0, 119, 0.15);
}


.slider .box2 .illustration .inner {
  background-color: rgba(0, 51, 255, 0.3);
}

.slider .box2 .illustration .inner::after,
.slider .box2 .illustration .inner::before {
  background-color: rgba(0, 51, 255, 0.15);
}

.slider .box3 .illustration .inner {
  background-color: rgba(0, 255, 68, 0.3);
}

.slider .box3 .illustration .inner::after,
.slider .box3 .illustration .inner::before {
  background-color: rgba(0, 255, 68, 0.15);
}


.slider .box4 .illustration .inner {
  background-color: rgba(255, 78, 0, 0.3);
}

.slider .box4 .illustration .inner::after,
.slider .box4 .illustration .inner::before {
  background-color: rgba(255, 78, 0, 0.15);
}


.slider .box5 .illustration .inner {
  background-color: rgba(128, 0, 255, 0.3);
}

.slider .box5 .illustration .inner::after,
.slider .box5 .illustration .inner::before {
  background-color: rgba(128, 0, 255, 0.15);
}

.slider .illustration {
  position: relative;
  justify-self: center;
  margin-left: 3rem;
  width: 15%;
}

.slider .illustration .inner {
  height: 45vh;
  width: 70vw;
  border-radius: 5rem;
  background-color: #FF0077;
  position: relative;
  transform: skewX(-10deg);
  transform-origin: center center;
  animation: inner 5s ease-in-out alternate infinite;
}

@keyframes inner {
  0% {
    transform: skewX(0deg);
    filter: blur(10px)
  }

  25% {
    transform: skewX(10deg);
    filter: blur(5px)
  }

  75% {
    transform: skewX(-10deg);
    filter: blur(10px)
  }

  100% {
    transform: skewX(0deg);
    filter: blur(5px)
  }
}


.prev,
.next,
.trail {
  z-index: 10000;
  position: absolute;
}

.prev,
.next {
  width: 4rem;
  cursor: pointer;
  opacity: 0.2;
  transition: all 0.3s ease;
  opacity: 0;
}


.prev:hover,
.next:hover {
  opacity: 1;
}

.prev {
  top: 50%;
  left: 2%;
  transform: translateY(-50%);
}

.next {
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
}

.trail {
  display: none;

}