@charset "UTF-8";
/* main.scss */
/* login.scss — Custom WordPress login page
 *
 * Design language:
 *   Background  → FAQ section light-blue tint ($expPathLightBlue)
 *   Card shape  → .faq-item white card, border-radius 15px
 *   Form fields → intake form %field-base (border, focus ring, padding)
 *   Labels      → .gfield_label (crimson, semibold, 14px)
 *   Button      → .btn-primary (pill, crimson fill → white on hover)
 */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap");
/*
Site Variables
*/
@font-face {
  font-family: "ar-iconfont";
  src: url("fonts/ar-iconfont.eot?l0kh1s");
  src: url("fonts/ar-iconfont.eot?l0kh1s#iefix") format("embedded-opentype"), url("fonts/ar-iconfont.ttf?l0kh1s") format("truetype"), url("fonts/ar-iconfont.woff?l0kh1s") format("woff"), url("fonts/ar-iconfont.svg?l0kh1s#ar-iconfont") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
     ========================================================================== */
/**
   * Remove the margin in all browsers.
   */
body {
  margin: 0;
}

/**
   * Render the `main` element consistently in IE.
   */
main {
  display: block;
}

/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
     ========================================================================== */
/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
     ========================================================================== */
/**
   * Remove the gray background on active links in IE 10.
   */
a {
  background-color: transparent;
}

/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
b,
strong {
  font-weight: bolder;
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
   * Add the correct font size in all browsers.
   */
small {
  font-size: 80%;
}

/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
     ========================================================================== */
/**
   * Remove the border on images inside links in IE 10.
   */
img {
  border-style: none;
}

/* Forms
     ========================================================================== */
/**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
   * Correct the inability to style clickable types in iOS and Safari.
   */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
   * Remove the inner border and padding in Firefox.
   */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
   * Restore the focus styles unset by the previous rule.
   */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
   * Correct the padding in Firefox.
   */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
progress {
  vertical-align: baseline;
}

/**
   * Remove the default vertical scrollbar in IE 10+.
   */
textarea {
  overflow: auto;
}

/**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
     ========================================================================== */
/*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */
details {
  display: block;
}

/*
   * Add the correct display in all browsers.
   */
summary {
  display: list-item;
}

/* Misc
     ========================================================================== */
/**
   * Add the correct display in IE 10+.
   */
template {
  display: none;
}

/**
   * Add the correct display in IE 10.
   */
[hidden] {
  display: none;
}

/* main.scss */
/* _global.scss */
* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  margin: 0;
  padding: 0;
}

.inner {
  margin: 0 auto;
  max-width: 1100px;
  padding: 3rem 2rem;
  width: 100%;
}
.inner--wide {
  max-width: 1200px;
}
@media only screen and (max-width: 700px) {
  .inner {
    padding: 2rem 1.25rem;
  }
}

.mb-section {
  margin-bottom: clamp(4rem, 10vw, 8rem);
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

/* main.scss */
/* _typography.scss */
body {
  color: #585858;
  font-family: "Roboto", "Helvetica", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", "Helvetica", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.75em;
}

h1 {
  color: #585858;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
}

h2 {
  color: #585858;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
}

h2.crimson {
  color: #dc4f41;
}

h2.h1-style {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  text-align: center;
}

h3 {
  color: #585858;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

h5 {
  font-size: 1rem;
  font-weight: 500;
}

h6 {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

p {
  margin: 0 0 1.25em;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: #003594;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover, a:focus {
  color: #dc4f41;
  text-decoration: underline;
}

a.link-crimson {
  color: #dc4f41;
}
a.link-crimson:hover, a.link-crimson:focus {
  color: rgb(211.7866666667, 54.6186666667, 39.0133333333);
}

ul,
ol {
  margin: 0 0 1.25em;
  padding-left: 1.5em;
}

li {
  margin-bottom: 0.4em;
}

.wp-block-button.is-style-outline .wp-block-button__link, .wp-block-button:not(.is-style-outline) .wp-block-button__link, .gform_wrapper .gform_footer input[type=submit],
.gform_wrapper .gform_page_footer input[type=submit], .btn-ghost, .btn-secondary, .btn,
.btn-primary {
  border: 2px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  display: inline-block;
  font-family: "Roboto", "Helvetica", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 0.875em 2em;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover, .gform_wrapper .gform_footer input[type=submit]:hover,
.gform_wrapper .gform_page_footer input[type=submit]:hover, .btn-ghost:hover, .btn-secondary:hover, .btn:hover,
.btn-primary:hover {
  text-decoration: none;
  transform: translateY(-1px);
}
.wp-block-button.is-style-outline .wp-block-button__link:active, .wp-block-button:not(.is-style-outline) .wp-block-button__link:active, .gform_wrapper .gform_footer input[type=submit]:active,
.gform_wrapper .gform_page_footer input[type=submit]:active, .btn-ghost:active, .btn-secondary:active, .btn:active,
.btn-primary:active {
  transform: translateY(0);
}

.btn,
.btn-primary {
  background-color: #dc4f41;
  border-color: #dc4f41;
  color: #fff;
}
.btn:hover, .btn:focus,
.btn-primary:hover,
.btn-primary:focus {
  background-color: #fff;
  border-color: #dc4f41;
  color: #dc4f41;
}

.btn-secondary {
  background-color: transparent;
  border-color: #003594;
  color: #003594;
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: #003594;
  border-color: #003594;
  color: #fff;
}

.btn-ghost {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
.btn-ghost:hover, .btn-ghost:focus {
  background-color: #fff;
  border-color: #fff;
  color: #003594;
}

.gform_wrapper .gform_footer input[type=submit],
.gform_wrapper .gform_page_footer input[type=submit] {
  background-color: #dc4f41;
  border-color: #dc4f41;
  color: #fff;
}
.gform_wrapper .gform_footer input[type=submit]:hover, .gform_wrapper .gform_footer input[type=submit]:focus,
.gform_wrapper .gform_page_footer input[type=submit]:hover,
.gform_wrapper .gform_page_footer input[type=submit]:focus {
  background-color: #fff;
  border-color: #dc4f41;
  color: #dc4f41;
}

.wp-block-button:not(.is-style-outline) .wp-block-button__link {
  background-color: #dc4f41;
  border-color: #dc4f41;
  color: #fff;
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link:focus {
  background-color: #fff;
  border-color: #dc4f41;
  color: #dc4f41;
}

.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  border-color: #003594;
  color: #003594;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover, .wp-block-button.is-style-outline .wp-block-button__link:focus {
  background-color: #003594;
  border-color: #003594;
  color: #fff;
}

.text-crimson {
  color: #dc4f41;
}

.text-navy {
  color: #003594;
}

.text-grey {
  color: #585858;
}

.text-white {
  color: #fff;
}

.text-light {
  font-weight: 300;
}

.text-bold {
  font-weight: 700;
}

.text-black {
  font-weight: 900;
}

.text-upper {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.text-center {
  text-align: center;
}

/* main.scss */
/* _header.scss */
.site-header {
  background-color: #003594;
}
.site-header__inner {
  align-items: center;
  display: flex;
  gap: 2rem;
  margin: 0 auto;
  max-width: 1200px;
  padding: 1rem 2rem;
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.site-header__logo .site-header__logo-img {
  display: block;
  height: 42px;
  width: auto;
}
.site-header__logo:hover .site-header__logo-img, .site-header__logo:focus .site-header__logo-img {
  opacity: 0.8;
}

.primary-nav {
  margin-left: auto;
}
.primary-nav__list {
  align-items: center;
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav li {
  margin: 0;
}
.primary-nav a {
  border-bottom: 1px solid transparent;
  color: #fff;
  font-family: "Roboto", "Helvetica", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: border-color 0.2s ease;
}
.primary-nav a:hover, .primary-nav a:focus {
  border-bottom-color: #fff;
}
.primary-nav .current-menu-item > a,
.primary-nav .current-page-ancestor > a {
  border-bottom-color: #fff;
}

.site-header__auth {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 1rem;
}

.site-header__auth-divider {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
  user-select: none;
}

.site-header__auth-link {
  border-bottom: 1px solid transparent;
  color: #fff;
  font-family: "Roboto", "Helvetica", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: border-color 0.2s ease;
}
.site-header__auth-link:hover, .site-header__auth-link:focus {
  border-bottom-color: #fff;
  color: #fff;
  text-decoration: none;
}

.site-header__toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}

.site-header__toggle-bar {
  background-color: #fff;
  border-radius: 2px;
  display: block;
  height: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  width: 24px;
}

.site-header--open .site-header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header--open .site-header__toggle-bar:nth-child(2) {
  opacity: 0;
}
.site-header--open .site-header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media only screen and (max-width: 900px) {
  .site-header__inner {
    flex-wrap: wrap;
    padding: 1rem;
  }
  .site-header__toggle {
    display: flex;
  }
  .primary-nav {
    display: none;
    margin-left: 0;
    order: 3;
    width: 100%;
  }
  .primary-nav__list {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
  }
  .primary-nav a {
    display: block;
    padding: 0.75rem 0;
  }
  .site-header--open .primary-nav {
    display: block;
  }
  .site-header__auth {
    display: none;
    order: 4;
    width: 100%;
    padding: 0.5rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .site-header__auth-divider {
    display: none;
  }
  .site-header--open .site-header__auth {
    display: flex;
  }
}
/* main.scss */
/* _footer.scss */
.site-footer {
  background-color: #003594;
}

.site-footer__dna {
  background-image: url("../images/png/Footer-DNA-1.png");
  background-position: center;
  background-repeat: repeat-x;
  background-size: auto 100%;
  height: 48px;
  margin-top: 4rem;
  width: 100%;
}

.site-footer__inner {
  align-items: center;
  display: flex;
  gap: 2rem;
  margin: 0 auto;
  max-width: 1200px;
  padding: 2.5rem 2rem;
}

.site-footer__brand {
  flex-shrink: 0;
}
.site-footer__brand a {
  display: inline-flex;
  text-decoration: none;
}
.site-footer__brand a:hover .logo-placeholder, .site-footer__brand a:focus .logo-placeholder {
  opacity: 0.7;
}
.site-footer__brand .site-footer__logo-img {
  display: block;
  height: 42px;
  width: auto;
}

.site-footer__nav {
  margin-left: auto;
}
.site-footer__nav .site-footer__nav-list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__nav li {
  margin: 0;
}
.site-footer__nav a {
  color: rgba(255, 255, 255, 0.75);
  font-family: "Roboto", "Helvetica", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer__nav a:hover, .site-footer__nav a:focus {
  color: #fff;
}
.site-footer__nav .current-menu-item > a {
  color: #dc4f41;
}

.site-footer__copyright .site-footer__inner {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.site-footer__copyright p {
  color: #fff;
  font-size: 0.8125rem;
  margin: 0;
}

@media only screen and (max-width: 700px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 1.25rem;
  }
  .site-footer__nav {
    margin-left: 0;
  }
  .site-footer__nav .site-footer__nav-list {
    flex-direction: column;
    gap: 0.75rem;
  }
  .site-footer__copyright .site-footer__inner {
    padding: 1rem 1.25rem;
  }
}
/* main.scss */
/* _forms.scss */
.form-facility-header {
  float: right;
  font-size: 0.8125rem;
  line-height: 1.7;
  margin: 0 0 1.5rem 3rem;
  max-width: 280px;
  color: #585858;
}
.form-facility-header p {
  margin: 0;
}
.form-facility-header a {
  color: #dc4f41;
}
.form-facility-header a:hover {
  color: rgb(211.7866666667, 54.6186666667, 39.0133333333);
}

.gform_legacy_markup_wrapper.gf_browser_chrome select,
.gform_legacy_markup_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  padding: 8px !important;
}

.gform_wrapper {
  background-color: #e9f2f2;
  border-radius: 12px;
  clear: both;
  padding: 2rem;
}
.gform_wrapper *,
.gform_wrapper *::before,
.gform_wrapper *::after {
  box-sizing: border-box;
}

.gform_wrapper .gfield--type-html:not(.form-facility-header-field) .ginput_container,
.gform_wrapper .gfield_html {
  border-radius: 6px;
  font-size: 0.9375rem;
  line-height: 1.65;
  padding: 1.25rem 1.5rem;
}

.form-notice {
  color: #585858;
  font-size: 0.9375rem;
  margin: 0;
}
.form-notice strong {
  color: #dc4f41;
}

.gform_wrapper .gform_fields {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gform_wrapper .gfield {
  grid-column: 1/-1;
  margin-bottom: 1.25rem;
}

.gform_wrapper .gf_left_half,
.gform_wrapper .gf_right_half {
  grid-column: span 6;
}

.gform_wrapper .gf_left_third,
.gform_wrapper .gf_middle_third,
.gform_wrapper .gf_right_third {
  grid-column: span 4;
}

.gform_wrapper .gsection,
.gform_wrapper .gfield--type-html {
  grid-column: 1/-1;
}

.gsection {
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  padding-top: 1.5rem;
}

.gsection_title {
  color: #dc4f41;
  font-family: "Roboto", "Helvetica", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.25em;
}

.gsection_description {
  color: #585858;
  font-size: 0.875rem;
  margin: 0;
}

.gfield_label {
  color: #dc4f41;
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.gfield_required {
  color: #dc4f41;
  margin-left: 0.2em;
}

.gfield_description {
  color: #585858;
  font-size: 0.8125rem;
  margin-bottom: 0.5rem;
  margin-top: 0.25rem;
}

.gform_wrapper textarea, .gform_wrapper select, .gform_wrapper input[type=text],
.gform_wrapper input[type=email],
.gform_wrapper input[type=tel],
.gform_wrapper input[type=number],
.gform_wrapper input[type=url],
.gform_wrapper input[type=password],
.gform_wrapper input[type=date] {
  appearance: none;
  background-color: #fff;
  border: 1px solid #d0d5dd;
  border-radius: 5px;
  color: #585858;
  font-family: "Roboto", "Helvetica", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.5;
  padding: 0.875rem 0.875rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}
.gform_wrapper textarea::placeholder, .gform_wrapper select::placeholder, .gform_wrapper input[type=text]::placeholder,
.gform_wrapper input[type=email]::placeholder,
.gform_wrapper input[type=tel]::placeholder,
.gform_wrapper input[type=number]::placeholder,
.gform_wrapper input[type=url]::placeholder,
.gform_wrapper input[type=password]::placeholder,
.gform_wrapper input[type=date]::placeholder {
  color: #adb5bd;
}
.gform_wrapper textarea:focus, .gform_wrapper select:focus, .gform_wrapper input[type=text]:focus,
.gform_wrapper input[type=email]:focus,
.gform_wrapper input[type=tel]:focus,
.gform_wrapper input[type=number]:focus,
.gform_wrapper input[type=url]:focus,
.gform_wrapper input[type=password]:focus,
.gform_wrapper input[type=date]:focus {
  border-color: #003594;
  box-shadow: 0 0 0 3px rgb(59.52, 121.7448648649, 233.28);
  outline: none;
}

.gform_wrapper select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2020/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23000e38' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-position: right 0.875rem center;
  background-repeat: no-repeat;
  color: #585858;
  cursor: pointer;
  padding-right: 2.25rem;
}
.gform_wrapper select:valid {
  color: #003594;
}
.gform_wrapper select option {
  color: #585858;
}
.gform_wrapper select option[value=""],
.gform_wrapper select option:disabled {
  color: #585858;
}
.gform_wrapper textarea {
  min-height: 110px;
  resize: vertical;
}

.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error select,
.gform_wrapper .gfield_error textarea {
  border-color: #dc4f41;
}
.gform_wrapper .gfield_error input:focus,
.gform_wrapper .gfield_error select:focus,
.gform_wrapper .gfield_error textarea:focus {
  box-shadow: 0 0 0 3px rgb(234, 149.4, 141);
}
.gform_wrapper .validation_message {
  color: #dc4f41;
  font-size: 0.8125rem;
  margin-top: 0.25rem;
}
.gform_wrapper .validation_error {
  background-color: rgb(239.25, 175.8, 169.5);
  border: 1px solid #dc4f41;
  border-radius: 6px;
  color: rgb(192.5333333333, 49.6533333333, 35.4666666667);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  padding: 0.875rem 1.25rem;
}

.gform_wrapper .gfield_repeater_container {
  border: none;
  counter-reset: sample-counter;
  margin: 0;
  padding: 0;
}
.gform_wrapper .gfield_repeater_container legend {
  display: none !important;
}

.gform_wrapper .gfield_repeater_item {
  background-color: #fafbfc;
  border: none;
  border-radius: 4px;
  box-shadow: none;
  counter-increment: sample-counter;
  margin-bottom: 1rem;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 1.5rem;
}
.gform_wrapper .gfield_repeater_item:last-child {
  margin-bottom: 0;
}
.gform_wrapper .gfield_repeater_item::before {
  color: #dc4f41;
  content: "Sample " counter(sample-counter);
  font-family: "Roboto", "Helvetica", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  grid-column: 1/-1;
  margin-bottom: 0.75rem;
}

.gform_wrapper .gfield_repeater_buttons {
  display: flex;
  gap: 0.75rem;
  grid-column: 1/-1;
  margin-top: 1rem;
}
.gform_wrapper .gfield_repeater_buttons button {
  background: none;
  border: 1px solid #003594;
  border-radius: 100px;
  color: #003594;
  cursor: pointer;
  font-family: "Roboto", "Helvetica", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.4em 1.25em;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.gform_wrapper .gfield_repeater_buttons button:hover, .gform_wrapper .gfield_repeater_buttons button:focus-visible {
  background-color: #003594;
  color: #fff;
}
.gform_wrapper .gfield_repeater_buttons button.remove_repeater_item, .gform_wrapper .gfield_repeater_buttons button.remove_repeate_item {
  border-color: #dc4f41;
  color: #dc4f41;
}
.gform_wrapper .gfield_repeater_buttons button.remove_repeater_item:hover, .gform_wrapper .gfield_repeater_buttons button.remove_repeater_item:focus-visible, .gform_wrapper .gfield_repeater_buttons button.remove_repeate_item:hover, .gform_wrapper .gfield_repeater_buttons button.remove_repeate_item:focus-visible {
  background-color: #dc4f41;
  color: #fff;
}

.sample-count-display {
  align-items: center;
  background-color: #e9f2f2;
  border-radius: 6px;
  display: inline-flex;
  gap: 0.75rem;
  padding: 0.625rem 1.125rem;
}
.sample-count-display__label {
  color: #585858;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sample-count-display__value {
  background-color: #003594;
  border-radius: 100px;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  min-width: 2rem;
  padding: 0.3em 0.75em;
  text-align: center;
}

.gform_footer,
.gform_page_footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
}

.gform_confirmation_wrapper {
  background-color: #e9f2f2;
  border-left: 4px solid #003594;
  border-radius: 6px;
  padding: 1.5rem 2rem;
}
.gform_confirmation_wrapper .gform_confirmation_message {
  color: #585858;
  font-size: 1rem;
  margin: 0;
}

@media only screen and (max-width: 700px) {
  .form-page {
    padding: 2rem 1.25rem 3rem;
  }
  .form-facility-header {
    float: none;
    margin: 0 0 1.5rem;
    max-width: 100%;
  }
  .gform_fields {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .gform_wrapper .gf_left_half,
  .gform_wrapper .gf_right_half,
  .gform_wrapper .gf_left_third,
  .gform_wrapper .gf_middle_third,
  .gform_wrapper .gf_right_third {
    grid-column: 1/-1;
  }
  .gform_wrapper .gfield_repeater_item {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
/* main.scss */
html,
body.login {
  background-color: #e9f2f2;
  color: #585858;
  font-family: "Roboto", "Helvetica", sans-serif;
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
  padding: 0 !important;
}

#login {
  max-width: 440px;
  padding: 0 1.25rem 2rem;
  width: 100%;
}

#login h1 {
  background-color: #003594;
  left: 50%;
  margin-bottom: 2rem;
  margin-left: -50vw;
  padding: 1.25rem 2rem;
  position: relative;
  text-align: center;
  width: 100vw;
}

#login h1 a {
  background-image: url("../images/png/pittexpath1.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  box-shadow: none;
  display: block;
  height: 52px;
  margin: 0 auto;
  max-width: 340px;
  text-indent: -9999px;
  width: 100%;
}
#login h1 a:focus {
  border-radius: 4px;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
  outline: none;
}

.login-heading {
  color: #003594;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
  text-align: center;
}

#login_error,
.login .notice,
.login .message,
.login .success {
  background-color: #ffffff;
  border-left: 4px solid #003594;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 53, 148, 0.07);
  color: #585858;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  padding: 0.875rem 1.25rem;
}
#login_error a,
.login .notice a,
.login .message a,
.login .success a {
  color: #dc4f41;
  text-decoration: none;
}
#login_error a:hover,
.login .notice a:hover,
.login .message a:hover,
.login .success a:hover {
  text-decoration: underline;
}

#login_error {
  border-left-color: #dc4f41;
}

#loginform {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 24px rgba(0, 53, 148, 0.09);
  margin: 0;
  padding: 2.25rem 2.5rem 2rem;
}

#loginform p {
  margin: 0 0 1.25rem;
}

#loginform p:last-of-type {
  margin-bottom: 0;
}

#loginform label {
  color: #dc4f41;
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

#loginform input[type=text],
#loginform input[type=password] {
  appearance: none;
  background-color: #ffffff;
  border: 1px solid #d0d5dd;
  border-radius: 5px;
  box-shadow: none;
  color: #585858;
  font-family: "Roboto", "Helvetica", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.5;
  padding: 0.875rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}
#loginform input[type=text]::placeholder,
#loginform input[type=password]::placeholder {
  color: #adb5bd;
}
#loginform input[type=text]:focus,
#loginform input[type=password]:focus {
  border-color: #003594;
  box-shadow: 0 0 0 3px rgb(59.52, 121.7448648649, 233.28);
  outline: none;
}

.forgetmenot {
  align-items: center;
  display: flex;
  margin-bottom: 1.5rem !important;
}
.forgetmenot label {
  color: #585858;
  cursor: pointer;
  display: inline;
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0 0 0 0.5rem;
}
.forgetmenot input[type=checkbox] {
  accent-color: #003594;
  cursor: pointer;
  height: 16px;
  margin: 0;
  width: 16px;
}

.wp-core-ui #wp-submit {
  appearance: none;
  background-color: #dc4f41;
  border: 2px solid #dc4f41;
  border-radius: 100px;
  box-shadow: none;
  color: #ffffff;
  cursor: pointer;
  display: block;
  font-family: "Roboto", "Helvetica", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  height: auto;
  letter-spacing: 0.02em;
  padding: 0.875em 2em;
  text-align: center;
  text-shadow: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  width: 100%;
}
.wp-core-ui #wp-submit:hover {
  background-color: #ffffff;
  border-color: #dc4f41;
  color: #dc4f41;
}
.wp-core-ui #wp-submit:focus {
  box-shadow: 0 0 0 3px rgb(234, 149.4, 141);
  outline: none;
}

#nav,
#backtoblog {
  margin-top: 1.25rem;
  padding: 0;
  text-align: center;
}
#nav a,
#backtoblog a {
  color: #585858;
  font-size: 0.875rem;
  text-decoration: none;
}
#nav a:hover,
#backtoblog a:hover {
  color: #dc4f41;
  text-decoration: underline;
}

.login #login .privacy-policy-page-link {
  font-size: 0.8125rem;
  text-align: center;
}

@media only screen and (max-width: 480px) {
  #login {
    padding: 0 1rem 2rem;
  }
  #loginform {
    padding: 1.75rem 1.5rem;
  }
}
/* main.scss */
/* _page-hero.scss */
.page-hero {
  overflow: hidden;
  width: 100%;
}

.page-hero__inner {
  display: grid;
  grid-template-columns: 45fr 55fr;
  min-height: 520px;
}

.page-hero__content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 5rem 4rem 5rem 2rem;
  max-width: 640px;
  margin-left: auto;
}

.page-hero__headline {
  color: #585858;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  margin: 0;
}

.page-hero__media {
  overflow: hidden;
  position: relative;
}
.page-hero__media .page-hero__img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.page-hero__media-placeholder {
  align-items: center;
  background-color: #e9f2f2;
  display: flex;
  height: 100%;
  justify-content: center;
  min-height: 300px;
}
.page-hero__media-placeholder span {
  color: #585858;
  font-size: 0.9375rem;
}

@media only screen and (max-width: 900px) {
  .page-hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .page-hero__content {
    margin-left: 0;
    max-width: 100%;
    padding: 3rem 1.25rem 2rem;
  }
  .page-hero__media {
    aspect-ratio: 16/9;
    width: 100%;
  }
}
/* main.scss */
/* _faq.scss */
.faq-section {
  background-color: #e9f2f2;
  border-radius: 15px;
  padding: 4rem 0;
}

.faq-section__inner {
  align-items: center;
  display: grid;
  gap: 0;
  grid-template-columns: 3fr 1fr;
  margin: 0 auto;
  max-width: 1200px;
  min-height: 480px;
  padding: 0 2rem;
  position: relative;
}

.faq-section__content {
  padding-right: 4rem;
  padding-bottom: 1rem;
}

.faq-section__heading {
  color: #585858;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.faq-section__media {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  height: 400px;
  position: absolute;
  right: -7rem;
  top: 0;
  width: 400px;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: visible;
  padding: 0rem 1rem 0rem 1rem;
}
.faq-item:last-child {
  margin-bottom: 0;
}
.faq-item summary {
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item__question {
  align-items: center;
  color: #dc4f41;
  cursor: pointer;
  display: flex;
  font-size: 0.9375rem;
  font-weight: 600;
  gap: 1rem;
  justify-content: space-between;
  line-height: 1.4;
  padding: 1.125rem 2rem 1.125rem 0;
  position: relative;
  user-select: none;
}
.faq-item__question:hover {
  color: rgb(215.5666666667, 56.7066666667, 40.9333333333);
}
.faq-item__question:focus-visible {
  outline: 2px solid #dc4f41;
  outline-offset: 2px;
}

.faq-item__question-text {
  flex: 1;
}

.faq-item__toggle {
  background-color: #fff;
  border: 1px solid #dc4f41;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  height: 30px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  transition: background-color 0.2s ease;
  width: 30px;
}
.faq-item__toggle::before, .faq-item__toggle::after {
  background-color: #dc4f41;
  border-radius: 2px;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transition: transform 0.25s ease, background-color 0.2s ease;
}
.faq-item__toggle::before {
  height: 2px;
  transform: translate(-50%, -50%);
  width: 12px;
}
.faq-item__toggle::after {
  height: 12px;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 2px;
}

.faq-item[open] .faq-item__toggle {
  background-color: #dc4f41;
}
.faq-item[open] .faq-item__toggle::before, .faq-item[open] .faq-item__toggle::after {
  background-color: #fff;
}
.faq-item[open] .faq-item__toggle::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.faq-item[open] .faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-item__answer {
  border-top: 1px solid rgb(188.2, 188.2, 188.2);
  color: #585858;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-top: 0.5rem;
  padding-bottom: 1.25rem;
  padding-top: 1rem;
}
.faq-item__answer p:last-child {
  margin-bottom: 0;
}

.faq-item__answer--open {
  display: block;
}

.faq-item--editor {
  border-bottom: 1px solid rgb(146.4, 185.2905405405, 255);
  padding: 0;
}
.faq-item--editor:first-child {
  border-top: 1px solid rgb(146.4, 185.2905405405, 255);
}

@media only screen and (max-width: 900px) {
  .faq-section__inner {
    grid-template-columns: 1fr;
    padding: 0 1.25rem;
  }
  .faq-section__content {
    padding-right: 0;
  }
  .faq-section__media {
    display: none;
  }
}
/* _dna-spacer.scss */
.dna-spacer {
  background-image: url("../images/png/DNA-2.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  height: 280px;
  margin: -3rem auto 0;
  width: 140px;
}

.dna-spacer--editor {
  align-items: center;
  background-image: none;
  background-color: #f3f2f6;
  border: 1px dashed #adb5bd;
  border-radius: 6px;
  color: #585858;
  display: flex;
  font-size: 0.8125rem;
  height: 60px;
  justify-content: center;
  width: 100%;
}
