:root {
  --color-7: #f24141;
  --color: white;
  --color-3: #073944;
  --color-6: #f2b705;
  --color-5: #88e8f2;
  --color-2: #333;
  --color-4: #3bbcd9;
}

body {
  color: #333;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 1.75em;
}

h3 {
  color: var(--color-7);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.2em;
}

p {
  margin-bottom: 20px;
}

.section {
  background-color: var(--color);
  flex-flow: column;
  justify-content: center;
  height: 100vh;
  max-height: 100vh;
  padding-bottom: 5%;
  display: flex;
  position: relative;
}

.top-colored-div {
  background-color: var(--color);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 5%;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.large-headline {
  color: var(--color-3);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-size: 3.5em;
  font-weight: 700;
  line-height: 1.2em;
}

.image {
  height: 80px;
}

.paragraph-section {
  border: 3px none var(--color-6);
  background-color: var(--color);
  flex-flow: column;
  align-items: center;
  margin: 3% 0%;
  padding: 0% 5% 0;
  display: flex;
}

.lg-welcome-par {
  text-align: center;
  max-width: none;
  font-size: 1.2em;
  line-height: 1.5em;
}

.address-and-contct-info-holder {
  background-color: #3bbcd91a;
  flex-flow: row;
  justify-content: space-between;
  width: 75%;
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
  padding: 35px;
  display: flex;
}

.contact-form-div {
  width: 100%;
}

.form-block {
  margin-bottom: 0;
}

.submit-button {
  background-color: var(--color-5);
  color: var(--color-3);
  font-weight: 500;
  line-height: 1em;
}

.submit-button:hover {
  background-color: var(--color-6);
}

.form-field-holder {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  display: flex;
}

.text-field {
  border-style: none none solid;
  border-width: 1px 1px 3px;
  border-color: black black var(--color-6);
  background-color: #fff0;
  width: 49%;
  margin-bottom: 0;
}

.text-field:focus, .text-field::placeholder {
  color: var(--color-2);
}

.textarea {
  border-style: none none solid;
  border-width: 1px 1px 3px;
  border-color: black black var(--color-6);
  background-color: #fff0;
  margin-bottom: 20px;
}

.textarea:focus {
  color: var(--color-2);
}

.textarea:focus-visible {
  color: var(--color);
}

.textarea[data-wf-focus-visible] {
  color: var(--color);
}

.textarea::placeholder {
  color: var(--color-2);
}

.h3-center {
  text-align: center;
  margin-bottom: 30px;
}

.form {
  flex-flow: column;
  align-items: center;
  display: flex;
}

.static-cta-div {
  justify-content: space-between;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.static-link {
  background-color: var(--color-3);
  color: var(--color);
  justify-content: center;
  align-items: center;
  width: 33.33%;
  padding: 6px 10px;
  font-size: .9em;
  line-height: 1em;
  text-decoration: none;
  display: flex;
}

.static-link:hover, .static-link.rev {
  background-color: var(--color-7);
}

.static-link.rev:hover {
  background-color: var(--color-3);
}

.image-3 {
  width: 20px;
  margin-right: 10px;
}

.top-address {
  background-color: #3bbcd91a;
  justify-content: center;
  align-items: center;
  padding: 15px 10px;
  line-height: 1em;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

@media screen and (max-width: 991px) {
  .section {
    justify-content: flex-start;
    padding-top: 5%;
  }

  .large-headline {
    font-size: 3em;
  }

  .image {
    height: 65px;
  }

  .lg-welcome-par {
    display: none;
  }

  .address-and-contct-info-holder {
    width: 90%;
    max-width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .top-colored-div {
    padding-top: 8%;
  }

  .large-headline {
    margin-bottom: 10px;
    font-size: 2em;
  }

  .image {
    height: 50px;
  }

  .top-address {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: .9em;
    line-height: 1.2em;
  }
}

@media screen and (max-width: 479px) {
  .section {
    padding-top: 15%;
  }

  .large-headline {
    font-size: 1.8em;
  }

  .address-and-contct-info-holder {
    padding: 15px;
  }
}


