body {
  background: var(--white);
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--black);
}
.section-projects #filter-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
  z-index: 1000;
}
.section-projects .point {
  width: 30px;
  height: 30px;
  border-radius: 100%;
}
.section-projects #filter-nav > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-projects #filter-nav .point-li {
  cursor: pointer;
}
.section-projects #filter-nav .point-li .list-category {
  padding: 1rem 0;
  cursor: pointer;
}
.section-projects #filter-nav .stroke {
  height: 4px;
  width: 100px;
  margin-top: 12px;
  border-radius: 50px;
}
/* section projekte */
.allProjects {
  padding-top: 0;
}
.container-projects .projects {
  display: flex;
  gap: 5rem;
  margin-bottom: 10rem;
}
.container-projects .projects:nth-of-type(even) {
  flex-direction: row-reverse;
}
.container-projects .projects .container-img {
  width: 50%;
  position: relative;
  cursor: pointer;
}
.container-projects .projects .img-device {
  width: 100%;
}
.container-projects .container-img .tech {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--opablack);
  border-radius: 10px;
  top: 0;
  padding: 3rem;
  opacity: 0;
  transition: 0.5s ease;
}
.container-projects .container-img .tech .container-brand-icon {
  grid-template-columns: repeat(4, 1fr);
}
.container-projects .container-img .tech h3 {
  color: var(--white);
  padding-bottom: 2rem;
}
.container-projects .projects .tech:hover {
  opacity: 1;
}
.container-discription {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  gap: 5rem;
}
/* fade animation*/
.fade {
  animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* media-queries */
@media screen and (max-width: 1200px) {
  .section-projects .bg-black {
    margin-bottom: 0;
  }
  .section-projects #filter-nav {
    margin-top: 0;
    overflow-x: auto;
    position: sticky;
    top: 0;
    background: var(--green);
  }
  .section-projects #filter-nav .stroke,
  .point {
    display: none;
  }
  .section-projects #filter-nav .point-li .list-category {
    padding: 2rem;
  }
  .container-projects .projects {
    flex-direction: column;
  }
  .container-projects .projects:nth-of-type(even) {
    flex-direction: column;
  }
  .container-projects .projects .container-discription {
    width: 100%;
  }
  .container-projects .projects .container-img {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .section-projects #filter-nav {
    justify-content: flex-start;
  }
  .container-projects .projects {
    margin-bottom: 5rem;
    gap: 2rem;
  }
}

@media screen and (max-width: 500px) {
  .section-projects #filter-nav {
    justify-content: flex-start;
  }
  .container-projects .container-img .tech {
    padding: 1rem 0;
  }
}
