footer {
    background-color: black;
    height: fit-content;
}


footer .footer-container {
    margin: auto;
    padding: 30px 18px 5px 18px;
}

footer .first-row {
 display: flex;
 justify-content: space-between;
}

.svg-email {
  height: 30px;
  width: auto;
  transform: translateY(9px);
}

.svg-phone {
    height: 28px;
    width: auto;
    transform: translateY(4px);
  }
  

footer .copyright {
    color: var(--blue);
    border: 1px solid var(--blue);
    padding: 3px;
    width: fit-content;
    height: fit-content;
    margin: auto 0;
}

@media only screen and (min-width: 600px) {}

/* desktop */
@media only screen and (min-width: 1200px) {
    footer .footer-container {
        width: var(--desktop-width);
    }

    footer .labels {
    }

    footer .footer-label-3 {
        flex-direction: row;
    }
}