#header{
  position: relative;
  height: calc(100vh - var(--menuh));
}

#header::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
  background: black;
  z-index: 2;
}

#header .image-wrapper{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#header .container{
  z-index: 3;
  position: relative;
}

#header .image-wrapper img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#header .scrolldown-container{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

#header .scrolldown{
  width: 6px;
  height: 24px;
  cursor: pointer;
  position: relative;
  display: inline-block;
}

#header .scrolldown::before{
  content: "";
  background: var(--grey-50);
  position: absolute; 
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: bounce;
  animation-duration: 1.5s;
}


@keyframes bounce {
  0% {
    height: 50%;
  }
  30% {
    height: 100%;
  }
  60% {
    height: 50%;
  }
  100% {
    height: 50%;
  }
}

#header .scrolldown:hover::before{
  height: 100%;
}

#lavorazioni .nav-tabs .nav-link.active h4{
  color: var(--grey-50);
}

.peels-container{
  gap: 1rem;
}

.peel{
  border-radius: 1.25rem;
  flex-shrink: 0;
  padding: 0.7rem 1rem;
}

#sceglierci .resizer{
  width: 30%;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
}

#sceglierci .imgContainer{
  padding-top: 100%;
}

@media(max-width: 991px){
  .peels-container {
    gap: 0.6rem;
  }

  .lavorazione-toggle[aria-expanded="true"] h4{
    color: var(--grey-50);
  }
}

@media(min-width: 1200px){
  .box-wrapper::before{
    content: "";
    position: absolute;
    left: 1rem;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--grey-300);
  }
  
}