.site-footer {
  background-color: #333333;
  padding: 40px 30px 28px;
  color: #f5f5f5;
  font-family: 'Raleway', sans-serif;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.footer-column {
  flex: 1;
  text-align: center;
}

.footer-logo {
  height: 95px;
  width: auto;
  object-fit: contain;
  margin-bottom: 35px;
}

.cihr-logo {
  background-color: white;
  padding: 0;
}

.footer-column p {
    font-family: 'Raleway', sans-serif;
  color: #c8c8c8;
  font-size: 22px;
  /* line-height: 1.85; */
  /* font-weight: 600; */
  margin: 0;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 120px;
}

.footer-socials a {
  width: 39px;
  height: 39px;
  background-color: #f5f5f5;
  color: #333333;
  text-decoration: none;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 6px;
  font-weight: bold;
  font-size: 20px;

  transition: transform 0.2s ease, background-color 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-4px);
  background-color: #dcdcdc;
}