/* ________________________________________________________ */
/* _  Footer _____________________________________________ */
/* ________________________________________________________ */

footer{
  position: relative;
  display: block;
}

footer a {
color: white;
}

footer.footer{
	background: var(--grey1);
  margin-top: 100px;
}

.footer-icons a img{
   filter: grayscale(70%);
}

/* ________________________________________________________ */
/* _  Grid_4    _____________________________________________ */
/* ________________________________________________________ */
footer .grid4 {
    display: grid;
    padding: 10px;
    gap: 5px; 
  }
    
footer .grid4item4{

}

footer .grid4item4 p{

 }

footer .img_icons{
  width: 35px;
  height: 35px;
 }


footer .tooltip {
 

}

footer .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  top: 55px;
  right: 150px;
  z-index: 1;
}

footer .tooltip:hover .tooltiptext {
  visibility: visible;
}

