*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Sora", sans-serif;
}

footer {
  font-size: 16px;
  background: #221f24;
  padding: 2em 4em;
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 1em;
}

footer ul {
  list-style: none;
}

.col {
  flex: 1;
}

.col-title {
  font-size: 1.1em;
  font-weight: 500;
  padding: 0.5em 0;
}

.col-list a {
  color: #f4f4f4;
  text-decoration: none;
  line-height: 1.4;
  font-weight: 400;
  transition: all 0.4s ease;
}

.col-list a:hover,
.col-list a:focus {
  color: #fde908;
}

.form-title,
.social-col-title {
  font-size: 1em;
  color: #f4f4f4 !important;
  font-weight: 500;
}

.social-media {
  flex-direction: column;
}

.social-media-list {
  display: flex;
  gap: 0.5rem;
}

.social-media-list a {
  padding: 0.5em;
  display: flex;
  border-radius: 0.3em;
  transition: all 0.25s ease 0s;
}

.social-media-list a:hover {
  background: rgba(253, 233, 8, 0.5);
}

.social-media-list svg {
  width: 1.5em;
  height: 1.5em;
  transition: all 0.25s ease 0s;
}

@media screen and (max-width: 750px) {
  footer {
    padding: 2em;
    flex-direction: column;
  }
}
