.contactForm {
  display: grid;
  width: 100%;
  background-color: #f6f1ed;
}

.contactForm-container {
  max-width: 1148px;
  background-color: white;
  margin: auto;
  grid-row: 1;
  grid-column: 1/4;
  z-index: 99;
}

@media screen and (min-width:750px){
  .contactForm-container {
    grid-column: 2;
    grid-row: 1;
    
    margin-top: 160px;
  }
  .contactForm{
    padding-bottom: 126px;
  }
}

.contactForm-map-image {
  width: 100%;
  height: auto;
}

.contactForm-content {
  padding: 52px;
}

.contactForm-content-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.contactForm-content-header * {
  min-width: 0;
}

.contactForm-content-header-right {
  grid-column: unset;
}
.contactForm-content-header-left {
  grid-column: 1/2;
}
.contactForm-content-header-headline {
  font-size: 48px;
  line-height: 58px;
  font-weight: bold;
  font-family: stolzl, sans-serif;
  letter-spacing: 0px;
  color: #000000;
  /* margin-bottom:25px; */
}

.contactForm-content-header-button {
  background: #f6f1ed 0% 0% no-repeat padding-box;
  font-size: 20px;
  line-height: 24px;
  font-family: stolzl, sans-serif;
  font-weight: bold;
  padding: 22px 34px;
  letter-spacing: 0px;
  color: #ea3f34;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.fui-input{
  border-radius: 0!important;
}
.fui-select{
  border-radius: 0 !important;
}
.contactForm-content-header-address {
  font-size: 20px;
  line-height: 24px;
  font-family: stolzl, sans-serif;
  /* font-weight: bold; */
  letter-spacing: 0px;
  color: #000000;
}

.contactForm-content-header-email {
  font-size: 20px;
  line-height: 24px;
  font-family: stolzl, sans-serif;
  font-weight: bold;
  letter-spacing: 0px;
  color: #f8483b;
  text-decoration: none;
}

.contactForm-content-header-email a {
  color: inherit;
  text-decoration: none;
}

.contactForm-content-instruct {
  padding-top: 0;
  font-size: 26px;
  line-height: 32px;
  font-family: stolzl, sans-serif;
  font-weight: bold;
  letter-spacing: 0px;
  color: #000000;
  grid-column: unset;
  padding-right: 0;
}

.contactForm-content-form {
  padding-top: 48px;
}

.contactForm-content-form .gradient-button {
  margin: 0;
}

.gradient-button .fui-btn {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  width: auto;
}

.gradient-button .fui-btn:hover {
  background: none;
  color: var(--black);
}

.fui-btn-wrapper.gradient-button {
  padding-bottom: 21px;
  padding-top: 23px;
  justify-content: center;
  align-items: center;
}

.contact-grid-top-left {
  grid-column: 1;
  grid-row: 1;
  place-self: start end;
  position: relative;
  top: 25%;
}

.contact-grid-bot-left {
  grid-column: 1;
  grid-row: 1;
  place-self: end center;
  position: relative;
  bottom: 5%;
}

.contact-grid-top-right {
  grid-column: 3;
  grid-row: 1;
  position: relative;
  top: 5%;
}

.contact-grid-bot-right {
  grid-column: 3;
  grid-row: 1;
  place-self: end start;
  position: relative;
  bottom: 15%;
}

.fui-row {
  flex-direction: column;
}

@media (min-width: 980px) {
  .contactForm-content-header {
    grid-template-columns: 2fr 1fr 1fr;
    gap: unset;
  }
  .contactForm-content-header-right {
    grid-column: 3/4;
  }
  .contactForm-content-instruct {
    grid-column: 1/3;
    padding-top: 66px;
    padding-right: 108px;
  }
  .fui-row {
    flex-direction: unset;
  }
}
