#footer {
    position: relative;
  	bottom: 0;
  	width: 100%;
    height: 2.5rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

#footer a {
    text-decoration: none;
}

#footer a:hover {
    cursor: pointer;
}

#footer nav {
    flex: 0 35 100%;
}

#footer ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 40px;
}

#footer div {
    flex: 0 15 100%;
    text-align: end;
    margin-right: 40px;
    color: rgb(195 169 99)
}


.social-list li.facebook-icon a:before {
    content: "\f09a";
    font-size: 35px;
    color: rgb(195 169 99);
}

.social-list li.twitter-icon a:before {
    content: "𝕏";
    font-size: 35px;
    color: rgb(195 169 99);
}

.social-list li.instagram-icon a:before {
    content: "";
    font-size: 35px;
    color: rgb(195 169 99);
}

.social-list li.linkedin-icon a:before {
    content: "\f0e1";
    font-size: 35px;
    color: rgb(195 169 99);
}

@media (max-width: 768px) {
    #footer {
        flex-wrap: wrap;
    }
  	.social-list li.linkedin-icon a {
      margin-right: 30px
  	}
  	#footer div {
      margin-top: 20px;
      margin-right: 0;
      text-align: center;
  	}

}