




/*------------------------------------*\
  NORMALIZE
\*------------------------------------*/


*, ::before, ::after {
  box-sizing: border-box;
}
html {
  font-family: system-ui, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
       tab-size: 4;
}
body {
  margin: 0;
}
hr {
  height: 0;
  color: inherit;
}
abbr[title] {
  text-decoration: underline dotted;
}
b, strong {
  font-weight: bolder;
}
code, kbd, samp, pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub, sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
table {
  text-indent: 0;
  border-color: inherit;
}
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button, select {
  text-transform: none;
}
button, [type='button'], [type='reset'], [type='submit'] {
  -webkit-appearance: button;
}
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
:-moz-focusring {
  outline: 1px dotted ButtonText;
}
:-moz-ui-invalid {
  box-shadow: none;
}
legend {
  padding: 0;
}
progress {
  vertical-align: baseline;
}
::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
  height: auto;
}
[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
summary {
  display: list-item;
}


:root {
  line-height: 1.5;
}
h1, h2, h3, h4, h5, h6, figure, p, ol, ul {
  margin: 0;
}
ol, ul {
  list-style: none;
  padding-inline: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-inline-size: 100%;
}


input[type=email],
input[type=phone],
input[type=text],
input[type=radio],
input[type=checkbox],
input[type=date],
input[type=search],
textarea,
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

button {
  background: inherit;
  padding: inherit;
  padding-inline: inherit;
  border: inherit;
}

a:focus,
button:focus {
  outline: 2px solid rgba(0,160,221, 0.5);
  outline-offset: 2px;
  z-index: 9;
}
:focus:not(:focus-visible) { 
  outline: none;
}

.grecaptcha-badge {
  visibility: hidden;
}











/*------------------------------------*\
  #HEADER-NAVIGATION
\*------------------------------------*/





/*------------------------------------*\
  #TOPNAV
\*------------------------------------*/


.page-head__top {
  background: var(--dark-blue);
}

.topnav__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 2.5rem;
}

.topnav__item {
  margin: 0 0.8rem;
}
.topnav__item:last-child {
  margin: 0;
}

.topnav__link {
  position: relative;
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  margin-top: -0.1em;
  transition: color 0.5s ease, background 0.5s ease;
}
.topnav__link:hover {
  color: var(--lighter-blue);
}

/*
.link--language {
  display: flex;
  align-items: baseline;
}
.link--language svg {
  width: 0.75em;
  height: auto;
  fill: #fff;
  margin-left: 0.4em;
  transition: fill 0.5s ease;
}
.link--language:hover svg {
  fill: var(--lighter-blue);
}
*/

.item--location {
  padding: 0 1.6rem;
  border-left: 1px solid #fff;
  margin-right: 0;
}
.item--location .topnav__link {
  display: flex;
  align-items: center;
}
.item--location .topnav__link svg {
  width: auto;
  height: 0.9em;
  fill: var(--light-blue);
  margin-right: 0.5em;
  transition: fill 0.5s ease;
}
.item--location .topnav__link:hover svg {
  fill: var(--lighter-blue);
}

.link--button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--orange);
  margin: 0;
}
.link--button svg {
  width: 1em;
  height: auto;
  fill: #fff;
  margin-top: -0.1em;
}
.link--button:hover {
  color: #fff;
  background: var(--light-blue);
}


@media only screen and (max-width: 1200px) {
  .topnav__item {
    margin: 0 0.7rem;
  }
  .topnav__link {
    font-size: 0.9rem;
  }
}





/*------------------------------------*\
  #HEADER
\*------------------------------------*/


.page-head {
  position: relative;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--light-gray);
  z-index: 99999;
}

.page-head .container {
  position: static;
}

.page-head__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1.5rem 0;
}

.page-head__logo {
  width: 240px;
}
.page-head__logo a {
  display: block;
}
.page-head__logo img {
  height: 100%;
  max-height: 70px;
}


@media only screen and (max-width: 1200px) {
  .page-head__logo {
    width: 220px;
  }
  .page-head__logo img {
    max-height: 65px;
  }
}





/*------------------------------------*\
  #PRIMARY-NAV
\*------------------------------------*/


.primary-nav {
  margin-bottom: 0.25rem;
}

.primary-nav__list {
  display: flex;
  align-items: center;
}

.primary-nav__item {
  margin: 0 1rem;
}
.primary-nav__item:last-child {
  margin-right: 0;
}

.primary-nav__link {
  position: relative;
  display: block;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--black);
  cursor: pointer;
  transition: color 0.5s ease;
}
.primary-nav__link.link--dropdown {
  display: flex;
  align-items: baseline;
}
.primary-nav__link.link--dropdown svg {
  width: 0.8em;
  fill: var(--light-blue);
  margin-left: 0.4em;
  transition: fill 0.5s ease;
  overflow: visible;
}

.primary-nav__link:hover {
  color: var(--light-blue);
}
.primary-nav__link:hover svg {
  fill: var(--light-blue);
}

.primary-nav__item .link--open {
  color: var(--dark-blue);
}
.primary-nav__item .link--open svg {
  fill: var(--dark-blue);
}
.primary-nav__item .link--open::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 4px;
  left: 0;
  bottom: -1.8rem;
  background: var(--orange);
  z-index: 99999;
}


@media only screen and (max-width: 1200px) {
  .primary-nav {
    margin-bottom: 0;
  }
  .primary-nav__item {
    margin: 0 0.9rem;
  }
  .primary-nav__link {
    font-size: 1.1rem;
  }
  .primary-nav__item .link--open::after {
    bottom: -1.55rem;
  }
}





/*------------------------------------*\
  #DROPDOWN
\*------------------------------------*/


.dropdown {
  position: absolute;
  display: none;
  width: 100%;
  margin-top: 1.8rem;
  left: 0;
  right: 0;
  background: var(--lightest-gray);
  box-shadow: 0 4px 6px -2px rgba(57,57,57, 0.1); 
  z-index: 9999;
}
.link--open + .dropdown {
  display: block;
}

.dropdown__inner {
  padding: 4rem 0;
}

.dropdown__image {
  position: absolute;
  width: 30%;
  height: 100%;
  top: 0;
  left: 0;
}
.dropdown__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dropdown__nav {
  width: 65%;
  min-height: 15em;
  margin-left: 35%;
}

.dropdown-nav__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 1.5rem;
}
.dropdown-link {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark-blue);
  transition: color 0.5s ease;
}
.dropdown-link:hover {
  color: var(--light-blue);
}

.dropdown-nav__list {
  column-count: 3;
  column-gap: 8%;
}
.dropdown-nav__item {
  display: block;
  margin-bottom: 0.8rem;
}
.dropdown-nav__link {
  position: relative;
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--black);
  transition: color 0.5s ease;
}
.dropdown-nav__link:hover {
  color: var(--light-blue);
}


@media only screen and (max-width: 1500px) {
  .dropdown__inner {
    padding: 3.5rem 0;
  }
  .dropdown__nav {
    width: 66%;
    margin-left: 34%;
  }
}

@media only screen and (max-width: 1300px) {
  .dropdown__inner {
    padding: 3rem 0;
  }
  .dropdown__nav {
    width: 67%;
    margin-left: 33%;
  }
  .dropdown-nav__list {
    column-gap: 6%;
  }
}

@media only screen and (max-width: 1200px) {
  .dropdown {
    margin-top: 1.55rem;
  }
  .dropdown__inner {
    padding: 2.5rem 0;
  }
  .dropdown__image {
    width: 27%;
  }
  .dropdown__nav {
    width: 70%;
    margin-left: 30%;
  }
  .dropdown__nav {
    min-height: 12em;
  }
  .dropdown-nav__header {
    padding-bottom: 0.6rem;
    margin-bottom: 1.2rem;
  }
  .dropdown-link {
    font-size: 1.25rem;
  }
  .dropdown-nav__item {
    margin-bottom: 0.6rem;
  }
  .dropdown-nav__link {
    font-size: 1rem;
  }
}











/*------------------------------------*\
  #MOBILE-MENU
\*------------------------------------*/





/*------------------------------------*\
  #MOBILE-SETUP
\*------------------------------------*/


.page--no-scroll {
  overflow: hidden;
}

.page-head--mobile {
  position: sticky;
  top: 0;
}

.mobile-nav,
.mobile {
  display: none;
}





/*------------------------------------*\
  #MOBILE-HEADER
\*------------------------------------*/


@media only screen and (max-width: 1000px) {
  .page-head__top {
    display: none;
  }
  .page-head__inner {
    align-items: center;
    padding: 1.2rem 0;
  }
  .page-head__logo {
    width: 200px;
  }
  .page-head__logo img {
    max-height: 60px;
  }
}

@media only screen and (max-width: 800px) {
  .page-head__inner {
    padding: 1rem 0;
  }
  .page-head__logo {
    width: 180px;
  }
  .page-head__logo img {
    max-height: 55px;
  }
}

@media only screen and (max-width: 600px) {
  .page-head__inner {
    padding: 0.8rem 0;
  }
  .page-head__logo {
    width: 150px;
  }
  .page-head__logo img {
    max-height: 45px;
  }
}





/*------------------------------------*\
  #MOBILE-NAV
\*------------------------------------*/


@media only screen and (max-width: 1000px) {
  .mobile-nav {
    display: block;
  }
  .mobile-nav__inner {
    display: flex;
    align-items: center;
  }
  .mobile-nav__location,
  .mobile-nav__search {
    display: block;
    height: 24px;
    margin-right: 1.5rem;
  }
  .mobile-nav__location svg,
  .mobile-nav__search svg {
    width: auto;
    height: 24px;
    fill: var(--dark-blue);
    transition: fill 0.5s ease;
    overflow: visible;
  }
  .mobile-nav__location:hover svg,
  .mobile-nav__search:hover svg {
    fill: var(--light-blue);
  }
  .mobile-nav__icon {
    position: relative;
    width: 34px;
    height: 22px;
    cursor: pointer;
    transition: all 0.5s ease;
  }
  .mobile-nav__icon span {
    position: absolute;
    display: block;
    width: 100%;
    height: 4px;
    left: 0;
    background: var(--dark-blue);
    border-radius: 2px;
    opacity: 1;
    transition: all 0.5s ease;
  }
  .mobile-nav__icon:hover span {
    background: var(--light-blue);
  }
  .mobile-nav__icon span:nth-child(1) {
    top: 0;
  }
  .mobile-nav__icon span:nth-child(2),
  .mobile-nav__icon span:nth-child(3) {
    top: 9px;
  }
  .mobile-nav__icon span:nth-child(4) {
    top: 18px;
  }
  .mobile-nav__icon.open span:nth-child(1) {
    width: 0%;
    top: 9px;
    left: 50%;
  }
  .mobile-nav__icon.open span:nth-child(2) {
    transform: rotate(45deg);
  }
  .mobile-nav__icon.open span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .mobile-nav__icon.open span:nth-child(4) {
    width: 0%;
    top: 9px;
    left: 50%;
  }
}

@media only screen and (max-width: 600px) {
  .mobile-nav__location,
  .mobile-nav__search {
    height: 20px;
    margin-right: 1.2rem;
  }
  .mobile-nav__location svg,
  .mobile-nav__search svg {
    height: 20px;
  }
  .mobile-nav__icon {
    width: 28px;
    height: 18px;
  }
  .mobile-nav__icon span {
    height: 3px;
    border-radius: 2px;
  }
  .mobile-nav__icon:hover span {
    background: var(--light-blue);
  }
  .mobile-nav__icon span:nth-child(1) {
    top: 0;
  }
  .mobile-nav__icon span:nth-child(2),
  .mobile-nav__icon span:nth-child(3) {
    top: 8px;
  }
  .mobile-nav__icon span:nth-child(4) {
    top: 16px;
  }
  .mobile-nav__icon.open span:nth-child(1),
  .mobile-nav__icon.open span:nth-child(4) {
    top: 8px;
  }
}




/*------------------------------------*\
  #MOBILE-PRIMARY-NAV
\*------------------------------------*/


@media only screen and (max-width: 1000px) {
  .primary-nav {
    position: fixed;
    display: none;
    width: 100%;
    height: calc(100% - var(--header-height));
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
  }
  .primary-nav__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: calc(100% - 3rem);
    padding: 5%;
    overflow: auto;
  }
  .primary-nav__list {
    display: block;
    margin-top: 5%;
  }
  .primary-nav__item {
    margin: 0;
  }
  .primary-nav__link {
    width: 100%;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 0;
  }
  .primary-nav__link.link--dropdown {
    justify-content: space-between;
  }
  .primary-nav__item .link--open::after {
    display: none;
  }
  .primary-nav__item .link--dropdown svg {
    transition: transform 0.5s ease;
  }
  .primary-nav__item .link--open {
    color: var(--light-blue);
  }
  .primary-nav__item .link--open svg {
    fill: var(--light-blue);
    transform: rotate(-180deg);
  }
}

@media only screen and (max-width: 600px) {
  .primary-nav__inner {
    padding: 6%;
  }
  .primary-nav__link {
    font-size: 1.4rem;
    padding: 0.75rem 0;
  }
}





/*------------------------------------*\
  #MOBILE-DROPDOWN
\*------------------------------------*/


@media only screen and (max-width: 1000px) {
  .dropdown {
    position: relative;
    width: 100%;
    background: #fff;
    box-shadow: none;
    margin: 1rem 0;
  }
  .link--open + .dropdown {
    display: block;
  }
  .dropdown .container {
    width: 100%;
  }
  .dropdown__inner {
    display: block;
    padding: 0;
  }
  .dropdown-nav__header {
    display: block;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
  }
  .dropdown-link {
    display: none;
  }
  .dropdown-nav__header .text-link {
    font-size: 1.1rem;
  }
  .dropdown__image {
    display: none;
  }
  .dropdown__nav {
    width: 100%;
    min-height: inherit;
    margin: 0;
  }
  .dropdown-nav__list {
    column-count: 2;
    column-gap: 10%;
  }
  .dropdown-nav__item {
    margin-bottom: 1rem;
  }
  .dropdown-nav__link {
    font-size: 1.1rem;
  }
}

@media only screen and (max-width: 800px) {
  .dropdown-nav__item {
    margin-bottom: 0.8rem;
  }
  .dropdown-nav__header .text-link,
  .dropdown-nav__link {
    font-size: 1.05rem;
  }
}

@media only screen and (max-width: 600px) {
  .dropdown {
    margin: 0.75rem 0;
  }
  .dropdown-nav__list {
    column-count: 1;
  }
  .dropdown-nav__item:last-child {
    margin-bottom: 0;
  }
}





/*------------------------------------*\
  #MOBILE-ADDS
\*------------------------------------*/


@media only screen and (max-width: 1000px) {
  .mobile {
    display: block;
  }
  .mobile__inner {
    display: flex;
    justify-content: space-between;
  }
  .mobile--top {
    background: var(--lightest-blue);
    padding: 0 5%;
  }
  .mobile--top .mobile__inner {
    height: 3rem;
    align-items: center;
  }
  .mobile--top .text-link {
    font-size: 1.1rem;
  }
  .mobile__buttons {
    display: none;
  }
  .mobile__buttons .button {
    width: 160px;
    margin-left: 0.5rem;
  }
  .mobile--bottom {
    padding: 2rem 0;
    border-top: 1px solid var(--light-gray);
    margin-top: 10%;
  }
  .mobile__item {
    margin-bottom: 1rem;
  }
  .mobile__item:last-child {
    margin-bottom: 0;
  }
  .mobile__link {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--black);
    transition: color 0.5s ease;
  }
  .mobile__link:hover {
    color: var(--light-blue);
  }
  .mobile__social {
    display: flex;
  }
}

@media only screen and (max-width: 800px) {
  .mobile__item {
    margin-bottom: 0.8rem;
  }
  .mobile--top .text-link,
  .mobile__link {
    font-size: 1.05rem;
  }
}

@media only screen and (max-width: 600px) {
  .mobile--top {
    padding: 0 6%;
  }
  .mobile--bottom {
    padding: 1.5rem 0;
  }
}











/*------------------------------------*\
  #PAGE-NAVIGATION
\*------------------------------------*/





/*------------------------------------*\
  #BREADCRUMBS
\*------------------------------------*/


.breadcrumbs__list {
  display: flex;
  align-items: baseline;
}

.breadcrumbs__list li {
  position: relative;
  margin-left: 1.6em;
}
.breadcrumbs__list li::before {
  position: absolute;
  content: '/';
  font-size: 1em;
  font-weight: 700;
  line-height: 1.2;
  color: var(--light-blue);
  top: -0.05em;
  left: -1em;
  bottom: 0;
  margin: auto 0;
}
.breadcrumbs__list li:first-child {
  margin: 0;
}
.breadcrumbs__list li:first-child::before {
  display: none;
}

.breadcrumbs__list li a {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--gray);
  text-decoration: underline;
  transition: color 0.5s ease, text-decoration-color 0.5s ease;
}
.breadcrumbs__list li a:hover {
  color: var(--light-blue);
  text-decoration-color: var(--light-blue);
}

.header.dark-blue .breadcrumbs__list li a {
  color: #fff;
}
.header.dark-blue .breadcrumbs__list li a:hover {
  color: var(--lighter-blue);
  text-decoration-color: var(--lighter-blue);
}


@media only screen and (max-width: 1200px) {
  .breadcrumbs__list li {
    margin-left: 1.5em;
  }
  .breadcrumbs__list li::before {
    font-size: 0.95em;
    top: 0;
  }
  .breadcrumbs__list li a {
    font-size: 0.9rem;
  }
}

@media only screen and (max-width: 800px) {
  .breadcrumbs__list li {
    margin-left: 1.4em;
  }
  .breadcrumbs__list li::before {
    font-size: 0.9em;
  }
  .breadcrumbs__list li a {
    font-size: 0.85rem;
  }
}





/*------------------------------------*\
  #SIDENAV
\*------------------------------------*/


.sidenav {
  flex: 0 0 20em;
  margin-left: 10%;
}

.sidenav__header-link {
  display: block;
  font-size: 1.15em;
  font-weight: 600;
  color: #fff;
  background: var(--dark-blue);
  padding: 0.8rem 1.2rem;
  border-radius: 8px 8px 0 0;
  transition: background 0.5s ease;
}
.sidenav__header-link:hover {
  background: var(--light-blue);
}

.sidenav__list {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--light-gray);
  border-right: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}

.sidenav__link,
.sidenav__sub-link {
  position: relative;
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--black);
  transition: color 0.5s ease, background 0.5s ease;
}

.sidenav__link {
  padding: 1rem 1.2rem;
  border-top: 1px solid var(--light-gray);
}
.sidenav__item:first-child .sidenav__link {
  border-top: none;
}
.sidenav__link:hover {
  color: var(--light-blue);
  background: var(--lightest-gray);
}
.sidenav__list .item--active .sidenav__link {
  font-weight: 600;
  color: var(--dark-blue);
  background: var(--lightest-gray);
}
.sidenav__list .item--active .sidenav__link:hover {
  color: var(--light-blue);
}
.sidenav__list .item--sub.item--open .sidenav__link {
  background: var(--lightest-gray);
}
.sidenav__list .item--sub .sidenav__link {
  padding-right: 3rem;
}
.sidenav__list .item--sub .sidenav__link::after {
  position: absolute;
  content: '';
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 491.1 298.3" fill="%2300a0dd"><path d="M208.25 282.85 15.45 90.05c-20.6-20.6-20.6-54 0-74.6s54-20.6 74.6 0l155.5 155.5 155.5-155.5c20.6-20.6 54-20.6 74.6 0 20.6 20.6 20.6 54 0 74.6l-192.8 192.8c-20.6 20.6-54 20.6-74.6 0Z"/></svg>');
  background-size: 100% 100%;
  width: 0.7em;
  top: 0;
  right: 1.2rem;
  bottom: 0;
  margin: auto 0;
}
.sidenav__list .item--sub.item--open .sidenav__link::after {
  transform: rotate(180deg);
}
.sidenav__list .item--sub.item--open .sidenav__sub-list {
  display: block;
}

.sidenav__sub-list {
  display: none;
  padding: 0.6rem 0 0.8rem;
  border-top: 1px solid var(--light-gray);
}
.sidenav__sub-link {
  padding: 0 2rem;
  margin: 0.7rem 0;
}
.sidenav__sub-link:hover {
  color: var(--light-blue);
}
.sub-item--active .sidenav__sub-link {
  font-weight: 600;
  color: var(--dark-blue);
}

.sidenav .text-link {
  text-decoration: underline;
  margin: 1.2rem 1.2rem 0;
}

.js-sidenav .item--active {
  display: block;
  order: -1;
}
.js-sidenav .item--active .sidenav__link {
  border-top: none;
  border-bottom: 1px solid var(--light-gray);
}
.js-sidenav .item--sub.item--active .sidenav__sub-list {
  border-bottom: 1px solid var(--light-gray);
}
.js-sidenav .item--active:first-child .sidenav__link,
.js-sidenav .item--sub.item--active .sidenav__link,
.js-sidenav .item--sub.item--active:first-child .sidenav__sub-list {
  border-bottom: none;
}

.item--hide,
.js-sidenav-open.item--hide {
  display: none;
}


@media only screen and (max-width: 1500px) {
  .sidenav {
    margin-left: 8%;
  }
}

@media only screen and (max-width: 1300px) {
  .sidenav {
    flex: 0 0 18em;
    margin-left: 6%;
  }
}

@media only screen and (max-width: 1200px) {
  .sidenav {
    flex: 0 0 17em;
  }
  .sidenav__header-link {
    font-size: 1.1em;
    padding: 0.8rem 1.1rem;
  }
  .sidenav__link,
  .sidenav__sub-link {
    font-size: 1rem;
  }
  .sidenav__link {
    padding: 0.9rem 1.1rem;
  }
  .sidenav__list .item--sub .sidenav__link::after {
    right: 1.1rem;
  }
  .sidenav__sub-list {
    padding: 0.7rem 0 0.8rem;
  }
  .sidenav__sub-link {
    padding: 0 1.8rem;
    margin: 0.5rem 0;
  }
}

@media only screen and (max-width: 1000px) {
  .sidenav .text-link {
    display: none;
  }
  .sidenav {
    flex: 0 0 100%;
    width: 100%;
    background: var(--lightest-gray);
    margin: 0 0 2.5rem;
    border-radius: 8px;
  }
  .sidenav__header-link {
    padding: 0.8rem 2rem;
  }
  .sidenav__list {
    display: block;
    column-count: 2;
    column-gap: 2rem;
    padding: 1.5rem 2rem 1rem;
    border: none;
    border-radius: 0;
    overflow: hidden;
  }
  .sidenav__link {
    display: inline-block;
    text-decoration: underline;
    padding: 0;
    border-top: none;
    margin: 0 0 1rem;
  }
  .sidenav__item:first-child .sidenav__link {
    border-top: none;
  }
  .sidenav__link:hover,
  .sidenav__list .item--active .sidenav__link,
  .sidenav__list .item--sub.item--open .sidenav__link {
    background: none;
  }
  .sidenav__list .item--sub .sidenav__link {
    padding: 0;
  }
  .sidenav__list .item--sub .sidenav__link::after {
    display: none;
  }
  .sidenav__sub-list {
    padding: 0;
    border-top: none;
  }
  .js-sidenav .item--sub.item--active .sidenav__sub-list {
    border-bottom: none;
  }
  .sidenav__sub-link {
    display: inline-block;
    color: var(--gray);
    padding: 0 0 0 1rem;
    margin: 0 0 0.2rem;
  }
  .sidenav__sub-item:last-child .sidenav__sub-link {
    margin: 0 0 1rem;
  }
  .page-content--sidenav .sidenav {
    background: #fff;
    border-radius: 0;
    margin: 0;
  }
  .page-content--sidenav .sidenav__list {
    column-count: 1;
    padding: 0;
    border: none;
    border-radius: 0;
  }
  .page-content--sidenav .sidenav__header,
  .page-content--sidenav .sidenav__item,
  .page-content--sidenav .sidenav__item .sidenav__link {
    display: none;
  }
  .page-content--sidenav .sidenav__item.item--open {
    display: block;
  }
  .page-content--sidenav .sidenav__list .item--sub.item--open .sidenav__sub-list {
    display: block;
    column-count: 2;
    column-gap: 0.8rem;
    padding: 0.8rem 0 0;
    border: none;
    margin: 0 0 2.5rem;
  }
  .page-content--sidenav .sidenav__sub-link {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--black);
    border: 1px solid var(--light-gray);
    text-align: left;
    padding: 0.7rem 3rem 0.8rem 1rem;
    border-radius: 8px;
    margin: 0 0 0.8rem;
    transition: border 0.5s ease, color 0.5s ease;
  }
  .page-content--sidenav .sidenav__sub-link::after {
    position: absolute;
    content: '';
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 491.1 298.3" fill="%2300a0dd"><path d="M208.25 282.85 15.45 90.05c-20.6-20.6-20.6-54 0-74.6s54-20.6 74.6 0l155.5 155.5 155.5-155.5c20.6-20.6 54-20.6 74.6 0 20.6 20.6 20.6 54 0 74.6l-192.8 192.8c-20.6 20.6-54 20.6-74.6 0Z"/></svg>');
    background-size: 100% 100%;
    width: 0.7em;
    top: 0;
    right: 1rem;
    bottom: 0;
    margin: auto 0;
    transform: rotate(-90deg);
  }
  .page-content--sidenav .sidenav__sub-link:hover {
    color: var(--light-blue);
    border-color: var(--light-blue);
  }
  .page-content--sidenav .sub-item--active .sidenav__sub-link {
    font-weight: 600;
    color: #fff;
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    cursor: default;
  }
  .page-content--sidenav .sub-item--active .sidenav__sub-link::after {
    display: none;
  }
}

@media only screen and (max-width: 800px) {
  .sidenav__header-link {
    font-size: 1.05em;
  }
  .sidenav__list {
    padding: 1.5rem 2rem 1.2rem;
  }
  .sidenav__link,
  .sidenav__sub-link {
    font-size: 0.95rem;
  }
  .sidenav__link {
    margin: 0 0 0.8rem;
  }
  .sidenav__sub-item:last-child .sidenav__sub-link {
    margin: 0 0 0.8rem;
  }
  .page-content--sidenav .sidenav__sub-link {
    font-size: 0.95rem;
  }
}

@media only screen and (max-width: 600px) {
  .sidenav__header-link {
    padding: 0.8rem 1.5rem;
  }
  .sidenav__list {
    column-count: 1;
    padding: 1rem 1.5rem;
  }
  .sidenav__link {
    margin: 0 0 0.6rem;
  }
  .sidenav__sub-item:last-child .sidenav__sub-link {
    margin: 0 0 0.6rem;
  }
  .page-content--sidenav .sidenav__list .item--sub.item--open .sidenav__sub-list {
    column-count: 1;
    padding: 0.7rem 0 0;
  }
  .page-content--sidenav .sidenav__sub-link {
    margin: 0 0 0.7rem;
  }
  .page-content--sidenav .sidenav__sub-item:last-child .sidenav__sub-link {
    margin: 0;
  }
}





/*------------------------------------*\
  #SUBNAV
\*------------------------------------*/


.subnav {
  position: relative;
  margin: 0;
}
.subnav::before,
.subnav::after {
  position: absolute;
  content: '';
}
.subnav::before {
  width: 100%;
  height: 1px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--light-gray);
  z-index: 99;
}
.subnav::after {
  width: 1.8em;
  height: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(to right, rgba(255,255,255, 0), rgba(255,255,255, 1));
  z-index: 999;
}

.subnav__nav {
  position: relative;
  padding-top: 1rem;
  overflow-y: auto;
}

.subnav__list {
  display: flex;
}

.subnav__item {
  position: relative;
  margin-right: 1.8rem;
}
.subnav__item:last-child {
  padding-right: 1.8rem;
}

.subnav__link {
  position: relative;
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--black);
  white-space: nowrap;
  padding: 0 0 1rem;
  transition: color 0.5s ease;
}
.subnav__link:hover {
  color: var(--light-blue);
}

.subnav__list .item--active .subnav__link {
  font-weight: 600;
  color: var(--dark-blue);
}
.subnav__list .item--active .subnav__link::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 4px;
  left: 0;
  bottom: 0;
  background: var(--orange);
  z-index: 9999;
}

.subnav + .copy {
  margin-top: 3em;
}


@media only screen and (max-width: 1200px) {
  .subnav__link {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 800px) {
  .subnav__link {
    font-size: 0.95rem;
  }
}











/*------------------------------------*\
  #GLOBAL
\*------------------------------------*/





/*------------------------------------*\
  #COLORS
\*------------------------------------*/


:root {
  --lightest-gray: #f7f7f7;
  --light-gray: #dbdbdb;
  --gray: #4a4a4a;
  --black: #1d1d1d;

  --lightest-blue: #ebf6ff;
  --lighter-blue: #ccfeff;
  --light-blue: #00a0dd;
  --light-blue-hover: #0082ce;
  --dark-blue: #003764;

  --lightest-green: #f1faee;
  --light-green: #6cc04a;
  --dark-green: #026937;

  --lightest-orange: #fff1e6;
  --orange: #e24301;

  --lightest-teal: #d8f2f3;
  --teal: #008b9a;

  --lightest-purple: #fcf2ff;
  --purple: #928df3;

  --portland-blue: #7d9cc0;
  --portland-yellow: #ffc72c;
  --portland-green: #64a70b;
  --portland-gray: #545859;
}





/*------------------------------------*\
  #BACKGROUNDS
\*------------------------------------*/


.lightest-gray {
  background: var(--lightest-gray);
}
.lightest-blue {
  background: var(--lightest-blue);
}
.light-blue {
  background: var(--light-blue);
}
.dark-blue {
  background: var(--dark-blue);
}





/*------------------------------------*\
  #LAYOUT
\*------------------------------------*/


html {
  scroll-behavior: smooth;
}

.container {
  position: relative;
  width: 90%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

section {
  margin: 6rem 0;
}

.page-content__wrap {
  display: flex;
  flex-direction: row-reverse;
  width: 90%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6rem;
}
.header + .page-content__wrap {
  margin-top: 4rem;
}

.page-content__inner {
  flex: 1;
  overflow: hidden;
}

.page-content__inner section .container {
  width: 100%;
  max-width: 100%;
}
.page-content__inner section {
  margin: 3rem 0;
}
.page-content__inner section:first-child {
  margin-top: 0;
}
.page-content__inner section:last-child {
  margin-bottom: 0;
}
.page-content__inner section .container > div {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}


@media only screen and (max-width: 1200px) {
  section {
    margin: 5rem 0;
  }
  .page-content__wrap {
    margin-bottom: 5rem;
  }
  .header + .page-content__wrap {
    margin-top: 3rem;
  }
  .page-content__inner section {
    margin: 2.5rem 0;
  }
}

@media only screen and (max-width: 1000px) {
  section {
    margin: 4rem 0;
  }
  .page-content__wrap {
    display: block;
    margin-bottom: 4rem;
  }
  .header + .page-content__wrap {
    margin-top: 2.5rem;
  }
  .page-content__inner section {
    margin: 2rem 0;
  }
}

@media only screen and (max-width: 800px) {
  section {
    margin: 3rem 0;
  }
}

@media only screen and (max-width: 600px) {
  .container,
  .page-content__wrap {
    width: 88%;
  }
}





/*------------------------------------*\
  #TYPE
\*------------------------------------*/


/*
font-family: 'Foundry Sterling W01', Arial, sans-serif;
font-weight: 300;
font-weight: 400;
font-weight: 500;
font-weight: 600;
font-weight: 700;
*/

:root {
  --small: 0.95rem;
  --medium: 1.05rem;
  --large: 1.15rem;
}

html {
  font-size: 100%;
}

body {
  font-family: 'Foundry Sterling W01', Arial, sans-serif;
  font-weight: 400;
  color: var(--gray);
}

b, strong {
  font-weight: 600;
}

.page h1,
.page h2,
.page h3,
.page h4,
.page h5 {
  color: var(--dark-blue);
}
.page h3,
.page h4,
.page h5,
.page h6 {
  line-height: 1.4;
}

.page h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
}
.page h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}
.page h3 {
  font-size: 1.5rem;
  font-weight: 500;
}
.page h4 {
  font-size: 1.4rem;
  font-weight: 400;
}
.page h5 {
  font-size: 1.3rem;
  font-weight: 600;
}
.page h6 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--light-blue);
}

.page p,
.copy li {
  font-size: 1.15rem;
  line-height: 1.7;
}
.copy li {
  position: relative;
  padding-left: 1.5rem;
  margin: 0.3rem 0;
}
.copy li::before {
  position: absolute;
  content: '\2022';
  top: 0;
  left: 0;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.7;
  color: var(--dark-blue);
}
.copy li ul li::before {
  content: '\26AC';
  font-size: 1.05rem;
}
.copy ol {
  counter-reset: numbers;
}
.copy ol li {
  padding-left: 2.5rem;
}
.copy ol li::before {
  display: inline-block;
  content: counter(numbers, decimal) '.';
  counter-increment: numbers;
  width: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.05rem;
  text-align: right;
}
.page p a,
.copy li a {
  font-weight: 600;
  color: var(--light-blue);
  text-decoration: underline;
  transition: color 0.5s ease;
}
.copy p a:hover,
.copy li a:hover {
  color: var(--light-blue-hover);
}


@media only screen and (max-width: 1200px) {
  .page h1 {
    font-size: 2.8rem;
  }
  .page h2 {
    font-size: 1.8rem;
  }
  .page h3 {
    font-size: 1.45rem;
  }
  .page h4 {
    font-size: 1.35rem;
  }
  .page h5,
  .page h6 {
    font-size: 1.25rem;
  }
  .page p,
  .copy li,
  .copy li::before {
    font-size: 1.1rem;
  }
  .copy li ul li::before {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 800px) {
  .page h1 {
    font-size: 2.5rem;
  }
  .page h2 {
    font-size: 1.7rem;
  }
  .page h3 {
    font-size: 1.4rem;
  }
  .page h4 {
    font-size: 1.3rem;
  }
  .page h5,
  .page h6 {
    font-size: 1.2rem;
  }
  .page p,
  .copy li,
  .copy li::before {
    font-size: 1.05rem;
    line-height: 1.65;
  }
  .copy li {
    padding-left: 1.2rem;
  }
  .copy li ul li::before {
    font-size: 0.95rem;
  }
  .copy ol li {
    padding-left: 2.2rem;
  }
  .copy ol li::before {
    width: 1.2rem;
  }
}

@media only screen and (max-width: 600px) {
  .page h1 {
    font-size: 2.2rem;
  }
  /*
  .page h2 {
    font-size: 1.6rem;
  }
  .page h3 {
    font-size: 1.35rem;
  }
  .page h4 {
    font-size: 1.25rem;
  }
  .page h5,
  .page h6 {
    font-size: 1.15rem;
  }
  .page p,
  .copy li,
  .copy li::before {
    font-size: 1rem;
    line-height: 1.6;
  }
  .copy li ul li::before {
    font-size: 0.9rem;
  }
  */
}











/*------------------------------------*\
  #COPY
\*------------------------------------*/





/*------------------------------------*\
  #COPY-SETUP
\*------------------------------------*/


.copy h2 {
  margin: 3rem 0 1rem;
}
.copy h3,
.copy h4,
.copy h5,
.copy h6 {
  margin: 2rem 0 1rem;
}
.copy p,
.copy ul,
.copy ol {
  margin-bottom: 1rem;
}

.copy h2:first-child,
.copy h3:first-child,
.copy h4:first-child,
.copy h5:first-child,
.copy h6:first-child,
.copy figure:first-child,
.copy .embed-responsive:first-child,
.copy .embed-map:first-child {
  margin-top: 0;
}

.copy h2 + h3,
.copy h2 + h4 {
  margin-top: 0;
}

.copy .copy__inner > :last-child {
  margin-bottom: 0;
}


@media only screen and (max-width: 1200px) {
  .copy h2 {
    margin: 2.5rem 0 1rem;
  }
  .copy h3,
  .copy h4,
  .copy h5,
  .copy h6 {
    margin: 1.5rem 0 1rem;
  }
}

@media only screen and (max-width: 1000px) {
  .copy h2 {
    margin: 2rem 0 1rem;
  }
}





/*------------------------------------*\
  #COPY-ADDS
\*------------------------------------*/


.copy .two-column {
  column-count: 2;
}
.copy .three-column {
  column-count: 3;
}
.copy .two-column li,
.copy .three-column li {
  display: inline-block;
  width: 100%;
}

.copy .bigger {
  font-size: 1.4rem;
  margin-bottom: 3rem;
}

.copy .disclaimer {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.5;
}

.copy .button {
  margin: 1rem 1rem 0 0;
}
.copy .button:last-of-type {
  margin-right: 0;
  margin-bottom: 1rem;
}

.copy p .button {
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: background 0.5s ease, color 0.5s ease, border 0.5s ease;
}
.copy p .button:hover {
  color: #fff;
}

.copy--site-map h2 a {
  text-decoration: underline;
  transition: color 0.5s ease;
}
.copy--site-map h2 a:hover {
  color: var(--light-blue);
}
.copy--site-map ul {
  margin: 0;
}

.copy.copy--two-column .copy__inner {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
}
.copy--two-column .copy__column {
  width: 45%;
}


@media only screen and (max-width: 1500px) {
  .copy--two-column .copy__column {
    width: 47%;
  }
}

@media only screen and (max-width: 1200px) {
  .copy .three-column {
    column-count: 2;
  }
  .copy .disclaimer {
    font-size: 0.9rem;
  }
}

@media only screen and (max-width: 1000px) {
  .copy.copy--two-column .copy__inner {
    display: block;
  }
  .copy--two-column .copy__column {
    width: 100%;
  }
  .copy--two-column .copy__column:last-child {
    margin-top: 2rem;
  }
}

@media only screen and (max-width: 800px) {
  .copy .two-column,
  .copy .three-column {
    column-count: 1;
  }
  .copy .disclaimer {
    font-size: 0.85rem;
  }
}

@media only screen and (max-width: 600px) {
  .copy .button {
    margin: 0.5rem 0.5rem 0 0;
  }
}





/*------------------------------------*\
  #COPY-CALLOUTS
\*------------------------------------*/


.copy .callout {
  font-weight: 500;
  color: var(--dark-blue);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  margin: 3rem 0;
}

.copy .callout--light-green {
  background: var(--lightest-green);
  border-left: 10px solid var(--light-green);
}
.copy .callout--light-blue {
  background: var(--lightest-blue);
  border-left: 10px solid var(--light-blue);
}
.copy .callout--orange {
  background: var(--lightest-orange);
  border-left: 10px solid var(--orange);
}


@media only screen and (max-width: 1200px) {
  .copy .callout {
    margin: 2.5rem 0;
  }
}

@media only screen and (max-width: 1000px) {
 .copy .callout {
    margin: 2rem 0;
  }
}

@media only screen and (max-width: 800px) {
 .copy .callout {
    padding: 1.4rem 1.8rem;
  }
}

@media only screen and (max-width: 600px) {
  .copy .callout {
    padding: 1.2rem 1.4rem;
  }
  .copy .callout--light-green {
    border-left: 8px solid var(--light-green);
  }
  .copy .callout--light-blue {
    border-left: 8px solid var(--light-blue);
  }
  .copy .callout--orange {
    border-left: 8px solid var(--orange);
  }
}





/*------------------------------------*\
  #COPY-IMAGES/VIDEOS
\*------------------------------------*/


.copy::after {
  display: block;
  content: '';
  clear: both;
}

.copy figure {
  width: 100%;
  margin: 3rem 0;
}
.copy figure img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.copy .float-left {
  float: left;
  max-width: 40%;
  margin: 1rem 2rem 1rem 0;
}
.copy .float-right {
  float: right;
  max-width: 40%;
  margin: 1rem 0 1rem 2rem;
}
.copy .align-center {
  background: var(--lightest-gray);
  border-radius: 8px;
}
.copy .align-center img {
  width: 60%;
  border-radius: 0;
  margin: 0 auto;
}

.copy .small {
  max-width: 200px;
}
.copy .medium {
  max-width: 400px;
}
.copy .large {
  max-width: 600px;
}

.copy .small + h2,
.copy .medium + h2 {
  margin-top: -1rem;
}

.copy--profile .copy__image {
  position: relative;
  float: left;
  width: 30%;
  height: 100%;
  padding-bottom: 35%;
  border-radius: 8px;
  overflow: hidden;
  margin: 0.5rem 2rem 1rem 0;
}
.copy--profile .copy__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.embed-responsive,
.embed-map {
  position: relative;
  padding-bottom: 56.25%;
  margin: 3rem 0;
}
.embed-map {
  padding-bottom: 40%;
}
.embed-responsive iframe,
.embed-map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 8px;
}


@media only screen and (max-width: 1200px) {
  .embed-responsive,
  .embed-map,
  .copy figure {
    margin: 2.5rem 0;
  }
  .copy .small + h2,
  .copy .medium + h2 {
    margin-top: -0.5rem;
  }
}

@media only screen and (max-width: 1000px) {
  .embed-responsive,
  .embed-map,
  .copy figure {
    margin: 2rem 0;
  }
}

@media only screen and (max-width: 600px) {
  .copy .float-left,
  .copy .float-right {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
  .copy .align-center img {
    width: 100%;
    border-radius: 8px;
  }
  .copy .medium,
  .copy .large {
    max-width: 100%;
  }
  .copy--profile .copy__image {
    padding-bottom: 40%;
  }
}





/*------------------------------------*\
  #COPY-TABLES
\*------------------------------------*/


.copy table {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  margin: 2rem 0;
}

.copy table thead {
  background: var(--lightest-gray);
}

.copy table th,
.copy table td {
  font-size: 1rem;
  line-height: 1.2;
  color: var(--gray);
  text-align: left;
  padding: 0.8rem 1rem;
  border-right: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}
.copy table th:last-child,
.copy table td:last-child {
  border-right: none;
}

.copy table th {
  font-weight: 600;
}
.copy table th:first-child {
  border-radius: 8px 0 0 0;
}
.copy table th:last-child {
  border-radius: 0 8px 0 0;
}

.copy table tr:last-child td {
  border-bottom: none;
}
.copy table tr:last-child td:first-child {
  border-radius: 0 0 0 8px;
}
.copy table tr:last-child td:last-child {
  border-radius: 0 0 8px 0;
}


@media only screen and (max-width: 1200px) {
  .copy table {
    margin: 2rem 0;
  }
  .copy table th,
  .copy table td {
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
  }
}

@media only screen and (max-width: 800px) {
  .copy table th,
  .copy table td {
    font-size: 0.9rem;
  }
}

@media only screen and (max-width: 600px) {
  .copy table th,
  .copy table td {
    padding: 0.6rem 0.8rem;
  }
}











/*------------------------------------*\
  #COMMON
\*------------------------------------*/





/*------------------------------------*\
  #BUTTONS
\*------------------------------------*/


.button {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 0.6rem 1.6rem 0.7rem;
  background: var(--light-blue);
  border: 1px solid var(--light-blue);
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.5s ease, color 0.5s ease, border 0.5s ease;
}
.button:hover {
  background: var(--light-blue-hover);
  border-color: var(--light-blue-hover);
}

.button--outline {
  color: var(--light-blue);
  background: transparent;
  border: 1px solid var(--light-blue);
}
.button--outline:hover {
  color: var(--light-blue-hover);
  background: transparent;
  border-color: var(--light-blue-hover);
}

.button--icon {
  display: inline-flex;
  align-items: center;
}
.button--icon svg {
  width: 1em;
  fill: #fff;
  margin: 0.2em 0 0 0.4em;
  transition: fill 0.5s ease;
}
.button--outline.button--icon svg {
  fill: var(--light-blue);
  margin: 0.2em 0.4em 0 0;
}
.button--outline.button--icon:hover svg {
  fill: var(--light-blue-hover);
}


@media only screen and (max-width: 1200px) {
  .button {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 800px) {
  .button {
    font-size: 0.95rem;
  }
}




/*------------------------------------*\
  #TEXT-LINKS
\*------------------------------------*/


.text-link {
  display: flex;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--light-blue);
  cursor: pointer;
  transition: color 0.5s ease;
}
.text-link svg {
  flex: 0 0 1em;
  width: 1em;
  fill: var(--light-blue);
  margin: 0.2em 0 0 0.4em;
  transition: fill 0.5s ease;
}
.text-link:hover {
  color: var(--light-blue-hover);
}
.text-link:hover svg {
  fill: var(--light-blue-hover);
}

.text-link--back svg {
  margin: 0.2em 0.4em 0 0;
}


@media only screen and (max-width: 1200px) {
  .text-link {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 800px) {
  .text-link {
    font-size: 0.95rem;
  }
}





/*------------------------------------*\
  #TAGS
\*------------------------------------*/


.tags {
  margin: 0;
}

.tags__inner {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}

.tag-label,
.tag {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
  color: var(--dark-blue);
}
.tag-label {
  font-weight: 700;
  margin-right: 1rem;
}
.tag {
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark-blue);
  background: var(--lightest-blue);
  border-radius: 25px;
  padding: 0.3rem 1.2rem 0.4rem;
  margin: 0 0.5rem 0.5rem 0;
  transition: background 0.5s ease, color 0.5s ease;
}
.tag:hover {
  color: #fff;
  background: var(--light-blue);
}


@media only screen and (max-width: 1200px) {
  .tag-label,
  .tag {
    font-size: 0.9rem;
  }
}

@media only screen and (max-width: 800px) {
  .tag-label,
  .tag {
    font-size: 0.85rem;
  }
  .tag {
    padding: 0.3rem 1rem 0.4rem;
  }
}





/*------------------------------------*\
  #NOTIFICATION
\*------------------------------------*/


.notification {
  position: relative;
  background: var(--lightest-blue);
}

.notification + .notification {
  border-top: 1px solid #fff;
}

.notification__inner {
  display: flex;
  align-items: flex-start;
  padding: 0.6rem 0;
}

.notification__icon {
  flex: 0 0 1em;
  margin-right: 0.5em;
  overflow: visible;
}
.notification__icon svg {
  width: 1em;
  height: 1em;
  fill: var(--light-blue);
}

.notification__content {
  padding-right: 2rem;
}
.notification__content p {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--dark-blue);
  margin: 0;
}
.notification__content p a:hover {
  color: var(--light-blue-hover);
}

.notification__close {
  position: relative;
  width: 18px;
  height: 100%;
  margin: auto 0.8em auto auto;
  cursor: pointer;
}
.notification__close::before,
.notification__close::after {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  background: var(--light-blue);
  border-radius: 3px;
  margin: auto 0;
  transform: rotate(45deg);
  transition: background 0.5s ease;
}
.notification__close::before {
  width: 15px;
  height: 3px;
}
.notification__close::after {
  width: 3px;
  height: 15px;
  right: 6px;
}
.notification__close:hover::before,
.notification__close:hover::after {
  background: var(--light-blue-hover);
}

.notification--alert {
  background: var(--lightest-orange);
}
.notification--alert .notification__icon svg {
  fill: var(--orange);
}
.notification--alert .notification__content p {
  color: var(--black);
}
.notification--alert .notification__content p a {
  color: var(--orange);
}
.notification--alert .notification__content p a:hover {
  color: #c73a00;
}
.notification--alert .notification__close::before,
.notification--alert .notification__close::after {
  background: var(--orange);
}
.notification--alert .notification__close:hover::before,
.notification--alert .notification__close:hover::after {
  background: #c73a00;
}


@media only screen and (max-width: 1200px) {
  .notification__icon {
    flex: 0 0 0.95em;
    margin: -0.05em 0.5em 0 0;
  }
  .notification__icon svg {
    width: 0.95em;
    height: 0.95em;
  }
  .notification__content p {
    font-size: 0.9rem;
  }
}

@media only screen and (max-width: 1000px) {
  .notification__close {
    margin: auto 0 auto auto;
  }
}

@media only screen and (max-width: 600px) {
  .notification__icon {
    margin: -0.05em 0.4em 0 0;
  }
  .notification__content {
    padding-right: 1rem;
  }
}











/*------------------------------------*\
  #FORM
\*------------------------------------*/





/*------------------------------------*\
  #FORM-INPUTS
\*------------------------------------*/


.control__label,
.ah-form label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.control__input,
.control__select select,
.search__input,
.ah-form input,
.ah-form select {
  display: block;
  width: 100%;
  font-family: 'Foundry Sterling W01', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
  background: #fff;
  padding: 0.6rem 0.8rem 0.7rem;
  border: 1px solid var(--light-blue);
  border-radius: 8px;
  transition: border-color 0.5s ease;
}
textarea.control__input {
  resize: vertical;
}
.control__input:focus,
.control__select select:focus,
.search__input:focus,
.ah-form input:focus,
.ah-form select:focus {
  outline: none;
  border-color: var(--orange);
}

.control__select {
  position: relative;
  width: 100%;
}
.control__select::after {
  position: absolute;
  content: '';
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 491.1 298.3" fill="%2300a0dd"><path d="M208.25 282.85 15.45 90.05c-20.6-20.6-20.6-54 0-74.6s54-20.6 74.6 0l155.5 155.5 155.5-155.5c20.6-20.6 54-20.6 74.6 0 20.6 20.6 20.6 54 0 74.6l-192.8 192.8c-20.6 20.6-54 20.6-74.6 0Z"/></svg>');
  background-size: 100% 100%;
  width: 0.7em;
  top: 0;
  right: 0.8rem;
  bottom: 0;
  margin: auto 0;
  pointer-events: none;
}
.control__select select {
  height: 100%;
  padding-right: 2rem;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.search__input::-webkit-search-cancel-button {
  height: 0.7em;
  width: 0.7em;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 365.696 365.696" fill="%234f4f4f"><path d="M243.188 182.859L356.32 69.727c12.5-12.5 12.5-32.766 0-45.246L341.238 9.398c-12.504-12.504-32.77-12.504-45.25 0L182.859 122.527 69.727 9.375c-12.5-12.5-32.766-12.5-45.246 0L9.375 24.457c-12.5 12.504-12.5 32.77 0 45.25l113.152 113.152L9.398 295.988c-12.504 12.504-12.504 32.77 0 45.25L24.48 356.32c12.5 12.5 32.766 12.5 45.246 0l113.133-113.133L295.988 356.32c12.504 12.5 32.77 12.5 45.25 0l15.082-15.082c12.5-12.504 12.5-32.77 0-45.25zm0 0"/></svg>') no-repeat 50% 50%;
  background-size: contain;
  opacity: 0;
  margin-top: 0.1em;
  cursor: pointer;
  pointer-events: none;
  transition: opacity 0.5s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.search__input:focus::-webkit-search-cancel-button {
  opacity: 0.5;
  pointer-events: all;
}
.search__input::-webkit-search-cancel-button:hover {
  opacity: 1;
}

.form__block input[type=submit],
.ah-form input[type=submit] {
  display: block;
  width: 100%;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  background: var(--light-blue);
  padding: 0.6rem 1.8rem 0.7rem;
  border: 1px solid var(--light-blue);
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.5s ease, color 0.5s ease, border 0.5s ease;
}
.form__block input[type=submit]:hover,
.ah-form input[type=submit]:hover {
  background: var(--light-blue-hover);
  border-color: var(--light-blue-hover);
}


@media only screen and (max-width: 1200px) {
  .control__label,
  .ah-form label {
    font-size: 0.9rem;
  }
  .control__input,
  .control__select select,
  .search__input,
  .ah-form input,
  .ah-form select,
  .form__block input[type=submit],
  .ah-form input[type=submit] {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 800px) {
  .control__label,
  .ah-form label {
    font-size: 0.85rem;
  }
  .control__input,
  .control__select select,
  .search__input,
  .ah-form input,
  .ah-form select,
  .form__block input[type=submit],
  .ah-form input[type=submit] {
    font-size: 0.95rem;
  }
  .ah-form input[type=date] {
    height: 43px;
  }
}





/*------------------------------------*\
  #FORM-PLACEHOLDERS
\*------------------------------------*/


::placeholder { 
  color: var(--black);
}
:-ms-input-placeholder { 
  color: var(--black);
}
::-webkit-input-placeholder {
  color: var(--black);
}





/*------------------------------------*\
  #FORM-MODULE
\*------------------------------------*/


.form.lightest-gray,
.form.lightest-blue,
.form.dark-blue {
  padding: 6rem 0;
  margin: 0;
}

.form.dark-blue h2,
.form.dark-blue p,
.form.dark-blue a {
  color: #fff;
}

.form__inner {
  display: flex;
  justify-content: space-between;
}

.form__content,
.form__block {
  width: 40%;
}

.form__content h6 {
  margin-bottom: 0.5rem;
}
.form__content h2:first-of-type {
  margin-top: 0;
}
.form__content p:last-child {
  margin-bottom: 0;
}

.form__block {
  background: #fff;
  padding: 3rem;
  border-radius: 8px;
}

.form__block .control,
.ah-form input,
.ah-form select {
  margin-bottom: 1.2rem;
}
.form__block .control--submit,
.ah-form input[type=submit] {
  margin: 2rem 0 0;
}

.form--container.lightest-blue,
.form--container.lightest-gray,
.form--container.dark-blue {
  background: none;
  padding: 0;
  margin: 6rem 0;
}

.form--container.lightest-blue .form__inner,
.form--container.lightest-gray .form__inner,
.form--container.dark-blue .form__inner {
  background: none;
  padding: 8%;
  border-radius: 8px;
}
.form--container.lightest-blue .form__inner {
  background: var(--lightest-blue);
}
.form--container.lightest-gray .form__inner {
  background: var(--lightest-gray);
}
.form--container.dark-blue .form__inner {
  background: var(--dark-blue);
}

.form--container .form__content,
.form--container .form__block {
  width: 45%;
}

.page-content__inner .form__inner {
  display: block;
}
.page-content__inner .form__content,
.page-content__inner .form__block {
  width: 100%;
}
.page-content__inner .form__content {
  margin-bottom: 3rem;
}
.page-content__inner .form__content  > :last-child {
  margin-bottom: 0;
}
.page-content__inner .form__block {
  max-width: 600px;
  background: var(--lightest-blue);
}


@media only screen and (max-width: 1500px) {
  .form--container.lightest-blue .form__inner,
  .form--container.lightest-gray .form__inner,
  .form--container.dark-blue .form__inner {
    padding: 6%;
  }
  .form__content,
  .form__block {
    width: 45%;
  }
}

@media only screen and (max-width: 1200px) {
  .form.lightest-gray,
  .form.lightest-blue,
  .form.dark-blue {
    padding: 5rem 0;
  }
  .form--container.lightest-blue,
  .form--container.lightest-gray,
  .form--container.dark-blue {
    padding: 0;
    margin: 5rem 0;
  }
  .form--container .form__content,
  .form--container .form__block {
    width: 47%;
  }
  .page-content__inner .form__content {
    margin-bottom: 2.5rem;
  }
}

@media only screen and (max-width: 1000px) {
  .form.lightest-gray,
  .form.lightest-blue,
  .form.dark-blue {
    padding: 4rem 0;
  }
  .form__inner {
    display: block;
  }
  .form__content,
  .form__block {
    width: 100%;
  }
  .form__content {
    margin-bottom: 3.5rem;
  }
  .form__block {
    max-width: 500px;
    margin: 0 auto;
  }
  .form--container.lightest-blue,
  .form--container.lightest-gray,
  .form--container.dark-blue {
    padding: 0;
    margin: 4rem 0;
  }
  .form--container .form__content,
  .form--container .form__block {
    width: 100%;
  }
  .page-content__inner .form__content h2 {
    padding: 0 0 1rem;
    border-bottom: 1px solid var(--light-gray);
  }
  .page-content__inner .form__block {
    margin: 0;
  }
}

@media only screen and (max-width: 800px) {
  .form.lightest-gray,
  .form.lightest-blue,
  .form.dark-blue {
    padding: 3rem 0;
  }
  .form__content {
    margin-bottom: 2.5rem;
  }
  .form--container.lightest-blue,
  .form--container.lightest-gray,
  .form--container.dark-blue {
    padding: 0;
    margin: 3rem 0;
  }
  .control__label,
  .ah-form label {
    font-size: 0.85rem;
  }
  .control__input,
  .control__select select,
  .search__input,
  .ah-form input,
  .ah-form select {
    font-size: 0.95rem;
  }
  .page-content__inner .form__content h2 {
    padding: 0 0 0.8rem;
  }
}

@media only screen and (max-width: 600px) {
  .form--container .container {
    width: 100%;
  }
  .form--container.lightest-blue,
  .form--container.lightest-gray,
  .form--container.dark-blue {
    margin: 0;
  }
  .form--container.lightest-blue .form__inner,
  .form--container.lightest-gray .form__inner,
  .form--container.dark-blue .form__inner {
    padding: 3rem 6%;
    border-radius: 0;
  }
  .form__block {
    padding: 2rem;
  }
  .form__block .control,
  .ah-form input,
  .ah-form select {
    margin-bottom: 1rem;
  }
  .form__block .control--submit,
  .ah-form input[type=submit] {
    margin: 1.5rem 0 0;
  }
}





/*------------------------------------*\
  #FORM-AH
\*------------------------------------*/


.ah-form select {
  padding-right: 2rem;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 491.1 298.3" fill="%2300a0dd"><path d="M208.25 282.85 15.45 90.05c-20.6-20.6-20.6-54 0-74.6s54-20.6 74.6 0l155.5 155.5 155.5-155.5c20.6-20.6 54-20.6 74.6 0 20.6 20.6 20.6 54 0 74.6l-192.8 192.8c-20.6 20.6-54 20.6-74.6 0Z"/></svg>');
  background-repeat: no-repeat no-repeat;
  background-position: right 0.8rem top 50%, 0 0;
  background-size: 0.7em auto, 100%;
  cursor: pointer;
}

.ah-submit {
  position: relative;
}
.ah-submit--loading::after {
  position: absolute;
  display: block;
  content: '';
  width: 1.5em;
  height: 1.5em;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 4px solid transparent;
  border-right-color: #fff;
  border-radius: 50%;
  margin: auto;
  opacity: 0;
  animation: button-animate 0.8s linear infinite;
}
.ah-submit.ah-submit--loading::after {
  opacity: 1;
}
.ah-submit--loading input[type=submit] {
  color: transparent;
}

@keyframes button-animate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}











/*------------------------------------*\
  #SEARCH
\*------------------------------------*/





/*------------------------------------*\
  #SEARCH-BAR
\*------------------------------------*/


.search {
  padding: 3rem 0;
  margin: 0;
}

.search .search__inner {
  display: flex;
  align-items: flex-end;
}

.search .control {
  margin-right: 2%;
}
.search .control:last-child {
  margin-right: 0;
}

.search .button {
  padding: 0.6rem 2.4rem 0.7rem;
}

.control--search {
  width: 55%;
}
.control__search {
  display: flex;
}
.control__search .search__input {
  border-right: none;
  border-radius: 8px 0 0 8px;
}
.control__search .button {
  width: inherit;
  border-radius: 0 8px 8px 0;
}

.control--year {
  width: 16%;
}
.control--category {
  width: 25%;
}

.control--zip {
  width: 25%;
}
.control--miles {
  width: 15%;
}
.search--locations .control--button {
  margin-right: 0;
}
.search--locations .control--location {
  position: relative;
  width: 25%;
  padding-left: 5%;
  margin-left: 5%;
}
.search--locations .control--location::after {
  position: absolute;
  content: '';
  width: 3px;
  height: 100%;
  top: 0;
  left: -1px;
  bottom: 0;
  background: var(--light-blue);
  border-radius: 2px;
}

.search--events .control--category,
.search--events .control--month {
  width: 20%;
}


@media only screen and (max-width: 1200px) {
  .search {
    padding: 2.5rem 0;
  }
  .search--locations .control--zip {
    width: 30%;
  }
  .search--locations .control--location {
    width: 30%;
  }
  .search--locations .control--button {
    width: 16%;
  }
  .search--locations .control--button .button {
    width: 100%;
  }
  .search--website .control--search {
    width: 70%;
  }
  .search--events .control--category {
    width: 31.5%;
  }
  .search--events .control--category,
  .search--events .control--month {
    width: 31.5%;
  }
}

@media only screen and (max-width: 1000px) {
  .search {
    padding: 2rem 0;
  }
  .search--locations .search__inner,
  .search--blog-news .search__inner {
    flex-wrap: wrap;
  }
  .search .control {
    margin-right: 4%;
    margin-bottom: 1rem;
  }
  .search--locations .control--zip {
    width: 42%;
  }
  .search--locations .control--miles {
    width: 25%;
  }
  .search--locations .control--button {
    width: 25%;
    margin-right: 0;
  }
  .search--locations .control--location {
    width: 100%;
    padding: 0;
    margin-left: 0;
  }
  .search--locations .control--location::after {
    display: none;
  }
  .search--blog-news .control--year {
    width: 48%;
  }
  .search--blog-news .control--category {
    width: 48%;
    margin-right: 0;
  }
  .search--blog-news .control--search {
    width: 100%;
  }
  .search--events .control--category,
  .search--website .control--search {
    width: 100%;
  }
  .search--events .control--category,
  .search--events .control--month {
    width: 48%;
  }
}

@media only screen and (max-width: 600px) {
  .search .control {
    width: 100%;
    margin: 0 0 1rem;
  }
  .search .button {
    padding: 0.6rem 1.8rem 0.7rem;
  }
  .search--locations .control--zip {
    width: 100%;
  }
  .search--locations .control--miles,
  .search--locations .control--button {
    width: 48%;
  }
  .search--locations .control--miles {
    margin-right: 4%;
  }
  .search--events .search__inner {
    flex-wrap: wrap;
  }
  .search--events .control--category,
  .search--events .control--month {
    width: 100%;
  }
}





/*------------------------------------*\
  #SEARCH-FILTER
\*------------------------------------*/


.search__filter {
  display: flex;
  align-items: baseline;
  margin-top: 1.5rem;
}

.search__filter .text-link {
  min-height: 32px;
  text-decoration: underline;
  background: none;
  padding: 0;
  border: none;
}

.search__filter .tag {
  display: inline-flex;
  align-items: center;
  color: #fff;
  background: var(--light-blue);
  margin: 0 0.5rem 0 0;
}
.search__filter .tag svg {
  width: 0.7em;
  height: 0.7em;
  fill: #fff;
  margin: 0.1em 0 0 0.5em;
  cursor: pointer;
  transition: fill 0.5s ease;
}
.search__filter .tag svg:hover {
  fill: var(--dark-blue);
}


@media only screen and (max-width: 1200px) {
  .search__filter .tag svg {
    margin: 0 0 0 0.5em;
  }
}

@media only screen and (max-width: 1000px) {
  .search__filter {
    margin-top: 0.5rem;
  }
  .search__filter .control {
    margin-right: 1.5rem;
  }
}

@media only screen and (max-width: 600px) {
  .search__filter {
    flex-direction: column;
    flex-flow: column-reverse;
  }
  .search__filter .control {
    margin: 0;
  }
  .search__filter .tags {
    margin: 0 0.5rem 0.5rem 0;
  }
}





/*------------------------------------*\
  #SEARCH-RESULTS
\*------------------------------------*/


.results {
  margin: 4rem 0 12rem;
}

.results__header {
  margin: -3rem 0 3rem;
}
.results__header h3 {
  margin-bottom: 0.5rem;
}
.results__header h3 span {
  font-weight: 600;
  color: var(--light-blue);
  text-decoration: underline;
}

.result {
  padding-top: 2.5rem;
  border-top: 1px solid var(--light-gray);
  margin: 3rem 0;
}
.result h2 {
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: color 0.5s ease, text-decoration-color 0.5s ease;
}
.result h2:hover {
  color: var(--light-blue);
  text-decoration-color: var(--light-blue);
}
.result p:last-of-type {
  margin: 0;
}
.result p a {
  font-size: 1.05rem;
  color: var(--gray);
}
.result p a:hover {
  color: var(--light-blue);
}

.search--website + .results .results__header {
  margin-top: 0;
}


@media only screen and (max-width: 1200px) {
  .results {
    margin: 3rem 0 10rem;
  }
  .results__header {
    margin: -2.5rem 0 2.5rem;
  }
  .result {
    padding-top: 2rem;
    margin: 2.5rem 0;
  }
  .result p a {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 1000px) {
  .results__header {
    margin: -2rem 0 2rem;
  }
  .results {
    margin: 2.5rem 0 8rem;
  }
  .result {
    padding-top: 1.5rem;
    margin: 2rem 0;
  }
}

@media only screen and (max-width: 800px) {
  .results__header {
    margin: -1rem 0 2rem;
  }
  .result p a {
    font-size: 0.95rem;
  }
}





/*------------------------------------*\
  #SEARCH-PAGINATION
\*------------------------------------*/


.pagination {
  display: flex;
  justify-content: center;
  padding-top: 4rem;
  border-top: 1px solid var(--light-gray);
}

.pagination__list {
  display: flex;
  align-items: center;
}

.pagination__item {
  margin: 0 0.2rem;
}
.pagination__item:first-child {
  margin-left: 0;
}
.pagination__item:last-child {
  margin-right: 0;
}

.pagination__link {
  display: block;
  width: 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark-blue);
  text-align: center;
  background: var(--lightest-blue);
  padding: 0.2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.5s ease, background 0.5s ease;
}
.pagination__link svg {
  width: 0.8em;
  height: 0.8em;
  fill: var(--dark-blue);
}
.item--prev svg {
  margin-right: 0.1em;
}
.item--next svg {
  margin-left: 0.1em;
}

.pagination__link:hover {
  color: #fff;
  background: var(--light-blue);
}
.pagination__link:hover svg {
  fill: #fff;
}

.pagination__list .item--active .pagination__link {
  color: #fff;
  background: var(--orange);
  cursor: default;
}


@media only screen and (max-width: 1200px) {
  .pagination {
    padding-top: 3rem;
  }
  .pagination__link {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 1000px) {
  .pagination {
    padding-top: 2.5rem;
  }
}

@media only screen and (max-width: 800px) {
  .pagination__link {
    font-size: 0.95rem;
  }
}

@media only screen and (max-width: 600px) {
  .pagination {
    justify-content: flex-start;
  }
}





/*------------------------------------*\
  #FIND-A-DOCTOR
\*------------------------------------*/


.kyruus-custom.kyruus-custom .ky-search-bar {
  background-color: var(--lightest-blue);
  padding: 0;
  border-radius: 0;
}

.kyruus-custom.ky-search .ky-show-location.ky-input-search-terms {
  width: 55%;
}
.kyruus-custom.ky-search .ky-show-location.ky-right-input-group {
  width: 45%;
}

.kyruus-custom.ky-search .ky-label-m,
.kyruus-custom.ky-search .ky-submit-search label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--dark-blue);
  margin-bottom: 0.5rem !important;
}

.kyruus-custom.ky-search .ky-input-search-terms {
  padding-left: 0;
}
.kyruus-custom .ky-search-bar input[type=text].ky-br-s {
  display: block;
  width: 100%;
  font-family: 'Foundry Sterling W01', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
  background: #fff;
  padding: 0.6rem 0.8rem 0.7rem;
  border: 1px solid var(--light-blue);
  border-radius: 8px;
  transition: border-color 0.5s ease;
}
.kyruus-custom .ky-search-bar input[type=text].ky-br-s:focus {
  outline: none;
  border-color: var(--orange);
}

.kyruus-custom.ky-search .ky-submit-search {
  padding-right: 0;
}
.kyruus-custom.ky-search .button.btn-link,
.kyruus-custom.ky-search .button.btn-positive,
.kyruus-custom.ky-search .ky-button.btn-link,
.kyruus-custom.ky-search .ky-button.ky-btn-positive {
  height: 42px;
  text-shadow: none;
  padding: 0.6rem 0.8rem 0.7rem;
  background: var(--light-blue);
  border: 1px solid var(--light-blue);
  border-radius: 50px;
  transition: background 0.5s ease, border 0.5s ease;
}
.kyruus-custom.ky-search .ky-fs-l {
  font-size: 25px;
  top: -6px !important;
}

.kyruus-custom.ky-search .button.btn-link:hover,
.kyruus-custom.ky-search .button.btn-positive:hover,
.kyruus-custom.ky-search .ky-button.btn-link:hover,
.kyruus-custom.ky-search .ky-button.ky-btn-positive:hover {
  background: var(--light-blue-hover);
  border-color: var(--light-blue-hover);
}


@media only screen and (max-width: 1200px) {
  .kyruus-custom.ky-search .ky-label-m,
  .kyruus-custom.ky-search .ky-submit-search label {
    font-size: 0.9rem;
  }
  .kyruus-custom .ky-search-bar input[type=text].ky-br-s {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 800px) {
  .kyruus-custom.ky-search .ky-label-m,
  .kyruus-custom.ky-search .ky-submit-search label {
    font-size: 0.85rem;
  }
  .kyruus-custom .ky-search-bar input[type=text].ky-br-s {
    font-size: 0.95rem;
  }
}

@media only screen and (max-width: 768px) {
  .kyruus-custom.ky-search .ky-show-location.ky-input-search-terms,
  .kyruus-custom.ky-search .ky-show-location.ky-right-input-group {
    width: 100%;
  }
  .kyruus-custom.ky-search .ky-show-location.ky-input-search-terms {
    margin-bottom: 1rem;
  }
  .kyruus-custom.ky-search .ky-input-location,
  .kyruus-custom.ky-search .ky-input-search-terms,
  .kyruus-custom.ky-search .ky-submit-search {
    padding: 0;
  }
  .kyruus-custom.ky-search .ky-input-location {
    margin-bottom: 1.5rem;
  }
  .kyruus-custom.ky-search .ky-submit-search label {
    display: none;
  }
}









/*------------------------------------*\
  #FOOTER
\*------------------------------------*/


.page-foot {
  background: var(--dark-blue);
}

.page-foot p,
.page-foot p a,
.page-foot a {
  font-weight: 400;
  color: #fff;
}
.page-foot a {
  line-height: 1.3;
  transition: color 0.5s ease;
}
.page-foot a:hover {
  color: var(--lighter-blue); 
}

.page-foot__inner {
  display: flex;
  justify-content: space-between;
  padding: 6rem 0 5rem;
}
.page-foot__inner h6 {
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}
.page-foot__inner p,
.page-foot__inner a {
  font-size: 1.05rem;
}

.page-foot__info {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 25%;
}
.page-foot__logo {
  width: 220px;
  margin-bottom: 2rem;
}
.page-foot__social {
  display: flex;
  margin-top: 3rem;
}
.social {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 2.5em;
  background: var(--light-blue);
  border-radius: 50%;
  margin: 0 0.4rem;
}
a.social {
  transition: background 0.5s ease;
}
.social:first-child {
  margin-left: 0;
}
.social:last-child {
  margin-right: 0;
}
.social svg {
  width: auto;
  height: 1rem;
  fill: #fff;
  transition: fill 0.5s ease;
}
.social:hover {
  background: var(--light-blue-hover);
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  width: 65%;
  margin-top: 1.2rem;
}
.footer-nav__column {
  width: 25%;
}
.footer-nav__item {
  margin: 0.8rem 0;
}
.footer-nav__link {
  display: block;
}

.page-foot__bottom {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--lighter-blue);
}
.page-foot__bottom p,
.page-foot__bottom a {
  display: block;
  font-size: 0.95rem;
  line-height: 1.3;
  margin: 0.2rem 0;
}
.policy-nav {
  width: 50%;
}
.policy-nav__list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.policy-nav__item {
  margin-left: 1.5rem;
}
.policy-nav__item:first-child {
  margin-left: 0;
}


@media only screen and (max-width: 1200px) {
  .page-foot__inner {
    padding: 5rem 0 4rem;
  }
  .page-foot__inner h6 {
    margin-bottom: 1rem;
  }
  .page-foot__inner p,
  .page-foot__inner a {
    font-size: 1rem;
  }
  .page-foot__info {
    width: 25%;
  }
  .page-foot__logo {
    width: 200px;
  }
  .footer-nav {
    width: 70%;
  }
  .page-foot__bottom {
    padding: 2rem 0 2.5rem;
  }
  .page-foot__bottom p,
  .page-foot__bottom a {
    font-size: 0.9rem;
  }
  .policy-nav {
    width: 60%;
  }
}

@media only screen and (max-width: 1000px) {
  .page-foot__inner {
    display: block;
    padding: 4rem 0 3rem;
  }
  .page-foot__info {
    display: block;
    width: 100%;
  }
  .page-foot__logo {
    width: 180px;
  }
  .page-foot__location {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .page-foot__social {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
  }
  .footer-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 2rem;
  }
  .footer-nav__item {
    margin: 0.7rem 0;
  }
  .page-foot__bottom {
    display: block;
    padding: 2rem 0;
  }
  .policy-nav {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .policy-nav__list {
    justify-content: flex-start;
  }
  .policy-nav__item {
    margin-left: 0;
    margin-right: 1rem;
  }
  .policy-nav__item:last-child {
    margin-right: 0;
  }
}

@media only screen and (max-width: 800px) {
  .page-foot__inner {
    padding: 3rem 0 2rem;
  }
  .page-foot__inner p,
  .page-foot__inner a {
    font-size: 0.95rem;
  }
  .footer-nav__column {
    width: 30%;
  }
  .footer-nav__item {
    margin: 0.6rem 0;
  }
  .page-foot__bottom p,
  .page-foot__bottom a {
    font-size: 0.85rem;
  }
  .policy-nav__list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 600px) {
  .page-foot__inner {
    padding: 3rem 0 2rem;
  }
  .page-foot__logo {
    width: 160px;
    margin-bottom: 1.5rem;
  }
  .page-foot__location {
    display: block;
    margin-bottom: 2rem;
  }
  .page-foot__social {
    position: relative;
    margin: 0;
  }
  .social {
    width: 2.2em;
    height: 2.2em;
    margin: 0 0.3rem;
  }
  .social svg {
    height: 0.9rem;
  }
  .footer-nav {
    display: block;
    width: 100%;
    margin-top: 2rem;
  }
  .footer-nav__column {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .footer-nav__column:last-child {
    margin-bottom: 0;
  }
  .footer-nav__list {
    column-count: 2;
    column-gap: 10%;
  }
  .footer-nav__item {
    margin: 0 0 0.8rem;
  }
}





/*------------------------------------*\
  #LANGUAGE
\*------------------------------------*/


.page-foot__language {
  margin-bottom: 2rem;
}

body {
  top: 0 !important;
}
body > .skiptranslate,
.goog-te-gadget-icon, .goog-logo-link,
.goog-te-banner-frame.skiptranslate,
#google_translate_element a {
  display: none !important;
}
.goog-te-gadget,
#google_translate_element {
  font-size: 0 !important;
  color: transparent !important;
}

.page-foot__language .goog-te-gadget > div {
  position: relative;
  width: 205px;
  cursor: pointer;
}
.page-foot__language .goog-te-gadget > div::after {
  position: absolute;
  content: '';
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 491.1 298.3" fill="%23ffffff"><path d="M208.25 282.85 15.45 90.05c-20.6-20.6-20.6-54 0-74.6s54-20.6 74.6 0l155.5 155.5 155.5-155.5c20.6-20.6 54-20.6 74.6 0 20.6 20.6 20.6 54 0 74.6l-192.8 192.8c-20.6 20.6-54 20.6-74.6 0Z"/></svg>');
  background-size: 100% 100%;
  width: 0.65rem;
  top: 0;
  right: 0.8rem;
  bottom: 0;
  margin: auto 0;
  pointer-events: none;
}

.page-foot__language #google_translate_element select {
  display: block;
  width: 100%;
  font-family: 'Foundry Sterling W01', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
  background: transparent;
  padding: 0.6rem 0.8rem 0.7rem;
  border: 1px solid var(--light-blue);
  border-radius: 8px;
  margin: 0;
  transition: border-color 0.5s ease;
}
.page-foot__language #google_translate_element select {
  height: 100%;
  padding-right: 2rem;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.page-foot__language #google_translate_element select:focus {
  outline: none;
  border-color: var(--orange);
}


@media only screen and (max-width: 1200px) {
  .page-foot__language .goog-te-gadget > div {
    width: 195px;
  }
  .page-foot__language #google_translate_element select {
    font-size: 0.9rem;
  }
}

@media only screen and (max-width: 1000px) {
  .page-foot__language .goog-te-gadget > div {
    width: 180px;
  }
}

@media only screen and (max-width: 800px) {
  .page-foot__language .goog-te-gadget > div {
    width: 160px;
  }
  .page-foot__language #google_translate_element select {
    font-size: 0.85rem;
  }
  .page-foot__language .goog-te-gadget > div::after {
    width: 0.6rem;
  }
}

@media only screen and (max-width: 600px) {
  .page-foot__language {
    margin-bottom: 2.5rem;
  }
}





/*------------------------------------*\
  #CONSENT
\*------------------------------------*/


.consent {
  position: fixed;
  width: 90%;
  max-width: 1300px;
  left: 0;
  right: 0;
  bottom: 2rem;
  background: #fff;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(57,57,57, 0.1);
  margin: 0 auto;
  z-index: 999;
}

.consent .container {
  width: 100%;
}

.consent__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.consent__inner p {
  width: 75%;
  font-size: 1.05rem;
}
.consent__inner button {
  width: 150px;
}


@media only screen and (max-width: 1200px) {
  .consent__inner p {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 1000px) {
  .consent__inner p {
    width: 70%;
  }
}

@media only screen and (max-width: 800px) {
  .consent {
    width: 100%;
    bottom: 0;
    padding: 2rem;
    border-radius: 0;
  }
  .consent__inner {
    display: block;
  }
  .consent__inner p {
    width: 100%;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }
  .consent__inner button {
    width: 150px;
  }
}

@media only screen and (max-width: 600px) {
  .consent {
    padding: 2rem 0;
  }
  .consent .container {
    width: 88%;
  }
}











/*------------------------------------*\
  #EXPRESSIONENGINE
\*------------------------------------*/


.structure-link {
  position: absolute;
  top: 1em;
  right: 0;
}

.edit-button {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 2em;
  top: 12rem;
  right: 0;
  padding-right: 0.5rem;
  background: var(--orange);
  border-radius: 4px 0 0 4px;
  box-shadow: 0 4px 6px -2px rgba(57,57,57, 0.1); 
  cursor: pointer;
  transition: background 0.5s ease;
  z-index: 999999;
}
.edit-button svg {
  width: 1em;
  height: 1em;
  fill: #fff;
}
.edit-button:hover {
  background: var(--light-blue);
}


@media only screen and (max-width: 1000px) {
  .edit-button {
    top: 9em;
  }
}

@media only screen and (max-width: 800px) {
  .edit-button {
    top: 8em;
  }
}

@media only screen and (max-width: 600px) {
  .edit-button {
    top: 7em;
  }
}










