#get-in-touch {
  align-items: center;
  justify-content: center;
  gap: 64px;
  padding: 0px 0 120px 0;
  margin-top: -120px;
  display: flex;
  position: relative;
  align-self: stretch;
  width: 100%;
}

#get-in-touch .text-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

#get-in-touch .text-panel .title {
  width: 325px;
  font-weight: 700;
  color: var(--color-accent-4);
  font-size: 96px;
  letter-spacing: 0;
  line-height: normal;
}

#get-in-touch .text-panel .description {
  color: var(--color-accent-4);
  font-size: 24px;
  letter-spacing: 0;
  line-height: normal;
}

#get-in-touch .input-panel {
  width: 710px;
  max-width: 710px;
  --banner-background-color: var(--color-accent-2);
  --banner-shadow-color: var(--color-accent-3);
}

#get-in-touch .input-panel .text-panel-mobile {
  display: none;
}

#get-in-touch .input-panel-form {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-end;
  padding: 40px;
  gap: 12px;
}

#get-in-touch .input-panel-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

#get-in-touch .question {
  grid-column: span 2;
}

#get-in-touch .question .custom-input {
  min-height: 200px;
  width: 100%;
}

#get-in-touch .input-panel-container > .input-row {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

#get-in-touch .button-secondary {
  color: var(--color-background-1);
  width: 200px;
}

#get-in-touch .result-message {
  align-self: center;
  font-size: 16px;
  height: 0;
  opacity: 0;
  transition: ease-in-out 300ms;
  transition-property: opacity;
  white-space: break-spaces;
}

#get-in-touch .result-message.visible {
  height: unset;
  opacity: 1;
}

#get-in-touch .submission-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  align-items: flex-end;
}

#get-in-touch .submission-row .slide-to-unlock {
  width: 100%;
  height: 20px;
}

@media only screen and (max-width: 1280px) {
  #get-in-touch {
    padding: 0 32px 64px 24px;
    margin-top: -60px;
  }

  #get-in-touch .text-panel {
    display: none;
  }

  #get-in-touch .input-panel {
    width: 100%;
  }

  #get-in-touch .input-panel .text-panel-mobile {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px 24px 22px;
    color: var(--color-background-1);
  }

  #get-in-touch .input-panel .text-panel-mobile .title {
    font-weight: 600;
    font-size: 32px;
    letter-spacing: 0;
    line-height: normal;
  }

  #get-in-touch .input-panel .text-panel-mobile .description {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: normal;
  }

  #get-in-touch .input-panel-form {
    padding: 0 24px 24px;
    width: 100%;
  }

  #get-in-touch .input-panel-form .input-panel-container {
    grid-template-columns: 1fr;
  }

  #get-in-touch .question  {
    grid-column: unset;
  }
}

@media only screen and (max-width: 480px) {
  #get-in-touch .submission-row {
    flex-direction: column;
    gap: 10px;
  }
}
