/* === HEADER DESKTOP === */
.footer {
  width: 100%;
  backdrop-filter: blur(10px);
  background: rgba(26, 26, 26, 0.767);
  z-index: 1000;
  transition: all 0.3s ease;
}




.footer-links {
  list-style-type: none;
  margin: 0;
  padding: 0;
}



.footer-rows {
display: flex; 
flex-direction: row;
justify-content: space-between;
margin-top: 0px;
  padding: 3em 2em;
  color: rgb(172, 172, 172);



}

.row-1 {
width: 50%;
display: flex;
flex-direction: column;

}


.row-2
{ 
width: 25%;
padding: auto;
text-align: left;
}


.row-3 { 

width: 25%;
padding: auto;
align-content: right;


}

@media (max-width: 480px) {
.footer-rows {
display: flex; 
flex-direction: column;  
}


.row-1, 
.row-2,
.row-3 {

width: 100%;
margin-top: 24px;


}

}



.footer-logo { 

border-bottom: 1px solid var(--site-accent, #ed006a);
width: 50%;
position: relative;

}

.footer-company {


width: 50%;
position: relative;
margin-top: 12px;
}

.footer-company p {
font-size: 0.8rem;
color: rgb(172, 172, 172);

}


