body {
  margin: 0;
}

footer.webflow-footer {
  background-image: linear-gradient(135deg, #1c1624, #232031);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 30px 40px;
}

a > img.vs-logo {
   width: 100%;
   max-width: 210px;
   max-height: 41px;
}

footer.webflow-footer > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

footer.webflow-footer > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer.webflow-footer > div:first-child > div:nth-child(2),
footer.webflow-footer > div:first-child > div:nth-child(3) {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

footer.webflow-footer > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

footer.webflow-footer > div:last-child p {
  margin: 0.5rem 0.5rem 0.25rem;
  font-family: "sweet-sans-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  box-sizing: border-box;
  color: #979797;
  -webkit-text-stroke-color: #fff;
  font-size: 16px;
  line-height: 24px;
}

.footer-title {
  font-family: "sweet-sans-pro", sans-serif;
  font-style: normal;
  box-sizing: border-box;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  max-width: 350px;
}

.footer-nav a {
  font-family: "sweet-sans-pro", sans-serif;
  font-style: normal;
  box-sizing: border-box;
  background-color: #0000;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  letter-spacing: normal;
  justify-content: flex-start;
  align-items: center;
  transition: all .35s;
  display: inline-flex;
  text-transform: none;
  color: #7a7e8d;
  margin-top: 20px;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #1a1b1fbf;
}

footer.webflow-footer > div:last-child a {
  font-family: "sweet-sans-pro", sans-serif;
  font-style: normal;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  outline: 0;
  color: #ffffff;
  text-decoration: none;
  margin: 0.25rem 0.5rem;
}

footer.webflow-footer > div:last-child a:hover {
  opacity: 0.7;
}

footer.webflow-footer > div:last-child a img {
  max-width: none;
}

form#footer-form {
  display: flex;
  flex-direction: column;
}

.footer-form-text {
  font-family: "sweet-sans-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  box-sizing: border-box;
  color: #b3b3b3;
  font-size: 16px;
  line-height: 24px;
  max-width: 350px;
}

#status {
  margin-bottom: 0;
}

#status.footer-form-done {
  font-family: "sweet-sans-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  box-sizing: border-box;
  text-align: center;
  background-color: #ddd;
  padding: 20px;
  display: inline-flex;
  justify-content: center;
}

#status.footer-form-error {
  font-family: "sweet-sans-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  box-sizing: border-box;
  background-color: #ffdede;
  margin-top: 10px;
  padding: 10px;
  display: inline-flex;
}

.footer-form-input {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  max-width: 315px;
  width: 100%;
  font-family: "sweet-sans-pro", sans-serif;
}

input[type='email']{
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  height: 48px;
  width: calc(100% - 100px);
  margin-bottom: 0;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 22px;
  font: inherit;
  transition: all .2s;
  box-sizing: border-box;
  font: inherit;
  margin: 0;
  color: #333;
  background-color: #fff;
  width: 100%;
  display: block;
  border: 1px solid #a6b1bf;
  height: 48px;
  margin-bottom: 0;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 22px;
  transition: all .2s;
  background-attachment: scroll !important;
}
input[type='submit']{
  width: 100px;
  height: 48px;
  color: rgb(24, 27, 48);
  background-color: #dfc3a1;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border: none;
  transition: all .2s;
  box-sizing: border-box;
  font: inherit;
  margin: 0;
  line-height: inherit;
  cursor: pointer;
  padding: 9px 15px;
  text-decoration: none;
  display: inline-block;
  transition: all .2s;
  background-attachment: scroll !important;
}

footer.webflow-footer hr {
  border: none;
  border-top: 1px solid #e0c3a12e;
  width: 100%;
  margin: 40px 0;
}


@media (max-width: 30rem) {
  footer.webflow-footer > div:first-child {
    align-items: flex-start;
  }
  footer.webflow-footer > div:last-child a:last-child {
    margin-top: 20px;

  }
}

@media (min-width: 30rem) {
  footer.webflow-footer > div,
  footer.webflow-footer hr {
    max-width: 45.5rem;
  }
  footer.webflow-footer > div:first-child {
    /* Switch to grid for the desktop layout */
    display: grid;
    grid-template-columns: auto auto auto; /* Creates 3 columns for the first 3 items */
    justify-content: space-between;
    align-items: start;
    /* Note: 'gap: 20px' is already inherited from your mobile flex rules, 
       which perfectly spaces the grid items too! */
  }

  form#footer-form {
    /* Forces the form to the next row and spans across all 3 columns */
    grid-column: 1 / -1; 
    margin-top: 10px; /* Optional: adjust if you need extra breathing room */
    margin-block-end: 0;
  }

  .footer-form-text {
    max-width: 315px;
  }

  .footer-title {
    max-width: 315px;
  }

  footer.webflow-footer > div:last-child p {
    white-space: nowrap;
    margin: 0.5rem 0.5rem;
  }

  footer.webflow-footer > div:last-child {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
}

@media (min-width: 62rem) {
  footer.webflow-footer > div,
  footer.webflow-footer hr {
    max-width: 58.75rem;
  }
  footer.webflow-footer > div:first-child {
    /* Updates the grid to have 4 columns */
    grid-template-columns: auto auto auto auto; 
  }

  footer.webflow-footer > div:last-child {
    justify-content: center;
  }

  footer.webflow-footer > div:last-child a {
    text-transform: uppercase;
    white-space: nowrap;
  }

  form#footer-form {
    /* Resets the span so it naturally flows into the 4th column */
    grid-column: auto; 
    margin-top: 0; /* Resets the top margin if you added it in the 30rem query */
  }
}

@media (min-width: 90rem) {
  footer.webflow-footer > div,
  footer.webflow-footer hr {
    max-width: 75rem;
  }

  footer.webflow-footer > div:last-child {
    justify-content: space-between;
  }

}