.footer__container {
  margin-top: 100px;
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 2px solid #007d32;
}
@media (max-width: 600px) {
  .footer__container {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 345px) {
  .footer__container .socials__icon {
    display: none;
  }
}

.copyright {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  /* identical to box height */
  color: #000000;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.socials__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  transition-duration: 0.3s;
}
.socials__icon:hover {
  background: #ffed00;
}
.socials__icon:hover path {
  fill: #007d32;
}
