.footer {
  width: 100%;
  height: 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  padding: 1vw 5vw;
  box-sizing: border-box;
  background-color: #101010;
  background-position: center;
  background-size: cover;
  border-top: 0.2vw solid var(--primaryColor);
}

.logo-footer-container {
  height: 70%;
  width: max-content;
  position: relative;
}

.logo-footer-container .link {
  width: max-content;
  height: 100%;
}

.logo-footer {
  width: auto;
  height: 100%;
}

.copyright-message {
  color: var(--secondaryParagraphColor);
  font-size: var(--paragraphFontSize);
  font-family: var(--specialTextFont);
  font-weight: 700;
  text-align: center;
  width: 50%;
  padding: 1vw 0;
  margin: 0;
  border-radius: 0.2vw;
}

.footer-social-networks-container {
  width: max-content;
  height: auto;
}

.footer-networks-list {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-networks-list .link {
  margin: 0 1vw;
  text-decoration: none;
}

.network-element {
  color: var(--primaryColor);
  font-size: 2vw;
}

@media(max-width: 700px){
  .footer{
    height: 15vw;
    border-top: 0.5vw solid var(--primaryColor);
  }

  .copyright-message{
    display: none;
  }

  .network-element{
    font-size: 7.5vw;
  }
  
  .footer-networks-list{
    justify-content: space-between;
  }
}
