@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.2.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */:root{--bs-blue: #0d6efd;--bs-indigo: #6610f2;--bs-purple: #6f42c1;--bs-pink: #d63384;--bs-red: #dc3545;--bs-orange: #fd7e14;--bs-yellow: #ffc107;--bs-green: #198754;--bs-teal: #20c997;--bs-cyan: #0dcaf0;--bs-black: #000;--bs-white: #fff;--bs-gray: #6c757d;--bs-gray-dark: #343a40;--bs-gray-100: #f8f9fa;--bs-gray-200: #e9ecef;--bs-gray-300: #dee2e6;--bs-gray-400: #ced4da;--bs-gray-500: #adb5bd;--bs-gray-600: #6c757d;--bs-gray-700: #495057;--bs-gray-800: #343a40;--bs-gray-900: #212529;--bs-primary: #0d6efd;--bs-secondary: #6c757d;--bs-success: #198754;--bs-info: #0dcaf0;--bs-warning: #ffc107;--bs-danger: #dc3545;--bs-light: #f8f9fa;--bs-dark: #212529;--bs-primary-rgb: 13, 110, 253;--bs-secondary-rgb: 108, 117, 125;--bs-success-rgb: 25, 135, 84;--bs-info-rgb: 13, 202, 240;--bs-warning-rgb: 255, 193, 7;--bs-danger-rgb: 220, 53, 69;--bs-light-rgb: 248, 249, 250;--bs-dark-rgb: 33, 37, 41;--bs-white-rgb: 255, 255, 255;--bs-black-rgb: 0, 0, 0;--bs-body-color-rgb: 33, 37, 41;--bs-body-bg-rgb: 255, 255, 255;--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family: var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight: 400;--bs-body-line-height: 1.5;--bs-body-color: #212529;--bs-body-bg: #fff;--bs-border-width: 1px;--bs-border-style: solid;--bs-border-color: #dee2e6;--bs-border-color-translucent: rgba(0, 0, 0, 0.175);--bs-border-radius: 0.375rem;--bs-border-radius-sm: 0.25rem;--bs-border-radius-lg: 0.5rem;--bs-border-radius-xl: 1rem;--bs-border-radius-2xl: 2rem;--bs-border-radius-pill: 50rem;--bs-link-color: #0d6efd;--bs-link-hover-color: #0a58ca;--bs-code-color: #d63384;--bs-highlight-bg: #fff3cd}.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}}.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.3333333333%}.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.6666666667%}.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.3333333333%}.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.6666666667%}.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.3333333333%}.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.6666666667%}.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.3333333333%}.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.6666666667%}.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.3333333333%}.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.6666666667%}.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{-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.3333333333%}.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.6666666667%}.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-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-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-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-table{display:table !important}.d-lg-table-row{display:table-row !important}.d-lg-table-cell{display:table-cell !important}.d-lg-flex{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-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-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-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(13, 110, 253, 1) !important;background-color:RGBA(13, 110, 253, var(--bs-bg-opacity, 1)) !important}.text-bg-secondary{color:#fff !important;background-color:RGBA(108, 117, 125, 1) !important;background-color:RGBA(108, 117, 125, var(--bs-bg-opacity, 1)) !important}.text-bg-success{color:#fff !important;background-color:RGBA(25, 135, 84, 1) !important;background-color:RGBA(25, 135, 84, var(--bs-bg-opacity, 1)) !important}.text-bg-info{color:#000 !important;background-color:RGBA(13, 202, 240, 1) !important;background-color:RGBA(13, 202, 240, var(--bs-bg-opacity, 1)) !important}.text-bg-warning{color:#000 !important;background-color:RGBA(255, 193, 7, 1) !important;background-color:RGBA(255, 193, 7, var(--bs-bg-opacity, 1)) !important}.text-bg-danger{color:#fff !important;background-color:RGBA(220, 53, 69, 1) !important;background-color:RGBA(220, 53, 69, var(--bs-bg-opacity, 1)) !important}.text-bg-light{color:#000 !important;background-color:RGBA(248, 249, 250, 1) !important;background-color:RGBA(248, 249, 250, var(--bs-bg-opacity, 1)) !important}.text-bg-dark{color:#fff !important;background-color:RGBA(33, 37, 41, 1) !important;background-color:RGBA(33, 37, 41, var(--bs-bg-opacity, 1)) !important}.link-primary{color:#0d6efd !important}.link-primary:hover,.link-primary:focus{color:#0a58ca !important}.link-secondary{color:#6c757d !important}.link-secondary:hover,.link-secondary:focus{color:#565e64 !important}.link-success{color:#198754 !important}.link-success:hover,.link-success:focus{color:#146c43 !important}.link-info{color:#0dcaf0 !important}.link-info:hover,.link-info:focus{color:#3dd5f3 !important}.link-warning{color:#ffc107 !important}.link-warning:hover,.link-warning:focus{color:#ffcd39 !important}.link-danger{color:#dc3545 !important}.link-danger:hover,.link-danger:focus{color:#b02a37 !important}.link-light{color:#f8f9fa !important}.link-light:hover,.link-light:focus{color:#f9fafb !important}.link-dark{color:#212529 !important}.link-dark:hover,.link-dark:focus{color:#1a1e21 !important}.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){position:absolute !important;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}.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:1px;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:"Roboto";src:url(/static/studio/pub/web/v3/master/hashed/Roboto-400.694af05c.woff2) format("woff2"),url(/static/studio/pub/web/v3/master/hashed/Roboto-400.f36638c2.ttf) format("truetype");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Roboto";src:url(/static/studio/pub/web/v3/master/hashed/Roboto-700.2a2da422.woff2) format("woff2"),url(/static/studio/pub/web/v3/master/hashed/Roboto-700.9ece5b48.ttf) format("truetype");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Roboto";src:url(/static/studio/pub/web/v3/master/hashed/Roboto-900.08bf8b49.woff2) format("woff2"),url(/static/studio/pub/web/v3/master/hashed/Roboto-900.301fe70f.ttf) format("truetype");font-weight:900;font-style:normal;font-display:swap}html{font-family:"Roboto",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,.quote__figure--edited :first-child,.lift-group__item--large .lift-group__title,.testimonial__heading,.h3,.form__freetext-title,.lift-group__item--small .lift-group__title,ol li::before,.h4,.h5,.lift-item__tag,.knowledge-test .question__heading,.h6,.content__quote .quote__figcaption,.content__text .quote__figcaption,.quote__figure--edited :last-child,.testimonial__author,.emergency-state .emergency-bar__text,.footer .footer__heading,.language-menu a{font-weight:900;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,.quote__figure--edited :first-child,.lift-group__item--large .lift-group__title,.testimonial__heading{font-size:1.625rem;line-height:2rem}h3,.h3,.form__freetext-title,.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,.content__quote .quote__figcaption,.content__text .quote__figcaption,.quote__figure--edited :last-child,.testimonial__author,.emergency-state .emergency-bar__text,.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,.donation-levels__item ul li.item,.heading-and-ingress__link-list li a,.social-proof__card-container p,.content ul,.content ol,.content p,.info-box p,.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,.donation-levels__item ul li.item,.heading-and-ingress__link-list li a,.social-proof__card-container p,.content ul,.content ol,.content p,.info-box p,.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:#ff0}.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}.text--top-bar{position:relative}.text--top-bar::before{content:"";position:absolute;width:3.5rem;height:.5rem;top:-1.875rem;background-color:#1cabe2}@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,.quote__figure--edited :first-child,.lift-group__item--large .lift-group__title,.testimonial__heading{font-size:2.5rem;line-height:3rem}h3,.h3,.form__freetext-title,.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,.content__quote .quote__figcaption,.content__text .quote__figcaption,.quote__figure--edited :last-child,.testimonial__author,.emergency-state .emergency-bar__text,.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,.donation-levels__item ul li.item,.heading-and-ingress__link-list li a,.social-proof__card-container p,.content ul,.content ol,.content p,.info-box p,.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:disc}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{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:#000;border:2px 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)}.btn:focus,.radio-tabs__btn:focus{outline:2px solid #000;position:relative;border-color:#fff}.btn:hover,.radio-tabs__btn:hover{background-color:#000;color:#fff}.btn:disabled,.radio-tabs__btn:disabled{border-color:#ccc;background-color:#ccc;color:#666}.btn:disabled:hover,.radio-tabs__btn: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{border-color:#000;background-color:#fff}.btn--secondary:hover{background-color:#000;color:#fff}.btn--secondary:focus{outline:2px solid #000;outline-offset:-4px}.btn--secondary:focus::before{content:"";position:absolute;top:-4px;left:-4px;width:calc(100% + 8px);height:calc(100% + 8px);border:2px solid #000}.btn--special{background-color:#ff0;color:#000;border-color:#ff0}.btn--special:hover,.btn--special:active{background-color:#000;border-color:#000;color:#ff0}.btn--primary,input:checked+.radio-tabs__btn,.btn--secondary{background-color:#000;color:#fff;border:2px solid #000}.btn--primary:hover,input:checked+.radio-tabs__btn:hover,.btn--secondary:hover{color:#000;border-color:#000;background-color:#fff}.btn--primary:focus,input:checked+.radio-tabs__btn:focus,.btn--secondary:focus{outline:2px solid #000;position:relative;border-color:#fff}.btn--primary:active,input:checked+.radio-tabs__btn:active,.btn--secondary:active{opacity:.8;border-color:#000}.btn--primary:active::before,input:checked+.radio-tabs__btn:active::before,.btn--secondary:active::before{display:none}.btn--secondary{background-color:#fff;color:#000}.btn--secondary:focus{border-color:#000}.btn--secondary:focus::before{top:-5px;left:-5px;width:calc(100% + 10px);height:calc(100% + 10px)}.btn--secondary:active{opacity:.8;border-color:#000}.btn--secondary: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{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{background-color:#000;color:#fff;cursor:pointer}.btn--special:hover,.btn--special:active{background-color:#000;border-color:#000;color:#ff0}.btn--primary:hover,input:checked+.radio-tabs__btn:hover,.btn--secondary:hover{background-color:#fff;border-color:#000;color:#000}.btn--primary:active,input:checked+.radio-tabs__btn:active,.btn--secondary:active{opacity:1}.btn--secondary:hover{background-color:#000;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,.social-proof a:not(.btn),.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__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:2px 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,.social-proof a:hover:not(.btn),.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__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,.social-proof a:focus:not(.btn),.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__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,.social-proof a:focus:not(.btn)::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__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){font-weight:400}.link--special{color:#ff0;border-bottom-color:#ff0}.link--special:hover{color:#2d2d2d;border-bottom-color:#2d2d2d;background-color:#ff0}.link--special:focus::before{border-color:#ff0}.link--arrowed,.txt-and-img__text .editor-content--arrow-links a:not(.btn),.lift-group__item--text li a,.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__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__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__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__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}.header:not(.header--transparent-navbar){padding-bottom:3.5rem}@media(min-width: 1024px){.header:not(.header--transparent-navbar){padding-bottom:5rem}}.header__skip-to-content{position:relative;z-index:13;background-color:#ff0;outline:0;border:2px dashed #000;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:#000}.header__skip-to-content-text::after{content:"";display:block;height:1px;background-color:#000}.navbar{color:#000;background-color:#1cabe2;height:3.5rem;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}@media screen and (min-width: 1024px){.navbar{background-color:#fff;-webkit-box-shadow:0px 3px 10px rgba(32,32,32,.1);box-shadow:0px 3px 10px rgba(32,32,32,.1);height:5rem}}.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__logo{position:relative;z-index:1}.navbar__logo-block{display:-ms-flexbox;display:flex;width:100px;height:100%;padding:0;margin-left:16px}.navbar__logo-block:focus{outline-offset:2px;outline:2px solid #000}@media screen and (min-width: 1024px){.navbar__logo-block{background-color:#1cabe2;width:216px;height:128px;padding:24px;margin-left:0}}.navbar__logo img{width:100%}.navbar__content,.navbar__controllers{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:justify;justify-content:space-between;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)}@media screen and (min-width: 1024px){.navbar__btn{font-size:1.125rem;padding:1.5rem}}.navbar__btn:hover:not(.btn--special):not(.navbar__mobile-menu-toggle),.navbar__btn[aria-expanded=true]:not(.navbar__mobile-menu-toggle){background-color:#000;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}.navbar__mobile-menu-toggle{width:54px}.navbar__mobile-menu-toggle .middle-bar{border-color:#000}.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:#000}@media screen and (min-width: 1024px){body:not(.sticky-header):not(.megamenu-open) .header--transparent-navbar .navbar{background-color:rgba(0,0,0,0);-webkit-box-shadow:none;box-shadow:none}body:not(.sticky-header):not(.megamenu-open) .header--transparent-navbar .navbar .navbar__btn:not(.btn--special){color:#fff}body:not(.sticky-header):not(.megamenu-open) .header--transparent-navbar .navbar .navbar__btn:not(.btn--special):hover{background-color:#fff;color:#000}}.navbar.offscreen{-webkit-transform:translate3d(0, -200%, 0);transform:translate3d(0, -200%, 0)}.emergency-state .navbar{top:2.5rem}@media screen and (min-width: 1024px){.emergency-state .navbar{top:3.5rem}}.sticky-header .navbar{position:fixed;top:0}.megamenu__wrapper{max-width:100%;overflow-x:hidden;position:relative}.megamenu{position:relative;background-color:#000;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:2px solid rgba(0,0,0,0)}.megamenu .search{padding:16px}.megamenu__item:hover,.megamenu__item:focus{text-decoration:none;border-bottom:2px solid currentColor}.megamenu__item:focus{outline:none;position:relative}.megamenu__item:focus::before{content:"";position:absolute;top:-4px;left:-4px;width:calc(100% + 8px);height:calc(100% + 10px);border:2px solid currentColor;border-radius:3px}@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;letter-spacing:.1em;display:block;margin-bottom:1rem;font-weight:900}.megamenu__item{text-align:left}.megamenu .megamenu__ul--level-1{margin-bottom:24px}.megamenu__ul--level-1>li>.megamenu__item{display:block;width:100%;font-size:1.25rem;font-weight:900;margin:12px 0 22px;text-decoration:none;border-bottom:2px solid rgba(0,0,0,0)}.megamenu__ul--level-1>li>.megamenu__item:hover{border-color:currentColor}.megamenu__ul--level-1>li>.megamenu__item:focus{border-color:rgba(0,0,0,0)}.megamenu__ul--level-2 .megamenu__item{display:inline-block;text-decoration:none;margin:0 0 14px;border-bottom:2px solid #fff}.megamenu .has-children>.megamenu__item{position:relative;padding-right:1em}.megamenu .has-children>.megamenu__item:hover{border-color:rgba(0,0,0,0)}.megamenu .has-children>.megamenu__item:hover .text{border-bottom:2px solid #fff}.megamenu .has-children>.megamenu__item::after{content:"";position:absolute;right:0;display:inline-block;width:12px;height:100%;background:url(/static/studio/pub/web/v3/master/hashed/arrow-forward-white.f3635181.svg) center center no-repeat;background-size:auto 12px}.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__pagelist-wrapper{padding:0 16px}.megamenu__panel{position:absolute;top:0;left:100%;width:100%;min-height:100%;visibility:hidden;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out;padding:16px;opacity:0}.megamenu__panel.active{opacity:1;visibility:visible}.megamenu__back-btn{font-weight:700;margin-bottom:16px}.megamenu__back-btn::after{background-image:url(/static/studio/pub/web/v3/master/hashed/arrow-forward-white.f3635181.svg) !important}}@media screen and (min-width: 1024px){.megamenu{font-size:1.125rem}.megamenu__pagelist{padding-left:25%;-webkit-transform:none !important;transform:none !important}.megamenu__heading{display:block;font-size:1.5rem;margin-bottom:16px;line-height:1.33em;font-weight:900}.megamenu__item{text-decoration:none;display:inline-block;margin-bottom:14px}.megamenu__ul--level-0{display:grid;grid-template-columns:100% 1fr;grid-template-rows:100% 1fr}.megamenu__li--level-0{display:none;background-color:#000;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}.megamenu__ul--level-1>li{-ms-flex-preferred-size:33%;flex-basis:33%;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:1;flex-shrink:1;padding-right: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:#000;color:#fff;position:absolute;padding:40px 0;width:100vw;left:calc(50% - 50vw);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}.language-menu a:hover{color:#000}.language-menu a.active{border-color:currentColor}.language-menu li:last-child a{margin:0}.language-menu--list{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;padding:0 16px}.language-menu--list .icon{width:24px;height:24px;margin-right:1rem}.language-menu--list .language-menu__options{position:relative;left:0;display:inline-block;width:auto;background-color:rgba(0,0,0,0);padding:0}.bg--blue-100{background-color:#1cabe2}.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:#000}.bg-container{position:relative}.bg-wrapper{position:absolute;height:100%;width:100vw;z-index:-1;left:calc(50% - 50vw)}.footer{background-color:#000;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:#000}.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:#1cabe2;border-bottom-color:#1cabe2;color:#000}.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:#1cabe2}.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 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}}@media screen and (min-width: 768px){.link-wrapper{cursor:pointer;-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)}.link-wrapper:hover{-webkit-transform:translateY(-16px);transform:translateY(-16px)}.link-wrapper.focused{outline-style:solid;outline-color:#000;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:#000 !important}#CybotCookiebotDialogBodyEdgeMoreDetailsLink:hover{color:#1cabe2 !important}.emergency-state .emergency-bar{background-color:#000;color:#ff0;position:relative;z-index:11}.emergency-state .emergency-bar__content{padding-top:8px;padding-bottom:8px;display:-ms-flexbox;display:flex;-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}@media screen and (min-width: 1024px){.emergency-state .emergency-bar__content{padding-top:16px;padding-bottom:16px}}.emergency-state .emergency-bar__text{margin:0}.emergency-state .emergency-bar__link{text-transform:uppercase;line-height:1.375rem}.emergency-state .emergency-bar__text,.emergency-state .emergency-bar__link{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.hero{position:relative;margin-top:-5rem}@media screen and (min-width: 1024px){.hero{background:-webkit-gradient(linear, left top, left bottom, from(#000), color-stop(19%, rgba(0, 0, 0, 0)));background:linear-gradient(to bottom, #000, 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}.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__video,.video-control{display:none}.hero__title{font-size:1.625rem;line-height:3rem;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;letter-spacing:1.2px;display:inline;background-color:#fff}.emergency-state .hero__title{-webkit-box-shadow:-8px 0 #000,8px 0 #000;box-shadow:-8px 0 #000,8px 0 #000;background-color:#000;color:#fff}.hero--brand-colors:not(.emergency-state) .hero__title{-webkit-box-shadow:-8px 0 #1cabe2,8px 0 #1cabe2;box-shadow:-8px 0 #1cabe2,8px 0 #1cabe2;background-color:#1cabe2;color:#fff}.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{font-size:3.5rem;line-height:5.5rem;padding-top:.1875rem;padding-right:0rem;padding-bottom:.6875rem;padding-left:0rem;-webkit-box-shadow:-24px 0 #fff,24px 0 #fff;box-shadow:-24px 0 #fff,24px 0 #fff;letter-spacing:2.5px}.emergency-state .hero__title{-webkit-box-shadow:-24px 0 #000,24px 0 #000;box-shadow:-24px 0 #000,24px 0 #000;background-color:#000;color:#fff}.hero--brand-colors:not(.emergency-state) .hero__title{-webkit-box-shadow:-24px 0 #1cabe2,24px 0 #1cabe2;box-shadow:-24px 0 #1cabe2,24px 0 #1cabe2}.content__heading{margin-left:24px;margin-right:24px}}@media screen and (min-width: 1024px){.hero__content .content__box{max-width:65%}.hero__content .content__box--bottom-right~.video-control{-ms-flex-order:0;order:0}.hero--with-video .hero__video,.hero--with-video .video-control{display:block}.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}.video-control .icon svg{width:.75rem;height:.875rem}.video-control.playing .video-control-pause{display:none}.video-control:not(.playing) .video-control-play{display:none}}.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 #1cabe2}.accordion__item-header:focus{outline-style:solid;outline-width:2px;outline-color:#000;outline-offset:-2px}@media screen and (min-width: 1024px){.accordion__item-header:hover{text-decoration:underline;text-underline-offset:6px;text-decoration-thickness:2px}}.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:#1cabe2;padding:40px 16px 0 16px;margin:0}.testimonial__quote{background-color:#fff;color:#000;-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{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}.lift-group__title::before{content:"";position:absolute;width:3.5rem;height:.5rem;background-color:#1cabe2}.lift-group__item--large .lift-group__title::before{top:-2.0625rem}.lift-group__item--small .lift-group__title::before{top:-1.5rem}.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{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{-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{width:50vw;left:auto;left:initial}.column-left .lift-group__item-image .lift-group__image-wrapper{left:calc(-50vw + 100%)}}.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::before{display:none}@media screen and (max-width: 1024px){.lift-group--donation{-ms-flex-direction:column-reverse;flex-direction:column-reverse}}.txt-and-img__section .row{min-height:436px;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:80px 16px}.txt-and-img__image img{-o-object-fit:cover;object-fit:cover;width:100%;display:block;aspect-ratio:3/2}.txt-and-img__image--downloadable img{aspect-ratio:unset;width:200px}.txt-and-img__text{margin-top:40px}.txt-and-img__text p{margin-bottom:24px}.txt-and-img__text p:last-of-type{margin-bottom:0}.txt-and-img__text:not(.order-1){margin-top:0;margin-bottom:24px}.txt-and-img__title{position:relative}.txt-and-img__title::before{content:"";position:absolute;width:3.5rem;height:.5rem;top:-1.875rem;background-color:#1cabe2}.bg--blue-100 .txt-and-img__title::before{background-color:#fff}@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__section .row{padding:56px 0}.txt-and-img__text{margin-top:0;padding:14px 0 14px 80px}.txt-and-img__text:not(.order-1){padding:14px 80px 14px 0;margin-bottom:0}}.content__quote,.content__text{margin-top:2rem;margin-bottom:2rem}.content__quote .quote__figure,.content__quote .quote__figure--edited,.content__text .quote__figure,.content__text .quote__figure--edited{border-top:2px solid #1cabe2;border-bottom:2px solid #1cabe2;padding-top:2.5rem;padding-right:2.3125rem;padding-bottom:1rem;padding-left:2.3125rem;text-align:center}.content__quote .quote__figcaption,.content__text .quote__figcaption{margin-top:1rem}.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:#1cabe2}.quote__icon-wrapper{height:2.5rem;margin-bottom:.5rem}@media screen and (min-width: 1024px){.quote__icon-wrapper{height:3.5rem;margin-bottom:1rem}}.quote__figure--edited :first-child{position:relative;margin-top:48px;margin-bottom:0}.quote__figure--edited :first-child::before{content:"";background-image:url(/static/studio/pub/web/v3/master/hashed/quote.3ec48ca3.svg);background-size:cover;height:2.5rem;width:3.125rem;position:absolute;top:-3rem;left:calc(50% - 25px)}@media screen and (min-width: 1024px){.quote__figure--edited :first-child{margin-top:72px}.quote__figure--edited :first-child::before{height:3.5rem;width:4.4375rem;top:-4.5rem;left:calc(50% - 35.5px)}}.quote__figure--edited :last-child{margin-top:1rem}.info-box{margin-top:32px;margin-bottom:32px;background-color:#c6ecfd;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__details{-webkit-column-gap:16px;-moz-column-gap:16px;column-gap:16px}.content .content__details .details__image{width:50px;height:50px}.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%}.content .content__end{-webkit-column-gap:4px;-moz-column-gap:4px;column-gap:4px;margin-top:48px;margin-bottom:24px;padding-bottom:20px;border-bottom:2px solid #1cabe2}.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__image{margin:0}.content__image .image{height:375px}.content__image .image img{-o-object-fit:cover;object-fit:cover;height:100%;width:100%}.content__image .image__caption{margin-top:1rem}.content__image .image__copyright{float:right;font-weight:400;color:#666}.content__image--full-width{position:relative}.content__image--full-width .image{position:absolute;width:100vw;left:calc(50% - 50vw)}.content__image--full-width .image__placeholder{height:375px}@media screen and (min-width: 1024px){.content__image .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%}.editor-image--wider-width{margin-bottom:16px}.editor-image--wider-width p{margin:0}.editor-image--wider-width p img{vertical-align:bottom;-o-object-fit:cover;object-fit:cover;aspect-ratio:1/1}.editor-image__copyright{font-weight:400;color:#666;text-align:end;margin-top:16px;margin-bottom:32px}@media screen and (min-width: 1024px){.editor-image--wider-width{position:relative;height:600px}.editor-image--wider-width p{height:100%;margin:0;position:absolute;width:133%;left:-16.7%}.editor-image--wider-width p img{width:100%;height:100%;aspect-ratio:unset}}.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}.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 h3{margin:0px 0 10px 0px}.social-proof__card-container li{list-style-type:none;text-align:center;max-width:450px;padding:0 20px;width:100%}.social-proof__card-container p{margin-bottom:0}.social-proof__card-container img{max-width:136px;margin:24px auto}.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:#000;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:#000;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:#000;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:#000;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__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:2px 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:#000;border:2px solid #000}.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+.form__field-checkbox-label::before{border:2px solid #000}.form__field-checkbox:focus+.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 #000;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+.form__field-radio-label{position:relative}.form__field-radio:focus+.form__field-radio-label::before{border:2px solid #666}.form__field-radio:checked+.form__field-radio-label::before{padding:2px;border:2px solid}.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 #000}.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)}.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 #000}.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:2px 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:#000}.multiselect__option:hover{background-color:#f2f2f2;color:#000}.multiselect__option--selected:not(.multiselect__option--disabled){background-color:#fff;color:#000}.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 #000;-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:2px solid rgba(0,0,0,0);font-size:1rem}.ts-wrapper .ts-dropdown .option.active{border-color:#000;background-color:#fff;color:#666}.ts-wrapper .ts-dropdown .option.selected{background-color:#fff;color:#000}.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:#000;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__header{margin-bottom:32px;gap:10px}.content-lifts__items{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:32px}.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}@media screen and (min-width: 768px){.content-lifts__header{margin-bottom:56px}.content-lifts__items{display:grid;grid-template-columns:repeat(3, 1fr);grid-gap:16px;gap:16px}.content-lifts .link,.content-lifts .news-archive__btn{white-space:nowrap;margin-left:auto}}.lift-item__wrapper{position:relative;height:100%}.lift-item__tag{padding:8px 16px;margin:0;position:absolute;left:16px;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;background-color:#1cabe2}.lift-item__link{font-size:inherit;line-height:inherit;color:inherit;text-decoration:none;font-weight:inherit}.lift-item__image img{aspect-ratio:1/1;-o-object-fit:cover;object-fit:cover;display:block;width:100%}.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__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 #000;display:inline-block}.lift-item__tags li:last-child{border:0}.lift-item__subheading.text--top-bar::before{top:-1rem}.heading-and-ingress__section{padding:80px 16px}.heading-and-ingress__section--padding-top-unset{padding-top:0px}.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 a{margin-bottom:16px}.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:2px 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-left:30px;background:url(/static/studio/pub/web/v3/master/hashed/search.383beafa.svg) 10px center no-repeat #fff;border:2px solid #000}.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:2px solid #000;position:absolute;top:-2px;bottom:-2px;left:-4px}.search__form--invert{border:2px 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.25rem}@media screen and (min-width: 1024px){.search__form .form__field,.search__form .btn{height:3.25rem}}.search--desktop{position:absolute;background-color:#fff;top:0;right:0;bottom:0;width:100vw;left:calc(50% - 50vw);display:none}.search--desktop .container{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;padding:0 170px 0 248px}.search--desktop .search__form{-ms-flex-positive:1;flex-grow:1;margin:12px 0}.search--desktop.open{display:-ms-flexbox !important;display:flex !important}.search__close-btn{margin-left:16px;padding:16px;border-color:rgba(0,0,0,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--margin-top-large{padding:80px 1rem 16px}@media screen and (min-width: 1024px){.breadcrumb--margin-top-large{padding:80px 0 16px}}.breadcrumb__item{color:#2d2d2d;text-decoration:none;text-decoration:initial}.breadcrumb__item:hover{border-bottom:2px 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}@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-color:#000;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:#000;outline:2px solid #000;outline-offset:-6px;position:relative;color:#000}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 #000;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:#000}input:focus+.radio-tabs__btn{outline:2px solid #fff;outline-offset:-4px;border-color:#000}input:focus:not(:checked)+.radio-tabs__btn{outline:2px solid #000;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 #000}.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 .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:2px solid #000}.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:2px 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:2px solid #2d2d2d}.donation-form__payment-methods .form__field-radio-label::before{content:"";position:relative;display:inline-block;width:40px;height:40px;border:2px 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:2px 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:2px solid #000}.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:#1cabe2}.material-guide-item__top-border--yellow{background-color:#ff0}.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:2px solid #000}.contact-us__search-input:focus{outline-color:#000;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 #1cabe2}.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 #1cabe2;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 #000}.social-links__list .icon{vertical-align:bottom}.social-links svg{fill:#000;width:32px;height:32px}@media screen and (min-width: 1024px){.social-links svg{width:48px;height:48px}}.bg--blue-20 .social-links svg{fill:#1cabe2}@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:80px 16px}.donation-levels__items{gap:24px}.donation-levels__item ul{border:1px solid #1cabe2;padding:1.5rem;gap:8px}@media screen and (min-width: 1024px){.donation-levels__item ul{padding:2rem;gap:14px}}.donation-levels__item ul li.item{display:-ms-flexbox;display:flex;gap:24px;margin-bottom:0}.donation-levels__item ul svg{height:1.0625rem;width:1.0625rem;margin-top:.4375rem;fill:#1cabe2}@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__title{color:#fff;text-align:center;line-height:64px}.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:#000;background-color:#fff;cursor:pointer}.carousel .navigation .btn:not(.current):focus{outline-offset:2px}.carousel .navigation .btn:not(.current):hover{color:#fff;background-color:#000}.carousel .navigation .btn.current{color:#fff;background-color:#000;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__heading{margin-top:40px;margin-bottom:40px}@media screen and (min-width: 768px){.poll__heading{text-align:center;margin-top:80px;margin-bottom:80px}}@media screen and (min-width: 768px){.poll-fieldset__legend{text-align:center}}.poll__answer--wrapper{padding-block:40px}.poll__answer{margin-top:40px}.poll__answer .radio__btn--centered{display:-ms-flexbox;display:flex;background-color:#000;outline:0;color:#fff;border-color:rgba(0,0,0,0);pointer-events:none;font-weight:400;letter-spacing:inherit}.poll__answer .radio__btn--centered .check-icon{background-image:url(/static/studio/pub/web/v3/master/hashed/check-white.14389e22.svg);display:inline-block;background-repeat:no-repeat;background-size:contain;min-width:.75rem;height:.625rem}@media screen and (min-width: 768px){.poll__answer .radio__btn--centered .check-icon{width:1.0625rem;height:.75rem}}.poll__list{list-style:none;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:16px;margin:0 0 24px 0;padding:0;position:relative}.poll__list--item{display:-ms-flexbox;display:flex;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-direction:row-reverse;flex-direction:row-reverse;gap:8px}.poll__list--item label{-ms-flex-positive:1;flex-grow:1}@media screen and (min-width: 768px){.poll__list--item{-ms-flex-direction:column-reverse;flex-direction:column-reverse;-ms-flex-align:center;align-items:center;gap:16px;padding:16px 0px}}.poll__list .radio__btn--centered{padding:.75rem}@media screen and (min-width: 768px){.poll__list-groups{-ms-flex-pack:center;justify-content:center;-ms-flex-direction:row;flex-direction:row;gap:40px}}.poll__list-groups .poll__list--item{text-align:center}.poll__list-groups .poll__list--item img{width:40px;height:40px;-ms-flex-item-align:center;align-self:center}@media screen and (min-width: 768px){.poll__list-groups .poll__list--item img{width:104px;height:104px}}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}@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:#000;background-color:#fed6d6;text-align:center}.poll-results{margin:40px 1rem 40px 1rem;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:35px}@media screen and (min-width: 768px){.poll-results{margin-top:80px;margin-bottom:80px;gap:48px}}.poll-results .poll__list-groups{display:grid;grid-gap:16px;gap:16px;grid-template-columns:1fr 1fr}@media(min-width: 1200px){.poll-results .poll__list-groups{display:-ms-flexbox;display:flex;gap:40px}}.poll-results .poll__list-groups .poll__list--item:first-of-type{grid-column:1/3}.poll-results .poll__list-groups .poll__list--item{text-align:center;padding:0;-ms-flex-align:initial;align-items:initial}.results__total-text{text-align:center}.results__graph{margin-top:11px;display:-ms-flexbox;display:flex;gap:26px}@media screen and (min-width: 1024px){.results__graph{margin-top:22px;gap:40px}}.results__row:not(:first-of-type) .results__legend{display:none}.poll-results [data-graph-id]{--width: 0%;height:50px;-ms-flex-item-align:center;align-self:center;-webkit-mask-image:url(/static/studio/pub/web/v3/master/hashed/person-small.8155ffdd.svg);mask-image:url(/static/studio/pub/web/v3/master/hashed/person-small.8155ffdd.svg);-webkit-mask-repeat:space;mask-repeat:space;-webkit-mask-position:-6px;mask-position:-6px;background-color:#1cabe2;position:relative}@media screen and (min-width: 1024px){.poll-results [data-graph-id]{height:60px;-webkit-mask-image:url(/static/studio/pub/web/v3/master/hashed/person-large.4c997850.svg);mask-image:url(/static/studio/pub/web/v3/master/hashed/person-large.4c997850.svg)}}.poll-results [data-graph-id]::after{content:"";position:absolute;top:0;right:0;height:100%;background-color:#ccc;-webkit-transition:width .5s ease-out;transition:width .5s ease-out;width:calc(100% - var(--width))}.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:#1cabe2}

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