footer {
  background-color: var(--lt-grey2);
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 22px 38px;
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer p {
  color: var(--grey);
  font-size: 14px;
}

footer a {
  color: var(--grey);
  transition: 0.3s all ease;
  font-size: 14px;
}

footer span {
  color: var(--grey);
  margin: 0 4px;
}

footer a:hover {
  color: #555759;
}

.signup-footer {
  margin-top: -66px;
}

/* @media only screen and (min-width: 1800px) {
  .signup-footer {
    margin-top: -73px;
  }
  footer p {
    font-size: 20px;
  }
  footer {
    min-height: 70px;
  }
} */

@media screen and (max-width: 1024px) {
  footer {
    padding: 22px 20px;
  }
}

@media only screen and (max-width: 991px) {
  footer {
    padding: 20px 30px;
  }
  .signup-footer {
    margin-top: -60px;
  }
}

@media only screen and (max-width: 767px) {
  footer p {
    font-size: 12px;
  }
  footer a {
    font-size: 12px;
  }
  footer {
    min-height: 45px;
    padding: 15px;
  }
  .signup-footer {
    margin-top: -47px;
  }
}
@media only screen and (max-width: 650px) {
  .signup-footer {
    justify-content: center;
  }
}
@media only screen and (max-width: 450px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
  }
  footer .container .left {
    margin-bottom: 5px;
  }
  footer {
    padding: 15px;
  }
}
