#footer {
  border-top: 1px solid var(--color-border);
}

#footer .bottom-footer,
#footer .left-footer {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

#footer .left-footer {
  gap: 50px;
}

#footer .footer-links {
  display: flex;
  align-items: center;
  gap: 5px;
}

#footer .copyright {
  display: flex;
  align-items: center;
}

#footer .social-block {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-direction: row;
}

#footer .social-block a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #000;
  border-radius: 50%;
}

#footer .social-block a svg {
  fill: #fff;
  width: 20px;
  height: 20px;
}

#footer .footer-container {
  padding: 0 27px;
  position: relative;
}

#footer .contact-flex-container {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

#footer,
#footer div,
#footer a {
  font-size: 13px;
  color: var(--color-primary);
  font-weight: normal;
}

#footer a:hover {
  color: var(--color-link-hover);
}

#footer p {
  font-size: 12px;
}

#footer .contact-item {
  font-weight: 500;
}

#footer .footer-container .row {
  margin-bottom: 10px;
}

.footer-container > .container {
  width: 100%;
}

#footer .language-selector-wrapper{
  position: absolute;
  top:0;
  right: 42px;
}


@media (max-width: 768px) {
  #footer .bottom-footer,
  #footer .left-footer {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  #footer .social-block {
    padding: 10px 0;
  }

  #footer .footer-container {
    padding: 0;
  }

  #footer .language-selector-wrapper{
    display:none;
  }
}

@media (max-width: 480px) {
  #footer .footer-links a {
    font-size: 10px;
  }
}



