.footer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  background: linear-gradient(
    90deg,
    #111827 55%,
    #1f2937 100%
  );
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer-title {
  text-align: center;
  margin: 0;
  font-size: 28px;
  color: white;
}

.footer-call {
  width: clamp(
    320px,
    calc(1450 / var(--max-width) * 100vw),
    1450px
  );
  font-size: clamp(
    22px,
    calc(48 / var(--max-width) * 100vw),
    28px
  );
  max-width: 98vw;
  text-align: center;
  font-weight: 280;
  color: #ffffff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.16);
}

.footer-card-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
}

.footer-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  width: 90vw;
  min-height: 100px;
  background-color: transparent;
  color: white;
}

.footer-card-title {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}

.footer-call2 {
  line-height: 1.5;
}

.divider {
  height: 1px;
  width: 80%;
  background-color: #2b3543;
}

.finalInfo {
  color: white;
}

.developer {
  color: rgb(5, 121, 204);
}

@media (min-width: 769px) {
  .footer {
    padding: 48px;
  }
  .footer-title {
    font-size: 42px;
    text-align: center;
  }
  .footer-call {
    font-size: clamp(
      20px,
      calc(48 / var(--max-width) * 100vw),
      20px
    );
    color: #ffffff;
    font-weight: 300;
    text-align: center;
  }
  .footer-card-block {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  .footer-card {
    gap: 16px;
    padding: 24px;
    border-radius: 16px;
    width: 25%;
    min-height: 100px;
    background-color: transparent;
    color: white;
  }
}
