.logo_footer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo_footer img {
  height: 40px;
}
.footer {
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: left;
}
.footer h3 {
  font-size: 18px;
}
.footer p,
.footer a {
  font-size: 14px;
  text-decoration: none;
}
.footer a:hover {
  transition: 0.3s;
}
.social-ico a {
  margin-right: 10px;
  font-size: 18px;
}
.newsletter input {
  width: 100%;
  padding: 10px;
  background-color: transparent;
  outline: none;
  border-radius: 5px;
  margin-top: 10px;
}
.newsletter button {
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
}
.newsletter button:hover {
}
.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 12px;
}
