*{
  box-sizing: border-box;
}


:root{
  --main-color: #ff0000;
  --main-color-hover: #ff2727;
  --bg-color: black;
  --sc-bg-color: rgb(24, 24, 24);

  --color-bg1: rgb(8, 10, 15);
  --color-bg2: rgb(0, 17, 32);
  --color1: 255, 87, 51;   
  --color2: 255, 195, 0;   
  --color3: 255, 165, 0;  
  --color4: 50, 205, 50;   
  --color5: 220, 20, 60;   
  --color-interactive: 255, 140, 0; 
  --circle-size: 80%;
  --blending: hard-light;
}

html, body{
  height: 100%;
  padding: 0px;
  margin: 0px;
  background: var(--sc-bg-color);
  font-family: 'Lora', serif;
  scroll-behavior: smooth;
}

h1,h2,h3,h4,h5,h6{
  font-family: "Roboto", sans-serif;
  color: white;
  margin: 5px;
}

a{
  text-decoration: none;
  color: inherit;
}

.clearfix::after{
  content: '';
  display: block;
  clear: both;
}

.btn-big{
  padding: .7rem 1.3rem;
  line-height: 1.3rem;
}

.action-btn {
    text-align: center;
    position: relative;
}

.btn{
  display: block;
  margin: 0 auto;
  font-size: 1.08em;
  font-family: "New Amsterdam", sans-serif;
  padding: .5rem 1rem;
  background: var(--main-color);
  color: white;
  border:  1px solid transparent;
  border-radius: .8rem;
  transition: transform 0.3s;
}

.mute-button{
	display: inline-block;
    padding: 10px 20px; 
    background-color: red;
    color: white;
    font-size: 1em; 
    text-align: center;
    text-decoration: none; 
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn:hover{
  color: white !important;
  background:var(--main-color-hover);
  cursor: pointer;
  transform: scale(1.1);
}

.text-input{
  padding: .7rem 1rem;
  display: block;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  outline: none;
  color: rgb(0, 0, 0);
  line-height: 1.5rem;
  font-size: 1.2em;
  font-family: 'Lora',serif;
}

.input-white{
  color: rgb(255, 255, 255) !important;
}

.msg{
  width: 100%;
  margin: 5px auto;
  padding: 8px;
  border-radius: 5px;
  list-style: none;
}

.success{
  color: #3a6e3a;
  border: 1px solid #3a6e3a;
  background: #bcf5bc;
}

.error{
  color: #884b4b;
  border: 1px solid #884b4b;
  background: #f5bcbc;
}

.card {
  position: absolute;
  z-index: 10;
  user-select: none;
  width: 100%;
  padding: 5px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  box-shadow: 0 4px 90px rgba(0,0,0,0.1);
  overflow: hidden;
  height: 670px
}

@keyframes moveInCircle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes moveVertical {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes moveHorizontal {
  0% {
    transform: translateX(-50%) translateY(-10%);
  }
  50% {
    transform: translateX(50%) translateY(10%);
  }
  100% {
    transform: translateX(-50%) translateY(-10%);
  }
}


.gradient-bg {
  width: 98.5vw;
  height: 670px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
  top: 0;
  left: 0;

  .svgBlur {
    display: none;
  }

  .noiseBg {
    position: absolute;
    width: 100%;
    height: 800px;
    top: 0;
    left: 0;
    z-index: 1;
    mix-blend-mode: soft-light;
    opacity: 0.3;
  }
  .gradients-container {
    filter: url(#goo) blur(40px) ;
    width: 100%;
    height: 100%;
  }

  .g1 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);

    transform-origin: center center;
    animation: moveVertical 30s ease infinite;

    opacity: 1;
  }

  .g2 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);

    transform-origin: calc(50% - 400px);
    animation: moveInCircle 20s reverse infinite;

    opacity: 1;
  }

  .g3 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2 + 200px);
    left: calc(50% - var(--circle-size) / 2 - 500px);

    transform-origin: calc(50% + 400px);
    animation: moveInCircle 40s linear infinite;

    opacity: 1;
  }

  .g4 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);

    transform-origin: calc(50% - 200px);
    animation: moveHorizontal 40s ease infinite;

    opacity: 0.7;
  }

  .g5 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: calc(var(--circle-size) * 2);
    height: calc(var(--circle-size) * 2);
    top: calc(50% - var(--circle-size));
    left: calc(50% - var(--circle-size));

    transform-origin: calc(50% - 800px) calc(50% + 200px);
    animation: moveInCircle 20s ease infinite;

    opacity: 1;
  }

  .interactive {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: 60%;
    height: 60%;
    top: -30%;
    left: -30%;

    opacity: 0.7;
  }
}

.starter{
  display: flex;
  flex-direction: column;
  height: 650px;
}

.mask {
  margin: 0 auto;
  height: 650px;
  width: 1400px;
  background: linear-gradient(
    rgba(0, 0, 0, 0.4), 
    rgba(0, 0, 0, 0.8) 
  );
  border-radius: 15px; 
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); 
}

.content-holder-str{
  max-width: 1200px; 
  width: 100%; 
  margin: 0 auto; 
  padding: 120px 0 0 80px;
  position: relative;
}


.starter .logo-text{
  font-size: 2em;
}
.starter .logo-text-t{
  margin-left: 36%;
}

.starter .logo-text h1{
  color: white;
}

.line {
  border-bottom: 3px solid white; /* Farbe und Dicke der Linie */
  margin-bottom: 15px;
  margin-left: 475px; /* Abstand links (nach Bedarf anpassen) */
  width: 10%; /* Breite der Linie */
  box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.8); /* Weißer Leuchteffekt */
  border-radius: 80px;
}



.starter .content-holder-str .main-text h1{
  font-size: 3em;
  font-weight: 800;
  position: relative;
  color: white;
  left: 27%;
}

.starter .content-holder-str .main-text h2{
  font-size: 2.5em;
  text-align: center;
  font-weight: 700;
  position: relative;
  color: white;
  padding-top: 2px;
}

.logo img{
  width: 80px;
  height: 50px;
}

.logo-m{
  padding: 0;
  width: 300px !important;
  height: 200px !important;
}

.LogoHome{
    top: 5%;
}

.starter .content-holder-str .action-btn{
  margin-top: 50px;
  font-size: 20px;
}

.page-wrapper{
  min-height: 100%;
}

.page-wrapper a:hover {
  color: #006569;
}

.content-adm{
  width: 90%;
  margin: 30px auto 30px;
  justify-content: center;
  align-items: flex-start;
  color: white; 
}

.content{
  width: 90%;
  margin: 30px auto 30px;
  display: flex;
  align-items: flex-start;
  color: white; 
}

.content h1{
  text-align: center;
  padding-right: 400px;
}

.head span {
	color: red;
}

.content .main-content{
  flex: 3;
  margin-right: 0;
  max-width: 1400px;
  float: left;
  display: inline;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
  list-style: none;
  padding: 0;
}

.content .main-content.single{
  background: var(--bg-color);
  padding: 20px 50px;
  font-size: 1.1em;
  border-radius: 5px;
  min-width: 1000px;
  min-height: 800px;
  color: white;
}

.content .main-content.single .post-title{
  margin-bottom: 40px;
  color: white !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 ;
  padding: 0;
}

.content .main-content .post-content-main{
  width: 100%;
  max-width: 1600px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
}

.content .main-content .post {
  background-color: var(--bg-color);
  border-radius: 0.25rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); 
  display: inline-block;
  flex-direction: column;
  overflow: hidden;
  width: 350px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.content .main-content .post:hover {
  transform: scale(1.05); 
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.6); 
}


.cards_item {
  display: flex;
  padding: 1rem;
  width: 450px;
}

.content .popular .post{
  border-top: 1px solid #e0e0e0;
  margin-top: 10px;
  padding-top: 10px;
}

.content .popular .post img{
  height: 60px;
  width: 75px;
  margin-right: 10px;
}
.content .main-content .post .post-image{
  height: 200px;
  width: 100%;
  object-fit: cover;
  vertical-align: middle;
}
.content .main-content .post{
  width: 100%;
  height: 100%;
}

.content .main-content .post .post-preview{
  padding: 1rem;
  height: 100%;
  background: var(--sc-bg-color);
}

.content .main-content .post .post-preview h2{
  font-size: 1.4em;
  color: #ffffff;
  font-weight: 800;
  font-family: "Roboto", sans-serif;
  text-transform: capitalize;
  margin: 0px;
  text-align: start;
}

.content .main-content .post .post-preview p{
  font-size: 1em;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0px;
  text-align: start;
  font-weight: 50;
  padding-bottom: 5px;
}

.content .main-content .post .post-preview i{
  color: #ffffff;
  padding-top: 10px;
  padding-bottom: 5px;
}

.content .main-content .recent-post-title{
  color: white;
  width: 100%;
  text-align: center;
  margin: 20px;
  font-weight: 600;
  padding: 0 !important;
}

.btn-con{
  border: 3px solid yellow;
  height: 40px;
}

.sidebar {
    float: right;
}

.content .sidebar {
  margin-right: 20px;
  width: 15%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 6px 20px rgba(0, 0, 0, 0.25);
}

.content .sidebar.single{
  padding: 0px 10px;
  min-width: 350px;
  margin-left: 15px;
}

.content .sidebar .section{
  background: var(--sc-bg-color);
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.content .sidebar .section-title{
  position: relative;
  margin: 10px 0px 10px 0px;
  color: white;
}



.content .sidebar .section.search{
  margin-top: 20px;
}

.content .sidebar .section.topics ul{
  margin: 0px;
  padding: 0px;
  list-style: none;
  border-bottom: 1px solid var(--bg-color);
}

.content .sidebar .section.topics ul li a{
  display: block;
  color: white;
  padding: 15px 0px 15px 0px;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s;
}

.content .sidebar .section.topics ul li a:hover{
  padding-left: 10px;
  transition: all 0.3s;
}

.topic-header .list-topic a::before{
  content: '';
  position: absolute;
  transition: width 0.5s ease-in;
  width: 2px;
  background-color: red;
 
}

.auth-content{
  position: relative;
  top: 15%;
  width: 30%;
  margin: 50px auto;
  padding: 20px;
  border-radius: 5px;
  color: white;
  background-color: rgb(41 41 41);
  background-image: url('Pexels.jpg');
}

.auth-content .form-title{
  text-align: center;
}

.auth-content form div{
  margin-bottom: 10px;
}

.auth-content form p{
  text-align: center;
}

.auth-content form p a{
  text-decoration: underline;
}


.footer{
  background: #303036;
  color: #d3d3d3;
  height: 400px;
  position: relative;
}

.daily-parent {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.daily-content {
  width: 80%;
  background-color: var(--sc-bg-color);
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 768px) {
 .daily-content{
   width: 100%;
  }
}

.daily-header {
  background-color: #222222a2;
  color: var(--sc-bg-color);
  padding: 20px;
  text-align: center;
}

.daily-header h1{
  color: white;
}

.post-holder {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden; 
  padding: 20px;
  white-space: nowrap; 
  position: relative;
  scrollbar-width: none; 
}

.post-holder::-webkit-scrollbar {
  display: none; 
}




.post-item {
  height: 100%;
  flex: 0 0 auto;
  width: 400px;
  margin-right: 20px;
  background-color: var(--sc-bg-color);
  border-radius: 10px;
  box-shadow: 0 -4px 90px rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 10px;
}

.post-item img {
  width: 100%;
  min-height: 150px;
  min-height: 180px;
  border-radius: 15px;
}

.post-item h2 {
  font-size: 18px;
  margin: 5px 0;
  padding-bottom: 3px;
  color: white;
}

.post-item p {
  font-size: 14px;
  color: white;
  margin: 0px;
  padding-bottom: 5px;
}

.post-holder::-webkit-scrollbar {
  height: 10px;
}

.post-holder::-webkit-scrollbar-thumb {
  background-color: #333;
  border-radius: 10px;
}


.footer .footer-content{
  height: 350px;
  display: flex;
}

.footer .footer-content .footer-section{
  flex: 1;
  padding: 25px;
}

.footer .footer-bottom{
  background: #343a40;
  color: #686868;
  height: 50px;
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding-top: 20px;
}

.footer .footer-content h1,
.footer .footer-content h2{
  color: white;
}

.footer .footer-content .about .contact span{
  display: block;
  font-size: 1.1em;
  margin-bottom: 8px;
}

.footer .footer-content .about .socials a{
  border: 1px solid gray;
  width: 45px;
  height: 41px;
  padding-top: 8px;
  margin-top: 15px;
  margin-right: 5px;
  text-align: center;
  display: inline-block;
  font-size: 1.3em;
  border-radius: 5px;
  transition: all .3s;
}

.footer .footer-content .about .socials a:hover{
  border: 1px solid white;
  color: white;
  transition: all .3s;
}

.footer .footer-content .links ul a{
  display: block;
  margin-bottom: 10px;
  font-size: 1.2em;
  transition: all.3s;
}

.footer .footer-content .links ul a:hover{
  color: white;
  margin-left: 15px;
  transition: all.3s;
}

.footer .footer-content .contact-form .contact-input{
  background: #272727;
  color: #bebdbd;
  margin-bottom: 10px;
  line-height: 1.5rem;
  padding: .9rem 1.4rem;
  border: none;
}

.footer .footer-content .contact-form .contact-input:focus{
  background: #1a1a1a;
}

.footer .footer-content .contact-form .contact-btn{
  float: right;
  font-size: 1.1em;
  font-family: 'Lora', serif;
  margin-right: 39%;
  margin-top: 2%;
  transition: transform 0.3s;
}

.footer .footer-content .contact-form .contact-btn:hover{
  transform: scale(1.1);
}

.footer .footer-content .about h1 span{
  color: var(--main-color);
}

.container-top {
    width: 100%;
    margin: auto;
    padding-bottom: 25px;
}

.container{
  align-items: center;
  background: var(--bg-color);
  padding: 20px;
  font-family: 'Lora', serif; !important;
  width: 100%;
  box-shadow: 0 0 5px #000 !important;
}

.head{
  color: white;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.text{
  color: white;
  margin: 10px 0;
  font-family: sans-serif;
  font-size: 0.9em;
}

.commentbox{
  display: flex;
  justify-content: space-around;
  padding: 10px;
}

.commentbox > img{
  width: 60px;
  height: 60px;
  margin-top: 40px;
  border-radius: 50%;
  margin-right: 20px;
  object-fit: cover;
  object-position: bottom;
}

.content{
  width: 100%;
  display: flex;
  justify-content: center;
}

.content .user{
  background: rgb(15, 15, 15);
  color: white;
  margin-left: 0;
  margin-right: 9px;
}

.user{
  border: none;
  outline: none;
  margin: 5px 0;
  color: #808080;
  margin-left: 20px;
  padding: 10px;

}

.commentinput input{
  background: var(--sc-bg-color);
  color: white;
  border: none;
  padding: 10px;
  padding-left: 0;
  outline: none;
  border-bottom: 2px solid var(--main-color);
  margin-bottom: 10px;
  width: 95%;
}

.buttons{
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #808080;
}

.buttons button{
  padding: 5px 10px;
  background: lightgrey;
  color: 808080;
  text-transform: uppercase;
  border: none;
  outline: none;
  border-radius: 3px;
  cursor: pointer;
}

.buttons button.abled{
  background: var(--main-color);
  color: #fff;
  transition: 0.5s ease-in-out;
}

.policy{
  margin: 20px 0;
  font-size: 0.8em;
  font-family: Arial, sans-serif;
  color: #808080;
}

.policy a{
  text-decoration: none;
  color: var(--main-color);
}

.comments h1{
  font-size: 1em;
}

.comment-post-count{
  color: rgb(192, 191, 191);
}

.comments .parents {
  display: flex;
  align-items: flex-start; 
  gap: 15px; 
  padding: 10px;
  background-color: var(--sc-bg-color); 
  box-shadow: 0 0 5px #000 !important;
  border-radius: 8px; 
  max-width: 600px; 
  margin-bottom: 25px;
}

.ComForm{
	width: 80%;
}

.comments .parents p{
  color: white;
}

.comments .parents span{
  color: rgb(192, 191, 191);
}

.comments img {
  width: 40px; 
  height: 40px; 
  border-radius: 50%; 
  object-fit: cover; 
}

.content {
  flex: 1; 
}

.engagements {
  display: flex; 
  gap: 10px; 
}

.icon {
  width: 24px; 
  height: 24px; 
}

.viewusers h1{
  font-family: "New Amsterdam", sans-serif;
}

.viewusers ul{
  font-family: 'Lora', serif;
  font-size: 1.3em;
}

.viewusers a{
  font-family: 'Lora', serif;
  font-size: 1.3em;
}

.viewusers p{
  margin-top: 0;
}

header .menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  font-size: 2.5em;
  cursor: pointer;
}

@media only screen and (max-width: 1400px){
  .content .sidebar.single{
    display: none;
  }
  .mask {
    margin: 0 auto;
    height: 100%;
    max-width: 100%; /* Hier anpassen */
    width: 100%; /* Optional, um sicherzustellen, dass die Breite 100% beträgt */
    background: linear-gradient(
      rgba(0, 0, 0, 0.4), 
      rgba(0, 0, 0, 0.8) 
    );
    border-radius: 15px; 
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); 
}


  .line {
    display: none;
  }

  .starter .logo-text{
    font-size: 2.6em;
    text-align: center;
    padding-top: 100px;
  }
  .starter .logo-text-t{
    margin-left: 0%;
  }
  
  .starter .logo-text h1{
    color: white;
  }
  
  .content-holder-str{
    max-width: 1200px; 
    width: 100%; 
    margin: 0 auto; 
    padding: 0;
    position: relative;
  }
  
  
  
  .starter .content-holder-str .main-text h1{
    font-size: 2.6em;
    font-weight: 800;
    color: white;;
    text-align: center;
    margin: 0;
    left: 0;
  }
  
  .starter .content-holder-str .main-text h2{
    font-size: 2.4em;
    text-align: center;
    font-weight: 700;
    position: relative;
    color: white;
    padding-top: 2px;
  }

}


@media only screen and (max-width: 934px){
  .content .main-content.single{
    min-width: 100%; 
  }
    .content {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

  .auth-content{
      width: 50%;
  }

  .footer{
      height: auto;
  }
  
  .footer .footer-content{
      height: auto;
      flex-direction: column;
  }

  .footer .footer-content .contact-form{
      padding-bottom: 90px;
  }

  .footer .footer-content .contact-form .contact-btn{
      width: 100%;
  }
}

@media only screen and (max-width: 835px){

  .content .main-content.single{
    min-width: 100%; 
  }

  .mask {
    margin: 0 auto;
    height: 100%;
    max-width: 700px;
    background: linear-gradient(
      rgba(0, 0, 0, 0.4), 
      rgba(0, 0, 0, 0.8) 
    );
    border-radius: 15px; 
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); 
  }

  .starter .logo-text{
    font-size: 1.5em;
    text-align: center;
    padding-top: 100px;
  }
  .starter .logo-text-t{
    margin-left: 0%;
  }
  
  .starter .logo-text h1{
    color: white;
  }

  
    .line {
      border-bottom: 3px solid white; /* Farbe und Dicke der Linie */
      margin-bottom: 15px;
      margin-left: 315px; /* Abstand links (nach Bedarf anpassen) */
      width: 10%; /* Breite der Linie */
      box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.8); /* Weißer Leuchteffekt */
      border-radius: 80px;
    }
  
  .content-holder-str{
    max-width: 1200px; 
    width: 100%; 
    margin: 0 auto; 
    padding: 0;
    position: relative;
  }
  
  
  
  .starter .content-holder-str .main-text h1{
    font-size: 2em;
    font-weight: 800;
    color: white;;
    text-align: center;
    margin: 0;
    left: 0;
  }
  
  .starter .content-holder-str .main-text h2{
    font-size: 1.85em;
    text-align: center;
    font-weight: 700;
    position: relative;
    color: white;
    padding-top: 2px;
  }
  

  .content .main-content{
      width: 100%;
      padding: 10px;
  }

  .content .main-content{
  flex: 3;
  margin-right: 0;
  max-width: 1400px;
  float: left;
  display: inline;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
  list-style: none;
  padding: 0;
}

  .content .main-content .post{
      width: 100%;
  }

  .content .sidebar{
      width: 100%;
      padding: 10px;
  }

  .content .sidebar .section.search{
      margin-top: 30px;
  }

  .footer .footer-content .contact-form .contact-btn{
    float: right;
    font-size: 1.1em;
    font-family: 'Lora', serif;
    margin: 0 auto;
    margin-top: 2%;
    width: 150px;
    transition: transform 0.3s;
  }
  .page-wrapper{
    min-height: 80%;
  }
  
}

@media only screen and (max-width: 796px){
  header{
      position: relative;
  }
  .content .sidebar.single{
    display: none;
  }
  .mask {
    margin: 0 auto;
    height: 100%;
    max-width: 90%;
    background: linear-gradient(
      rgba(0, 0, 0, 0.4), 
      rgba(0, 0, 0, 0.8) 
    );
    border-radius: 15px; 
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); 
  }
  
    .logo{
      display: flex;
    align-items: center;
    justify-content: center;
  }

  .line {
    border-bottom: 3px solid white; /* Farbe und Dicke der Linie */
    margin-bottom: 15px;
    margin-left: 140px; /* Abstand links (nach Bedarf anpassen) */
    width: 10%; /* Breite der Linie */
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.8); /* Weißer Leuchteffekt */
    border-radius: 80px;
  }

  .starter .logo-text{
    font-size: 1.5em;
    text-align: center;
    padding-top: 100px;
  }
  .starter .logo-text-t{
    margin-left: 0%;
  }
  
  .starter .logo-text h1{
    color: white;
  }
  
  .content-holder-str{
    max-width: 1200px; 
    width: 100%; 
    margin: 0 auto; 
    padding: 0;
    position: relative;
  }
  
  
  
  .starter .content-holder-str .main-text h1{
    font-size: 1.5em;
    font-weight: 800;
    color: white;;
    text-align: center;
    margin: 0;
    left: 0;
  }
  
  .starter .content-holder-str .main-text h2{
    font-size: 1.35em;
    text-align: center;
    font-weight: 700;
    position: relative;
    color: white;
    padding-top: 2px;
  }

  .auth-content{
      width: 90%;
  }

  .main-content-wrapper{
      padding: 10px;
    max-width: 100%;
  }
  header ul{
      width: 100%;
      background: #008489;
      max-height: 0px;
      overflow: hidden;
  }

  .showing{
      max-height: 100em;
  }

  header ul li{
      width: 100%;
  }
  header ul li ul{
      position: static;
      display: block;
      width: 100%;
  }

  header ul li ul li a{
      padding: 10px;
      background: #008489;
      color: white;
      padding-left: 50px;
  }

  header ul li ul li a:hover{
      background: #006669;
  }

  header ul li ul li a.logout{
      color: red;
  }

  header .menu-toggle{
      display: block;
      position: relative;
      font-size: 2em;
      
  }
  header .logo{
      margin-left: .5em;
  }
  .post-slider .next{
      right: 0px;
  }
  .post-slider .prev{
      left: 0px;
  }
  .page-wrapper{
    min-height: 80%;
  }

  .menu-toggle {
    bottom: 3px;
    display: block;
    position: absolute;
    right: 20px; /* Sicherstellen, dass der Button rechts ist */
  }

  .header-right {
    height: 40px;
    position: relative;
  }

    .header-right .nav {
        transition: max-height 0.3s ease-out;
        background-color: var(--bg-color);
        position: absolute;
        font-size: 1em;
        top: 40px;
        right: 0;
        width: 100%;
      z-index:999;
  }
.header-right .nav.showing {
        max-height: 500px;
        display: flex;
        flex-direction: column;
    }

  .header-right .nav li {
    display: block;
    width: 100%;
  }

  .header-right .nav li a {
    display: block;
    padding: 10px;
    color: white;
    font-size: .9em;
    text-align: left;
  }

  .header-right .nav li a.logout {
    color: red;
  }

  .topic-header ul {
    display: none; /* Optional: Themenlinks für kleine Bildschirme ausblenden */
  }
  
}

@media only screen and (max-width: 600px){
   
    .sidebar{
    display: block;
    max-width: 450px;
    padding-top: 20px;
    margin: 0 auto !important;
  }

  
  .content .sidebar.single{
    display: none;
  }

  .sidebar h2::before {
    content: none;
  }
  .content .main-content .post{
      height: auto;
  }

  .content .main-content.single{
      padding: 10px 20px;
  }

 
}

@media(max-width: 530px){
.cards_item {
    display: flex;
    padding: 1rem;
    width: 100%;
}
  
  .content .main-content .recent-post-title {
    width: auto;
}
}


