footer {
  background-color: var(--blue-color);
}

footer .container {
  padding: 1rem 10vw;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  color: white;
}

footer .container .rs {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
}

footer .call-to-action {
  padding: 2rem 0;
}

footer .call-to-action .left {
  max-width: 60%;
}

footer .call-to-action .left h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

footer .call-to-action .left p {
  font-size: 0.9rem;
  line-height: 1.4rem;
}

footer .call-to-action .left .contact {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 2rem;
}

footer .call-to-action .left .contact a i {
  margin-right: 0.5rem;
}

footer .call-to-action .right {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
}

footer .call-to-action .btn {
  padding: 1rem;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
footer .call-to-action .secondary {
  background-color: white;
  color: var(--primary-color);
}

footer .call-to-action .primary {
  background-color: var(--green-color);
}

footer .call-to-action .btn:hover {
  transform: scale(1.03);
}

footer .copyright {
  padding-top: 1rem;
  border-top: 1px solid #eeeeee47;
}

footer .container .rs svg {
  height: 1.4rem;
  fill: white;
}

@media only screen and (max-width: 997px) {
  footer .container {
    flex-wrap: wrap;
    padding: 1rem 7.5vw;
  }

  footer .call-to-action {
    padding: 2rem 0;
  }

  footer .call-to-action .left {
    max-width: 100%;
  }

  footer .call-to-action .left h2 {
    font-size: 1.8rem;
  }

  footer .call-to-action .left .contact {
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 997px) {
  footer .container {
    padding: 1rem 5vw;
  }

  footer .call-to-action .left h2 {
    font-size: 1.6rem;
  }

  footer .call-to-action .left .contact {
    gap: 1rem;
  }

  p {
    font-size: 0.8rem;
  }

  footer .call-to-action .right {
    flex-wrap: wrap;
  }

  footer .call-to-action .btn {
    width: 100%;
    text-align: center;
  }
}
