:root {
  --max-width-container: 76.5rem;
  --bs-gutter-x: 1.5rem;
}
.bg-primary-blue {
  background-color: #80B6E0;
}
.pt-10 {
  padding-top: 2.5rem;
}
.pt-20 {
  padding-top: 2.5rem;
}
.pb-12 {
  padding-bottom: 3rem;
}
.col-span-full {
  grid-column: 1/-1;
}
.grid-cols-2 {
  grid-template-columns: repeat(2,minmax(0,1fr));
}
.col-span-2 {
  grid-column: span 2/span 2;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.f-container {
  position: relative;
  margin-left: 1.25rem;
  margin-right: 1.25rem;
  max-width: var(--max-width-container);
}
.footer-contact-container {
  position: relative;
}
.section-spacing-top-none {
  margin-top: 0;
}
.section-spacing-bottom-negative-x-sm {
  margin-bottom: -.75rem;
}
.werk-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  -moz-column-gap: .5rem;
  column-gap: .5rem;
}
.contact-form-field label{
  font-size: 1rem;
  width: 100%;
}
.contact-form-field input {
  display: block;
  box-sizing: border-box;
  border: 0;
  border-radius: 0;
  width: 100%;
  color: hsla(0,0%,100%,.9);
  background-color: transparent;
  border-bottom: 1px solid hsla(0,0%,100%,.75);
  padding: .5rem 1.2rem .5rem 0;
}
.contact-form-field textarea {
  display: block;
  box-sizing: border-box;
  padding: .5rem 0;
  border-radius: 0;
  border: 0;
  width: 100%;
  height: 7rem;
  color: hsla(0,0%,100%,.9);
  background-color: transparent;
  min-height: 3lh;
  border-bottom: 1px solid hsla(0,0%,100%,.75);
}
.contact-form-field input[type="text"]:focus,
.contact-form-field textarea:focus {
  outline: none;
  border-bottom-width: 5px;
  margin-top: -2px;
}
.contact-form-field input[type="submit"] {
  background: #1956A9;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 9999px;
  padding: .5rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #FFF;
  width: auto;
  border-bottom: 0;
}
.contact-form-field input[type="submit"]:hover {
  background: #0a1d37;
  color: #fff;
}
.contact-form-field p {
  margin: 0;
}
.pt-footer-contact {
  padding-top: 4rem;
}

/* responsive */
@media (min-width:375px) {
  .f-container {
    margin-right: calc(var(--bs-gutter-x) * .5);
    margin-left: calc(var(--bs-gutter-x) * .5);
  }
}
@media (min-width:768px) {
  .md\:pt-20 {
    padding-top:5rem;
  }
  .section-spacing-bottom-negative-x-sm {
    margin-bottom: -1.5rem;
  }
  .werk-grid {
    grid-template-columns: repeat(12,minmax(0,1fr));
    -moz-column-gap: 1rem;
    column-gap: 1rem;
  }
  .md\:col-span-1 {
    grid-column: span 1/span 1;
  }
  .f-container {
    margin-left: 3.75rem;
    margin-right: 3.75rem;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width:1024px) {
  .lg\:pt-20 {
    padding-top:5rem;
  }
  .lg\:pb-20 {
    padding-bottom: 5rem;
  }
  .section-spacing-bottom-negative-x-sm {
    margin-bottom: -2.5rem;
  }
  .lg\:col-start-1 {
    grid-column-start: 1;
  }
  .lg\:col-span-5 {
    grid-column: span 5/span 5;
    grid-column-start: span 5;
  }
  .lg\:col-start-7 {
    grid-column-start: 7;
  }
  .lg\:col-span-6 {
    grid-column: span 6/span 6;
  }
  .pt-footer-contact {
    padding-top: 6rem;
  }
  .f-container {
    margin-left: 5.75rem;
    margin-right: 5.75rem;
  }
}
@media (min-width:1440px) {
  .section-spacing-bottom-negative-x-sm {
    margin-bottom: -2.5rem;
  }
  .werk-grid {
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
  }
  .xl\:col-start-2 {
    grid-column-start: 2;
  }
  .xl\:col-span-5 {
    grid-column: span 5/span 5;
  }
  .contact-form-field input[type="submit"] {
    padding: .5rem 1.5rem;
  }
  .pt-footer-contact {
    padding-top: 6.8rem;
  }
  .f-container {
    margin-left: auto;
    margin-right: auto;
  }
}