



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


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: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b, strong {
  font-weight: 500;
}
code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub, sup {
  position: relative;
  font-size: 50%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.85em;
}
img {
  display: block;
  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;
}





/*------------------------------------*\
  RESET
\*------------------------------------*/


*, *::before, *::after {
  box-sizing: border-box;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
button {
  color: inherit;
  background-color: transparent;
  padding: 0;
  border-width: 0;
  cursor: pointer;
}
img {
  width: 100%;
  height: auto;
}
figure {
  margin: 0;
}
input::-moz-focus-inner {
  padding: 0;
  border: 0;
  margin: 0;
}
ul, ol, dd {
  list-style: none;
  padding: 0;
  margin: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-size: inherit; 
  font-weight: inherit;
  margin: 0; 
}
p {
  margin: 0;
}

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

a[href^="tel"] {
  color: inherit;
}











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


/*

FONTS

font-family: 'Neue Helvetica W05', sans-serif;
font-weight: 300;
font-weight: 400;
font-weight: 500;
font-weight: 700;

font-family: 'Inter', sans-serif;
font-weight: 300;
font-weight: 400;
font-weight: 700;

*/


:root {
  --gray: #424242;

  --lightest-cyan: #e7f6fc;
  --light-cyan: #bfe4f4;
  --cyan: #18a7e0;
  --dark-cyan: #0093d5;

  --lightest-blue: #f3fbfd;
  --light-blue: #0070b9;
  --blue: #004e7d;
  --dark-blue: #003358;
  --darkest-blue: #031d2e;

  --light-green: #95c93d;
  --green: #72bf44;

  --orange: #f7aa17;
}





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


html,
body {
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 3em;
}

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

section {
  margin: 5em 0;
}
section[class^='banner'] {
  margin: 0;
}

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


@media only screen and (max-width: 900px) {
  html {
    scroll-padding-top: 6em;
  }
}

@media only screen and (max-width: 700px) {
  .container {
    width: 88%;
  }
}





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


body {
  font-family: 'Inter', sans-serif;
  font-size: 100%;
  font-weight: 300;
  color: var(--gray);
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
  font-family: 'Neue Helvetica W05', sans-serif;
}
.page-content h1,
.page-content h2,
.page-content h3 {
  font-weight: 300;
  line-height: 1.2;
  color: var(--light-blue);
}
.page-content h1,
.page-content h2 {
  font-size: 2.5em;
}
.page-content h3 {
  font-size: 2em;
}
.page-content h4,
.page-content h5,
.page-content h6 {
  font-weight: 400;
  line-height: 1.3;
}
.page-content h4,
.page-content h5 {
  color: var(--blue);
}
.page-content h4 {
  font-size: 1.5em;
}
.page-content h5,
.page-content h6 {
  font-size: 1.3em;
}
.page-content h6 {
  color: var(--light-blue);
}

.page-content p,
section li {
  font-size: 1.1em;
  line-height: 1.7;
}
.page-content p {
  margin-bottom: 1.2em;
}

section p a,
section li a,
section p a[href^="tel"] {
  font-weight: 500;
  text-decoration: underline;
  color: var(--blue);
  transition: color 0.5s ease;
}
section p a:hover,
section li a:hover,
section p a[href^="tel"]:hover {
  color: var(--light-blue);
}

.page-content__inner h1,
.page-content--detail h1,
.intro-page h1 {
  font-weight: 300;
}


@media only screen and (max-width: 1300px) {
  .page-content h1,
  .page-content h2 {
    font-size: 2.2em;
  }
  .page-content h3 {
    font-size: 1.8em;
  }
  .page-content h4 {
    font-size: 1.45em;
  }
  .page-content h5,
  .page-content h6 {
    font-size: 1.25em;
  }
  .page-content p,
  section li {
    font-size: 1.05em;
  }
}

@media only screen and (max-width: 1100px) {
  .page-content h1,
  .page-content h2 {
    font-size: 2em;
  }
  .page-content h3 {
    font-size: 1.6em;
  }
  .page-content h4 {
    font-size: 1.4em;
  }
  .page-content h5,
  .page-content h6 {
    font-size: 1.2em;
  }
  .page-content p,
  section li {
    font-size: 1em;
    line-height: 1.6;
  }
}

@media only screen and (max-width: 700px) {
  .page-content h1,
  .page-content h2 {
    font-size: 1.8em;
  }
  .page-content h3 {
    font-size: 1.5em;
  }
  .page-content h4 {
    font-size: 1.3em;
  }
  .page-content h5,
  .page-content h6 {
    font-size: 1.1em;
  }
  .page-content p,
  section li {
    font-size: 0.95em;
  }
}











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





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


.page-head {
  position: relative;
  width: 100%;
  height: 8em;
  font-family: 'Neue Helvetica W05', sans-serif;
  font-weight: 400;
  background: #fff;
  padding-top: 1.2em;
  box-shadow: 0 6px 3px -3px rgba(0,0,0, 0.1);
  z-index: 9999;
}

.page-head__wrap {
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
}

.page-head a,
.page-head span {
  display: block;
  color: var(--dark-blue);
  cursor: pointer;
  transition: color 0.5s ease;
}
.page-head a:hover,
.page-head span:hover {
  color: var(--light-blue);
}


@media only screen and (max-width: 1300px) {
  .page-head {
    height: 6.5em;
    padding-top: 1em;
  }
}

@media only screen and (max-width: 1100px) {
  .page-head {
    height: 6em;
  }
  .page-head__wrap {
    width: 95%;
  }
}

@media only screen and (max-width: 900px) {
  .page-head {
    position: sticky;
    height: 4em;
    top: 0;
  }
  .page-head__wrap {
    width: 92%;
  }
}

@media only screen and (max-width: 700px) {
  .page-head__wrap {
    width: 88%;
  }
}





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


.page-head__top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0.8em;
}

.page-head__links {
  display: flex;
  justify-content: space-between;
}
.page-head__links a {
  font-size: 1em;
  line-height: 1.3;
  margin: 0 0.6em;
}
.page-head__links a:last-child {
  margin-right: 0;
}

.page-head__search {
  margin-right: 0.6em;
}
.page-head__search a {
  display: flex;
  align-items: center;
}
.page-head__search svg {
  width: 1em;
  height: 1em;
  fill: var(--gray);
  transition: fill 0.5s ease;
}
.page-head__search a:hover svg {
  fill: var(--light-blue);
}

.top--mobile {
  display: none;
}


@media only screen and (max-width: 1300px) {
  .page-head__top {
    margin-bottom: 0.5em;
  }
  .page-head__links a {
    font-size: 0.95em;
    margin: 0 0.5em;
  }
  .page-head__search {
    margin-right: 0.5em;
  }
  .page-head__search svg {
    width: 0.95em;
    height: 0.95em;
  }
}

@media only screen and (max-width: 1100px) {
  .page-head__top {
    margin-bottom: 0.3em;
  }
  .page-head__links a {
    font-size: 0.9em;
    margin: 0 0.4em;
  }
  .page-head__search {
    margin-right: 0.4em;
  }
  .page-head__search svg {
    width: 0.9em;
    height: 0.9em;
  }
}

@media only screen and (max-width: 900px) {
  .page-head__top {
    display: none;
  }
}





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


.page-head__inner {
  display: flex;
  align-items: flex-start;
}

.page-head__logo {
  flex: 0 0 250px;
}

.page-head__nav {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  margin-top: 1.3em;
  margin-left: 10%;
}

.primary-nav__list {
  display: flex;
  justify-content: space-between;
}
.primary-nav__list li {
  margin: 0 1em;
}

.primary-nav__link {
  position: relative;
  display: block;
  font-size: 1.1em;
  line-height: 1;
  padding-bottom: 2em;
}
.primary-nav__link::after,
.primary-nav__list [class*='link--']::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 1em;
  background: var(--green);
  opacity: 0;
  transition: all 0.5s ease;
}
.primary-nav__link:hover::after,
.primary-nav__list [class*='link--']::after,
.primary-nav__list [class*='link--']:hover::after {
  bottom: 1.5em;
  opacity: 1;
}
.primary-nav__list [class*='link--'] {
  color: var(--light-blue);
}

.page-head__mobile {
  display: none;
}


@media only screen and (max-width: 1300px) {
  .page-head__logo {
    flex: 0 0 220px;
  }
  .page-head__nav {
    margin-top: 1.1em;
  }
  .primary-nav__list li {
    margin: 0 0.8em;
  }
  .primary-nav__link {
    font-size: 1.05em;
    padding-bottom: 1.5em;
  }
  .primary-nav__link::after,
  .primary-nav__list [class*='link--']::after {
    bottom: 0.5em;
  }
  .primary-nav__link:hover::after,
  .primary-nav__list [class*='link--']::after,
  .primary-nav__list [class*='link--']:hover::after {
    bottom: 1.1em;
  }
}

@media only screen and (max-width: 1100px) {
  .page-head__logo {
    flex: 0 0 190px;
  }
  .page-head__nav {
    margin-top: 0.85em;
  }
  .primary-nav__list li {
    margin: 0 0.6em;
  }
  .primary-nav__link {
    font-size: 1em;
  }
}





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


.primary-nav__dropdown {
  position: absolute;
  display: none;
  width: 100%;
  top: 8em;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 6px 3px -3px rgba(0,0,0, 0.1), inset 0 6px 3px -3px rgba(0,0,0, 0.1);
}
.link--dropdown + .primary-nav__dropdown {
  display: block;
}

.dropdown {
  display: flex;
  align-items: stretch;
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
}

.dropdown__nav {
  display: flex;
  width: 100%;
  max-width: 1200px;
  padding: 3em 0;
}
.dropdown__nav .dropdown-nav__link {
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1.2;
  color: var(--light-blue);
  margin-bottom: 0.6em;
}
.dropdown__nav .dropdown-nav__link:hover {
  color: var(--green);
}

.dropdown-nav__list {
  flex: 1 1 auto;
  max-width: 30%;
  margin-right: 5%;
}
.dropdown-nav__list:last-child {
  margin: 0;
}
.dropdown-nav__list li {
  margin: 0;
}
.dropdown-nav__list li li {
  margin: 0 0 0.5em;
}
.dropdown-nav__list li li:last-child {
  margin: 0;
}
.dropdown-nav__list li li a {
  font-size: 0.9em;
  font-weight: 700;
  line-height: 1.3;
}

/*
.list--column ul {
  columns: 2;
}
.list--column ul li a {
  white-space: nowrap;
}
*/

.list__tertiary {
  display: none;
}


@media only screen and (max-width: 1300px) {
  .primary-nav__dropdown {
    top: 6.5em;
  }
  .dropdown__nav {
    padding: 2.5em 0;
  }
  .dropdown__nav .dropdown-nav__link {
    font-size: 1.05em;
  }
  .dropdown-nav__list li li {
    margin: 0 0 0.4em;
  }
  .dropdown-nav__list li li a {
    font-size: 0.85em;
  }
}

@media only screen and (max-width: 1100px) {
  .dropdown {
    width: 95%;
  }
  .primary-nav__dropdown {
    top: 6em;
  }
  .dropdown__nav {
    padding: 2em 0;
  }
  .dropdown__cta h5,
  .dropdown__nav .dropdown-nav__link {
    font-size: 1em;
  }
  .dropdown-nav__list li li {
    margin: 0 0 0.3em;
  }
}





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


@media only screen and (max-width: 900px) {
  .page-head__inner {
    display: block;
  }
  .page-head__logo {
    width: 190px;
  }
  .page-head__mobile {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5em;
    height: 4em;
    top: 0;
    right: 0;
    background: var(--light-green);
    transition: background 0.5s ease, color 0.5s ease;
    cursor: pointer;
    z-index: 99999;
  }
  .page-head__mobile span {
    font-family: 'Inter', sans-serif;
    font-size: 0.9em;
    font-weight: 400;
    line-height: 1;
    color: var(--dark-blue);
  }
  .page-head__mobile:hover,
  .page-head__mobile.active {
    background: var(--dark-blue);
  }
  .page-head__mobile:hover span,
  .page-head__mobile.active span {
    color: var(--light-green);
  }
  .page-head__nav {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 20em;
    height: calc(100vh - 4em);
    top: 4em;
    left: inherit;
    right: -20em;
    bottom: 0;
    padding: 0 1.5em 2em;
    background: #fff;
    margin: 0;
    transition: right 1s cubic-bezier(0.230, 1.000, 0.320, 1.000);
    z-index: 999;
  }
  .page-head__nav.open {
    right: 0;
    box-shadow: -6px 0px 3px -3px rgba(0,0,0, 0.1), inset 0 6px 3px -3px rgba(0,0,0, 0.1);
  }
  .primary-nav {
    display: block;
    overflow-y: auto;
  }
  .primary-nav__list {
    display: block;
    padding: 1em 0 0;
  }
  .primary-nav__list li {
    border-bottom: 1px solid var(--green);
    margin: 0;
  }
  .primary-nav__list .primary-nav__link {
    position: relative;
    font-size: 1.15em;
    font-weight: 700;
    color: var(--blue);
    padding: 1.2em 0.5em 1em;
    margin: 0;
    cursor: pointer;
  }
  span.primary-nav__link::before,
  span.primary-nav__link::after,
  .primary-nav__list [class*='link--']::after,
  .primary-nav__list [class*='link--']:hover::after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    top: 0;
    left: inherit;
    right: 0.5em;
    bottom: 0;
    background: none;
    border-style: solid;
    margin: auto 0;
    opacity: 1;
    transition: border-color 0.5s ease;
  }
  span.primary-nav__link::before {
    border-width: 0 0.4em 0.4em 0.4em;
    border-color: transparent transparent var(--blue) transparent;
  }
  span.primary-nav__link::after {
    display: none;
    border-width: 0.4em 0.4em 0 0.4em;
    border-color: var(--blue) transparent transparent transparent;
  }
  span.primary-nav__link.link--dropdown::after { 
    display: block;
  }
  span.primary-nav__link.link--dropdown::before {
    display: none;
  }
  span.primary-nav__link:hover::before {
    border-color: transparent transparent var(--light-blue) transparent;
  }
  span.primary-nav__link:hover::after {
    border-color: var(--light-blue) transparent transparent transparent;
  }
  a.primary-nav__link::before,
  a.primary-nav__link::after {
    display: none;
  }
  .primary-nav__dropdown {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    right: 0;
    background: none;
    box-shadow: none;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1.5s ease-out;
  }
  .dropdown,
  .dropdown__nav {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .dropdown__nav {
    margin: 0 0 1.5em;
  }
  .dropdown-nav__list {
    max-width: 100%;
    padding: 0 0.6em;
    margin: 0;
  }
  .dropdown-nav__list li {
    border: none;
  }
  .dropdown-nav__list li li {
    margin: 0 0 0.4em;
  }
  .dropdown-nav__list li li a {
    font-size: 0.9em;
  }
  .list__secondary {
    margin-bottom: 1em;
  }
  .list--column ul {
    columns: 1;
  }
  .link--dropdown + .primary-nav__dropdown {
    height: auto;
    opacity: 1;
  }
  .page-head__links a {
    font-size: 1em;
    line-height: 1.3;
    margin: 0 0.6em;
  }
  .page-head__links a:last-child {
    margin-right: 0;
  }
  .page-head__search {
    margin-right: 0.6em;
  }
  .page-head__search a {
    display: flex;
    align-items: center;
  }
  .page-head__search svg {
    width: 1em;
    height: 1em;
    fill: var(--gray);
    transition: fill 0.5s ease;
  }
  .page-head__search a:hover svg {
    fill: var(--light-blue);
  }
  .top--mobile {
    display: block;
    margin: 2em 0.6em 0;
  }
  .top--mobile .page-head__search {
    margin: 0;
  }
  .top--mobile .page-head__search svg {
    width: 1.6em;
    height: 1.6em;
    margin-bottom: 0.5em;
  }
  .top--mobile .page-head__links {
    display: block;
  }
  .top--mobile .page-head__links a {
    font-size: 1.05em;
    margin: 0.5em 0 0;
  }
  .page-head__lang {
    margin: 1em 0.6em 0;
  }
}

@media only screen and (max-width: 500px) {
  .page-head__nav {
    width: 18em;
    right: -18em;
  }
}





/*------------------------------------*\
  #SIDE-NAV
\*------------------------------------*/


.side-nav {
  position: sticky;
  top: 2.5em;
}

.side-nav__link {
  display: block;
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1.3;
  color: var(--light-blue);
  padding: 1em 1.1em;
  border-top: 1px solid var(--light-green);
  transition: color 0.5s ease;
}
.side-nav__link:hover {
  color: var(--green);
}

.secondary-nav__item {
  border-top: 1px solid var(--light-green);
}
.secondary-nav__item:last-child {
  border-bottom: 1px solid var(--light-green);
}
.secondary-nav__item a {
  display: block;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-blue);
  padding: 1.2em;
  transition: background-color 0.5s ease, color 0.5s ease;
}
.secondary-nav__item a:hover {
  color: var(--darkest-blue);
  background: var(--green);
}
.secondary-nav__item.item--active .item__list {
  padding: 0 3em 0 0;
  margin: 1.2em 0 1.2em 1.2em;
}

.secondary-nav__item .item__list {
  position: relative;
  padding-right: 3em;
}
.item__list::before,
.item__list::after,
.item__icon::before,
.item__icon::after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  top: 0;
  right: 1.2em;
  bottom: 0;
  border-style: solid;
  margin: auto 0;
  transition: border-color 0.5s ease;
}
.item__list::before,
.item__icon::before {
  border-width: 0 0.4em 0.4em 0.4em;
  border-color: transparent transparent var(--dark-blue) transparent;
}
.item__list::after,
.item__icon::after {
  display: none;
  border-width: 0.4em 0.4em 0 0.4em;
  border-color: var(--dark-blue) transparent transparent transparent;
}
.item__list:hover::before {
  border-color: transparent transparent var(--darkest-blue) transparent;
}

.item__icon {
  display: none;
  position: absolute;
  width: 22px;
  height: 22px;
  top: 0.7em;
  right: 1em;
  background: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.5s ease;
}
.item__icon::before,
.item__icon::after {
  left: 0;
  right: 0;
  margin: auto;
}
.item__icon:hover {
  background: var(--dark-blue);
}
.item__icon:hover::before {
  border-color: transparent transparent #fff transparent;
}
.item__icon.icon--active:hover::after {
  border-color: #fff transparent transparent transparent;
}

.side-nav .list__tertiary {
  padding-bottom: 1em;
  margin: -0.5em 2em 0;
}
.side-nav .list__tertiary li {
  margin-bottom: 0.5em;
}
.side-nav .list__tertiary li:last-child {
  margin-bottom: 0;
}
.side-nav .list__tertiary li a {
  font-weight: 400;
  text-decoration: underline solid transparent;
  background: none;
  padding: 0;
  transition: text-decoration 0.5s ease;
}
.side-nav .list__tertiary li a:hover {
  text-decoration: underline solid var(--darkest-blue);
}

.side-nav .tertiary__text {
  font-size: 1em;
  font-weight: 700;
  line-height: 1.3;
  color: var(--darkest-blue);
  cursor: default;
}

.item--active {
  background: var(--green);
}
.item--active a,
.item--active a:hover {
  color: var(--darkest-blue);
  background: none;
}
.item--active .item__list::before,
.item__icon.icon--active::before {
  display: none;
}
.item--active .item__list::after {
  display: block;
  border-color: var(--darkest-blue) transparent transparent transparent;
}
.item__icon.icon--active::after {
  display: block;
  border-color: var(--dark-blue) transparent transparent transparent;
}

.item--active .list__tertiary {
  display: block;
}
.item--active .list__tertiary li a {
  color: var(--darkest-blue);
}
.side-nav .list__tertiary .item--active a,
.side-nav .list__tertiary li a:hover {
  text-decoration: underline solid var(--darkest-blue);
}

.nav--industries .side-nav li {
  margin-bottom: 0.6em;
}
.nav--industries .side-nav a {
  display: block;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.3;
  color: var(--blue);
  transition: color 0.5s ease;
}
.nav--industries .side-nav a:hover {
  color: var(--darkest-blue);
}


@media only screen and (max-width: 1300px) {
  .side-nav {
    top: 2em;
  }
  .side-nav__link {
    font-size: 1.05em;
    padding: 0.85em 0.9em;
  }
  .secondary-nav__item a {
    font-size: 0.95em;
    padding: 1em;
  }
  .side-nav .list__tertiary {
    margin: -0.4em 1.5em 0;
  }
  .side-nav .list__tertiary li {
    margin-bottom: 0.4em;
  }
  .side-nav .tertiary__text {
    font-size: 0.95em;
  }
  .nav--industries .side-nav li {
    margin-bottom: 0.5em;
  }
  .nav--industries .side-nav a {
    font-size: 0.95em;
  }
}

@media only screen and (max-width: 1100px) {
  .side-nav__link {
    font-size: 1em;
  }
  .secondary-nav__item a {
    font-size: 0.9em;
  }
  .side-nav .tertiary__text {
    font-size: 0.9em;
  }
  .nav--industries .side-nav a {
    font-size: 0.9em;
  }
}

@media only screen and (max-width: 900px) {
  .side-nav__link,
  .secondary-nav__item,
  .secondary-nav__item.item--list,
  .secondary-nav__item.item--active,
  .secondary-nav__item.item--active .item__list::before,
  .secondary-nav__item.item--active .item__list::after {
    display: none;
  }
  .secondary-nav__item.item--active.item--list {
    display: block;
    position: relative;
    background: var(--light-green);
    padding: 0.8em 1em;
    border: none;
  }
  .secondary-nav__item.item--list .item__list {
    display: inline-block;
    padding: 0;
    margin: 0;
  }
  .secondary-nav__item.item--list .item__list:hover {
    text-decoration: underline;
    background: none;
  }
  .item__icon {
    display: block;
  }
  .side-nav .list__tertiary {
    display: none;
    padding: 0;
    margin: 0.8em 0 0.2em;
  }
  .side-nav .list__tertiary.list--active {
    display: block;
  }
  .side-nav .list__tertiary li {
    margin-bottom: 0.6em;
  }
  .side-nav .list__tertiary li:last-child {
    margin-bottom: 0;
  }
  .side-nav .list__tertiary a {
    display: inline-block;
    font-size: 0.85em;
  }
  .side-nav .tertiary__text {
    font-size: 0.85em;
  }
  .side-nav .list__tertiary .item--active {
    background: none;
  }
}











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





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


.button {
  display: inline-block;
  font-family: 'Neue Helvetica W05', sans-serif;
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.3;
  color: var(--darkest-blue);
  text-align: center;
  padding: 0.8em 1.6em 0.5em;
  background: var(--green);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.5s ease, color 0.5s ease, border-color 0.5s ease;
}
.button--orange {
  background: var(--orange);
}
.button--blue,
.button:hover,
.button--orange:hover {
  color: #fff;
  background: var(--blue);
}
.button--blue:hover {
  color: var(--darkest-blue);
  background: var(--green);
}

.button--small {
  font-family: 'Inter', sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  text-align: left;
  padding: 0.6em 1em;
  background: var(--blue);
  border-radius: 10px;
}
.button--small:hover {
  color: var(--darkest-blue);
  background: var(--green);
}

.buttons .button {
  margin: 0.5em 0.5em 0.5em 0;
}


@media only screen and (max-width: 1300px) {
  .button {
    font-size: 1.05em;
  }
  .button--small {
    font-size: 0.95em;
  }
}

@media only screen and (max-width: 1100px) {
  .button {
    font-size: 1em;
  }
  .button--small {
    font-size: 0.9em;
  }
  .buttons .button {
    margin: 0.3em 0.3em 0.3em 0;
  }
}

@media only screen and (max-width: 700px) {
  .button {
    font-size: 0.95em;
  }
  .button--small {
    font-size: 0.85em;
  }
}





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


.tags {
  display: none;
  flex-wrap: wrap;
}
.tags span {
  display: block;
  font-family: 'Neue Helvetica W05', sans-serif;
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark-blue);
  padding: 0.3em 0.7em 0.4em;
  border: 2px solid var(--cyan);
  border-radius: 5px;
  margin-right: 0.8em;
}
.tags span:last-child {
  margin-right: 0;
}


@media only screen and (max-width: 1300px) {
  .tags span {
    font-size: 0.85em;
  }
}

@media only screen and (max-width: 1100px) {
  .tags span {
    font-size: 0.8em;
  }
}

@media only screen and (max-width: 700px) {
  .tags span {
    font-size: 0.75em;
    margin-right: 0.6em;
  }
}





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


label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.3;
  color: var(--gray);
  padding: 0 1.2em;
  margin-bottom: 0.6em;
}
label span {
  color: var(--light-blue);
}

.input,
.select select {
  display: block;
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.3;
  color: var(--darkest-blue);
  background: #fff;
  padding: 0.6em 1em;
  border: 2px solid var(--cyan);
  border-radius: 10px;
  outline: 0;
  transition: border-color 0.5s ease;
}
.input:focus,
.select select:focus {
  border-color: var(--dark-blue);
}

.select {
  position: relative;
  width: 100%;
}
.select::after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  top: 0;
  right: 1em;
  bottom: 0;
  border-style: solid;
  border-width: 0.4em 0.4em 0 0.4em;
  border-color: var(--darkest-blue) transparent transparent transparent;
  margin: auto 0;
  transition: border-color 0.5s ease;
  pointer-events: none;
}
.select select {
  height: 100%;
  padding-right: 2.5em;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.select select:disabled {
  color: #b3b3b3;
  border-color: #b3b3b3;
  opacity: 1;
}
.select--disabled::after {
  border-color: #b3b3b3 transparent transparent transparent;
}

textarea {
  min-height: 10em;
  resize: none;
}
textarea.input {
  line-height: 1.7;
}


@media only screen and (max-width: 1100px) {
  label,
  .input,
  .select select {
    font-size: 0.95em;
  }
  textarea.input {
    line-height: 1.6;
  }
}





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


input[type="search"] {
  position: relative;
  background: var(--light-cyan);
  border-color: var(--light-cyan);
}
input[type="search"]::-webkit-search-cancel-button {
  height: 0.8em;
  width: 0.8em;
  background: url(../assets/core/search/clear.svg) no-repeat 50% 50%;
  background-size: contain;
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
  transition: opacity 0.5s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type="search"]:focus::-webkit-search-cancel-button {
  opacity: 0.5;
  pointer-events: all;
}
input[type="search"]::-webkit-search-cancel-button:hover {
  opacity: 1;
}





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


::placeholder { 
  color: #a0a0a0;
}
:-ms-input-placeholder { 
  color: #a0a0a0;
}
::-webkit-input-placeholder {
  color: #a0a0a0;
}

input[type="search"]::placeholder {
  color: var(--darkest-blue);
}
input[type="search"]:-ms-input-placeholder { 
  color: var(--darkest-blue);
}
input[type="search"]::-webkit-input-placeholder {
  color: var(--darkest-blue);
}





/*------------------------------------*\
  #CHECKBOX
\*------------------------------------*/


.checkbox {
  position: relative;
}

.checkbox label {
  display: block;
  margin: 0 0 0 1em;
  cursor: pointer;
}

.checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.checkbox input[type=checkbox] + .checkbox__label::before {
  position: absolute;
  display: block;
  content: '';
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
  text-align: center;
  background: #fff;
  border: 2px solid var(--gray);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.5s ease;
}
.checkbox input[type=checkbox]:focus + input + .checkbox__label::before {
  border-color: var(--dark-blue);
  outline: none;
}
.checkbox input[type=checkbox]:hover + .checkbox__label::before {
  border-color: var(--dark-blue);
}
.checkbox input[type=checkbox]:checked + .checkbox__label::before {
  background: var(--dark-blue);
  border-color: var(--dark-blue);
}
.checkbox input[type=checkbox]:checked + .checkbox__label::after {
  position: absolute;
  content: '';
  width: 12px;
  height: 8px;
  top: 4px;
  left: 4px;
  border: 3px solid #fff;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
}


@media only screen and (max-width: 1100px) {
  .checkbox label {
    margin: 0 0 0 0.8em;
  }
  .checkbox input[type=checkbox] + .checkbox__label::before {
    width: 18px;
    height: 18px;
  }
  .checkbox input[type=checkbox]:checked + .checkbox__label::after {
    width: 10px;
    height: 7px;
  }
}





/*------------------------------------*\
  #FORMS
\*------------------------------------*/


.form--contact .input,
.form--contact .select select {
  border: 2px solid var(--light-cyan);
}
.form--contact .input:focus,
.form--contact .select select:focus {
  border-color: var(--dark-blue);
}
.form--contact select:invalid {
  color: #a0a0a0;
}
.form--contact .checkbox {
  margin: 2em 0;
}

.form--contact input[type="submit"] {
  margin-top: 0.5em;
  border: 2px solid var(--green);
}
.form--contact input[type="submit"]:hover {
  border: 2px solid var(--blue);
}

.inputs {
  margin-bottom: 1.2em;
}

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

.inputs__inner .input-label,
.inputs__inner .select {
  width: 49%;
}

.input-label .input,
.input-label .select {
  width: 100%;
}

.inputs--textarea .input-label {
  width: 100%;
}


@media only screen and (max-width: 700px) {
  .form--contact .checkbox {
    margin: 1.5em 0;
  }
  .inputs {
    margin: 0;
  }
  .input-label {
    margin-bottom: 1.2em;
  }
  .inputs__inner {
    display: block;
  }
  .inputs__inner .input-label,
  .inputs__inner .select {
    width: 100%;
  }
  .form--contact input[type="submit"] {
    width: 100%;
  }
}











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


.page-foot {
  background: var(--dark-blue);
  padding: 5em 0 2.5em;
  border-bottom: 20px solid var(--green);
  margin-top: 10em;
}

.page-foot p,
.page-foot a {
  display: block;
  font-family: 'Neue Helvetica W05', sans-serif;
  font-size: 0.85em;
  font-weight: 300;
  line-height: 1.3;
  color: #fff;
}

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

.footer-nav {
  display: flex;
}
.footer-nav__list {
  margin-right: 4em;
}
.footer-nav__list:last-child {
  margin: 0;
}
.footer-nav__list .footer-nav__link {
  display: inline-block;
  font-size: 1.1em;
  font-weight: 400;
  color: var(--light-green);
  margin-bottom: 1em;
}
.footer-nav__list ul li {
  margin-bottom: 0.4em;
}
.footer-nav__list a {
  transition: color 0.5s ease;
}
.footer-nav__list a:hover {
  color: var(--cyan);
}

.list__logo {
  max-width: 100px;
  margin-top: 1.5rem;
}

.page-foot__social a {
  display: flex;
  width: 2em;
  height: 2em;
  background: var(--light-green);
  padding: 0.3em;
  border-radius: 5px;
  margin-bottom: 0.8em;
  transition: background-color 0.5s ease;
}
.page-foot__social a:last-child {
  margin: 0;
}
.page-foot__social a:hover {
  background: var(--cyan);
}

.page-foot__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 1.5em;
}

.info__links {
  display: flex;
  flex-wrap: wrap;
}
.info__links a {
  margin-right: 1.5em;
  transition: color 0.5s ease;
}
.info__links a:hover {
  text-decoration: underline;
}

.info__logo img {
  width: 250px;
  margin-bottom: 1em;
}


@media only screen and (max-width: 1300px) {
  .page-foot {
    padding: 4em 0 2em;
    margin-top: 8em;
  }
  .info__logo img {
    width: 220px;
  }
  .footer-nav__list .footer-nav__link {
    font-size: 1.05em;
  }
}

@media only screen and (max-width: 1100px) {
  .info__logo img {
    width: 200px;
    margin-bottom: 0.8em;
  }
  .footer-nav__list .footer-nav__link {
    font-size: 1em;
    margin-bottom: 0.8em;
  }
  .list__logo {
    margin-top: 1.2rem;
  }
}

@media only screen and (max-width: 900px) {
  .page-foot {
    padding: 3em 0 2em;
    margin-top: 6em;
  }
  .page-foot p,
  .page-foot a {
    font-size: 0.8em;
  }
  .page-foot__inner {
    display: block;
  }
  .footer-nav {
    justify-content: space-between;
  }
  .footer-nav__list {
    margin-right: inherit;
  }
  .list__logo {
    max-width: 90px;
  }
  .page-foot__social {
    display: flex;
    margin-top: 4em;
  }
  .page-foot__social a {
    margin: 0 0.8em 0 0;
  }
  .page-foot__info {
    display: block;
    margin-top: 1.5em;
  }
  .info__logo {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row-reverse;
    margin-top: 0.5em;
  }
  .info__logo img {
    margin-bottom: 0;
  }
  .info__logo p {
    margin-bottom: 0.15em;
  }
}

@media only screen and (max-width: 700px) {
  .footer-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .footer-nav__list {
    width: 35%;
    margin-bottom: 1.5em;
  }
  .footer-nav__list:nth-child(odd) {
    width: 55%;
    margin-right: 10%;
  }
  .footer-nav__list:nth-child(odd) ul {
    columns: 2;
  }
  .page-foot__social {
    margin-top: 1.5em;
  }
  .info__links a {
    margin: 0 1.5em 0.5em 0;
  }
  .info__logo {
    display: block;
    margin-top: 2em;
  }
  .info__logo img {
    margin-bottom: 1em;
  }
  .info__logo p {
    margin: 0;
  }
}

@media only screen and (max-width: 500px) {
  .footer-nav__list,
  .footer-nav__list:nth-child(odd) {
    width: 45%;
    margin-bottom: 1.5em;
  }
  .footer-nav__list:nth-child(odd) ul {
    columns: 1;
  }
}










/*------------------------------------*\
  #ACCESS
\*------------------------------------*/


.page-content--access {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background: var(--blue);
}

.access__block {
  max-width: 400px;
  background: #fff;
  padding: 2.5em;
  border-radius: 10px;
}
.access__block p,
.access__block {
  font-size: 1em;
}

.access__logo {
  max-width: 250px;
  margin-bottom: 1em;
}

.access__block .button {
  width: 100%;
  border: none;
  margin-top: 1em;
}





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


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

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

.notification__inner {
  display: flex;
  align-items: flex-start;
  width: 92%;
  max-width: 1400px;
  padding: 0.5em 0;
  margin: 0 auto;
}

.notification__icon {
  flex: 0 0 0.95em;
  margin: 0.1em 0.5em 0 0;
  overflow: visible;
}
.notification__icon svg {
  width: 0.95em;
  height: 0.95em;
  fill: var(--orange);
}

.notification__content {
  padding-right: 2rem;
}
.notification__content p {
  font-family: 'Neue Helvetica W05', sans-serif;
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}
.notification__content p a {
  font-weight: 500;
  text-decoration: underline;
  color: #fff;
  transition: color 0.5s ease;
}
.notification__content p a:hover {
  color: var(--light-green);
}

.notification__close {
  position: relative;
  width: 18px;
  height: 100%;
  margin: auto 0 auto auto;
  cursor: pointer;
}
.notification__close::before,
.notification__close::after {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  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-green);
}


@media only screen and (max-width: 1300px) {
  .notification__icon {
    flex: 0 0 0.9em;
  }
  .notification__icon svg {
    width: 0.9em;
    height: 0.9em;
  }
  .notification__content p {
    font-size: 0.85em;
  }
}

@media only screen and (max-width: 1100px) {
  .notification__inner {
    width: 95%;
  }
  .notification__icon {
    flex: 0 0 0.85em;
    margin: 0.05em 0.5em 0 0;
  }
  .notification__icon svg {
    width: 0.85em;
    height: 0.85em;
  }
  .notification__content p {
    font-size: 0.8em;
  }
}

@media only screen and (max-width: 900px) {
  .notification__inner {
    width: 92%;
  }
}

@media only screen and (max-width: 700px) {
  .notification__inner {
    width: 88%;
  }
  .notification__content {
    padding-right: 1rem;
  }
}





/*------------------------------------*\
  #MODAL
\*------------------------------------*/


.overlay {
  position: fixed;
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(66,66,66, 0.8);
  z-index: 999999;
}

.modal {
  position: fixed;
  width: 450px;
  max-width: calc(100% - 4rem);
  max-height: calc(100% - 4rem);
  top: 50%;
  left: 50%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  z-index: 9999999;
  transform: translate(-50%,-50%);
}

.modal__close {
  position: fixed;
  display: block;
  font-size: 2.5em;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  top: 0;
  right: 0.6rem;
  cursor: pointer;
  transition: color 0.5s ease;
}
.modal__close:hover {
  color: var(--light-green);
}

.modal__content {
  display: block;
  max-height: calc(100vh - 4em);
  overflow: auto;
}
.modal__content h4 {
  font-family: 'Neue Helvetica W05', sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1.2;
  color: var(--light-blue);
  margin-bottom: 0.5em;
}
.modal__content h5 {
  font-family: 'Neue Helvetica W05', sans-serif;
  font-size: 1.3em;
  font-weight: 500;
  line-height: 1.4;
  color: var(--blue);
  margin-bottom: 0.6rem;
}
.modal__content p {
  font-family: 'Inter', sans-serif;
  font-size: 1.05em;
  font-weight: 300;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 1.2em;
}

.modal__graphic {
  background: var(--cyan);
  padding: 2rem;
}
.modal__graphic img {
  width: 55%;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  margin: auto;
}

.modal--logo .modal__close {
  color: var(--blue);
}
.modal--logo .modal__graphic {
  background: var(--lightest-cyan);
  padding: 2.5em 2em 2rem;
}
.modal--logo .modal__graphic img {
  width: 70%;
  box-shadow: none;
}
.modal--logo .modal__content {
  text-align: center;
}

.modal__text {
  padding: 2rem;
}


@media only screen and (max-width: 1300px) {
  .modal {
    width: 430px;
  }
  .modal__content h4 {
    font-size: 1.45em;
  }
  .modal__content p {
    font-size: 1em;
  }
}

@media only screen and (max-width: 1100px) {
  .modal {
    width: 400px;
  }
  .modal__content h4 {
    font-size: 1.4em;
  }
  .modal__content p {
    font-size: 0.95em;
    line-height: 1.6;
  }
  .modal__graphic {
    padding: 1.5rem;
  }
  .modal__graphic img {
    width: 50%;
  }
  .modal__text {
    padding: 1.5rem;
  }
}

@media only screen and (max-width: 700px) {
  .modal {
    width: 350px;
    max-width: calc(100% - 2rem);
    max-height: calc(100% - 2rem);
  }
  .modal__content h4 {
    font-size: 1.3em;
  }
  .modal__content p {
    font-size: 0.9em;
  }
}





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


.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(--light-green);
  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(--green);
}


@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;
  }
}










