@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Roboto Slab";
  src: url("../assets/fonts/RobotoSlab-Bold.ttf");
  font-weight: 700;
  font-display: swap;
}
:root {
  --f-r: 'Roboto', sans-serif;
  --f-rb: 'Roboto Slab', serif;
  --c-grey: rgba(0, 0, 0, 0.16);
  --c-lightgrey: rgba(0, 0, 0, 0.1);
  --c-darkgrey: rgba(0, 0, 0, 0.6);
  --c-primary: #ff9b00;
  --c-primary-tint: #FFEACB;
  --c-primary-shade: #C97600;
  --c-secondary: #003c69;
  --c-secondary-tint: #E3ECF2;
  --radius: 0px;
  --c-ink: #000000;
  --c-white: #FFFFFF;
  --c-black: #000000;
  --c-green: green;
  --c-red: red;
  --c-light-red: #fc4444;
  font-size: 16px;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--f-r);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--c-white);
  color: var(--c-ink);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3,
#hero-title, #hero-subtitle {
  font-family: var(--f-rb);
  font-weight: 700;
  line-height: 1.1;
}

a {
  text-decoration: none;
  color: var(--c-ink);
  transition: all 0.2s ease;
}
a:active {
  color: var(--c-ink);
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--c-secondary);
  outline-offset: 2px;
}

main {
  margin: 6rem 4px;
  flex: 1;
}

main > h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--c-ink);
  max-width: 900px;
  margin: 1rem auto 2rem;
  padding: 0 2rem;
}

.mark-tick {
  display: inline-block;
  flex: none;
  width: 0.28em;
  height: 1em;
  background-color: var(--c-secondary);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-r);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn {
  font-family: var(--f-r);
  font-size: 1rem;
  font-weight: 700;
  background-color: var(--c-primary);
  color: var(--c-white);
  padding: 0.65rem 1.4rem;
  height: fit-content;
  width: fit-content;
  border-radius: var(--radius);
  transition: background-color 0.2s ease;
  text-align: center;
  border: none;
}
.btn:hover {
  background-color: var(--c-secondary);
  cursor: pointer;
}

.input {
  font-size: 1rem;
  padding: 0.55rem 0.7rem;
  height: fit-content;
  width: fit-content;
  transition: all 0.2s ease;
  border-radius: var(--radius);
  border: 1px solid var(--c-grey);
  background-color: var(--c-white);
  outline: none;
}
.input:focus {
  border-color: var(--c-secondary);
  box-shadow: 0 0 0 3px rgba(0, 60, 105, 0.14);
}

.text-area {
  font-size: 1rem;
  padding: 0.55rem 0.7rem;
  transition: all 0.2s ease;
  border-radius: var(--radius);
  border: 1px solid var(--c-grey);
  background-color: var(--c-white);
}
.text-area:focus {
  border-color: var(--c-secondary);
  box-shadow: 0 0 0 3px rgba(0, 60, 105, 0.14);
}

.has-error {
  color: var(--c-light-red);
}
.has-error input {
  border-color: var(--c-light-red);
}
.has-error input:focus {
  border-color: var(--c-red);
}
.has-error .warning-msg {
  display: block;
}

.js-form-error {
  color: var(--c-light-red);
}

.js-form-submission {
  color: cornflowerblue;
}

.js-form-success {
  color: var(--c-green);
}

.warning-msg {
  display: none;
}

.js-show-feedback {
  display: block;
}

.fit-parent {
  width: 100%;
}

.h-100 {
  height: 100px;
}

.display-flex {
  display: flex;
}

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

.gap-1 {
  gap: 1rem;
}

.resize-none {
  resize: none;
}

@media only screen and (max-width: 600px) {
  main {
    transition: all 0.2s ease;
  }
}

/*# sourceMappingURL=root.css.map */
