* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  color: #333;
  background-color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

img {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
}

.main {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  gap: 4rem;
  max-width: 56.25rem;
  min-height: 100svh;
  margin-right: auto;
  margin-left: auto;
  padding: 3.5rem;
}

.logo_holder,
.info {
  width: 100%;
}

.info {
  display: flex;
  flex-flow: column;
  gap: 3.5rem;
}

.h2_holder {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #3333331a;
}

.f_h2 {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  line-height: 1.4;
}

.tag_holder {
  display: flex;
  flex-flow: wrap;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.linktag,
.send_btn {
  display: inline-block;
  padding: 9px 15px;
  border: 0;
  border-radius: 0.5rem;
  font-family: "DM Sans", sans-serif;
  font-size: 2rem;
  font-weight: 200;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.linktag {
  color: #333;
  background-color: #ebebeb;
}

.form_block {
  margin-bottom: 0;
  padding-top: 2rem;
}

.form,
.form_flex {
  display: flex;
  flex-flow: column;
  gap: 1rem;
}

.form_group {
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
}

.form_entry {
  flex: 1;
}

.form_label {
  display: block;
  margin-bottom: 0;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}

.form_field {
  display: block;
  width: 100%;
  height: 38px;
  margin-bottom: 10px;
  padding: 8px 12px 8px 0;
  color: #333;
  background-color: #fff;
  border: 1px solid transparent;
  border-bottom: 1px dashed #3333333b;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}

.form_field:focus {
  border-bottom-color: #3898ec;
  outline: 0;
}

textarea.form_field {
  height: auto;
  min-height: 38px;
  overflow: auto;
  resize: vertical;
}

.send_btn {
  color: #fff;
  background-color: #333;
}

.send_btn:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form_trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.form_status {
  min-height: 1.4em;
  margin: 0;
  color: #9c2d2d;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
}

.cf-turnstile {
  max-width: 100%;
}

.thanks {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  min-height: 100svh;
  padding: 2.5rem 1.5rem;
  color: #333;
  font-family: "DM Sans", Arial, sans-serif;
  text-align: center;
}

.thanks_logo {
  width: 12rem;
}

.thanks_message {
  display: flex;
  flex-flow: column;
  gap: 0.75rem;
}

.thanks_heading,
.thanks_message p {
  margin: 0;
  font-weight: 300;
  line-height: 1.6;
}

.thanks_heading {
  font-size: 1.5rem;
}

.thanks_message p {
  font-size: 1rem;
}

.home_btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  color: #fff;
  background-color: #333;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.4;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .linktag {
    font-size: 1.5rem;
  }

  .form_entry {
    width: 100%;
  }

  .form_group {
    flex-flow: column;
  }
}

@media screen and (max-width: 479px) {
  .main {
    padding: 2.5rem 1.5rem;
  }

  .f_h2,
  .form_label,
  .linktag {
    text-align: center;
  }

  .tag_holder {
    flex-flow: column;
  }

  .linktag {
    font-size: 1.35rem;
  }
}
