.footer {
  border-top: 1px solid #eee;
  background-color: white;
}

.footer-container{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 20px;
  justify-items: center;
  justify-content: center;
  align-items: flex-start;
  padding: 100px 0px 25px 0px;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  margin-bottom: 40px;
}
.footer-heading {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 35px;
}

.contacts {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
}
.address {
  margin-bottom: 40px;
  color: #555;
}
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-link:link,
.footer-link:visited {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  transition: all 0.3s;
  color: #555;
}
.footer-link:link span,
.footer-link:visited span{
  font-size: 16px;
  text-decoration: none;
  color: #555;
}
.footer-link:link svg,
.footer-link:visited svg{
  width: 20px;
  height: 20px;
  stroke: #555;
}

.footer-link:hover,
.footer-link:active {
  color: var(--primary-color);
}

.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 50px 25px 50px;
  border-top: 1px solid whitesmoke;
}

.copyright {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  word-spacing: 2px;
}

.social-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.social-links li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: whitesmoke;
  border-radius: 50%;
  cursor: pointer;
}

.social-links li:hover{
  background-color: var(--primary-color);
}
.social-links li:hover .social-icon{
  filter: invert(1);
}
.social-icon {
  height: 25px;
  width: 25px;
}

.social-icon:hover{
  cursor: pointer;
}

.social-links-2{
  display: none;
}