/*
  BANNER v 1.1;
  05/2023;
  João Diogo Pereira;
*/

.banner__item{
  height: calc(95vh - var(--headerSize));
  height: calc(95svh - var(--headerSize));
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.scroll-down{
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  z-index: 1;
  border: 0;
  background-color: transparent;
  z-index: 2;
  transition: all .3s ease-in-out;
}

.scroll-down:hover{
  transform: translateX(-50%) translateY(5px); 
}

.scroll-down svg path{
  fill: var(--white);
  transition: all .3s ease-in-out;
}

.scroll-down:hover svg path{
  fill: var(--green);
}

@media only screen and (max-width:1200px) and (orientation: portrait){
  .banner__item{
    height: 50vh;
    height: 50svh;
  }
}

@media only screen and (max-width: 767px){
  .scroll-down svg{
    width: 50px;
    height: 50px;
  }
}