@charset "UTF-8";
.branch-bar {
  position: fixed;
  bottom: 0;
  right: 0;
  min-width: 200px;
  z-index: 20000;
  z-index: var(--branch-bar-z-index, 20000);
  background-color: #00b2a9;
  background-color: var(--branch-bar-bg-color, #00b2a9);
  color: #fff;
  color: var(--branch-bar-color-light, #fff);
  padding: 10px;
  padding-top: 30px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 0 10px var(--branch-bar-shadow-color, rgba(0, 0, 0, 0.4));
          box-shadow: 0 0 10px var(--branch-bar-shadow-color, rgba(0, 0, 0, 0.4));
  opacity: 1;
  -webkit-transition: opacity 500ms ease-out;
  transition: opacity 500ms ease-out;
  visibility: visible;
}
.branch-bar--minified {
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
  opacity: 0.3;
  min-width: 0;
  min-height: 0;
  padding-top: 10px;
  border-top-left-radius: 3px;
}
.branch-bar--minified .branch-bar__content-col {
  height: 0;
  width: 0;
  opacity: 0;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  visibility: hidden;
}
.branch-bar--minified .branch-bar__toggle {
  display: none;
}
.branch-bar--minified .branch-bar__toggle::before {
  content: "▲";
}
.branch-bar--minified .branch-bar__preview {
  text-align: left;
}
.branch-bar--minified .branch-bar__preview-icon {
  display: inline-block;
}
.branch-bar--minified .branch-bar__branch-selector-label {
  display: none;
}
.branch-bar--minified .branch-bar__branch-selector-text {
  display: block;
}
.branch-bar--minified .branch-bar__branch-selector {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  opacity: 0;
}
.branch-bar--hidden {
  opacity: 1;
  visibility: hidden;
}
.branch-bar:hover {
  opacity: 1;
  -webkit-transition-delay: 0ms;
          transition-delay: 0ms;
  -webkit-transition-duration: 150ms;
          transition-duration: 150ms;
}
.branch-bar__label {
  font-weight: bold;
  display: block;
  margin: 0.2em 0;
}
.branch-bar__toggle {
  height: 26px;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 3px;
  padding-bottom: 3px;
  width: 100%;
  text-align: center;
  cursor: pointer;
}
.branch-bar__toggle:hover {
  background: rgba(#fff, 0.2);
  background: rgba(var(--branch-bar-color-light, #fff), 0.2);
}
.branch-bar__toggle::before {
  content: "▼";
}
.branch-bar__content-col {
  height: auto;
  width: auto;
  visibility: visible;
  opacity: 1;
  overflow: hidden;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 8px;
  margin-bottom: 8px;
  border-top: 1px solid rgba(#fff, 0.2);
  border-top: 1px solid rgba(var(--branch-bar-color-light, #fff), 0.2);
}
.branch-bar__select {
  color: #000;
  color: var(--branch-bar-color-dark, #000);
  width: 100%;
  max-width: 300px;
}
.branch-bar__button {
  color: #000;
  color: var(--branch-bar-color-dark, #000);
  border: 1px solid #fff;
  border: 1px solid var(--branch-bar-color-light, #fff);
  border-radius: 2px;
}
.branch-bar__preview {
  text-align: left;
  display: -ms-flexbox;
  display: flex;
}
.branch-bar__preview-title {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin-top: auto;
  margin-bottom: auto;
}
.branch-bar__preview-icon {
  width: 30px;
  height: 30px;
  fill: currentColor;
  vertical-align: middle;
  margin-left: 20px;
  margin-top: auto;
  margin-bottom: auto;
  display: none;
  cursor: pointer;
  -webkit-filter: drop-shadow(0 0 1px rgba(#fff, 0));
          filter: drop-shadow(0 0 1px rgba(#fff, 0));
  -webkit-filter: drop-shadow(0 0 1px rgba(var(--branch-bar-color-light, #fff), 0));
          filter: drop-shadow(0 0 1px rgba(var(--branch-bar-color-light, #fff), 0));
  -webkit-transition: fill 200ms ease-out, -webkit-filter 200ms ease-out;
  transition: fill 200ms ease-out, -webkit-filter 200ms ease-out;
  transition: filter 200ms ease-out, fill 200ms ease-out;
  transition: filter 200ms ease-out, fill 200ms ease-out, -webkit-filter 200ms ease-out;
}
.branch-bar__preview-icon:hover {
  -webkit-filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff);
          filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff);
  -webkit-filter: drop-shadow(0 0 2px var(--branch-bar-color-light, #fff)) drop-shadow(0 0 2px var(--branch-bar-color-light, #fff)) drop-shadow(0 0 2px var(--branch-bar-color-light, #fff)) drop-shadow(0 0 2px var(--branch-bar-color-light, #fff));
          filter: drop-shadow(0 0 2px var(--branch-bar-color-light, #fff)) drop-shadow(0 0 2px var(--branch-bar-color-light, #fff)) drop-shadow(0 0 2px var(--branch-bar-color-light, #fff)) drop-shadow(0 0 2px var(--branch-bar-color-light, #fff));
  fill: #00b2a9;
  fill: var(--branch-bar-bg-color, #00b2a9);
}
.branch-bar__preview-icon svg {
  max-width: 100%;
  height: auto;
}
.branch-bar__selector-form {
  display: inline;
}
.branch-bar__branch-selector-text {
  position: relative;
  z-index: 1;
  display: none;
}
.branch-bar__branch-selector-label {
  display: block;
}
.branch-bar__branch-selector {
  width: 100%;
  cursor: pointer;
  color: #000;
  color: var(--branch-bar-color-dark, #000);
}

/*# sourceMappingURL=styles.css.map */

/*!
 * Bootstrap Grid v5.3.3 (https://getbootstrap.com/)
 * Copyright 2011-2024 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */.container,.container-fluid,.container-xxl,.container-xl,.container-lg,.container-md,.container-sm{--bs-gutter-x: 16px;--bs-gutter-y: 0;width:100%;padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-right:auto;margin-left:auto}@media(min-width: 375px){.container-sm,.container{max-width:100%}}@media(min-width: 768px){.container-md,.container-sm,.container{max-width:688px}}@media(min-width: 1024px){.container-lg,.container-md,.container-sm,.container{max-width:944px}}@media(min-width: 1200px){.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1120px}}@media(min-width: 1440px){.container-xxl,.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1360px}}:root{--bs-breakpoint-xs: 0;--bs-breakpoint-sm: 375px;--bs-breakpoint-md: 768px;--bs-breakpoint-lg: 1024px;--bs-breakpoint-xl: 1200px;--bs-breakpoint-xxl: 1440px}.row{--bs-gutter-x: 16px;--bs-gutter-y: 0;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-top:calc(-1*var(--bs-gutter-y));margin-right:calc(-0.5*var(--bs-gutter-x));margin-left:calc(-0.5*var(--bs-gutter-x))}.row>*{-webkit-box-sizing:border-box;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-top:var(--bs-gutter-y)}.col{-ms-flex:1 0 0%;flex:1 0 0%}.row-cols-auto>*{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.row-cols-1>*{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.row-cols-2>*{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.row-cols-3>*{-ms-flex:0 0 auto;flex:0 0 auto;width:33.33333333%}.row-cols-4>*{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.row-cols-5>*{-ms-flex:0 0 auto;flex:0 0 auto;width:20%}.row-cols-6>*{-ms-flex:0 0 auto;flex:0 0 auto;width:16.66666667%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.col-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.33333333%}.col-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.66666667%}.col-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.col-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.33333333%}.col-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.66666667%}.col-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.col-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.33333333%}.col-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.66666667%}.col-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.col-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.33333333%}.col-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.66666667%}.col-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x: 0}.g-0,.gy-0{--bs-gutter-y: 0}.g-1,.gx-1{--bs-gutter-x: 0.25rem}.g-1,.gy-1{--bs-gutter-y: 0.25rem}.g-2,.gx-2{--bs-gutter-x: 0.5rem}.g-2,.gy-2{--bs-gutter-y: 0.5rem}.g-3,.gx-3{--bs-gutter-x: 1rem}.g-3,.gy-3{--bs-gutter-y: 1rem}.g-4,.gx-4{--bs-gutter-x: 1.5rem}.g-4,.gy-4{--bs-gutter-y: 1.5rem}.g-5,.gx-5{--bs-gutter-x: 3rem}.g-5,.gy-5{--bs-gutter-y: 3rem}@media(min-width: 375px){.col-sm{-ms-flex:1 0 0%;flex:1 0 0%}.row-cols-sm-auto>*{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.row-cols-sm-1>*{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.row-cols-sm-2>*{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.row-cols-sm-3>*{-ms-flex:0 0 auto;flex:0 0 auto;width:33.33333333%}.row-cols-sm-4>*{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.row-cols-sm-5>*{-ms-flex:0 0 auto;flex:0 0 auto;width:20%}.row-cols-sm-6>*{-ms-flex:0 0 auto;flex:0 0 auto;width:16.66666667%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.col-sm-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.33333333%}.col-sm-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.66666667%}.col-sm-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.col-sm-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.33333333%}.col-sm-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.66666667%}.col-sm-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.col-sm-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.33333333%}.col-sm-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.66666667%}.col-sm-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.col-sm-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.33333333%}.col-sm-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.66666667%}.col-sm-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x: 0}.g-sm-0,.gy-sm-0{--bs-gutter-y: 0}.g-sm-1,.gx-sm-1{--bs-gutter-x: 0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y: 0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x: 0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y: 0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x: 1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y: 1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x: 1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y: 1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x: 3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y: 3rem}}@media(min-width: 768px){.col-md{-ms-flex:1 0 0%;flex:1 0 0%}.row-cols-md-auto>*{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.row-cols-md-1>*{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.row-cols-md-2>*{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.row-cols-md-3>*{-ms-flex:0 0 auto;flex:0 0 auto;width:33.33333333%}.row-cols-md-4>*{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.row-cols-md-5>*{-ms-flex:0 0 auto;flex:0 0 auto;width:20%}.row-cols-md-6>*{-ms-flex:0 0 auto;flex:0 0 auto;width:16.66666667%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.col-md-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.33333333%}.col-md-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.66666667%}.col-md-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.col-md-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.33333333%}.col-md-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.66666667%}.col-md-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.col-md-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.33333333%}.col-md-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.66666667%}.col-md-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.col-md-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.33333333%}.col-md-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.66666667%}.col-md-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x: 0}.g-md-0,.gy-md-0{--bs-gutter-y: 0}.g-md-1,.gx-md-1{--bs-gutter-x: 0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y: 0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x: 0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y: 0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x: 1rem}.g-md-3,.gy-md-3{--bs-gutter-y: 1rem}.g-md-4,.gx-md-4{--bs-gutter-x: 1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y: 1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x: 3rem}.g-md-5,.gy-md-5{--bs-gutter-y: 3rem}}@media(min-width: 1024px){.col-lg{-ms-flex:1 0 0%;flex:1 0 0%}.row-cols-lg-auto>*{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.row-cols-lg-1>*{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.row-cols-lg-2>*{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.row-cols-lg-3>*{-ms-flex:0 0 auto;flex:0 0 auto;width:33.33333333%}.row-cols-lg-4>*{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.row-cols-lg-5>*{-ms-flex:0 0 auto;flex:0 0 auto;width:20%}.row-cols-lg-6>*{-ms-flex:0 0 auto;flex:0 0 auto;width:16.66666667%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.col-lg-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.33333333%}.col-lg-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.66666667%}.col-lg-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.col-lg-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.33333333%}.col-lg-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.66666667%}.col-lg-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.col-lg-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.33333333%}.col-lg-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.66666667%}.col-lg-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.col-lg-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.33333333%}.col-lg-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.66666667%}.col-lg-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x: 0}.g-lg-0,.gy-lg-0{--bs-gutter-y: 0}.g-lg-1,.gx-lg-1{--bs-gutter-x: 0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y: 0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x: 0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y: 0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x: 1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y: 1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x: 1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y: 1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x: 3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y: 3rem}}@media(min-width: 1200px){.col-xl{-ms-flex:1 0 0%;flex:1 0 0%}.row-cols-xl-auto>*{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.row-cols-xl-1>*{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.row-cols-xl-2>*{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.row-cols-xl-3>*{-ms-flex:0 0 auto;flex:0 0 auto;width:33.33333333%}.row-cols-xl-4>*{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.row-cols-xl-5>*{-ms-flex:0 0 auto;flex:0 0 auto;width:20%}.row-cols-xl-6>*{-ms-flex:0 0 auto;flex:0 0 auto;width:16.66666667%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.col-xl-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.33333333%}.col-xl-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.66666667%}.col-xl-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.col-xl-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.33333333%}.col-xl-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.66666667%}.col-xl-6,.footer .policy-links ul{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.col-xl-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.33333333%}.col-xl-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.66666667%}.col-xl-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.col-xl-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.33333333%}.col-xl-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.66666667%}.col-xl-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x: 0}.g-xl-0,.gy-xl-0{--bs-gutter-y: 0}.g-xl-1,.gx-xl-1{--bs-gutter-x: 0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y: 0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x: 0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y: 0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x: 1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y: 1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x: 1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y: 1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x: 3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y: 3rem}}@media(min-width: 1440px){.col-xxl{-ms-flex:1 0 0%;flex:1 0 0%}.row-cols-xxl-auto>*{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.row-cols-xxl-1>*{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.row-cols-xxl-2>*{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.row-cols-xxl-3>*{-ms-flex:0 0 auto;flex:0 0 auto;width:33.33333333%}.row-cols-xxl-4>*{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.row-cols-xxl-5>*{-ms-flex:0 0 auto;flex:0 0 auto;width:20%}.row-cols-xxl-6>*{-ms-flex:0 0 auto;flex:0 0 auto;width:16.66666667%}.col-xxl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.col-xxl-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.33333333%}.col-xxl-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.66666667%}.col-xxl-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.col-xxl-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.33333333%}.col-xxl-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.66666667%}.col-xxl-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.col-xxl-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.33333333%}.col-xxl-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.66666667%}.col-xxl-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.col-xxl-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.33333333%}.col-xxl-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.66666667%}.col-xxl-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x: 0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y: 0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x: 0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y: 0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x: 0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y: 0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x: 1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y: 1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x: 1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y: 1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x: 3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y: 3rem}}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-grid{display:grid !important}.d-inline-grid{display:inline-grid !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:-ms-flexbox !important;display:flex !important}.d-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}.d-none{display:none !important}.flex-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.flex-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.justify-content-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.justify-content-evenly{-ms-flex-pack:space-evenly !important;justify-content:space-evenly !important}.align-items-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-center{-ms-flex-align:center !important;align-items:center !important}.align-items-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}.order-first{-ms-flex-order:-1 !important;order:-1 !important}.order-0{-ms-flex-order:0 !important;order:0 !important}.order-1{-ms-flex-order:1 !important;order:1 !important}.order-2{-ms-flex-order:2 !important;order:2 !important}.order-3{-ms-flex-order:3 !important;order:3 !important}.order-4{-ms-flex-order:4 !important;order:4 !important}.order-5{-ms-flex-order:5 !important;order:5 !important}.order-last{-ms-flex-order:6 !important;order:6 !important}.m-0{margin:0 !important}.m-1{margin:.25rem !important}.m-2{margin:.5rem !important}.m-3{margin:1rem !important}.m-4{margin:1.5rem !important}.m-5{margin:3rem !important}.m-auto{margin:auto !important}.mx-0{margin-right:0 !important;margin-left:0 !important}.mx-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-3{margin-right:1rem !important;margin-left:1rem !important}.mx-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-5{margin-right:3rem !important;margin-left:3rem !important}.mx-auto{margin-right:auto !important;margin-left:auto !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-0{margin-top:0 !important}.mt-1{margin-top:.25rem !important}.mt-2{margin-top:.5rem !important}.mt-3{margin-top:1rem !important}.mt-4{margin-top:1.5rem !important}.mt-5{margin-top:3rem !important}.mt-auto{margin-top:auto !important}.me-0{margin-right:0 !important}.me-1{margin-right:.25rem !important}.me-2{margin-right:.5rem !important}.me-3{margin-right:1rem !important}.me-4{margin-right:1.5rem !important}.me-5{margin-right:3rem !important}.me-auto{margin-right:auto !important}.mb-0{margin-bottom:0 !important}.mb-1{margin-bottom:.25rem !important}.mb-2{margin-bottom:.5rem !important}.mb-3{margin-bottom:1rem !important}.mb-4{margin-bottom:1.5rem !important}.mb-5{margin-bottom:3rem !important}.mb-auto{margin-bottom:auto !important}.ms-0{margin-left:0 !important}.ms-1{margin-left:.25rem !important}.ms-2{margin-left:.5rem !important}.ms-3{margin-left:1rem !important}.ms-4{margin-left:1.5rem !important}.ms-5{margin-left:3rem !important}.ms-auto{margin-left:auto !important}.p-0{padding:0 !important}.p-1{padding:.25rem !important}.p-2{padding:.5rem !important}.p-3{padding:1rem !important}.p-4{padding:1.5rem !important}.p-5{padding:3rem !important}.px-0{padding-right:0 !important;padding-left:0 !important}.px-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-3{padding-right:1rem !important;padding-left:1rem !important}.px-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-5{padding-right:3rem !important;padding-left:3rem !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-0{padding-top:0 !important}.pt-1{padding-top:.25rem !important}.pt-2{padding-top:.5rem !important}.pt-3{padding-top:1rem !important}.pt-4{padding-top:1.5rem !important}.pt-5{padding-top:3rem !important}.pe-0{padding-right:0 !important}.pe-1{padding-right:.25rem !important}.pe-2{padding-right:.5rem !important}.pe-3{padding-right:1rem !important}.pe-4{padding-right:1.5rem !important}.pe-5{padding-right:3rem !important}.pb-0{padding-bottom:0 !important}.pb-1{padding-bottom:.25rem !important}.pb-2{padding-bottom:.5rem !important}.pb-3{padding-bottom:1rem !important}.pb-4{padding-bottom:1.5rem !important}.pb-5{padding-bottom:3rem !important}.ps-0{padding-left:0 !important}.ps-1{padding-left:.25rem !important}.ps-2{padding-left:.5rem !important}.ps-3{padding-left:1rem !important}.ps-4{padding-left:1.5rem !important}.ps-5{padding-left:3rem !important}@media(min-width: 375px){.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-grid{display:grid !important}.d-sm-inline-grid{display:inline-grid !important}.d-sm-table{display:table !important}.d-sm-table-row{display:table-row !important}.d-sm-table-cell{display:table-cell !important}.d-sm-flex{display:-ms-flexbox !important;display:flex !important}.d-sm-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}.d-sm-none{display:none !important}.flex-sm-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-sm-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-sm-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-sm-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-sm-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-sm-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-sm-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.flex-sm-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-sm-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.justify-content-sm-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-sm-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-sm-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-sm-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-sm-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.justify-content-sm-evenly{-ms-flex-pack:space-evenly !important;justify-content:space-evenly !important}.align-items-sm-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-sm-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-sm-center{-ms-flex-align:center !important;align-items:center !important}.align-items-sm-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-sm-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-sm-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-sm-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-sm-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-sm-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-sm-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-sm-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-sm-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-sm-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-sm-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-sm-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-sm-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-sm-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}.order-sm-first{-ms-flex-order:-1 !important;order:-1 !important}.order-sm-0{-ms-flex-order:0 !important;order:0 !important}.order-sm-1{-ms-flex-order:1 !important;order:1 !important}.order-sm-2{-ms-flex-order:2 !important;order:2 !important}.order-sm-3{-ms-flex-order:3 !important;order:3 !important}.order-sm-4{-ms-flex-order:4 !important;order:4 !important}.order-sm-5{-ms-flex-order:5 !important;order:5 !important}.order-sm-last{-ms-flex-order:6 !important;order:6 !important}.m-sm-0{margin:0 !important}.m-sm-1{margin:.25rem !important}.m-sm-2{margin:.5rem !important}.m-sm-3{margin:1rem !important}.m-sm-4{margin:1.5rem !important}.m-sm-5{margin:3rem !important}.m-sm-auto{margin:auto !important}.mx-sm-0{margin-right:0 !important;margin-left:0 !important}.mx-sm-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-sm-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-sm-3{margin-right:1rem !important;margin-left:1rem !important}.mx-sm-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-sm-5{margin-right:3rem !important;margin-left:3rem !important}.mx-sm-auto{margin-right:auto !important;margin-left:auto !important}.my-sm-0{margin-top:0 !important;margin-bottom:0 !important}.my-sm-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-sm-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-sm-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-sm-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-sm-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-sm-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-sm-0{margin-top:0 !important}.mt-sm-1{margin-top:.25rem !important}.mt-sm-2{margin-top:.5rem !important}.mt-sm-3{margin-top:1rem !important}.mt-sm-4{margin-top:1.5rem !important}.mt-sm-5{margin-top:3rem !important}.mt-sm-auto{margin-top:auto !important}.me-sm-0{margin-right:0 !important}.me-sm-1{margin-right:.25rem !important}.me-sm-2{margin-right:.5rem !important}.me-sm-3{margin-right:1rem !important}.me-sm-4{margin-right:1.5rem !important}.me-sm-5{margin-right:3rem !important}.me-sm-auto{margin-right:auto !important}.mb-sm-0{margin-bottom:0 !important}.mb-sm-1{margin-bottom:.25rem !important}.mb-sm-2{margin-bottom:.5rem !important}.mb-sm-3{margin-bottom:1rem !important}.mb-sm-4{margin-bottom:1.5rem !important}.mb-sm-5{margin-bottom:3rem !important}.mb-sm-auto{margin-bottom:auto !important}.ms-sm-0{margin-left:0 !important}.ms-sm-1{margin-left:.25rem !important}.ms-sm-2{margin-left:.5rem !important}.ms-sm-3{margin-left:1rem !important}.ms-sm-4{margin-left:1.5rem !important}.ms-sm-5{margin-left:3rem !important}.ms-sm-auto{margin-left:auto !important}.p-sm-0{padding:0 !important}.p-sm-1{padding:.25rem !important}.p-sm-2{padding:.5rem !important}.p-sm-3{padding:1rem !important}.p-sm-4{padding:1.5rem !important}.p-sm-5{padding:3rem !important}.px-sm-0{padding-right:0 !important;padding-left:0 !important}.px-sm-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-sm-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-sm-3{padding-right:1rem !important;padding-left:1rem !important}.px-sm-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-sm-5{padding-right:3rem !important;padding-left:3rem !important}.py-sm-0{padding-top:0 !important;padding-bottom:0 !important}.py-sm-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-sm-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-sm-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-sm-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-sm-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-sm-0{padding-top:0 !important}.pt-sm-1{padding-top:.25rem !important}.pt-sm-2{padding-top:.5rem !important}.pt-sm-3{padding-top:1rem !important}.pt-sm-4{padding-top:1.5rem !important}.pt-sm-5{padding-top:3rem !important}.pe-sm-0{padding-right:0 !important}.pe-sm-1{padding-right:.25rem !important}.pe-sm-2{padding-right:.5rem !important}.pe-sm-3{padding-right:1rem !important}.pe-sm-4{padding-right:1.5rem !important}.pe-sm-5{padding-right:3rem !important}.pb-sm-0{padding-bottom:0 !important}.pb-sm-1{padding-bottom:.25rem !important}.pb-sm-2{padding-bottom:.5rem !important}.pb-sm-3{padding-bottom:1rem !important}.pb-sm-4{padding-bottom:1.5rem !important}.pb-sm-5{padding-bottom:3rem !important}.ps-sm-0{padding-left:0 !important}.ps-sm-1{padding-left:.25rem !important}.ps-sm-2{padding-left:.5rem !important}.ps-sm-3{padding-left:1rem !important}.ps-sm-4{padding-left:1.5rem !important}.ps-sm-5{padding-left:3rem !important}}@media(min-width: 768px){.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-grid{display:grid !important}.d-md-inline-grid{display:inline-grid !important}.d-md-table{display:table !important}.d-md-table-row{display:table-row !important}.d-md-table-cell{display:table-cell !important}.d-md-flex{display:-ms-flexbox !important;display:flex !important}.d-md-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}.d-md-none{display:none !important}.flex-md-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-md-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-md-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-md-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-md-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-md-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-md-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-md-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-md-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.flex-md-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-md-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.justify-content-md-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-md-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-md-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-md-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-md-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.justify-content-md-evenly{-ms-flex-pack:space-evenly !important;justify-content:space-evenly !important}.align-items-md-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-md-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-md-center{-ms-flex-align:center !important;align-items:center !important}.align-items-md-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-md-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-md-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-md-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-md-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-md-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-md-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-md-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-md-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-md-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-md-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-md-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-md-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-md-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}.order-md-first{-ms-flex-order:-1 !important;order:-1 !important}.order-md-0{-ms-flex-order:0 !important;order:0 !important}.order-md-1{-ms-flex-order:1 !important;order:1 !important}.order-md-2{-ms-flex-order:2 !important;order:2 !important}.order-md-3{-ms-flex-order:3 !important;order:3 !important}.order-md-4{-ms-flex-order:4 !important;order:4 !important}.order-md-5{-ms-flex-order:5 !important;order:5 !important}.order-md-last{-ms-flex-order:6 !important;order:6 !important}.m-md-0{margin:0 !important}.m-md-1{margin:.25rem !important}.m-md-2{margin:.5rem !important}.m-md-3{margin:1rem !important}.m-md-4{margin:1.5rem !important}.m-md-5{margin:3rem !important}.m-md-auto{margin:auto !important}.mx-md-0{margin-right:0 !important;margin-left:0 !important}.mx-md-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-md-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-md-3{margin-right:1rem !important;margin-left:1rem !important}.mx-md-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-md-5{margin-right:3rem !important;margin-left:3rem !important}.mx-md-auto{margin-right:auto !important;margin-left:auto !important}.my-md-0{margin-top:0 !important;margin-bottom:0 !important}.my-md-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-md-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-md-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-md-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-md-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-md-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-md-0{margin-top:0 !important}.mt-md-1{margin-top:.25rem !important}.mt-md-2{margin-top:.5rem !important}.mt-md-3{margin-top:1rem !important}.mt-md-4{margin-top:1.5rem !important}.mt-md-5{margin-top:3rem !important}.mt-md-auto{margin-top:auto !important}.me-md-0{margin-right:0 !important}.me-md-1{margin-right:.25rem !important}.me-md-2{margin-right:.5rem !important}.me-md-3{margin-right:1rem !important}.me-md-4{margin-right:1.5rem !important}.me-md-5{margin-right:3rem !important}.me-md-auto{margin-right:auto !important}.mb-md-0{margin-bottom:0 !important}.mb-md-1{margin-bottom:.25rem !important}.mb-md-2{margin-bottom:.5rem !important}.mb-md-3{margin-bottom:1rem !important}.mb-md-4{margin-bottom:1.5rem !important}.mb-md-5{margin-bottom:3rem !important}.mb-md-auto{margin-bottom:auto !important}.ms-md-0{margin-left:0 !important}.ms-md-1{margin-left:.25rem !important}.ms-md-2{margin-left:.5rem !important}.ms-md-3{margin-left:1rem !important}.ms-md-4{margin-left:1.5rem !important}.ms-md-5{margin-left:3rem !important}.ms-md-auto{margin-left:auto !important}.p-md-0{padding:0 !important}.p-md-1{padding:.25rem !important}.p-md-2{padding:.5rem !important}.p-md-3{padding:1rem !important}.p-md-4{padding:1.5rem !important}.p-md-5{padding:3rem !important}.px-md-0{padding-right:0 !important;padding-left:0 !important}.px-md-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-md-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-md-3{padding-right:1rem !important;padding-left:1rem !important}.px-md-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-md-5{padding-right:3rem !important;padding-left:3rem !important}.py-md-0{padding-top:0 !important;padding-bottom:0 !important}.py-md-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-md-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-md-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-md-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-md-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-md-0{padding-top:0 !important}.pt-md-1{padding-top:.25rem !important}.pt-md-2{padding-top:.5rem !important}.pt-md-3{padding-top:1rem !important}.pt-md-4{padding-top:1.5rem !important}.pt-md-5{padding-top:3rem !important}.pe-md-0{padding-right:0 !important}.pe-md-1{padding-right:.25rem !important}.pe-md-2{padding-right:.5rem !important}.pe-md-3{padding-right:1rem !important}.pe-md-4{padding-right:1.5rem !important}.pe-md-5{padding-right:3rem !important}.pb-md-0{padding-bottom:0 !important}.pb-md-1{padding-bottom:.25rem !important}.pb-md-2{padding-bottom:.5rem !important}.pb-md-3{padding-bottom:1rem !important}.pb-md-4{padding-bottom:1.5rem !important}.pb-md-5{padding-bottom:3rem !important}.ps-md-0{padding-left:0 !important}.ps-md-1{padding-left:.25rem !important}.ps-md-2{padding-left:.5rem !important}.ps-md-3{padding-left:1rem !important}.ps-md-4{padding-left:1.5rem !important}.ps-md-5{padding-left:3rem !important}}@media(min-width: 1024px){.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-grid{display:grid !important}.d-lg-inline-grid{display:inline-grid !important}.d-lg-table{display:table !important}.d-lg-table-row{display:table-row !important}.d-lg-table-cell{display:table-cell !important}.d-lg-flex,.footer .policy-links ul{display:-ms-flexbox !important;display:flex !important}.d-lg-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}.d-lg-none{display:none !important}.flex-lg-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-lg-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-lg-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-lg-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-lg-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-lg-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-lg-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.flex-lg-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-lg-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.justify-content-lg-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-lg-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-lg-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-lg-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-lg-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.justify-content-lg-evenly{-ms-flex-pack:space-evenly !important;justify-content:space-evenly !important}.align-items-lg-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-lg-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-lg-center{-ms-flex-align:center !important;align-items:center !important}.align-items-lg-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-lg-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-lg-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-lg-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-lg-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-lg-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-lg-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-lg-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-lg-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-lg-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-lg-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-lg-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-lg-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-lg-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}.order-lg-first{-ms-flex-order:-1 !important;order:-1 !important}.order-lg-0{-ms-flex-order:0 !important;order:0 !important}.order-lg-1{-ms-flex-order:1 !important;order:1 !important}.order-lg-2{-ms-flex-order:2 !important;order:2 !important}.order-lg-3{-ms-flex-order:3 !important;order:3 !important}.order-lg-4{-ms-flex-order:4 !important;order:4 !important}.order-lg-5{-ms-flex-order:5 !important;order:5 !important}.order-lg-last{-ms-flex-order:6 !important;order:6 !important}.m-lg-0{margin:0 !important}.m-lg-1{margin:.25rem !important}.m-lg-2{margin:.5rem !important}.m-lg-3{margin:1rem !important}.m-lg-4{margin:1.5rem !important}.m-lg-5{margin:3rem !important}.m-lg-auto{margin:auto !important}.mx-lg-0{margin-right:0 !important;margin-left:0 !important}.mx-lg-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-lg-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-lg-3{margin-right:1rem !important;margin-left:1rem !important}.mx-lg-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-lg-5{margin-right:3rem !important;margin-left:3rem !important}.mx-lg-auto{margin-right:auto !important;margin-left:auto !important}.my-lg-0{margin-top:0 !important;margin-bottom:0 !important}.my-lg-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-lg-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-lg-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-lg-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-lg-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-lg-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-lg-0{margin-top:0 !important}.mt-lg-1{margin-top:.25rem !important}.mt-lg-2{margin-top:.5rem !important}.mt-lg-3{margin-top:1rem !important}.mt-lg-4{margin-top:1.5rem !important}.mt-lg-5{margin-top:3rem !important}.mt-lg-auto{margin-top:auto !important}.me-lg-0{margin-right:0 !important}.me-lg-1{margin-right:.25rem !important}.me-lg-2{margin-right:.5rem !important}.me-lg-3{margin-right:1rem !important}.me-lg-4{margin-right:1.5rem !important}.me-lg-5{margin-right:3rem !important}.me-lg-auto{margin-right:auto !important}.mb-lg-0{margin-bottom:0 !important}.mb-lg-1{margin-bottom:.25rem !important}.mb-lg-2{margin-bottom:.5rem !important}.mb-lg-3{margin-bottom:1rem !important}.mb-lg-4{margin-bottom:1.5rem !important}.mb-lg-5{margin-bottom:3rem !important}.mb-lg-auto{margin-bottom:auto !important}.ms-lg-0{margin-left:0 !important}.ms-lg-1{margin-left:.25rem !important}.ms-lg-2{margin-left:.5rem !important}.ms-lg-3{margin-left:1rem !important}.ms-lg-4{margin-left:1.5rem !important}.ms-lg-5{margin-left:3rem !important}.ms-lg-auto{margin-left:auto !important}.p-lg-0{padding:0 !important}.p-lg-1{padding:.25rem !important}.p-lg-2{padding:.5rem !important}.p-lg-3{padding:1rem !important}.p-lg-4{padding:1.5rem !important}.p-lg-5{padding:3rem !important}.px-lg-0{padding-right:0 !important;padding-left:0 !important}.px-lg-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-lg-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-lg-3{padding-right:1rem !important;padding-left:1rem !important}.px-lg-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-lg-5{padding-right:3rem !important;padding-left:3rem !important}.py-lg-0{padding-top:0 !important;padding-bottom:0 !important}.py-lg-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-lg-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-lg-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-lg-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-lg-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-lg-0{padding-top:0 !important}.pt-lg-1{padding-top:.25rem !important}.pt-lg-2{padding-top:.5rem !important}.pt-lg-3{padding-top:1rem !important}.pt-lg-4{padding-top:1.5rem !important}.pt-lg-5{padding-top:3rem !important}.pe-lg-0{padding-right:0 !important}.pe-lg-1{padding-right:.25rem !important}.pe-lg-2{padding-right:.5rem !important}.pe-lg-3{padding-right:1rem !important}.pe-lg-4{padding-right:1.5rem !important}.pe-lg-5{padding-right:3rem !important}.pb-lg-0{padding-bottom:0 !important}.pb-lg-1{padding-bottom:.25rem !important}.pb-lg-2{padding-bottom:.5rem !important}.pb-lg-3{padding-bottom:1rem !important}.pb-lg-4{padding-bottom:1.5rem !important}.pb-lg-5{padding-bottom:3rem !important}.ps-lg-0{padding-left:0 !important}.ps-lg-1{padding-left:.25rem !important}.ps-lg-2{padding-left:.5rem !important}.ps-lg-3{padding-left:1rem !important}.ps-lg-4{padding-left:1.5rem !important}.ps-lg-5{padding-left:3rem !important}}@media(min-width: 1200px){.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-grid{display:grid !important}.d-xl-inline-grid{display:inline-grid !important}.d-xl-table{display:table !important}.d-xl-table-row{display:table-row !important}.d-xl-table-cell{display:table-cell !important}.d-xl-flex{display:-ms-flexbox !important;display:flex !important}.d-xl-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}.d-xl-none{display:none !important}.flex-xl-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-xl-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-xl-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-xl-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-xl-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-xl-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-xl-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.flex-xl-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-xl-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.justify-content-xl-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-xl-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-xl-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-xl-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-xl-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.justify-content-xl-evenly{-ms-flex-pack:space-evenly !important;justify-content:space-evenly !important}.align-items-xl-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-xl-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-xl-center{-ms-flex-align:center !important;align-items:center !important}.align-items-xl-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-xl-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-xl-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-xl-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-xl-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-xl-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-xl-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-xl-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-xl-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-xl-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-xl-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-xl-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-xl-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-xl-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}.order-xl-first{-ms-flex-order:-1 !important;order:-1 !important}.order-xl-0{-ms-flex-order:0 !important;order:0 !important}.order-xl-1{-ms-flex-order:1 !important;order:1 !important}.order-xl-2{-ms-flex-order:2 !important;order:2 !important}.order-xl-3{-ms-flex-order:3 !important;order:3 !important}.order-xl-4{-ms-flex-order:4 !important;order:4 !important}.order-xl-5{-ms-flex-order:5 !important;order:5 !important}.order-xl-last{-ms-flex-order:6 !important;order:6 !important}.m-xl-0{margin:0 !important}.m-xl-1{margin:.25rem !important}.m-xl-2{margin:.5rem !important}.m-xl-3{margin:1rem !important}.m-xl-4{margin:1.5rem !important}.m-xl-5{margin:3rem !important}.m-xl-auto{margin:auto !important}.mx-xl-0{margin-right:0 !important;margin-left:0 !important}.mx-xl-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xl-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xl-5{margin-right:3rem !important;margin-left:3rem !important}.mx-xl-auto{margin-right:auto !important;margin-left:auto !important}.my-xl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xl-0{margin-top:0 !important}.mt-xl-1{margin-top:.25rem !important}.mt-xl-2{margin-top:.5rem !important}.mt-xl-3{margin-top:1rem !important}.mt-xl-4{margin-top:1.5rem !important}.mt-xl-5{margin-top:3rem !important}.mt-xl-auto{margin-top:auto !important}.me-xl-0{margin-right:0 !important}.me-xl-1{margin-right:.25rem !important}.me-xl-2{margin-right:.5rem !important}.me-xl-3{margin-right:1rem !important}.me-xl-4{margin-right:1.5rem !important}.me-xl-5{margin-right:3rem !important}.me-xl-auto{margin-right:auto !important}.mb-xl-0{margin-bottom:0 !important}.mb-xl-1{margin-bottom:.25rem !important}.mb-xl-2{margin-bottom:.5rem !important}.mb-xl-3{margin-bottom:1rem !important}.mb-xl-4{margin-bottom:1.5rem !important}.mb-xl-5{margin-bottom:3rem !important}.mb-xl-auto{margin-bottom:auto !important}.ms-xl-0{margin-left:0 !important}.ms-xl-1{margin-left:.25rem !important}.ms-xl-2{margin-left:.5rem !important}.ms-xl-3{margin-left:1rem !important}.ms-xl-4{margin-left:1.5rem !important}.ms-xl-5{margin-left:3rem !important}.ms-xl-auto{margin-left:auto !important}.p-xl-0{padding:0 !important}.p-xl-1{padding:.25rem !important}.p-xl-2{padding:.5rem !important}.p-xl-3{padding:1rem !important}.p-xl-4{padding:1.5rem !important}.p-xl-5{padding:3rem !important}.px-xl-0{padding-right:0 !important;padding-left:0 !important}.px-xl-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-xl-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-xl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xl-5{padding-right:3rem !important;padding-left:3rem !important}.py-xl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xl-0{padding-top:0 !important}.pt-xl-1{padding-top:.25rem !important}.pt-xl-2{padding-top:.5rem !important}.pt-xl-3{padding-top:1rem !important}.pt-xl-4{padding-top:1.5rem !important}.pt-xl-5{padding-top:3rem !important}.pe-xl-0{padding-right:0 !important}.pe-xl-1{padding-right:.25rem !important}.pe-xl-2{padding-right:.5rem !important}.pe-xl-3{padding-right:1rem !important}.pe-xl-4{padding-right:1.5rem !important}.pe-xl-5{padding-right:3rem !important}.pb-xl-0{padding-bottom:0 !important}.pb-xl-1{padding-bottom:.25rem !important}.pb-xl-2{padding-bottom:.5rem !important}.pb-xl-3{padding-bottom:1rem !important}.pb-xl-4{padding-bottom:1.5rem !important}.pb-xl-5{padding-bottom:3rem !important}.ps-xl-0{padding-left:0 !important}.ps-xl-1{padding-left:.25rem !important}.ps-xl-2{padding-left:.5rem !important}.ps-xl-3{padding-left:1rem !important}.ps-xl-4{padding-left:1.5rem !important}.ps-xl-5{padding-left:3rem !important}}@media(min-width: 1440px){.d-xxl-inline{display:inline !important}.d-xxl-inline-block{display:inline-block !important}.d-xxl-block{display:block !important}.d-xxl-grid{display:grid !important}.d-xxl-inline-grid{display:inline-grid !important}.d-xxl-table{display:table !important}.d-xxl-table-row{display:table-row !important}.d-xxl-table-cell{display:table-cell !important}.d-xxl-flex{display:-ms-flexbox !important;display:flex !important}.d-xxl-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}.d-xxl-none{display:none !important}.flex-xxl-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-xxl-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-xxl-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-xxl-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-xxl-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-xxl-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-xxl-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-xxl-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-xxl-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.flex-xxl-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-xxl-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-xxl-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.justify-content-xxl-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-xxl-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-xxl-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-xxl-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-xxl-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.justify-content-xxl-evenly{-ms-flex-pack:space-evenly !important;justify-content:space-evenly !important}.align-items-xxl-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-xxl-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-xxl-center{-ms-flex-align:center !important;align-items:center !important}.align-items-xxl-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-xxl-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-xxl-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-xxl-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-xxl-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-xxl-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-xxl-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-xxl-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-xxl-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-xxl-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-xxl-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-xxl-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-xxl-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-xxl-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}.order-xxl-first{-ms-flex-order:-1 !important;order:-1 !important}.order-xxl-0{-ms-flex-order:0 !important;order:0 !important}.order-xxl-1{-ms-flex-order:1 !important;order:1 !important}.order-xxl-2{-ms-flex-order:2 !important;order:2 !important}.order-xxl-3{-ms-flex-order:3 !important;order:3 !important}.order-xxl-4{-ms-flex-order:4 !important;order:4 !important}.order-xxl-5{-ms-flex-order:5 !important;order:5 !important}.order-xxl-last{-ms-flex-order:6 !important;order:6 !important}.m-xxl-0{margin:0 !important}.m-xxl-1{margin:.25rem !important}.m-xxl-2{margin:.5rem !important}.m-xxl-3{margin:1rem !important}.m-xxl-4{margin:1.5rem !important}.m-xxl-5{margin:3rem !important}.m-xxl-auto{margin:auto !important}.mx-xxl-0{margin-right:0 !important;margin-left:0 !important}.mx-xxl-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xxl-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xxl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xxl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xxl-5{margin-right:3rem !important;margin-left:3rem !important}.mx-xxl-auto{margin-right:auto !important;margin-left:auto !important}.my-xxl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xxl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xxl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xxl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xxl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xxl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xxl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xxl-0{margin-top:0 !important}.mt-xxl-1{margin-top:.25rem !important}.mt-xxl-2{margin-top:.5rem !important}.mt-xxl-3{margin-top:1rem !important}.mt-xxl-4{margin-top:1.5rem !important}.mt-xxl-5{margin-top:3rem !important}.mt-xxl-auto{margin-top:auto !important}.me-xxl-0{margin-right:0 !important}.me-xxl-1{margin-right:.25rem !important}.me-xxl-2{margin-right:.5rem !important}.me-xxl-3{margin-right:1rem !important}.me-xxl-4{margin-right:1.5rem !important}.me-xxl-5{margin-right:3rem !important}.me-xxl-auto{margin-right:auto !important}.mb-xxl-0{margin-bottom:0 !important}.mb-xxl-1{margin-bottom:.25rem !important}.mb-xxl-2{margin-bottom:.5rem !important}.mb-xxl-3{margin-bottom:1rem !important}.mb-xxl-4{margin-bottom:1.5rem !important}.mb-xxl-5{margin-bottom:3rem !important}.mb-xxl-auto{margin-bottom:auto !important}.ms-xxl-0{margin-left:0 !important}.ms-xxl-1{margin-left:.25rem !important}.ms-xxl-2{margin-left:.5rem !important}.ms-xxl-3{margin-left:1rem !important}.ms-xxl-4{margin-left:1.5rem !important}.ms-xxl-5{margin-left:3rem !important}.ms-xxl-auto{margin-left:auto !important}.p-xxl-0{padding:0 !important}.p-xxl-1{padding:.25rem !important}.p-xxl-2{padding:.5rem !important}.p-xxl-3{padding:1rem !important}.p-xxl-4{padding:1.5rem !important}.p-xxl-5{padding:3rem !important}.px-xxl-0{padding-right:0 !important;padding-left:0 !important}.px-xxl-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-xxl-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-xxl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xxl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xxl-5{padding-right:3rem !important;padding-left:3rem !important}.py-xxl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xxl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xxl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xxl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xxl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xxl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xxl-0{padding-top:0 !important}.pt-xxl-1{padding-top:.25rem !important}.pt-xxl-2{padding-top:.5rem !important}.pt-xxl-3{padding-top:1rem !important}.pt-xxl-4{padding-top:1.5rem !important}.pt-xxl-5{padding-top:3rem !important}.pe-xxl-0{padding-right:0 !important}.pe-xxl-1{padding-right:.25rem !important}.pe-xxl-2{padding-right:.5rem !important}.pe-xxl-3{padding-right:1rem !important}.pe-xxl-4{padding-right:1.5rem !important}.pe-xxl-5{padding-right:3rem !important}.pb-xxl-0{padding-bottom:0 !important}.pb-xxl-1{padding-bottom:.25rem !important}.pb-xxl-2{padding-bottom:.5rem !important}.pb-xxl-3{padding-bottom:1rem !important}.pb-xxl-4{padding-bottom:1.5rem !important}.pb-xxl-5{padding-bottom:3rem !important}.ps-xxl-0{padding-left:0 !important}.ps-xxl-1{padding-left:.25rem !important}.ps-xxl-2{padding-left:.5rem !important}.ps-xxl-3{padding-left:1rem !important}.ps-xxl-4{padding-left:1.5rem !important}.ps-xxl-5{padding-left:3rem !important}}@media print{.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-grid{display:grid !important}.d-print-inline-grid{display:inline-grid !important}.d-print-table{display:table !important}.d-print-table-row{display:table-row !important}.d-print-table-cell{display:table-cell !important}.d-print-flex{display:-ms-flexbox !important;display:flex !important}.d-print-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}.d-print-none{display:none !important}}.clearfix::after{display:block;clear:both;content:""}.text-bg-primary{color:#fff !important;background-color:RGBA(var(--bs-primary-rgb), 1) !important;background-color:RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-secondary{color:#fff !important;background-color:RGBA(var(--bs-secondary-rgb), 1) !important;background-color:RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-success{color:#fff !important;background-color:RGBA(var(--bs-success-rgb), 1) !important;background-color:RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-info{color:#000 !important;background-color:RGBA(var(--bs-info-rgb), 1) !important;background-color:RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-warning{color:#000 !important;background-color:RGBA(var(--bs-warning-rgb), 1) !important;background-color:RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-danger{color:#fff !important;background-color:RGBA(var(--bs-danger-rgb), 1) !important;background-color:RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-light{color:#000 !important;background-color:RGBA(var(--bs-light-rgb), 1) !important;background-color:RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-dark{color:#fff !important;background-color:RGBA(var(--bs-dark-rgb), 1) !important;background-color:RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important}.link-primary{color:RGBA(var(--bs-primary-rgb), 1) !important;color:RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-primary-rgb), 1) !important;text-decoration-color:RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-primary:hover,.link-primary:focus{color:RGBA(10, 88, 202, 1) !important;color:RGBA(10, 88, 202, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(10, 88, 202, 1) !important;text-decoration-color:RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important}.link-secondary{color:RGBA(var(--bs-secondary-rgb), 1) !important;color:RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-secondary-rgb), 1) !important;text-decoration-color:RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-secondary:hover,.link-secondary:focus{color:RGBA(86, 94, 100, 1) !important;color:RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(86, 94, 100, 1) !important;text-decoration-color:RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important}.link-success{color:RGBA(var(--bs-success-rgb), 1) !important;color:RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-success-rgb), 1) !important;text-decoration-color:RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-success:hover,.link-success:focus{color:RGBA(20, 108, 67, 1) !important;color:RGBA(20, 108, 67, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(20, 108, 67, 1) !important;text-decoration-color:RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important}.link-info{color:RGBA(var(--bs-info-rgb), 1) !important;color:RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-info-rgb), 1) !important;text-decoration-color:RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-info:hover,.link-info:focus{color:RGBA(61, 213, 243, 1) !important;color:RGBA(61, 213, 243, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(61, 213, 243, 1) !important;text-decoration-color:RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important}.link-warning{color:RGBA(var(--bs-warning-rgb), 1) !important;color:RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-warning-rgb), 1) !important;text-decoration-color:RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-warning:hover,.link-warning:focus{color:RGBA(255, 205, 57, 1) !important;color:RGBA(255, 205, 57, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(255, 205, 57, 1) !important;text-decoration-color:RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important}.link-danger{color:RGBA(var(--bs-danger-rgb), 1) !important;color:RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-danger-rgb), 1) !important;text-decoration-color:RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-danger:hover,.link-danger:focus{color:RGBA(176, 42, 55, 1) !important;color:RGBA(176, 42, 55, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(176, 42, 55, 1) !important;text-decoration-color:RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important}.link-light{color:RGBA(var(--bs-light-rgb), 1) !important;color:RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-light-rgb), 1) !important;text-decoration-color:RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-light:hover,.link-light:focus{color:RGBA(249, 250, 251, 1) !important;color:RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(249, 250, 251, 1) !important;text-decoration-color:RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important}.link-dark{color:RGBA(var(--bs-dark-rgb), 1) !important;color:RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-dark-rgb), 1) !important;text-decoration-color:RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-dark:hover,.link-dark:focus{color:RGBA(26, 30, 33, 1) !important;color:RGBA(26, 30, 33, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(26, 30, 33, 1) !important;text-decoration-color:RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important}.link-body-emphasis{color:RGBA(var(--bs-emphasis-color-rgb), 1) !important;color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-emphasis-color-rgb), 1) !important;text-decoration-color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-body-emphasis:hover,.link-body-emphasis:focus{color:RGBA(var(--bs-emphasis-color-rgb), 0.75) !important;color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;text-decoration-color:RGBA(var(--bs-emphasis-color-rgb), 0.75) !important;text-decoration-color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important}.focus-ring:focus{outline:0;-webkit-box-shadow:0 0 0 var(--bs-focus-ring-width) var(--bs-focus-ring-color);box-shadow:0 0 0 var(--bs-focus-ring-width) var(--bs-focus-ring-color);-webkit-box-shadow:var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color);box-shadow:var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color)}.icon-link{display:-ms-inline-flexbox;display:inline-flex;gap:.375rem;-ms-flex-align:center;align-items:center;text-decoration-color:rgba(var(--bs-link-color-rgb), 0.5);text-decoration-color:rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));text-underline-offset:.25em;-webkit-backface-visibility:hidden;backface-visibility:hidden}.icon-link>.bi{-ms-flex-negative:0;flex-shrink:0;width:1em;height:1em;fill:currentcolor;-webkit-transition:.2s ease-in-out transform;transition:.2s ease-in-out transform}@media(prefers-reduced-motion: reduce){.icon-link>.bi{-webkit-transition:none;transition:none}}.icon-link-hover:hover>.bi,.icon-link-hover:focus-visible>.bi{-webkit-transform:translate3d(0.25em, 0, 0);transform:translate3d(0.25em, 0, 0);-webkit-transform:var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));transform:var(--bs-icon-link-transform, translate3d(0.25em, 0, 0))}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio: 100%}.ratio-4x3{--bs-aspect-ratio: 75%}.ratio-16x9{--bs-aspect-ratio: 56.25%}.ratio-21x9{--bs-aspect-ratio: 42.8571428571%}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:sticky;top:0;z-index:1020}.sticky-bottom{position:sticky;bottom:0;z-index:1020}@media(min-width: 375px){.sticky-sm-top{position:sticky;top:0;z-index:1020}.sticky-sm-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 768px){.sticky-md-top{position:sticky;top:0;z-index:1020}.sticky-md-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 1024px){.sticky-lg-top{position:sticky;top:0;z-index:1020}.sticky-lg-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 1200px){.sticky-xl-top{position:sticky;top:0;z-index:1020}.sticky-xl-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 1440px){.sticky-xxl-top{position:sticky;top:0;z-index:1020}.sticky-xxl-bottom{position:sticky;bottom:0;z-index:1020}}.hstack{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center;-ms-flex-item-align:stretch;align-self:stretch}.vstack{display:-ms-flexbox;display:flex;-ms-flex:1 1 auto;flex:1 1 auto;-ms-flex-direction:column;flex-direction:column;-ms-flex-item-align:stretch;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0, 0, 0, 0) !important;white-space:nowrap !important;border:0 !important}.visually-hidden:not(caption),.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption){position:absolute !important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;-ms-flex-item-align:stretch;align-self:stretch;width:var(--bs-border-width);min-height:1em;background-color:currentcolor;opacity:.25}.container,.row,.row>*{padding:0}.row{margin:0}*,*::before,*::after{-webkit-box-sizing:inherit;box-sizing:inherit}html{-webkit-box-sizing:border-box;box-sizing:border-box}html,body,.page-wrapper{min-height:100vh;margin:0;padding:0;min-width:320px;overflow-x:hidden}button,input,select,textarea{font:inherit}textarea{resize:none}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,main{display:block}img{max-width:100%;height:auto}details>*{-webkit-box-sizing:border-box;box-sizing:border-box}.responsive-iframe{position:relative;padding-bottom:56.25%}.responsive-iframe iframe{position:absolute;top:0;left:0;width:100%;height:100%}.row.enable-gutters{margin-top:calc(var(--bs-gutter-y)*-1);margin-right:calc(var(--bs-gutter-x)*-0.5);margin-left:calc(var(--bs-gutter-x)*-0.5)}.row.enable-gutters>*{padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-top:var(--bs-gutter-y)}@font-face{font-family:"Noto Sans";src:url(/static/studio/pub/web/v3/master/hashed/NotoSans-400.c8e58bef.ttf) format("truetype");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Noto Sans";src:url(/static/studio/pub/web/v3/master/hashed/NotoSans-700.ef4b39fb.ttf) format("truetype");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Noto Sans";src:url(/static/studio/pub/web/v3/master/hashed/NotoSans-800.d46a6270.ttf) format("truetype");font-weight:800;font-style:normal;font-display:swap}html{font-family:"Noto Sans",sans-serif;font-weight:400;line-height:1.5rem}body{font-size:1rem;color:#2d2d2d}.bold{font-weight:700}h1,h2,h3,h4,h5,h6,.h1,.knowledge-test .question__text,.content .content__title,.lift-group--donation .lift-group__item--large .lift-group__title,.h2,.lift-group__item--large .lift-group__title,.testimonial__heading,.h3,.form__freetext-title,.content__quote .quote__figure-long :first-child,.content__quote .quote__figure--edited-long :first-child,.content__text .quote__figure-long :first-child,.content__text .quote__figure--edited-long :first-child,.lift-group__item--small .lift-group__title,ol>li::before,.h4,.h5,.lift-item__tag,.knowledge-test .question__heading,.h6,.testimonial__author,.footer .footer__heading,.language-menu a{font-weight:700;margin-top:2rem;margin-right:0rem;margin-bottom:1.5rem;margin-left:0rem;text-wrap:balance}h1,.h1,.knowledge-test .question__text,.content .content__title,.lift-group--donation .lift-group__item--large .lift-group__title{font-size:1.875rem;line-height:2rem}h2,.h2,.lift-group__item--large .lift-group__title,.testimonial__heading{font-size:1.625rem;line-height:2rem}h3,.h3,.form__freetext-title,.content__quote .quote__figure-long :first-child,.content__quote .quote__figure--edited-long :first-child,.content__text .quote__figure-long :first-child,.content__text .quote__figure--edited-long :first-child,.lift-group__item--small .lift-group__title,ol>li::before{font-size:1.25rem}h4,.h4{font-size:1rem}h5,.h5,.lift-item__tag,.knowledge-test .question__heading{font-size:.875rem;text-transform:uppercase;letter-spacing:.2em}h6,.h6,.testimonial__author,.footer .footer__heading,.language-menu a{font-size:.75rem;line-height:1rem;text-transform:uppercase;letter-spacing:.1em}p:last-of-type,.text--large:last-of-type,.text--normal:last-of-type,.content .content__details span:last-of-type,.lift-group__item--small .lift-group__item-inner p:last-of-type,.text--small:last-of-type,.text--large,.carousel .slide p,.carousel .slide__text p,.heading-and-ingress__link-list li .link.link--arrowed,.social-proof__card-container p,.content ul,.content ol,.content p,.info-box p,.content__quote .quote__figcaption,.content__text .quote__figcaption,.quote__figure--edited :nth-child(2),.content__quote .quote__figure-long :nth-child(2),.content__quote .quote__figure--edited-long :nth-child(2),.content__text .quote__figure-long :nth-child(2),.content__text .quote__figure--edited-long :nth-child(2),.txt-and-img__text p,.lift-group__item--large .lift-group__item-inner p,ol>li strong{margin-top:0rem;margin-right:0rem;margin-bottom:2rem;margin-left:0rem}.text--ingress,.content .content__ingress{font-size:1.375rem;line-height:2rem;margin-bottom:2rem}.text--large,.carousel .slide p,.carousel .slide__text p,.heading-and-ingress__link-list li .link.link--arrowed,.social-proof__card-container p,.content ul,.content ol,.content p,.info-box p,.content__quote .quote__figcaption,.content__text .quote__figcaption,.quote__figure--edited :nth-child(2),.content__quote .quote__figure-long :nth-child(2),.content__quote .quote__figure--edited-long :nth-child(2),.content__text .quote__figure-long :nth-child(2),.content__text .quote__figure--edited-long :nth-child(2),.txt-and-img__text p,.lift-group__item--large .lift-group__item-inner p,ol>li strong{font-size:1.125rem;line-height:2rem;font-style:normal}.text--small{font-size:.875rem}.text--center{text-align:center}.text--highlight{background-color:#ffc20e}.text--center-lg{text-align:left}@media screen and (min-width: 1024px){.text--center-lg{text-align:center}}p,.text--normal,.content .content__details span,.lift-group__item--small .lift-group__item-inner p,.text--small{margin-top:0rem;margin-right:0rem;margin-bottom:1rem;margin-left:0rem}@media screen and (min-width: 1024px){.heading-line{margin-bottom:32px}}.heading-line::after{display:block;content:"";width:56px;border-bottom:2px solid #00aeef;margin-top:24px}.bg--blue-100 .heading-line::after{border-color:#fff}@media screen and (min-width: 1024px){.heading-line::after{margin-top:32px}}.text--top-bar{position:relative}.text--top-bar::before{content:"";position:absolute;width:3.5rem;height:2px;top:-1.875rem;background-color:#00aeef}@media screen and (min-width: 768px){h1,.h1,.knowledge-test .question__text,.content .content__title,.lift-group--donation .lift-group__item--large .lift-group__title{font-size:2.625rem;line-height:3rem}h2,.h2,.lift-group__item--large .lift-group__title,.testimonial__heading{font-size:1.875rem;line-height:2rem}h3,.h3,.form__freetext-title,.content__quote .quote__figure-long :first-child,.content__quote .quote__figure--edited-long :first-child,.content__text .quote__figure-long :first-child,.content__text .quote__figure--edited-long :first-child,.lift-group__item--small .lift-group__title,ol>li::before{font-size:1.375rem;line-height:2rem}h4,.h4{font-size:1.25rem}h5,.h5,.lift-item__tag,.knowledge-test .question__heading{font-size:1rem}h6,.h6,.testimonial__author,.footer .footer__heading,.language-menu a{font-size:.875rem;letter-spacing:.2em}}@media screen and (min-width: 1024px){body{font-size:1.125rem}h1,.h1,.knowledge-test .question__text,.content .content__title,.lift-group--donation .lift-group__item--large .lift-group__title{font-size:3.5rem;line-height:4rem}h2,.h2,.lift-group__item--large .lift-group__title,.testimonial__heading{font-size:2.5rem;line-height:3rem}h3,.h3,.form__freetext-title,.content__quote .quote__figure-long :first-child,.content__quote .quote__figure--edited-long :first-child,.content__text .quote__figure-long :first-child,.content__text .quote__figure--edited-long :first-child,.lift-group__item--small .lift-group__title,ol>li::before{font-size:1.5rem;line-height:2rem}h4,.h4{font-size:1.25rem}h5,.h5,.lift-item__tag,.knowledge-test .question__heading{font-size:1rem}h6,.h6,.testimonial__author,.footer .footer__heading,.language-menu a{font-size:.875rem;letter-spacing:.2em}.text--ingress,.content .content__ingress{font-size:1.875rem;line-height:2.5rem}.text--large,.carousel .slide p,.carousel .slide__text p,.heading-and-ingress__link-list li .link.link--arrowed,.social-proof__card-container p,.content ul,.content ol,.content p,.info-box p,.content__quote .quote__figcaption,.content__text .quote__figcaption,.quote__figure--edited :nth-child(2),.content__quote .quote__figure-long :nth-child(2),.content__quote .quote__figure--edited-long :nth-child(2),.content__text .quote__figure-long :nth-child(2),.content__text .quote__figure--edited-long :nth-child(2),.txt-and-img__text p,.lift-group__item--large .lift-group__item-inner p,ol>li strong{font-size:1.25rem}p,.text--normal,.content .content__details span,.lift-group__item--small .lift-group__item-inner p{font-size:1.125rem}.text--small{font-size:1rem}}.list--plain,.list--plain ul{list-style:none;margin:0;padding:0}.list--horizontal{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row}.list--horizontal li{display:inline-block;margin-right:1rem}.list--horizontal li:last-child{margin-right:0}ul ul{list-style-type:circle}ol{counter-reset:section;list-style-type:none;padding:0;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;row-gap:29px}ol>li{padding-left:2.0625rem;position:relative}@media screen and (min-width: 1024px){ol>li{padding-left:2.6875rem}}ol>li strong{display:block;margin-bottom:0}ol>li::before{margin:0;position:absolute;left:0;height:100%;counter-increment:section;content:counters(section, ".") " "}ol ol li{padding-left:3.125rem}@media screen and (min-width: 1024px){ol ol li{padding-left:4rem}}.btn,.radio-tabs__btn,.footer__col.newsletter-cta a{font-size:.875rem;letter-spacing:.03125rem;padding-top:.625rem;padding-right:.875rem;padding-bottom:.625rem;padding-left:.875rem;font-weight:900;text-transform:uppercase;text-decoration:none;display:inline-block;color:#101010;border:1px solid rgba(0,0,0,0);-webkit-transition:all .3s;transition:all .3s;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;background-color:rgba(0,0,0,0);outline:2px solid rgba(0,0,0,0);border-radius:8px}.btn:focus,.radio-tabs__btn:focus,.footer__col.newsletter-cta a:focus{outline:2px solid #101010;position:relative;border-color:#fff}.btn:hover,.radio-tabs__btn:hover,.footer__col.newsletter-cta a:hover{background-color:#101010;color:#fff}.btn:disabled,.radio-tabs__btn:disabled,.footer__col.newsletter-cta a:disabled{border-color:#ccc;background-color:#ccc;color:#666}.btn:disabled:hover,.radio-tabs__btn:disabled:hover,.footer__col.newsletter-cta a:disabled:hover{border-color:#ccc;background-color:#ccc;color:#666;cursor:default}.btn--plain{background:rgba(0,0,0,0);height:auto;border:0;color:inherit;padding:0;text-transform:none}.btn--plain:focus{outline:auto;outline-offset:0}.btn--secondary,.footer__col.newsletter-cta a{border-color:#101010;background-color:#fff}.btn--secondary:hover,.footer__col.newsletter-cta a:hover{background-color:#101010;color:#fff}.btn--secondary:focus,.footer__col.newsletter-cta a:focus{outline:2px solid #101010;outline-offset:-4px}.btn--secondary:focus::before,.footer__col.newsletter-cta a:focus::before{content:"";position:absolute;top:-4px;left:-4px;width:calc(100% + 8px);height:calc(100% + 8px);border:1px solid #101010}.btn--special{background-color:#ffc20e;color:#101010;border-color:#ffc20e}.btn--special:hover,.btn--special:active{background-color:#101010;border-color:#101010;color:#ffc20e}.btn--primary,input:checked+.radio-tabs__btn,.btn--secondary,.footer__col.newsletter-cta a{background-color:#101010;color:#fff;border:1px solid #101010}.btn--primary:hover,input:checked+.radio-tabs__btn:hover,.btn--secondary:hover,.footer__col.newsletter-cta a:hover{color:#101010;border-color:#101010;background-color:#fff}.btn--primary:focus,input:checked+.radio-tabs__btn:focus,.btn--secondary:focus,.footer__col.newsletter-cta a:focus{outline:2px solid #101010;position:relative;border-color:#fff}.btn--primary:active,input:checked+.radio-tabs__btn:active,.btn--secondary:active,.footer__col.newsletter-cta a:active{opacity:.8;border-color:#101010}.btn--primary:active::before,input:checked+.radio-tabs__btn:active::before,.btn--secondary:active::before,.footer__col.newsletter-cta a:active::before{display:none}.btn--secondary,.footer__col.newsletter-cta a{background-color:#fff;color:#101010}.btn--secondary:focus,.footer__col.newsletter-cta a:focus{border-color:#101010}.btn--secondary:focus::before,.footer__col.newsletter-cta a:focus::before{top:-5px;left:-5px;width:calc(100% + 10px);height:calc(100% + 10px)}.btn--secondary:active,.footer__col.newsletter-cta a:active{opacity:.8;border-color:#101010}.btn--secondary:active::before,.footer__col.newsletter-cta a:active::before{display:none}.btn--prev,.btn--next{width:48px;height:48px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.btn--prev .icon svg,.btn--next .icon svg{width:16px;height:16px}.btn--prev>*,.btn--next>*{pointer-events:none}@media screen and (min-width: 1024px){.btn,.radio-tabs__btn,.footer__col.newsletter-cta a{font-size:1.125rem;line-height:2rem;letter-spacing:.09375rem;padding-top:.625rem;padding-right:1.375rem;padding-bottom:.625rem;padding-left:1.375rem}.btn:hover,.radio-tabs__btn:hover,.footer__col.newsletter-cta a:hover{background-color:#101010;color:#fff;cursor:pointer}.btn--special:hover,.btn--special:active{background-color:#101010;border-color:#101010;color:#ffc20e}.btn--primary:hover,input:checked+.radio-tabs__btn:hover,.btn--secondary:hover,.footer__col.newsletter-cta a:hover{background-color:#fff;border-color:#101010;color:#101010}.btn--primary:active,input:checked+.radio-tabs__btn:active,.btn--secondary:active,.footer__col.newsletter-cta a:active{opacity:1}.btn--secondary:hover,.footer__col.newsletter-cta a:hover{background-color:#101010;color:#fff}.btn--prev,.btn--next{padding-top:.625rem;padding-right:.875rem;padding-bottom:.625rem;padding-left:.875rem}.btn--plain{padding:0}}.link,.material-single__description a,.material-single__description-full a,.donation-checkout-form__terms a,.news-archive__btn,.lift-item__link--uppercase,.social-proof a:not(.btn):not(.no-link-style),.content a:not(.btn),.txt-and-img__text .editor-content a:not(.btn),.txt-and-img__text .editor-content--arrow-links a:not(.btn),.lift-group__item--text li a,.lift-group p>a,.footer__col li a:not(.link),.footer__col.policy-links li .btn--plain,.footer__policy a,.footer__faq a,.footer__policy .btn--plain,.footer__contacts a[href^="mailto:"],.footer__contacts a[href^="tel:"],.footer__contacts a[href*="maps.google"],.language-menu a{font-size:1em;line-height:1.57em;color:#2d2d2d;text-decoration:none;border-bottom:1px solid currentColor;font-weight:700;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.link:hover,.material-single__description a:hover,.material-single__description-full a:hover,.donation-checkout-form__terms a:hover,.news-archive__btn:hover,.lift-item__link--uppercase:hover,.social-proof a:hover:not(.btn):not(.no-link-style),.content a:hover:not(.btn),.txt-and-img__text .editor-content a:hover:not(.btn),.txt-and-img__text .editor-content--arrow-links a:hover:not(.btn),.lift-group__item--text li a:hover,.lift-group p>a:hover,.footer__col li a:hover:not(.link),.footer__col.policy-links li .btn--plain:hover,.footer__policy a:hover,.footer__faq a:hover,.footer__policy .btn--plain:hover,.footer__contacts a[href^="mailto:"]:hover,.footer__contacts a[href^="tel:"]:hover,.footer__contacts a[href*="maps.google"]:hover,.language-menu a:hover{background-color:#77cdee}.link:focus,.material-single__description a:focus,.material-single__description-full a:focus,.donation-checkout-form__terms a:focus,.news-archive__btn:focus,.lift-item__link--uppercase:focus,.social-proof a:focus:not(.btn):not(.no-link-style),.content a:focus:not(.btn),.txt-and-img__text .editor-content a:focus:not(.btn),.txt-and-img__text .editor-content--arrow-links a:focus:not(.btn),.lift-group__item--text li a:focus,.lift-group p>a:focus,.footer__col li a:focus:not(.link),.footer__col.policy-links li .btn--plain:focus,.footer__policy a:focus,.footer__faq a:focus,.footer__policy .btn--plain:focus,.footer__contacts a[href^="mailto:"]:focus,.footer__contacts a[href^="tel:"]:focus,.footer__contacts a[href*="maps.google"]:focus,.language-menu a:focus{outline:none;position:relative}.link:focus::before,.material-single__description a:focus::before,.material-single__description-full a:focus::before,.donation-checkout-form__terms a:focus::before,.news-archive__btn:focus::before,.lift-item__link--uppercase:focus::before,.social-proof a:focus:not(.btn):not(.no-link-style)::before,.content a:focus:not(.btn)::before,.txt-and-img__text .editor-content a:focus:not(.btn)::before,.txt-and-img__text .editor-content--arrow-links a:focus:not(.btn)::before,.lift-group__item--text li a:focus::before,.lift-group p>a:focus::before,.footer__col li a:focus:not(.link)::before,.footer__col.policy-links li .btn--plain:focus::before,.footer__policy a:focus::before,.footer__faq a:focus::before,.footer__policy .btn--plain:focus::before,.footer__contacts a[href^="mailto:"]:focus::before,.footer__contacts a[href^="tel:"]:focus::before,.footer__contacts a[href*="maps.google"]:focus::before,.language-menu a:focus::before{content:"";position:absolute;top:-4px;left:-4px;width:calc(100% + 8px);height:calc(100% + 10px);border:2px solid currentColor;border-radius:3px}.link--lighter,.social-proof a:not(.btn):not(.no-link-style){font-weight:400}.link--special{color:#ffc20e;border-bottom-color:#ffc20e}.link--special:hover{color:#2d2d2d;border-bottom-color:#2d2d2d;background-color:#ffc20e}.link--special:focus::before{border-color:#ffc20e}.link--arrowed,.txt-and-img__text .editor-content--arrow-links a:not(.btn),.lift-group__item--text li a,.footer__col li a:not(.link),.footer__col.policy-links li .btn--plain,.footer__policy a,.footer__faq a,.footer__policy .btn--plain,.link--arrowed-before{border-bottom-color:rgba(0,0,0,0);color:currentColor;position:relative;-webkit-transition:color .5s,background-color .5s;transition:color .5s,background-color .5s}.link--arrowed::after,.txt-and-img__text .editor-content--arrow-links a:not(.btn)::after,.lift-group__item--text li a::after,.footer__col li a:not(.link)::after,.footer__col.policy-links li .btn--plain::after,.footer__policy a::after,.footer__faq a::after,.footer__policy .btn--plain::after,.link--arrowed-before::after{content:"";background-image:url(/static/studio/pub/web/v3/master/hashed/arrow-forward-black.82e32a01.svg);background-repeat:no-repeat;background-size:contain;display:inline-block;margin-left:.5rem;height:.75rem;width:.5rem;-webkit-transition:-webkit-transform .5s;transition:-webkit-transform .5s;transition:transform .5s;transition:transform .5s, -webkit-transform .5s}.link--arrowed:focus::before,.txt-and-img__text .editor-content--arrow-links a:focus:not(.btn)::before,.lift-group__item--text li a:focus::before,.footer__col li a:focus:not(.link)::before,.footer__col.policy-links li .btn--plain:focus::before,.footer__policy a:focus::before,.footer__faq a:focus::before,.footer__policy .btn--plain:focus::before,.link--arrowed-before:focus::before{border:2px solid currentColor;height:calc(100% + 8px);width:calc(100% + 1rem)}.link--arrowed:hover,.txt-and-img__text .editor-content--arrow-links a:hover:not(.btn),.lift-group__item--text li a:hover,.footer__col li a:hover:not(.link),.footer__col.policy-links li .btn--plain:hover,.footer__policy a:hover,.footer__faq a:hover,.footer__policy .btn--plain:hover,.link--arrowed-before:hover{background-color:inherit}.link--arrowed:hover::after,.txt-and-img__text .editor-content--arrow-links a:hover:not(.btn)::after,.lift-group__item--text li a:hover::after,.footer__col li a:hover:not(.link)::after,.footer__col.policy-links li .btn--plain:hover::after,.footer__policy a:hover::after,.footer__faq a:hover::after,.footer__policy .btn--plain:hover::after,.link--arrowed-before:hover::after{-webkit-transform:translateX(0.5rem);transform:translateX(0.5rem)}.link--arrowed-before{display:inline-block;padding-left:1rem}.link--arrowed-before::after{position:absolute;left:0;margin:0;-webkit-transform:scaleX(-1);transform:scaleX(-1);height:100%;background-position-y:center}.link--arrowed-before:hover{background-color:inherit}.link--arrowed-before:hover::after{-webkit-transform:scaleX(-1) translateX(0.5rem);transform:scaleX(-1) translateX(0.5rem)}.link--arrowed-before:focus::after{-webkit-transform:scaleX(-1) translateX(0rem);transform:scaleX(-1) translateX(0rem)}.link--normal,.material-single__description a,.material-single__description-full a,.content a:not(.btn){color:currentColor;padding-bottom:2px;font-weight:400}.link--normal:hover,.material-single__description a:hover,.material-single__description-full a:hover,.content a:hover:not(.btn){background-color:#77cdee;border-bottom-color:#2d2d2d;color:#2d2d2d}.link--normal:focus::before,.material-single__description a:focus::before,.material-single__description-full a:focus::before,.content a:focus:not(.btn)::before{border:2px solid currentColor;height:calc(100% + .5em)}.link--external,.lift-group p>a[href*="maps.google"]{position:relative}.link--external:focus::before,.lift-group p>a[href*="maps.google"]:focus::before{width:calc(100% + 2em)}.link--external::after,.lift-group p>a[href*="maps.google"]::after{content:"";background-image:url(/static/studio/pub/web/v3/master/hashed/open-in-new.60487ab6.svg);background-repeat:no-repeat;background-size:contain;position:absolute;width:.75rem;height:.75rem;right:-1.25rem;top:.3125rem}.link--external.icon-black::after,.lift-group p>a[href*="maps.google"]::after{background-image:url(/static/studio/pub/web/v3/master/hashed/open-in-new-black.650521a5.svg)}.link--file{position:relative}.link--file:focus::before{width:calc(100% + 2em)}.link--file::after{content:"";background-image:url(/static/studio/pub/web/v3/master/hashed/download.993dc84d.svg);background-repeat:no-repeat;background-size:contain;position:absolute;width:1rem;height:1rem;right:-1.25rem;top:.3125rem}@media screen and (min-width: 1024px){.link--small{font-size:.875em}}.icon{display:-ms-inline-flexbox;display:inline-flex}.icon svg{width:100%;height:100%;fill:currentColor}.icon-menu{display:block;position:relative;width:24px;height:18px}.icon-menu::before,.icon-menu::after,.icon-menu .middle-bar{content:"";display:inline-block;border-top:2px solid currentColor;-webkit-transition:all .4s;transition:all .4s;position:absolute;left:0px}button .icon-menu::before{width:10px;top:2px}.icon-menu .middle-bar{width:24px;top:10px;opacity:1}.icon-menu::after{width:19px;top:18px}button[aria-expanded=true] .icon-menu::before{-webkit-transform:rotate(45deg);transform:rotate(45deg);width:10px;left:3px;top:2px}button[aria-expanded=true] .icon-menu .middle-bar{width:24px;height:0px;left:4px;top:16px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:top left;transform-origin:top left}button[aria-expanded=true] .icon-menu::after{width:16px;height:0px;left:8px;top:10px;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.form__cell .icon--close{display:none;color:#fff;width:15px;height:15px;background-color:#961f1f;border-radius:100%}.form__cell .icon--close svg{width:9px;height:9px;position:absolute;top:3px;left:3px}.form__cell .icon--check{display:none;color:#fff}.form__cell .icon--check svg{width:11px;height:11px;position:absolute;top:2px;left:2px}.icon--check-circle{background-color:#33a317;border-radius:100%;width:15px;height:15px}.icon--check-circle svg{width:11px;height:11px;position:absolute;top:2px;left:2px}@-webkit-keyframes spinning{from{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinning{from{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.icon-spinner .icon{-webkit-animation:spinning .6s infinite;animation:spinning .6s infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}.to-animate:not(.in-view),.editor-image--wider-width:not(.in-view){opacity:0;-webkit-transform:translateY(80px);transform:translateY(80px)}.editor-image--full-width:not(.in-view){opacity:0}.in-view{opacity:1 !important;-webkit-transform:translateY(0) !important;transform:translateY(0) !important;-webkit-transition:opacity .6s ease-in-out,-webkit-transform .6s ease-in-out;transition:opacity .6s ease-in-out,-webkit-transform .6s ease-in-out;transition:opacity .6s ease-in-out,transform .6s ease-in-out;transition:opacity .6s ease-in-out,transform .6s ease-in-out,-webkit-transform .6s ease-in-out}@media(min-width: 1024px)and (max-width: 1199.98px){.header .container{max-width:none;max-width:initial;padding-right:16px;padding-left:16px}}.header:not(.header--transparent-navbar){padding-bottom:3.5rem}@media(max-width: 1023.98px){.header:not(.header--transparent-navbar).emergency-state{padding-bottom:calc(3.5rem + 46px)}}@media(min-width: 1024px){.header:not(.header--transparent-navbar){padding-bottom:8rem}.header:not(.header--transparent-navbar).emergency-state{padding-bottom:3.5rem}}.header__skip-to-content{position:relative;z-index:13;background-color:#ffc20e;outline:0;border:2px dashed #101010;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;padding:16px;text-decoration:none}.header__skip-to-content-text{color:#101010}.header__skip-to-content-text::after{content:"";display:block;height:1px;background-color:#101010}.header__logo{position:absolute;z-index:1;width:100%;pointer-events:none}.header__logo-block{display:-ms-flexbox;display:flex;width:100px;height:100%;padding:0;margin-left:16px;pointer-events:auto}.header__logo-block:focus{outline-offset:2px;outline:2px solid #101010}@media screen and (min-width: 1024px){.header__logo-block{width:160px;height:160px;padding:0px;margin-left:0}}.header__logo img{width:100%}.navbar{color:#101010;width:100%;min-width:320px;z-index:10;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:color,background-color,-webkit-transform;transition-property:color,background-color,-webkit-transform;transition-property:color,background-color,transform;transition-property:color,background-color,transform,-webkit-transform;position:absolute}.navbar>.container{height:100%}@media(max-width: 767.98px){.navbar>.container{padding:0}}@media screen and (min-width: 1024px){.navbar>.container{position:relative;z-index:1}}.navbar__content,.navbar__controllers{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:end;justify-content:flex-end;height:100%}.navbar__menu-triggers{height:100%}.navbar__menu-triggers li{margin-right:0}.navbar__btn{cursor:pointer;height:100%;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;font-size:1rem;font-weight:900;padding:1rem;-webkit-transition-duration:.1s;transition-duration:.1s;border-color:rgba(0,0,0,0);border-radius:0px;letter-spacing:normal}.navbar__btn:hover:not(.btn--special):not(.navbar__mobile-menu-toggle),.navbar__btn[aria-expanded=true]:not(.navbar__mobile-menu-toggle){background-color:#101010;color:#fff}.navbar__btn[aria-expanded=true] .icon--caret-down{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.navbar__btn .icon{width:1em;height:1em;margin-right:.5em}.navbar__btn .icon--caret-down{margin-left:.5rem;margin-right:0;width:.625rem;height:.375rem}@media screen and (min-width: 1024px){.bottombar .navbar__btn{font-size:1.125rem;line-height:1.5rem;padding:27px 24px 27px 24px}}@media(min-width: 1024px)and (max-width: 1199.98px){.bottombar .navbar__btn{padding-left:12px;padding-right:12px}}.topbar .navbar__btn{padding:11px 15px 11px 15px;line-height:1.5em}.navbar__mobile-menu-toggle{width:54px}.navbar__mobile-menu-toggle .middle-bar{border-color:#101010}.navbar__mobile-menu-toggle:hover .middle-bar{border-color:#fff}.navbar__mobile-menu-toggle[aria-expanded=true]{background-color:rgba(0,0,0,0)}.navbar__mobile-menu-toggle[aria-expanded=true] .icon-menu::before,.navbar__mobile-menu-toggle[aria-expanded=true] .icon-menu::after,.navbar__mobile-menu-toggle[aria-expanded=true] .middle-bar{border-color:#101010}.navbar.offscreen{-webkit-transform:translate3d(0, -200%, 0);transform:translate3d(0, -200%, 0)}.sticky-header .navbar{position:fixed;top:0}.topbar{background-color:#f2f2f2;color:#101010;display:none}.emergency-state .topbar{display:block}@media(min-width: 1024px){.topbar{display:block}}.topbar__content{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:end;justify-content:flex-end;position:relative}@media(min-width: 1024px){.topbar__content{padding-left:170px}}.bottombar{background-color:#00aeef}@media screen and (min-width: 1024px){.bottombar{background-color:#fff;-webkit-box-shadow:0px 3px 10px rgba(32,32,32,.1);box-shadow:0px 3px 10px rgba(32,32,32,.1)}}@media screen and (min-width: 1024px){body:not(.sticky-header):not(.megamenu-open) .header--transparent-navbar .bottombar{background-color:rgba(0,0,0,0);-webkit-box-shadow:none;box-shadow:none}body:not(.sticky-header):not(.megamenu-open) .header--transparent-navbar .bottombar .navbar__btn:not(.btn--special){color:#fff}body:not(.sticky-header):not(.megamenu-open) .header--transparent-navbar .bottombar .navbar__btn:not(.btn--special):hover{background-color:#fff;color:#101010}}.bottombar__content{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:justify;justify-content:space-between}@media(min-width: 1024px){.bottombar__content{-ms-flex-pack:end;justify-content:flex-end;padding-left:170px;min-height:5rem}}.bottombar__logo{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;width:132px;padding-left:16px;padding-right:16px}@media(max-width: 1023.98px){.bottombar__logo{min-height:56px}}@media(min-width: 768px){.bottombar__logo{width:100px;padding:0}}.bottombar__logo a{display:inline-block}.bottombar__logo a:focus{outline-offset:4px;outline:2px solid #101010}.megamenu__wrapper{max-width:100%;overflow-x:hidden;position:relative}.megamenu{position:relative;background-color:#101010;color:#fff;font-size:1rem}.megamenu.open{display:block}.megamenu a{color:#fff}.megamenu__ul{list-style:none;margin:0;padding:0}.megamenu .megamenu__item{border-bottom:1px solid rgba(0,0,0,0)}.megamenu .search{padding:16px 24px 8px}.megamenu__item:hover{text-decoration:none;border-bottom:1px solid currentColor}.megamenu__item:focus{outline:none}.megamenu__item:focus-visible{outline:1px solid currentColor;outline-offset:-1px;position:relative}@media(max-width: 1023.98px){.megamenu{-webkit-transition-property:opacity,left;transition-property:opacity,left;-webkit-transition-duration:.5s;transition-duration:.5s;left:99%;opacity:0;display:none}.megamenu.animated{left:0;opacity:1}.megamenu>.container{padding:0;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;height:calc(var(--vh)*100 - 3.5rem)}.megamenu__flexible-area{-ms-flex-positive:1;flex-grow:1;overflow-x:hidden;overflow-y:auto}.megamenu__heading{font-size:.75rem;line-height:1rem;text-transform:uppercase;display:block;margin-bottom:1rem;font-weight:900}.megamenu__item{text-align:left;width:100%}.megamenu__item .text{border-bottom:1px solid rgba(0,0,0,0)}.has-children>.megamenu__item{-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center}.has-children>.megamenu__item:hover .text{border-color:#fff}.has-children>.megamenu__item::after{content:"";display:inline-block;width:12px;height:12px;background:url(/static/studio/pub/web/v3/master/hashed/arrow-forward-white.f3635181.svg) center center no-repeat;rotate:90deg;background-size:auto 12px}.megamenu .megamenu__ul--level-0{margin-bottom:24px;padding-top:1px}.megamenu__li--level-0>.megamenu__item{text-transform:uppercase;font-size:1.25rem;font-weight:700;line-height:1.2em;padding:24px;border-bottom:1px solid gray;letter-spacing:.06em}.megamenu__li--level-0>.megamenu__item[aria-expanded=true]{border-bottom:0}.megamenu__li--level-0.has-children>.megamenu__item::after{width:16px;height:16px;background-size:contain}.megamenu__li--level-1>.megamenu__item{display:block;width:100%;font-size:1.125rem;padding:16px 24px;font-weight:700;text-decoration:none;border-bottom:1px solid #101010;background-color:#28282c}.megamenu__ul--level-2{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:20px;background-color:#3b3e42;padding:16px 24px}.megamenu__ul--level-2 .megamenu__item{display:inline-block;text-decoration:none;border-color:rgba(0,0,0,0)}.megamenu__ul--level-2 .megamenu__item:hover{text-decoration:underline}.megamenu__pagelist{position:relative;-webkit-transition:-webkit-transform .5s ease-in-out;transition:-webkit-transform .5s ease-in-out;transition:transform .5s ease-in-out;transition:transform .5s ease-in-out, -webkit-transform .5s ease-in-out;-webkit-transform:translateX(0);transform:translateX(0)}.megamenu__panel{display:none}.megamenu__panel.open{display:block}}@media screen and (min-width: 1024px){.megamenu{font-size:1.125rem}.megamenu__heading{display:block;font-size:1.5rem;padding-bottom:24px;margin-bottom:24px;line-height:1.33em;font-weight:700;border-bottom:1px solid gray}.megamenu__item{text-decoration:none;display:inline-block;margin-bottom:24px}.megamenu__item:focus-visible{outline-offset:2px}.megamenu__ul--level-0{display:grid;grid-template-columns:100% 1fr;grid-template-rows:100% 1fr}.megamenu__li--level-0{display:none;background-color:#101010;grid-area:1/1;padding:64px 0}.megamenu__li--level-0.open{display:block}.megamenu__li--level-0:focus{outline:none}.megamenu__li--level-0:focus-visible{outline:2px solid #fff;outline-offset:16px}.megamenu__li--level-0>.megamenu__heading{display:none}.megamenu__ul--level-1{display:-ms-flexbox;display:flex;-ms-flex-pack:end;justify-content:flex-end}.megamenu__ul--level-1>li{-ms-flex-preferred-size:25%;flex-basis:25%;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:1;flex-shrink:1;padding-right:32px}.megamenu__ul--level-1>li:last-child{padding-right:0}.megamenu__ul--level-1.last-level{-ms-flex-pack:end;justify-content:flex-end;-ms-flex-wrap:wrap;flex-wrap:wrap}.megamenu__ul--level-1.last-level>li{-ms-flex-preferred-size:initial;flex-basis:initial;padding-right:0;padding-left:64px}.megamenu .two-columns{-ms-flex-preferred-size:50%;flex-basis:50%}.megamenu .two-columns>.megamenu__panel>ul{-webkit-column-count:2;-moz-column-count:2;column-count:2;-webkit-column-gap:32px;-moz-column-gap:32px;column-gap:32px}.megamenu__back-btn,.megamenu .js-returner,.megamenu .js-open-panel{display:none !important}}@media(max-width: 1023.98px){body.megamenu-open .page-wrapper{height:100vh;overflow:hidden}body.megamenu-open .footer{display:none}}.language-menu ul{list-style:none;margin:0;padding:0}.language-menu__trigger{border-color:rgba(0,0,0,0);cursor:pointer}.language-menu__options{background-color:#101010;color:#fff;position:absolute;padding:24px;right:0;display:none}.language-menu__options.open{display:block}.language-menu a{color:#fff;text-transform:uppercase;border-color:rgba(0,0,0,0);display:inline-block;margin:0 0 16px;letter-spacing:inherit}@media(min-width: 1024px){.language-menu a{font-size:.875rem}}.language-menu a:hover{color:#101010}.language-menu a.active{border-color:currentColor}.language-menu li:last-child a{margin:0}.language-menu--horizontal{display:block;padding:16px 16px 0 16px;margin-bottom:16px;overflow:hidden;clear:both}.language-menu--horizontal>*{float:left;margin-right:16px}.language-menu--horizontal .icon{width:24px;height:24px;margin-right:1rem}.language-menu--horizontal .language-menu__open-btn{color:#fff;text-transform:uppercase;border-color:rgba(0,0,0,0);font-weight:700;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center;line-height:1.5em}.language-menu--horizontal .language-menu__open-btn::marker,.language-menu--horizontal .language-menu__open-btn::-webkit-details-marker{display:none}.language-menu--horizontal:not([open]) .language-menu__open-btn::after{content:"";display:inline-block;width:10px;height:10px;background:url(/static/studio/pub/web/v3/master/hashed/arrow-forward-white.f3635181.svg) center center no-repeat;background-size:contain;margin-left:8px}.language-menu--horizontal .language-menu__close-btn{width:24px;height:24px;background:url(/static/studio/pub/web/v3/master/hashed/arrow-forward-white.f3635181.svg) center center no-repeat;background-size:10px 10px;rotate:180deg;line-height:1em;margin:0 8px;position:relative}.language-menu--horizontal a{margin-bottom:0}.language-menu--horizontal .language-menu__options{position:static;position:initial;right:auto;right:initial;width:auto;width:initial;background-color:rgba(0,0,0,0);padding:0;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;margin-right:0}.language-menu--horizontal .language-menu__options a{margin-right:16px;border-bottom:0;line-height:1.5em}.language-menu--horizontal .language-menu__options a:last-child{margin-right:0}.bg--blue-100{background-color:#00aeef}.bg--blue-80{background-color:#49bce8}.bg--blue-40{background-color:#a4ddf3}.bg--blue-20{background-color:#c6ecfd}.bg--blue-10{background-color:#e8f7fc}.bg--blue-5{background-color:#f4fbfe}.bg--white{background-color:#fff}.bg--black{background-color:#101010}.bg-container{position:relative}.bg-wrapper{position:absolute;height:100%;width:100vw;z-index:-1;left:calc(50% - 50vw)}.footer{background-color:#101010;color:#fff}.footer .footer__bottom{padding-inline:16px}.footer .footer__heading{margin:24px 0 16px 0}.footer__logo{margin:42px 0 10px 0}.footer__logo-img{width:117px;height:28px}.footer__policy{margin-bottom:24px}.footer__policy li:not(:last-of-type){margin-bottom:24px}.footer__faq li{margin:0 0 16px 0}.footer__copyright{margin-bottom:16px}.footer__policy a,.footer__faq a,.footer__policy .btn--plain{line-height:1.5rem;font-weight:inherit;white-space:nowrap}.footer__policy a::after,.footer__faq a::after,.footer__policy .btn--plain::after{background-image:url(/static/studio/pub/web/v3/master/hashed/arrow-forward-white.f3635181.svg)}.footer__policy a:hover,.footer__faq a:hover,.footer__policy .btn--plain:hover{color:#49bce8;background-color:#101010}.footer__policy a:hover::after,.footer__faq a:hover::after,.footer__policy .btn--plain:hover::after{background-image:url(/static/studio/pub/web/v3/master/hashed/arrow-forward-blue.a5106b57.svg)}.footer__some{margin-bottom:24px}.footer__some .footer__link--some{margin:0 0 16px 0;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;color:inherit;text-decoration:none}.footer__some .footer__link--some:hover{color:#49bce8}.footer__some .footer__link--some span{margin-top:0rem;margin-right:0rem;margin-bottom:0rem;margin-left:.5rem}.footer__contacts .address{font-style:normal}.footer__contacts .address p{margin-bottom:16px}.footer__contacts a[href^="mailto:"],.footer__contacts a[href^="tel:"],.footer__contacts a[href*="maps.google"]{color:currentColor;font-weight:inherit;padding-bottom:2px}.footer__contacts a[href^="mailto:"]:hover,.footer__contacts a[href^="tel:"]:hover,.footer__contacts a[href*="maps.google"]:hover{background-color:#00aeef;border-bottom-color:#00aeef;color:#101010}.footer__contacts a[href^="mailto:"]:focus::before,.footer__contacts a[href^="tel:"]:focus::before,.footer__contacts a[href*="maps.google"]:focus::before{border:2px solid currentColor;height:calc(100% + .5em)}.footer__contacts a[href*="maps.google"]{position:relative}.footer__contacts a[href*="maps.google"]:focus::before{width:calc(100% + 2em)}.footer__contacts a[href*="maps.google"]::after{content:"";background-image:url(/static/studio/pub/web/v3/master/hashed/open-in-new.60487ab6.svg);background-repeat:no-repeat;background-size:contain;position:absolute;width:.75rem;height:.75rem;right:-1.25rem;top:.3125rem}.footer .icon--social{height:2rem;display:inline-block}.footer .icon--social svg{width:2rem;height:2rem;fill:#00aeef}.footer ul{list-style:none;padding:0;margin:0}@media screen and (min-width: 768px){.footer__policy ul{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between}.footer__policy ul li{margin:0 !important}.footer__logo{margin:40px 0px 10px 0px}.footer__contacts{margin-top:16px}.footer__faq,.footer__some{margin-top:40px}.footer__copyright{margin-top:10px}}@media(min-width: 1024px)and (max-width: 1199.98px){.footer .container{max-width:none;max-width:initial;padding-left:16px;padding-right:16px}.footer .footer__columns{grid-template-columns:2fr 3fr 2fr 1fr}.footer .btn--special{padding-left:1rem;padding-right:1rem}}@media screen and (min-width: 1024px){.container{padding:0}.footer__logo{padding:0;margin-bottom:0}.footer__logo-img{width:168px;height:40px}.footer__contacts,.footer__faq,.footer__some{margin-top:0;margin-bottom:0}.footer__contacts,.footer__copyright,.footer__policy{padding-left:0;padding-right:0}.footer__copyright,.footer__policy{margin-top:40px}}.footer{background-color:#101010;color:#fff}.footer .btn:focus,.footer .footer__col.newsletter-cta a:focus,.footer__col.newsletter-cta .footer a:focus,.footer .btn:hover,.footer .footer__col.newsletter-cta a:hover,.footer__col.newsletter-cta .footer a:hover{border-color:#fff}.footer .footer__bottom{padding:40px 24px}@media screen and (min-width: 1024px){.footer .footer__bottom{padding:64px 0}}.footer .footer__logo-img{width:183px;height:44px}@media screen and (min-width: 1024px){.footer .footer__logo-img{width:256px;height:61px}}.footer .footer__columns{padding:40px 0;display:grid;grid-column-gap:16px;grid-row-gap:56px;grid-template-columns:1fr}@media screen and (min-width: 768px){.footer .footer__columns{grid-template-columns:repeat(2, minmax(0, 1fr))}}@media(min-width: 1024px)and (max-width: 1439.98px){.footer .footer__columns{grid-template-columns:2fr 3fr 2fr 1fr}}@media screen and (min-width: 1200px){.footer .footer__columns{padding-top:56px}}@media screen and (min-width: 1440px){.footer .footer__columns{grid-template-columns:repeat(4, minmax(0, 1fr))}}.footer .footer__col li{margin:0 0 16px 0}.footer__col.newsletter-cta a{background-color:#00aeef;color:#fff}.footer__col.newsletter-cta a:focus,.footer__col.newsletter-cta a:hover{border-color:#fff}.footer__col li a:not(.link),.footer__col.policy-links li .btn--plain{line-height:1.5rem;font-weight:inherit;white-space:nowrap}.footer__col li a:not(.link)::after,.footer__col.policy-links li .btn--plain::after{background-image:url(/static/studio/pub/web/v3/master/hashed/arrow-forward-white.f3635181.svg)}.footer__col li a:not(.link):hover,.footer__col.policy-links li .btn--plain:hover{color:#49bce8;background-color:#101010}.footer__col li a:not(.link):hover::after,.footer__col.policy-links li .btn--plain:hover::after{background-image:url(/static/studio/pub/web/v3/master/hashed/arrow-forward-blue.a5106b57.svg)}.footer .social-links__list{-webkit-column-gap:16px;-moz-column-gap:16px;column-gap:16px}.footer .social-links .list__item-link:focus{outline-color:#fff}.footer .social-links svg{width:2rem;height:2rem;fill:#00aeef}.footer .address{font-style:normal}.footer .address p{margin-bottom:16px}.footer .link[href^="mailto:"],.footer .footer__col li a[href^="mailto:"]:not(.link),.footer__col li .footer a[href^="mailto:"]:not(.link),.footer .footer__col.policy-links li [href^="mailto:"].btn--plain,.footer__col.policy-links li .footer [href^="mailto:"].btn--plain,.footer .link[href^="tel:"],.footer .footer__col li a[href^="tel:"]:not(.link),.footer__col li .footer a[href^="tel:"]:not(.link),.footer .footer__col.policy-links li [href^="tel:"].btn--plain,.footer__col.policy-links li .footer [href^="tel:"].btn--plain,.footer .link[href*="maps.google"],.footer .footer__col li a[href*="maps.google"]:not(.link),.footer__col li .footer a[href*="maps.google"]:not(.link),.footer .footer__col.policy-links li [href*="maps.google"].btn--plain,.footer__col.policy-links li .footer [href*="maps.google"].btn--plain,.footer .link.link--external,.footer .footer__col li a.link--external:not(.link),.footer__col li .footer a.link--external:not(.link),.footer .footer__col.policy-links li .link--external.btn--plain,.footer__col.policy-links li .footer .link--external.btn--plain,.footer .link.link--white,.footer .footer__col li a.link--white:not(.link),.footer__col li .footer a.link--white:not(.link),.footer .footer__col.policy-links li .link--white.btn--plain,.footer__col.policy-links li .footer .link--white.btn--plain{color:currentColor;font-weight:inherit;padding-bottom:2px}.footer .link[href^="mailto:"]:hover,.footer .footer__col li a[href^="mailto:"]:hover:not(.link),.footer__col li .footer a[href^="mailto:"]:hover:not(.link),.footer .footer__col.policy-links li [href^="mailto:"].btn--plain:hover,.footer__col.policy-links li .footer [href^="mailto:"].btn--plain:hover,.footer .link[href^="tel:"]:hover,.footer .footer__col li a[href^="tel:"]:hover:not(.link),.footer__col li .footer a[href^="tel:"]:hover:not(.link),.footer .footer__col.policy-links li [href^="tel:"].btn--plain:hover,.footer__col.policy-links li .footer [href^="tel:"].btn--plain:hover,.footer .link[href*="maps.google"]:hover,.footer .footer__col li a[href*="maps.google"]:hover:not(.link),.footer__col li .footer a[href*="maps.google"]:hover:not(.link),.footer .footer__col.policy-links li [href*="maps.google"].btn--plain:hover,.footer__col.policy-links li .footer [href*="maps.google"].btn--plain:hover,.footer .link.link--external:hover,.footer .footer__col li a.link--external:hover:not(.link),.footer__col li .footer a.link--external:hover:not(.link),.footer .footer__col.policy-links li .link--external.btn--plain:hover,.footer__col.policy-links li .footer .link--external.btn--plain:hover,.footer .link.link--white:hover,.footer .footer__col li a.link--white:hover:not(.link),.footer__col li .footer a.link--white:hover:not(.link),.footer .footer__col.policy-links li .link--white.btn--plain:hover,.footer__col.policy-links li .footer .link--white.btn--plain:hover{background-color:#00aeef;border-bottom-color:#00aeef;color:#101010}.footer .link[href^="mailto:"]:focus::before,.footer .footer__col li a[href^="mailto:"]:focus:not(.link)::before,.footer__col li .footer a[href^="mailto:"]:focus:not(.link)::before,.footer .footer__col.policy-links li [href^="mailto:"].btn--plain:focus::before,.footer__col.policy-links li .footer [href^="mailto:"].btn--plain:focus::before,.footer .link[href^="tel:"]:focus::before,.footer .footer__col li a[href^="tel:"]:focus:not(.link)::before,.footer__col li .footer a[href^="tel:"]:focus:not(.link)::before,.footer .footer__col.policy-links li [href^="tel:"].btn--plain:focus::before,.footer__col.policy-links li .footer [href^="tel:"].btn--plain:focus::before,.footer .link[href*="maps.google"]:focus::before,.footer .footer__col li a[href*="maps.google"]:focus:not(.link)::before,.footer__col li .footer a[href*="maps.google"]:focus:not(.link)::before,.footer .footer__col.policy-links li [href*="maps.google"].btn--plain:focus::before,.footer__col.policy-links li .footer [href*="maps.google"].btn--plain:focus::before,.footer .link.link--external:focus::before,.footer .footer__col li a.link--external:focus:not(.link)::before,.footer__col li .footer a.link--external:focus:not(.link)::before,.footer .footer__col.policy-links li .link--external.btn--plain:focus::before,.footer__col.policy-links li .footer .link--external.btn--plain:focus::before,.footer .link.link--white:focus::before,.footer .footer__col li a.link--white:focus:not(.link)::before,.footer__col li .footer a.link--white:focus:not(.link)::before,.footer .footer__col.policy-links li .link--white.btn--plain:focus::before,.footer__col.policy-links li .footer .link--white.btn--plain:focus::before{border:2px solid currentColor;height:calc(100% + .5em)}.footer ul{list-style:none;padding:0;margin:0}.footer .bordered{padding:56px 0;border-bottom:1px solid #d9d9d9;border-top:1px solid #d9d9d9;gap:24px}@media screen and (min-width: 1024px){.footer .bordered{border-top:none;padding:16px 0 32px 0}}.footer .policy-links ul{-webkit-column-gap:24px;-moz-column-gap:24px;column-gap:24px;margin-bottom:40px}@media screen and (min-width: 1024px){.footer .policy-links ul{margin-bottom:0}}.footer .footer__carbon-badge{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}@media screen and (min-width: 768px){.footer .footer__carbon-badge{-ms-flex-direction:row;flex-direction:row}}.footer .footer__carbon-badge .carbon-badge__inner{display:-ms-flexbox;display:flex;border-bottom:1px solid #00aeef;padding-bottom:16px}@media screen and (min-width: 768px){.footer .footer__carbon-badge .carbon-badge__inner{border-right:2px solid #00aeef;border-bottom:none;padding-bottom:0}}.footer .footer__carbon-badge img{width:40px;height:36px}.footer .footer__carbon-badge .carbon-badge__value{padding-right:16px;padding-left:8px;text-wrap:nowrap}.footer .footer__carbon-badge .carbon-badge__text{max-width:361px;padding-top:16px;font-size:16px}@media screen and (min-width: 768px){.footer .footer__carbon-badge .carbon-badge__text{padding-left:16px;padding-top:0}}@media screen and (min-width: 768px){.link-wrapper{cursor:pointer}.link-wrapper.focused{outline-style:solid;outline-color:#101010;outline-width:2px;outline-offset:2px}.link-wrapper.focused a{outline:none}.bg--black .link-wrapper.focused{outline-color:#fff}}#CookiebotWidget{display:none}#CybotCookiebotDialogPoweredbyCybot{display:none !important}#CybotCookiebotDialogBodyEdgeMoreDetailsLink{color:#101010 !important}#CybotCookiebotDialogBodyEdgeMoreDetailsLink:hover{color:#00aeef !important}.emergency-bar{position:relative;z-index:11;padding:8px;-ms-flex-align:center;align-items:center;-webkit-column-gap:16px;-moz-column-gap:16px;column-gap:16px;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:center;justify-content:center;max-width:100%;-ms-flex-positive:1;flex-grow:1;display:none}.emergency-state .emergency-bar{display:-ms-flexbox;display:flex}.emergency-bar::before{content:"";display:inline-block;width:17px;height:17px;border-radius:50%;background-color:#e2231a;-webkit-animation:.7s infinite alternate pulse-opacity;animation:.7s infinite alternate pulse-opacity}@media(prefers-reduced-motion){.emergency-bar::before{-webkit-animation:none;animation:none}}@media(max-width: 374.98px){.emergency-bar::before{width:14px;height:14px}}@media screen and (min-width: 1024px){.emergency-bar{padding-top:11px;padding-bottom:8px}}.emergency-bar__text{-ms-flex-align:center;align-items:center}.emergency-bar__link{line-height:1.375rem;border-bottom:2px solid #101010}.emergency-bar__link:focus{outline:2px solid #101010;outline-offset:2px}.emergency-bar__text,.emergency-bar__link{font-size:.875rem;text-transform:uppercase;font-weight:800;letter-spacing:2.8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}@media(max-width: 374.98px){.emergency-bar__text,.emergency-bar__link{font-size:.75rem}}@-webkit-keyframes pulse-opacity{from{opacity:1}to{opacity:.5}}@keyframes pulse-opacity{from{opacity:1}to{opacity:.5}}.hero{position:relative;margin-top:-5rem}@media screen and (min-width: 1024px){.hero{background:-webkit-gradient(linear, left top, left bottom, from(#101010), color-stop(19%, rgba(0, 0, 0, 0)));background:linear-gradient(to bottom, #101010, rgba(0, 0, 0, 0) 19%)}}.hero__content{min-height:90vh;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;padding-top:10rem;padding-bottom:1.5rem}@media screen and (max-height: 670px)and (min-width: 1024px){.hero__content{min-height:650px}}.hero__content .content__box{max-width:80%}.hero__content .content__box--bottom-left,.hero__content .content__box--bottom-right,.hero__content .content__box--bottom-center{-ms-flex-item-align:end;align-self:flex-end;-ms-flex-order:1;order:1}.hero--with-video .video-control{cursor:pointer;position:relative;right:0;-ms-flex-item-align:end;align-self:end;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;-ms-flex-order:1;order:1}.hero--with-video .video-control .icon svg{width:.75rem;height:.875rem}.hero--with-video .video-control.playing .video-control-pause{display:none}.hero--with-video .video-control:not(.playing) .video-control-play{display:none}.hero--with-video .hero__content .content__box--bottom-right,.hero--with-video .hero__content .content__box--top-right{margin-left:0}.hero__title{font-size:clamp(1.625rem,3.33vw,3.5rem);line-height:2em;text-wrap:balance;white-space:pre-wrap;padding-top:.1875rem;padding-right:0rem;padding-bottom:.4375rem;padding-left:0rem;-webkit-box-shadow:-8px 0 #fff,8px 0 #fff;box-shadow:-8px 0 #fff,8px 0 #fff;box-decoration-break:clone;-webkit-box-decoration-break:clone;display:inline;background-color:#fff;border-radius:8px}.emergency-state .hero__title{-webkit-box-shadow:-8px 0 #101010,8px 0 #101010;box-shadow:-8px 0 #101010,8px 0 #101010;background-color:#101010;color:#fff}.hero--brand-colors:not(.emergency-state) .hero__title{-webkit-box-shadow:-8px 0 #00aeef,8px 0 #00aeef;box-shadow:-8px 0 #00aeef,8px 0 #00aeef;background-color:#00aeef;color:#fff}@media screen and (min-width: 1200px){.hero__title{line-height:1.8em}}.hero__image,.hero__video{height:100%;position:absolute;width:100vw;top:0;left:calc(50% - 50vw);z-index:-1;background-color:#666}.hero__image img,.hero__image video,.hero__video img,.hero__video video{height:100%;width:100%;-o-object-fit:cover;object-fit:cover}.content__heading{margin-left:8px;margin-right:8px}@media screen and (min-width: 768px){.hero__content{padding-bottom:5rem}.hero__content .content__box{max-width:75%}.hero__content .content__box--bottom-right{-ms-flex-item-align:end;align-self:end}.hero__content .content__box--bottom-right,.hero__content .content__box--top-right{margin-left:auto}.hero__content .content__box--bottom-center{margin:0 auto}.hero__title{padding-top:.1875rem;padding-right:0rem;padding-bottom:.5rem;padding-left:0rem;-webkit-box-shadow:-24px 0 #fff,24px 0 #fff;box-shadow:-24px 0 #fff,24px 0 #fff}.emergency-state .hero__title{-webkit-box-shadow:-24px 0 #101010,24px 0 #101010;box-shadow:-24px 0 #101010,24px 0 #101010;background-color:#101010;color:#fff}.hero--brand-colors:not(.emergency-state) .hero__title{-webkit-box-shadow:-24px 0 #00aeef,24px 0 #00aeef;box-shadow:-24px 0 #00aeef,24px 0 #00aeef}.content__heading{margin-left:24px;margin-right:24px}}@media screen and (min-width: 1024px){.hero__title{padding-top:.1875rem;padding-right:0rem;padding-bottom:.6875rem;padding-left:0rem}.hero__content .content__box{max-width:65%}.hero__content .content__box--bottom-right~.video-control{-ms-flex-order:0;order:0}}.accordion{margin:2rem 0}.accordion__item{font-size:1.125rem;line-height:2rem}@media screen and (min-width: 1024px){.accordion__item{font-size:1.25rem}}.accordion__item-header{font-weight:700;cursor:pointer;display:-ms-flexbox;display:flex;border-bottom:1px solid #00aeef}.accordion__item-header:focus-visible{outline-style:solid;outline-width:2px;outline-color:#101010;outline-offset:0px}@media screen and (min-width: 1024px){.accordion__item-header:hover{text-decoration:underline;text-underline-offset:6px;text-decoration-thickness:1px}}.accordion__item-header::-webkit-details-marker{display:none}@media screen and (min-width: 1024px){.accordion__item-header{padding:1.5rem 0}}.accordion__item-title{-ms-flex:1 1 auto;flex:1 1 auto;padding-left:2px}.accordion__item-arrow{height:1rem;width:1rem;min-width:1rem;margin:.5rem 2px 0 1rem;position:relative}.accordion__item-arrow::before{content:"";display:block;background-color:#2d2d2d;width:1rem;height:2px;position:absolute;top:calc(50% - 1px);left:0;-webkit-transition:.3s transform cubic-bezier(0.58, 0.03, 0.58, 1);transition:.3s transform cubic-bezier(0.58, 0.03, 0.58, 1)}.accordion__item-arrow::after{content:"";display:block;background-color:#2d2d2d;width:2px;height:1rem;position:absolute;top:0;left:calc(50% - 1px);-webkit-transition:.3s transform cubic-bezier(0.58, 0.03, 0.58, 1);transition:.3s transform cubic-bezier(0.58, 0.03, 0.58, 1)}.accordion__item[open] .accordion__item-arrow::before{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.accordion__item[open] .accordion__item-arrow::after{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.accordion__item-content{padding:1rem 0}.accordion__item-content *:first-child{margin-top:0}.accordion__item-content *:last-child{margin-bottom:0}.testimonial{background-color:#00aeef;padding:40px 16px 0 16px;margin:0}.testimonial__quote{background-color:#fff;color:#101010;-ms-flex-item-align:center;align-self:center;margin-bottom:40px}.testimonial__image{-ms-flex-item-align:end;align-self:end;padding:0}.testimonial__image img{max-height:288px;vertical-align:bottom;-o-object-fit:cover;object-fit:cover;-o-object-position:top;object-position:top}@media screen and (min-width: 1024px){.testimonial__image img{max-height:441px}.testimonial__quote{padding-left:40px;padding-right:40px}}.lift-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.lift-group__item--text ul:has(li>a){list-style:none;padding:0;margin:0;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-direction:column;flex-direction:column}.lift-group__item--text li{-ms-flex:0 1 100%;flex:0 1 100%;margin-bottom:1rem;padding-right:16px}.lift-group__item--text li:nth-last-child(n+4),.lift-group__item--text li:nth-last-child(4)~li{-ms-flex:0 1 50%;flex:0 1 50%}.lift-group__item{position:relative;min-height:316px}.lift-group__item::after{content:"";position:absolute;background-color:inherit;z-index:-1;top:0;left:calc(50% - 50vw);width:100vw;height:100%}.lift-group__item-inner{width:100%}.lift-group__item--small .lift-group__item-inner{padding:40px 16px}.lift-group__item--large .lift-group__item-inner{padding:80px 16px}.lift-group__title{position:relative}@media screen and (min-width: 1024px){.lift-group__item--large .lift-group__title{margin-bottom:32px}}.lift-group__item--small .lift-group__title::after{margin-top:24px}@media screen and (min-width: 1024px){.lift-group__item--small .lift-group__title{margin-bottom:24px}}.lift-group__item-image{position:relative;width:100%;-ms-flex-item-align:stretch;align-self:stretch}.lift-group__item-image img{display:block;height:100%;width:100%;-o-object-fit:cover;object-fit:cover}.lift-group__item-image .lift-group__image-wrapper,.lift-group__item-image .lift-group__video-wrapper{position:absolute;width:100vw;height:100%;left:calc(50% - 50vw)}.lift-group__item--small .lift-group__item-image{min-height:316px}.lift-group__item--large .lift-group__item-image{min-height:min(576px,40vh)}@media screen and (min-width: 768px){.lift-group__item--text ul:has(li>a){-ms-flex-direction:row;flex-direction:row}}@media screen and (min-width: 1024px){.lift-group{display:grid;grid-template:1fr 1fr/1fr 1fr}.lift-group__item--large{grid-row:1/3}.lift-group__item--small:not(.top-row){grid-row:2/3}.top-row{grid-row:1/2}.lift-group__item{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.lift-group__item::after{left:0;width:50vw}.lift-group__item.column-left::after{right:0;left:auto;left:initial}.lift-group__item--small .lift-group__item-inner,.lift-group__item--large .lift-group__item-inner{padding:70px 0 70px 56px}.column-left .lift-group__item-inner{padding:70px 56px 70px 0}.lift-group__item--large .lift-group__item-image{min-height:840px}.lift-group__item--small .lift-group__item-image{min-height:100%}.lift-group__item-image .lift-group__image-wrapper,.lift-group__item-image .lift-group__video-wrapper{width:50vw;left:auto;left:initial}.column-left .lift-group__item-image .lift-group__image-wrapper,.column-left .lift-group__item-image .lift-group__video-wrapper{left:calc(-50vw + 100%)}}.lift-group__video-wrapper--container{width:100%;height:100%;position:absolute}.lift-group__video-wrapper .video-control{cursor:pointer;right:24px;top:24px;-ms-flex-item-align:end;align-self:end;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;z-index:10;position:absolute}.lift-group__video-wrapper .video-control .icon svg{width:.75rem;height:.875rem}.lift-group__video-wrapper .video-control.playing .video-control-pause{display:none}.lift-group__video-wrapper .video-control:not(.playing) .video-control-play{display:none}.lift-group__video-wrapper video{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.lift_group__banner-heading{position:absolute;display:-ms-flexbox;display:flex;height:100%;width:100%;padding:42px 16px;z-index:10;top:0}@media screen and (min-width: 1024px){.lift_group__banner-heading{padding:80px;width:50vw}}.lift_group__banner-heading .text-white{color:#fff}.lift_group__banner-heading .text-black{color:#101010}.lift_group__banner-heading h2,.lift_group__banner-heading h3{margin:0}.lift_group__banner-heading.text-center-center{-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}.lift_group__banner-heading.text-bottom-left{-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:end;align-items:end}.lift-group--donation .lift-group__item--large .lift-group__item-inner{padding:0 16px 32px}@media screen and (min-width: 1024px){.lift-group--donation .lift-group__item--large .lift-group__item-inner{padding:80px 56px 32px 0}}@media screen and (min-width: 1024px){.lift-group--donation .lift-group__item--large .lift-group__title{margin-top:0}}.lift-group--donation .lift-group__item--large .lift-group__title::after{display:none}@media screen and (max-width: 1024px){.lift-group--donation{-ms-flex-direction:column-reverse;flex-direction:column-reverse}}.lift-group--poll .lift-group__item--large .lift-group__item-inner{padding:0}@media screen and (max-width: 1440px){.lift-group--poll{display:-ms-flexbox;display:flex}.lift-group--poll .lift-group__item:nth-child(2){display:none}}@media screen and (min-width: 1440px){.lift-group--poll .poll>.container{padding-right:80px}}.txt-and-img__section .row{min-height:436px;display:grid;grid-template-columns:1fr;grid-gap:40px;gap:40px;padding:80px 16px}@media screen and (min-width: 1024px){.txt-and-img__section .row{grid-template-columns:1fr 1fr;-ms-flex-align:center;align-items:center;padding:80px 16px}}.txt-and-img__section .row .col-12,.txt-and-img__section .row .col-lg-6{width:auto;width:initial}.txt-and-img__image img{-o-object-fit:cover;object-fit:cover;width:100%;display:block;aspect-ratio:3/2;border-radius:8px}.txt-and-img__image--downloadable img{aspect-ratio:unset;width:200px}.txt-and-img__text p{margin-bottom:24px}.txt-and-img__text p:last-of-type{margin-bottom:0}.txt-and-img__text .editor-content li:not(:last-child){padding-bottom:1rem}.txt-and-img__text:not(.order-1){margin-top:0;margin-bottom:24px}.txt-and-img__title{position:relative}@media screen and (min-width: 1024px){.txt-and-img__title{margin-bottom:32px}}@media screen and (min-width: 1024px){.txt-and-img__image--downloadable img{width:100%}.txt-and-img__image--downloadable{padding:0 50px}.txt-and-img__text{margin-top:0;padding:14px 0 14px 40px}.txt-and-img__text:not(.order-1){padding:14px 40px 14px 0;margin-bottom:0}}.content__quote{margin-top:2rem;margin-bottom:2rem}.content__quote--spacing-top-less{margin-top:0}.content__quote--spacing-top-none{margin-top:0}.content__quote--spacing-top-none.content__quote .quote__figure{padding-top:1.5rem}.content__quote--spacing-bottom-less{margin-bottom:0px}.content__quote--spacing-bottom-none{margin-bottom:0px}.content__quote--spacing-bottom-none.content__quote .quote__figure{padding-bottom:1.5rem}.content__quote .quote__figure,.content__quote .quote__figure--edited,.content__quote .quote__figure-long,.content__quote .quote__figure--edited-long,.content__text .quote__figure,.content__text .quote__figure--edited,.content__text .quote__figure-long,.content__text .quote__figure--edited-long{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;text-align:center;gap:2rem;padding-top:3rem;padding-right:0rem;padding-bottom:3rem;padding-left:0rem}.content__quote .quote__figure blockquote,.content__quote .quote__figure--edited blockquote,.content__quote .quote__figure-long blockquote,.content__quote .quote__figure--edited-long blockquote,.content__text .quote__figure blockquote,.content__text .quote__figure--edited blockquote,.content__text .quote__figure-long blockquote,.content__text .quote__figure--edited-long blockquote{font-size:1.375rem;line-height:1.5}.content__quote .quote__figure-long,.content__quote .quote__figure--edited-long,.content__text .quote__figure-long,.content__text .quote__figure--edited-long{padding-top:2.5rem;padding-right:0rem;padding-bottom:2.5rem;padding-left:0rem}@media screen and (min-width: 1024px){.content__quote .quote__figure blockquote,.content__quote .quote__figure--edited blockquote,.content__quote .quote__figure-long blockquote,.content__quote .quote__figure--edited-long blockquote,.content__text .quote__figure blockquote,.content__text .quote__figure--edited blockquote,.content__text .quote__figure-long blockquote,.content__text .quote__figure--edited-long blockquote{font-size:1.5rem}}.content__quote .quote__figcaption,.content__text .quote__figcaption{font-weight:bold}.content__quote .quote__figcaption cite,.content__text .quote__figcaption cite{font-style:normal}.content__quote .icon--quote,.content__text .icon--quote{display:inline}.content__quote .icon--quote svg,.content__text .icon--quote svg{fill:#00aeef}.quote__icon-wrapper{height:2.5rem}.quote__figure--edited,.content__quote .quote__figure-long,.content__quote .quote__figure--edited-long,.content__text .quote__figure-long,.content__text .quote__figure--edited-long{margin-top:3rem;margin-bottom:3rem;padding-top:4.5rem}@media screen and (min-width: 1024px){.quote__figure--edited,.content__quote .quote__figure-long,.content__quote .quote__figure--edited-long,.content__text .quote__figure-long,.content__text .quote__figure--edited-long{padding-top:3rem}}.quote__figure--edited :first-child,.content__quote .quote__figure-long :first-child,.content__quote .quote__figure--edited-long :first-child,.content__text .quote__figure-long :first-child,.content__text .quote__figure--edited-long :first-child{font-size:1.375rem;font-style:italic;font-weight:400;line-height:1.5;position:relative;margin-top:48px;margin-bottom:0}.quote__figure--edited :first-child::before,.content__quote .quote__figure-long :first-child::before,.content__quote .quote__figure--edited-long :first-child::before,.content__text .quote__figure-long :first-child::before,.content__text .quote__figure--edited-long :first-child::before{content:"";background-image:url(/static/studio/pub/web/v3/master/hashed/quote.99ca33c2.svg);background-size:cover;height:2.578125rem;width:3.125rem;position:absolute;top:-4.5rem;left:calc(50% - 25px)}@media screen and (min-width: 1024px){.quote__figure--edited :first-child,.content__quote .quote__figure-long :first-child,.content__quote .quote__figure--edited-long :first-child,.content__text .quote__figure-long :first-child,.content__text .quote__figure--edited-long :first-child{font-size:1.5rem;margin-top:72px}}.quote__figure--edited :nth-child(2),.content__quote .quote__figure-long :nth-child(2),.content__quote .quote__figure--edited-long :nth-child(2),.content__text .quote__figure-long :nth-child(2),.content__text .quote__figure--edited-long :nth-child(2){font-weight:bold;margin-bottom:0}.info-box{margin-top:32px;margin-bottom:32px;background-color:#c6ecfd;border-radius:8px;padding:24px}.info-box p:last-of-type{margin-bottom:0}.info-box .info-box__title{margin-bottom:34px}@media screen and (min-width: 1024px){.info-box{padding:40px}}.content{padding-left:1rem;padding-right:1rem;margin-bottom:32px}.content ul ul,.content ul ol,.content ol ul,.content ol ol,.content p ul,.content p ol{margin-bottom:0}.content .content__text{margin-top:2rem;margin-bottom:2rem}.content .content__text--spacing-top-less{margin-top:.5rem}.content .content__text--spacing-top-none{margin-top:0}.content .content__text--spacing-top-none>*:first-child{margin-top:0}.content .content__text--spacing-bottom-less{margin-bottom:1rem}.content .content__text--spacing-bottom-none{margin-bottom:0}.content .content__details{-webkit-column-gap:16px;-moz-column-gap:16px;column-gap:16px}.content .content__details .details__image{width:50px;height:50px;margin-right:16px}.content .content__details .details__image img{height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;border-radius:50%;-webkit-filter:grayscale(100%);filter:grayscale(100%)}.content .content__end{-webkit-column-gap:4px;-moz-column-gap:4px;column-gap:4px;margin-top:24px;margin-bottom:24px;padding-bottom:40px;border-bottom:1px solid #00aeef}@media screen and (min-width: 1024px){.content .content__end{padding-bottom:80px}}.content .content__title{margin-top:0px}.content--margin-top-large .content__text .content__title{margin-top:80px}.content--margin-top-large .content__text>:first-child:not(.content__title){margin-top:0}.content a:not(.btn):focus{outline:auto}.content a:not(.btn):focus::before{display:none}.content-author{background:#f2f2f2;border-radius:8px;padding:32px 38px;margin:12px 0;display:grid;grid-template-columns:1fr;grid-gap:48px;gap:48px;text-align:center}@media screen and (min-width: 1200px){.content-author{grid-template-columns:2fr 2fr;gap:64px;text-align:left}}.content-author__container{padding-top:40px}@media screen and (min-width: 1024px){.content-author__container{padding-top:80px}}.content-author__details-left{position:relative;display:grid;grid-template-columns:1fr;-ms-flex-align:center;align-items:center}@media screen and (min-width: 1440px){.content-author__details-left.with-image{grid-template-columns:2fr 2fr}}.content-author__details-left::after{content:"";position:absolute;display:block;background-color:#00aeef;bottom:-23px;right:0;height:1px;width:100%}@media screen and (min-width: 1200px){.content-author__details-left::after{top:0;right:-32px;height:100%;width:1px}}.content-author__photo{width:100px;height:100px;border-radius:100%;-webkit-filter:grayscale(100%);filter:grayscale(100%)}.content-author__name{margin:0 0 8px 0}.content-author__title{font-weight:700;text-transform:uppercase;font-size:14px;color:#00aeef}.content-author__description-heading{text-transform:uppercase;font-weight:bold;font-size:14px;margin-bottom:8px}.content-author__details-right p{font-size:18px;line-height:27px;margin:0}.content__image{margin:0}.content__image .image{height:375px}.content__image .image img{border-radius:8px}.content__image .image img,.content__image .image video{-o-object-fit:cover;object-fit:cover;height:100%;width:100%}.content__image .image__caption{margin-top:1rem}.content__image .image__copyright{font-weight:700;color:#2d2d2d;white-space:nowrap}.content__image--full-width{position:relative}.content__image--full-width .image img{border-radius:0}.content__image--full-width .image{position:absolute;width:100vw;left:calc(50% - 50vw)}.content__image--full-width .image__placeholder{height:375px}.news-article .content__text img,.editor-image img,.editor-image--wider-width img{min-width:100%;height:auto;border-radius:8px}.editor-image--wider-width p,.editor-image p{margin-bottom:0;line-height:1em}.content--with-video .video__wrapper{position:relative}.content--with-video .video-control{cursor:pointer;position:absolute;bottom:48px;right:44px;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content}.content--with-video .video-control .icon svg{width:.75rem;height:.875rem}.content--with-video .video-control.playing .video-control-pause{display:none}.content--with-video .video-control:not(.playing) .video-control-play{display:none}.content--with-video.content__image--full-width .video__wrapper{position:absolute}.content--with-video.content__image--full-width .video-control{position:relative;left:calc(100% - 58px);top:calc(100% - 108px)}@media screen and (min-width: 1024px){.content__image .image{height:605px}.content__image--full-width .image,.content__image--full-width .image__placeholder{height:720px}}.editor-image--full-width{position:relative;height:375px}@media screen and (min-width: 1024px){.editor-image--full-width{height:720px}}.editor-image--full-width p{margin:0;position:absolute;width:100vw;height:100%;left:calc(50% - 50vw)}.editor-image--full-width img{-o-object-fit:cover;object-fit:cover;height:100%;width:100%}.text--small.mt-3.bold{font-weight:400}.editor-image__copyright{font-weight:700;color:#2d2d2d;margin-top:16px;margin-bottom:32px}.editor-image__caption+.editor-image__copyright{margin-top:0}.editor-image__caption:has(+.editor-image__copyright){margin-bottom:.25em}.content__block{padding:40px 16px}@media screen and (min-width: 1024px){.content__block{padding:80px 0px}}.social-proof__wrapper{width:100%;padding:80px 15px}.social-proof .btn{margin-top:40px}.social-proof h2{text-align:center;word-wrap:break-word;margin-bottom:72px}.social-proof__card-container{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;margin-bottom:0}@media screen and (min-width: 768px){.social-proof__card-container{-ms-flex-direction:row;flex-direction:row;-ms-flex-align:start;align-items:flex-start}}.social-proof__card-container li{list-style-type:none;text-align:center;max-width:450px;width:100%}.social-proof__card-container p{margin-bottom:0}.social-proof__card-container img{max-width:136px;margin:0 auto}.social-proof__card-container.multirow-container{-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-top:0;-webkit-column-gap:32px;-moz-column-gap:32px;column-gap:32px;row-gap:24px}@media screen and (min-width: 768px){.social-proof__card-container.multirow-container{row-gap:72px}.social-proof__card-container.multirow-container .col-4,.social-proof__card-container.multirow-container .col-3{-ms-flex-preferred-size:calc(50% - 16px);flex-basis:calc(50% - 16px)}}@media screen and (min-width: 1024px){.social-proof__card-container.multirow-container .col-4{-ms-flex-preferred-size:calc(33.33% - 22px);flex-basis:calc(33.33% - 22px)}.social-proof__card-container.multirow-container .col-3{-ms-flex-preferred-size:calc(25% - 24px);flex-basis:calc(25% - 24px)}}.social-proof__card-container.multirow-container .card__main{row-gap:32px}.social-proof__card-container.multirow-container .no-image{color:#00aeef;text-transform:uppercase}.social-proof__card-container.multirow-container .no-image .no-link-style{color:inherit;text-decoration:none}.knowledge-test{background-color:#a4ddf3;padding:48px 16px 80px 16px;text-align:center}.knowledge-test .question__text{margin-bottom:40px}.knowledge-test__answer{min-height:150px;position:relative}.knowledge-test__answer .answer__card{background-color:#a4ddf3;list-style:none;padding:16px 8px 8px 8px;position:relative;cursor:pointer}.knowledge-test__answer .answer__letter{position:absolute;display:block;width:2.5rem;line-height:2.5rem;font-size:1.875rem;border-radius:50%;font-weight:900;background-color:#fff}@media screen and (min-width: 1024px){.knowledge-test__answer .answer__letter{width:4.5rem;line-height:4.5rem;font-size:3.5rem}}.knowledge-test__answer .answer__text,.knowledge-test__answer .answer__letter{-webkit-transition:-webkit-transform .3s cubic-bezier(0.43, 0.01, 0.5, 1);transition:-webkit-transform .3s cubic-bezier(0.43, 0.01, 0.5, 1);transition:transform .3s cubic-bezier(0.43, 0.01, 0.5, 1);transition:transform .3s cubic-bezier(0.43, 0.01, 0.5, 1), -webkit-transform .3s cubic-bezier(0.43, 0.01, 0.5, 1)}.knowledge-test__answer[open] .answer__card{background-color:#fff}.knowledge-test__answer[open] .answer__letter{background-color:#101010;color:#fff}.knowledge-test__result{background-color:#fff;padding:16px 8px;padding:8px 8px 16px 8px}.knowledge-test__result .icon--close svg{fill:#fb5d5d;width:.875rem;height:.875rem;margin-right:8px}.knowledge-test__result .icon--check svg{fill:#33a317;width:1.1rem;height:.8375rem;margin-right:11px}.knowledge-test__answer .answer__text,.knowledge-test__result .result__text{margin-left:3.5rem;margin-bottom:0;text-align:start}@media screen and (min-width: 768px){.knowledge-test__answer .answer__card{padding:24px 28px}.knowledge-test__answer .answer__card:focus{outline-style:solid;outline-width:2px;outline-color:#101010;outline-offset:-2px}.knowledge-test__answer .answer__card:focus .answer__letter,.knowledge-test__answer .answer__card:focus .answer__letter,.knowledge-test__answer .answer__card:hover .answer__letter,.knowledge-test__answer .answer__card:hover .answer__letter{-webkit-transform:scale(1.22);transform:scale(1.22)}.knowledge-test__answer .answer__card:focus .answer__text,.knowledge-test__answer .answer__card:focus .answer__text,.knowledge-test__answer .answer__card:hover .answer__text,.knowledge-test__answer .answer__card:hover .answer__text{-webkit-transform:translateY(-16px);transform:translateY(-16px)}.knowledge-test__answer[open] .answer__card{outline:none}.knowledge-test__answer .answer__letter{position:static;margin:16px auto 32px auto}.knowledge-test__answer .answer__text,.knowledge-test__answer .result__text{margin-left:0;text-align:center}}.form__help-text{line-height:1.5rem;font-size:1rem;font-weight:400;color:#666;margin:8px 0 !important}.form__help-text--right{text-align:right}.form__help-text--error{margin:0 0 8px 0 !important;color:#101010;background-color:#fed6d6}.form__help-text--error:not(:empty){padding:2px 8px}.form__help-text--error p:last-child{margin-bottom:0}.form__help-text--full-width{width:100%}.form{margin:0 1rem 1rem}@media screen and (min-width: 768px){.form{margin:0 0 1rem}}.form,.form__section{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:2%;row-gap:24px;border:none;padding:0}.form .row--column-gap{width:100%;gap:24px;-ms-flex-direction:row;flex-direction:row}@media screen and (min-width: 1024px){.form .row--column-gap{-ms-flex-wrap:nowrap;flex-wrap:nowrap}}.form .row--column-gap [class^=col]{-ms-flex-negative:1;flex-shrink:1}.form--inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form--inline .form__cell{-ms-flex:0 0 auto;flex:0 0 auto}.form--inline .form__field,.form--inline .btn{height:2.5rem;padding-top:.5rem;padding-right:.875rem;padding-bottom:.5rem;padding-left:.875rem}@media screen and (min-width: 1024px){.form--inline .form__field,.form--inline .btn{height:3.5rem}}.form--inline .btn{-ms-flex-item-align:end;align-self:flex-end;margin-right:0;line-height:1rem}.form__cell{-ms-flex-preferred-size:100%;flex-basis:100%;display:-ms-flexbox;display:flex;-ms-flex-flow:column;flex-flow:column}@media screen and (min-width: 1024px){.form__cell--half-width{-ms-flex-preferred-size:49%;flex-basis:49%}}.form__cell-type--textarea{position:relative}.form__cell-type--dropdown .form__help-text--error{display:none}.form__cell-type--dropdown.form__cell-type--error .form__help-text--error{display:block}.form__fieldset{border:0;margin:0;padding:0}.form__field-wrapper{display:-ms-flexbox;display:flex;-ms-flex-flow:column;flex-flow:column;-ms-flex-align:normal;align-items:normal;position:relative}.form__legend{font-size:1.125rem;line-height:1.5rem;color:#2d2d2d;background-color:rgba(0,0,0,0);padding:0;margin-bottom:16px;font-weight:700}.form__label,.donation-form__payment-methods .form__legend{font-size:1rem;line-height:1.5rem;color:#fff;background-color:#101010;padding:0 8px;font-weight:700;font-style:normal;-ms-flex-item-align:start;align-self:flex-start}@media screen and (min-width: 1024px){.form__label,.donation-form__payment-methods .form__legend{font-size:1.125rem}}.form__label-captcha div{padding-bottom:4px}.form__plain-label{font-size:1rem;line-height:1.5rem;font-weight:700}.form__field-textarea{border:1px solid #2d2d2d;padding:10px;width:100%;height:200px;resize:auto}.form__field-text,.form__field-textarea,.form__field-file{padding:15px 12px;border:1px solid #919191;border-radius:0;margin:0}.form__field-text--disabled,.form__field-textarea--disabled,.form__field-file--disabled{background-color:#e6e6e6;color:#666;border:1px solid #ccc}.form__introduction div{padding:8px 0 32px}.form__field-text[type=date]{width:100%;-webkit-min-logical-width:calc(100% - 16px);background-color:#fff;height:56px}.form__field-wrapper .form__help-text--error{display:none}.form__field-wrapper--error .form__help-text--error{display:block}.form__cell-type--text .form__field-wrapper--error::after,.form__cell-type--text .form__field-wrapper--success::after,.form__cell-type--textarea .form__field-wrapper--error::after,.form__cell-type--textarea .form__field-wrapper--success::after{content:"";background:url(/static/studio/pub/web/v3/master/hashed/valid.6bccd3be.svg) center no-repeat #fff;width:15px;height:15px;position:absolute;right:13.5px;top:21px}.form__cell-type--text .form__field-wrapper--error .form__field,.form__cell-type--textarea .form__field-wrapper--error .form__field{border-color:#961f1f}.form__cell-type--text .form__field-wrapper--error::after,.form__cell-type--textarea .form__field-wrapper--error::after{background:url(/static/studio/pub/web/v3/master/hashed/invalid.00de6a62.svg) center no-repeat #fff}.form__before-icon{position:absolute;top:50%;left:12px;width:24px;height:24px;-webkit-transform:translateY(-50%);transform:translateY(-50%);pointer-events:none}.form__before-icon svg{width:24px;height:24px}.form__before-icon+.form__field-text{padding-left:48px}.form__field-checkbox-wrapper{position:relative;-ms-flex-preferred-size:100%;flex-basis:100%}.form__field-checkbox{position:absolute;opacity:0;cursor:pointer;height:0;width:0}.form__field-checkbox+.form__field-checkbox-label{position:relative;display:-ms-flexbox;display:flex}.form__field-checkbox+.form__field-checkbox-label::before{content:"";display:inline-block;width:20px;height:20px;background:#fff;border:1px solid #666;border-radius:2px;-webkit-transform:translateY(2px);transform:translateY(2px);-ms-flex-negative:0;flex-shrink:0}.form__field-checkbox-label-text{margin:0 8px}.form__field-checkbox:checked+.form__field-checkbox-label::before{background-color:#101010;border:2px solid #101010}.form__field-checkbox:checked+.form__field-checkbox-label+.icon--check{display:inline-block;position:absolute;top:4px;left:2px;pointer-events:none}.form__field-checkbox:focus-visible+.form__field-checkbox-label::before{border:1px solid #101010}.form__field-checkbox:focus-visible+.form__field-checkbox-label::after{content:"";position:absolute;display:inline-block;-ms-flex-item-align:center;align-self:center;width:26px;height:26px;border:2px solid #101010;border-radius:2px;left:-3px;top:-1px}.form__fieldset--checkbox.form__field-checkbox--error .form__help-text--error{display:block}.form__field-radio-wrapper{display:-ms-flexbox;display:flex}.form__field-radio{accent-color:#000;width:20px;height:20px;-ms-flex-preferred-size:auto;flex-basis:auto;margin:0}.form__field-radio:focus{outline:0}.form__field-radio-label-text{margin:0 8px}.form__field-radio+.form__field-radio-label{position:relative}.form__field-radio+.form__field-radio-label::before{content:"";display:inline-block;border-radius:15px;width:24px;height:24px;left:-22px;position:absolute;top:-2px}.form__field-radio:focus-visible+.form__field-radio-label{position:relative}.form__field-radio:focus-visible+.form__field-radio-label::before{outline:2px solid;outline-offset:-1px}.js-form__syrup{display:none}.form__field-text--birthday::-webkit-inner-spin-button,.form__field-text--birthday::-webkit-calendar-picker-indicator{display:none;-webkit-appearance:none}.form__field-textarea:focus,.form__field-text:focus{outline:medium none invert;outline:initial;border:2px solid #101010}.form__field-textarea:focus::-webkit-input-placeholder, .form__field-text:focus::-webkit-input-placeholder{color:rgba(0,0,0,0)}.form__field-textarea:focus::-moz-placeholder, .form__field-text:focus::-moz-placeholder{color:rgba(0,0,0,0)}.form__field-textarea:focus:-ms-input-placeholder, .form__field-text:focus:-ms-input-placeholder{color:rgba(0,0,0,0)}.form__field-textarea:focus::-ms-input-placeholder, .form__field-text:focus::-ms-input-placeholder{color:rgba(0,0,0,0)}.form__field-textarea:focus::placeholder,.form__field-text:focus::placeholder{color:rgba(0,0,0,0)}.form__full-width-bg{position:relative}.form__full-width-bg::before{content:"";width:100vw;height:100%;position:absolute;z-index:-1;background-color:inherit;left:calc(50% - 50vw)}.multiselect__container{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.multiselect__container select{display:none}.multiselect__label{pointer-events:none}.multiselect__inner-container{position:relative;-ms-flex-positive:1;flex-grow:1}.multiselect__button{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;height:inherit;width:100%;background:#fff;padding:16px 12px;margin:0;color:#666;border:1px solid #959595;text-align:left;overflow:hidden;outline:none}.multiselect__button:hover{cursor:pointer}.multiselect__button:focus{border:2px solid #101010}.multiselect__button.placeholder::before{position:absolute;content:attr(data-placeholder);color:#666;font-size:.75em;margin-bottom:.25em}.multiselect__button.placeholder[data-selected]::before{content:""}.multiselect__button>span{max-width:100%;padding-right:1em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.multiselect__button>span span:not(:last-of-type)::after{content:", "}.multiselect__button>span:first-of-type{min-height:24px}.multiselect__button .icon{width:10px;height:auto}.multiselect__list,.multiselect__group-list{margin:0;padding:0;list-style:none}.multiselect__list{position:absolute;top:100%;bottom:auto;left:0;right:0;max-height:21.6em;max-height:calc(var(--list-size)*var(--item-height));color:#000;background:#fff;border:1px solid #959595;border-top:0;line-height:1.7;overflow-y:auto;z-index:1;outline:none}.multiselect__option{padding:16px 12px;cursor:pointer;color:#666;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;gap:10px;border:1px solid rgba(0,0,0,0)}.multiselect__option .icon--check-circle{display:none}.multiselect__option span{pointer-events:none}.multiselect__option--focus,.multiselect__option:focus{border-color:#101010}.multiselect__option:hover{background-color:#f2f2f2;color:#101010}.multiselect__option--selected:not(.multiselect__option--disabled){background-color:#fff;color:#101010}.multiselect__option--selected:not(.multiselect__option--disabled) .icon--check-circle{position:relative;display:inline-block}.multiselect__option--disabled{pointer-events:none;color:#999}.multiselect__group-list::before{content:attr(title);display:block;padding:.5em;font-weight:bold}.multiselect__group-list--disabled::before{color:#999}.multiselect__group-list>.multiselect__option{padding-left:1.5em}.ts-wrapper.focus .ts-control{border:2px solid #101010;-webkit-box-shadow:none;box-shadow:none}.ts-wrapper.dropdown-active .ts-control{border:1px solid #919191}.ts-wrapper .ts-control,.ts-wrapper .ts-control input{color:#666;font-size:1rem}@media screen and (min-width: 1024px){.ts-wrapper .ts-control,.ts-wrapper .ts-control input{font-size:1.125rem}}.ts-wrapper.disabled .ts-control{opacity:1;background-color:#e6e6e6;color:#666;border:1px solid #ccc}.ts-wrapper .ts-control{height:3.5rem;padding:16px 12px;display:-ms-flexbox;display:flex;-ms-flex-preferred-size:100%;flex-basis:100%;border:1px solid #919191;border-radius:0;color:#666;z-index:auto;z-index:initial}.ts-wrapper.multi .ts-control{height:auto;min-height:3.5rem}.ts-wrapper.multi .ts-control .item{height:1.5em}.ts-wrapper.multi.has-items .ts-control{padding:12px !important}.ts-wrapper .ts-control::after{content:"";position:absolute;right:12px;top:0;bottom:0;width:10px;background:url(/static/studio/pub/web/v3/master/hashed/caret-down.40272b4c.svg);background-repeat:no-repeat;background-position:50% 50%;background-size:10px}.ts-wrapper .ts-dropdown{margin:0;border:1px solid #919191;border-radius:0}.ts-wrapper .ts-dropdown-content{padding:0;max-height:20em;overflow-y:auto}.ts-wrapper .ts-dropdown .option{position:relative;padding:16px 12px;color:#666;border:1px solid rgba(0,0,0,0);font-size:1rem}.ts-wrapper .ts-dropdown .option.active{border-color:#101010;background-color:#fff;color:#666}.ts-wrapper .ts-dropdown .option.selected{background-color:#fff;color:#101010}.ts-wrapper .ts-dropdown .option.selected::after{content:"";background:url(/static/studio/pub/web/v3/master/hashed/valid.6bccd3be.svg) center no-repeat #fff;width:15px;height:15px;position:absolute;margin-left:10px}.ts-wrapper .ts-dropdown .option.selected[data-value=""]::after{display:none}.ts-wrapper .ts-dropdown .option:hover{color:#101010;background-color:#f2f2f2}.ts-wrapper input[type=select-multiple]{min-width:4rem}.ts-hidden-accessible{display:none}.content-lifts{padding:40px 16px 0 16px}.content-lifts--no-header{padding-top:73px}@media screen and (min-width: 768px){.content-lifts--no-header{padding-top:96px}}.content-lifts--pt-less{padding-top:20px}.content-lifts--pt-none{padding-top:0px}.content-lifts--pb-less .content-lifts__items,.content-lifts--pb-less .content-lifts__items-single-row{margin-bottom:20px}@media screen and (min-width: 768px){.content-lifts--pb-less .content-lifts__items,.content-lifts--pb-less .content-lifts__items-single-row{margin-bottom:40px}}.content-lifts--pb-none .content-lifts__items,.content-lifts--pb-none .content-lifts__items-single-row{margin-bottom:0px}.content-lifts__header{margin-bottom:32px;gap:10px}.content-lifts__items{display:grid;grid-template-columns:repeat(2, 1fr);grid-column-gap:16px;-webkit-column-gap:16px;-moz-column-gap:16px;column-gap:16px;grid-row-gap:32px;row-gap:32px}.content-lifts__items.first-is-large .lift-item:first-child{grid-column:span 2}.content-lifts__items-single-row{display:-ms-flexbox;display:flex;gap:20px;margin-bottom:56px}@media screen and (min-width: 1440px){.content-lifts__items-single-row .lift-item:nth-child(1n){-webkit-transition-delay:0.5s;transition-delay:0.5s}}@media screen and (min-width: 1440px){.content-lifts__items-single-row .lift-item:nth-child(2n){-webkit-transition-delay:1s;transition-delay:1s}}@media screen and (min-width: 1440px){.content-lifts__items-single-row .lift-item:nth-child(3n){-webkit-transition-delay:1.5s;transition-delay:1.5s}}@media screen and (min-width: 1440px){.content-lifts__items-single-row .lift-item:nth-child(4n){-webkit-transition-delay:2s;transition-delay:2s}}.content-lifts.bg--black .link::after,.content-lifts.bg--black .news-archive__btn::after{background-image:url(/static/studio/pub/web/v3/master/hashed/arrow-forward-white.f3635181.svg)}.content-lifts.bg--black>*{color:#fff}.content-lifts .lift-item__heading{word-break:break-word}@media screen and (min-width: 768px){.content-lifts__header{margin-bottom:56px}.content-lifts__items{display:grid;grid-template-columns:repeat(3, 1fr);grid-column-gap:16px;-webkit-column-gap:16px;-moz-column-gap:16px;column-gap:16px}.content-lifts__items.first-is-large .lift-item:first-child{grid-column:unset}.content-lifts__items-single-row{margin-bottom:80px}.content-lifts .link,.content-lifts .news-archive__btn{white-space:nowrap;margin-left:auto}}@media screen and (min-width: 1024px){.content-lifts__items{-webkit-column-gap:32px;-moz-column-gap:32px;column-gap:32px}.content-lifts__items.repeat-4{grid-template-columns:repeat(4, 1fr)}.content-lifts__items.repeat-3{grid-template-columns:repeat(3, 1fr)}}.lift-item__wrapper{position:relative;height:100%}@media screen and (min-width: 768px){.lift-item__wrapper.link-wrapper{-webkit-transition:-webkit-transform .2s cubic-bezier(0.43, 0.01, 0.5, 1);transition:-webkit-transform .2s cubic-bezier(0.43, 0.01, 0.5, 1);transition:transform .2s cubic-bezier(0.43, 0.01, 0.5, 1);transition:transform .2s cubic-bezier(0.43, 0.01, 0.5, 1), -webkit-transform .2s cubic-bezier(0.43, 0.01, 0.5, 1)}.lift-item__wrapper.link-wrapper:hover{-webkit-transform:translateY(-16px);transform:translateY(-16px)}}.lift-item.lift-item--xs,.lift-item.lift-item--sm,.lift-item.lift-item--md{width:322px}@media screen and (max-width: 768px){.lift-item.lift-item--xs,.lift-item.lift-item--sm,.lift-item.lift-item--md{max-width:80vw}}@media screen and (min-width: 768px){.lift-item.lift-item--sm,.lift-item.lift-item--md{width:437px}}@media screen and (min-width: 1024px){.lift-item.lift-item--md{width:668px}.lift-item.lift-item--md .lift-item__image img{aspect-ratio:3/2}}.lift-item__tag{padding:8px 16px;margin:0;position:absolute;left:16px;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;color:#fff;background-color:#00aeef;border-radius:4px}.lift-item__link{font-size:inherit;line-height:inherit;color:inherit;text-decoration:none;font-weight:inherit}.lift-item__link--uppercase{text-transform:uppercase;border-bottom:2px solid #00aeef;font-weight:700;padding-bottom:.3125rem;letter-spacing:.03125rem}.lift-item__image img{aspect-ratio:1/1;-o-object-fit:cover;object-fit:cover;display:block;width:100%;border-radius:8px}.lift-item--news .lift-item__image{padding-top:16px}@media screen and (min-width: 1024px){.lift-item--education .lift-item__heading{font-size:20px}}.lift-item--more-content{background-color:#fff;padding-bottom:29px;border-radius:8px}.lift-item--more-content .lift-item__image img{border-bottom-right-radius:0;border-bottom-left-radius:0}.lift-item--more-content .lift-item__wrapper>*:not(.lift-item__image){padding-left:24px;padding-right:24px}.lift-item__tags ul{list-style:none;margin:0;padding:0;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:.5rem .8rem}.lift-item__tags li{margin:0;padding:0 .8rem 0 0;border-right:1px solid #101010;display:inline-block}.lift-item__tags li:last-child{border:0}.lift-item__subheading.text--top-bar::before{top:-1rem}.scrollable__header{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:end;align-items:flex-end;margin-bottom:32px}.scrollable__header h1,.scrollable__header h2,.scrollable__header h3{margin-bottom:0}.scrollable__controls{margin-left:auto}.scrollable__controls button:first-child .icon{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.scrollable__controls button{margin:0 2px}.scrollable__controls button[disabled],.scrollable__controls button[aria-disabled]{opacity:.5;cursor:default}.scrollable__controls .icon{width:24px;height:24px;padding:5px}.scrollable__content{display:-ms-flexbox;display:flex;scrollbar-width:none;overflow-x:auto;-ms-scroll-snap-type:x mandatory;scroll-snap-type:x mandatory;overscroll-behavior-x:contain;position:relative}.scrollable__content::-webkit-scrollbar{display:none}.scrollable__item{-ms-flex-negative:0;flex-shrink:0;scroll-snap-align:start;scroll-snap-stop:normal}@media screen and (max-width: 1440px){.scrollable__item.to-animate:not(.in-view){opacity:1;-webkit-transform:translateY(0px);transform:translateY(0px)}.scrollable__item.in-view{-webkit-transition:none;transition:none}}.heading-and-ingress__section{padding:80px 16px}.heading-and-ingress__section--spacing-top-less{padding-top:40px}.heading-and-ingress__section--spacing-top-none{padding-top:0}.heading-and-ingress__content{position:relative}.heading-and-ingress__content .h1,.heading-and-ingress__content .text--ingress{text-align:left;margin-bottom:0}@media screen and (min-width: 1024px){.heading-and-ingress__content .h1,.heading-and-ingress__content .text--ingress{margin:0 auto;text-align:center;max-width:850px}}.heading-and-ingress__content .h1{margin:0 auto 16px auto}@media screen and (min-width: 1024px){.heading-and-ingress__content .h1{margin:0 auto 24px auto}}.heading-and-ingress__link-list{margin:40px 0 0 0;padding-left:0}@media screen and (min-width: 1024px){.heading-and-ingress__link-list{margin:24px 0 0 0;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:wrap;flex-wrap:wrap}}.heading-and-ingress__link-list li{margin-bottom:16px;list-style-type:none}@media screen and (min-width: 1024px){.heading-and-ingress__link-list li{margin:0 20px}}.heading-and-ingress__link-list li .link.link--arrowed{margin-bottom:16px;display:block;font-weight:900;padding:1rem;border:1px solid #2d2d2d;border-radius:8px}.heading-and-ingress__link-list li .link.link--arrowed:focus::before{height:calc(100% + 12px);width:calc(100% + 12px);top:-6px;left:-6px}.heading-and-ingress__link-list li:last-child{margin-bottom:0px}.news-archive{padding-inline:16px;margin-top:48px;margin-bottom:40px}.news-archive__year-list{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:16px}.news-archive__btn{margin-top:16px;background:rgba(0,0,0,0);height:auto;border:0;color:inherit;padding:0;text-transform:none;font-weight:400;width:auto;cursor:pointer;border-bottom:1px solid #2d2d2d}.news-archive .content-lifts{margin-top:56px}.content-lifts__items{row-gap:40px;margin-bottom:40px}.content-lifts__items--small{row-gap:0}.content-lifts__items--small .lift-item__tag{position:static}.content-lifts__items--small .lift-item{margin-top:32px}@media screen and (min-width: 768px){.news-archive{margin-top:40px;margin-bottom:56px}.content-lifts__items{margin-bottom:80px}.content-lifts__items--small{margin-bottom:24px;row-gap:24px}.content-lifts__items--small .lift-item{position:relative}.content-lifts__items--small .lift-item:nth-child(3n+1)::before{content:"";position:absolute;width:calc(300% + 32px);top:-32px;left:0;height:1px;background-color:#ccc}}.search{padding:16px}@media screen and (min-width: 768px){.search{padding:0}}.search__search-field{background-color:#fff}.search__form{margin:0;padding:3px 3px 3px 44px;background:url(/static/studio/pub/web/v3/master/hashed/search.383beafa.svg) 10px center no-repeat #fff;background-size:24px 24px;border:1px solid #101010;border-radius:8px}.search__form.form--inline{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.search__form.form--inline .btn:focus{border-color:#fff}.search__form.form--inline .btn:hover{position:relative}.search__form.form--inline .btn:hover::after{content:"";display:block;border-right:1px solid #101010;position:absolute;top:-1px;bottom:-1px;left:-2px}.search__form--invert{border:1px solid #fff}.search__form input,.search__form input:focus{border:0}.search__form .form__cell{-ms-flex-positive:1;flex-grow:1}.search__form .form__field,.search__form .btn{height:2.375rem;border-radius:8px}@media screen and (min-width: 1024px){.search__form .form__field,.search__form .btn{height:3.375rem}}.search--desktop{position:absolute;background-color:#fff;top:48px;right:0;left:0;display:none}@media screen and (min-width: 1024px){.search--desktop.open{display:-ms-flexbox !important;display:flex !important}}.search--desktop .container{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;padding-left:248px}.search--desktop .search__form{-ms-flex-positive:1;flex-grow:1;margin:8px 0;padding:4px 4px 4px 44px;gap:0;border-width:2px;font-size:1.125rem}.search--desktop .search__form::before{content:"";display:inline-block;border-right:1px solid #101010;height:18px}.search__close-btn{margin-left:16px;padding:16px;border-color:rgba(0,0,0,0);border-radius:0;font-size:1.125rem}.search__close-btn .icon{width:1em;height:1em;margin-right:.5em}.search__results{margin-bottom:32px}.search__results li{margin-bottom:16px}.breadcrumb{padding:26px 0 32px}@media screen and (min-width: 1024px){.breadcrumb{padding:24px 0}}.breadcrumb--above-content-heading{padding-bottom:16px}@media(max-width: 767.98px){.breadcrumb--above-content-heading{padding-left:1rem;padding-right:1rem}}.breadcrumb--spacing-top-large{padding-top:80px}.breadcrumb--spacing-top-none{padding-top:0px}.breadcrumb--spacing-bottom-none{padding-bottom:0px}.breadcrumb--spacing-bottom-none.breadcrumb--above-content-heading{padding-bottom:8px}.breadcrumb__item{color:#2d2d2d;text-decoration:none;text-decoration:initial}.breadcrumb__item:hover{border-bottom:1px solid #2d2d2d}.radio-tabs__legend{margin-bottom:8px}.radio-tabs__options{list-style:none;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;overflow-y:hidden;overflow-x:auto;margin:0 0 24px 0;padding:0;position:relative;min-height:56px}.radio-tabs__options--wrapped{-ms-flex-wrap:wrap;flex-wrap:wrap;overflow-y:visible;overflow-y:initial;overflow-x:visible;overflow-x:initial}.radio-tabs__options--spaced{-ms-flex-direction:row;flex-direction:row;gap:16px}.radio-tabs__options--spaced .radio-tabs__btn{border-radius:0 !important}@media screen and (min-width: 1024px){.radio-tabs__options--spaced{-webkit-column-gap:40px;-moz-column-gap:40px;column-gap:40px}}.radio-tabs__option{display:inline-block}.radio-tabs__option--detailed.active{min-height:150px}.radio-tabs__option-details{display:none;position:absolute;left:0;padding:16px 0 0}.radio-tabs__option.active .radio-tabs__option-details{display:-ms-flexbox;display:flex}.radio-tabs__option-image{width:90px;height:100px;margin:0 32px 0 16px;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;display:none}.radio-tabs__option-image img{-o-object-fit:contain;object-fit:contain}@media screen and (min-width: 1024px){.radio-tabs__option-image{display:-ms-flexbox;display:flex}}.radio-tabs__option-description{margin:8px 0 0;font-size:1rem}@media screen and (min-width: 1024px){.radio-tabs__option-description{font-size:1.125rem}}.radio-tabs__input-wrapper{display:inline-block}.radio-tabs__btn{font-size:1rem;background-color:#fff;border-radius:0px;border-color:#101010;margin-right:-2px;text-transform:none;-webkit-transition:0s;transition:0s;white-space:nowrap}@media screen and (min-width: 1024px){.radio-tabs__btn{font-size:1.25rem}}.radio-tabs__btn:hover{background-color:#fff;border-color:#101010;outline:1px solid #101010;outline-offset:-4px;position:relative;color:#101010}.radio-tabs__option:first-child .radio-tabs__btn,.radio-tabs .radio-tabs__btn.first{border-top-left-radius:8px;border-bottom-left-radius:8px}.radio-tabs__option:last-child .radio-tabs__btn,.radio-tabs .radio-tabs__btn.last{border-top-right-radius:8px;border-bottom-right-radius:8px}input:checked+.radio-tabs__btn{outline:0;color:#fff;border-color:rgba(0,0,0,0);padding-left:30px;padding-right:14px;background:url(/static/studio/pub/web/v3/master/hashed/check-white.14389e22.svg) 10px center no-repeat #101010;background-size:11px}input:checked+.radio-tabs__btn.radio__btn--centered{background-image:none;padding-left:14px}input:checked+.radio-tabs__btn.radio__btn--centered .check-icon{background-image:url(/static/studio/pub/web/v3/master/hashed/check-white.14389e22.svg);display:inline-block;min-width:.75rem;height:.625rem;background-repeat:no-repeat;background-size:contain}@media screen and (min-width: 768px){input:checked+.radio-tabs__btn.radio__btn--centered .check-icon{width:1.0625rem;height:.75rem}}input:checked+.radio-tabs__btn:hover{color:#fff;border-color:rgba(0,0,0,0);background-color:#101010}input:focus+.radio-tabs__btn{outline:2px solid #fff;outline-offset:-4px;border-color:#101010}input:focus:not(:checked)+.radio-tabs__btn{outline:2px solid #101010;outline-offset:-6px}.radio-tabs__option--detailed.active .radio-tabs__btn{position:relative}.radio-tabs__option--detailed.active .radio-tabs__btn::after{content:"";display:inline-block;position:absolute;bottom:-10px;left:calc(50% - 10px);width:0;height:0;border-left:10px solid rgba(0,0,0,0);border-right:10px solid rgba(0,0,0,0);border-top:8px solid #101010}.radio__btn--centered{width:100%;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;white-space:normal;gap:8px;padding-left:14px}.radio__btn--centered .radio-tabs__btn{border-radius:0 !important}.radio__btn--centered .check-icon{display:none}.donation-form{margin:0}.donation-form__container{padding:0 16px 32px 16px}@media screen and (min-width: 1024px){.donation-form__container{padding-left:0;padding-right:0}}.donation-form--landing{max-width:540px}.donation-form .btn--special{border:1px solid #101010}.donation-form .btn--special:focus{border-color:#fff}.donation-form .radio-tabs__options{max-width:calc(100vw - 32px)}@media screen and (min-width: 768px){.donation-form .radio-tabs__options{max-width:540px}}.donation-form__payment-methods{margin-bottom:16px}.donation-form__payment-methods .form__legend{margin-bottom:0}.donation-form__payment-methods input[type=radio]{position:absolute;z-index:-1;height:0;width:0}.donation-form__payment-methods .form__field-radio-label{padding:16px;border:1px solid #2d2d2d;border-bottom:0;display:-ms-flexbox;display:flex;width:100%;-ms-flex-align:center;align-items:center}.donation-form__payment-methods .form__field-radio-label:last-child{border:1px solid #2d2d2d}.donation-form__payment-methods .form__field-radio-label::before{content:"";position:relative;display:inline-block;width:40px;height:40px;border:1px solid #2d2d2d;border-radius:100%;margin-right:16px;left:0}.donation-form__payment-methods input:focus+.form__field-radio-label::before{outline:2px solid #2d2d2d;outline-offset:2px}.donation-form__payment-methods input:checked+.form__field-radio-label::before{background:url(/static/studio/pub/web/v3/master/hashed/check-black.0b45fd6f.svg) center center no-repeat #fff}.donation-form__info,.lift-group__item--large p.donation-form__info{font-size:.875rem;line-height:1.5rem;margin-top:16px;width:100%}@media screen and (min-width: 1024px){.donation-form__info,.lift-group__item--large p.donation-form__info{margin-top:24px;font-size:1rem}}.donation-checkout-form{margin:0 1em 80px}@media screen and (min-width: 1024px){.donation-checkout-form{margin:6em 0 80px}}.donation-checkout-form__providers{display:-ms-flexbox;display:flex;-ms-flex-preferred-size:4em;flex-basis:4em;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:1em;-ms-flex-line-pack:start;align-content:flex-start}.donation-checkout-form__provider{-ms-flex-preferred-size:10em;flex-basis:10em;-ms-flex-flow:column-reverse;flex-flow:column-reverse;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;text-align:center;border:1px solid #ccc}.donation-checkout-form__provider-label{display:none}.donation-checkout-form__provider-button{cursor:pointer;height:6em;padding:1em;background-repeat:no-repeat;background-position:center 10%;background-color:rgba(0,0,0,0);border:0px;display:-ms-flexbox;display:flex;-ms-flex-pack:distribute;justify-content:space-around;-ms-flex-flow:column;flex-flow:column;-ms-flex-align:center;align-items:center}.donation-phase{border-bottom:1px solid #101010}.donation-phase:first-child,.donation-phase.active,.donation-phase:last-child{border-bottom:0}.donation-phase__content{display:none;padding-top:48px;padding-bottom:40px;margin:0 1rem 1rem}@media screen and (min-width: 768px){.donation-phase__content{margin:0 0 1rem}}.donation-phase__content .form{margin-left:0;margin-right:0}.active .donation-phase__content{display:block}.donation-phase__form{display:none}.donation-phase__form.active{display:block}.donation-phase__bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;background-color:#f2f2f2;padding:16px}:first-child>.donation-phase__bar{background-color:#f4fbfe}.active .donation-phase__bar{background-color:#c6ecfd}.donation-phase__cta{width:100%}.donation-phase__bar-heading{margin:0}@media screen and (min-width: 768px){.donation-phase__bar-heading{line-height:24px}}.material-guide-item{padding:1rem;margin-bottom:2rem}.material-guide-item__image-container{display:block}.material-guide-item__image-container img{width:100%;max-height:240px;-o-object-fit:contain;object-fit:contain;-o-object-position:left;object-position:left}.material-guide-item__top-border{height:4px;width:50%;margin-bottom:1rem}.material-guide-item__top-border--blue{background-color:#00aeef}.material-guide-item__top-border--yellow{background-color:#ffc20e}.material-guide-item__top-border--orange{background-color:#f26a21}.material-guide-item__top-border--red{background-color:#fb5d5d}.material-guide-item__top-border--purple{background-color:#6a1e74}.material-guide-item__top-border--green{background-color:#33a317}.material-guide-item__title a{color:inherit;text-decoration:none;display:block}.material-guide-item__read-more{display:inline-block;margin-top:16px}.material-guide{-webkit-transition:background-color .3s ease;transition:background-color .3s ease}.material-guide__list-header{padding:0 16px 10px}@media screen and (min-width: 1024px){.material-guide__list-header{padding-bottom:1rem}}.material-guide__filters{padding:40px 16px;margin:0 0 48px;display:block}.material-guide__filters .form__legend{font-size:1.25rem;margin-bottom:1rem}.material-guide__filters .form__field-wrapper{margin-bottom:1rem}@media screen and (min-width: 1024px){.material-guide__filters .form__field-wrapper{margin-bottom:0}}.material-guide__filters-heading{margin-top:0;margin-bottom:2rem}.material-guide__filter-search .icon--search{color:#2d2d2d}.material-guide__filter-group{margin-bottom:2rem}@media screen and (min-width: 1024px){.material-guide__filter-group{margin-bottom:2.5rem}}.material-guide .radio-tabs__options{margin-bottom:0}.material-guide__criteria-list{margin-bottom:2.5rem}@media screen and (min-width: 1024px){.material-guide__criteria-list{margin-bottom:0}}.material-guide__result-count{margin-top:0;text-align:left}@media screen and (min-width: 1024px){.material-guide__result-count{margin-top:1rem}}.material-guide__paging{display:-ms-flexbox;display:flex;width:350px;max-width:100%;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center;margin:48px auto;font-size:20px;font-weight:700;padding:0 16px}.material-single{padding:0 1rem;margin-bottom:2rem}.material-single__title{max-width:850px;margin-top:0;margin-left:auto;margin-right:auto}@media screen and (min-width: 1024px){.material-single__title{text-align:center}}.material-single__content{margin:0 auto;max-width:680px}.material-single__image img{max-height:375px;-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center;width:100%;margin-bottom:2rem}.material-single__info-group .btn{margin:0 .5rem .5rem 0}@media screen and (min-width: 1024px){.material-single__info-group .btn{margin:0 1rem 1rem 0}}.material-single__info-group .list li{margin-bottom:.5rem}.material-single__form .form{max-width:680px;margin:2rem auto}.material-single__form .mailing-list__error{margin-bottom:1rem}.material-single__form [data-field-name=gdpr]{margin-top:1rem}.contact-us{padding-top:80px;padding-inline:16px}.contact-us__header{padding-bottom:32px}.contact-us__search-input{padding:14px 12px 14px 42px;background:url(/static/studio/pub/web/v3/master/hashed/search.383beafa.svg) 10px center no-repeat #fff;background-size:24px;border:1px solid #101010}.contact-us__search-input:focus{outline-color:#101010;outline-offset:4px}.contact-us__group{display:grid;grid-template-columns:repeat(auto-fill, minmax(280px, 1fr));grid-column-gap:80px;-webkit-column-gap:80px;-moz-column-gap:80px;column-gap:80px;grid-row-gap:32px;row-gap:32px;padding-bottom:32px}.contact-us__group:not(:last-of-type){border-bottom:1px solid #00aeef}.contact-us__group .contact-us__card .h6{line-height:1.5rem}.card__social{display:-ms-flexbox;display:flex;-webkit-column-gap:8px;-moz-column-gap:8px;column-gap:8px;margin-top:8px}.card__social .social{width:32px;height:32px;background-repeat:no-repeat;background-size:contain}.card__social .social--facebook{background-image:url(/static/studio/pub/web/v3/master/hashed/facebook-black.2aad5255.svg)}.card__social .social--linkedin{background-image:url(/static/studio/pub/web/v3/master/hashed/linkedin-black.f08f9e9b.svg)}.video-section{padding:80px 16px 16px 16px}.video-section__iframe,.video-section__video{width:100%;aspect-ratio:12/7;vertical-align:bottom}.video-section__cookie-notice{background-color:#e8f7fc;height:0;visibility:hidden}.video-section__cookie-notice[style]{height:auto;visibility:visible}@media screen and (min-width: 768px){.video-section__cookie-notice[style]{aspect-ratio:12/7}}.video-section__cookie-notice-content{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;height:100%;min-height:300px;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;padding:30px;text-align:center}.calendar__item{border-bottom:1px solid #00aeef;padding-top:40px;padding-bottom:40px;gap:16px}.calendar__item:first-of-type{padding-top:0}.calendar__item-date{color:#666}@media screen and (min-width: 768px){.calendar__item-image{-ms-flex:0 0 30%;flex:0 0 30%}}.social-links__list{list-style:none;display:-ms-flexbox;display:flex;-ms-flex-direction:row !important;flex-direction:row !important;-webkit-column-gap:16px;-moz-column-gap:16px;column-gap:16px}.social-links__list li.list__item{margin:0;-ms-flex:initial !important;flex:initial !important}.social-links__list li.list__item a{border:none}.social-links__list li.list__item a::after,.social-links__list li.list__item a::before{display:none}.social-links__list li.list__item a:focus-visible,.social-links__list li.list__item a:focus{outline:2px solid #101010}.social-links__list .icon{vertical-align:bottom}.social-links svg{fill:#101010;width:32px;height:32px}@media screen and (min-width: 1024px){.social-links svg{width:48px;height:48px}}.bg--blue-20 .social-links svg{fill:#00aeef}@media screen and (min-width: 1024px){.social-links__list{-webkit-column-gap:24px;-moz-column-gap:24px;column-gap:24px}.heading-and-ingress__section .social-links__heading{text-align:center}.heading-and-ingress__section .social-links__list{-ms-flex-pack:center;justify-content:center}}.donation-levels{padding:32px 16px;background-color:#c6ecfd}@media screen and (min-width: 1024px){.donation-levels{padding:80px 16px;background-color:#fff}}.donation-levels__items{gap:24px}@media screen and (min-width: 1440px){.donation-levels__items{overflow:visible !important}}@media screen and (min-width: 1440px){.donation-levels .donation-levels__item:nth-child(1n){-webkit-transition-delay:0.5s;transition-delay:0.5s}}@media screen and (min-width: 1440px){.donation-levels .donation-levels__item:nth-child(2n){-webkit-transition-delay:1s;transition-delay:1s}}@media screen and (min-width: 1440px){.donation-levels .donation-levels__item:nth-child(3n){-webkit-transition-delay:1.5s;transition-delay:1.5s}}.donation-levels__item{-webkit-box-shadow:0px 5px 10px 0px rgba(0,0,0,.1);box-shadow:0px 5px 10px 0px rgba(0,0,0,.1);background-color:#fff;border-radius:8px;width:80vw;max-width:27rem}@media screen and (min-width: 1440px){.donation-levels__item.to-animate:not(.in-view){opacity:0;-webkit-transform:translateY(150px);transform:translateY(150px)}.donation-levels__item.in-view{-webkit-transition:opacity .6s cubic-bezier(0.14, 0.58, 0.26, 0.98),-webkit-transform 1s cubic-bezier(0.14, 0.58, 0.26, 0.98);transition:opacity .6s cubic-bezier(0.14, 0.58, 0.26, 0.98),-webkit-transform 1s cubic-bezier(0.14, 0.58, 0.26, 0.98);transition:opacity .6s cubic-bezier(0.14, 0.58, 0.26, 0.98),transform 1s cubic-bezier(0.14, 0.58, 0.26, 0.98);transition:opacity .6s cubic-bezier(0.14, 0.58, 0.26, 0.98),transform 1s cubic-bezier(0.14, 0.58, 0.26, 0.98),-webkit-transform 1s cubic-bezier(0.14, 0.58, 0.26, 0.98)}}.donation-levels__item ul{gap:8px}@media screen and (min-width: 1024px){.donation-levels__item ul{gap:14px}}.donation-levels__item ul li.item{display:-ms-flexbox;display:flex;gap:24px;margin-bottom:0;font-size:1rem}.donation-levels__item ul svg{height:1.0625rem;width:1.0625rem;margin-top:.4375rem;fill:#00aeef}@media screen and (min-width: 1024px){.donation-levels__item ul svg{height:1.25rem;width:1.25rem;margin-top:.375rem}}.donation-levels__item ul li.item--not-included{color:#666}.donation-levels__item ul li.item--not-included svg{fill:#666}.donation-levels__item .item__content{border:1px solid #00aeef;padding:1.5rem;border-radius:0 0 8px 8px}.donation-levels__item .item__title{color:#fff;text-align:center;font-size:1rem;font-weight:900;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;padding:16px 24px;border-radius:8px 8px 0 0}@media screen and (min-width: 1024px){.donation-levels__item .item__title{font-size:1.25rem;line-height:1.5rem}}.donation-levels__item .item__title a{color:#fff}.donation-levels__item .item__description{font-weight:400}.donation-levels__item .item__cta{width:100%;text-align:center;margin-top:1.5rem}@media screen and (min-width: 768px){.donation-levels__item.link-wrapper:hover .item__content{-webkit-transition:background-color .3s;transition:background-color .3s;background-color:#e8f7fc}.donation-levels__item.link-wrapper:hover .btn{background-color:#101010;color:#ffc20e;border-color:#101010}}.carousel{padding:32px 16px}.carousel .slides__wrapper{position:relative;overflow:hidden}.carousel .slide__texts{padding-top:391px}@media screen and (min-width: 768px){.carousel .slide__texts{padding-top:calc(42.8571428571% + 48px)}}.carousel .slides{position:relative;-webkit-transition:-webkit-transform 350ms ease-in-out;transition:-webkit-transform 350ms ease-in-out;transition:transform 350ms ease-in-out;transition:transform 350ms ease-in-out, -webkit-transform 350ms ease-in-out}.carousel .slides .slide{position:absolute;top:0;bottom:0;width:100%}.carousel__title{margin-top:0;margin-bottom:10px}.carousel .slide p,.carousel .slide__text p{text-align:center;margin-bottom:0}.carousel .slide img,.carousel .slide__text img{max-height:343px;width:100%;height:100%;-o-object-fit:contain;object-fit:contain;vertical-align:bottom;aspect-ratio:1/1}.carousel .slide__text{display:none;visibility:hidden;opacity:.4;-webkit-transition:opacity 1.5s;transition:opacity 1.5s}.carousel .slide__text.current{display:block;visibility:visible;opacity:1}.carousel .navigation{position:absolute;padding-top:319px;width:100%;text-align:center;list-style:none;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;gap:24px}@media screen and (min-width: 768px){.carousel .navigation{padding-top:calc(42.8571428571% - 24px)}}.carousel .navigation li.not-current{display:none}.carousel .navigation li:first-child,.carousel .navigation li:last-child{display:block}.carousel .navigation .btn:not(.current){border-color:#101010;background-color:#fff;cursor:pointer}.carousel .navigation .btn:not(.current):focus{outline-offset:2px}.carousel .navigation .btn:not(.current):hover{color:#fff;background-color:#101010}.carousel .navigation .btn.current{color:#fff;background-color:#101010;cursor:auto}@media screen and (min-width: 768px){.carousel{padding:80px 16px}.carousel__title{margin-bottom:24px}.carousel .slide img{aspect-ratio:21/9;max-height:583px}.carousel .navigation{gap:30px}.carousel .navigation li.not-current{display:block}}.poll{container-type:inline-size}@media screen and (min-width: 768px){.poll__answer--wrapper,.poll-results,.poll__question-form{max-width:680px}}.poll__question-form{gap:0}.poll__heading{margin-top:56px;margin-bottom:24px;font-size:1.625rem;font-weight:700;text-align:center}@media screen and (min-width: 768px){.poll__heading{font-size:2.5rem;text-align:center;margin-top:80px}}.poll-fieldset__legend{width:100%;text-align:center;font-size:1.25rem;margin-bottom:24px}@media screen and (min-width: 768px){.poll-fieldset__legend{text-align:center}}.poll__answer{margin-top:24px}.poll__options{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:14px;margin:0;padding:0;position:relative}@container (min-width: 679px){.poll__options{gap:16px}}.poll__option{display:-ms-flexbox;display:flex;-ms-flex-pack:start;justify-content:flex-start;gap:8px}@media screen and (min-width: 768px){.poll__option{-ms-flex-positive:1;flex-grow:1}}.poll__options--group,.poll__options--result-filters{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;margin-bottom:32px;gap:16px}@media screen and (min-width: 768px){.poll__options--group,.poll__options--result-filters{-ms-flex-pack:center;justify-content:center;-ms-flex-direction:row;flex-direction:row;gap:16px}}@container (min-width: 1024px){.poll__options--group{gap:24px}}.poll__option-button{display:-ms-flexbox;display:flex;padding:16px 36px 16px 24px;-ms-flex-align:center;align-items:center;cursor:pointer;border:1px solid gray;border-radius:8px;color:#2d2d2d;background-color:#fff;font-size:1rem;font-weight:700;-ms-flex-positive:1;flex-grow:1;-webkit-transition:background-color .3s,-webkit-box-shadow .3s;transition:background-color .3s,-webkit-box-shadow .3s;transition:box-shadow .3s,background-color .3s;transition:box-shadow .3s,background-color .3s,-webkit-box-shadow .3s}@container (min-width: 679px){.poll__option-button{padding:16px 36px 16px 16px}}.poll__option-button:hover{-webkit-box-shadow:0px 10px 20px 0px rgba(0,0,0,.2);box-shadow:0px 10px 20px 0px rgba(0,0,0,.2)}input:checked+.poll__option-button,.poll__option-button--checked{border-width:2px;border-color:#00aeef;background:url(/static/studio/pub/web/v3/master/hashed/check-black.0b45fd6f.svg) calc(100% - 24px) no-repeat #e8f7fc;-webkit-box-shadow:0px 10px 20px 0px rgba(0,0,0,.2);box-shadow:0px 10px 20px 0px rgba(0,0,0,.2);background-size:16px}@container (min-width: 679px){input:checked+.poll__option-button,.poll__option-button--checked{background-position:calc(100% - 16px)}}input:checked+.poll__option-button--dark{color:#fff;background-image:url(/static/studio/pub/web/v3/master/hashed/check-white.14389e22.svg);background-color:#101010;background-size:16px;border-color:#101010}input:focus-visible+.poll__option-button{outline:2px solid #00aeef;outline-offset:-2px}.poll__option-button--group{text-align:center}.poll__option-button--group img{width:54px;height:54px;margin-right:24px;-ms-flex-item-align:center;align-self:center}@container (min-width: 679px){.poll__option-button--group img{width:40px;height:40px;margin-right:16px}}.poll__submit{width:100%;margin-top:24px}@media screen and (min-width: 768px){.poll__submit{width:auto;margin-top:40px}}ul.poll__list-answers{padding-block:8px;margin:24px 0}@media screen and (min-width: 768px){ul.poll__list-answers{-ms-flex-direction:column;flex-direction:column;margin:40px auto}}ul.poll__list-answers .radio__btn--centered{-ms-flex-pack:start;justify-content:flex-start;font-weight:400;letter-spacing:inherit}ul.poll__list-answers .radio-tabs__btn,ul.poll__list-answers .radio-tabs__option:first-child .radio-tabs__btn,ul.poll__list-answers .radio-tabs__option:last-child .radio-tabs__btn{border-radius:0}@media screen and (min-width: 768px){ul.poll__list-answers .poll__list--item{-ms-flex-align:initial;align-items:initial;padding:0}}.poll__error-text{color:#101010;background-color:#fed6d6;text-align:center;margin-top:16px;margin-bottom:16px}.poll-results{margin-bottom:40px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}@media screen and (min-width: 768px){.poll-results{margin-bottom:80px}}.poll__result-row{padding-bottom:16px;margin-bottom:16px;border-bottom:1px solid #ccc;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:12px}.poll__result-row:last-child{border-bottom:0;margin-bottom:0}.poll__result-answer{font-size:1rem;line-height:1.5rem}.poll__result-amount{font-size:.875rem}.poll__result-percentage{font-size:1.25rem;font-weight:700}.poll-results [data-graph-id]{--width: 0%;height:16px;-ms-flex-item-align:center;align-self:center;background-color:#f2f2f2;position:relative;border-radius:50px;overflow:hidden}.poll-results [data-graph-id]::after{content:"";position:absolute;top:0;left:0;height:100%;background-color:#00aeef;-webkit-transition:width .5s ease-out;transition:width .5s ease-out;width:var(--width)}.lift-group--poll .poll__result-list{background-color:#fff;padding:16px;border-radius:8px}@media screen and (min-width: 1440px){.lift-group--poll .poll__heading{margin-bottom:24px}.lift-group--poll .poll--answered .poll__question,.lift-group--poll .poll--answered .poll__answer--wrapper{display:none}.lift-group--poll .poll__options--result-filters{margin-bottom:24px}.lift-group--poll p.poll__result-amount{font-size:.875rem}.lift-group--poll p.poll__result-answer,.lift-group--poll p.results__total-text,.lift-group--poll p.poll__error-text{font-size:1rem}.lift-group--poll p.poll__error-text{margin-top:16px}.lift-group--poll input:checked+.poll__option-button--dark{background-position:calc(100% - 10px)}}.status-messages [data-status=loading],.status-messages [data-status=loaded]{display:none}.is-loaded .status-messages [data-status=loaded]{display:block}[aria-busy=true] .status-messages [data-status=loading]{text-align:center;margin:2rem 0;display:block}[aria-busy=true] .status-messages [data-status=loading] svg{width:2.5rem;height:2.5rem;fill:#00aeef}.slider{padding:80px 16px}.slider .slider__header{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:16px}.slider .slider__header--wrapper{margin:0 auto;text-align:center;max-width:850px}.slider .slider__control{cursor:pointer;display:block;-ms-flex-item-align:center;align-self:center;width:56px;height:56px}@media screen and (min-width: 1024px){.slider .slider__control{position:absolute;right:0;bottom:0;-ms-flex-item-align:end;align-self:end}}.slider .slider__control .icon svg{width:.875rem;height:.875rem}.slider .slider__control.playing .slider__control--pause{height:auto;display:none}.slider .slider__control:not(.playing) .slider__control--play{display:none}.slider .slider__heading{text-align:center}.slider .slides__wrapper{padding:48px 0;overflow:hidden;position:relative;width:min(100vw,1680px);right:min((100vw - 100%)/2,(1680px - 100%)/2)}.slider .slides__wrapper::before,.slider .slides__wrapper::after{content:"";position:absolute;width:300px;height:100%;z-index:2;top:0}.slider .slides__wrapper::before{left:0}.slider .slides__wrapper::after{right:0;-webkit-transform:rotateZ(180deg);transform:rotateZ(180deg)}.slider .slides__wrapper.no-animation::before,.slider .slides__wrapper.no-animation::after{display:none}.slider .slides__track{padding-left:40px;display:-ms-flexbox;display:flex;-webkit-column-gap:40px;-moz-column-gap:40px;column-gap:40px;width:calc(340px*var(--count) + 40px);-webkit-animation-name:scroll;animation-name:scroll;-webkit-animation-duration:var(--duration);animation-duration:var(--duration);-webkit-animation-delay:.5s;animation-delay:.5s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.slider .slide__text{margin:16px 0 0 0;text-align:center}.slider .slide__image{background-color:#fff;border-radius:8px;height:300px;aspect-ratio:1/1}.slider .slide__image img{height:100%;-o-object-fit:cover;object-fit:cover;border-radius:8px}@-webkit-keyframes scroll{from{-webkit-transform:translateX(0);transform:translateX(0)}to{-webkit-transform:translateX(-50%);transform:translateX(-50%)}}@keyframes scroll{from{-webkit-transform:translateX(0);transform:translateX(0)}to{-webkit-transform:translateX(-50%);transform:translateX(-50%)}}@media screen and (min-width: 1024px){.bg--blue-100.slider .slides__wrapper::before,.bg--blue-100.slider .slides__wrapper::after{background:-webkit-gradient(linear, right top, left top, from(rgba(232, 247, 252, 0)), to(#00aeef));background:linear-gradient(to left, rgba(232, 247, 252, 0) 0%, #00aeef 100%)}.bg--blue-80.slider .slides__wrapper::before,.bg--blue-80.slider .slides__wrapper::after{background:-webkit-gradient(linear, right top, left top, from(rgba(232, 247, 252, 0)), to(#49bce8));background:linear-gradient(to left, rgba(232, 247, 252, 0) 0%, #49bce8 100%)}.bg--blue-40.slider .slides__wrapper::before,.bg--blue-40.slider .slides__wrapper::after{background:-webkit-gradient(linear, right top, left top, from(rgba(232, 247, 252, 0)), to(#a4ddf3));background:linear-gradient(to left, rgba(232, 247, 252, 0) 0%, #a4ddf3 100%)}.bg--blue-20.slider .slides__wrapper::before,.bg--blue-20.slider .slides__wrapper::after{background:-webkit-gradient(linear, right top, left top, from(rgba(232, 247, 252, 0)), to(#c6ecfd));background:linear-gradient(to left, rgba(232, 247, 252, 0) 0%, #c6ecfd 100%)}.bg--blue-10.slider .slides__wrapper::before,.bg--blue-10.slider .slides__wrapper::after{background:-webkit-gradient(linear, right top, left top, from(rgba(232, 247, 252, 0)), to(#e8f7fc));background:linear-gradient(to left, rgba(232, 247, 252, 0) 0%, #e8f7fc 100%)}.bg--blue-5.slider .slides__wrapper::before,.bg--blue-5.slider .slides__wrapper::after{background:-webkit-gradient(linear, right top, left top, from(rgba(232, 247, 252, 0)), to(#f4fbfe));background:linear-gradient(to left, rgba(232, 247, 252, 0) 0%, #f4fbfe 100%)}.bg--white.slider .slides__wrapper::before,.bg--white.slider .slides__wrapper::after{background:-webkit-gradient(linear, right top, left top, from(rgba(232, 247, 252, 0)), to(#fff));background:linear-gradient(to left, rgba(232, 247, 252, 0) 0%, #fff 100%)}.bg--black.slider .slides__wrapper::before,.bg--black.slider .slides__wrapper::after{background:-webkit-gradient(linear, right top, left top, from(rgba(232, 247, 252, 0)), to(#101010));background:linear-gradient(to left, rgba(232, 247, 252, 0) 0%, #101010 100%)}}@media(prefers-reduced-motion){.slider .slider__control{display:none}.slider .slides__track{-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0}.slider .slides_wrapper{width:100%;right:0}.slider .slides__wrapper::before,.slider .slides__wrapper::after{display:none}.slider .slide[aria-hidden]{display:none}}.heading-bar{color:#fff}.heading-bar__wrapper{padding:40px 16px}@media screen and (min-width: 1024px){.heading-bar__wrapper{padding:80px 0}}.f2f-content__block{padding:40px 16px}@media screen and (min-width: 1024px){.f2f-content__block{padding:80px 0px}}.f2f-content__block .f2f__cards{display:grid;grid-template-columns:1fr;grid-gap:24px;gap:24px}@media screen and (min-width: 1024px){.f2f-content__block .f2f__cards{grid-template-columns:1fr 1fr;gap:40px}}.f2f-content__block .f2f__card{display:grid;grid-template-columns:1fr;padding:24px;grid-gap:24px;gap:24px;justify-items:center;background-color:#fff}@media screen and (min-width: 768px){.f2f-content__block .f2f__card{grid-template-columns:1fr 2fr;justify-items:initial}}.f2f-content__block .f2f__card img{aspect-ratio:1/1;vertical-align:middle;-o-object-fit:cover;object-fit:cover}.f2f-content__block .f2f__card .card__image img{max-width:176px}.f2f-content__block .f2f__card .card__image--main img{min-width:327px}@media screen and (min-width: 1024px){.f2f-content__block .f2f__card .card__image--main img{min-width:368px}}.f2f-content__block .f2f__card [data-rounded] img{border-radius:50%}.f2f-content__block .f2f__card .card__text{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:16px;justify-self:baseline}@media screen and (min-width: 1024px){.f2f-content__block .f2f__card--main{gap:64px}}.f2f-content__block .text--special{color:#00aeef;font-weight:900;letter-spacing:1.5px;line-height:2rem;font-size:1.125rem;text-transform:uppercase;text-decoration:none}@media screen and (min-width: 1024px){.f2f__team-row .event-text{text-align:end}}.f2f__team-row:not(:last-child){border-bottom:1px solid #00aeef;padding-bottom:24px}@media screen and (min-width: 1024px){.f2f__team-row:not(:last-child){padding-bottom:32px}}.f2f__team-row:last-child{padding-top:24px}@media screen and (min-width: 1024px){.f2f__team-row:last-child{padding-top:32px}}.f2f_border-bottom{border-bottom:1px solid #00aeef}.animated-counter{--size: clamp(1.5rem, 0.5rem + 5vw, 5rem);--size-lg: clamp(1.625rem, 0.2321rem + 6.9643vw, 6.5rem)}.animated-counter__wrapper{padding:40px 16px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-webkit-column-gap:80px;-moz-column-gap:80px;column-gap:80px;row-gap:32px;text-align:center}@media screen and (min-width: 1024px){.animated-counter__wrapper{padding:80px 0;-ms-flex-direction:row;flex-direction:row;text-align:start}.animated-counter__wrapper .counter-text{max-width:100%}.animated-counter__wrapper.text--center{-ms-flex-direction:column;flex-direction:column}.animated-counter__wrapper.text--center .counter-text{max-width:904px}.animated-counter__wrapper.text--center .counter-link{text-align:center}}.animated-counter .counter__wrapper--inner{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center}.animated-counter .counter__wrapper--inner .digit__wrapper{height:var(--size);overflow:hidden;display:inline-block;width:clamp(1.5rem,5vw,3.1rem);line-height:var(--size);font-size:var(--size)}.animated-counter .counter__wrapper--inner .digit__wrapper.xl{width:clamp(1.5rem,5vw,4.1rem);height:var(--size-lg);line-height:var(--size-lg);font-size:var(--size-lg)}.animated-counter .counter__wrapper--inner .digit{-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-timing-function:linear;animation-timing-function:linear;color:#fff;-ms-flex-item-align:center;align-self:center;font-weight:900;margin:0}.animated-counter .counter__wrapper--inner .digit__wrapper:nth-last-child(3n){margin-left:clamp(.3rem,2vw,1rem)}@-webkit-keyframes spin{from{-webkit-transform:translateY(0);transform:translateY(0)}to{-webkit-transform:translateY(-100%);transform:translateY(-100%)}}@keyframes spin{from{-webkit-transform:translateY(0);transform:translateY(0)}to{-webkit-transform:translateY(-100%);transform:translateY(-100%)}}.animated-counter:not(.bg--blue-80) .digit,.animated-counter:not(.bg--blue-80) .no-animate--text{color:#00aeef}.animated-counter .no-animate--text{text-wrap:nowrap;font-size:var(--size);color:#fff;-ms-flex-item-align:center;align-self:center;font-weight:900;line-height:normal}.animated-counter .no-animate--text.xl{line-height:normal;font-size:var(--size-lg)}.takeover .header{padding:0;position:sticky;z-index:1}.takeover .page-elements{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-height:100vh}@media screen and (min-width: 1024px){.takeover .page-elements{overflow:hidden}}.takeover .takeover__form{-ms-flex:1;flex:1;position:absolute;top:375px;left:calc(50% - 50vw);width:100vw}@media screen and (min-width: 1024px){.takeover .takeover__form{-ms-flex:initial;flex:initial;position:static;position:initial;background-color:transparent;background-color:initial;margin-top:188px;margin-bottom:180px}}.takeover .takeover__form .takeover__form--wrapper{padding:24px 24px 80px 24px}@media screen and (min-width: 1024px){.takeover .takeover__form .takeover__form--wrapper{width:675px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;row-gap:40px;padding:64px 64px 40px 64px}}.takeover .takeover__form .takeover__form--wrapper .form__legend{color:#101010;background-color:transparent;background-color:initial}.takeover .takeover__form .takeover__form--wrapper .form__field-radio-label{border:none}@media screen and (min-width: 1024px){.takeover .takeover__form .takeover__form--wrapper .btn[type=submit]{width:auto}}@media screen and (min-width: 1024px){.takeover .takeover__form .takeover__form--wrapper.bg--blue-40.transparent{background-color:#a4ddf3e6}.takeover .takeover__form .takeover__form--wrapper.bg--blue-20.transparent{background-color:#c6ecfde6}.takeover .takeover__form .takeover__form--wrapper.bg--blue-10.transparent{background-color:#e8f7fce6}.takeover .takeover__form .takeover__form--wrapper.bg--blue-5.transparent{background-color:#f4fbfee6}.takeover .takeover__form .takeover__form--wrapper.bg--white.transparent{background-color:hsla(0,0%,100%,.9019607843)}}.takeover .takeover__form .takeover__heading{text-wrap:pretty;font-size:1.875rem;line-height:2.5rem}@media screen and (min-width: 1024px){.takeover .takeover__form .takeover__heading{font-size:3.25rem;line-height:3.5rem}}.takeover .takeover__form .takeover__subheading{text-wrap:balance}.takeover .takeover__form .takeover__info{text-align:center;margin-top:32px;padding-top:32px;border-top:1px solid #101010}@media screen and (min-width: 1024px){.takeover .takeover__form .takeover__info{text-align:start;margin-top:40px;padding-top:40px;display:-ms-flexbox;display:flex;-webkit-column-gap:24px;-moz-column-gap:24px;column-gap:24px}.takeover .takeover__form .takeover__info svg{width:42px;height:74px}}.takeover .takeover__form .takeover__info p{text-wrap:pretty;margin-bottom:0}.takeover .navbar{background-color:transparent;background-color:initial}.takeover .bottombar__content{height:auto}.takeover .bottombar__content .link--arrowed{margin-right:20px;white-space:nowrap;line-height:1.5rem;color:#fff;font-weight:700}.takeover .bottombar__content .link--arrowed::after{background-image:url(/static/studio/pub/web/v3/master/hashed/arrow-forward-white.f3635181.svg)}.takeover .bottombar__content .link--arrowed:hover{color:#49bce8}.takeover .bottombar__content .link--arrowed:hover::after{background-image:url(/static/studio/pub/web/v3/master/hashed/arrow-forward-blue.a5106b57.svg)}.takeover .navbar__logo-block{background-color:#00aeef;padding:16px 16.75px;margin-left:24px}.takeover .navbar__logo-block:focus{outline-color:#fff}@media screen and (min-width: 1024px){.takeover .navbar__logo-block{padding:44px 24px;margin-left:0}}.hero--takeover{margin-top:0}.hero--takeover .hero__content{padding:0;min-height:375px}@media screen and (min-width: 1024px){.hero--takeover .hero__content{position:relative;min-height:0;min-height:initial}}.hero--takeover .hero__content .hero__image{height:375px}@media screen and (min-width: 1024px){.hero--takeover .hero__content .hero__image{height:max(100%,100vh)}}.hero--takeover .takeover__logo{margin:auto auto 21px;width:181px;height:auto;z-index:1}@media screen and (min-width: 1024px){.hero--takeover .takeover__logo{width:229px;position:absolute;top:0;right:0}}.hero--takeover .takeover__logo a:focus-visible{outline-offset:2px;outline:2px solid #fff}.text-two-cols__section{padding:80px 16px}.text-two-cols__content{position:relative}.text-two-cols__content .content__heading{width:100%;text-align:left}@media screen and (min-width: 1024px){.text-two-cols__content .content__heading{margin:0 auto;text-align:center;max-width:850px}}.text-two-cols__content .content__heading::after{display:block;content:"";width:56px;border-bottom:2px solid #00aeef}@media screen and (min-width: 1024px){.text-two-cols__content .content__heading::after{margin:0 auto}}.text-two-cols__content .content__row{-webkit-column-gap:32px;-moz-column-gap:32px;column-gap:32px}@media screen and (min-width: 1024px){.text-two-cols__content .content__column{-ms-flex:1;flex:1}}.text-two-cols__content .content__text li{margin-bottom:1em}.ia-map__header{padding:80px 16px 40px;text-align:center;max-width:904px}.ia-map__header p{font-size:1.125rem;line-height:2rem}@media screen and (min-width: 1024px){.ia-map__header p{font-size:1.25rem}}.ia-map__container{position:relative;z-index:9;width:100%;aspect-ratio:2/4}@media screen and (min-width: 768px){.ia-map__container{aspect-ratio:4/3}}@media screen and (min-width: 1024px){.ia-map__container{aspect-ratio:16/9}}.ia-map__container::after{content:"";border:2rem solid rgba(0,0,0,0);border-top-color:#fff;position:absolute;left:50%;top:0;pointer-events:none}.ia-map__bg-image{position:absolute;top:0;left:calc(50% - 50vw);z-index:-1;height:100%;width:100vw}.ia-map__bg-image img{-o-object-fit:cover;object-fit:cover;height:100%;width:100%}.ia-map__content{position:relative;height:100%;padding:80px 16px}.ia-map__item{position:absolute;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;padding:5px;background-color:rgba(0,0,0,0);border-radius:50%;z-index:10}.ia-map__item--link{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;background-color:#00aeef;text-decoration:none;color:#fff;width:-webkit-max-content;width:-moz-max-content;width:max-content;height:-webkit-max-content;height:-moz-max-content;height:max-content;max-width:150px;max-height:150px;min-width:110px;min-height:110px;aspect-ratio:1/1;border-radius:50%;border:2px solid #fff;-webkit-box-shadow:0 12px 30px 0 rgba(0,0,0,.35);box-shadow:0 12px 30px 0 rgba(0,0,0,.35);-webkit-transition:-webkit-transform .2s ease-out;transition:-webkit-transform .2s ease-out;transition:transform .2s ease-out;transition:transform .2s ease-out, -webkit-transform .2s ease-out;cursor:pointer}@media screen and (min-width: 768px){.ia-map__item--link{min-width:130px;min-height:130px;max-width:190px;max-height:190px}}@media screen and (min-width: 1024px){.ia-map__item--link{max-width:210px;max-height:210px;min-width:150px;min-height:150px}}.ia-map__item--link:hover,.ia-map__item--link:focus{-webkit-transform:scale(1.05);transform:scale(1.05)}.ia-map__item--title{display:block;text-align:center;white-space:normal;font-size:14px;font-weight:700;color:#fff;margin:12px}@media screen and (min-width: 768px){.ia-map__item--title{font-size:16px}}@media screen and (min-width: 1024px){.ia-map__item--title{font-size:18px;margin:15px}}.ia-map .js-dialog__container{padding:0}.ia-map .js-dialog__content>.row{display:grid;grid-template-columns:1fr;border-radius:8px}@media screen and (min-width: 1024px){.ia-map .js-dialog__content>.row{grid-template-columns:4fr 3fr;-ms-flex-align:stretch;align-items:stretch}}.ia-map .js-dialog__content>.row .js-dialog__text{overflow:auto;max-height:35vh}@media screen and (min-width: 1024px){.ia-map .js-dialog__content>.row .js-dialog__text{max-height:75vh;-ms-flex-order:1;order:1}}.ia-map .js-dialog__content>.row .js-dialog__image{max-height:30vh}@media screen and (min-width: 1024px){.ia-map .js-dialog__content>.row .js-dialog__image{max-height:none;-ms-flex-order:2;order:2;display:-ms-flexbox;display:flex;-ms-flex-align:stretch;align-items:stretch}}.ia-map .js-dialog__image{height:100%;width:100%;overflow:hidden}.ia-map .js-dialog__image--wrapper{height:100%;width:100%}.ia-map .js-dialog__image img{display:block;height:100%;width:100%;-o-object-fit:cover;object-fit:cover}.ia-map .js-dialog__text--wrapper{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;-ms-flex-align:start;align-items:flex-start;padding:4em;gap:32px}.js-dialog{position:fixed;height:100%;width:100%;top:0;left:0;display:none;overflow:hidden;background:rgba(0,0,0,.5);-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out;z-index:90}.js-dialog[aria-hidden=false]{display:block;opacity:1}.js-dialog[aria-hidden=true]{display:none;opacity:0}.js-dialog__container{position:relative;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);max-height:75vh;width:90%;padding:20px;background:#fff;border-radius:8px;-webkit-box-shadow:0 30px 100px rgba(0,0,0,.3);box-shadow:0 30px 100px rgba(0,0,0,.3);overflow:hidden}.js-dialog__button--close{position:absolute;top:10px;right:10px;height:34px;width:34px;border:none;font-size:1.5rem;text-align:center;line-height:1;background-color:#101010;color:#fff;padding:8px;border-radius:50%;cursor:pointer;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.js-dialog__button--close:hover{background-color:#fff;color:#101010}.js-dialog__title__separator{background-color:#00aeef;width:4rem;height:2px}.js-dialog__content{height:100%;width:100%;font-size:16px;line-height:1.5;color:#101010}.content__videobot{margin-top:2rem;margin-bottom:2rem}.quiz{padding:80px 24px}.quiz__question:not(.active),.quiz .quiz__correct-tag,.quiz .quiz__incorrect-tag{display:none}.quiz__progress{line-height:2rem;text-align:center;margin-bottom:8px}.quiz__question-fieldset{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:24px}.quiz__legend{font-size:2rem;line-height:2.5rem;text-align:center}.quiz__options{display:grid;grid-gap:16px;gap:16px;margin-top:1rem}@media screen and (min-width: 1024px){.quiz__options{grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));gap:24px}}.quiz__option{display:block;width:100%}.quiz__option input:focus+.quiz__option-button,.quiz__option input:checked+.quiz__option-button{border-width:2px;border-color:#101010}.quiz__option input.correct+.quiz__option-button{background-color:#fff;border-color:#00aeef}.quiz__option input.correct+.quiz__option-button .quiz__correct-tag{display:block}.quiz__option input.correct:checked+.quiz__option-button{background-color:#c6ecfd;border-color:#00aeef}.quiz__option input.incorrect:checked+.quiz__option-button{background-color:#e6e6e6;border-color:#919191}.quiz__option input.incorrect:checked+.quiz__option-button .quiz__incorrect-tag{display:block}.quiz__option-button{display:block;width:100%;position:relative;isolation:isolate;padding:24px 16px;background-color:#fff;border:none;border-radius:8px;-webkit-box-shadow:0px 4px 5px 0px rgba(0,0,0,.08),0px 0px 0px 1px #ccc;box-shadow:0px 4px 5px 0px rgba(0,0,0,.08),0px 0px 0px 1px #ccc;text-align:left;overflow:hidden;-webkit-transition:-webkit-box-shadow 200ms;transition:-webkit-box-shadow 200ms;transition:box-shadow 200ms;transition:box-shadow 200ms, -webkit-box-shadow 200ms}.quiz__option-button:not([aria-disabled=true]){cursor:pointer}.quiz__option-button:not([aria-disabled=true]):hover,.quiz__option-button:not([aria-disabled=true]):focus,.quiz__option-button:not([aria-disabled=true]):focus-visible{-webkit-box-shadow:0px 10px 10px 0px rgba(0,0,0,.2),0px 0px 0px 2px #101010;box-shadow:0px 10px 10px 0px rgba(0,0,0,.2),0px 0px 0px 2px #101010}.quiz__option-button--has-image{height:15.625rem;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:end;justify-content:end}@media screen and (min-width: 1024px){.quiz__option-button--has-image{height:22.625rem}}.quiz__option-button--has-image::before{content:"";display:block;position:absolute;inset:0;z-index:-1;background:-webkit-gradient(linear, left bottom, left top, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));background:linear-gradient(to top, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%)}.quiz__option-button.selected{background-color:#c6ecfd;-webkit-box-shadow:0px 10px 10px 0px rgba(0,0,0,.2),0px 0px 0px 2px #00aeef;box-shadow:0px 10px 10px 0px rgba(0,0,0,.2),0px 0px 0px 2px #00aeef}.quiz__option-button.correct{-webkit-box-shadow:0px 4px 5px 0px rgba(0,0,0,.08),0px 0px 0px 2px #00aeef;box-shadow:0px 4px 5px 0px rgba(0,0,0,.08),0px 0px 0px 2px #00aeef}.quiz__option-button.incorrect{background-color:#e6e6e6;-webkit-box-shadow:0px 10px 10px 0px rgba(0,0,0,.2),0px 0px 0px 2px #919191;box-shadow:0px 10px 10px 0px rgba(0,0,0,.2),0px 0px 0px 2px #919191}.quiz__option-button .quiz__correct-tag,.quiz__option-button .quiz__incorrect-tag{display:none;gap:.5em;-ms-flex-align:center;align-items:center}.quiz__option-button .quiz__correct-tag .icon,.quiz__option-button .quiz__incorrect-tag .icon{width:1.5em;height:1.5rem}.quiz__option-button .quiz__correct-tag .icon{color:#00aeef}.quiz__option-button .quiz__incorrect-tag .icon{color:#919191}.quiz__option-button.correct .quiz__correct-tag,.quiz__option-button.incorrect.selected .quiz__incorrect-tag{display:-ms-flexbox;display:flex}.quiz__option-button--has-image.correct .quiz__correct-tag,.quiz__option-button--has-image.incorrect.selected .quiz__incorrect-tag{background-color:#fff;padding:.25rem .5rem;border-radius:8px}.quiz .quiz__option-image{position:absolute;z-index:-2;inset:0;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.quiz .quiz__option-result{position:absolute;right:16px;top:24px;font-size:1.125rem;line-height:1.5rem;min-height:1.5rem}.quiz__option-text{display:block;margin-top:48px;font-weight:700;font-size:1.25rem;line-height:1.75rem}.quiz__option-text--over-image{color:#fff}.quiz__option-tag{position:absolute;top:0;left:0;display:-ms-flexbox;display:flex;font-size:1.5rem;width:3rem;height:3rem;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;background-color:#101010;color:#fff;border-bottom-right-radius:8px}.correct .quiz__option-tag{background-color:#00aeef}.incorrect .quiz__option-tag{background-color:#919191}.quiz__controllers{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;margin-top:40px}.quiz__controllers button[aria-disabled=true]{background-color:#ccc;border-color:#ccc;color:gray;cursor:not-allowed}.quiz__question-descriptions{text-align:center}.quiz__results{max-width:45rem;margin-left:auto;margin-right:auto}.quiz__error>*{color:#101010;background-color:#fed6d6;text-align:center;padding:16px;margin-top:16px;margin-bottom:16px}

/*# sourceMappingURL=unicef.css.map*/