.footer {
  background: #212121;
  padding: 50px 20px;
}
.footercontaner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.footerSections {
  color: white;
  padding: 0.6rem 0;
  flex-basis: 18%;
}
.footerSections > h3 {
  font-size: 1rem;
}
.footersection_content a {
  font-size: 0.8rem;
  opacity: 0.6;
  line-height: 30px;
  color: white;
  transition: 0.3 ease opacity;
}
.footersection_content a:hover {
  opacity: 1;
}
.form {
  display: flex;
  align-items: center;
  width: 100%;
}
.form input {
  border: none;
  outline: none;
  padding: 0.6rem;
  margin: 1rem 0;
  background: #f5f5f5;
}
.footer_button input {
  transition: 0.3s ease background;
  color: white;
  background: var(--primaryColor);
}
.footer_button :hover {
  background: var(--primaryColor-hover);
}
.footerSlogan{
  text-align: right;
  font-weight: 600;
  font-size: 2rem;
  opacity: 70%;
}
@media only screen and (max-width: 570px) {
  footer .footerSections {
    flex-basis: 100%;
    margin: 0 auto;
  }
  .footerSlogan{
    text-align: left;
    font-weight: 600;
    font-size: 2rem;
    opacity: 70%;
  }
}
