*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  color: rgba(0, 0, 0, 1.0);
  background: rgba(255, 255, 255, 1.0);
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Poppins', Helvetica, Arial, "sans-serif";
  /* font-size: clamp(1em, 2.8vw, 1.5em); */
  font-size: clamp(1em, 1vw, 1.5em);
  font-weight: 100;
  line-height: 1.5em;
  letter-spacing: 0.02em;
  text-rendering: optimizeLegibility;
  hyphens: auto;
}

article,
details,
form,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  line-height: 1.2em;
  font-weight: 500;
}

h1,
h2 {
  text-transform: uppercase;
}

a {
  border: 0;
  outline: 0 none;
  text-decoration: none;
  color: rgb(221, 51, 51);
}

li {
  margin: 0;
  padding: 0
}

ul {
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.25em;
}

strong,
b {
  font-weight: 700;
}

sub {
  font-size: 0.8em;
  position: relative;
  top: 0.5em;
}

sup {
  font-size: 0.8em;
  position: relative;
  top: -0.5em;
}

small {
  font-size: 80%;
}

img {
  max-width: 100%;
  height: auto;
}

blockquote {
  border-left: solid 0.5em rgba(124, 128, 129, 0.2);
  font-style: italic;
  padding: 1em 0 1em 2em;
}

summary {
  cursor:pointer;
}

/* --- Tabs ---*/
.tabs ul {
  margin: 0 0 0.75rem 0;
  padding: 0;
  border-bottom: 0.025rem solid #efefef;
}

.tabs li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}

.tabs a {
  display: block;
  padding: 0.25em 1.25em;
  text-decoration: none;
  background-color: #eeeeee;
  border: solid 1px #dddddd;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.tabs a.is-active {
  color: #cccccc;
  background-color: #ffffff;
  border: solid 1px #ffffff;
}

.tabs a:focus,
.tabs a:hover {
  color: #333333;
  background-color: #f5f5f5;
}

/*--- Form ---*/
button,
input,
select,
textarea {
  background-color: transparent;
  border: 0 solid;
  border-radius: 0.25em;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  padding: 0.25em 0.375em;
}

form {
  text-align: left;
  background-color: #ffffff;
  padding: 0.5em 0.75em;
  margin: 0 0 0.75em 0;
}

form>div,
form>details {
  padding: 0.25em 0.5em;
  margin: 1em 0;
  border: solid 1px #ededed;
}

input {
  background-color: #f5f5f5;
  max-width: 100%;
}

input[type="text"],
input[type="file"],
input[type="email"],
input[type="password"] {
  display: block;
}

/*
label {
  font-weight: 500;
}
*/









@keyframes fade {
  0% {
    opacity: 0;
  }

  /** fadeIn beginnt            **/
  11.11% {
    opacity: 1;
  }

  /** Bild steht                **/
  33.33% {
    opacity: 1;
  }

  /** Bild bleibt zwei Sekunden **/
  44.44% {
    opacity: 0;
  }

  /** fadeOut beendet           **/
  100% {
    opacity: 0;
  }
}

.ref {
  padding: 0.25rem 1.25rem;
  margin-bottom: 1.25rem;
  background-color: rgba(0, 0, 0, 0.1);
}

.ref:nth-of-type(2) {
  color: rgb(255, 255, 255);
  background-color: rgba(0, 0, 0, 0.5);
}

.css-slides {
  position: relative;
  height: 380px;
  max-height: 380px;
  padding-bottom: 20px;
  /* padding-bottom: calc(320/480 * 100%); */
  overflow: hidden;
  display: block;
}

.css-slides img {
  opacity: 0;
  animation-name: fade;
  animation-duration: 9s;
  animation-iteration-count: infinite;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  max-width: 480px;
}

.css-slides img:nth-child(1) {
  animation-delay: 0s;
}

.css-slides img:nth-child(2) {
  animation-delay: 3s;
}

.css-slides img:nth-child(3) {
  animation-delay: 6s;
}

.css-slides img:nth-child(4) {
  animation-delay: 9s;
}

.css-slides img:nth-child(5) {
  animation-delay: 12s;
}

.css-slides img:nth-child(6) {
  animation-delay: 15s;
}

.css-slides img:nth-child(7) {
  animation-delay: 18s;
}

.css-slides img:nth-child(8) {
  animation-delay: 21s;
}

.css-slides img:nth-child(9) {
  animation-delay: 24s;
}

.css-slides img:nth-child(10) {
  animation-delay: 27s;
}