@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
:root{
  --main-brand-color : #123b52;
  --primary-color :  #125166;
  --secondary-color : #147584;
  --light-secondary-color :#17a1a7;
  --text-color : white;
  --secondary-text-color: #b3b4b6;
}
*{
  margin: 0;
  padding: 0;
}
body {
  text-align: center;
  font-family: 'Bebas Neue', cursive;
}
#header{
  padding: 30px 55px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--text-color);
}


#über-produkt-fx622{
  background-color: var(--main-brand-color);
  justify-content: center;
  align-items: center;
  color: var(--text-color);
  text-align: center;
  font-size: large;
}
.png{
  margin-top: 20px;
  height: 700px;
}
.wrapper{
  justify-content: center;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  width: fit-content;
  height:auto;
}
button{
  width:200px;
  height:70px;
  background: linear-gradient(to left top, #125166 50%, #123b52 50%);
  border-style: none;
  color:#fff;
  font-size: 23px;
  letter-spacing: 3px;
  font-family: 'Lato';
  font-weight: 600;
  outline: none;
  cursor: pointer;
  position: relative;
  padding: 10px;
  overflow: hidden;
  transition: all .5s;
  box-shadow: 0px 1px 2px rgba(0,0,0,.2);
  margin-top: 40px;
  margin-left: 10%;
}
button span{
  position: absolute;
  display: block;
}
button span:nth-child(1){
  height: 3px;
  width:200px;
  top:0px;
  left:-200px;
  background: linear-gradient(to right, rgba(0,0,0,0), #f7f7f7);
  border-top-right-radius: 1px;
  border-bottom-right-radius: 1px;
  animation: span1 2s linear infinite;
  animation-delay: 1s;
}

@keyframes span1{
  0%{
      left:-200px
  }
  100%{
      left:200px;
  }
}
button span:nth-child(2){
  height: 70px;
  width: 3px;
  top:-70px;
  right:0px;
  background: linear-gradient(to bottom, rgba(0,0,0,0), #f7f7f7);
  border-bottom-left-radius: 1px;
  border-bottom-right-radius: 1px;
  animation: span2 2s linear infinite;
  animation-delay: 2s;
}
@keyframes span2{
  0%{
      top:-70px;
  }
  100%{
      top:70px;
  }
}
button span:nth-child(3){
  height:3px;
  width:200px;
  right:-200px;
  bottom: 0px;
  background: linear-gradient(to left, rgba(0,0,0,0), #f7f7f7);
  border-top-left-radius: 1px;
  border-bottom-left-radius: 1px;
  animation: span3 2s linear infinite;
  animation-delay: 3s;
}

.header-container ul{
  position: relative;
  word-wrap: 50px;
  float: right;
  margin: 20px; padding: 0;
  cursor: pointer;
  text-align: center;
  align-content: center;
  font-size: large;
}
@keyframes span3{
  0%{
      right:-200px;
  }
  100%{
      right: 200px;
  }
}

button span:nth-child(4){
  height:70px;
  width:3px;
  bottom:-70px;
  left:0px;
  background: linear-gradient(to top, rgba(0,0,0,0), #cfc8c8);
  border-top-right-radius: 1px;
  border-top-left-radius: 1px;
  animation: span4 2s linear infinite;
  animation-delay: 4s;
}
@keyframes span4{
  0%{
      bottom: -70px;
  }
  100%{
      bottom:70px;
  }
}

button:hover{
  transition: all .5s;
  transform: rotate(-3deg) scale(1.1);
  box-shadow: 0px 3px 5px rgba(0,0,0,.4);
}
button:hover span{
  animation-play-state: paused;
}




/*  footer   */
footer {
  background-color: #222;
  color: #fff;
  font-size: 14px;
  bottom: 0;
  position: fixed;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 999;
}

footer p {
  margin: 10px 0;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida  Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
footer .fa-heart{
  color: rgb(1, 165, 143);
}
footer .fa-dev{
  color: #fff;
}
footer .fa-twitter-square{
color:#1da0f1;
}
footer .fa-instagram{
color: #009efa;
}
fotter .fa-linkedin{
color:#0073b1;
}
footer .fa-codepen{
color:#fff
}
footer a {
  color: #3c97bf;
  text-decoration: none;
margin-right:5px;
}
.youtubeBtn{
  position: fixed;
  left: 50%;
transform:translatex(-50%);
  bottom: 45px;
  cursor: pointer;
  transition: all .3s;
  vertical-align: middle;
  text-align: center;
  display: inline-block;
}
.youtubeBtn i{
 font-size:20px;
float:left;
}
.youtubeBtn a{
  color:#00ffdd;
  text-shadow: 0px 2px 5px rgba(0,0,0,.5);
  animation: youtubeAnim 1000ms linear infinite;
float:right;
}
.youtubeBtn a:hover{
color:#01a884;
transition:all .3s ease-in-out;
text-shadow: none;
}
.youtubeBtn i:active{
transform:scale(.9);
transition:all .3s ease-in-out;
}
.youtubeBtn span{
  font-family: 'Lato';
  font-weight: bold;
  color: #fff;
  display: block;
  font-size: 12px;
  float: right;
  line-height: 20px;
  padding-left: 5px;

}

@keyframes youtubeAnim{
0%,100%{
  color:#00f7cd;
}
50%{
  color:#0c9683;
}
}
#payement{
  justify-content: center;
  align-items: center;
  margin: 40px;
}
.preis{
  font-size: x-large;
}
@media(max-width: 1582px){
    .kauf-preis{
      width: 20%;
      margin-left: 40%;
    }

}
@media(max-width: 1262px){
  .kauf-preis{
    width: 30%;
    margin-left: 35%;
  }

}
@media(max-width: 800px){
  .kauf-preis{
    width: 40%;
    margin-left: 30%;
  }

}
@media(max-width: 600px){
  .kauf-preis{
    width: 60%;
    margin-left: 20%;
  }

}
.flex_container{
  margin-top: 50px;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.card{
  width: 350px;
  background-color: var(--light-secondary-color);
  border-radius: 100px;
  padding: 120px 40px;
  font-size: x-large;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  color: white;
}
.card *{
  text-align: center;
}
.card a{
  cursor: pointer;
  background-color: var(--main-brand-color);
  width: min-content;
  padding: 5px 60px;
  border-radius: 50px;
  margin: 0 auto;
  text-decoration: none;
  color: var(--text-color);
  border: 4px solid var(--main-brand-color);
  transition: 150ms ease-in-out;
}
.card a:hover{
  cursor: pointer;
  background-color: transparent;
  color: --light-secondary-color;
}
.fotos img{
  height: 200px;
  border-radius: 5%;
  border-style: solid;
  border-color: white;
  box-sizing: border-box;
}
#slider {
  margin: 50px auto;
  width: 628px;
  max-width: 100%;
  max-height: 100%;
  text-align: center;
}

#slider input[type=radio] {
  display: none;
}
#slider label {
  cursor:pointer;
  text-decoration: none;
}
#slides {
  padding: 10px;
  border: 3px solid #ccc;
  background: #fff;
  position: relative;
  z-index: 1;
}
#overflow {
  width: 100%;
  overflow: hidden;
}
#slide1:checked ~ #slides .inner {
  margin-left: 0;
}
#slide2:checked ~ #slides .inner {
  margin-left: -100%;
}
#slide3:checked ~ #slides .inner {
  margin-left: -200%;
}
#slide4:checked ~ #slides .inner {
  margin-left: -300%;
}
#slides .inner {
  transition: margin-left 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
  width: 400%;
  line-height: 0;
  height: 600px;
}
#slides .slide {
  width: 25%;
  float:left;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #fff;
}
#slides .slide_1 {
  background: transparent;
}
#slides .slide_2 {
  background: transparent;
}
#slides .slide_3 {
  background: transparent;
}
#slides .slide_4 {
  background: transparent;
}
#controls {
  margin: -180px 0 0 0;
  width: 100%;
  height: 50px;
  z-index: 3;
  position: relative;
}
#controls label {
  transition: opacity 0.2s ease-out;
  display: none;
  width: 50px;
  height: 50px;
  opacity: .4;
}
#controls label:hover {
  opacity: 1;
}
#slide1:checked ~ #controls label:nth-child(2),
#slide2:checked ~ #controls label:nth-child(3),
#slide3:checked ~ #controls label:nth-child(4),
#slide4:checked ~ #controls label:nth-child(1) {
  background: url(https://image.flaticon.com/icons/svg/130/130884.svg) no-repeat;
  float:right;
  margin: 0 -50px 0 0;
  display: block;
}
#slide1:checked ~ #controls label:nth-last-child(2),
#slide2:checked ~ #controls label:nth-last-child(3),
#slide3:checked ~ #controls label:nth-last-child(4),
#slide4:checked ~ #controls label:nth-last-child(1) {
  background: url(https://image.flaticon.com/icons/svg/130/130882.svg) no-repeat;
  float:left;
  margin: 0 0 0 -50px;
  display: block;
}
#bullets {
  margin: 150px 0 0;
  text-align: center;
}
#bullets label {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius:100%;
  background: #ccc;
  margin: 0 10px;
}
#slide1:checked ~ #bullets label:nth-child(1),
#slide2:checked ~ #bullets label:nth-child(2),
#slide3:checked ~ #bullets label:nth-child(3),
#slide4:checked ~ #bullets label:nth-child(4) {
  background: #444;
}
@media screen and (max-width: 900px) {
  #slide1:checked ~ #controls label:nth-child(2),
  #slide2:checked ~ #controls label:nth-child(3),
  #slide3:checked ~ #controls label:nth-child(4),
  #slide4:checked ~ #controls label:nth-child(1),
  #slide1:checked ~ #controls label:nth-last-child(2),
  #slide2:checked ~ #controls label:nth-last-child(3),
  #slide3:checked ~ #controls label:nth-last-child(4),
  #slide4:checked ~ #controls label:nth-last-child(1) {
     margin: 0;
  }
  #slides {
     max-width: calc(100% - 140px);
     margin: 0 auto;
  }
}
#slide1 img{
  height: 600px;
}
#slide2 img{
  height: 600px;
}
#slide3 img{
  height: 600px;
}
#slide4 img{
  height: 600px;
}
.preis h3::before{
  content: '';
  position: absolute;
  height: 2px;
  margin-top: 17px;
  margin-left: 66px;
  transition: 1250ms;
  background-color: red;
}
.preis h3:hover::before{
  width: 3%;
}
@media(max-width = 900px){
  .preis h3:hover::before{
    width: 9%;
  }
  #slides .inner {
  transition: margin-left 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
  width: 600%;
  line-height: 0;
  height: 300px;
}
#slider {
  margin: 50px auto;
  width: 128px;
  max-width: 120%;
  max-height: 60%;
  text-align: center;
}
#slide1 img{
  height: 300px;
}
#slide2 img{
  height: 300px;
}
#slide3 img{
  height: 300px;
}
#slide4 img{
  height: 300px;
}
}
.pay{
  position: relative;
  margin-top: 10px;
  display: none;
}
#button{
  display: block;
}
