/* RESET */

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  min-height: 100dvh;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  height: auto;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  background: 0 0;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  overflow: visible;
}

button,
fieldset,
iframe,
img {
  border: 0;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* VARIABLES */

:root {
  --nav-height: 4.6rem;
  --ff-sans-serif: Arial, Helvetica, sans-serif;
  --ff-serif: Georgia, "Times New Roman", Times, serif;
}

@media (min-width: 48em) {
  :root {
    --nav-height: 6.25rem;
  }
}

/**** GLOBAL ****/

body {
  background-color: #f4f4f4;
  color: #000;
  display: flex;
  flex-direction: column;
  font-family: var(--ff-sans-serif);
  font-smooth: antialiased;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

/* TYPOGRAPHY */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-sans-serif);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1.875rem;
  margin-top: 0;
}

h1 {
  font-family: var(--ff-serif);
}

h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2.25rem, 1.852vw + 1.833rem, 3.5rem);
  line-height: 1.1;
}

p {
  font-family: var(--ff-sans-serif);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 1.875rem;
  text-wrap: pretty;
}

/**** FORMS ****/

form.form {
  margin: 0 !important;
  padding: 0 !important;
}

@media only screen and (min-width: 48em) {
  form.form {
    max-width: 26rem;
  }
}

/* Inputs & Text Areas */

form.form .form-field {
  position: relative;
  margin-bottom: 1.25rem;
  margin-inline: 0 !important;
}

form.form .form-field label {
  display: inline-block;
  float: none;
  font-family: var(--ff-sans-serif) !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  margin-bottom: 0.4rem !important;
  padding: 0 !important;
  text-align: left !important;
  width: auto !important;
}

form.form p.required label,
form.form span.required label {
  background-image: none !important;
}

form.form p.required label::after,
form.form span.required label::after {
  content: " *";
}

form.form .form-field input[type="text"],
form.form .form-field input[type="email"],
form.form .form-field input[type="password"],
form.form .form-field select,
form.form .form-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 6px;
  color: #000;
  display: block;
  font-family: var(--ff-sans-serif) !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  height: auto;
  margin: 0;
  outline: none;
  padding: 0.6rem;
  transition: all 0.3s;
  width: 100%;
}

form.form .form-field textarea {
  height: 12rem;
  resize: none;
}

form.form .form-field input[type="text"]:focus,
form.form .form-field input[type="email"]:focus,
form.form .form-field input[type="password"]:focus,
form.form .form-field select:focus,
form.form .form-field textarea:focus {
  border-color: #a0a0a0;
  outline: none;
}

form.form .form-field input[type="text"]:read-only,
form.form .form-field input[type="email"]:read-only,
form.form .form-field input[type="password"]:read-only,
form.form .form-field select:read-only,
form.form .form-field textarea:read-only {
  color: #666;
  cursor: default;
}

form.form .form-field input[type="text"]:read-only:focus,
form.form .form-field input[type="email"]:read-only:focus,
form.form .form-field input[type="password"]:read-only:focus,
form.form .form-field select:read-only:focus,
form.form .form-field textarea:read-only:focus {
  border-color: inherit;
  transition: none;
}

form.form .pd-checkbox {
  display: flex;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

form.form .pd-checkbox > label {
  display: inline-block;
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 1.4;
  letter-spacing: normal;
  margin-bottom: 0 !important;
  margin-left: 1.8rem !important;
  padding-left: 0.3rem !important;
  text-transform: none;
  vertical-align: middle;
  width: auto;
}

form.form .pd-checkbox span.value {
  left: 0;
  position: absolute;
  top: 0;
}

form.form .pd-checkbox input {
  align-items: center;
  accent-color: #0057b8;
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 10px;
  display: flex;
  flex-shrink: 0;
  height: 1.5rem;
  justify-content: center;
  margin: 0;
  outline: none;
  position: relative;
  width: 1.5rem;
}

form.form .form-field select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url(https://assets.sage-learn.com/assets/vendors/pardot/brands/mayo/images/icons/icon_caret_down_dark_grey.svg);
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 0.75em 0.75em;
  padding-right: 2.5rem;
}

form.form .form-field.hide-input-label input + label {
  display: none;
}

form.form span.value {
  display: inline-block;
  margin-left: 0;
  width: 100%;
}

form.form span.required,
form.form label.required {
  font-weight: normal;
}

form.form span.errors {
  color: red;
  display: inline-block;
  margin-bottom: 2rem;
  width: 100%;
}

form.form p.no-label.error,
form.form span.no-label.error {
  color: red;
  font-size: 0.875rem;
  margin-top: 0.4rem;
}

/**** LINKS & BUTTONS ****/

a,
a:hover {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

form.form p.submit {
  margin: 2rem 0 0 !important;
}

.nav-offset {
  padding-top: var(--nav-height);
}

.site-nav {
  background-color: #fff;
  height: var(--nav-height);
  padding-inline: clamp(1.25rem, 2.871vw + 0.541rem, 3.125rem);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
}

.site-nav-logo {
  align-items: center;
  display: flex;
  height: 100%;
}

.site-nav-logo a img {
  height: 2.7rem;
  width: 14rem;
}

/**** CONTENT SECTION ****/

.wrapper {
  margin-inline: auto;
  max-width: 1440px;
  padding-inline: clamp(1.25rem, 2.871vw + 0.541rem, 3.125rem);
  width: 100%;
}

.content-section {
  position: relative;
  padding-bottom: 3rem;
  padding-top: 3rem;
}

@media only screen and (min-width: 48em) {
  .content-section {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
}

@media only screen and (min-width: 64em) {
  .content-section {
    padding-bottom: 6rem;
    padding-top: 6rem;
  }
}

.two-cols {
  display: grid;
  gap: 2.5rem;
}

@media only screen and (min-width: 48em) {
  .two-cols {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

/**** LINKS & BUTTONS ****/

a,
a:hover {
  color: #000;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

a[href^="tel:"],
a[href^="tel:"]:hover,
a[href^="tel:"]:focus,
a[href^="tel:"]:active {
  cursor: default;
  text-decoration: none !important;
}

.button,
a.button,
button.button,
input[type="submit"] {
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #0057b8;
  border: none;
  border-radius: 1000px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--ff-sans-serif) !important;
  font-size: 1.05rem;
  font-weight: 400;
  height: 3.3125rem;
  justify-content: center;
  line-height: 1;
  margin: 0 !important;
  min-width: 7.125rem;
  padding: 1rem 2.2rem !important;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s;
  width: auto;
}

.button:hover,
.button:active,
a.button:hover,
a.button:active,
button.button:hover,
button.button:active,
input[type="submit"]:hover,
input[type="submit"]:active {
  background-color: #0076f9;
  color: #fff;
  outline: none;
}

.button:disabled,
.button:disabled:hover,
.button:disabled:active,
a.button:disabled,
a.button:disabled:hover,
a.button:disabled:active,
input[type="submit"]:disabled,
input[type="submit"]:disabled:hover,
input[type="submit"]:disabled:active {
  background-color: #aaa;
  color: #eee;
  cursor: default;
  pointer-events: none;
}

/**** FOOTER ****/

.site-footer {
  background-color: #000;
  color: #fff;
  height: var(--nav-height);
  margin-top: auto;
  padding-inline: clamp(1.25rem, 2.871vw + 0.541rem, 3.125rem);
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.site-footer-logo a {
  display: inline-block;
}

.site-footer-logo a img {
  height: 3rem;
  width: 9.3rem;
}

.site-footer-copyright {
  color: #666;
  font-family: var(--ff-sans-serif);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
}

@media (min-width: 64em) {
  .site-footer-logo {
    margin-bottom: 0;
  }
}
