@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
.btn {
  appearance: none;
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 6px 12px;
  cursor: pointer;
  text-align: center;
  color: #fff;
  background: #71af85;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0);
  border-radius: 0px;
  transition: 0.25s ease;
  text-transform: uppercase;
  text-decoration: none;
}
.disabled.btn,
[disabled].btn {
  pointer-events: none;
  opacity: 0.65;
}
.btn:hover {
  background: #97c7a6;
  color: #fff;
  text-decoration: none;
}
.btn--ghost,
.btn--seymore {
  background: rgba(0, 0, 0, 0);
  border-color: #71af85;
  color: #71af85;
}
.btn--ghost:hover,
.btn--seymore:hover {
  background: #97c7a6;
  border-color: #97c7a6;
  color: #fff;
}
.btn--seymore.btn--ghost-white,
.btn--ghost-white {
  background: rgba(0, 0, 0, 0);
  border-color: #fff;
  color: #fff;
}
.btn--ghost-white:hover {
  background: #97c7a6;
  border-color: #97c7a6;
  color: #fff;
}
.btn--secondary {
  background: #fab636;
  color: #343434;
}
.btn--secondary:hover {
  background: #fff;
  color: #343434;
}
.btn--ghost.btn--secondary {
  background: rgba(0, 0, 0, 0);
  border-color: #fab636;
  color: #fab636;
}
.btn--ghost.btn--secondary:hover {
  border-color: #fff;
  background: #fff;
  color: #343434;
}
.btn--seymore {
  padding-left: 4rem;
  padding-right: 4rem;
  position: relative;
}
.btn--seymore::after {
  font-family: "icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "î¤²";
  position: absolute;
  right: 1.5rem;
  font-size: 85%;
}
@media speech {
  .btn--seymore::after {
    display: none;
    visibility: hidden;
  }
}
.btn--services {
  padding: 1rem 3.75rem;
  background: rgba(0, 0, 0, 0);
  color: #4ff067;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: "Montserrat", "Roboto", "Arial", sans-serif;
  text-transform: none;
  position: relative;
  z-index: 1;
}
.btn--services::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #c2dbe8;
  transition: inherit;
  z-index: -2;
}
.btn--services::after {
  font-family: "icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "î¤µ";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 2.5rem;
  color: #fff;
  opacity: 0;
  transition: inherit;
  z-index: -1;
}
@media speech {
  .btn--services::after {
    display: none;
    visibility: hidden;
  }
}
.btn--services:hover {
  background: linear-gradient(
    to right,
    rgba(227, 232, 235, 0.37) 0%,
    rgba(227, 232, 235, 0.29) 24%,
    rgba(227, 232, 235, 0.06) 76%,
    rgba(227, 232, 235, 0) 100%
  );
  color: #343434;
  box-shadow: 0 50px 30px -40px rgba(48, 50, 52, 0.1);
}
.btn--services:hover::before {
  background: #fab636;
}
.btn--services:hover::after {
  opacity: 0.18;
}
.glyph-loading {
  display: inline-grid;
  grid-template-columns: max-content;
  grid-template-rows: max-content;
  z-index: 0;
  align-items: center;
  justify-content: center;
}
.glyph-loading:after {
  content: "";
  grid-area: 1/1/2/2;
  align-self: center;
  justify-self: center;
  height: 1em;
  width: 1em;
  border-radius: 50%;
  border: 0.25em solid rgba(0, 0, 0, 0);
  border-top-color: currentColor;
  z-index: 2;
  animation: glyph-loading 1s ease infinite;
}
.glyph-loading:before {
  content: "";
  align-self: center;
  justify-self: center;
  grid-area: 1/1/2/2;
  height: 1em;
  width: 1em;
  border-radius: 50%;
  border: 0.25em solid currentColor;
  opacity: 0.5;
  z-index: 1;
}
:root {
  --xs: 0;
  --sm: 576px;
  --md: 768px;
  --lg: 992px;
  --xl: 1200px;
  --sm_dn: 575px;
  --md_dn: 767px;
  --lg_dn: 991px;
  --xl_dn: 1199px;
  --fill-darkGray: #343434;
  --fill-lightGray: #f3f3f3;
  --fill-blue: #eaf2f6;
  --fill-offWhiteTeal: #eaf2f6;
  --fill-teal: #71af85;
} /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: rgba(0, 0, 0, 0);
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
:root {
  --xs: 0;
  --sm: 576px;
  --md: 768px;
  --lg: 992px;
  --xl: 1200px;
  --sm_dn: 575px;
  --md_dn: 767px;
  --lg_dn: 991px;
  --xl_dn: 1199px;
  --fill-darkGray: #343434;
  --fill-lightGray: #f3f3f3;
  --fill-blue: #eaf2f6;
  --fill-offWhiteTeal: #eaf2f6;
  --fill-teal: #71af85;
}
html {
  font-size: 16px;
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.5;
  font-family: "Montserrat", "Roboto", sans-serif;
  font-weight: 400;
  color: #343434;
  max-width: 100%;
  overflow-x: hidden;
}
body:where(.using-mouse) *:focus {
  outline: none;
}
body:where(:not(.using-mouse)) *:focus {
  outline: none;
  outline: 3px solid #fab636;
}
.hideVisually,
.hide-visually {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  border: 0;
}
*:where(img) {
  max-width: 100%;
}
*:where(img):where([height]) {
  height: auto;
}
*:where(img):where([width]) {
  width: auto;
}
*:where(img):where([style*="--height"][style*="--width"]) {
  aspect-ratio: var(--width) / var(--height);
  object-fit: cover;
  object-position: 50% 50%;
}
.dnld-doc {
  min-height: 60px;
  padding-left: 50px;
  float: left;
  line-height: 1.4em;
}
.dnld-doc a {
  text-decoration: none;
}
.dnld-doc:before {
  background: url(/img/content-images/document_BLUE_fill.svg) -30px -35px
    no-repeat;
  background-size: 120px auto;
  content: "";
  width: 60px;
  height: 60px;
  margin-left: -50px;
  float: left;
}
@font-face {
  font-family: "icons";
  src: url("/fonts/icons/icons.woff") format("woff"),
    url("/fonts/icons/icons.ttf") format("truetype"),
    url("/fonts/icons/icons.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
h1,
h2,
h3,
h4,
h5,
h6,
hgroup,
hr,
ul,
ol,
dl,
blockquote,
p,
address,
figure,
pre {
  margin: 0 0 1rem;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Montserrat", "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #71af85;
}
h1,
.h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 2.75rem;
}
h2,
.h2 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6rem;
}
h2.h2Small,
.h2.h2Small {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 0;
}
h3,
.h3 {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5rem;
}
h4,
.h4 {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.4rem;
}
h5,
.h5 {
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.3rem;
}
h6,
.h6 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2rem;
}
hr {
  margin-top: 1rem;
  border: none;
  border-top: 1px solid;
}
a {
  transition: all 0.25s ease-in-out;
  color: #71af85;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0);
  -webkit-text-decoration-skip: objects;
  font-weight: 600;
}
a:hover {
  color: #03b9ff;
  text-decoration: none;
}
a:hover h5 {
  color: #03b9ff;
}
[class^="glyph-"],
[class*=" glyph-"] {
  padding: 0 5px;
}
[class^="glyph-"]::before,
[class*=" glyph-"]::before {
  font-family: "icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media speech {
  [class^="glyph-"]::before,
  [class*=" glyph-"]::before {
    display: none;
    visibility: hidden;
  }
}
small {
  font-size: 0.8125rem;
}
@keyframes glyph-loading {
  to {
    transform: rotate(360deg);
  }
}
@supports (display: grid) {
  .page {
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: minmax(0, 1fr);
    min-height: 100vh;
  }
}
section {
  width: 100%;
}
section .section__inner {
  position: relative;
}
section .section__inner:has(:not(.section__main)) {
  padding-top: 30px;
}
section .section__inner.algolia {
  padding-top: 0;
}
section.section--sm > .section__inner {
  margin-right: 2rem;
  margin-left: 2rem;
  width: calc(100% - 4rem);
  max-width: 64rem;
}
@media (min-width: 68rem) {
  section.section--sm > .section__inner {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }
}
section:not(.section--sm) > .section__inner {
  margin-right: 2rem;
  margin-left: 2rem;
  width: calc(100% - 4rem);
  max-width: 82rem;
}
@media (min-width: 86rem) {
  section:not(.section--sm) > .section__inner {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  section.section--split > .section__inner {
    display: flex;
  }
  section.section--split > .section__inner > .section__main,
  section.section--split > .section__inner > .section__rail {
    overflow: hidden;
    margin: 0 1.625rem;
    padding-top: 30px;
  }
  section.section--split > .section__inner > .section__main:nth-child(1),
  section.section--split > .section__inner > .section__rail:nth-child(1) {
    margin-left: 0;
  }
  section.section--split > .section__inner > .section__main:nth-child(2),
  section.section--split > .section__inner > .section__rail:nth-child(2) {
    margin-right: 0;
  }
  section.section--split > .section__inner > .section__main:only-child,
  section.section--split > .section__inner > .section__rail:only-child {
    margin: 0;
  }
  section.section--split > .section__inner > .section__main {
    flex: 1 1 calc(100% - 1.625rem);
  }
  section.section--split > .section__inner > .section__rail {
    flex: 0 0 calc(22rem - 1.625rem);
  }
  section.section--split
    > .section__inner
    > .section__rail:not(.section--filter) {
    flex: 0 0 calc(16rem - 1.625rem);
  }
  section.section--split > .section__inner > .section__rail.section--filter {
    background-color: #f7f7f7;
    margin-top: 2rem;
    margin-bottom: 6rem;
  }
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(max-content, 1fr));
  gap: 0;
  grid-auto-flow: dense;
  justify-items: stretch;
  align-items: stretch;
}
.grid__item {
  grid-column: span 1 / span 1;
  grid-row: span 1 / span 1;
}
.grid__item > *,
.grid__item > blue-component > * {
  max-width: 100%;
}
.grid--match-height .grid__item {
  display: flex;
}
.grid--match-height .grid__item > *,
.grid--match-height .grid__item > blue-component > * {
  height: auto;
  align-self: stretch;
  flex: 1 1 100%;
}
.grid--gap-0 {
  gap: 0;
}
.grid--gap-05 {
  gap: 0.5rem;
}
.grid--gap-1 {
  gap: 1rem;
}
.grid--gap-2 {
  gap: 2rem;
}
.grid--gap-3 {
  gap: 3.25rem;
}
.grid--gap-4 {
  gap: 4rem;
}
.grid--gap-x-0 {
  row-gap: 0;
}
.grid--gap-x-05 {
  row-gap: 0.5rem;
}
.grid--gap-x-1 {
  row-gap: 1rem;
}
.grid--gap-x-2 {
  row-gap: 2rem;
}
.grid--gap-x-3 {
  row-gap: 3.25rem;
}
.grid--gap-x-4 {
  row-gap: 4rem;
}
.grid--gap-y-0 {
  column-gap: 0;
}
.grid--gap-y-05 {
  column-gap: 0.5rem;
}
.grid--gap-y-1 {
  column-gap: 1rem;
}
.grid--gap-y-2 {
  column-gap: 2rem;
}
.grid--gap-y-3 {
  column-gap: 3.25rem;
}
.grid--gap-y-4 {
  column-gap: 4rem;
}
.grid--cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid__item--col-span-1 {
  grid-column: span 1 / span 1;
}
.grid__item--row-span-1 {
  grid-row: span 1 / span 1;
}
.grid--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid__item--col-span-2 {
  grid-column: span 2 / span 2;
}
.grid__item--row-span-2 {
  grid-row: span 2 / span 2;
}
.grid--cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid__item--col-span-3 {
  grid-column: span 3 / span 3;
}
.grid__item--row-span-3 {
  grid-row: span 3 / span 3;
}
.grid--cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid__item--col-span-4 {
  grid-column: span 4 / span 4;
}
.grid__item--row-span-4 {
  grid-row: span 4 / span 4;
}
.grid--cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid__item--col-span-5 {
  grid-column: span 5 / span 5;
}
.grid__item--row-span-5 {
  grid-row: span 5 / span 5;
}
.grid--cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid__item--col-span-6 {
  grid-column: span 6 / span 6;
}
.grid__item--row-span-6 {
  grid-row: span 6 / span 6;
}
.grid--cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.grid__item--col-span-7 {
  grid-column: span 7 / span 7;
}
.grid__item--row-span-7 {
  grid-row: span 7 / span 7;
}
.grid--cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.grid__item--col-span-8 {
  grid-column: span 8 / span 8;
}
.grid__item--row-span-8 {
  grid-row: span 8 / span 8;
}
.grid--cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}
.grid__item--col-span-9 {
  grid-column: span 9 / span 9;
}
.grid__item--row-span-9 {
  grid-row: span 9 / span 9;
}
.grid--cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}
.grid__item--col-span-10 {
  grid-column: span 10 / span 10;
}
.grid__item--row-span-10 {
  grid-row: span 10 / span 10;
}
.grid--cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}
.grid__item--col-span-11 {
  grid-column: span 11 / span 11;
}
.grid__item--row-span-11 {
  grid-row: span 11 / span 11;
}
.grid--cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.grid__item--col-span-12 {
  grid-column: span 12 / span 12;
}
.grid__item--row-span-12 {
  grid-row: span 12 / span 12;
}
.grid__item--col-start-1 {
  grid-column-start: 1;
}
.grid__item--col-end-1 {
  grid-column-end: 1;
}
.grid__item--col-start-2 {
  grid-column-start: 2;
}
.grid__item--col-end-2 {
  grid-column-end: 2;
}
.grid__item--col-start-3 {
  grid-column-start: 3;
}
.grid__item--col-end-3 {
  grid-column-end: 3;
}
.grid__item--col-start-4 {
  grid-column-start: 4;
}
.grid__item--col-end-4 {
  grid-column-end: 4;
}
.grid__item--col-start-5 {
  grid-column-start: 5;
}
.grid__item--col-end-5 {
  grid-column-end: 5;
}
.grid__item--col-start-6 {
  grid-column-start: 6;
}
.grid__item--col-end-6 {
  grid-column-end: 6;
}
.grid__item--col-start-7 {
  grid-column-start: 7;
}
.grid__item--col-end-7 {
  grid-column-end: 7;
}
.grid__item--col-start-8 {
  grid-column-start: 8;
}
.grid__item--col-end-8 {
  grid-column-end: 8;
}
.grid__item--col-start-9 {
  grid-column-start: 9;
}
.grid__item--col-end-9 {
  grid-column-end: 9;
}
.grid__item--col-start-10 {
  grid-column-start: 10;
}
.grid__item--col-end-10 {
  grid-column-end: 10;
}
.grid__item--col-start-11 {
  grid-column-start: 11;
}
.grid__item--col-end-11 {
  grid-column-end: 11;
}
.grid__item--col-start-12 {
  grid-column-start: 12;
}
.grid__item--col-end-12 {
  grid-column-end: 12;
}
@media (min-width: 0) {
  .grid--gap-xs0 {
    gap: 0;
  }
  .grid--gap-xs05 {
    gap: 0.5rem;
  }
  .grid--gap-xs1 {
    gap: 1rem;
  }
  .grid--gap-xs2 {
    gap: 2rem;
  }
  .grid--gap-xs3 {
    gap: 3.25rem;
  }
  .grid--gap-xs4 {
    gap: 4rem;
  }
  .grid--gap-x-xs0 {
    row-gap: 0;
  }
  .grid--gap-x-xs05 {
    row-gap: 0.5rem;
  }
  .grid--gap-x-xs1 {
    row-gap: 1rem;
  }
  .grid--gap-x-xs2 {
    row-gap: 2rem;
  }
  .grid--gap-x-xs3 {
    row-gap: 3.25rem;
  }
  .grid--gap-x-xs4 {
    row-gap: 4rem;
  }
  .grid--gap-y-xs0 {
    column-gap: 0;
  }
  .grid--gap-y-xs05 {
    column-gap: 0.5rem;
  }
  .grid--gap-y-xs1 {
    column-gap: 1rem;
  }
  .grid--gap-y-xs2 {
    column-gap: 2rem;
  }
  .grid--gap-y-xs3 {
    column-gap: 3.25rem;
  }
  .grid--gap-y-xs4 {
    column-gap: 4rem;
  }
  .grid--cols-xs1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid__item--col-span-xs1 {
    grid-column: span 1 / span 1;
  }
  .grid__item--row-span-xs1 {
    grid-row: span 1 / span 1;
  }
  .grid--cols-xs2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid__item--col-span-xs2 {
    grid-column: span 2 / span 2;
  }
  .grid__item--row-span-xs2 {
    grid-row: span 2 / span 2;
  }
  .grid--cols-xs3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid__item--col-span-xs3 {
    grid-column: span 3 / span 3;
  }
  .grid__item--row-span-xs3 {
    grid-row: span 3 / span 3;
  }
  .grid--cols-xs4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid__item--col-span-xs4 {
    grid-column: span 4 / span 4;
  }
  .grid__item--row-span-xs4 {
    grid-row: span 4 / span 4;
  }
  .grid--cols-xs5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid__item--col-span-xs5 {
    grid-column: span 5 / span 5;
  }
  .grid__item--row-span-xs5 {
    grid-row: span 5 / span 5;
  }
  .grid--cols-xs6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid__item--col-span-xs6 {
    grid-column: span 6 / span 6;
  }
  .grid__item--row-span-xs6 {
    grid-row: span 6 / span 6;
  }
  .grid--cols-xs7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .grid__item--col-span-xs7 {
    grid-column: span 7 / span 7;
  }
  .grid__item--row-span-xs7 {
    grid-row: span 7 / span 7;
  }
  .grid--cols-xs8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid__item--col-span-xs8 {
    grid-column: span 8 / span 8;
  }
  .grid__item--row-span-xs8 {
    grid-row: span 8 / span 8;
  }
  .grid--cols-xs9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .grid__item--col-span-xs9 {
    grid-column: span 9 / span 9;
  }
  .grid__item--row-span-xs9 {
    grid-row: span 9 / span 9;
  }
  .grid--cols-xs10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .grid__item--col-span-xs10 {
    grid-column: span 10 / span 10;
  }
  .grid__item--row-span-xs10 {
    grid-row: span 10 / span 10;
  }
  .grid--cols-xs11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .grid__item--col-span-xs11 {
    grid-column: span 11 / span 11;
  }
  .grid__item--row-span-xs11 {
    grid-row: span 11 / span 11;
  }
  .grid--cols-xs12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .grid__item--col-span-xs12 {
    grid-column: span 12 / span 12;
  }
  .grid__item--row-span-xs12 {
    grid-row: span 12 / span 12;
  }
  .grid__item--col-start-xs1 {
    grid-column-start: 1;
  }
  .grid__item--col-end-xs1 {
    grid-column-end: 1;
  }
  .grid__item--col-start-xs2 {
    grid-column-start: 2;
  }
  .grid__item--col-end-xs2 {
    grid-column-end: 2;
  }
  .grid__item--col-start-xs3 {
    grid-column-start: 3;
  }
  .grid__item--col-end-xs3 {
    grid-column-end: 3;
  }
  .grid__item--col-start-xs4 {
    grid-column-start: 4;
  }
  .grid__item--col-end-xs4 {
    grid-column-end: 4;
  }
  .grid__item--col-start-xs5 {
    grid-column-start: 5;
  }
  .grid__item--col-end-xs5 {
    grid-column-end: 5;
  }
  .grid__item--col-start-xs6 {
    grid-column-start: 6;
  }
  .grid__item--col-end-xs6 {
    grid-column-end: 6;
  }
  .grid__item--col-start-xs7 {
    grid-column-start: 7;
  }
  .grid__item--col-end-xs7 {
    grid-column-end: 7;
  }
  .grid__item--col-start-xs8 {
    grid-column-start: 8;
  }
  .grid__item--col-end-xs8 {
    grid-column-end: 8;
  }
  .grid__item--col-start-xs9 {
    grid-column-start: 9;
  }
  .grid__item--col-end-xs9 {
    grid-column-end: 9;
  }
  .grid__item--col-start-xs10 {
    grid-column-start: 10;
  }
  .grid__item--col-end-xs10 {
    grid-column-end: 10;
  }
  .grid__item--col-start-xs11 {
    grid-column-start: 11;
  }
  .grid__item--col-end-xs11 {
    grid-column-end: 11;
  }
  .grid__item--col-start-xs12 {
    grid-column-start: 12;
  }
  .grid__item--col-end-xs12 {
    grid-column-end: 12;
  }
}
@media (min-width: 576px) {
  .grid--gap-sm0 {
    gap: 0;
  }
  .grid--gap-sm05 {
    gap: 0.5rem;
  }
  .grid--gap-sm1 {
    gap: 1rem;
  }
  .grid--gap-sm2 {
    gap: 2rem;
  }
  .grid--gap-sm3 {
    gap: 3.25rem;
  }
  .grid--gap-sm4 {
    gap: 4rem;
  }
  .grid--gap-x-sm0 {
    row-gap: 0;
  }
  .grid--gap-x-sm05 {
    row-gap: 0.5rem;
  }
  .grid--gap-x-sm1 {
    row-gap: 1rem;
  }
  .grid--gap-x-sm2 {
    row-gap: 2rem;
  }
  .grid--gap-x-sm3 {
    row-gap: 3.25rem;
  }
  .grid--gap-x-sm4 {
    row-gap: 4rem;
  }
  .grid--gap-y-sm0 {
    column-gap: 0;
  }
  .grid--gap-y-sm05 {
    column-gap: 0.5rem;
  }
  .grid--gap-y-sm1 {
    column-gap: 1rem;
  }
  .grid--gap-y-sm2 {
    column-gap: 2rem;
  }
  .grid--gap-y-sm3 {
    column-gap: 3.25rem;
  }
  .grid--gap-y-sm4 {
    column-gap: 4rem;
  }
  .grid--cols-sm1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid__item--col-span-sm1 {
    grid-column: span 1 / span 1;
  }
  .grid__item--row-span-sm1 {
    grid-row: span 1 / span 1;
  }
  .grid--cols-sm2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid__item--col-span-sm2 {
    grid-column: span 2 / span 2;
  }
  .grid__item--row-span-sm2 {
    grid-row: span 2 / span 2;
  }
  .grid--cols-sm3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid__item--col-span-sm3 {
    grid-column: span 3 / span 3;
  }
  .grid__item--row-span-sm3 {
    grid-row: span 3 / span 3;
  }
  .grid--cols-sm4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid__item--col-span-sm4 {
    grid-column: span 4 / span 4;
  }
  .grid__item--row-span-sm4 {
    grid-row: span 4 / span 4;
  }
  .grid--cols-sm5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid__item--col-span-sm5 {
    grid-column: span 5 / span 5;
  }
  .grid__item--row-span-sm5 {
    grid-row: span 5 / span 5;
  }
  .grid--cols-sm6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid__item--col-span-sm6 {
    grid-column: span 6 / span 6;
  }
  .grid__item--row-span-sm6 {
    grid-row: span 6 / span 6;
  }
  .grid--cols-sm7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .grid__item--col-span-sm7 {
    grid-column: span 7 / span 7;
  }
  .grid__item--row-span-sm7 {
    grid-row: span 7 / span 7;
  }
  .grid--cols-sm8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid__item--col-span-sm8 {
    grid-column: span 8 / span 8;
  }
  .grid__item--row-span-sm8 {
    grid-row: span 8 / span 8;
  }
  .grid--cols-sm9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .grid__item--col-span-sm9 {
    grid-column: span 9 / span 9;
  }
  .grid__item--row-span-sm9 {
    grid-row: span 9 / span 9;
  }
  .grid--cols-sm10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .grid__item--col-span-sm10 {
    grid-column: span 10 / span 10;
  }
  .grid__item--row-span-sm10 {
    grid-row: span 10 / span 10;
  }
  .grid--cols-sm11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .grid__item--col-span-sm11 {
    grid-column: span 11 / span 11;
  }
  .grid__item--row-span-sm11 {
    grid-row: span 11 / span 11;
  }
  .grid--cols-sm12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .grid__item--col-span-sm12 {
    grid-column: span 12 / span 12;
  }
  .grid__item--row-span-sm12 {
    grid-row: span 12 / span 12;
  }
  .grid__item--col-start-sm1 {
    grid-column-start: 1;
  }
  .grid__item--col-end-sm1 {
    grid-column-end: 1;
  }
  .grid__item--col-start-sm2 {
    grid-column-start: 2;
  }
  .grid__item--col-end-sm2 {
    grid-column-end: 2;
  }
  .grid__item--col-start-sm3 {
    grid-column-start: 3;
  }
  .grid__item--col-end-sm3 {
    grid-column-end: 3;
  }
  .grid__item--col-start-sm4 {
    grid-column-start: 4;
  }
  .grid__item--col-end-sm4 {
    grid-column-end: 4;
  }
  .grid__item--col-start-sm5 {
    grid-column-start: 5;
  }
  .grid__item--col-end-sm5 {
    grid-column-end: 5;
  }
  .grid__item--col-start-sm6 {
    grid-column-start: 6;
  }
  .grid__item--col-end-sm6 {
    grid-column-end: 6;
  }
  .grid__item--col-start-sm7 {
    grid-column-start: 7;
  }
  .grid__item--col-end-sm7 {
    grid-column-end: 7;
  }
  .grid__item--col-start-sm8 {
    grid-column-start: 8;
  }
  .grid__item--col-end-sm8 {
    grid-column-end: 8;
  }
  .grid__item--col-start-sm9 {
    grid-column-start: 9;
  }
  .grid__item--col-end-sm9 {
    grid-column-end: 9;
  }
  .grid__item--col-start-sm10 {
    grid-column-start: 10;
  }
  .grid__item--col-end-sm10 {
    grid-column-end: 10;
  }
  .grid__item--col-start-sm11 {
    grid-column-start: 11;
  }
  .grid__item--col-end-sm11 {
    grid-column-end: 11;
  }
  .grid__item--col-start-sm12 {
    grid-column-start: 12;
  }
  .grid__item--col-end-sm12 {
    grid-column-end: 12;
  }
}
@media (min-width: 768px) {
  .grid--gap-md0 {
    gap: 0;
  }
  .grid--gap-md05 {
    gap: 0.5rem;
  }
  .grid--gap-md1 {
    gap: 1rem;
  }
  .grid--gap-md2 {
    gap: 2rem;
  }
  .grid--gap-md3 {
    gap: 3.25rem;
  }
  .grid--gap-md4 {
    gap: 4rem;
  }
  .grid--gap-x-md0 {
    row-gap: 0;
  }
  .grid--gap-x-md05 {
    row-gap: 0.5rem;
  }
  .grid--gap-x-md1 {
    row-gap: 1rem;
  }
  .grid--gap-x-md2 {
    row-gap: 2rem;
  }
  .grid--gap-x-md3 {
    row-gap: 3.25rem;
  }
  .grid--gap-x-md4 {
    row-gap: 4rem;
  }
  .grid--gap-y-md0 {
    column-gap: 0;
  }
  .grid--gap-y-md05 {
    column-gap: 0.5rem;
  }
  .grid--gap-y-md1 {
    column-gap: 1rem;
  }
  .grid--gap-y-md2 {
    column-gap: 2rem;
  }
  .grid--gap-y-md3 {
    column-gap: 3.25rem;
  }
  .grid--gap-y-md4 {
    column-gap: 4rem;
  }
  .grid--cols-md1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid__item--col-span-md1 {
    grid-column: span 1 / span 1;
  }
  .grid__item--row-span-md1 {
    grid-row: span 1 / span 1;
  }
  .grid--cols-md2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid__item--col-span-md2 {
    grid-column: span 2 / span 2;
  }
  .grid__item--row-span-md2 {
    grid-row: span 2 / span 2;
  }
  .grid--cols-md3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid__item--col-span-md3 {
    grid-column: span 3 / span 3;
  }
  .grid__item--row-span-md3 {
    grid-row: span 3 / span 3;
  }
  .grid--cols-md4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid__item--col-span-md4 {
    grid-column: span 4 / span 4;
  }
  .grid__item--row-span-md4 {
    grid-row: span 4 / span 4;
  }
  .grid--cols-md5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid__item--col-span-md5 {
    grid-column: span 5 / span 5;
  }
  .grid__item--row-span-md5 {
    grid-row: span 5 / span 5;
  }
  .grid--cols-md6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid__item--col-span-md6 {
    grid-column: span 6 / span 6;
  }
  .grid__item--row-span-md6 {
    grid-row: span 6 / span 6;
  }
  .grid--cols-md7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .grid__item--col-span-md7 {
    grid-column: span 7 / span 7;
  }
  .grid__item--row-span-md7 {
    grid-row: span 7 / span 7;
  }
  .grid--cols-md8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid__item--col-span-md8 {
    grid-column: span 8 / span 8;
  }
  .grid__item--row-span-md8 {
    grid-row: span 8 / span 8;
  }
  .grid--cols-md9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .grid__item--col-span-md9 {
    grid-column: span 9 / span 9;
  }
  .grid__item--row-span-md9 {
    grid-row: span 9 / span 9;
  }
  .grid--cols-md10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .grid__item--col-span-md10 {
    grid-column: span 10 / span 10;
  }
  .grid__item--row-span-md10 {
    grid-row: span 10 / span 10;
  }
  .grid--cols-md11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .grid__item--col-span-md11 {
    grid-column: span 11 / span 11;
  }
  .grid__item--row-span-md11 {
    grid-row: span 11 / span 11;
  }
  .grid--cols-md12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .grid__item--col-span-md12 {
    grid-column: span 12 / span 12;
  }
  .grid__item--row-span-md12 {
    grid-row: span 12 / span 12;
  }
  .grid__item--col-start-md1 {
    grid-column-start: 1;
  }
  .grid__item--col-end-md1 {
    grid-column-end: 1;
  }
  .grid__item--col-start-md2 {
    grid-column-start: 2;
  }
  .grid__item--col-end-md2 {
    grid-column-end: 2;
  }
  .grid__item--col-start-md3 {
    grid-column-start: 3;
  }
  .grid__item--col-end-md3 {
    grid-column-end: 3;
  }
  .grid__item--col-start-md4 {
    grid-column-start: 4;
  }
  .grid__item--col-end-md4 {
    grid-column-end: 4;
  }
  .grid__item--col-start-md5 {
    grid-column-start: 5;
  }
  .grid__item--col-end-md5 {
    grid-column-end: 5;
  }
  .grid__item--col-start-md6 {
    grid-column-start: 6;
  }
  .grid__item--col-end-md6 {
    grid-column-end: 6;
  }
  .grid__item--col-start-md7 {
    grid-column-start: 7;
  }
  .grid__item--col-end-md7 {
    grid-column-end: 7;
  }
  .grid__item--col-start-md8 {
    grid-column-start: 8;
  }
  .grid__item--col-end-md8 {
    grid-column-end: 8;
  }
  .grid__item--col-start-md9 {
    grid-column-start: 9;
  }
  .grid__item--col-end-md9 {
    grid-column-end: 9;
  }
  .grid__item--col-start-md10 {
    grid-column-start: 10;
  }
  .grid__item--col-end-md10 {
    grid-column-end: 10;
  }
  .grid__item--col-start-md11 {
    grid-column-start: 11;
  }
  .grid__item--col-end-md11 {
    grid-column-end: 11;
  }
  .grid__item--col-start-md12 {
    grid-column-start: 12;
  }
  .grid__item--col-end-md12 {
    grid-column-end: 12;
  }
}
@media (min-width: 992px) {
  .grid--gap-lg0 {
    gap: 0;
  }
  .grid--gap-lg05 {
    gap: 0.5rem;
  }
  .grid--gap-lg1 {
    gap: 1rem;
  }
  .grid--gap-lg2 {
    gap: 2rem;
  }
  .grid--gap-lg3 {
    gap: 3.25rem;
  }
  .grid--gap-lg4 {
    gap: 4rem;
  }
  .grid--gap-x-lg0 {
    row-gap: 0;
  }
  .grid--gap-x-lg05 {
    row-gap: 0.5rem;
  }
  .grid--gap-x-lg1 {
    row-gap: 1rem;
  }
  .grid--gap-x-lg2 {
    row-gap: 2rem;
  }
  .grid--gap-x-lg3 {
    row-gap: 3.25rem;
  }
  .grid--gap-x-lg4 {
    row-gap: 4rem;
  }
  .grid--gap-y-lg0 {
    column-gap: 0;
  }
  .grid--gap-y-lg05 {
    column-gap: 0.5rem;
  }
  .grid--gap-y-lg1 {
    column-gap: 1rem;
  }
  .grid--gap-y-lg2 {
    column-gap: 2rem;
  }
  .grid--gap-y-lg3 {
    column-gap: 3.25rem;
  }
  .grid--gap-y-lg4 {
    column-gap: 4rem;
  }
  .grid--cols-lg1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid__item--col-span-lg1 {
    grid-column: span 1 / span 1;
  }
  .grid__item--row-span-lg1 {
    grid-row: span 1 / span 1;
  }
  .grid--cols-lg2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid__item--col-span-lg2 {
    grid-column: span 2 / span 2;
  }
  .grid__item--row-span-lg2 {
    grid-row: span 2 / span 2;
  }
  .grid--cols-lg3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid__item--col-span-lg3 {
    grid-column: span 3 / span 3;
  }
  .grid__item--row-span-lg3 {
    grid-row: span 3 / span 3;
  }
  .grid--cols-lg4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid__item--col-span-lg4 {
    grid-column: span 4 / span 4;
  }
  .grid__item--row-span-lg4 {
    grid-row: span 4 / span 4;
  }
  .grid--cols-lg5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid__item--col-span-lg5 {
    grid-column: span 5 / span 5;
  }
  .grid__item--row-span-lg5 {
    grid-row: span 5 / span 5;
  }
  .grid--cols-lg6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid__item--col-span-lg6 {
    grid-column: span 6 / span 6;
  }
  .grid__item--row-span-lg6 {
    grid-row: span 6 / span 6;
  }
  .grid--cols-lg7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .grid__item--col-span-lg7 {
    grid-column: span 7 / span 7;
  }
  .grid__item--row-span-lg7 {
    grid-row: span 7 / span 7;
  }
  .grid--cols-lg8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid__item--col-span-lg8 {
    grid-column: span 8 / span 8;
  }
  .grid__item--row-span-lg8 {
    grid-row: span 8 / span 8;
  }
  .grid--cols-lg9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .grid__item--col-span-lg9 {
    grid-column: span 9 / span 9;
  }
  .grid__item--row-span-lg9 {
    grid-row: span 9 / span 9;
  }
  .grid--cols-lg10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .grid__item--col-span-lg10 {
    grid-column: span 10 / span 10;
  }
  .grid__item--row-span-lg10 {
    grid-row: span 10 / span 10;
  }
  .grid--cols-lg11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .grid__item--col-span-lg11 {
    grid-column: span 11 / span 11;
  }
  .grid__item--row-span-lg11 {
    grid-row: span 11 / span 11;
  }
  .grid--cols-lg12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .grid__item--col-span-lg12 {
    grid-column: span 12 / span 12;
  }
  .grid__item--row-span-lg12 {
    grid-row: span 12 / span 12;
  }
  .grid__item--col-start-lg1 {
    grid-column-start: 1;
  }
  .grid__item--col-end-lg1 {
    grid-column-end: 1;
  }
  .grid__item--col-start-lg2 {
    grid-column-start: 2;
  }
  .grid__item--col-end-lg2 {
    grid-column-end: 2;
  }
  .grid__item--col-start-lg3 {
    grid-column-start: 3;
  }
  .grid__item--col-end-lg3 {
    grid-column-end: 3;
  }
  .grid__item--col-start-lg4 {
    grid-column-start: 4;
  }
  .grid__item--col-end-lg4 {
    grid-column-end: 4;
  }
  .grid__item--col-start-lg5 {
    grid-column-start: 5;
  }
  .grid__item--col-end-lg5 {
    grid-column-end: 5;
  }
  .grid__item--col-start-lg6 {
    grid-column-start: 6;
  }
  .grid__item--col-end-lg6 {
    grid-column-end: 6;
  }
  .grid__item--col-start-lg7 {
    grid-column-start: 7;
  }
  .grid__item--col-end-lg7 {
    grid-column-end: 7;
  }
  .grid__item--col-start-lg8 {
    grid-column-start: 8;
  }
  .grid__item--col-end-lg8 {
    grid-column-end: 8;
  }
  .grid__item--col-start-lg9 {
    grid-column-start: 9;
  }
  .grid__item--col-end-lg9 {
    grid-column-end: 9;
  }
  .grid__item--col-start-lg10 {
    grid-column-start: 10;
  }
  .grid__item--col-end-lg10 {
    grid-column-end: 10;
  }
  .grid__item--col-start-lg11 {
    grid-column-start: 11;
  }
  .grid__item--col-end-lg11 {
    grid-column-end: 11;
  }
  .grid__item--col-start-lg12 {
    grid-column-start: 12;
  }
  .grid__item--col-end-lg12 {
    grid-column-end: 12;
  }
}
@media (min-width: 1200px) {
  .grid--gap-xl0 {
    gap: 0;
  }
  .grid--gap-xl05 {
    gap: 0.5rem;
  }
  .grid--gap-xl1 {
    gap: 1rem;
  }
  .grid--gap-xl2 {
    gap: 2rem;
  }
  .grid--gap-xl3 {
    gap: 3.25rem;
  }
  .grid--gap-xl4 {
    gap: 4rem;
  }
  .grid--gap-x-xl0 {
    row-gap: 0;
  }
  .grid--gap-x-xl05 {
    row-gap: 0.5rem;
  }
  .grid--gap-x-xl1 {
    row-gap: 1rem;
  }
  .grid--gap-x-xl2 {
    row-gap: 2rem;
  }
  .grid--gap-x-xl3 {
    row-gap: 3.25rem;
  }
  .grid--gap-x-xl4 {
    row-gap: 4rem;
  }
  .grid--gap-y-xl0 {
    column-gap: 0;
  }
  .grid--gap-y-xl05 {
    column-gap: 0.5rem;
  }
  .grid--gap-y-xl1 {
    column-gap: 1rem;
  }
  .grid--gap-y-xl2 {
    column-gap: 2rem;
  }
  .grid--gap-y-xl3 {
    column-gap: 3.25rem;
  }
  .grid--gap-y-xl4 {
    column-gap: 4rem;
  }
  .grid--cols-xl1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid__item--col-span-xl1 {
    grid-column: span 1 / span 1;
  }
  .grid__item--row-span-xl1 {
    grid-row: span 1 / span 1;
  }
  .grid--cols-xl2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid__item--col-span-xl2 {
    grid-column: span 2 / span 2;
  }
  .grid__item--row-span-xl2 {
    grid-row: span 2 / span 2;
  }
  .grid--cols-xl3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid__item--col-span-xl3 {
    grid-column: span 3 / span 3;
  }
  .grid__item--row-span-xl3 {
    grid-row: span 3 / span 3;
  }
  .grid--cols-xl4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid__item--col-span-xl4 {
    grid-column: span 4 / span 4;
  }
  .grid__item--row-span-xl4 {
    grid-row: span 4 / span 4;
  }
  .grid--cols-xl5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid__item--col-span-xl5 {
    grid-column: span 5 / span 5;
  }
  .grid__item--row-span-xl5 {
    grid-row: span 5 / span 5;
  }
  .grid--cols-xl6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid__item--col-span-xl6 {
    grid-column: span 6 / span 6;
  }
  .grid__item--row-span-xl6 {
    grid-row: span 6 / span 6;
  }
  .grid--cols-xl7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .grid__item--col-span-xl7 {
    grid-column: span 7 / span 7;
  }
  .grid__item--row-span-xl7 {
    grid-row: span 7 / span 7;
  }
  .grid--cols-xl8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid__item--col-span-xl8 {
    grid-column: span 8 / span 8;
  }
  .grid__item--row-span-xl8 {
    grid-row: span 8 / span 8;
  }
  .grid--cols-xl9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .grid__item--col-span-xl9 {
    grid-column: span 9 / span 9;
  }
  .grid__item--row-span-xl9 {
    grid-row: span 9 / span 9;
  }
  .grid--cols-xl10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .grid__item--col-span-xl10 {
    grid-column: span 10 / span 10;
  }
  .grid__item--row-span-xl10 {
    grid-row: span 10 / span 10;
  }
  .grid--cols-xl11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .grid__item--col-span-xl11 {
    grid-column: span 11 / span 11;
  }
  .grid__item--row-span-xl11 {
    grid-row: span 11 / span 11;
  }
  .grid--cols-xl12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .grid__item--col-span-xl12 {
    grid-column: span 12 / span 12;
  }
  .grid__item--row-span-xl12 {
    grid-row: span 12 / span 12;
  }
  .grid__item--col-start-xl1 {
    grid-column-start: 1;
  }
  .grid__item--col-end-xl1 {
    grid-column-end: 1;
  }
  .grid__item--col-start-xl2 {
    grid-column-start: 2;
  }
  .grid__item--col-end-xl2 {
    grid-column-end: 2;
  }
  .grid__item--col-start-xl3 {
    grid-column-start: 3;
  }
  .grid__item--col-end-xl3 {
    grid-column-end: 3;
  }
  .grid__item--col-start-xl4 {
    grid-column-start: 4;
  }
  .grid__item--col-end-xl4 {
    grid-column-end: 4;
  }
  .grid__item--col-start-xl5 {
    grid-column-start: 5;
  }
  .grid__item--col-end-xl5 {
    grid-column-end: 5;
  }
  .grid__item--col-start-xl6 {
    grid-column-start: 6;
  }
  .grid__item--col-end-xl6 {
    grid-column-end: 6;
  }
  .grid__item--col-start-xl7 {
    grid-column-start: 7;
  }
  .grid__item--col-end-xl7 {
    grid-column-end: 7;
  }
  .grid__item--col-start-xl8 {
    grid-column-start: 8;
  }
  .grid__item--col-end-xl8 {
    grid-column-end: 8;
  }
  .grid__item--col-start-xl9 {
    grid-column-start: 9;
  }
  .grid__item--col-end-xl9 {
    grid-column-end: 9;
  }
  .grid__item--col-start-xl10 {
    grid-column-start: 10;
  }
  .grid__item--col-end-xl10 {
    grid-column-end: 10;
  }
  .grid__item--col-start-xl11 {
    grid-column-start: 11;
  }
  .grid__item--col-end-xl11 {
    grid-column-end: 11;
  }
  .grid__item--col-start-xl12 {
    grid-column-start: 12;
  }
  .grid__item--col-end-xl12 {
    grid-column-end: 12;
  }
}
.cms-message {
  width: 100%;
  border: solid 2px;
  display: flex;
  background: #fff;
}
.cms-message__icon-area {
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 2px solid;
  min-height: 3.25rem;
  min-width: 3.25rem;
}
.cms-message__icon-area::before {
  font-family: "icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
  font-weight: 700;
  font-size: 1.75rem;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.25), 0 0 12px rgba(0, 0, 0, 0.05);
}
@media speech {
  .cms-message__icon-area::before {
    display: none;
    visibility: hidden;
  }
}
.cms-message__content {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  color: #000;
}
.cms-message__content p {
  margin: 0;
}
.cms-message--my1 {
  margin: 1rem 0;
  margin-bottom: 1rem !important;
}
.cms-message--my2 {
  margin: 2rem 0;
  margin-bottom: 2rem !important;
}
.cms-message--my3 {
  margin: 3rem 0;
  margin-bottom: 3rem !important;
}
.cms-message--my4 {
  margin: 4rem 0;
  margin-bottom: 4rem !important;
}
.cms-message--success {
  border-color: #5ac18e;
}
.cms-message--success .cms-message__icon-area {
  background: #5ac18e;
  border-color: #5ac18e;
}
.cms-message--success .cms-message__icon-area::before {
  content: "î¤™";
}
.cms-message--warning {
  border-color: gold;
}
.cms-message--warning .cms-message__icon-area {
  background: gold;
  border-color: gold;
}
.cms-message--warning .cms-message__icon-area::before {
  content: "î¤€";
}
.cms-message--error {
  border-color: #f66;
}
.cms-message--error .cms-message__icon-area {
  background: #f66;
  border-color: #f66;
}
.cms-message--error .cms-message__icon-area::before {
  content: "î¤”";
}
.composition:where(.composition--padded-xs) {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.composition:where(.composition--padded-sm) {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.composition:where(.composition--padded) {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 992px) {
  .composition:where(.composition--padded) {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
}
.composition:where(.composition--padded-lg) {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}
@media (min-width: 992px) {
  .composition:where(.composition--padded-lg) {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }
}
.composition:where(.composition--padded-flush-top) {
  padding-top: 0;
}
.composition:where(.composition--padded-flush-bottom) {
  padding-bottom: 0;
}
.composition:where(.composition--spaced-xs) {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.composition:where(.composition--spaced-sm) {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.composition:where(.composition--spaced) {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .composition:where(.composition--spaced) {
    margin-top: 3.25rem;
    margin-bottom: 3.25rem;
  }
}
.composition:where(.composition--spaced-lg) {
  margin-top: 3.25rem;
  margin-bottom: 3.25rem;
}
@media (min-width: 992px) {
  .composition:where(.composition--spaced-lg) {
    margin-top: 6.5rem;
    margin-bottom: 6.5rem;
  }
}
.composition:where(.composition--spaced-flush-top) {
  margin-top: 0;
}
.composition:where(.composition--spaced-flush-bottom) {
  margin-bottom: 0;
}
.composition:where(.composition--fill-darkGray) {
  color: #fff;
  position: relative;
  z-index: 0;
}
.composition:where(.composition--fill-darkGray)::before {
  isolation: isolate;
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #343434;
  mix-blend-mode: screen;
}
.composition:where(.composition--fill-lightGray) {
  color: #343434;
  position: relative;
  z-index: 0;
}
.composition:where(.composition--fill-lightGray)::before {
  isolation: isolate;
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #f3f3f3;
  mix-blend-mode: screen;
}
.composition:where(.composition--fill-blue) {
  color: #343434;
  position: relative;
  z-index: 0;
}
.composition:where(.composition--fill-blue)::before {
  isolation: isolate;
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #eaf2f6;
  mix-blend-mode: screen;
}
.composition:where(.composition--fill-offWhiteTeal) {
  color: #343434;
  position: relative;
  z-index: 0;
}
.composition:where(.composition--fill-offWhiteTeal)::before {
  isolation: isolate;
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #eaf2f6;
  mix-blend-mode: screen;
}
.composition:where(.composition--fill-teal) {
  color: #fff;
  position: relative;
  z-index: 0;
}
.composition:where(.composition--fill-teal)::before {
  isolation: isolate;
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #71af85;
  mix-blend-mode: screen;
}
.composition:where([style*="background-image"]) {
  position: relative;
  background-size: 0 0;
  background-position: 0 0;
  background-repeat: no-repeat;
  z-index: 0;
}
.composition:where([style*="background-image"])::after {
  content: "";
  z-index: -2;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #fff;
  background-image: inherit;
  background-size: cover;
  background-position: 50% 50%;
}
.composition-divider {
  position: absolute;
  width: 100%;
  top: -0.625rem;
  height: 1.125rem;
}
.composition-divider::before {
  content: "";
  position: absolute;
  top: 0;
  height: 1.125rem;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    to right,
    #71af85 0%,
    #9dc2ce 40%,
    #9dc2ce 60%,
    #71af85 100%
  );
}
.composition-logo {
  display: flex;
  justify-content: center;
  position: relative;
  top: -64px;
  margin-bottom: -44px;
  height: 125px;
  z-index: 1;
}
.composition-logo__img {
  width: 125px;
  max-width: 125px;
  min-width: 125px;
  height: 125px;
}
.composition--padded:not(.composition--padded-flush-top) .composition-logo {
  top: calc(-2rem - 64px);
  margin-bottom: calc(-2rem - 44px);
}
@media (min-width: 992px) {
  .composition--padded:not(.composition--padded-flush-top) .composition-logo {
    top: calc(-3.25rem - 64px);
    margin-bottom: calc(-3.25rem - 44px);
  }
}
.composition--padded-sm:not(.composition--padded-flush-top) .composition-logo {
  top: calc(-2rem - 64px);
  margin-bottom: calc(-2rem - 44px);
}
.composition--padded-lg:not(.composition--padded-flush-top) .composition-logo {
  top: calc(-3.25rem - 64px);
  margin-bottom: calc(-3.25rem - 20px);
}
@media (min-width: 992px) {
  .composition--padded-lg:not(.composition--padded-flush-top)
    .composition-logo {
    top: calc(-6.5rem - 64px);
    margin-bottom: calc(-6.5rem - 20px);
  }
}
*:where([component]:not(:defined)) {
  visibility: hidden;
  display: contents;
  box-sizing: border-box;
}
*:where([component]:not(:defined)) *,
*:where([component]:not(:defined)) *::before,
*:where([component]:not(:defined)) *::after {
  box-sizing: inherit;
}
.glyph-list:before {
  content: "î¤›";
}
.glyph-grid:before {
  content: "î¤";
}
.glyph-mail:before {
  content: "î¤š";
}
.glyph-check:before {
  content: "î¤™";
}
.glyph-alert:before {
  content: "î¤€";
}
.glyph-arrow-down:before {
  content: "î¤";
}
.glyph-arrow-left:before {
  content: "î¤‚";
}
.glyph-arrow-right:before {
  content: "î¤ƒ";
}
.glyph-arrow-up:before {
  content: "î¤„";
}
.glyph-chevron-down:before {
  content: "î¤…";
}
.glyph-chevron-left:before {
  content: "î¤†";
}
.glyph-chevron-right:before {
  content: "î¤‡";
}
.glyph-chevron-up:before {
  content: "î¤ˆ";
}
.glyph-facebook:before {
  content: "î¤‰";
}
.glyph-filter:before {
  content: "î¤Š";
}
.glyph-help:before {
  content: "î¤‹";
}
.glyph-house:before {
  content: "î¤Œ";
}
.glyph-instagram:before {
  content: "î¤";
}
.glyph-linkedin:before {
  content: "î¤Ž";
}
.glyph-menu-dots:before {
  content: "î¤";
}
.glyph-menu-lines:before {
  content: "î¤";
}
.glyph-pause:before {
  content: "î¤‘";
}
.glyph-play:before {
  content: "î¤’";
}
.glyph-reddit:before {
  content: "î¤“";
}
.glyph-close_bold:before {
  content: "î¤”";
}
.glyph-search:before {
  content: "î¤•";
}
.glyph-snapchat:before {
  content: "î¤–";
}
.glyph-twitter:before {
  content: "î¤—";
}
.glyph-youtube:before {
  content: "î¤˜";
}
.glyph-user:before {
  content: "î¤œ";
}
.glyph-upload:before {
  content: "î¥Ÿ";
}
.glyph-prescription_bottle:before {
  content: "î¤¬";
}
.glyph-check_circle:before {
  content: "î¤®";
}
.glyph-search_light:before {
  content: "î¤¯";
}
.glyph-angle-down:before {
  content: "î¤°";
}
.glyph-angle-left:before {
  content: "î¤±";
}
.glyph-angle-right:before {
  content: "î¤²";
}
.glyph-angle-up:before {
  content: "î¤³";
}
.glyph-bill:before {
  content: "î¤´";
}
.glyph-firefly:before {
  content: "î¤µ";
}
.glyph-call:before {
  content: "î¤¶";
}
.glyph-doc:before {
  content: "î¤¹";
}
.glyph-envelop:before {
  content: "î¤º";
}
.glyph-facebook_alt:before {
  content: "î¤»";
}
.glyph-facebook-square:before {
  content: "î¤¼";
}
.glyph-heart:before {
  content: "î¤½";
}
.glyph-heart_alt:before {
  content: "î¤¾";
}
.glyph-home:before {
  content: "î¤¿";
}
.glyph-instagram_alt:before {
  content: "î¥€";
}
.glyph-linkedin_alt:before {
  content: "î¥";
}
.glyph-map-pin:before {
  content: "î¥‚";
}
.glyph-pinterest:before {
  content: "î¥ƒ";
}
.glyph-search_outline:before {
  content: "î¥„";
}
.glyph-twitter_alt:before {
  content: "î¥…";
}
.glyph-sun:before {
  content: "î¥†";
}
.glyph-snake:before {
  content: "î¥‡";
}
.glyph-external-link:before {
  content: "î¤«";
}
.glyph-arrow-down_light:before {
  content: "î¤¡";
}
.glyph-arrow-left_light:before {
  content: "î¤¢";
}
.glyph-arrow-right_light:before {
  content: "î¤£";
}
.glyph-arrow-up_light:before {
  content: "î¤¦";
}
.glyph-chevron-down_light:before {
  content: "î¤¥";
}
.glyph-chevron-left_light:before {
  content: "î¤¤";
}
.glyph-chevron-right_light:before {
  content: "î¤ ";
}
.glyph-chevron-up_light:before {
  content: "î¤Ÿ";
}
.glyph-close:before {
  content: "î¤ž";
}
.glyph-menu:before {
  content: "î¤¨";
}
.glyph-check-mark:before {
  content: "î¤§";
}
.glyph-facebook_alt-2:before {
  content: "î¤©";
}
.glyph-close_medium:before {
  content: "î¤·";
}
.glyph-youtube_alt:before {
  content: "î¤¸";
}
.glyph-external_bold:before {
  content: "î¥¨";
}
.nav-skip {
  position: fixed;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 0.75rem;
  background: #fff;
  box-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.2),
    0.125rem 0.125rem 0.75rem rgba(0, 0, 0, 0.075);
  opacity: 0;
  transform: translateY(-100%);
  transition: 0.25s ease;
  z-index: 10000;
}
.nav-skip:focus {
  opacity: 1;
  transform: translateY(0);
}
.pay-hover {
  transition: all 0.3s ease;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  cursor: pointer;
}
.pay-hover:hover {
  -webkit-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
}
.btn-lightblue {
  background: #1e90ff !important;
}
.listing {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.listing__items {
  margin-bottom: 2rem;
}
.listing__items:is([data-view="list"] *) {
  display: flex;
  flex-direction: column;
}
.listing__items:is([data-view="grid"] *) {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
  gap: 2rem;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  border: 1px solid #f3f3f3;
  border-collapse: collapse;
}
.table--striped tbody tr:nth-child(odd) {
  background-color: #f3f3f3;
}
.table--bordered td,
.table--bordered th {
  border: 1px solid #f3f3f3;
}
.table th,
.table td {
  padding: 1rem;
  vertical-align: top;
  border-top: 1px solid #f3f3f3;
  text-align: inherit;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #f3f3f3;
}
.table tbody + tbody {
  border-top: 2px solid #f3f3f3;
}
.docbio-top {
  position: relative;
  width: 100%;
  min-height: 20px;
  padding: 0px;
  border: 1px solid #c2dbe8;
}
@media (min-width: 768px) {
  .doc_content {
    display: flex;
  }
}
.img-container {
  margin-bottom: 20px;
  position: relative;
}
.accepting {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  text-align: right;
  padding: 6px 9px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  line-height: 15px;
  width: 125px;
  display: block;
  background: #3aaf50;
  box-shadow: 0 3px 10px -5px #000;
  top: -5px;
  right: -5px;
}
.accepting.green {
  background: #3aaf50;
}
.accepting.blue {
  background: #005b83;
}
.accepting.gray {
  background: #878787;
}
.accepting.none {
  display: none;
}
.padded-column {
  padding: 30px;
}
.padded-column-small {
  padding: 15px;
}
.side-padding {
  padding-left: 30px;
  padding-right: 30px;
}
.location-marker {
  font-size: 14px;
  color: #c4c4c4;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.location-marker img {
  margin-right: 5px;
  padding-bottom: 5px;
}
.bio-address {
  font-size: 14px;
  line-height: 1.6em;
  margin-bottom: 5px;
  font-weight: 600;
}
.doctor-name {
  margin-top: 0px;
  margin-bottom: 10px;
  padding-top: 0px;
  color: #303234;
  font-size: 24px;
  font-weight: 700;
}
.specialties {
  color: #71af85;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}
.languages {
  font-weight: 600;
}
.office-name {
  margin-top: 10px;
  margin-bottom: 5px;
  color: #71af85;
  font-size: 18px;
  font-weight: 700;
}
.get-directions {
  color: #71af85;
  line-height: 22px;
  font-weight: 600;
  font-size: 16px;
  margin: 10px 0 20px 0;
  display: flex;
}
.get-directions:hover {
  text-decoration: none;
}
.green-btn {
  background-color: #3aaf50;
  color: #fff;
}
.green-btn:hover {
  background-color: #5ebc5e;
  color: #fff;
  text-decoration: none;
}
.phone-btn {
  font-weight: 500;
  display: flex;
  justify-content: center;
  font-size: 12px;
  align-content: center;
}
.phone-btn img {
  margin-right: 5px;
}
.locations-btn {
  font-weight: 500;
  display: flex;
  justify-content: center;
  font-size: 12px;
  align-content: center;
}
.locations-btn img {
  margin-right: 5px;
}
.appointment-buttons .btn {
  margin: 0 0 20px 10px;
}
.schedule {
  display: flex;
  color: #006993;
  font-weight: 500;
  text-transform: uppercase;
  padding-left: 20px;
  padding-left: 0;
}
.schedule-btns .btn {
  padding: 6px 20px;
  font-weight: 500;
}
.schedule-btns .btn:first-child {
  margin-right: 10px;
}
.right-border {
  border-right: 1px solid #c2dbe8;
}
.bio-section {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.share {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 60px 0;
}
.share .share_links {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.share .share_links li {
  float: left;
  width: 28px;
  margin: 0 24px 0 0;
  padding: 0;
  transition: opacity 0.3s ease;
}
#reviews .container-fluid {
  padding: 0;
}
#reviews .container-fluid .heading {
  padding-left: 20px;
}
#herorate.ds-summary {
  text-align: center;
  display: inline-block;
}
#herorate span.ds-stars {
  margin: 0 10px 0 0;
  display: inline-block;
}
#herorate span.rcnt {
  display: none;
}
#herorate .ds-comments {
  display: none;
}
.ds-xofy {
  margin-top: 0;
  display: inline-block;
}
.location-wrapper,
.map {
  width: 100%;
  height: 100%;
}
.algolia {
  margin-top: 20px;
}
.algolia ol {
  counter-reset: item;
  padding: 0;
}
.algolia ol li {
  position: relative;
  display: block;
  padding-left: 40px;
}
.algolia ol li::before {
  content: counter(item) ". ";
  counter-increment: item;
  color: #0081b1;
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  font-weight: 500;
  text-align: right;
}
.algolia ol li ol li::before {
  color: #303234;
}
.algolia ul ul {
  list-style-type: disc;
  padding: 0px 50px !important;
  margin-top: 12px;
}
.algolia .header {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0.5rem 1rem;
  background-color: #71af85;
  color: #fff;
  margin-bottom: 1rem;
}
.algolia .header a {
  color: #fff;
  text-decoration: none;
}
.algolia h1#page-title {
  margin-bottom: 10px;
}
.algolia p#intro {
  font-size: 14px;
  line-height: 1.4em;
  color: #666;
}
.algolia .deac_ratings.showratingsfalse {
  display: none;
}
.algolia .specialty {
  color: #71af85;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1.3em;
  margin-top: 5px;
}
.algolia .city {
  color: #71af85;
}
.algolia .address {
  color: #333;
  font-size: 14px;
  line-height: 1.3em;
  margin-bottom: 2px;
  margin-top: 10px;
  font-weight: 500;
  min-height: 38px;
}
.algolia .header-title {
  font-size: 1.2rem;
  font-weight: normal;
}
.algolia .header-title::after {
  content: " â–¸ ";
  padding: 0 0.5rem;
}
.algolia .header-subtitle {
  font-size: 1.2rem;
}
.algolia .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}
.algolia .search-panel {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .algolia .search-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
.algolia .search-panel__filters {
  background: #f7f7f7;
  padding: 10px;
}
@media only screen and (max-width: 768px) {
  .algolia .search-panel__filters {
    display: block;
    margin-right: 0;
    padding: 0;
  }
}
.algolia .search-panel__filters h4 {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
  color: #71af85;
}
.algolia .filter-label {
  display: inline-block;
  width: auto;
  color: #222;
  margin: 5px;
}
@media only screen and (min-width: 769px) {
  .algolia #clear-refinements {
    display: inline-block;
    float: right;
  }
}
.algolia .ais-Hits-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.algolia .ais-RefinementList-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.algolia .ais-RefinementList-list .ais-RefinementList-item {
  margin-bottom: 5px;
}
.algolia .ais-ClearRefinements-button,
.algolia .ais-RefinementList-showMore {
  font-size: 14px;
  line-height: 1em;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  background: #d88f51;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 4px;
  margin: 8px 0px;
}
.algolia .ais-ClearRefinements-button:hover,
.algolia .ais-RefinementList-showMore:hover {
  background: #e6b78f;
}
.algolia .facet-group {
  padding: 20px;
  background: #fff;
  margin: 20px 0;
}
.algolia .ais-RefinementList-showMore {
  display: block;
  background: rgba(0, 0, 0, 0);
  color: #71af85;
  padding: 0;
  font-weight: 600;
  margin-top: 5px;
  border: none;
}
.algolia .ais-RefinementList-showMore:hover {
  background: rgba(0, 0, 0, 0);
  color: #0081b1;
}
.algolia .ais-Hits-item,
.algolia .ais-InfiniteHits-item,
.algolia .ais-InfiniteResults-item,
.algolia .ais-Results-item {
  margin-top: 1rem;
  margin-left: 1rem;
  padding: 1rem;
  width: calc(25% - 1rem);
  border: 1px solid #c4c8d8;
  box-shadow: 0 2px 5px 0 #e3e5ec;
  list-style: none;
  padding: 14px;
}
@media only screen and (max-width: 1460px) {
  .algolia .ais-Hits-item,
  .algolia .ais-InfiniteHits-item,
  .algolia .ais-InfiniteResults-item,
  .algolia .ais-Results-item {
    width: calc(33.3% - 1rem);
  }
}
@media only screen and (max-width: 1024px) {
  .algolia .ais-Hits-item,
  .algolia .ais-InfiniteHits-item,
  .algolia .ais-InfiniteResults-item,
  .algolia .ais-Results-item {
    width: calc(50% - 1rem);
  }
}
@media only screen and (max-width: 768px) {
  .algolia .ais-Hits-item,
  .algolia .ais-InfiniteHits-item,
  .algolia .ais-InfiniteResults-item,
  .algolia .ais-Results-item {
    width: calc(100% - 1rem);
  }
}
.algolia .ais-Hits-item h5,
.algolia .ais-InfiniteHits-item h5,
.algolia .ais-InfiniteResults-item h5,
.algolia .ais-Results-item h5 {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700 !important;
}
.algolia .ais-Hits-item:before,
.algolia .ais-InfiniteHits-item:before,
.algolia .ais-InfiniteResults-item:before,
.algolia .ais-Results-item:before {
  content: "";
}
.algolia .location-results .ais-Hits-item,
.algolia .location-results .ais-Results-item {
  width: calc(33.3% - 1rem);
}
@media only screen and (max-width: 1024px) {
  .algolia .location-results .ais-Hits-item,
  .algolia .location-results .ais-Results-item {
    width: calc(50% - 1rem);
  }
}
@media only screen and (max-width: 768px) {
  .algolia .location-results .ais-Hits-item,
  .algolia .location-results .ais-Results-item {
    width: calc(100% - 1rem);
  }
}
.algolia .ais-RefinementList-label,
.algolia .ais-ToggleRefinement-label {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.algolia .ais-RefinementList-checkbox,
.algolia .ais-ToggleRefinement-checkbox {
  position: absolute;
  opacity: 1;
  cursor: pointer;
  height: 16px;
  width: 16px;
  left: 0px;
  top: 0px;
  background-color: #fff;
  border: 1px solid #999;
}
.algolia .ais-RefinementList-labelText {
  font-size: 0.95em;
  margin-right: 10px;
}
.algolia .ais-RefinementList-item--selected .custom-check:after {
  display: block;
}
.algolia .ais-RefinementList-count {
  background: #f3f3f0;
  padding: 1px 5px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-size: 13px;
  color: #464646;
  border: 1px solid #9c9c9c;
  margin-left: 5px;
  float: right;
  min-width: 36px;
  text-align: center;
}
.algolia .ais-ToggleRefinement {
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  margin-bottom: 5px;
}
.algolia .ais-ToggleRefinement .ais-ToggleRefinement-labelText {
  font-size: 0.95em;
}
.algolia .ais-Hits-item article {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.algolia .ais-Hits-item article p {
  margin-bottom: 2px;
}
.algolia .ais-Hits-item article p.hours {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4em;
  margin-left: 30px;
}
.algolia .ais-Hits-item .bio-link:hover {
  text-decoration: none;
  background: #fff;
}
.algolia .schedule-btn {
  font-weight: 400;
  font-size: 14px;
  margin-top: auto;
}
.algolia .btn-orange {
  background: #ef9e5a;
  color: #fff;
}
.algolia .btn-orange:hover {
  background: #fbb16a;
}
.algolia .btn-light {
  background: #f0f8ff;
  color: #0081b1;
  border: 1px solid #0081b1;
}
.algolia .ais-Highlight-highlighted {
  color: #ffe72d;
  font-size: inherit;
}
.algolia .ais-SearchBox-form {
  display: flex;
  width: 100%;
}
.algolia .ais-SearchBox-form .ais-SearchBox-input {
  width: 100%;
  padding: 8px;
}
.algolia .ais-SearchBox-form .ais-SearchBox-input::placeholder {
  color: #aaa;
}
.algolia .ais-SearchBox-form .ais-SearchBox-submit {
  background: #71af85;
  border: none;
  width: 80px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.algolia .ais-SearchBox-form .ais-SearchBox-submitIcon {
  fill: #fff;
  height: 20px;
  width: 20px;
}
.algolia .icon {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
}
.algolia .icon.mychart_icon::before {
  background-image: url(/img/content-images/my_chart.min.svg);
}
.algolia .icon.phone_icon::before {
  background-image: url(/img/content-images/phone.min.svg);
  top: 0px;
}
.algolia .icon.location_icon {
  top: 0;
}
.algolia .icon.location_icon::before {
  background-image: url(/img/content-images/location.min.svg);
}
.algolia .icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  background: no-repeat center;
  background-size: contain;
}
.algolia .accepting-true {
  color: #ef9e5a;
}
.algolia .accepting-false {
  display: none;
}
.algolia span.rcnt {
  color: #666;
  margin-left: 5px;
}
.algolia .pagination {
  margin: 2rem auto;
  text-align: center;
}
.algolia .pagination .ais-Pagination-list {
  list-style: none;
  display: flex;
  margin: 0;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.algolia .pagination .ais-Pagination-list .ais-Pagination-item {
  display: inline-block;
  padding: 0;
  font-size: 20px;
  line-height: 1em;
  height: auto;
  margin: 0 1px;
}
.algolia
  .pagination
  .ais-Pagination-list
  .ais-Pagination-item
  .ais-Pagination-link {
  padding: 4px 6px;
  display: block;
}
.algolia .pagination .ais-Pagination-list .ais-Pagination-item--selected {
  background: #eef5fc;
  border: 1px solid #b4d0ea;
  font-weight: bold;
}
.algolia .pagination .ais-Pagination-list .ais-Pagination-item--page {
  font-size: 16px;
}
.algolia
  .pagination
  .ais-Pagination-list
  .ais-Pagination-item--nextPage
  .ais-Pagination-link,
.algolia
  .pagination
  .ais-Pagination-list
  .ais-Pagination-item--previousPage
  .ais-Pagination-link {
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 6px;
}
.algolia .pagination .ais-Pagination-list .ais-Pagination-item--nextPage {
  margin-left: 5px;
  border-left: 1px solid #ccc;
}
.algolia .pagination .ais-Pagination-list .ais-Pagination-item--previousPage {
  margin-right: 5px;
  border-right: 1px solid #ccc;
}
.algolia
  .pagination
  .ais-Pagination-list
  .ais-Pagination-item--lastPage
  .ais-Pagination-link,
.algolia
  .pagination
  .ais-Pagination-list
  .ais-Pagination-item--firstPage
  .ais-Pagination-link {
  font-size: 30px;
  margin-bottom: 6px;
}
.algolia .pagination .ais-Pagination-list .ais-Pagination-item--disabled {
  color: #ccc;
}
.algolia .search-panel__results {
  flex: 3;
}
@media only screen and (max-width: 600px) {
  .algolia .search-panel__results {
    width: 100%;
  }
}
.algolia .search-panel__results.medstaff .schedule-btn,
.algolia .search-panel__results.medstaff .mychart_icon,
.algolia .search-panel__results.medstaff img,
.algolia .search-panel__results.medstaff .deac_ratings,
.algolia .search-panel__results.medstaff .accepting-true {
  display: none;
}
.algolia .ais-CurrentRefinements-list {
  list-style: none;
  padding-left: 0;
  width: 100%;
}
.algolia .ais-CurrentRefinements-list .ais-CurrentRefinements-item {
  display: inline;
  margin-right: 10px;
  background: #d88f51;
  color: #fff;
  padding: 3px 5px;
  font-size: 14px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
@media only screen and (max-width: 767px) {
  .algolia .ais-CurrentRefinements-list .ais-CurrentRefinements-item {
    margin-right: 0;
    background: rgba(0, 0, 0, 0);
    color: #999;
    padding: 0 5px;
    margin-bottom: 0;
    margin-left: 10px;
  }
}
.algolia .ais-CurrentRefinements-list .ais-CurrentRefinements-label {
  margin-right: 5px;
}
.algolia .ais-CurrentRefinements-list .ais-CurrentRefinements-delete {
  background: rgba(0, 0, 0, 0);
  border: none;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .algolia .ais-CurrentRefinements-list .ais-CurrentRefinements-delete {
    color: #999;
  }
}
.algolia .bottom-buttons {
  margin-top: auto;
}
.algolia .bottom-buttons .btn {
  width: 90%;
  margin-top: 8px;
  line-height: 1;
}
.algolia .bottom-buttons .btn-false {
  display: none;
}
.algolia .phone {
  display: block;
  line-height: 1.4em;
  margin: 5px 0;
  font-weight: 500;
  min-height: 20px;
}
.algolia .phone a:before {
  height: 5px;
  content: "";
  width: 100%;
  display: block;
}
.algolia .office-image {
  height: 200px;
}
.algolia .doctype-switch {
  display: flex;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
.algolia #doctor-btn-container .btn,
.algolia #medical-staff-btn-container .btn {
  width: 100%;
  border-radius: 0;
}
@media only screen and (max-width: 767px) {
  .algolia #medical-staff-btn-container .btn {
    margin-top: -80px;
  }
  .algolia #doctor-btn-container .btn {
    margin-top: -16px;
  }
}
.algolia .bio-link h5 {
  color: #424242;
}
.algolia .ds-xofy {
  font-size: 14px;
  display: inline-block;
}
.algolia span.ds-stars,
.algolia .ds-stars {
  display: inline-block;
}
.algolia .deac_ratings .ds-average-max {
  font-weight: bold;
}
.algolia .available-times {
  text-align: center;
  margin: 10px 0;
}
.algolia .wait-description {
  text-transform: uppercase;
  color: #666;
}
.algolia .wait-label {
  color: #71af85;
  font-size: 14px;
  font-weight: bold;
}
.algolia .wait-time {
  line-height: 32px;
  color: #090;
}
.algolia .toggle-btn,
.algolia .toggle-close,
.algolia .accordion-container {
  display: none;
}
.algolia .accordion-btn {
  position: relative;
}
.algolia .accordion-btn::before {
  content: "+";
  position: absolute;
  right: 0;
  font-weight: bold;
  font-size: 24px;
}
.algolia .accordion-btn.expanded::before {
  content: "-";
  font-size: 30px;
  margin-top: -3px;
}
.algolia .readmore,
.algolia .readless {
  display: none;
}
@media only screen and (max-width: 769px) {
  .algolia h1#page-title {
    margin-bottom: 10px;
  }
  .algolia .searchbox {
    margin-bottom: 10px;
  }
  .algolia .filter-header {
    padding: 10px;
  }
  .algolia #clear-refinements {
    display: inline-block;
  }
  .algolia .toggle-container {
    position: fixed;
    left: -100%;
    top: 63px;
    width: 100%;
    background: #f7f7f7;
    transition: 0.53s transform;
    transition-timing-function: cubic-bezier(0.38, 0.52, 0.37, 1);
    background: #f7f7f7;
    z-index: 9999;
    display: block;
    height: 100%;
    overflow: hidden;
  }
  .algolia .toggle-container.slide-open {
    transform: translateX(100vw);
  }
  .algolia .toggle-btn {
    display: inline-block;
    transition: 0.5s transform;
    transition-timing-function: cubic-bezier(0.38, 0.52, 0.37, 1.27);
    background-color: #fff;
    padding: 0 10px;
    border: none;
    background: #71af85;
    color: #fff;
    font-size: 14px;
  }
  .algolia .toggle-btn.bottom-btn {
    margin: 0 0 20px 10px;
  }
  .algolia .toggle-btn.close-btn {
    background: rgba(0, 0, 0, 0);
    color: #666;
    font-size: 50px;
    float: right;
    padding: 0;
    transform: rotate(-45deg);
    line-height: 1;
    margin-top: -8px;
  }
  .algolia .toggle-btn.open-filters {
    transform: rotate(270deg) perspective(100px);
    -webkit-transform: rotate(270deg) perspective(100px);
    border-radius: 0 0 5px 5px;
    position: fixed;
    left: -40px;
    top: 250px;
    padding: 3px 15px;
    z-index: 2;
    -webkit-transform-origin-x: 50%;
    -webkit-transform-origin-y: 52%;
    font-size: 12px;
    zoom: 1.009;
  }
  .algolia .ais-ClearRefinements-button {
    font-size: 14px;
    line-height: 1.78;
    border: none;
    padding: 0 10px;
    border-radius: 0;
    margin: 0;
  }
  .algolia .scroll {
    height: calc(100% - 115px);
    overflow-y: scroll;
    position: fixed;
    width: 100%;
  }
  .algolia .readmore,
  .algolia .readless {
    color: #0081b1;
  }
  .algolia .readmore {
    display: inline;
  }
  .algolia #intro {
    display: none;
  }
}
.InternetExplorer .algolia .search-panel__filters {
  flex: 1;
}
.InternetExplorer .algolia .ais-Hits-item article {
  width: 100%;
}
.InternetExplorer .algolia .bio-link {
  overflow: hidden;
}
.InternetExplorer .algolia .schedule-btn {
  width: 100%;
}
.appear {
  opacity: 1;
}
.flex-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
}
.next-appts-data {
  margin-left: -14px;
  width: calc(100% + 28px);
  padding: 0 14px;
  background: #fff;
  margin-top: 10px;
}
.next-appts-header {
  color: #006990;
  font-size: 15px;
}
.next-appts-data p.small {
  padding: 10px 0 5px 0;
}
.appt-btn-wrapper {
  margin-left: -14px;
  width: calc(100% + 28px);
  padding: 10px 14px;
  background: #e9f1f6;
  margin-bottom: -14px;
  float: left;
}
.next-appts-wrapper {
  min-height: 70px;
}
.algolia .schedule-btn {
  width: 100%;
}
.available-appt {
  width: 32%;
  border: 1px solid rgba(0, 129, 177, 0.568627451);
  float: left;
  margin-left: 2%;
  font-size: 12px;
  text-align: center;
  line-height: 1.7em;
  background: #fff;
  padding: 3px 0;
}
.available-appt:first-child {
  margin-left: 0;
}
.available-appt .day {
  font-weight: bold;
}
.available-appt span {
  display: block;
}
.available-appt .time {
  font-size: 14px;
  font-weight: bold;
}
.no-upcoming-appts {
  font-size: 15px;
  line-height: 18px;
  padding: 10px 11px 0px;
  color: #006990;
  text-align: center;
  max-width: 75%;
  margin: auto;
  min-height: 102px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.appts-loading {
  font-size: 15px;
  line-height: 18px;
  padding: 10px 11px 0px;
  color: #006990;
  text-align: center;
  max-width: 75%;
  margin: auto;
}
.loading {
  position: relative;
  overflow: hidden;
}
.loading::after {
  content: "";
  display: block;
  background-color: rgba(0, 129, 177, 0.6588235294);
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  transform: translateX(0);
  animation: 1.5s loading-placeholder ease-in-out infinite;
}
@keyframes loading-placeholder {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.algolia .ais-Hits-item,
.algolia .ais-InfiniteHits-item,
.algolia .ais-InfiniteResults-item,
.algolia .ais-Results-item {
  width: calc(33.3% - 1rem);
}
@media only screen and (max-width: 1460px) {
  .algolia .ais-Hits-item,
  .algolia .ais-InfiniteHits-item,
  .algolia .ais-InfiniteResults-item,
  .algolia .ais-Results-item {
    width: calc(50% - 1rem);
  }
}
@media only screen and (max-width: 768px) {
  .algolia .ais-Hits-item,
  .algolia .ais-InfiniteHits-item,
  .algolia .ais-InfiniteResults-item,
  .algolia .ais-Results-item {
    width: calc(100% - 1rem);
  }
}
.info-header {
  background: rgba(58, 155, 229, 0.7);
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 0px 5px;
  height: 26px;
  margin-top: -26px;
  z-index: 2;
  position: relative;
  font-size: 0.8em;
  font-weight: bold;
}
.appear {
  opacity: 1;
}
.flex-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
}
.next-appts-data {
  margin-left: -14px;
  width: calc(100% + 28px);
  padding: 0 14px;
  background: #fff;
  margin-top: 10px;
}
.next-appts-header {
  color: #006990;
  font-size: 15px;
}
.next-appts-data p.small {
  padding: 10px 0 5px 0;
}
.appt-btn-wrapper {
  margin-left: -14px;
  width: calc(100% + 28px);
  padding: 10px 14px;
  background: #e9f1f6;
  margin-bottom: -14px;
  float: left;
}
.next-appts-wrapper {
  min-height: 70px;
}
.algolia .schedule-btn {
  width: 100%;
}
.available-appt {
  width: 32%;
  border: 1px solid rgba(0, 129, 177, 0.568627451);
  float: left;
  margin-left: 2%;
  font-size: 12px;
  text-align: center;
  line-height: 1.7em;
  background: #fff;
  padding: 3px 0;
}
.available-appt:first-child {
  margin-left: 0;
}
.available-appt .day {
  font-weight: bold;
}
.available-appt span {
  display: block;
}
.available-appt .time {
  font-size: 14px;
  font-weight: bold;
}
.no-upcoming-appts {
  font-size: 15px;
  line-height: 18px;
  padding: 10px 11px 0px;
  color: #4ff067;
  text-align: center;
  max-width: 75%;
  margin: auto;
  min-height: 102px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.appts-loading {
  font-size: 15px;
  line-height: 18px;
  padding: 10px 11px 0px;
  color: #006990;
  text-align: center;
  max-width: 75%;
  margin: auto;
}
.loading {
  position: relative;
  overflow: hidden;
}
.loading::after {
  content: "";
  display: block;
  background-color: rgba(0, 129, 177, 0.6588235294);
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  transform: translateX(0);
  animation: 1.5s loading-placeholder ease-in-out infinite;
}
@keyframes loading-placeholder {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.algolia .ais-Hits-item,
.algolia .ais-InfiniteHits-item,
.algolia .ais-InfiniteResults-item,
.algolia .ais-Results-item {
  width: calc(33.3% - 1rem);
}
@media only screen and (max-width: 1460px) {
  .algolia .ais-Hits-item,
  .algolia .ais-InfiniteHits-item,
  .algolia .ais-InfiniteResults-item,
  .algolia .ais-Results-item {
    width: calc(50% - 1rem);
  }
}
@media only screen and (max-width: 768px) {
  .algolia .ais-Hits-item,
  .algolia .ais-InfiniteHits-item,
  .algolia .ais-InfiniteResults-item,
  .algolia .ais-Results-item {
    width: calc(100% - 1rem);
  }
}
.info-header {
  background: rgba(58, 155, 229, 0.7);
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 0px 5px;
  height: 26px;
  margin-top: -26px;
  z-index: 2;
  position: relative;
  font-size: 0.8em;
  font-weight: bold;
}
#sortByRadio label {
  font-weight: 400;
  text-transform: none;
  display: block;
}
@media screen and (min-width: 767px) {
  .algolia .search-panel__filters {
    width: 325px !important;
  }
}
.algolia .ais-RefinementList-label {
  padding-right: 38px !important;
}
.algolia .ais-RefinementList-count {
  position: absolute;
  top: 0;
  right: 0;
}
.algolia .ais-Highlight-highlighted {
  color: inherit;
}
.alert {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 0fr;
  background: #1e90ff;
  transition: grid-template-rows 0.2s ease;
}
.alert.visible,
.alert--is-static {
  grid-template-rows: 1fr;
}
.alert--is-static .alert__close {
  display: none;
}
.alert__track {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.alert__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(min-content, max-content) minmax(
      0,
      1fr
    );
  gap: 1rem;
  padding: 0.85rem 1.5rem 0.85rem 0.85rem;
  flex: 1 1 100%;
}
.alert__content {
  grid-area: 1/2/2/3;
  color: #fff;
  font-family: 700;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.alert__content span * {
  color: inherit;
  margin: 0;
}
.alert__content span *:where(a) {
  text-decoration: underline;
}
.alert__close {
  grid-area: 1/3/2/4;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: end;
  padding: 0;
  appearance: none;
  background: none;
  border: none;
  color: #fff;
  transition: 0.2s ease;
  cursor: pointer;
  margin-bottom: -2px;
  font-size: 1.5rem;
}
.alert__close:hover,
.alert__close:focus {
  transform: rotate(90deg);
}
.header {
  display: flex;
  flex-direction: column;
  z-index: 10;
}
.header.is-open {
  background: #fff;
}
@media (max-width: 575px) {
  .header.is-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
}
.header__inner {
  margin-right: 1.5rem;
  margin-left: 1.5rem;
  width: calc(100% - 3rem);
  max-width: 82rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  grid-template-rows: auto auto;
  gap: 0.5rem 0.25rem;
  padding-top: 0.5rem;
  padding-bottom: 1rem;
  position: relative;
}
@media (min-width: 85rem) {
  .header__inner {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }
}
@media (min-width: 576px) {
  .header__inner {
    grid-template-columns: minmax(225px, max-content) 1fr minmax(175px, 40%);
    grid-template-rows: minmax(40px, auto) auto auto;
    gap: 1rem 2rem;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .header__inner {
    grid-template-columns: max-content 1fr max-content;
    grid-template-rows: minmax(40px, auto) auto;
  }
}
.header__logo {
  display: flex;
  grid-area: 1/1/2/2;
  max-width: 210px;
  min-height: 137px;
}
@media (min-width: 576px) {
  .header__logo {
    grid-area: 2/1/3/2;
  }
}
@media (min-width: 992px) {
  .header__logo {
    padding-bottom: 1rem;
  }
}
.header__logo-link {
  display: flex;
  align-items: center;
  height: auto;
  width: auto;
}
.header__logo-img {
  width: 100%;
  height: auto;
  max-width: 250px;
  min-height: 137px;
}
.header__util {
  display: none;
  justify-content: flex-end;
  grid-area: 1/2/2/3;
  position: relative;
  z-index: 2;
  background: #71af85;
  color: #fff;
}
.header__util::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background: inherit;
}
@media (min-width: 576px) {
  .header__util {
    display: flex;
    grid-area: 1/1/2/4;
  }
  .header__util::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background: #343434;
    z-index: -2;
  }
}
.header__util-list {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.header__util-item {
  display: flex;
  position: relative;
}
@media (min-width: 576px) {
  .header__util-item {
    border-left: 1px solid #343434;
  }
  .header__util-item:last-child .header__util-label {
    margin-right: -1rem;
    padding-right: 1rem;
  }
  body:not(.using-mouse) .header__util-item:focus-within .header__util-label {
    outline: 3px solid #fab636;
  }
}
.header__util-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #fff;
  transition: 0.2s ease;
  padding: 0;
  align-self: center;
  font-weight: 600;
}
@media (min-width: 576px) {
  .header__util-label {
    align-self: stretch;
    gap: 0.75rem;
    font-size: 0.875rem;
    padding: 0.5rem 1.5rem;
  }
  .header__util-label i {
    font-size: 1rem;
  }
}
.header__util-label:hover {
  text-decoration: none;
  color: #fff;
  background: #97c7a6;
}
.header__util-label:where(button) {
  appearance: none;
  border: none;
  background: rgba(0, 0, 0, 0);
  font-weight: 600;
}
@media (min-width: 576px) {
  .header__util-label:where(button) {
    position: relative;
  }
  .header__util-label:where(button)::after {
    content: "";
    height: 1rem;
    width: 1rem;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: translateY(-50%) rotate(-45deg);
    transition: 0.25s ease;
  }
  .is-active .header__util-label:where(button)::after {
    opacity: 1;
    transform: translateY(0) rotate(135deg);
  }
}
.header__util-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 100%;
  z-index: -1;
  overflow: hidden;
  transform: translateY(-1rem);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
  pointer-events: none;
  background: #f3f3f3;
  padding: 1rem;
  box-shadow: 0 0 0.25rem rgba(52, 52, 52, 0.35),
    0 0 0.5rem rgba(52, 52, 52, 0.05);
}
.is-active .header__util-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.header__util-menu-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
  margin-left: -0.75rem;
  margin-right: -0.25rem;
  border-left: 0.375rem solid rgba(0, 0, 0, 0);
  padding-left: 0.375rem;
  padding-right: 0.25rem;
}
.header__util-menu-link:focus,
.header__util-menu-link:hover {
  border-left-color: #1e90ff;
  color: #343434;
  text-decoration: none;
}
.header__util-menu-link:focus i::before,
.header__util-menu-link:hover i::before {
  transform: translateX(0.5rem);
}
.header__util-menu-link i::before {
  transition: 0.2s ease;
}
.header__toggle {
  grid-area: 1/3/2/4;
  display: flex;
  justify-self: end;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  appearance: none;
  border: none;
  background: rgba(0, 0, 0, 0);
  padding: 0;
  height: 1.75rem;
  width: 1.75rem;
  margin-left: 0.25rem;
  position: relative;
  list-style: none;
}
@media (min-width: 576px) {
  .header__toggle {
    display: none;
  }
}
body:not(.using-mouse) .header__toggle-menu:focus {
  outline: none;
  box-shadow: inset 0 0 0 0.125rem #1e90ff;
}
.header__toggle-menu:hover i::before {
  color: #000;
}
.header__toggle-menu i::before {
  display: block;
  font-size: 1.75rem;
  color: #000;
  transition: 0.2s ease;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: 0.2s ease;
}
.header__toggle-menu i:last-of-type::before {
  font-size: 1.5rem;
  opacity: 0;
  left: 4px;
  bottom: 2px;
}
.header__toggle-menu.is-open i::before {
  transform: rotate(180deg);
}
.header__toggle-menu.is-open i:first-of-type::before {
  opacity: 0;
}
.header__toggle-menu.is-open i:last-of-type::before {
  opacity: 1;
}
.header__nav {
  display: none;
}
@media (min-width: 576px) {
  .header__nav {
    grid-area: 3/1/4/4;
    display: flex;
    flex-direction: column;
  }
  .header__nav::before {
    content: "";
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background: #4e4e4e;
  }
}
@media (min-width: 992px) {
  .header__nav {
    grid-area: 2/2/3/4;
  }
  .header__nav::before {
    display: none;
  }
}
.header__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 576px) {
  .header__nav-list {
    display: flex;
    flex: 1 1 100%;
    justify-content: space-around;
  }
}
@media (min-width: 992px) {
  .header__nav-list {
    flex: 1 1 100%;
    justify-content: flex-end;
  }
}
@media (min-width: 576px) {
  .header__nav-item {
    display: flex;
  }
  .header__nav-item--single {
    position: relative;
    padding-left: 2rem;
  }
  .header__nav-item--feature {
    padding-left: 2rem;
  }
  .header__nav-item.mobile-menu {
    display: none;
  }
}
@media (max-width: 575px) {
  .header__nav-item.desktop-menu {
    display: none;
  }
  .header__nav-item.mobile-menu *.slide__trigger {
    color: #fff;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
  }
  .header__nav-item.mobile-menu *.slide__trigger.active-page {
    background: #c2dbe8 !important;
    color: #1c1e4d;
    border-color: #1c1e4d;
  }
  .header__nav-item.mobile-menu *.slide__trigger.active-page::after {
    border-color: #1c1e4d;
  }
  .header__nav-item.mobile-menu *.slide__trigger[data-active]::after {
    transform: rotate(135deg);
  }
}
@media (min-width: 576px) {
  .header__nav-label {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    appearance: none;
    border: none;
    background: rgba(0, 0, 0, 0);
    font-size: 1.125rem;
    transition: 0.2s ease;
    padding: 0.5rem 0;
    font-weight: 600 !important;
    color: #1c1e4d;
  }
  .is-active .header__nav-label,
  body:not(.using-mouse) .header__nav-label:focus {
    outline: unset;
  }
  .is-active .header__nav-label span,
  body:not(.using-mouse) .header__nav-label:focus span {
    outline: 3px solid #fab636;
  }
  .header__nav-label:hover {
    text-decoration: none;
    color: #1c1e4d;
  }
}
@media (min-width: 992px) {
  .header__nav-label {
    padding: 0;
  }
}
@media (min-width: 576px) {
  .header__nav-label span {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0.25rem;
    gap: 0.75rem;
  }
}
@media (min-width: 992px) {
  .header__nav-label span {
    padding: 0.5rem;
  }
}
@media (min-width: 576px) {
  .header__nav-label span::after {
    content: "";
    height: 1rem;
    width: 1rem;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: translateY(-50%) rotate(-45deg);
    transition: 0.25s ease;
  }
  .is-active .header__nav-label span::after {
    opacity: 1;
    transform: translateY(0) rotate(135deg);
  }
}
@media (min-width: 576px) {
  .header__nav-label::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%) translateY(-1rem);
    height: 0;
    width: 0;
    border-left: 0.7rem solid rgba(0, 0, 0, 0);
    border-right: 0.7rem solid rgba(0, 0, 0, 0);
    border-bottom: 0.6rem solid #f3f3f3;
    opacity: 0;
    transition: 0.2s ease;
  }
  .is-active .header__nav-label::before {
    opacity: 1;
    transform: translateX(-50%);
  }
}
@media (min-width: 576px) {
  .header__nav-menu {
    display: flex;
    position: absolute;
    top: 100%;
    left: 50%;
    color: #343434;
    z-index: -1;
    overflow: hidden;
    transform: translateX(-50%) translateY(-1rem);
    opacity: 0;
    visibility: hidden;
    transition-property: opacity, visibility, transform;
    transition-duration: 0.2s;
    transition-timing-function: ease;
    pointer-events: none;
    background: #f3f3f3;
    padding: 1.5rem 2rem;
    box-shadow: 0 0 0.25rem rgba(52, 52, 52, 0.35),
      0 0 0.5rem rgba(52, 52, 52, 0.05);
  }
  .is-active .header__nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%);
    pointer-events: all;
  }
  .header__nav-item--full .header__nav-menu {
    width: 100%;
    max-width: 1000px;
  }
  .header__nav-item--feature .header__nav-menu {
    width: 100%;
    max-width: 700px;
  }
}
@media (min-width: 576px) {
  .header__nav-back {
    display: none;
  }
}
@media (min-width: 576px) {
  .header__nav-grid {
    width: calc(100% + 0.5rem);
    margin: -0.25rem;
    padding: 0.25rem;
  }
}
@media (min-width: 576px) {
  .header__nav-item--full .header__nav-grid {
    display: grid;
    grid-auto-rows: 2px;
    justify-content: center;
    grid-auto-flow: column;
    position: relative;
    z-index: 0;
    overflow: hidden;
    grid-template-columns: repeat(3, minmax(100px, max-content));
    gap: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .header__nav-item--full .header__nav-grid {
    grid-auto-flow: row;
    grid-template-columns: repeat(4, minmax(100px, max-content));
    gap: 1rem 3rem;
  }
}
@media (min-width: 576px) {
  .header__nav-item--feature .header__nav-grid {
    display: flex;
  }
}
@media (min-width: 576px) {
  .header__nav-grid-cell {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
  }
  .header__nav-item--feature .header__nav-grid-cell {
    flex: 1 0 auto;
    padding: 0 2rem;
    border-right: 1px solid #e6e6e6;
  }
  .header__nav-item--feature .header__nav-grid-cell:first-child {
    padding-left: 0;
  }
  .header__nav-item--feature .header__nav-grid-cell:last-child {
    border-right: none;
    padding-right: 0;
    flex: 0 1 450px;
  }
  .header__nav-item--full .header__nav-grid-cell {
    position: relative;
    padding-right: 1rem;
  }
  .header__nav-item--full .header__nav-grid-cell:not(.is-last-column)::after {
    content: "";
    position: absolute;
    top: -100vh;
    right: -1rem;
    height: 200vh;
    width: 1px;
    background: #e6e6e6;
    z-index: -2;
  }
}
@media (min-width: 576px) {
  .header__nav-grid-content {
    display: flex;
    font-size: 1rem;
  }
}
@media (max-width: 575px) {
  .header__nav-grid-content {
    padding-left: 2rem;
  }
}
@media (min-width: 576px) {
  .header__nav-group {
    display: flex;
    flex-direction: column;
    flex: 1 1 100%;
  }
}
.header__nav-group-title {
  appearance: none;
  border: none;
  background: none;
  text-align: left;
}
@media (min-width: 576px) {
  .header__nav-group-title {
    text-transform: uppercase;
    margin: 0;
    color: #343434;
    padding: 0;
  }
  .header__nav-group-title:is(a):focus,
  .header__nav-group-title:is(a):hover {
    text-decoration: none;
    color: #1e90ff;
  }
}
.header__nav-group-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 576px) {
  .header__nav-group-list {
    gap: 0.5rem;
  }
}
.header__nav-group-item {
  display: flex;
  margin: 0;
  padding: 0;
}
@media (min-width: 576px) {
  .header__nav-group-item {
    line-height: 1.5;
  }
  .header__nav-group-item--feature {
    white-space: nowrap;
  }
}
.header__nav-group-item.child {
  background-color: gray;
  padding-left: 1.5em;
}
@media (min-width: 576px) {
  .header__nav-group-link {
    margin: 0;
    padding: 0;
    color: #343434;
    margin-left: -1rem;
    margin-right: -0.25rem;
    border-left: 0.5rem solid rgba(0, 0, 0, 0);
    padding-left: 0.5rem;
    padding-right: 0.25rem;
    transition: 0.2s ease border-left;
  }
  .header__nav-item--single .header__nav-group-link {
    white-space: nowrap;
  }
  .header__nav-group-link:focus,
  .header__nav-group-link:hover {
    border-left-color: #97c7a6;
    color: #343434;
    text-decoration: none;
    text-shadow: 1px 0 0 currentColor;
  }
}
.header__tools {
  display: flex;
  gap: 0.5rem;
  align-self: center;
  justify-content: flex-end;
  grid-area: 2/1/3/4;
}
@media (min-width: 576px) {
  .header__tools {
    grid-area: 2/3/3/4;
  }
}
.header__search {
  display: flex;
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .header__search {
    max-width: 350px;
    min-width: 200px;
  }
}
.header__search-wrapper {
  display: flex;
  align-items: center;
}
.header__search-input {
  display: none;
  appearance: none;
  border: none;
  background: rgba(0, 0, 0, 0);
  border-radius: 0;
  padding: 0.3875rem 0 0.3875rem 0.75rem;
  flex: 1 1 100%;
  font-size: 1rem;
  width: auto;
  min-width: 0;
}
.header__search-input::placeholder {
  font-size: 0.875rem;
}
@media (min-width: 576px) {
  .header__search-input {
    padding: 0.625rem 0 0.625rem 1rem;
  }
}
.header__search-submit {
  appearance: none;
  border: 1px solid #71af85;
  background: #e5eef1;
  border-radius: 5px;
  font-weight: 600;
  color: #71af85;
}
@media (min-width: 576px) {
  .header__search-submit {
    font-size: 1.125;
    padding: 0.5rem 1.5rem;
  }
}
.header__search-submit:hover {
  background-color: #c4d8df;
}
@media (max-width: 575px) {
  .header__search-submit i {
    font-size: 1.5rem;
  }
}
.header__drawer {
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #343434;
  color: #fff;
  transform: translateX(100%);
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-property: transform, opacity, visibility;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  border-top: 1px solid #343434;
}
.header__drawer.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
@media (min-width: 576px) {
  .header__drawer {
    display: none;
  }
}
.header__drawer-inner {
  display: flex;
  flex: 0 0 100%;
  position: relative;
}
.header__drawer-list {
  display: flex;
  flex-direction: column;
  flex: 0 0 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 0 0 100%;
  overflow-y: auto;
}
.header__drawer-item {
  display: flex;
  font-size: 0.875rem;
  position: static;
}
.header__drawer .header__util-back,
.header__drawer .header__nav-back {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  appearance: none;
  border: none;
  background: #000;
  padding: 1rem 1.5rem;
  color: #fff;
  justify-content: start;
  text-align: left;
  font-size: 0.875rem;
  cursor: pointer;
  width: 100%;
}
.header__drawer .header__util-back::before,
.header__drawer .header__nav-back::before {
  content: "";
  height: 0.6rem;
  width: 0.6rem;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: translateY(-15%) rotate(-45deg);
}
body:not(.using-mouse) .header__drawer .header__util-back:focus,
body:not(.using-mouse) .header__drawer .header__nav-back:focus {
  outline: none;
  box-shadow: inset 0 0 0 0.125rem #1e90ff;
}
.header__drawer .header__util-back span,
.header__drawer .header__nav-back span {
  pointer-events: none;
}
.header__drawer .header__util-back span.header__util-back-link,
.header__drawer .header__nav-back span.header__util-back-link {
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-left: auto;
  color: #1e90ff;
}
.header__drawer .header__util-back span.header__util-back-link:hover,
.header__drawer .header__nav-back span.header__util-back-link:hover {
  text-decoration: none;
}
.header__drawer .header__util-item.is-active > .header__nav-menu,
.header__drawer .header__util-item.is-active > .header__util-menu,
.header__drawer .header__util-item.is-active > .header__nav-group-list,
.header__drawer .header__util-group.is-active > .header__nav-menu,
.header__drawer .header__util-group.is-active > .header__util-menu,
.header__drawer .header__util-group.is-active > .header__nav-group-list,
.header__drawer .header__nav-item.is-active > .header__nav-menu,
.header__drawer .header__nav-item.is-active > .header__util-menu,
.header__drawer .header__nav-item.is-active > .header__nav-group-list,
.header__drawer .header__nav-group.is-active > .header__nav-menu,
.header__drawer .header__nav-group.is-active > .header__util-menu,
.header__drawer .header__nav-group.is-active > .header__nav-group-list {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.header__drawer .header__util-label,
.header__drawer .header__util-menu-link,
.header__drawer .header__util-group-title,
.header__drawer .header__util-group-link,
.header__drawer .header__nav-label,
.header__drawer .header__nav-menu-link,
.header__drawer .header__nav-group-title,
.header__drawer .header__nav-group-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  appearance: none;
  border: none;
  background: rgba(0, 0, 0, 0);
  color: #fff;
  padding: 0.75rem 1.75rem 0.75rem 1.5rem;
  margin: 0;
  cursor: pointer;
  font-size: 0.875rem;
  text-transform: none;
  font-weight: 600;
}
body:not(.using-mouse) .header__drawer .header__util-label:focus,
body:not(.using-mouse) .header__drawer .header__util-menu-link:focus,
body:not(.using-mouse) .header__drawer .header__util-group-title:focus,
body:not(.using-mouse) .header__drawer .header__util-group-link:focus,
body:not(.using-mouse) .header__drawer .header__nav-label:focus,
body:not(.using-mouse) .header__drawer .header__nav-menu-link:focus,
body:not(.using-mouse) .header__drawer .header__nav-group-title:focus,
body:not(.using-mouse) .header__drawer .header__nav-group-link:focus {
  outline: none;
  box-shadow: inset 0 0 0 0.125rem #1e90ff;
}
.header__drawer .header__util-label i,
.header__drawer .header__util-menu-link i,
.header__drawer .header__util-group-title i,
.header__drawer .header__util-group-link i,
.header__drawer .header__nav-label i,
.header__drawer .header__nav-menu-link i,
.header__drawer .header__nav-group-title i,
.header__drawer .header__nav-group-link i {
  display: none;
}
.header__drawer .header__util-label:hover,
.header__drawer .header__util-menu-link:hover,
.header__drawer .header__util-group-title:hover,
.header__drawer .header__util-group-link:hover,
.header__drawer .header__nav-label:hover,
.header__drawer .header__nav-menu-link:hover,
.header__drawer .header__nav-group-title:hover,
.header__drawer .header__nav-group-link:hover {
  text-decoration: none;
  color: #fff;
  color: #1e90ff;
}
.header__drawer .header__util-label.active-page,
.header__drawer .header__util-menu-link.active-page,
.header__drawer .header__util-group-title.active-page,
.header__drawer .header__util-group-link.active-page,
.header__drawer .header__nav-label.active-page,
.header__drawer .header__nav-menu-link.active-page,
.header__drawer .header__nav-group-title.active-page,
.header__drawer .header__nav-group-link.active-page {
  background-color: #c2dbe8;
  color: #71af85;
  border-color: #71af85;
}
.header__drawer .header__util-label.active-page::after,
.header__drawer .header__util-menu-link.active-page::after,
.header__drawer .header__util-group-title.active-page::after,
.header__drawer .header__util-group-link.active-page::after,
.header__drawer .header__nav-label.active-page::after,
.header__drawer .header__nav-menu-link.active-page::after,
.header__drawer .header__nav-group-title.active-page::after,
.header__drawer .header__nav-group-link.active-page::after {
  border-color: #71af85;
}
.header__drawer .header__util-label:where(button.header__nav-label)::after,
.header__drawer .header__util-label:where(button.header__util-label)::after,
.header__drawer .header__util-label:where(.header__nav-group-title)::after,
.header__drawer .header__util-menu-link:where(button.header__nav-label)::after,
.header__drawer .header__util-menu-link:where(button.header__util-label)::after,
.header__drawer .header__util-menu-link:where(.header__nav-group-title)::after,
.header__drawer
  .header__util-group-title:where(button.header__nav-label)::after,
.header__drawer
  .header__util-group-title:where(button.header__util-label)::after,
.header__drawer
  .header__util-group-title:where(.header__nav-group-title)::after,
.header__drawer .header__util-group-link:where(button.header__nav-label)::after,
.header__drawer
  .header__util-group-link:where(button.header__util-label)::after,
.header__drawer .header__util-group-link:where(.header__nav-group-title)::after,
.header__drawer .header__nav-label:where(button.header__nav-label)::after,
.header__drawer .header__nav-label:where(button.header__util-label)::after,
.header__drawer .header__nav-label:where(.header__nav-group-title)::after,
.header__drawer .header__nav-menu-link:where(button.header__nav-label)::after,
.header__drawer .header__nav-menu-link:where(button.header__util-label)::after,
.header__drawer .header__nav-menu-link:where(.header__nav-group-title)::after,
.header__drawer .header__nav-group-title:where(button.header__nav-label)::after,
.header__drawer
  .header__nav-group-title:where(button.header__util-label)::after,
.header__drawer .header__nav-group-title:where(.header__nav-group-title)::after,
.header__drawer .header__nav-group-link:where(button.header__nav-label)::after,
.header__drawer .header__nav-group-link:where(button.header__util-label)::after,
.header__drawer .header__nav-group-link:where(.header__nav-group-title)::after {
  content: "";
  height: 1rem;
  width: 1rem;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
  transition: 0.25s ease;
}
.header__drawer .header__util-menu,
.header__drawer .header__util-group-list:is(.header__nav-item--full *),
.header__drawer .header__nav-menu,
.header__drawer .header__nav-group-list:is(.header__nav-item--full *) {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: #343434;
  transition: 0.2s ease;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  gap: 0;
  padding: 0;
  box-shadow: none;
}
.header__drawer .header__util-grid,
.header__drawer .header__util-grid-cell,
.header__drawer .header__nav-grid,
.header__drawer .header__nav-grid-cell {
  display: contents;
}
.header__drawer .header__util-grid-cell--feature,
.header__drawer .header__nav-grid-cell--feature {
  display: none;
}
.header__drawer .header__util-item {
  border-top: 1px solid #343434;
}
.header__drawer .header__util-item:last-child {
  border-bottom: 1px solid #343434;
}
.header__drawer .header__util-item a + button {
  display: none;
}
.footer {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  color: #f3f3f3;
  background: #343434;
}
.footer__logo {
  padding-top: 2rem;
  border-top: 1px solid #888;
}
.footer__logo-img {
  max-width: 250px;
  min-height: 137px;
}
.footer__location {
  margin-right: 2rem;
  margin-left: 2rem;
  width: calc(100% - 4rem);
  max-width: 82rem;
}
@media (min-width: 86rem) {
  .footer__location {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }
}
.footer__location a {
  color: #fff;
}
.footer__location a:hover {
  color: #fff;
}
@media screen and (max-width: 660px) {
  .footer__location {
    text-align: center;
  }
}
.footer__address {
  font-style: normal;
  text-align: center;
}
.footer__address a,
.footer__address span {
  display: block;
  font-weight: 700;
}
@media (min-width: 768px) {
  .footer__address {
    text-align: left;
  }
}
.footer__logos-list {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  width: 410px;
  max-width: 100%;
  gap: 4%;
  padding-left: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .footer__logos-list {
    justify-content: flex-start;
  }
}
.footer__logos-item {
  flex: 1;
  max-width: 120px;
  margin-bottom: 10px;
}
.footer__logos-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.footer__main {
  margin-right: 2rem;
  margin-left: 2rem;
  width: calc(100% - 4rem);
  max-width: 82rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 86rem) {
  .footer__main {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .footer__main {
    flex-direction: row;
    gap: 1px;
  }
}
.footer__nav,
.footer__contact {
  display: flex;
  flex-direction: column;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 992px) {
  .footer__nav,
  .footer__contact {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media (min-width: 992px) {
  .footer__nav:first-child,
  .footer__contact:first-child {
    padding-right: 3rem;
  }
}
@media (min-width: 992px) {
  .footer__nav:last-child,
  .footer__contact:last-child {
    padding-left: 3rem;
  }
}
.footer__nav {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .footer__nav {
    justify-content: space-between;
    flex-direction: row;
    flex: 1 1 100%;
    gap: 1rem;
  }
}
.footer__title {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  text-transform: uppercase;
  font-weight: 700;
}
@media (max-width: 991px) {
  .footer__title {
    justify-content: space-between;
    width: 100%;
  }
  .footer__title[tabindex] {
    padding: 1.25rem 2.5rem;
    text-transform: none;
    font-size: 1rem;
    font-weight: 400;
    border-bottom: solid 2px rgba(0, 0, 0, 0.125);
  }
  .footer__column:first-of-type .footer__title[tabindex] {
    border-top: solid 2px rgba(0, 0, 0, 0.125);
  }
  .footer__title[tabindex] + .footer__list {
    justify-content: stretch;
    gap: 0;
  }
  .footer__title[tabindex] + .footer__list .footer__item {
    width: 100%;
    border-bottom: solid 1px #eaf2f6;
  }
  .footer__title[tabindex] + .footer__list .footer__item:last-of-type {
    border-bottom: none;
  }
  .footer__title[tabindex] + .footer__list .footer__item .footer__link {
    width: 100%;
    padding: 1.25rem 2.5rem 1.25rem 3.5rem;
    background: #fff;
    color: #71af85;
    text-align: left;
    margin: 0;
  }
}
@media (max-width: 991px) {
  .footer__nav .footer__title {
    gap: 0.5rem;
  }
  .footer__nav .footer__title::after {
    content: "";
    height: 1rem;
    width: 1rem;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: translateY(-50%) rotate(-45deg);
    transition: 0.25s ease;
  }
  .footer__nav .footer__title[data-active]::after {
    transform: translateY(0) rotate(135deg);
  }
}
.footer__column {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
}
@media (min-width: 992px) {
  .footer__column {
    gap: 0.5rem;
    margin-right: auto;
  }
}
.footer__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
  list-style: none;
  overflow: hidden;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.footer__list[data-active] {
  height: auto;
  opacity: 1;
  visibility: visible;
}
@media (min-width: 992px) {
  .footer__list {
    align-items: stretch;
    text-align: left;
    margin-right: auto;
    overflow: initial;
    height: auto;
    opacity: 1;
    visibility: visible;
  }
}
.footer__item {
  display: flex;
}
.footer__link {
  font-size: 1rem;
  color: #f3f3f3;
  cursor: pointer;
  flex: 0 0 auto;
  transition: 0.2s ease;
}
.footer__link:hover {
  text-decoration: none;
  color: #fff;
}
.footer__nav .footer__link {
  margin-left: -1rem;
  margin-right: -0.25rem;
  border-left: 0.5rem solid rgba(0, 0, 0, 0);
  padding-left: 0.5rem;
  padding-right: 0.25rem;
}
.footer__nav .footer__link:focus,
.footer__nav .footer__link:hover {
  color: #fff;
  text-decoration: none;
  text-shadow: 1px 0 0 currentColor;
}
.footer__contact {
  gap: 2rem;
  position: relative;
  text-align: center;
}
@media (max-width: 991px) {
  .footer__contact::before {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background: #343434;
  }
}
@media (min-width: 992px) {
  .footer__contact {
    flex: 0 0 auto;
    min-width: 30%;
  }
}
.footer__form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0;
  width: 100%;
  max-width: 284px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .footer__form {
    gap: 1rem 0.5rem;
    margin: 0;
  }
}
.footer__form .footer__title {
  flex: 1 1 100%;
  justify-content: center;
}
.footer__email {
  border: none;
  padding: 0.75rem;
  font-size: 0.875rem;
  grid-area: 2/1/3/2;
  width: auto;
  max-width: 100%;
  min-width: 0;
}
.footer__submit {
  grid-area: 2/2/3/3;
}
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 1rem 1.5rem;
  justify-content: center;
  text-align: center;
}
@media (min-width: 992px) {
  .footer__social {
    justify-content: start;
  }
}
.footer__social .footer__title {
  justify-content: center;
}
.footer__social .footer__link {
  display: flex;
  align-self: center;
  justify-content: center;
  align-items: center;
  grid-row: 2/3;
  grid-column: span 1;
}
.footer__social .footer__link i {
  font-size: 1.5rem;
  transition: 0.2s ease;
}
.footer__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 3rem;
  gap: 0.5rem 2rem;
  text-align: center;
  font-size: 1rem;
}
.footer__legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.footer__legal a {
  font-size: 1rem;
  line-height: 1.25rem;
}
.footer__legal a:hover {
  text-decoration: underline;
}
.footer__legal a:not(:last-of-type) {
  padding-right: 1rem;
  margin-right: 1rem;
  border-right: solid 1px #c2c5cb;
}
.footer a.footer__nondiscrimination {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.footer a.footer__nondiscrimination strong {
  font-size: 1.125rem;
}
.footer a.footer__nondiscrimination:hover {
  text-decoration: underline;
}
.footer__copy {
  color: #c2c5cb;
}
.cd-top {
  z-index: 9998;
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 80px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: #71af85 url(/img/content-images/cd-top-arrow.svg) no-repeat center
    50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
.cd-top.cd-is-visible,
.cd-top.cd-fade-out,
.no-touch .cd-top:hover {
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  opacity: 0.5;
}
.no-touch .cd-top:hover {
  background-color: #97c7a6;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 40px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 100px;
  }
}
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  background-color: #c0d6eb;
  background-image: linear-gradient(to right, #dbedfd, #c0d6eb);
  margin-bottom: 10px;
}
.accordion__item {
  display: flex;
  flex-direction: column;
}
.accordion__trigger {
  all: unset;
  appearance: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  margin: 0;
  line-height: 1;
  cursor: pointer;
  position: relative;
  z-index: 0;
  font-weight: 600;
  font-size: 18px;
  color: #71af85;
}
.accordion__trigger::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.2s ease;
}
.accordion__trigger::after {
  content: "";
  height: 0.5rem;
  width: 0.5rem;
  border-bottom: 2px solid;
  border-right: 2px solid;
  transform: translateY(-2px) rotate(45deg);
  transition: 0.2s ease;
}
.accordion__trigger:hover::before,
.accordion__trigger:focus::before,
.accordion__trigger[data-active]::before {
  padding-top: 1.5rem;
}
.accordion__trigger[data-active]::after {
  transform: rotate(135deg);
}
.accordion__content {
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
}
.accordion__content-inner {
  padding: 1.5rem;
  background-color: #fff;
  border-color: #99bddf;
  border-width: 1px;
  border-style: solid;
  margin-bottom: 2rem;
}
.accordion__content-inner > *:last-child {
  margin-bottom: 0;
}
.breadcrumbs {
  --gap: 0.5rem;
  --spacing: calc((var(--gap) * 2) + 1px);
  --adjust: calc(var(--spacing) * -1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
  gap: 1rem 1.5rem;
}
.breadcrumbs__nav {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  gap: 0.75rem 0;
}
.breadcrumbs__nav-item {
  display: flex;
  align-items: center;
  color: #000;
  margin-right: var(--spacing);
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  margin: 4px;
  margin-right: var(--spacing);
  white-space: nowrap;
}
.breadcrumbs__nav-item:where(a):hover {
  text-decoration: none;
  color: #71af85;
}
.breadcrumbs__nav-item:where(a):hover::after {
  color: #888;
}
.breadcrumbs__nav-item::before {
  display: flex;
  justify-content: center;
  width: var(--spacing);
  margin-left: var(--adjust);
  font-size: 1rem;
  color: #888;
  content: "|";
  pointer-events: none;
  opacity: 0.25;
}
.breadcrumbs__nav-item:last-child {
  color: #888;
}
.breadcrumbs__social {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.breadcrumbs__social-item {
  font-size: 1.325rem;
  color: inherit;
  color: #71af85;
}
.breadcrumbs__social-item:hover {
  text-decoration: none;
  color: #71af85;
}
.feature {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.feature--60-40 {
  grid-template-columns: 60% 40%;
}
.feature--40-60 {
  grid-template-columns: 40% 60%;
}
@media (min-width: 992px) {
  .feature:not(.feature--flipped) .feature__media {
    grid-column-start: 1;
  }
}
@media (min-width: 992px) {
  .feature:not(.feature--flipped) .feature__content {
    grid-column-start: 2;
  }
}
@media (min-width: 992px) {
  .feature--flipped .feature__media {
    grid-column-start: 2;
  }
}
@media (min-width: 992px) {
  .feature--flipped .feature__content {
    grid-column-start: 1;
  }
}
@media (min-width: 992px) {
  .feature--card,
  .feature--nav {
    display: flex;
    flex-direction: column;
  }
}
.feature--card .feature__content,
.feature--nav .feature__content {
  background: #f3f3f3;
  color: #343434;
}
.feature--card .feature__media {
  min-height: 0;
}
.feature--card .feature__content {
  flex-grow: 1;
  justify-content: start;
}
.feature--card .feature__copy {
  flex-grow: 1;
}
.feature--card:is(a) {
  cursor: pointer;
}
.feature--card:is(a):hover {
  text-decoration: none;
}
.feature--card:is(a):hover .feature__image {
  opacity: 0.9;
}
.feature--card:is(a):focus {
  outline: none;
}
.feature--nav {
  max-width: 100%;
  gap: 1.5rem;
}
.feature__media,
.feature__content {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}
@media (min-width: 992px) {
  .feature__media,
  .feature__content {
    grid-column-end: span 1;
    grid-row: 1 / span 1;
  }
}
.feature__media {
  min-height: 100%;
  position: relative;
}
.feature--nav .feature__media {
  min-height: 0;
}
.feature__media::before {
  content: "";
  display: block;
  position: relative;
  padding-top: 56.25%;
  pointer-events: none;
}
.feature__image,
.feature__video {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 50% 50%;
  height: 100%;
  width: 100%;
  border: none;
  transition: 0.2s ease;
  max-width: 100%;
}
.feature__image *,
.feature__video * {
  max-width: 100%;
}
.feature__image * {
  object-fit: cover;
  object-position: 50%;
  max-width: 100%;
  height: 100%;
  width: 100%;
}
.feature__content {
  align-items: flex-start;
  justify-content: center;
}
.feature__content {
  padding: 1.5rem;
}
@media screen and (min-width: 20rem) {
  .feature__content {
    padding: calc(1.5rem + 0.5 * ((100vw - 20rem) / 62));
  }
}
@media screen and (min-width: 82rem) {
  .feature__content {
    padding: 2rem;
  }
}
.feature--nav .feature__content {
  padding: 0;
  background: none;
  color: inherit;
}
.feature__title {
  line-height: 1.25;
  margin: 0 0 0.75rem;
}
.feature__title {
  font-size: 1.5rem;
}
@media screen and (min-width: 20rem) {
  .feature__title {
    font-size: calc(1.5rem + 0.75 * ((100vw - 20rem) / 62));
  }
}
@media screen and (min-width: 82rem) {
  .feature__title {
    font-size: 2.25rem;
  }
}
.feature__title .feature--nav,
.feature--card .feature__title {
  font-size: 1.25rem;
}
@media screen and (min-width: 20rem) {
  .feature__title .feature--nav,
  .feature--card .feature__title {
    font-size: calc(1.25rem + 0.5 * ((100vw - 20rem) / 62));
  }
}
@media screen and (min-width: 82rem) {
  .feature__title .feature--nav,
  .feature--card .feature__title {
    font-size: 1.75rem;
  }
}
.feature__copy {
  display: flow-root;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  line-height: 1.5;
}
.feature__copy p img {
  margin: 0 0 1rem;
  display: block;
}
@media (min-width: 768px) {
  .feature__copy p img {
    float: right;
    margin: 1rem 0 1rem 1rem;
  }
}
.feature__copy img {
  margin: 1rem 0;
}
.feature__copy dl {
  display: flex;
  flex-flow: row wrap;
  justify-items: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}
.feature__copy dl + dl {
  margin-top: -1rem;
}
.feature__copy dt,
.feature__copy dd {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  padding: 0.5rem 0.75rem;
  margin: 0;
  position: relative;
}
.feature__copy dt {
  font-weight: 700;
  font-size: 1em;
  padding-right: 0;
}
.feature__copy dt + dd {
  padding-left: 0.5rem;
}
.feature__copy dt:only-of-type {
  min-width: 115px;
  width: 115px;
}
.feature__copy dd {
  font-size: 1em;
}
.feature__copy dd:not(:last-child)::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  max-height: 2ch;
  margin: auto 0;
  background-color: palette(gray, 400);
}
.feature__copy blockquote {
  margin-right: 0;
  margin-left: 0;
}
.feature__copy blockquote p {
  font-weight: 400;
  font-family: "Montserrat", "Roboto", sans-serif;
  color: palette(gray, 900);
  margin: 0 0 1.5rem;
}
.feature__copy blockquote p::before {
  content: open-quote;
}
.feature__copy blockquote p::after {
  content: close-quote;
}
.feature__copy blockquote cite {
  font-style: normal;
  font-size: 1rem;
  font-weight: 700;
  display: block;
}
@media (min-width: 992px) {
  .feature__copy blockquote cite {
    display: inline-block;
  }
}
.feature__copy strong,
.feature__copy b {
  font-weight: 700;
}
.feature__copy em,
.feature__copy i {
  font-style: italic;
}
.feature__copy a {
  text-decoration: underline;
}
.feature__copy li {
  margin-bottom: 0.5rem;
}
.composition--fill-darkGray .feature__copy li::marker {
  color: #fff;
}
.composition--fill-lightGray .feature__copy li::marker {
  color: #71af85;
}
.composition--fill-blue .feature__copy li::marker {
  color: #71af85;
}
.composition--fill-offWhiteTeal .feature__copy li::marker {
  color: #71af85;
}
.composition--fill-teal .feature__copy li::marker {
  color: #fff;
}
.feature__copy > *:last-child {
  margin-bottom: 0;
}
.feature__copy {
  font-size: 0.75rem;
}
@media screen and (min-width: 20rem) {
  .feature__copy {
    font-size: calc(0.75rem + 0.25 * ((100vw - 20rem) / 62));
  }
}
@media screen and (min-width: 82rem) {
  .feature__copy {
    font-size: 1rem;
  }
}
.feature__copy .feature--nav,
.feature--card .feature__copy {
  font-size: 0.75rem;
}
@media screen and (min-width: 20rem) {
  .feature__copy .feature--nav,
  .feature--card .feature__copy {
    font-size: calc(0.75rem + 0.125 * ((100vw - 20rem) / 62));
  }
}
@media screen and (min-width: 82rem) {
  .feature__copy .feature--nav,
  .feature--card .feature__copy {
    font-size: 0.875rem;
  }
}
.feature__copy > * {
  margin: 0;
}
.feature__cta {
  margin: 0.5rem 0 0;
}
.feature__cta {
  font-size: 0.75rem;
}
@media screen and (min-width: 20rem) {
  .feature__cta {
    font-size: calc(0.75rem + 0.25 * ((100vw - 20rem) / 62));
  }
}
@media screen and (min-width: 82rem) {
  .feature__cta {
    font-size: 1rem;
  }
}
.feature__cta .feature--nav,
.feature--card .feature__cta {
  font-size: 0.75rem;
}
@media screen and (min-width: 20rem) {
  .feature__cta .feature--nav,
  .feature--card .feature__cta {
    font-size: calc(0.75rem + 0.125 * ((100vw - 20rem) / 62));
  }
}
@media screen and (min-width: 82rem) {
  .feature__cta .feature--nav,
  .feature--card .feature__cta {
    font-size: 0.875rem;
  }
}
.list-tools {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 1rem;
  padding: 0 0 2rem;
  border-bottom: 1px solid #f3f3f3;
}
.list-tools__item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  line-height: 1;
}
.list-tools__item:first-child:not(:only-child) {
  margin-right: auto;
  align-items: flex-start;
}
.list-tools__label {
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0 0.25rem;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.list-tools__select {
  display: flex;
  position: relative;
  min-width: 175px;
}
.list-tools__select-active {
  all: unset;
  appearance: none;
  flex: 1 1 100%;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #dadada;
  cursor: pointer;
  font-weight: 700;
}
.list-tools__select-active::after {
  content: "";
  height: 0.3875rem;
  width: 0.3875rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(10%) rotate(45deg);
  transition: 0.2s ease;
}
.list-tools__select-active[data-active]::after {
  transform: translateY(30%) rotate(-135deg);
}
.list-tools__select-menu {
  display: flex;
  flex-direction: column;
  background: #fff;
  z-index: 10;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  right: 0;
}
.list-tools__select-inner {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #dadada;
  overflow-y: auto;
  max-height: 200px;
}
.list-tools__select-item {
  display: flex;
  flex-direction: column;
}
.list-tools__select-link {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #343434;
  transition: 0.2s ease;
  padding: 0.3875rem 0.75rem;
}
.list-tools__select-link::after {
  content: "";
  height: 0.5rem;
  width: 0.25rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(10%) rotate(45deg);
  opacity: 0;
  transition: 0.2s ease;
}
.list-tools__select-link:hover {
  background: #f3f3f3;
  text-decoration: none;
}
.list-tools__select-link:hover::after {
  opacity: 0.25;
}
.list-tools__select-link--active,
.list-tools__select-link--active:hover {
  color: #71af85;
  font-weight: 700;
}
.list-tools__select-link--active::after,
.list-tools__select-link--active:hover::after {
  opacity: 1;
}
.list-item {
  --gap: 0.25rem;
  --spacing: calc((var(--gap) * 4) + 1px);
  --adjust: calc(var(--spacing) * -1);
  display: flex;
  flex-direction: column;
}
.list-item__inner {
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
  column-gap: 1.5rem;
  color: #343434;
  transition: none;
}
.list-item:is([data-view="list"] *):not(:last-child) > * {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #f3f3f3;
}
.list-item:is([data-view="grid"] *) {
  border: 1px solid #f3f3f3;
  padding: 1rem;
}
.list-item:is([data-view="grid"] *) .list-item__image {
  visibility: visible;
  max-height: none;
  max-width: none;
}
.list-item__image {
  display: flex;
  flex-direction: column;
  visibility: hidden;
  max-height: 0;
  max-width: 0;
  width: 100%;
}
.list-item__meta {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  overflow: hidden;
  gap: var(--gap) 0;
}
.list-item__meta-item {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  line-height: 1;
  margin-right: var(--spacing);
  white-space: nowrap;
}
.list-item__meta-item::before {
  display: flex;
  justify-content: center;
  width: var(--spacing);
  margin-left: var(--adjust);
  font-size: 1rem;
  color: #888;
  content: "|";
  pointer-events: none;
  opacity: 0.25;
}
.list-item__meta-item--bold {
  font-weight: 700;
  transition: 0.2s ease;
}
.list-item__title {
  font-weight: 700;
  margin: 0;
  transition: 0.2s ease;
}
.list-item__link {
  text-decoration: none;
  color: #71af85;
}
.list-item__link:hover {
  text-decoration: none;
  color: #03b9ff;
}
.list-item__copy {
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.5;
}
.pagination {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 0.3875rem;
}
.pagination__prev,
.pagination__next,
.pagination__number {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  line-height: 1;
}
.pagination__prev,
.pagination__next,
.pagination__number {
  height: 1.5rem;
}
@media screen and (min-width: 20rem) {
  .pagination__prev,
  .pagination__next,
  .pagination__number {
    height: calc(1.5rem + 0.5 * ((100vw - 20rem) / 62));
  }
}
@media screen and (min-width: 82rem) {
  .pagination__prev,
  .pagination__next,
  .pagination__number {
    height: 2rem;
  }
}
.pagination__prev,
.pagination__next,
.pagination__number {
  font-size: 0.875rem;
}
@media screen and (min-width: 20rem) {
  .pagination__prev,
  .pagination__next,
  .pagination__number {
    font-size: calc(0.875rem + 0.125 * ((100vw - 20rem) / 62));
  }
}
@media screen and (min-width: 82rem) {
  .pagination__prev,
  .pagination__next,
  .pagination__number {
    font-size: 1rem;
  }
}
.pagination__prev:where(a),
.pagination__next:where(a),
.pagination__number:where(a) {
  color: #000;
}
.pagination__prev:where(a):hover,
.pagination__next:where(a):hover,
.pagination__number:where(a):hover {
  color: #fff;
  background-color: #343434;
  text-decoration: none;
}
.pagination__prev::before,
.pagination__next::before {
  content: "";
  height: 0.5em;
  width: 0.5em;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(-10%) translateX(-25%) rotate(135deg);
}
.pagination__prev span,
.pagination__next span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  border: 0;
}
.pagination__prev::before {
  transform: translateY(-10%) translateX(25%) rotate(-45deg);
}
.pagination__ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
}
.pagination__ellipsis::after {
  content: "";
  height: 0.125rem;
  width: 0.125rem;
  background: currentColor;
  border-radius: 50%;
  box-shadow: -0.25rem 0 0 currentColor, 0.25rem 0 0 currentColor;
}
.pagination__number-container {
  display: flex;
  align-items: center;
  gap: 0.3875rem;
}
.pagination__number--active {
  color: #fff;
  background: #71af85;
}
.section-header {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  justify-items: center;
  text-align: center;
}
.section-header {
  margin-bottom: 2.25rem;
}
@media screen and (min-width: 20rem) {
  .section-header {
    margin-bottom: calc(2.25rem + 1.5 * ((100vw - 20rem) / 62));
  }
}
@media screen and (min-width: 82rem) {
  .section-header {
    margin-bottom: 3.75rem;
  }
}
.section-header--left {
  justify-items: start;
  text-align: left;
}
.section-header--right {
  justify-items: end;
  text-align: right;
}
.section-header * {
  max-width: 700px;
}
.section-header__eyebrow {
  grid-area: span 1 / span 1;
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}
.section-header__eyebrow {
  font-size: 0.75rem;
}
@media screen and (min-width: 20rem) {
  .section-header__eyebrow {
    font-size: calc(0.75rem + 0.125 * ((100vw - 20rem) / 62));
  }
}
@media screen and (min-width: 82rem) {
  .section-header__eyebrow {
    font-size: 0.875rem;
  }
}
.section-header__eyebrow:not(:last-child) {
  margin: 0 0 0.5rem;
}
.section-header__title {
  display: contents;
  line-height: 1.3875;
  font-weight: 700;
  margin: 0;
  grid-area: span 1 / span 1;
}
.section-header__title {
  font-size: 1.75rem;
}
@media screen and (min-width: 20rem) {
  .section-header__title {
    font-size: calc(1.75rem + 1 * ((100vw - 20rem) / 62));
  }
}
@media screen and (min-width: 82rem) {
  .section-header__title {
    font-size: 2.75rem;
  }
}
.section-header__title::after {
  content: "";
  grid-area: span 1 / span 1;
  width: 100%;
  border-bottom: 1px solid #f3f3f3;
  margin: 0.25rem 0 0;
}
.section-header__title:not(:last-child)::after {
  margin-bottom: 1.125rem;
}
@media screen and (min-width: 20rem) {
  .section-header__title:not(:last-child)::after {
    margin-bottom: calc(1.125rem + 0.375 * ((100vw - 20rem) / 62));
  }
}
@media screen and (min-width: 82rem) {
  .section-header__title:not(:last-child)::after {
    margin-bottom: 1.5rem;
  }
}
.section-header__copy {
  grid-area: span 1 / span 1;
  line-height: 1.5;
  margin: 0;
}
.section-header__copy {
  font-size: 0.875rem;
}
@media screen and (min-width: 20rem) {
  .section-header__copy {
    font-size: calc(0.875rem + 0.125 * ((100vw - 20rem) / 62));
  }
}
@media screen and (min-width: 82rem) {
  .section-header__copy {
    font-size: 1rem;
  }
}
.app-title {
  display: flex;
  flex-direction: column;
}
.app-title__inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: max-content;
  position: relative;
  z-index: 0;
  max-height: 400px;
}
.app-title__inner::before {
  content: "";
  z-index: -1;
  pointer-events: none;
  position: relative;
  padding-top: 35.7142857143%;
  grid-area: 1/1/2/2;
}
.app-title__inner.no-image::before {
  padding-top: 1.25rem !important;
}
.app-title__background {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.app-title__background::after {
  content: "";
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  mix-blend-mode: soft-light;
  isolation: isolate;
}
.app-title__background::before {
  content: "";
  z-index: 2;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.125rem;
  background: linear-gradient(
    to right,
    #71af85 0%,
    #9dc2ce 40%,
    #9dc2ce 60%,
    #71af85 100%
  );
}
.app-title__background-image {
  height: 100%;
  width: 100%;
  z-index: 1;
}
.app-title__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  grid-area: 1/1/2/2;
  color: #fff;
}
.app-title__content {
  gap: 1.25rem;
}
@media screen and (min-width: 20rem) {
  .app-title__content {
    gap: calc(1.25rem + 0.5 * ((100vw - 20rem) / 62));
  }
}
@media screen and (min-width: 82rem) {
  .app-title__content {
    gap: 1.75rem;
  }
}
.app-title__content {
  padding: 1.5rem;
}
@media screen and (min-width: 20rem) {
  .app-title__content {
    padding: calc(1.5rem + 0.75 * ((100vw - 20rem) / 62));
  }
}
@media screen and (min-width: 82rem) {
  .app-title__content {
    padding: 2.25rem;
  }
}
.app-title__heading,
.app-title__subheading {
  max-width: 800px;
  margin: 0;
}
.app-title__heading {
  font-size: 1.75rem;
}
@media screen and (min-width: 20rem) {
  .app-title__heading {
    font-size: calc(1.75rem + 1 * ((100vw - 20rem) / 62));
  }
}
@media screen and (min-width: 82rem) {
  .app-title__heading {
    font-size: 2.75rem;
  }
}
.app-title__subheading {
  font-size: 0.875rem;
}
@media screen and (min-width: 20rem) {
  .app-title__subheading {
    font-size: calc(0.875rem + 0.25 * ((100vw - 20rem) / 62));
  }
}
@media screen and (min-width: 82rem) {
  .app-title__subheading {
    font-size: 1.125rem;
  }
}
.app-title__outer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 1.5rem;
  width: 100%;
  background: #f3f3f3;
  color: #343434;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.app-title__outer {
  padding: 0.875rem;
}
@media screen and (min-width: 20rem) {
  .app-title__outer {
    padding: calc(0.875rem + 0.25 * ((100vw - 20rem) / 62));
  }
}
@media screen and (min-width: 82rem) {
  .app-title__outer {
    padding: 1.125rem;
  }
}
.app-title__author {
  margin: 0;
  font-weight: 700;
  line-height: 1;
}
.app-title__date {
  margin: 0;
  line-height: 1;
  font-style: italic;
}
.wysiwyg-media {
  max-width: none;
  padding: 0 0 1rem 0;
  clear: both;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .wysiwyg-media {
    max-width: 700px;
  }
}
.wysiwyg-media img {
  margin: 0;
}
.wysiwyg-media--floatRight,
.wysiwyg-media--floatLeft {
  text-align: unset;
  margin: unset;
}
@media (min-width: 768px) {
  .wysiwyg-media--floatRight,
  .wysiwyg-media--floatLeft {
    max-width: 500px;
  }
}
@media (min-width: 768px) {
  .wysiwyg-media--floatRight {
    padding-left: 2rem;
    float: right;
  }
}
@media (min-width: 768px) {
  .wysiwyg-media--floatLeft {
    padding-right: 2rem;
    float: left;
  }
}
.wysiwyg-media__caption {
  font-size: 0.875rem;
}
blockquote {
  padding: 0 3rem;
  position: relative;
}
@media (max-width: 575px) {
  blockquote {
    padding: 0 1.375rem;
  }
}
blockquote p {
  font-size: 1.375rem;
}
blockquote p::before,
blockquote p::after {
  position: absolute;
  top: 0;
  line-height: 1;
  font-size: 4rem;
}
@media (max-width: 575px) {
  blockquote p::before,
  blockquote p::after {
    font-size: inherit;
    position: static;
  }
}
blockquote p::after {
  right: 0;
}
blockquote p::before {
  left: 0;
}
blockquote cite span {
  font-weight: 400;
}
blue-form input:is([type="submit"]) {
  appearance: none;
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 6px 12px;
  cursor: pointer;
  text-align: center;
  color: #fff;
  background: #71af85;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0);
  border-radius: 0px;
  transition: 0.25s ease;
  text-transform: uppercase;
  text-decoration: none;
}
blue-form input.disabled:is([type="submit"]),
blue-form input[disabled]:is([type="submit"]) {
  pointer-events: none;
  opacity: 0.65;
}
blue-form input:hover:is([type="submit"]) {
  background: #97c7a6;
  color: #fff;
  text-decoration: none;
}
blue-form
  .ktc-file-component-wrapper
  .ktc-uploader-icon-button[data-icon="loading"] {
  display: inline-grid;
  grid-template-columns: max-content;
  grid-template-rows: max-content;
  z-index: 0;
  align-items: center;
  justify-content: center;
}
blue-form
  .ktc-file-component-wrapper
  .ktc-uploader-icon-button[data-icon="loading"]:after {
  content: "";
  grid-area: 1/1/2/2;
  align-self: center;
  justify-self: center;
  height: 1em;
  width: 1em;
  border-radius: 50%;
  border: 0.25em solid rgba(0, 0, 0, 0);
  border-top-color: currentColor;
  z-index: 2;
  animation: glyph-loading 1s ease infinite;
}
blue-form
  .ktc-file-component-wrapper
  .ktc-uploader-icon-button[data-icon="loading"]:before {
  content: "";
  align-self: center;
  justify-self: center;
  grid-area: 1/1/2/2;
  height: 1em;
  width: 1em;
  border-radius: 50%;
  border: 0.25em solid currentColor;
  opacity: 0.5;
  z-index: 1;
}
blue-form {
  background-color: #f8f8f8;
}
blue-form,
blue-form form,
blue-form .ktc-default-section,
blue-form .editing-form-control-nested-control,
blue-form .editing-form-control-nested-control > span {
  display: flex;
  flex-direction: column;
}
blue-form h1 {
  margin: 2rem;
}
blue-form form {
  width: 100%;
  max-width: 750px;
  gap: 1rem;
  margin-left: 3rem;
  padding-bottom: 3rem;
}
blue-form .ktc-default-section {
  gap: 1rem;
}
blue-form .editing-form-control-nested-control {
  gap: 0.25rem;
}
blue-form
  .editing-form-control-nested-control
  [class*="field-validation"]:empty {
  display: none;
}
blue-form .form-field {
  display: grid;
  grid-template-columns: max-content max-content 1fr;
  position: relative;
  gap: 0.5rem;
}
blue-form .form-field > *:not(label, .blue-form__tooltip) {
  grid-area: span 1 / span 3;
}
blue-form .form-field > label {
  grid-area: 1/1/2/2;
  font-weight: 700;
  color: #777;
  font-size: 0.875rem;
  cursor: pointer;
  transition: 0.1s ease;
  order: -1;
}
blue-form .blue-form__tooltip {
  grid-area: 1/2/2/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  background: #999;
  cursor: pointer;
  transition: 0.2s ease;
  padding-top: 2px;
  padding-right: 2px;
}
blue-form .blue-form__tooltip::before {
  content: "?";
  color: #fff;
  line-height: 1;
  font-family: "Montserrat", "Roboto", sans-serif;
  font-style: italic;
  font-size: 0.75rem;
}
blue-form .blue-form__tooltip:hover {
  background: #1c82d0;
}
blue-form .blue-form__tooltip:hover span {
  opacity: 1;
  visibility: visible;
}
blue-form .blue-form__tooltip span {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: max-content;
  max-width: 300px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  pointer-events: none;
  z-index: 10;
  background: #fff;
  box-shadow: 0 0 0.5rem rgba(34, 34, 34, 0.15),
    0 0 0.75rem rgba(34, 34, 34, 0.05);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
}
blue-form
  input:not([type="checkbox"], [type="radio"], [type="file"], [type="submit"]),
blue-form textarea,
blue-form select {
  appearance: none;
  all: unset;
  border: 1px solid #aaa;
  border-radius: 2px;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  width: auto;
  max-width: 100%;
  color: #222;
  line-height: 1.5;
  box-sizing: border-box;
  transition: 0.1s ease;
}
blue-form
  input:not(
    [type="checkbox"],
    [type="radio"],
    [type="file"],
    [type="submit"]
  )::placeholder,
blue-form
  input:not(
    [type="checkbox"],
    [type="radio"],
    [type="file"],
    [type="submit"]
  ).is-placeholder,
blue-form textarea::placeholder,
blue-form textarea.is-placeholder,
blue-form select::placeholder,
blue-form select.is-placeholder {
  color: #999;
  font-size: 0.875rem;
}
blue-form
  input:not(
    [type="checkbox"],
    [type="radio"],
    [type="file"],
    [type="submit"]
  ):focus,
blue-form textarea:focus,
blue-form select:focus {
  border-color: #1c82d0;
  outline: none;
}
blue-form
  input:not(
    [type="checkbox"],
    [type="radio"],
    [type="file"],
    [type="submit"]
  ):focus::placeholder,
blue-form
  input:not(
    [type="checkbox"],
    [type="radio"],
    [type="file"],
    [type="submit"]
  ):focus.is-placeholder,
blue-form textarea:focus::placeholder,
blue-form textarea:focus.is-placeholder,
blue-form select:focus::placeholder,
blue-form select:focus.is-placeholder {
  color: #1c82d0;
}
blue-form select {
  padding-right: 2rem;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Ctitle%3Edown-arrow%3C%2Ftitle%3E%3Cg%20fill%3D%22%23000000%22%3E%3Cpath%20d%3D%22M10.293%2C3.293%2C6%2C7.586%2C1.707%2C3.293A1%2C1%2C0%2C0%2C0%2C.293%2C4.707l5%2C5a1%2C1%2C0%2C0%2C0%2C1.414%2C0l5-5a1%2C1%2C0%2C1%2C0-1.414-1.414Z%22%20fill%3D%22%23000000%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-size: 0.5rem;
  background-position: calc(100% - 0.75rem) center;
  background-repeat: no-repeat;
}
blue-form select option {
  font-style: normal;
  color: #222;
}
blue-form input:is([type="checkbox"]),
blue-form input:is([type="radio"]) {
  appearance: none;
  all: unset;
  position: absolute;
  height: 1px;
  width: 1px;
  opacity: 1;
  top: 0;
  left: 0;
  pointer-events: none;
}
blue-form input:is([type="checkbox"]) + label,
blue-form input:is([type="radio"]) + label {
  display: grid;
  grid-template-columns: 1rem 1fr;
  gap: 0.75rem;
  cursor: pointer;
  transition: 0.1s ease;
  line-height: 1.5;
  font-size: 0.875rem;
  font-weight: 500;
}
blue-form input:is([type="checkbox"]) + label::before,
blue-form input:is([type="radio"]) + label::before {
  grid-area: 1/1/2/2;
  content: "";
  height: 1rem;
  width: 1rem;
  flex: 0 0 1rem;
  border: 1px solid #aaa;
  cursor: pointer;
  transition: 0.1s ease;
  transform: translateY(4px);
}
blue-form input:is([type="checkbox"]):focus + label::before,
blue-form input:is([type="radio"]):focus + label::before {
  border-color: #1c82d0;
  box-shadow: 0 0 0.5rem rgba(34, 34, 34, 0.2),
    0 0 0.75rem rgba(34, 34, 34, 0.05);
}
blue-form input:is([type="checkbox"])[type="radio"] + label::before,
blue-form input:is([type="radio"])[type="radio"] + label::before {
  border-radius: 50%;
}
blue-form input:is([type="checkbox"])[type="radio"]:checked + label::before,
blue-form input:is([type="radio"])[type="radio"]:checked + label::before {
  border-color: #71af85;
  background-image: radial-gradient(#71af85 40%, transparent 45%);
}
blue-form input:is([type="checkbox"])[type="checkbox"]:checked + label::before,
blue-form input:is([type="radio"])[type="checkbox"]:checked + label::before {
  border-color: #71af85;
  background: teal;
  box-shadow: 0 0 0 3px #fff inset;
}
blue-form .ktc-file-component-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #aaa;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  width: auto;
  max-width: 100%;
  color: #222;
  line-height: 1.5;
  position: relative;
}
blue-form .ktc-file-component-wrapper input:is([type="file"]) {
  appearance: none;
  all: unset;
  position: absolute;
  height: 1px;
  width: 1px;
  opacity: 1;
  top: 0;
  left: 0;
  pointer-events: none;
}
blue-form .ktc-file-component-wrapper .ktc-uploader-text-button,
blue-form .ktc-file-component-wrapper .ktc-uploader-replacement {
  display: none;
}
blue-form .ktc-file-component-wrapper label {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
blue-form .ktc-file-component-wrapper .ktc-uploader-text {
  cursor: pointer;
  font-style: italic;
  font-size: 0.875rem;
}
blue-form .ktc-file-component-wrapper .ktc-uploader-icon-button {
  cursor: pointer;
  font-size: 1.125rem;
}
blue-form
  .ktc-file-component-wrapper
  .ktc-uploader-icon-button[data-icon="select"] {
  color: #999;
}
blue-form
  .ktc-file-component-wrapper
  .ktc-uploader-icon-button[data-icon="select"]::before {
  font-family: "icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "î¥Ÿ";
}
@media speech {
  blue-form
    .ktc-file-component-wrapper
    .ktc-uploader-icon-button[data-icon="select"]::before {
    display: none;
    visibility: hidden;
  }
}
blue-form
  .ktc-file-component-wrapper
  .ktc-uploader-icon-button[data-icon="loading"] {
  color: #1c82d0;
}
blue-form
  .ktc-file-component-wrapper
  .ktc-uploader-icon-button[data-icon="remove"] {
  color: #800;
}
blue-form
  .ktc-file-component-wrapper
  .ktc-uploader-icon-button[data-icon="remove"]::before {
  font-family: "icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "î¤”";
}
@media speech {
  blue-form
    .ktc-file-component-wrapper
    .ktc-uploader-icon-button[data-icon="remove"]::before {
    display: none;
    visibility: hidden;
  }
}
blue-form .explanation-text,
blue-form .field-validation-error {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-weight: 700;
  font-style: italic;
  font-size: 0.875rem;
}
blue-form .explanation-text::before,
blue-form .field-validation-error::before {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 1px;
  padding-right: 2px;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  line-height: 1;
  font-family: "Montserrat", "Roboto", sans-serif;
  font-style: italic;
  font-size: 0.75rem;
  color: #fff;
}
blue-form .explanation-text {
  color: #757575;
  transform: translateY(-0.25rem);
}
blue-form .explanation-text::before {
  content: "i";
  background: #757575;
}
blue-form .field-validation-error {
  color: #800;
}
blue-form .field-validation-error::before {
  content: "!";
  background: #800;
}
blue-form input:is([type="submit"]) {
  align-self: flex-start;
  margin-top: 1.5rem;
  transition: background 0.2s ease;
}
blue-form .formwidget-error {
  margin: 0 0 3rem 3rem;
  color: #dc3545;
}
blue-form .formwidget-submit-text {
  margin: 0 0 3rem 3rem;
  color: #198754;
}
.cookie-notice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  padding: 0;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  z-index: 100;
  gap: 2rem;
}
.cookie-notice__modal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: #1e90ff;
  border-top: 4px solid #fab636;
  box-shadow: 0 0 1rem 0.5rem rgba(52, 52, 52, 0.3),
    0 0 3.5rem rgba(52, 52, 52, 0.1);
  z-index: 100;
  color: #fff;
  bottom: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  visibility: hidden;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.cookie-notice__modal[data-active] {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
  height: auto;
}
.cookie-notice__modal-header {
  margin-right: 2rem;
  margin-left: 2rem;
  width: calc(100% - 4rem);
  max-width: 82rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 1.5rem;
  margin-bottom: 0;
}
@media (min-width: 86rem) {
  .cookie-notice__modal-header {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }
}
.cookie-notice__modal-header em {
  font-style: normal;
  color: #fab636;
}
.cookie-notice__modal-title {
  margin: 0;
}
.cookie-notice__modal-title {
  font-size: 1.25rem;
}
@media screen and (min-width: 20rem) {
  .cookie-notice__modal-title {
    font-size: calc(1.25rem + 0.25 * ((100vw - 20rem) / 62));
  }
}
@media screen and (min-width: 82rem) {
  .cookie-notice__modal-title {
    font-size: 1.5rem;
  }
}
.cookie-notice__modal-content {
  margin-right: 2rem;
  margin-left: 2rem;
  width: calc(100% - 4rem);
  max-width: 82rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 86rem) {
  .cookie-notice__modal-content {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }
}
@media (min-width: 576px) {
  .cookie-notice__modal-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cookie-notice__modal-copy {
  font-size: 0.875rem;
  margin: 0;
  flex: 0 1 75%;
}
.cookie-notice__modal-copy a {
  color: #fab636;
}
.cookie-notice__modal-responses {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
}
.cookie-notice__modal-btn[class][class] {
  flex: 1 1 0;
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
}
.cookie-notice__modal-close {
  background: rgba(0, 0, 0, 0);
  border: none;
  position: relative;
  height: 20px;
  width: 20px;
  padding: 0;
  cursor: pointer;
  color: inherit;
}
.cookie-notice__modal-close::after,
.cookie-notice__modal-close::before {
  content: "";
  position: absolute;
  height: 4px;
  width: 18px;
  border-radius: 1px;
  background: currentColor;
  left: 1px;
  top: calc(50% - 1px);
}
.cookie-notice__modal-close::after {
  transform: rotate(45deg);
}
.cookie-notice__modal-close::before {
  transform: rotate(-45deg);
}
.side-title {
  position: absolute;
  top: 50%;
  left: -66px;
  font: 14px/1.2857 "Montserrat", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
@media (max-width: 767px) {
  .side-title {
    display: none;
  }
}
.network_intro {
  overflow: hidden;
  position: relative;
}
.network_intro .side-title {
  color: #fff;
}
.network_intro .container-fluid {
  padding: 0 !important;
}
.network_intro .contain {
  position: relative;
  padding: 4em 1.25em;
}
.network_intro .contain::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/img/content-images/network_bg-min.svg) no-repeat center;
  background-size: contain;
  opacity: 0.1;
}
.network_intro .content {
  position: relative;
  z-index: 2;
}
.network_intro .content .title {
  color: #fff;
  text-align: center;
  font-size: 2rem;
}
.network_intro .numbers_list {
  list-style-type: none;
  margin: 0 1em;
  padding: 0;
  text-align: center;
  justify-content: space-around;
}
.network_intro .numbers_list li {
  margin-bottom: 4.5rem;
  transform: translateY(2em);
}
.network_intro .numbers_list li:nth-child(2) {
  animation-delay: 0.3s;
}
.network_intro .numbers_list li:nth-child(3) {
  animation-delay: 0.6s;
}
.network_intro .numbers_list li:last-child {
  margin-bottom: 0;
}
.network_intro .numbers_list .number_contain {
  margin-bottom: 1.5em;
}
.network_intro .numbers_list .number_contain.nudge {
  transform: translateX(1%);
}
.network_intro .numbers_list .odometer {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 6em;
  line-height: 0.8em;
  margin: 0;
}
.network_intro .numbers_list .odometer .odometer-value {
  transition: color 0.3s ease;
}
.network_intro .numbers_list a {
  text-decoration: none;
  color: #fff;
}
.network_intro .numbers_list a:hover span {
  color: #00ccde;
}
.network_intro .numbers_list h6 {
  font-size: 1.125em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  font-weight: 700;
}
@media only screen and (max-width: 68em) {
  .network_intro .numbers_list .odometer {
    font-size: 4em;
  }
}
@media (min-width: 59.375em) {
  .network_intro .contain {
    padding: 4em 1.25em;
  }
  .network_intro .numbers_list {
    display: flex;
  }
  .network_intro .numbers_list li {
    width: 33%;
    margin-bottom: 0;
  }
}
@media (min-width: 68em) {
  .network_intro .numbers_list .odometer {
    font-size: 6em;
  }
}
@media (min-width: 74em) {
  .network_intro .contain {
    padding: 4em 1.25em;
  }
  .network_intro .numbers_list .odometer {
    font-size: 8em;
  }
}
@media (min-width: 90em) {
  .network_intro .numbers_list {
    margin: 0 4em;
  }
  .network_intro .numbers_list .odometer {
    font-size: 8em;
  }
}
@media (min-width: 101em) {
  .network_intro .numbers_list .odometer {
    font-size: 8em;
  }
}
.appear {
  opacity: 0;
  transform: translateY(2em);
}
.appear.appear--on {
  opacity: 1;
  transform: translateY(0);
  animation: slideIn 0.7s forwards;
}
.no-js .appear {
  opacity: 1;
  transform: translateY(0);
}
.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-default .odometer-digit {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
  display: inline-block;
  vertical-align: middle;
  visibility: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
  text-align: center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
  display: block;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
  display: block;
  -webkit-backface-visibility: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value {
  display: block;
  -webkit-transform: translateZ(0);
}
.odometer.odometer-auto-theme
  .odometer-digit
  .odometer-value.odometer-last-value,
.odometer.odometer-theme-default
  .odometer-digit
  .odometer-value.odometer-last-value {
  position: absolute;
}
.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 2s;
  -moz-transition: -moz-transform 2s;
  -ms-transition: -ms-transform 2s;
  -o-transition: -o-transform 2s;
  transition: transform 2s;
}
.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating
  .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up.odometer-animating
  .odometer-ribbon-inner {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down
  .odometer-ribbon-inner {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating
  .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down.odometer-animating
  .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 2s;
  -moz-transition: -moz-transform 2s;
  -ms-transition: -ms-transform 2s;
  -o-transition: -o-transform 2s;
  transition: transform 2s;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.divider-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}
.divider-logo {
  margin-top: -35px !important;
  position: relative;
  z-index: 2;
  width: 70px;
}
.divider-bar {
  height: 1em;
  width: 100%;
  text-align: center;
  background: linear-gradient(
    to right,
    #71af85 0%,
    #9dc2ce 40%,
    #9dc2ce 60%,
    #71af85 100%
  );
}
.divider-body-text {
  line-height: 32px;
  text-align: center;
  margin-bottom: 2.5em;
  text-align: center;
  width: 80%;
}
@media only screen and (max-width: 768px) {
  .divider-body-text {
    width: 80%;
  }
}
.btn-matrix {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 2rem 0;
  justify-content: center;
}
.btn-matrix > .btn:first-child {
  border-bottom-left-radius: 0;
}
.btn-matrix .btn {
  color: #fff !important;
  padding: 2rem;
  background-color: #c0d6eb;
  background-image: linear-gradient(to right, #71af85, #71af85);
  border: 1px solid #fff;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  margin: 0.2rem !important;
  border-radius: 0;
  flex: 0 1 328px;
}
.btn-matrix .btn {
  white-space: normal !important;
}
.btn-matrix .btn:active,
.btn-matrix .btn:hover,
.btn-matrix li:active,
.btn-matrix li:hover {
  background: #5fd885 !important;
}
.btn-matrix > .btn:nth-child(n + 4) {
  margin-top: -1px;
}
.btn-matrix > .btn:nth-child(3n + 4) {
  clear: left;
  margin-left: 0;
}
@media screen and (max-width: 990px) {
  .btn-matrix {
    width: 100%;
    padding: 2rem 0;
  }
  .btn-matrix .btn {
    padding: 2rem 2.25rem;
  }
}
.sub-nav-head {
  text-align: center;
}
.sub-nav-head img {
  max-width: 200px;
}
.sub-nav-links ul {
  list-style-type: none;
  padding: 0;
  margin: 1.5rem 0 1rem;
}
.sub-nav-links ul li {
  padding: 1rem 0 1rem 2rem;
  margin: 0;
  border-top: 1px solid #71af85;
}
.sub-nav-links ul li a {
  color: #71af85;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0);
}
@media screen and (max-width: 991px) {
  .section__inner .section__rail {
    display: none;
    clear: both;
    padding-top: 5px;
  }
  .section__inner.algolia .section__rail {
    display: block;
  }
}
@media screen and (min-width: 575px) and (max-width: 770px) {
  .section__inner.algolia .section__rail .toggle-container {
    top: 121px;
  }
}
section#hero.section__inner {
  padding-top: 0 !important;
}
section#hero .dhButton {
  display: flex;
  flex-direction: row;
}
section#hero .dhButton > div {
  flex: 1;
}
section#hero .dhButton > div.action-left {
  padding: 1px 0.5% 3px 0;
}
section#hero .dhButton > div.action-left > .hero-img {
  height: 100%;
  width: 100%;
}
section#hero .dhButton > div.action-right {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
}
section#hero .dhButton > div.action-right > a {
  flex: 0 1 49.5%;
  border: 1px solid #d6e5ec;
  margin: 0 0 3px 0.5%;
  display: flex;
  padding: 14px 10px;
  text-align: left;
  align-items: center;
  box-shadow: #d5e0e4 0 1px 17px;
  background-color: #fff;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
section#hero .dhButton > div.action-right > a:hover {
  cursor: pointer;
  box-shadow: 0 1px 5px 0 rgba(0, 31, 44, 0.12),
    0 7px 25px 0 rgba(0, 31, 44, 0.15);
  text-decoration: none;
  transform: translateY(-3px);
}
section#hero
  .dhButton
  > div.action-right
  > a:hover
  .btn-text
  span.title::after {
  content: "âžœ";
  padding-left: 10px;
}
section#hero .dhButton > div.action-right > a span.btn-text {
  width: 75%;
  display: inline-block;
  text-align: left;
  padding: 0 10px;
}
section#hero .dhButton > div.action-right > a span.btn-text span.title {
  color: #1c1e4d;
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  margin: 0px;
}
section#hero .dhButton > div.action-right > a span.btn-text span.description {
  display: block;
  padding: 0;
  font-size: 14px;
  line-height: 16px;
  text-align: left;
  margin-top: 5px;
  color: #444;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}
section#hero .hero-caption {
  text-align: center;
  font-size: 1.7em;
  color: #1c1e4d;
  font-weight: 600;
  margin: 5px 10px 0;
  padding: 10px;
}
@media screen and (max-width: 1100px) {
  section#hero .dhButton > div.action-right {
    flex-grow: 2;
  }
}
@media screen and (max-width: 900px) {
  section#hero .dhButton > div.action-left {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  section#hero .dhButton > div.action-right {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  section#hero .hero-caption {
    display: none;
  }
}
.doc_contact {
  background-color: #eaf2f6;
  width: 100%;
  height: 100%;
  padding: 15px;
}
.algolia .ais-RefinementList-showMore--disabled {
  display: none !important;
}
@media only screen and (max-width: 600px) {
  .next-appts-data .btn {
    width: calc(100% - 28px);
  }
}
.availability {
  z-index: 0 !important;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 21px;
}
.availability.blue {
  background: #005b83;
}
.availability.green {
  background: #3aaf50;
}
.availability.gray {
  background: #878787;
}
.availability.purple {
  background: #781d7e;
}
.accepting-true {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  text-align: right;
  padding: 6px 9px;
  font-size: 12px;
  font-weight: bold;
  color: #fff !important;
  text-transform: uppercase;
  text-align: center;
  line-height: 15px;
  width: 125px;
  display: block;
  background: #3aaf50;
  box-shadow: 0 3px 10px -5px #000;
  top: 10px;
  right: 10px;
}
.accepting-true.green {
  background: #3aaf50;
}
.accepting-true.blue {
  background: #005b83;
}
.accepting-true.gray {
  background: #878787;
}
.accepting-true.purple {
  background: #781d7e;
}
.accepting-true.none {
  display: none;
}
.docbio-top {
  position: relative;
  width: 100%;
  min-height: 20px;
  padding: 0px;
  border: 1px solid #c2dbe8;
}
@media (min-width: 768px) {
  .doc_content {
    display: flex;
  }
}
.img-container {
  margin-bottom: 20px;
  position: relative;
}
.accepting {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  text-align: right;
  padding: 6px 9px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  line-height: 15px;
  width: 125px;
  display: block;
  background: #3aaf50;
  box-shadow: 0 3px 10px -5px #000;
  top: -5px;
  right: -5px;
}
.accepting.green {
  background: #3aaf50;
}
.accepting.blue {
  background: #005b83;
}
.accepting.gray {
  background: #878787;
}
.accepting.none {
  display: none;
}
.padded-column {
  padding: 30px;
}
.padded-column-small {
  padding: 15px;
}
.side-padding {
  padding-left: 30px;
  padding-right: 30px;
}
.location-marker {
  font-size: 14px;
  color: #c4c4c4;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.location-marker img {
  margin-right: 5px;
  padding-bottom: 5px;
}
.bio-address {
  font-size: 14px;
  line-height: 1.6em;
  margin-bottom: 5px;
  font-weight: 600;
}
.doctor-name {
  margin-top: 0px;
  margin-bottom: 10px;
  padding-top: 0px;
  color: #303234;
  font-size: 24px;
  font-weight: 700;
}
.specialties {
  color: #71af85;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}
.languages {
  font-weight: 600;
}
.office-name {
  margin-top: 10px;
  margin-bottom: 5px;
  color: #71af85;
  font-size: 18px;
  font-weight: 700;
}
.get-directions {
  color: #71af85;
  line-height: 22px;
  font-weight: 600;
  font-size: 16px;
  margin: 10px 0 20px 0;
  display: flex;
}
.get-directions:hover {
  text-decoration: none;
}
.green-btn {
  background-color: #3aaf50;
  color: #fff;
}
.green-btn:hover {
  background-color: #5ebc5e;
  color: #fff;
  text-decoration: none;
}
.phone-btn {
  font-weight: 500;
  display: flex;
  justify-content: center;
  font-size: 12px;
  align-content: center;
}
.phone-btn img {
  margin-right: 5px;
}
.locations-btn {
  font-weight: 500;
  display: flex;
  justify-content: center;
  font-size: 12px;
  align-content: center;
}
.locations-btn img {
  margin-right: 5px;
}
.appointment-buttons .btn {
  margin: 0 0 20px 10px;
}
.schedule {
  display: flex;
  color: #4ff067;
  font-weight: 500;
  text-transform: uppercase;
  padding-left: 20px;
  padding-left: 0;
}
.schedule-btns .btn {
  padding: 6px 20px;
  font-weight: 500;
}
.schedule-btns .btn:first-child {
  margin-right: 10px;
}
.right-border {
  border-right: 1px solid #c2dbe8;
}
.bio-section {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.share {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 60px 0;
}
.share .share_links {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.share .share_links li {
  float: left;
  width: 28px;
  margin: 0 24px 0 0;
  padding: 0;
  transition: opacity 0.3s ease;
}
#reviews .container-fluid {
  padding: 0;
}
#reviews .container-fluid .heading {
  padding-left: 20px;
}
#herorate.ds-summary {
  text-align: center;
  display: inline-block;
}
#herorate span.ds-stars {
  margin: 0 10px 0 0;
  display: inline-block;
}
#herorate span.rcnt {
  display: none;
}
#herorate .ds-comments {
  display: none;
}
.ds-xofy {
  margin-top: 0;
  display: inline-block;
}
.location-wrapper,
.map {
  width: 100%;
  height: 100%;
}
app-search-provider body,
app-search-provider h1,
app-search-location body,
app-search-location h1 {
  margin: 0;
  padding: 0;
}
app-search-provider body,
app-search-location body {
  font-family: "Montserrat", Arial, sans-serif;
  background-color: #fff;
}
app-search-provider [class^="ais-"],
app-search-location [class^="ais-"] {
  font-size: unset;
  box-sizing: border-box;
}
app-search-provider .navbar-header,
app-search-location .navbar-header {
  width: 100%;
}
app-search-provider .main-nav .navbar-collapse,
app-search-location .main-nav .navbar-collapse {
  flex-basis: unset;
  flex-grow: unset;
}
app-search-provider .main-nav .navbar-nav,
app-search-location .main-nav .navbar-nav {
  flex-direction: row;
}
app-search-provider section.divider,
app-search-location section.divider {
  border-bottom: 1px solid #aaa;
}
app-search-provider .btn-primary,
app-search-location .btn-primary {
  color: #fff;
  background-color: #005b83;
  border-color: #005b83;
}
app-search-provider .green,
app-search-location .green {
  color: #090;
}
app-search-provider .bold,
app-search-location .bold {
  font-weight: bold;
}
app-search-provider address,
app-search-location address {
  margin-bottom: 5px;
}
app-search-provider .wait-time,
app-search-provider .sched-btn,
app-search-location .wait-time,
app-search-location .sched-btn {
  margin-bottom: 10px;
}
app-search-provider .release-date,
app-search-location .release-date {
  font-style: italic;
  font-size: 0.8em;
}
app-search-provider .close,
app-search-location .close {
  float: right;
  font-size: 4rem;
  font-weight: 100;
  line-height: 0.5;
  color: #000;
  opacity: 0.5;
}
app-search-provider .close-text,
app-search-location .close-text {
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.75;
}
app-search-provider .ais-SearchBox-reset,
app-search-location .ais-SearchBox-reset {
  margin-right: 20px;
}
app-search-provider .ais-SearchBox-submitIcon,
app-search-location .ais-SearchBox-submitIcon {
  width: 24px;
  height: 24px;
  margin-left: 20px;
}
app-search-provider .ais-SearchBox-Submit:focus,
app-search-location .ais-SearchBox-Submit:focus {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  outline: 0px;
}
app-search-provider .page-description,
app-search-location .page-description {
  font-size: 14px;
}
app-search-provider .search-panel .ais-SearchBox-input,
app-search-location .search-panel .ais-SearchBox-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0.3rem 3.7rem;
  width: 100%;
  position: relative;
  background-color: rgba(21, 105, 146, 0.0705882353);
  border: 0px solid #c4c8d8;
  border-radius: 0px;
  outline: none;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #355464;
}
app-search-provider .ais-SearchBox-input::placeholder,
app-search-location .ais-SearchBox-input::placeholder {
  color: rgba(53, 84, 100, 0.4901960784);
  opacity: 1;
}
app-search-provider .ais-SearchBox-input:-ms-input-placeholder,
app-search-location .ais-SearchBox-input:-ms-input-placeholder {
  color: rgba(53, 84, 100, 0.4901960784);
}
app-search-provider .ais-SearchBox-input::-ms-input-placeholder,
app-search-location .ais-SearchBox-input::-ms-input-placeholder {
  color: rgba(53, 84, 100, 0.4901960784);
}
app-search-provider .nav,
app-search-location .nav {
  justify-content: space-evenly;
}
@media (max-width: 575px) {
  app-search-provider .nav,
  app-search-location .nav {
    --bs-nav-link-padding-x: 0.5rem;
  }
}
app-search-provider .nav-pills .nav-link.active,
app-search-provider .nav-pills .show > .nav-link,
app-search-location .nav-pills .nav-link.active,
app-search-location .nav-pills .show > .nav-link {
  color: #006993;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0);
  border-color: #006993;
}
app-search-provider .nav2,
app-search-location .nav2 {
  justify-content: space-evenly;
}
app-search-provider .nav2-pills .nav2-link.active,
app-search-provider .nav2-pills .show > .nav2-link,
app-search-location .nav2-pills .nav2-link.active,
app-search-location .nav2-pills .show > .nav2-link {
  color: #006993;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0);
}
app-search-provider .nav2-link,
app-search-location .nav2-link {
  border-radius: 0rem !important;
  border-bottom: 3px solid rgba(0, 0, 0, 0);
  color: rgba(43, 65, 74, 0.8588235294);
  font-weight: 600;
}
app-search-provider .nav2-link a:hover,
app-search-location .nav2-link a:hover {
  color: #385d6f;
}
app-search-provider a,
app-search-location a {
  color: #000;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0);
}
app-search-provider a:hover,
app-search-location a:hover {
  color: #000;
  text-decoration: underline;
}
app-search-provider .nav-link,
app-search-location .nav-link {
  border-radius: 0rem !important;
  border-bottom: 3px solid rgba(0, 0, 0, 0);
  color: rgba(43, 65, 74, 0.8588235294);
  font-weight: 600;
}
app-search-provider .nav-link a:hover,
app-search-location .nav-link a:hover {
  color: #385d6f;
}
app-search-provider em,
app-search-location em {
  background: aqua;
  font-style: normal;
}
app-search-provider .header a,
app-search-location .header a {
  color: #fff;
  text-decoration: none;
}
app-search-provider .header-title,
app-search-location .header-title {
  font-size: 1.2rem;
  font-weight: normal;
}
app-search-provider .header-title::after,
app-search-location .header-title::after {
  content: " â–¸ ";
  padding: 0 0.5rem;
}
app-search-provider .header-subtitle,
app-search-location .header-subtitle {
  font-size: 1.2rem;
}
app-search-provider .container,
app-search-location .container {
  margin: 0 auto;
  --bs-gutter-x: 0 !important;
}
app-search-provider .search-panel,
app-search-location .search-panel {
  display: flex;
}
app-search-provider .search-panel__filters,
app-search-location .search-panel__filters {
  flex: 1;
}
app-search-provider .search-panel__results,
app-search-location .search-panel__results {
  flex: 3;
  max-width: 100%;
}
app-search-provider .searchbox,
app-search-location .searchbox {
  margin-bottom: 2rem;
}
app-search-provider .pagination,
app-search-location .pagination {
  margin: 2rem auto;
  text-align: right;
}
app-search-provider .ais-SearchBox-input,
app-search-location .ais-SearchBox-input {
  height: 80px;
}
app-search-provider .ais-Hits-list,
app-search-location .ais-Hits-list {
  margin-bottom: 20px;
}
app-search-provider h1,
app-search-location h1 {
  color: #006993;
  font-family: "Montserrat";
  letter-spacing: -1px;
}
app-search-provider h3,
app-search-location h3 {
  line-height: 1.33;
  font-size: 36px;
  font-weight: 400;
  color: #156992;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 20px;
}
app-search-provider .result,
app-search-location .result {
  color: #52616b;
  text-decoration: none;
}
app-search-provider .ais-Breadcrumb,
app-search-provider .ais-ClearRefinements,
app-search-provider .ais-CurrentRefinements,
app-search-provider .ais-GeoSearch,
app-search-provider .ais-HierarchicalMenu,
app-search-provider .ais-Hits,
app-search-provider .ais-HitsPerPage,
app-search-provider .ais-InfiniteHits,
app-search-provider .ais-InfiniteResults,
app-search-provider .ais-Menu,
app-search-provider .ais-MenuSelect,
app-search-provider .ais-NumericMenu,
app-search-provider .ais-NumericSelector,
app-search-provider .ais-Pagination,
app-search-provider .ais-Panel,
app-search-provider .ais-PoweredBy,
app-search-provider .ais-RangeInput,
app-search-provider .ais-RangeSlider,
app-search-provider .ais-RatingMenu,
app-search-provider .ais-RefinementList,
app-search-provider .ais-Results,
app-search-provider .ais-ResultsPerPage,
app-search-provider .ais-SearchBox,
app-search-provider .ais-SortBy,
app-search-provider .ais-Stats,
app-search-provider .ais-ToggleRefinement,
app-search-location .ais-Breadcrumb,
app-search-location .ais-ClearRefinements,
app-search-location .ais-CurrentRefinements,
app-search-location .ais-GeoSearch,
app-search-location .ais-HierarchicalMenu,
app-search-location .ais-Hits,
app-search-location .ais-HitsPerPage,
app-search-location .ais-InfiniteHits,
app-search-location .ais-InfiniteResults,
app-search-location .ais-Menu,
app-search-location .ais-MenuSelect,
app-search-location .ais-NumericMenu,
app-search-location .ais-NumericSelector,
app-search-location .ais-Pagination,
app-search-location .ais-Panel,
app-search-location .ais-PoweredBy,
app-search-location .ais-RangeInput,
app-search-location .ais-RangeSlider,
app-search-location .ais-RatingMenu,
app-search-location .ais-RefinementList,
app-search-location .ais-Results,
app-search-location .ais-ResultsPerPage,
app-search-location .ais-SearchBox,
app-search-location .ais-SortBy,
app-search-location .ais-Stats,
app-search-location .ais-ToggleRefinement {
  color: #001b36;
}
app-search-provider .ais-Pagination-item--selected .ais-Pagination-link,
app-search-location .ais-Pagination-item--selected .ais-Pagination-link {
  color: #fff;
  background-color: #006993;
  border-color: #006993;
}
app-search-provider .ais-Breadcrumb-link,
app-search-provider .ais-HierarchicalMenu-link,
app-search-provider .ais-Menu-link,
app-search-provider .ais-Pagination-link,
app-search-provider .ais-RatingMenu-link,
app-search-location .ais-Breadcrumb-link,
app-search-location .ais-HierarchicalMenu-link,
app-search-location .ais-Menu-link,
app-search-location .ais-Pagination-link,
app-search-location .ais-RatingMenu-link {
  color: #006993;
  transition: color 0.2s ease-out;
}
app-search-provider .ais-Highlight-highlighted,
app-search-provider .ais-Snippet-highlighted,
app-search-location .ais-Highlight-highlighted,
app-search-location .ais-Snippet-highlighted {
  background-color: rgba(21, 105, 146, 0.0705882353);
  color: #006993;
}
app-search-provider .ais-BlogPostSummary,
app-search-location .ais-BlogPostSummary {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
app-search-provider .ais-Stats,
app-search-provider .ais-Pagination,
app-search-location .ais-Stats,
app-search-location .ais-Pagination {
  font-size: 14px;
  font-weight: 600;
  padding: 0px 10px;
}
app-search-provider .ais-Stats-text,
app-search-location .ais-Stats-text {
  color: #006993;
}
app-search-provider .rounded-card-image,
app-search-location .rounded-card-image {
  height: 150px;
  width: 100%;
  border-radius: 6px;
  -o-object-fit: cover;
  object-fit: cover;
}
app-search-provider .media img,
app-search-location .media img {
  width: 165px;
}
app-search-provider .address-text,
app-search-location .address-text {
  font-size: 14px;
}
app-search-provider .ais-Pagination-link,
app-search-location .ais-Pagination-link {
  padding: 0.3rem 0.6rem;
  display: block;
  border: 1px solid #c4c8d8;
  border-radius: 0px;
  transition: background-color 0.2s ease-out;
}
app-search-provider .search-panel #website-results .ais-Hits-list,
app-search-location .search-panel #website-results .ais-Hits-list {
  list-style-type: none;
  color: #006993;
}
app-search-provider .search-panel #locations-results .ais-Hits-item,
app-search-location .search-panel #locations-results .ais-Hits-item {
  width: calc(100% - 1rem);
}
app-search-provider .search-panel #locations-results .media img,
app-search-location .search-panel #locations-results .media img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: left;
}
app-search-provider .search-panel .location-card-image,
app-search-location .search-panel .location-card-image {
  min-height: 125px;
  background-size: cover;
  background-position: center;
}
app-search-provider .search-panel #providers-results .ais-Hits-item,
app-search-location .search-panel #providers-results .ais-Hits-item {
  width: calc(100% - 1rem);
}
app-search-provider .search-panel #providers-results .media,
app-search-location .search-panel #providers-results .media {
  display: flex;
  align-items: center;
  flex-direction: column;
}
app-search-provider .search-panel #providers-results .media .media-body,
app-search-location .search-panel #providers-results .media .media-body {
  text-align: center;
}
app-search-provider .search-panel #urgent-care-results .media,
app-search-location .search-panel #urgent-care-results .media {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
app-search-provider .search-panel #providers-results .media img,
app-search-location .search-panel #providers-results .media img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  object-position: left;
}
app-search-provider .search-panel #providers-results .availability,
app-search-location .search-panel #providers-results .availability {
  height: 24px;
  margin-top: -24px;
  text-align: center;
  width: 250px;
  font-size: 14px;
  position: relative;
}
app-search-provider .search-panel #providers-results .availability.green,
app-search-location .search-panel #providers-results .availability.green {
  background: #3aaf50;
  color: #fff;
}
app-search-provider .search-panel #providers-results .availability.blue,
app-search-location .search-panel #providers-results .availability.blue {
  background: #005b83;
  color: #fff;
}
app-search-provider .search-panel #urgent-care-results .media img,
app-search-location .search-panel #urgent-care-results .media img {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: cover;
  object-position: left;
}
app-search-provider .search-panel #urgent-care-results .ais-Hits-item,
app-search-location .search-panel #urgent-care-results .ais-Hits-item {
  width: 100%;
  border-bottom: 1px solid #ddd;
}
app-search-provider
  .search-panel
  #urgent-care-results
  .ais-Hits-item:last-child,
app-search-location
  .search-panel
  #urgent-care-results
  .ais-Hits-item:last-child {
  border-bottom: none;
}
app-search-provider .search-panel #blogs-results .ais-Hits-item,
app-search-provider .search-panel #news-results .ais-Hits-item,
app-search-provider .search-panel #website-results .ais-Hits-item,
app-search-location .search-panel #blogs-results .ais-Hits-item,
app-search-location .search-panel #news-results .ais-Hits-item,
app-search-location .search-panel #website-results .ais-Hits-item {
  width: 100%;
  padding: 15px;
  font-size: 16px;
}
app-search-provider #blogs-results .ais-Hits-item:nth-child(even),
app-search-provider #news-results .ais-Hits-item:nth-child(even),
app-search-provider #website-results .ais-Hits-item:nth-child(even),
app-search-location #blogs-results .ais-Hits-item:nth-child(even),
app-search-location #news-results .ais-Hits-item:nth-child(even),
app-search-location #website-results .ais-Hits-item:nth-child(even) {
  background: #eef4f7;
}
app-search-provider .search-panel section header.col,
app-search-location .search-panel section header.col {
  text-align: center;
}
app-search-provider .search-panel section div[class^="col"],
app-search-location .search-panel section div[class^="col"] {
  display: block;
  text-align: center;
  max-width: 100%;
  flex: unset;
}
app-search-provider span.view-all,
app-search-location span.view-all {
  margin-bottom: 10px;
  display: block;
}
app-search-provider .ais-Hits-item,
app-search-location .ais-Hits-item {
  margin-top: 1rem;
  margin-left: 1rem;
  padding: 0rem;
  border: none;
  box-shadow: none;
  margin-bottom: 1rem;
}
app-search-provider .top-bar.hidden-sm,
app-search-location .top-bar.hidden-sm {
  display: none !important;
}
app-search-provider footer .footer_top,
app-search-location footer .footer_top {
  display: block !important;
  justify-content: unset;
}
app-search-provider footer .footer_top .contact_info,
app-search-location footer .footer_top .contact_info {
  margin: 0 0 2.5em 0 !important;
  padding: 0 1.25em !important;
}
app-search-provider footer .footer_top .logo,
app-search-location footer .footer_top .logo {
  margin: 0 auto 1.5em !important;
}
app-search-provider footer .footer_top .logos,
app-search-location footer .footer_top .logos {
  margin: 0 auto;
  padding: 0 0.75em;
  max-width: 100%;
}
app-search-provider footer .footer_top p,
app-search-location footer .footer_top p {
  text-align: center !important;
  font-size: 0.9375em;
  color: #83888e;
  line-height: 1.75em;
  margin: 0px;
}
app-search-provider footer .mobile_links,
app-search-provider footer .mobile_social,
app-search-location footer .mobile_links,
app-search-location footer .mobile_social {
  display: block;
}
app-search-provider footer .footer_nav,
app-search-location footer .footer_nav {
  display: none;
  margin-bottom: 0;
}
app-search-provider footer .footer_bottom .footer_links,
app-search-location footer .footer_bottom .footer_links {
  display: flex;
  flex-direction: column;
}
app-search-provider footer .footer_bottom .footer_links li,
app-search-location footer .footer_bottom .footer_links li {
  border-right: none;
}
@media (min-width: 576px) {
  app-search-provider .search-panel #providers-results .ais-Hits-item,
  app-search-location .search-panel #providers-results .ais-Hits-item {
    width: calc(50% - 1rem);
  }
  app-search-provider .search-panel #urgent-care-results .media,
  app-search-location .search-panel #urgent-care-results .media {
    flex-direction: row;
  }
  app-search-provider .search-panel #locations-results .media img,
  app-search-location .search-panel #locations-results .media img {
    width: 250px;
    height: 250px;
  }
}
@media (min-width: 768px) {
  app-search-provider .search-panel #locations-results .ais-Hits-item,
  app-search-location .search-panel #locations-results .ais-Hits-item {
    width: calc(50% - 1rem);
  }
}
@media (min-width: 1100px) {
  app-search-provider .nav,
  app-search-location .nav {
    justify-content: flex-start;
  }
  app-search-provider .navbar-header,
  app-search-location .navbar-header {
    width: unset;
  }
  app-search-provider .search-panel #blogs-results .ais-Hits-item,
  app-search-provider .search-panel #news-results .ais-Hits-item,
  app-search-provider .search-panel #locations-results .ais-Hits-item,
  app-search-provider .search-panel #providers-results .ais-Hits-item,
  app-search-provider .search-panel #website-results .ais-Hits-item,
  app-search-location .search-panel #blogs-results .ais-Hits-item,
  app-search-location .search-panel #news-results .ais-Hits-item,
  app-search-location .search-panel #locations-results .ais-Hits-item,
  app-search-location .search-panel #providers-results .ais-Hits-item,
  app-search-location .search-panel #website-results .ais-Hits-item {
    width: calc(33% - 1rem);
  }
  app-search-provider .search-panel #providers-results .ais-Hits-item,
  app-search-location .search-panel #providers-results .ais-Hits-item {
    align-items: flex-start;
  }
  app-search-provider .search-panel section div.col-6,
  app-search-location .search-panel section div.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  app-search-provider .search-panel #urgent-care-results .ais-Hits-item,
  app-search-location .search-panel #urgent-care-results .ais-Hits-item {
    width: calc(50% - 1rem);
    border-bottom: unset;
  }
  app-search-provider .search-panel #urgent-care-results .media,
  app-search-location .search-panel #urgent-care-results .media {
    flex-direction: row;
  }
  app-search-provider .search-panel #urgent-care-results .media img,
  app-search-location .search-panel #urgent-care-results .media img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    object-position: left;
  }
  app-search-provider .search-panel h1,
  app-search-location .search-panel h1 {
    display: block;
  }
  app-search-provider .search-panel section header.col,
  app-search-location .search-panel section header.col {
    text-align: left;
  }
  app-search-provider .search-panel section .col-3,
  app-search-location .search-panel section .col-3 {
    display: flex;
    flex-direction: column;
    flex: 0 0 25%;
    text-align: unset !important;
    max-width: 25%;
  }
  app-search-provider span.view-all,
  app-search-location span.view-all {
    margin-bottom: 0;
    display: inline;
  }
  app-search-provider .ais-Stats,
  app-search-provider .ais-Pagination,
  app-search-location .ais-Stats,
  app-search-location .ais-Pagination {
    float: right;
  }
  app-search-provider header + div[class^="col"],
  app-search-location header + div[class^="col"] {
    flex: unset;
    max-width: unset;
  }
  app-search-provider .top-bar.hidden-sm,
  app-search-location .top-bar.hidden-sm {
    display: block !important;
  }
  app-search-provider footer .mobile_links,
  app-search-provider footer .mobile_social,
  app-search-location footer .mobile_links,
  app-search-location footer .mobile_social {
    display: none;
  }
  app-search-provider footer .footer_nav,
  app-search-location footer .footer_nav {
    display: flex;
    justify-content: space-between;
    margin-botto: 4.5em;
  }
  app-search-provider footer .footer_top,
  app-search-location footer .footer_top {
    display: flex !important;
    justify-content: space-between;
  }
  app-search-provider footer .footer_top p,
  app-search-location footer .footer_top p {
    text-align: left !important;
  }
  app-search-provider footer .footer-top .logos,
  app-search-location footer .footer-top .logos {
    margin: 0;
    padding: 0;
    max-width: 29.5em;
  }
  app-search-provider footer .footer_bottom .footer_links,
  app-search-location footer .footer_bottom .footer_links {
    display: block;
  }
  app-search-provider footer .footer_bottom .footer_links li,
  app-search-location footer .footer_bottom .footer_links li {
    border-right: 1px solid #83888e;
  }
}
#MyChartIframe.openSchedulingFrame {
  width: 100%;
  height: 815px;
}
