/*Total*/
body {
  font-family: 'Lexend';
  font-size: 22px;
  background-color: #f9f5e3;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container{
  width: 70%;
  margin: 0 auto;
  max-width: 1200px;
  margin-bottom: 5%;
}

/*Text*/
p {
  color: #1e2019;
}
a {
  color: #d78521;
  text-decoration: none;
}
.titel {
  color: #f92a82;
}
h1 {
  color: #f92a82;
  font-size: 300%;
  margin-top: 10%;
}
h3 {
  margin-top: 10%;
}

li {
  margin-top: 50px;
  list-style: none;
}

/*Hotbar*/
div.trans{
  width: 100%;
  margin-top: 0%;
  height: 90px;
  background-color: rgba(30,32,25,0.7);
  position: sticky;
  top: 0;
  z-index: 1;
}
.texttrans{
  position: absolute;
  top: 10%;
  opacity: 1;
  color: #ffffff;
  z-index: 2;
  float: right;
}
.obentext{
  margin-top: -2%;
  margin-bottom: 30%;
}
.logo {
  margin-top: 0.5%;
  margin-left: 3%;
  height: 80px;
}
/*Seitenspezifisch*/
.wahlplakat{
  margin-top: -3%;
  margin-bottom: 5%;
}
.listuntertitel{
  color: #d78521;
  font-weight: bold;
  font-size: 100%;
}
.infotext{
  font-weight: lighter;
  color: #1e2019;
  font-size: 80%;
}
/*"Cards"*/
.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  bottom: 50%;
}
.card {
transform: translateX(25%);
background-size: cover;
background-position: center;
position: relative;
width: 60%;
height: 30%;
border-radius: 12px;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 2%;
}
.abdecken{
width: 7%;
height: 100%;
position: absolute;
top: 0;
left: 0;
transition: 0.5s;
}
.card-text {
color: #f9f5e3;
opacity: 1;
margin-right: 2%;
font-size: 400%;
font-weight: bold;
left: 20;
transition: 0.5s;
z-index: 5;
}
.card-text-extra {
color: #f9f5e3;
opacity: 1;
font-size: 100%;
font-weight: bold;
transform: translateX(0%);
transition: 0.5s;
z-index: 5;
}
.card:hover .abdecken{
width: 100%;
opacity: 0.7;
transition: 0.5s;
}
.card:hover .card-text {
left: 20;
transition: 0.5s;
font-size: 600%;
}
.card:hover .card-text-extra {
transform: translateX(0%);

}
/*"W-Cards"*/
.w-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.w-card {
  background-size: cover;
  background-position: center;
  position: relative;
  width: 30%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  margin-bottom: 2%;
}
.cardoverlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e201988;
  z-index: 0;
  transition: 0.3s;
  transition-timing-function: ease-in-out;
}
.w-abdecken{
  width: 100%;
  height: 5%;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
.w-card-text {
  color: #f9f5e3;
  opacity: 1;
  font-size: 400%;
  font-weight: bold;
  transform: translateX(30%);
  transition: 0.5s;
  z-index: 5;
  top:50;
}
.w-card-text-extra {
  position: absolute;
  color: #f9f5e3;
  opacity: 1;
  font-size: 100%;
  font-weight: normal;
  transition: 0.5s;
  z-index: 5;
  transform: translateX(20%);
  top:150;
}
.w-card:hover .w-abdecken{
  height: 100%;
  opacity: 0.7;
  transition: 0.3s;
  transition-timing-function: ease-in-out;
}
.w-card:hover .w-card-text {
  transition: 0.5s;
  font-size: 600%;
  top: 100;
}
.w-card:hover .w-card-text-extra {
  top: 200;
}
.w-card:hover .cardoverlay{
  height: 0%;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}





/*X-Cards*/
.x-card-text {
  color: #f9f5e3;
  opacity: 1;
  font-size: 150%;
  font-weight: bold;
  transform: translate(10%, 35%);
  transition: 0.5s;
  z-index: 5;
  top:50;
}
.w-card:hover .x-card-text {
  transition: 0.5s;
  font-size: 200%;
  top: 100;
}


/*Button Menü*/
button {
  font-family: 'Lexend';font-size: 22px;
}
.dropbtn {
  background-color: rgba(30,32,25,0);
  color: #f9f5e3;
  padding: 30px;
  font-size: 25px;
  border: none;
  cursor: pointer;
}
.dropdown {
  position: relative;
  display: inline-block;
  right: 0;
  top:0;
}
.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 90;
  background-color: rgba(30,32,25,0.7);
  min-width: 200px;
  z-index: 1;
  transition: 0.3s;
}
.dropdown-content a {
  color: #e9e5e3;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}
.dropdown-content a:hover {background-color: #f92a82; transition: 0.3s;}
.dropdown:hover .dropdown-content {display: block; delay: 0.3s;}
.dropdown:hover .dropbtn {background-color: #f92a82; transition: 0.3s;}

/*fuss*/
.fuss{
  font-size: 70%;
  background-color: #1e201988;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}
.fuss a,.fuss p{
  color: #e9e5e3;
  margin-left: 15%;
}
.footpic{
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
}
