@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 */

*,*::before,*::after{-webkit-box-sizing:border-box;box-sizing:border-box}html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}body{margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}h1,h2,h3,h4,h5,h6,p,blockquote,pre,ul,ol,dl,figure{margin:0;padding:0}ul,ol{list-style:none}img,picture,video,canvas,svg{display:block;max-width:100%;height:auto}input,button,textarea,select{font:inherit}button{cursor:pointer;background:none;border:none;padding:0}table{border-collapse:collapse;border-spacing:0}:focus-visible{outline:2px solid currentColor;outline-offset:3px}:focus:not(:focus-visible){outline:none}.branch-bar{position:fixed;bottom:0;right:0;min-width:200px;z-index:20000;background-color:#00b2a9;color:#fff;padding:10px;padding-top:30px;-webkit-box-shadow:0 0 10px rgba(0,0,0,.4);box-shadow:0 0 10px rgba(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:.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:.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:hsla(0,0%,100%,.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 #fff}.branch-bar__select{color:#000;width:100%;max-width:300px}.branch-bar__button{color:#000;border:1px solid #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(255, 255, 255, 0));filter:drop-shadow(0 0 1px rgba(255, 255, 255, 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);fill:#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}.container{width:100%;padding-right:20px;padding-left:20px;margin-right:auto;margin-left:auto;max-width:100%}@media(min-width: 768px){.container{max-width:960px}}@media(min-width: 1024px){.container{max-width:1200px}}@media(min-width: 1440px){.container{padding-right:84px;padding-left:84px;max-width:1380px}}@media(min-width: 1600px){.container{max-width:1560px}}@media(min-width: 1728px){.container{max-width:1728px}}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-10px;margin-left:-10px}@media(min-width: 768px){.row{margin-right:-15px;margin-left:-15px}}[class*=col-]{position:relative;width:100%;padding-right:10px;padding-left:10px}@media(min-width: 768px){[class*=col-]{padding-right:15px;padding-left:15px}}.col-1{-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-2{-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-5{-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-8{-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-11{-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}@media(min-width: 768px){.col-md-1{-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-md-2{-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-md-5{-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-md-8{-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-md-11{-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}@media(min-width: 1024px){.col-lg-1{-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-lg-2{-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-lg-5{-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-lg-8{-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-lg-11{-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}@font-face{font-family:"redditSans Regular";src:url(/static/studio/pub/web/Branches/main/hashed/RedditSans-VariableFont_wght.07d35b47.ttf) format("truetype");font-weight:normal;font-style:normal}@font-face{font-family:"redditSans ExtraBold";src:url(/static/studio/pub/web/Branches/main/hashed/RedditSans-ExtraBold.b4c21960.ttf) format("truetype");font-weight:800;font-style:normal}@font-face{font-family:"redditSans Italic";src:url(/static/studio/pub/web/Branches/main/hashed/RedditSans-Italic.fadd2042.ttf) format("truetype");font-weight:normal;font-style:italic}body{font-size:1rem;line-height:1.38rem;color:#071848;font-family:"redditSans Regular",Helvetica,Arial,sans-serif;font-weight:normal}h1{font-family:"redditSans ExtraBold",Helvetica,Arial,sans-serif;font-size:3rem;line-height:3rem;text-transform:uppercase}h2{font-family:"redditSans ExtraBold",Helvetica,Arial,sans-serif;font-size:2.5rem;line-height:2.75rem;margin-bottom:2rem}h3{font-family:"redditSans ExtraBold",Helvetica,Arial,sans-serif;font-size:1.875rem;line-height:2.225rem}h4{font-family:"redditSans ExtraBold",Helvetica,Arial,sans-serif;font-size:1.5rem;line-height:1.8rem}h5{font-family:"redditSans ExtraBold",Helvetica,Arial,sans-serif;font-size:1.25rem;line-height:1.5rem}h6{font-size:1rem;line-height:1.38rem}strong{font-family:"redditSans ExtraBold",Helvetica,Arial,sans-serif}p{font-size:1rem;line-height:1.5}p.lead{font-size:1.38rem;line-height:1.875rem}a{font-size:1rem;font-weight:normal;line-height:1.38rem;text-decoration:underline;color:#ff641b}a:hover{color:#ffb18d}strong,b{font-weight:700}em,i,em>p{font-family:"redditSans Italic",Helvetica,Arial,sans-serif}small{font-size:.875rem}ul,ol{padding-left:1.25rem}ul li,ol li{margin-bottom:.25rem;line-height:1.6}ul{list-style:disc}ol{list-style:decimal}blockquote p{font-family:"redditSans Italic",Helvetica,Arial,sans-serif;padding:.75rem 0rem;margin:1.5rem 0;line-height:30px;font-size:1.25rem;color:#071848}@media(min-width: 1280px){blockquote p{font-size:1.875rem;line-height:40px}}code{font-family:"Courier New",Courier,monospace;font-size:.875em;background-color:#f2f2f2;padding:.125em .375em;border-radius:2px}pre{font-family:"Courier New",Courier,monospace;font-size:.875rem;background-color:#f2f2f2;padding:1rem 1.25rem;border-radius:4px;overflow-x:auto;line-height:1.6}pre code{background:none;padding:0;font-size:inherit}@media(min-width: 768px){h1{font-size:3rem}h2{font-size:2.5rem}}@media(max-width: 767px){h1{font-size:2.5rem;line-height:2.75rem}h2{font-size:1.875rem;line-height:2.225rem}h3{font-size:1.5rem;line-height:1.8rem}h4{font-size:1.25rem;line-height:1.5rem}}.m-0{margin:0 !important}.mt-0{margin-top:0 !important}.mb-0{margin-bottom:0 !important}.ml-0{margin-left:0 !important}.mr-0{margin-right:0 !important}.ms-0{-webkit-margin-start:0 !important;margin-inline-start:0 !important}.me-0{-webkit-margin-end:0 !important;margin-inline-end:0 !important}.mx-0{margin-left:0 !important;margin-right:0 !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.p-0{padding:0 !important}.pt-0{padding-top:0 !important}.pb-0{padding-bottom:0 !important}.pl-0{padding-left:0 !important}.pr-0{padding-right:0 !important}.ps-0{-webkit-padding-start:0 !important;padding-inline-start:0 !important}.pe-0{-webkit-padding-end:0 !important;padding-inline-end:0 !important}.px-0{padding-left:0 !important;padding-right:0 !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.m-1{margin:.25rem !important}.mt-1{margin-top:.25rem !important}.mb-1{margin-bottom:.25rem !important}.ml-1{margin-left:.25rem !important}.mr-1{margin-right:.25rem !important}.ms-1{-webkit-margin-start:.25rem !important;margin-inline-start:.25rem !important}.me-1{-webkit-margin-end:.25rem !important;margin-inline-end:.25rem !important}.mx-1{margin-left:.25rem !important;margin-right:.25rem !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.p-1{padding:.25rem !important}.pt-1{padding-top:.25rem !important}.pb-1{padding-bottom:.25rem !important}.pl-1{padding-left:.25rem !important}.pr-1{padding-right:.25rem !important}.ps-1{-webkit-padding-start:.25rem !important;padding-inline-start:.25rem !important}.pe-1{-webkit-padding-end:.25rem !important;padding-inline-end:.25rem !important}.px-1{padding-left:.25rem !important;padding-right:.25rem !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.m-2{margin:.5rem !important}.mt-2{margin-top:.5rem !important}.mb-2{margin-bottom:.5rem !important}.ml-2{margin-left:.5rem !important}.mr-2{margin-right:.5rem !important}.ms-2{-webkit-margin-start:.5rem !important;margin-inline-start:.5rem !important}.me-2{-webkit-margin-end:.5rem !important;margin-inline-end:.5rem !important}.mx-2{margin-left:.5rem !important;margin-right:.5rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.p-2{padding:.5rem !important}.pt-2{padding-top:.5rem !important}.pb-2{padding-bottom:.5rem !important}.pl-2{padding-left:.5rem !important}.pr-2{padding-right:.5rem !important}.ps-2{-webkit-padding-start:.5rem !important;padding-inline-start:.5rem !important}.pe-2{-webkit-padding-end:.5rem !important;padding-inline-end:.5rem !important}.px-2{padding-left:.5rem !important;padding-right:.5rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.m-3{margin:1rem !important}.mt-3{margin-top:1rem !important}.mb-3{margin-bottom:1rem !important}.ml-3{margin-left:1rem !important}.mr-3{margin-right:1rem !important}.ms-3{-webkit-margin-start:1rem !important;margin-inline-start:1rem !important}.me-3{-webkit-margin-end:1rem !important;margin-inline-end:1rem !important}.mx-3{margin-left:1rem !important;margin-right:1rem !important}.my-3{margin-top:1rem !important;margin-bottom:1rem !important}.p-3{padding:1rem !important}.pt-3{padding-top:1rem !important}.pb-3{padding-bottom:1rem !important}.pl-3{padding-left:1rem !important}.pr-3{padding-right:1rem !important}.ps-3{-webkit-padding-start:1rem !important;padding-inline-start:1rem !important}.pe-3{-webkit-padding-end:1rem !important;padding-inline-end:1rem !important}.px-3{padding-left:1rem !important;padding-right:1rem !important}.py-3{padding-top:1rem !important;padding-bottom:1rem !important}.m-4{margin:1.5rem !important}.mt-4{margin-top:1.5rem !important}.mb-4{margin-bottom:1.5rem !important}.ml-4{margin-left:1.5rem !important}.mr-4{margin-right:1.5rem !important}.ms-4{-webkit-margin-start:1.5rem !important;margin-inline-start:1.5rem !important}.me-4{-webkit-margin-end:1.5rem !important;margin-inline-end:1.5rem !important}.mx-4{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.p-4{padding:1.5rem !important}.pt-4{padding-top:1.5rem !important}.pb-4{padding-bottom:1.5rem !important}.pl-4{padding-left:1.5rem !important}.pr-4{padding-right:1.5rem !important}.ps-4{-webkit-padding-start:1.5rem !important;padding-inline-start:1.5rem !important}.pe-4{-webkit-padding-end:1.5rem !important;padding-inline-end:1.5rem !important}.px-4{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.m-5{margin:3rem !important}.mt-5{margin-top:3rem !important}.mb-5{margin-bottom:3rem !important}.ml-5{margin-left:3rem !important}.mr-5{margin-right:3rem !important}.ms-5{-webkit-margin-start:3rem !important;margin-inline-start:3rem !important}.me-5{-webkit-margin-end:3rem !important;margin-inline-end:3rem !important}.mx-5{margin-left:3rem !important;margin-right:3rem !important}.my-5{margin-top:3rem !important;margin-bottom:3rem !important}.p-5{padding:3rem !important}.pt-5{padding-top:3rem !important}.pb-5{padding-bottom:3rem !important}.pl-5{padding-left:3rem !important}.pr-5{padding-right:3rem !important}.ps-5{-webkit-padding-start:3rem !important;padding-inline-start:3rem !important}.pe-5{-webkit-padding-end:3rem !important;padding-inline-end:3rem !important}.px-5{padding-left:3rem !important;padding-right:3rem !important}.py-5{padding-top:3rem !important;padding-bottom:3rem !important}.m-6{margin:4rem !important}.mt-6{margin-top:4rem !important}.mb-6{margin-bottom:4rem !important}.ml-6{margin-left:4rem !important}.mr-6{margin-right:4rem !important}.ms-6{-webkit-margin-start:4rem !important;margin-inline-start:4rem !important}.me-6{-webkit-margin-end:4rem !important;margin-inline-end:4rem !important}.mx-6{margin-left:4rem !important;margin-right:4rem !important}.my-6{margin-top:4rem !important;margin-bottom:4rem !important}.p-6{padding:4rem !important}.pt-6{padding-top:4rem !important}.pb-6{padding-bottom:4rem !important}.pl-6{padding-left:4rem !important}.pr-6{padding-right:4rem !important}.ps-6{-webkit-padding-start:4rem !important;padding-inline-start:4rem !important}.pe-6{-webkit-padding-end:4rem !important;padding-inline-end:4rem !important}.px-6{padding-left:4rem !important;padding-right:4rem !important}.py-6{padding-top:4rem !important;padding-bottom:4rem !important}.m-7{margin:5rem !important}.mt-7{margin-top:5rem !important}.mb-7{margin-bottom:5rem !important}.ml-7{margin-left:5rem !important}.mr-7{margin-right:5rem !important}.ms-7{-webkit-margin-start:5rem !important;margin-inline-start:5rem !important}.me-7{-webkit-margin-end:5rem !important;margin-inline-end:5rem !important}.mx-7{margin-left:5rem !important;margin-right:5rem !important}.my-7{margin-top:5rem !important;margin-bottom:5rem !important}.p-7{padding:5rem !important}.pt-7{padding-top:5rem !important}.pb-7{padding-bottom:5rem !important}.pl-7{padding-left:5rem !important}.pr-7{padding-right:5rem !important}.ps-7{-webkit-padding-start:5rem !important;padding-inline-start:5rem !important}.pe-7{-webkit-padding-end:5rem !important;padding-inline-end:5rem !important}.px-7{padding-left:5rem !important;padding-right:5rem !important}.py-7{padding-top:5rem !important;padding-bottom:5rem !important}.m-8{margin:6rem !important}.mt-8{margin-top:6rem !important}.mb-8{margin-bottom:6rem !important}.ml-8{margin-left:6rem !important}.mr-8{margin-right:6rem !important}.ms-8{-webkit-margin-start:6rem !important;margin-inline-start:6rem !important}.me-8{-webkit-margin-end:6rem !important;margin-inline-end:6rem !important}.mx-8{margin-left:6rem !important;margin-right:6rem !important}.my-8{margin-top:6rem !important;margin-bottom:6rem !important}.p-8{padding:6rem !important}.pt-8{padding-top:6rem !important}.pb-8{padding-bottom:6rem !important}.pl-8{padding-left:6rem !important}.pr-8{padding-right:6rem !important}.ps-8{-webkit-padding-start:6rem !important;padding-inline-start:6rem !important}.pe-8{-webkit-padding-end:6rem !important;padding-inline-end:6rem !important}.px-8{padding-left:6rem !important;padding-right:6rem !important}.py-8{padding-top:6rem !important;padding-bottom:6rem !important}.m-9{margin:7.5rem !important}.mt-9{margin-top:7.5rem !important}.mb-9{margin-bottom:7.5rem !important}.ml-9{margin-left:7.5rem !important}.mr-9{margin-right:7.5rem !important}.ms-9{-webkit-margin-start:7.5rem !important;margin-inline-start:7.5rem !important}.me-9{-webkit-margin-end:7.5rem !important;margin-inline-end:7.5rem !important}.mx-9{margin-left:7.5rem !important;margin-right:7.5rem !important}.my-9{margin-top:7.5rem !important;margin-bottom:7.5rem !important}.p-9{padding:7.5rem !important}.pt-9{padding-top:7.5rem !important}.pb-9{padding-bottom:7.5rem !important}.pl-9{padding-left:7.5rem !important}.pr-9{padding-right:7.5rem !important}.ps-9{-webkit-padding-start:7.5rem !important;padding-inline-start:7.5rem !important}.pe-9{-webkit-padding-end:7.5rem !important;padding-inline-end:7.5rem !important}.px-9{padding-left:7.5rem !important;padding-right:7.5rem !important}.py-9{padding-top:7.5rem !important;padding-bottom:7.5rem !important}.m-10{margin:9rem !important}.mt-10{margin-top:9rem !important}.mb-10{margin-bottom:9rem !important}.ml-10{margin-left:9rem !important}.mr-10{margin-right:9rem !important}.ms-10{-webkit-margin-start:9rem !important;margin-inline-start:9rem !important}.me-10{-webkit-margin-end:9rem !important;margin-inline-end:9rem !important}.mx-10{margin-left:9rem !important;margin-right:9rem !important}.my-10{margin-top:9rem !important;margin-bottom:9rem !important}.p-10{padding:9rem !important}.pt-10{padding-top:9rem !important}.pb-10{padding-bottom:9rem !important}.pl-10{padding-left:9rem !important}.pr-10{padding-right:9rem !important}.ps-10{-webkit-padding-start:9rem !important;padding-inline-start:9rem !important}.pe-10{-webkit-padding-end:9rem !important;padding-inline-end:9rem !important}.px-10{padding-left:9rem !important;padding-right:9rem !important}.py-10{padding-top:9rem !important;padding-bottom:9rem !important}.m-auto{margin:auto !important}.ml-auto{margin-left:auto !important}.mr-auto{margin-right:auto !important}.ms-auto{-webkit-margin-start:auto !important;margin-inline-start:auto !important}.me-auto{-webkit-margin-end:auto !important;margin-inline-end:auto !important}.mx-auto{margin-left:auto !important;margin-right:auto !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}@media(min-width: 768px){.m-md-0{margin:0 !important}.mt-md-0{margin-top:0 !important}.mb-md-0{margin-bottom:0 !important}.ml-md-0{margin-left:0 !important}.mr-md-0{margin-right:0 !important}.ms-md-0{-webkit-margin-start:0 !important;margin-inline-start:0 !important}.me-md-0{-webkit-margin-end:0 !important;margin-inline-end:0 !important}.mx-md-0{margin-left:0 !important;margin-right:0 !important}.my-md-0{margin-top:0 !important;margin-bottom:0 !important}.p-md-0{padding:0 !important}.pt-md-0{padding-top:0 !important}.pb-md-0{padding-bottom:0 !important}.pl-md-0{padding-left:0 !important}.pr-md-0{padding-right:0 !important}.ps-md-0{-webkit-padding-start:0 !important;padding-inline-start:0 !important}.pe-md-0{-webkit-padding-end:0 !important;padding-inline-end:0 !important}.px-md-0{padding-left:0 !important;padding-right:0 !important}.py-md-0{padding-top:0 !important;padding-bottom:0 !important}.m-md-1{margin:.25rem !important}.mt-md-1{margin-top:.25rem !important}.mb-md-1{margin-bottom:.25rem !important}.ml-md-1{margin-left:.25rem !important}.mr-md-1{margin-right:.25rem !important}.ms-md-1{-webkit-margin-start:.25rem !important;margin-inline-start:.25rem !important}.me-md-1{-webkit-margin-end:.25rem !important;margin-inline-end:.25rem !important}.mx-md-1{margin-left:.25rem !important;margin-right:.25rem !important}.my-md-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.p-md-1{padding:.25rem !important}.pt-md-1{padding-top:.25rem !important}.pb-md-1{padding-bottom:.25rem !important}.pl-md-1{padding-left:.25rem !important}.pr-md-1{padding-right:.25rem !important}.ps-md-1{-webkit-padding-start:.25rem !important;padding-inline-start:.25rem !important}.pe-md-1{-webkit-padding-end:.25rem !important;padding-inline-end:.25rem !important}.px-md-1{padding-left:.25rem !important;padding-right:.25rem !important}.py-md-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.m-md-2{margin:.5rem !important}.mt-md-2{margin-top:.5rem !important}.mb-md-2{margin-bottom:.5rem !important}.ml-md-2{margin-left:.5rem !important}.mr-md-2{margin-right:.5rem !important}.ms-md-2{-webkit-margin-start:.5rem !important;margin-inline-start:.5rem !important}.me-md-2{-webkit-margin-end:.5rem !important;margin-inline-end:.5rem !important}.mx-md-2{margin-left:.5rem !important;margin-right:.5rem !important}.my-md-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.p-md-2{padding:.5rem !important}.pt-md-2{padding-top:.5rem !important}.pb-md-2{padding-bottom:.5rem !important}.pl-md-2{padding-left:.5rem !important}.pr-md-2{padding-right:.5rem !important}.ps-md-2{-webkit-padding-start:.5rem !important;padding-inline-start:.5rem !important}.pe-md-2{-webkit-padding-end:.5rem !important;padding-inline-end:.5rem !important}.px-md-2{padding-left:.5rem !important;padding-right:.5rem !important}.py-md-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.m-md-3{margin:1rem !important}.mt-md-3{margin-top:1rem !important}.mb-md-3{margin-bottom:1rem !important}.ml-md-3{margin-left:1rem !important}.mr-md-3{margin-right:1rem !important}.ms-md-3{-webkit-margin-start:1rem !important;margin-inline-start:1rem !important}.me-md-3{-webkit-margin-end:1rem !important;margin-inline-end:1rem !important}.mx-md-3{margin-left:1rem !important;margin-right:1rem !important}.my-md-3{margin-top:1rem !important;margin-bottom:1rem !important}.p-md-3{padding:1rem !important}.pt-md-3{padding-top:1rem !important}.pb-md-3{padding-bottom:1rem !important}.pl-md-3{padding-left:1rem !important}.pr-md-3{padding-right:1rem !important}.ps-md-3{-webkit-padding-start:1rem !important;padding-inline-start:1rem !important}.pe-md-3{-webkit-padding-end:1rem !important;padding-inline-end:1rem !important}.px-md-3{padding-left:1rem !important;padding-right:1rem !important}.py-md-3{padding-top:1rem !important;padding-bottom:1rem !important}.m-md-4{margin:1.5rem !important}.mt-md-4{margin-top:1.5rem !important}.mb-md-4{margin-bottom:1.5rem !important}.ml-md-4{margin-left:1.5rem !important}.mr-md-4{margin-right:1.5rem !important}.ms-md-4{-webkit-margin-start:1.5rem !important;margin-inline-start:1.5rem !important}.me-md-4{-webkit-margin-end:1.5rem !important;margin-inline-end:1.5rem !important}.mx-md-4{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-md-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.p-md-4{padding:1.5rem !important}.pt-md-4{padding-top:1.5rem !important}.pb-md-4{padding-bottom:1.5rem !important}.pl-md-4{padding-left:1.5rem !important}.pr-md-4{padding-right:1.5rem !important}.ps-md-4{-webkit-padding-start:1.5rem !important;padding-inline-start:1.5rem !important}.pe-md-4{-webkit-padding-end:1.5rem !important;padding-inline-end:1.5rem !important}.px-md-4{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-md-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.m-md-5{margin:3rem !important}.mt-md-5{margin-top:3rem !important}.mb-md-5{margin-bottom:3rem !important}.ml-md-5{margin-left:3rem !important}.mr-md-5{margin-right:3rem !important}.ms-md-5{-webkit-margin-start:3rem !important;margin-inline-start:3rem !important}.me-md-5{-webkit-margin-end:3rem !important;margin-inline-end:3rem !important}.mx-md-5{margin-left:3rem !important;margin-right:3rem !important}.my-md-5{margin-top:3rem !important;margin-bottom:3rem !important}.p-md-5{padding:3rem !important}.pt-md-5{padding-top:3rem !important}.pb-md-5{padding-bottom:3rem !important}.pl-md-5{padding-left:3rem !important}.pr-md-5{padding-right:3rem !important}.ps-md-5{-webkit-padding-start:3rem !important;padding-inline-start:3rem !important}.pe-md-5{-webkit-padding-end:3rem !important;padding-inline-end:3rem !important}.px-md-5{padding-left:3rem !important;padding-right:3rem !important}.py-md-5{padding-top:3rem !important;padding-bottom:3rem !important}.m-md-6{margin:4rem !important}.mt-md-6{margin-top:4rem !important}.mb-md-6{margin-bottom:4rem !important}.ml-md-6{margin-left:4rem !important}.mr-md-6{margin-right:4rem !important}.ms-md-6{-webkit-margin-start:4rem !important;margin-inline-start:4rem !important}.me-md-6{-webkit-margin-end:4rem !important;margin-inline-end:4rem !important}.mx-md-6{margin-left:4rem !important;margin-right:4rem !important}.my-md-6{margin-top:4rem !important;margin-bottom:4rem !important}.p-md-6{padding:4rem !important}.pt-md-6{padding-top:4rem !important}.pb-md-6{padding-bottom:4rem !important}.pl-md-6{padding-left:4rem !important}.pr-md-6{padding-right:4rem !important}.ps-md-6{-webkit-padding-start:4rem !important;padding-inline-start:4rem !important}.pe-md-6{-webkit-padding-end:4rem !important;padding-inline-end:4rem !important}.px-md-6{padding-left:4rem !important;padding-right:4rem !important}.py-md-6{padding-top:4rem !important;padding-bottom:4rem !important}.m-md-7{margin:5rem !important}.mt-md-7{margin-top:5rem !important}.mb-md-7{margin-bottom:5rem !important}.ml-md-7{margin-left:5rem !important}.mr-md-7{margin-right:5rem !important}.ms-md-7{-webkit-margin-start:5rem !important;margin-inline-start:5rem !important}.me-md-7{-webkit-margin-end:5rem !important;margin-inline-end:5rem !important}.mx-md-7{margin-left:5rem !important;margin-right:5rem !important}.my-md-7{margin-top:5rem !important;margin-bottom:5rem !important}.p-md-7{padding:5rem !important}.pt-md-7{padding-top:5rem !important}.pb-md-7{padding-bottom:5rem !important}.pl-md-7{padding-left:5rem !important}.pr-md-7{padding-right:5rem !important}.ps-md-7{-webkit-padding-start:5rem !important;padding-inline-start:5rem !important}.pe-md-7{-webkit-padding-end:5rem !important;padding-inline-end:5rem !important}.px-md-7{padding-left:5rem !important;padding-right:5rem !important}.py-md-7{padding-top:5rem !important;padding-bottom:5rem !important}.m-md-8{margin:6rem !important}.mt-md-8{margin-top:6rem !important}.mb-md-8{margin-bottom:6rem !important}.ml-md-8{margin-left:6rem !important}.mr-md-8{margin-right:6rem !important}.ms-md-8{-webkit-margin-start:6rem !important;margin-inline-start:6rem !important}.me-md-8{-webkit-margin-end:6rem !important;margin-inline-end:6rem !important}.mx-md-8{margin-left:6rem !important;margin-right:6rem !important}.my-md-8{margin-top:6rem !important;margin-bottom:6rem !important}.p-md-8{padding:6rem !important}.pt-md-8{padding-top:6rem !important}.pb-md-8{padding-bottom:6rem !important}.pl-md-8{padding-left:6rem !important}.pr-md-8{padding-right:6rem !important}.ps-md-8{-webkit-padding-start:6rem !important;padding-inline-start:6rem !important}.pe-md-8{-webkit-padding-end:6rem !important;padding-inline-end:6rem !important}.px-md-8{padding-left:6rem !important;padding-right:6rem !important}.py-md-8{padding-top:6rem !important;padding-bottom:6rem !important}.m-md-9{margin:7.5rem !important}.mt-md-9{margin-top:7.5rem !important}.mb-md-9{margin-bottom:7.5rem !important}.ml-md-9{margin-left:7.5rem !important}.mr-md-9{margin-right:7.5rem !important}.ms-md-9{-webkit-margin-start:7.5rem !important;margin-inline-start:7.5rem !important}.me-md-9{-webkit-margin-end:7.5rem !important;margin-inline-end:7.5rem !important}.mx-md-9{margin-left:7.5rem !important;margin-right:7.5rem !important}.my-md-9{margin-top:7.5rem !important;margin-bottom:7.5rem !important}.p-md-9{padding:7.5rem !important}.pt-md-9{padding-top:7.5rem !important}.pb-md-9{padding-bottom:7.5rem !important}.pl-md-9{padding-left:7.5rem !important}.pr-md-9{padding-right:7.5rem !important}.ps-md-9{-webkit-padding-start:7.5rem !important;padding-inline-start:7.5rem !important}.pe-md-9{-webkit-padding-end:7.5rem !important;padding-inline-end:7.5rem !important}.px-md-9{padding-left:7.5rem !important;padding-right:7.5rem !important}.py-md-9{padding-top:7.5rem !important;padding-bottom:7.5rem !important}.m-md-10{margin:9rem !important}.mt-md-10{margin-top:9rem !important}.mb-md-10{margin-bottom:9rem !important}.ml-md-10{margin-left:9rem !important}.mr-md-10{margin-right:9rem !important}.ms-md-10{-webkit-margin-start:9rem !important;margin-inline-start:9rem !important}.me-md-10{-webkit-margin-end:9rem !important;margin-inline-end:9rem !important}.mx-md-10{margin-left:9rem !important;margin-right:9rem !important}.my-md-10{margin-top:9rem !important;margin-bottom:9rem !important}.p-md-10{padding:9rem !important}.pt-md-10{padding-top:9rem !important}.pb-md-10{padding-bottom:9rem !important}.pl-md-10{padding-left:9rem !important}.pr-md-10{padding-right:9rem !important}.ps-md-10{-webkit-padding-start:9rem !important;padding-inline-start:9rem !important}.pe-md-10{-webkit-padding-end:9rem !important;padding-inline-end:9rem !important}.px-md-10{padding-left:9rem !important;padding-right:9rem !important}.py-md-10{padding-top:9rem !important;padding-bottom:9rem !important}.m-md-auto{margin:auto !important}.ml-md-auto{margin-left:auto !important}.mr-md-auto{margin-right:auto !important}.ms-md-auto{-webkit-margin-start:auto !important;margin-inline-start:auto !important}.me-md-auto{-webkit-margin-end:auto !important;margin-inline-end:auto !important}.mx-md-auto{margin-left:auto !important;margin-right:auto !important}.my-md-auto{margin-top:auto !important;margin-bottom:auto !important}}@media(min-width: 1024px){.m-lg-0{margin:0 !important}.mt-lg-0{margin-top:0 !important}.mb-lg-0{margin-bottom:0 !important}.ml-lg-0{margin-left:0 !important}.mr-lg-0{margin-right:0 !important}.ms-lg-0{-webkit-margin-start:0 !important;margin-inline-start:0 !important}.me-lg-0{-webkit-margin-end:0 !important;margin-inline-end:0 !important}.mx-lg-0{margin-left:0 !important;margin-right:0 !important}.my-lg-0{margin-top:0 !important;margin-bottom:0 !important}.p-lg-0{padding:0 !important}.pt-lg-0{padding-top:0 !important}.pb-lg-0{padding-bottom:0 !important}.pl-lg-0{padding-left:0 !important}.pr-lg-0{padding-right:0 !important}.ps-lg-0{-webkit-padding-start:0 !important;padding-inline-start:0 !important}.pe-lg-0{-webkit-padding-end:0 !important;padding-inline-end:0 !important}.px-lg-0{padding-left:0 !important;padding-right:0 !important}.py-lg-0{padding-top:0 !important;padding-bottom:0 !important}.m-lg-1{margin:.25rem !important}.mt-lg-1{margin-top:.25rem !important}.mb-lg-1{margin-bottom:.25rem !important}.ml-lg-1{margin-left:.25rem !important}.mr-lg-1{margin-right:.25rem !important}.ms-lg-1{-webkit-margin-start:.25rem !important;margin-inline-start:.25rem !important}.me-lg-1{-webkit-margin-end:.25rem !important;margin-inline-end:.25rem !important}.mx-lg-1{margin-left:.25rem !important;margin-right:.25rem !important}.my-lg-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.p-lg-1{padding:.25rem !important}.pt-lg-1{padding-top:.25rem !important}.pb-lg-1{padding-bottom:.25rem !important}.pl-lg-1{padding-left:.25rem !important}.pr-lg-1{padding-right:.25rem !important}.ps-lg-1{-webkit-padding-start:.25rem !important;padding-inline-start:.25rem !important}.pe-lg-1{-webkit-padding-end:.25rem !important;padding-inline-end:.25rem !important}.px-lg-1{padding-left:.25rem !important;padding-right:.25rem !important}.py-lg-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.m-lg-2{margin:.5rem !important}.mt-lg-2{margin-top:.5rem !important}.mb-lg-2{margin-bottom:.5rem !important}.ml-lg-2{margin-left:.5rem !important}.mr-lg-2{margin-right:.5rem !important}.ms-lg-2{-webkit-margin-start:.5rem !important;margin-inline-start:.5rem !important}.me-lg-2{-webkit-margin-end:.5rem !important;margin-inline-end:.5rem !important}.mx-lg-2{margin-left:.5rem !important;margin-right:.5rem !important}.my-lg-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.p-lg-2{padding:.5rem !important}.pt-lg-2{padding-top:.5rem !important}.pb-lg-2{padding-bottom:.5rem !important}.pl-lg-2{padding-left:.5rem !important}.pr-lg-2{padding-right:.5rem !important}.ps-lg-2{-webkit-padding-start:.5rem !important;padding-inline-start:.5rem !important}.pe-lg-2{-webkit-padding-end:.5rem !important;padding-inline-end:.5rem !important}.px-lg-2{padding-left:.5rem !important;padding-right:.5rem !important}.py-lg-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.m-lg-3{margin:1rem !important}.mt-lg-3{margin-top:1rem !important}.mb-lg-3{margin-bottom:1rem !important}.ml-lg-3{margin-left:1rem !important}.mr-lg-3{margin-right:1rem !important}.ms-lg-3{-webkit-margin-start:1rem !important;margin-inline-start:1rem !important}.me-lg-3{-webkit-margin-end:1rem !important;margin-inline-end:1rem !important}.mx-lg-3{margin-left:1rem !important;margin-right:1rem !important}.my-lg-3{margin-top:1rem !important;margin-bottom:1rem !important}.p-lg-3{padding:1rem !important}.pt-lg-3{padding-top:1rem !important}.pb-lg-3{padding-bottom:1rem !important}.pl-lg-3{padding-left:1rem !important}.pr-lg-3{padding-right:1rem !important}.ps-lg-3{-webkit-padding-start:1rem !important;padding-inline-start:1rem !important}.pe-lg-3{-webkit-padding-end:1rem !important;padding-inline-end:1rem !important}.px-lg-3{padding-left:1rem !important;padding-right:1rem !important}.py-lg-3{padding-top:1rem !important;padding-bottom:1rem !important}.m-lg-4{margin:1.5rem !important}.mt-lg-4{margin-top:1.5rem !important}.mb-lg-4{margin-bottom:1.5rem !important}.ml-lg-4{margin-left:1.5rem !important}.mr-lg-4{margin-right:1.5rem !important}.ms-lg-4{-webkit-margin-start:1.5rem !important;margin-inline-start:1.5rem !important}.me-lg-4{-webkit-margin-end:1.5rem !important;margin-inline-end:1.5rem !important}.mx-lg-4{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-lg-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.p-lg-4{padding:1.5rem !important}.pt-lg-4{padding-top:1.5rem !important}.pb-lg-4{padding-bottom:1.5rem !important}.pl-lg-4{padding-left:1.5rem !important}.pr-lg-4{padding-right:1.5rem !important}.ps-lg-4{-webkit-padding-start:1.5rem !important;padding-inline-start:1.5rem !important}.pe-lg-4{-webkit-padding-end:1.5rem !important;padding-inline-end:1.5rem !important}.px-lg-4{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-lg-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.m-lg-5{margin:3rem !important}.mt-lg-5{margin-top:3rem !important}.mb-lg-5{margin-bottom:3rem !important}.ml-lg-5{margin-left:3rem !important}.mr-lg-5{margin-right:3rem !important}.ms-lg-5{-webkit-margin-start:3rem !important;margin-inline-start:3rem !important}.me-lg-5{-webkit-margin-end:3rem !important;margin-inline-end:3rem !important}.mx-lg-5{margin-left:3rem !important;margin-right:3rem !important}.my-lg-5{margin-top:3rem !important;margin-bottom:3rem !important}.p-lg-5{padding:3rem !important}.pt-lg-5{padding-top:3rem !important}.pb-lg-5{padding-bottom:3rem !important}.pl-lg-5{padding-left:3rem !important}.pr-lg-5{padding-right:3rem !important}.ps-lg-5{-webkit-padding-start:3rem !important;padding-inline-start:3rem !important}.pe-lg-5{-webkit-padding-end:3rem !important;padding-inline-end:3rem !important}.px-lg-5{padding-left:3rem !important;padding-right:3rem !important}.py-lg-5{padding-top:3rem !important;padding-bottom:3rem !important}.m-lg-6{margin:4rem !important}.mt-lg-6{margin-top:4rem !important}.mb-lg-6{margin-bottom:4rem !important}.ml-lg-6{margin-left:4rem !important}.mr-lg-6{margin-right:4rem !important}.ms-lg-6{-webkit-margin-start:4rem !important;margin-inline-start:4rem !important}.me-lg-6{-webkit-margin-end:4rem !important;margin-inline-end:4rem !important}.mx-lg-6{margin-left:4rem !important;margin-right:4rem !important}.my-lg-6{margin-top:4rem !important;margin-bottom:4rem !important}.p-lg-6{padding:4rem !important}.pt-lg-6{padding-top:4rem !important}.pb-lg-6{padding-bottom:4rem !important}.pl-lg-6{padding-left:4rem !important}.pr-lg-6{padding-right:4rem !important}.ps-lg-6{-webkit-padding-start:4rem !important;padding-inline-start:4rem !important}.pe-lg-6{-webkit-padding-end:4rem !important;padding-inline-end:4rem !important}.px-lg-6{padding-left:4rem !important;padding-right:4rem !important}.py-lg-6{padding-top:4rem !important;padding-bottom:4rem !important}.m-lg-7{margin:5rem !important}.mt-lg-7{margin-top:5rem !important}.mb-lg-7{margin-bottom:5rem !important}.ml-lg-7{margin-left:5rem !important}.mr-lg-7{margin-right:5rem !important}.ms-lg-7{-webkit-margin-start:5rem !important;margin-inline-start:5rem !important}.me-lg-7{-webkit-margin-end:5rem !important;margin-inline-end:5rem !important}.mx-lg-7{margin-left:5rem !important;margin-right:5rem !important}.my-lg-7{margin-top:5rem !important;margin-bottom:5rem !important}.p-lg-7{padding:5rem !important}.pt-lg-7{padding-top:5rem !important}.pb-lg-7{padding-bottom:5rem !important}.pl-lg-7{padding-left:5rem !important}.pr-lg-7{padding-right:5rem !important}.ps-lg-7{-webkit-padding-start:5rem !important;padding-inline-start:5rem !important}.pe-lg-7{-webkit-padding-end:5rem !important;padding-inline-end:5rem !important}.px-lg-7{padding-left:5rem !important;padding-right:5rem !important}.py-lg-7{padding-top:5rem !important;padding-bottom:5rem !important}.m-lg-8{margin:6rem !important}.mt-lg-8{margin-top:6rem !important}.mb-lg-8{margin-bottom:6rem !important}.ml-lg-8{margin-left:6rem !important}.mr-lg-8{margin-right:6rem !important}.ms-lg-8{-webkit-margin-start:6rem !important;margin-inline-start:6rem !important}.me-lg-8{-webkit-margin-end:6rem !important;margin-inline-end:6rem !important}.mx-lg-8{margin-left:6rem !important;margin-right:6rem !important}.my-lg-8{margin-top:6rem !important;margin-bottom:6rem !important}.p-lg-8{padding:6rem !important}.pt-lg-8{padding-top:6rem !important}.pb-lg-8{padding-bottom:6rem !important}.pl-lg-8{padding-left:6rem !important}.pr-lg-8{padding-right:6rem !important}.ps-lg-8{-webkit-padding-start:6rem !important;padding-inline-start:6rem !important}.pe-lg-8{-webkit-padding-end:6rem !important;padding-inline-end:6rem !important}.px-lg-8{padding-left:6rem !important;padding-right:6rem !important}.py-lg-8{padding-top:6rem !important;padding-bottom:6rem !important}.m-lg-9{margin:7.5rem !important}.mt-lg-9{margin-top:7.5rem !important}.mb-lg-9{margin-bottom:7.5rem !important}.ml-lg-9{margin-left:7.5rem !important}.mr-lg-9{margin-right:7.5rem !important}.ms-lg-9{-webkit-margin-start:7.5rem !important;margin-inline-start:7.5rem !important}.me-lg-9{-webkit-margin-end:7.5rem !important;margin-inline-end:7.5rem !important}.mx-lg-9{margin-left:7.5rem !important;margin-right:7.5rem !important}.my-lg-9{margin-top:7.5rem !important;margin-bottom:7.5rem !important}.p-lg-9{padding:7.5rem !important}.pt-lg-9{padding-top:7.5rem !important}.pb-lg-9{padding-bottom:7.5rem !important}.pl-lg-9{padding-left:7.5rem !important}.pr-lg-9{padding-right:7.5rem !important}.ps-lg-9{-webkit-padding-start:7.5rem !important;padding-inline-start:7.5rem !important}.pe-lg-9{-webkit-padding-end:7.5rem !important;padding-inline-end:7.5rem !important}.px-lg-9{padding-left:7.5rem !important;padding-right:7.5rem !important}.py-lg-9{padding-top:7.5rem !important;padding-bottom:7.5rem !important}.m-lg-10{margin:9rem !important}.mt-lg-10{margin-top:9rem !important}.mb-lg-10{margin-bottom:9rem !important}.ml-lg-10{margin-left:9rem !important}.mr-lg-10{margin-right:9rem !important}.ms-lg-10{-webkit-margin-start:9rem !important;margin-inline-start:9rem !important}.me-lg-10{-webkit-margin-end:9rem !important;margin-inline-end:9rem !important}.mx-lg-10{margin-left:9rem !important;margin-right:9rem !important}.my-lg-10{margin-top:9rem !important;margin-bottom:9rem !important}.p-lg-10{padding:9rem !important}.pt-lg-10{padding-top:9rem !important}.pb-lg-10{padding-bottom:9rem !important}.pl-lg-10{padding-left:9rem !important}.pr-lg-10{padding-right:9rem !important}.ps-lg-10{-webkit-padding-start:9rem !important;padding-inline-start:9rem !important}.pe-lg-10{-webkit-padding-end:9rem !important;padding-inline-end:9rem !important}.px-lg-10{padding-left:9rem !important;padding-right:9rem !important}.py-lg-10{padding-top:9rem !important;padding-bottom:9rem !important}.m-lg-auto{margin:auto !important}.ml-lg-auto{margin-left:auto !important}.mr-lg-auto{margin-right:auto !important}.ms-lg-auto{-webkit-margin-start:auto !important;margin-inline-start:auto !important}.me-lg-auto{-webkit-margin-end:auto !important;margin-inline-end:auto !important}.mx-lg-auto{margin-left:auto !important;margin-right:auto !important}.my-lg-auto{margin-top:auto !important;margin-bottom:auto !important}}@media(min-width: 1280px){.m-xl-0{margin:0 !important}.mt-xl-0{margin-top:0 !important}.mb-xl-0{margin-bottom:0 !important}.ml-xl-0{margin-left:0 !important}.mr-xl-0{margin-right:0 !important}.ms-xl-0{-webkit-margin-start:0 !important;margin-inline-start:0 !important}.me-xl-0{-webkit-margin-end:0 !important;margin-inline-end:0 !important}.mx-xl-0{margin-left:0 !important;margin-right:0 !important}.my-xl-0{margin-top:0 !important;margin-bottom:0 !important}.p-xl-0{padding:0 !important}.pt-xl-0{padding-top:0 !important}.pb-xl-0{padding-bottom:0 !important}.pl-xl-0{padding-left:0 !important}.pr-xl-0{padding-right:0 !important}.ps-xl-0{-webkit-padding-start:0 !important;padding-inline-start:0 !important}.pe-xl-0{-webkit-padding-end:0 !important;padding-inline-end:0 !important}.px-xl-0{padding-left:0 !important;padding-right:0 !important}.py-xl-0{padding-top:0 !important;padding-bottom:0 !important}.m-xl-1{margin:.25rem !important}.mt-xl-1{margin-top:.25rem !important}.mb-xl-1{margin-bottom:.25rem !important}.ml-xl-1{margin-left:.25rem !important}.mr-xl-1{margin-right:.25rem !important}.ms-xl-1{-webkit-margin-start:.25rem !important;margin-inline-start:.25rem !important}.me-xl-1{-webkit-margin-end:.25rem !important;margin-inline-end:.25rem !important}.mx-xl-1{margin-left:.25rem !important;margin-right:.25rem !important}.my-xl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.p-xl-1{padding:.25rem !important}.pt-xl-1{padding-top:.25rem !important}.pb-xl-1{padding-bottom:.25rem !important}.pl-xl-1{padding-left:.25rem !important}.pr-xl-1{padding-right:.25rem !important}.ps-xl-1{-webkit-padding-start:.25rem !important;padding-inline-start:.25rem !important}.pe-xl-1{-webkit-padding-end:.25rem !important;padding-inline-end:.25rem !important}.px-xl-1{padding-left:.25rem !important;padding-right:.25rem !important}.py-xl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.m-xl-2{margin:.5rem !important}.mt-xl-2{margin-top:.5rem !important}.mb-xl-2{margin-bottom:.5rem !important}.ml-xl-2{margin-left:.5rem !important}.mr-xl-2{margin-right:.5rem !important}.ms-xl-2{-webkit-margin-start:.5rem !important;margin-inline-start:.5rem !important}.me-xl-2{-webkit-margin-end:.5rem !important;margin-inline-end:.5rem !important}.mx-xl-2{margin-left:.5rem !important;margin-right:.5rem !important}.my-xl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.p-xl-2{padding:.5rem !important}.pt-xl-2{padding-top:.5rem !important}.pb-xl-2{padding-bottom:.5rem !important}.pl-xl-2{padding-left:.5rem !important}.pr-xl-2{padding-right:.5rem !important}.ps-xl-2{-webkit-padding-start:.5rem !important;padding-inline-start:.5rem !important}.pe-xl-2{-webkit-padding-end:.5rem !important;padding-inline-end:.5rem !important}.px-xl-2{padding-left:.5rem !important;padding-right:.5rem !important}.py-xl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.m-xl-3{margin:1rem !important}.mt-xl-3{margin-top:1rem !important}.mb-xl-3{margin-bottom:1rem !important}.ml-xl-3{margin-left:1rem !important}.mr-xl-3{margin-right:1rem !important}.ms-xl-3{-webkit-margin-start:1rem !important;margin-inline-start:1rem !important}.me-xl-3{-webkit-margin-end:1rem !important;margin-inline-end:1rem !important}.mx-xl-3{margin-left:1rem !important;margin-right:1rem !important}.my-xl-3{margin-top:1rem !important;margin-bottom:1rem !important}.p-xl-3{padding:1rem !important}.pt-xl-3{padding-top:1rem !important}.pb-xl-3{padding-bottom:1rem !important}.pl-xl-3{padding-left:1rem !important}.pr-xl-3{padding-right:1rem !important}.ps-xl-3{-webkit-padding-start:1rem !important;padding-inline-start:1rem !important}.pe-xl-3{-webkit-padding-end:1rem !important;padding-inline-end:1rem !important}.px-xl-3{padding-left:1rem !important;padding-right:1rem !important}.py-xl-3{padding-top:1rem !important;padding-bottom:1rem !important}.m-xl-4{margin:1.5rem !important}.mt-xl-4{margin-top:1.5rem !important}.mb-xl-4{margin-bottom:1.5rem !important}.ml-xl-4{margin-left:1.5rem !important}.mr-xl-4{margin-right:1.5rem !important}.ms-xl-4{-webkit-margin-start:1.5rem !important;margin-inline-start:1.5rem !important}.me-xl-4{-webkit-margin-end:1.5rem !important;margin-inline-end:1.5rem !important}.mx-xl-4{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-xl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.p-xl-4{padding:1.5rem !important}.pt-xl-4{padding-top:1.5rem !important}.pb-xl-4{padding-bottom:1.5rem !important}.pl-xl-4{padding-left:1.5rem !important}.pr-xl-4{padding-right:1.5rem !important}.ps-xl-4{-webkit-padding-start:1.5rem !important;padding-inline-start:1.5rem !important}.pe-xl-4{-webkit-padding-end:1.5rem !important;padding-inline-end:1.5rem !important}.px-xl-4{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-xl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.m-xl-5{margin:3rem !important}.mt-xl-5{margin-top:3rem !important}.mb-xl-5{margin-bottom:3rem !important}.ml-xl-5{margin-left:3rem !important}.mr-xl-5{margin-right:3rem !important}.ms-xl-5{-webkit-margin-start:3rem !important;margin-inline-start:3rem !important}.me-xl-5{-webkit-margin-end:3rem !important;margin-inline-end:3rem !important}.mx-xl-5{margin-left:3rem !important;margin-right:3rem !important}.my-xl-5{margin-top:3rem !important;margin-bottom:3rem !important}.p-xl-5{padding:3rem !important}.pt-xl-5{padding-top:3rem !important}.pb-xl-5{padding-bottom:3rem !important}.pl-xl-5{padding-left:3rem !important}.pr-xl-5{padding-right:3rem !important}.ps-xl-5{-webkit-padding-start:3rem !important;padding-inline-start:3rem !important}.pe-xl-5{-webkit-padding-end:3rem !important;padding-inline-end:3rem !important}.px-xl-5{padding-left:3rem !important;padding-right:3rem !important}.py-xl-5{padding-top:3rem !important;padding-bottom:3rem !important}.m-xl-6{margin:4rem !important}.mt-xl-6{margin-top:4rem !important}.mb-xl-6{margin-bottom:4rem !important}.ml-xl-6{margin-left:4rem !important}.mr-xl-6{margin-right:4rem !important}.ms-xl-6{-webkit-margin-start:4rem !important;margin-inline-start:4rem !important}.me-xl-6{-webkit-margin-end:4rem !important;margin-inline-end:4rem !important}.mx-xl-6{margin-left:4rem !important;margin-right:4rem !important}.my-xl-6{margin-top:4rem !important;margin-bottom:4rem !important}.p-xl-6{padding:4rem !important}.pt-xl-6{padding-top:4rem !important}.pb-xl-6{padding-bottom:4rem !important}.pl-xl-6{padding-left:4rem !important}.pr-xl-6{padding-right:4rem !important}.ps-xl-6{-webkit-padding-start:4rem !important;padding-inline-start:4rem !important}.pe-xl-6{-webkit-padding-end:4rem !important;padding-inline-end:4rem !important}.px-xl-6{padding-left:4rem !important;padding-right:4rem !important}.py-xl-6{padding-top:4rem !important;padding-bottom:4rem !important}.m-xl-7{margin:5rem !important}.mt-xl-7{margin-top:5rem !important}.mb-xl-7{margin-bottom:5rem !important}.ml-xl-7{margin-left:5rem !important}.mr-xl-7{margin-right:5rem !important}.ms-xl-7{-webkit-margin-start:5rem !important;margin-inline-start:5rem !important}.me-xl-7{-webkit-margin-end:5rem !important;margin-inline-end:5rem !important}.mx-xl-7{margin-left:5rem !important;margin-right:5rem !important}.my-xl-7{margin-top:5rem !important;margin-bottom:5rem !important}.p-xl-7{padding:5rem !important}.pt-xl-7{padding-top:5rem !important}.pb-xl-7{padding-bottom:5rem !important}.pl-xl-7{padding-left:5rem !important}.pr-xl-7{padding-right:5rem !important}.ps-xl-7{-webkit-padding-start:5rem !important;padding-inline-start:5rem !important}.pe-xl-7{-webkit-padding-end:5rem !important;padding-inline-end:5rem !important}.px-xl-7{padding-left:5rem !important;padding-right:5rem !important}.py-xl-7{padding-top:5rem !important;padding-bottom:5rem !important}.m-xl-8{margin:6rem !important}.mt-xl-8{margin-top:6rem !important}.mb-xl-8{margin-bottom:6rem !important}.ml-xl-8{margin-left:6rem !important}.mr-xl-8{margin-right:6rem !important}.ms-xl-8{-webkit-margin-start:6rem !important;margin-inline-start:6rem !important}.me-xl-8{-webkit-margin-end:6rem !important;margin-inline-end:6rem !important}.mx-xl-8{margin-left:6rem !important;margin-right:6rem !important}.my-xl-8{margin-top:6rem !important;margin-bottom:6rem !important}.p-xl-8{padding:6rem !important}.pt-xl-8{padding-top:6rem !important}.pb-xl-8{padding-bottom:6rem !important}.pl-xl-8{padding-left:6rem !important}.pr-xl-8{padding-right:6rem !important}.ps-xl-8{-webkit-padding-start:6rem !important;padding-inline-start:6rem !important}.pe-xl-8{-webkit-padding-end:6rem !important;padding-inline-end:6rem !important}.px-xl-8{padding-left:6rem !important;padding-right:6rem !important}.py-xl-8{padding-top:6rem !important;padding-bottom:6rem !important}.m-xl-9{margin:7.5rem !important}.mt-xl-9{margin-top:7.5rem !important}.mb-xl-9{margin-bottom:7.5rem !important}.ml-xl-9{margin-left:7.5rem !important}.mr-xl-9{margin-right:7.5rem !important}.ms-xl-9{-webkit-margin-start:7.5rem !important;margin-inline-start:7.5rem !important}.me-xl-9{-webkit-margin-end:7.5rem !important;margin-inline-end:7.5rem !important}.mx-xl-9{margin-left:7.5rem !important;margin-right:7.5rem !important}.my-xl-9{margin-top:7.5rem !important;margin-bottom:7.5rem !important}.p-xl-9{padding:7.5rem !important}.pt-xl-9{padding-top:7.5rem !important}.pb-xl-9{padding-bottom:7.5rem !important}.pl-xl-9{padding-left:7.5rem !important}.pr-xl-9{padding-right:7.5rem !important}.ps-xl-9{-webkit-padding-start:7.5rem !important;padding-inline-start:7.5rem !important}.pe-xl-9{-webkit-padding-end:7.5rem !important;padding-inline-end:7.5rem !important}.px-xl-9{padding-left:7.5rem !important;padding-right:7.5rem !important}.py-xl-9{padding-top:7.5rem !important;padding-bottom:7.5rem !important}.m-xl-10{margin:9rem !important}.mt-xl-10{margin-top:9rem !important}.mb-xl-10{margin-bottom:9rem !important}.ml-xl-10{margin-left:9rem !important}.mr-xl-10{margin-right:9rem !important}.ms-xl-10{-webkit-margin-start:9rem !important;margin-inline-start:9rem !important}.me-xl-10{-webkit-margin-end:9rem !important;margin-inline-end:9rem !important}.mx-xl-10{margin-left:9rem !important;margin-right:9rem !important}.my-xl-10{margin-top:9rem !important;margin-bottom:9rem !important}.p-xl-10{padding:9rem !important}.pt-xl-10{padding-top:9rem !important}.pb-xl-10{padding-bottom:9rem !important}.pl-xl-10{padding-left:9rem !important}.pr-xl-10{padding-right:9rem !important}.ps-xl-10{-webkit-padding-start:9rem !important;padding-inline-start:9rem !important}.pe-xl-10{-webkit-padding-end:9rem !important;padding-inline-end:9rem !important}.px-xl-10{padding-left:9rem !important;padding-right:9rem !important}.py-xl-10{padding-top:9rem !important;padding-bottom:9rem !important}.m-xl-auto{margin:auto !important}.ml-xl-auto{margin-left:auto !important}.mr-xl-auto{margin-right:auto !important}.ms-xl-auto{-webkit-margin-start:auto !important;margin-inline-start:auto !important}.me-xl-auto{-webkit-margin-end:auto !important;margin-inline-end:auto !important}.mx-xl-auto{margin-left:auto !important;margin-right:auto !important}.my-xl-auto{margin-top:auto !important;margin-bottom:auto !important}}html{overflow-x:hidden}.d-none{display:none !important}.d-block{display:block !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-flex{display:-ms-flexbox !important;display:flex !important}.d-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}.d-grid{display:grid !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-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-1{-ms-flex:1 !important;flex:1 !important}.flex-auto{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-none{-ms-flex:none !important;flex:none !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-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-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}.gap-0{gap:0 !important}.gap-1{gap:.25rem !important}.gap-2{gap:.5rem !important}.gap-3{gap:1rem !important}.gap-4{gap:1.5rem !important}.gap-5{gap:3rem !important}.gap-6{gap:4rem !important}.gap-7{gap:5rem !important}.gap-8{gap:6rem !important}.gap-9{gap:7.5rem !important}.gap-10{gap:9rem !important}.text-left{text-align:left !important}.text-center{text-align:center !important}.text-right{text-align:right !important}.text-white{color:#fff !important}.text-black{color:#000 !important}.text-dark-blue{color:#071848 !important}.text-dark-blue-50{color:#838ba3 !important}.text-green{color:#52fd63 !important}.text-orange{color:#ff641b !important}.text-orange-50{color:#ffb18d !important}.text-light-blue{color:#00d6ff !important}.text-dark-green{color:#009b6b !important}.text-yellow{color:#ffd41e !important}.text-wine-red{color:#902456 !important}.text-purple{color:#d558f9 !important}.text-uppercase{text-transform:uppercase !important}.text-lowercase{text-transform:lowercase !important}.text-capitalize{text-transform:capitalize !important}.font-normal{font-weight:400 !important}.font-bold{font-weight:700 !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.position-sticky{position:sticky !important}.overflow-hidden{overflow:hidden !important}.overflow-auto{overflow:auto !important}.w-100{width:100% !important}.w-auto{width:auto !important}.h-100{height:100% !important}.rounded-md{border-radius:8px !important}.shadow-sm{-webkit-box-shadow:0 2px 8px rgba(0,0,0,.04) !important;box-shadow:0 2px 8px rgba(0,0,0,.04) !important}.sr-only,.visually-hidden{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}.svg-sprite-container{position:absolute !important;width:0 !important;height:0 !important;overflow:hidden !important;pointer-events:none !important}.sr-only-focusable:not(:focus),.visually-hidden-focusable:not(:focus){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}[hidden]{display:none !important}a[href^="tel:"],a[href^="mailto:"]{text-decoration:underline}.btn,.hs-button{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;border-radius:40px;border:none;padding:.75rem 1.75rem;font-weight:700;font-size:.875rem;text-transform:uppercase;text-decoration:none;letter-spacing:.04em;cursor:pointer;-webkit-transition:opacity 200ms ease,-webkit-transform 100ms ease;transition:opacity 200ms ease,-webkit-transform 100ms ease;transition:opacity 200ms ease,transform 100ms ease;transition:opacity 200ms ease,transform 100ms ease,-webkit-transform 100ms ease;line-height:1.2;min-width:180px;max-width:-webkit-fit-content;max-width:-moz-fit-content;max-width:fit-content}@media(min-width: 1024px){.btn,.hs-button{font-size:1rem}}.btn:hover,.btn:focus-visible,.hs-button:hover,.hs-button:focus-visible{background-color:#ff641b;color:#fff}.btn:focus-visible,.hs-button:focus-visible{outline:none;-webkit-box-shadow:0 0 0 3px rgba(7,24,72,.15);box-shadow:0 0 0 3px rgba(7,24,72,.15)}.btn:active,.hs-button:active{-webkit-transform:scale(0.98);transform:scale(0.98)}.btn--black,.hs-button--black{background-color:#000;color:#fff}.btn--black:focus-visible,.hs-button--black:focus-visible{-webkit-box-shadow:0 0 0 3px rgba(255,100,27,.6);box-shadow:0 0 0 3px rgba(255,100,27,.6)}.btn--white,.btn-white,.hs-button--white,.hs-button-white{background-color:#fff;color:#071848}.btn--orange,.hs-button--orange{background-color:#ff641b;color:#000}.btn--orange-50,.hs-button--orange-50{background-color:#ffb18d;color:#000}.btn--green,.hs-button--green{background-color:#52fd63;color:#000}.btn--green-50,.hs-button--green-50{background-color:#a8feb1;color:#000}.btn svg,.hs-button svg{margin-left:.5rem;-webkit-transition:-webkit-transform 200ms ease;transition:-webkit-transform 200ms ease;transition:transform 200ms ease;transition:transform 200ms ease, -webkit-transform 200ms ease}.btn:not(input):not(:has(svg))::after,.hs-button:not(input):not(:has(svg))::after{content:"";display:inline-block;-ms-flex-negative:0;flex-shrink:0;width:12px;height:12px;margin-left:.5rem;background-color:currentColor;mask-image:url(/static/studio/pub/web/Branches/main/hashed/chevron-right.562b83d3.svg);mask-repeat:no-repeat;mask-size:contain;mask-position:center;-webkit-mask-image:url(/static/studio/pub/web/Branches/main/hashed/chevron-right.562b83d3.svg);-webkit-mask-repeat:no-repeat;-webkit-mask-size:contain;-webkit-mask-position:center}.btn[aria-expanded=true] svg,.hs-button[aria-expanded=true] svg{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.site-footer{background:#071848;color:#fff;position:relative;overflow:hidden;padding-top:50px;padding-bottom:50px}@media(min-width: 1280px){.site-footer{padding-top:130px;padding-bottom:115px}}.site-footer .footer__content{max-width:1600px;margin:0 auto;padding:2.5rem 1.5rem 1.5rem 1.5rem;position:relative;z-index:1}.site-footer .hero__icon-m{top:190px}.site-footer .footer__brand{margin-bottom:2rem}.site-footer .footer__brand .footer__logo{font-size:2rem;font-weight:700;letter-spacing:.08em;display:block;max-width:320px}.site-footer .footer__brand .footer__slogan{color:#52fd63;font-size:1.875rem;font-weight:700;margin-top:2rem;display:block}.site-footer .footer__columns{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:5rem;margin-bottom:2rem}.site-footer .footer__columns .footer__col a,.site-footer .footer__columns .footer__col p{color:#fff;line-height:1.5;position:relative;font-size:15px}@media(min-width: 1280px){.site-footer .footer__columns .footer__col a,.site-footer .footer__columns .footer__col p{font-size:1.25rem}}.site-footer .footer__columns .footer__col a{padding-right:1.5rem;text-decoration:none}.site-footer .footer__columns .footer__col a:not([href^=mailto])::after{content:"›";display:block;color:#fff;position:absolute;right:0;top:0;left:auto;-webkit-transition:width .3s ease;transition:width .3s ease;line-height:1.25}.site-footer .footer__columns .footer__col a:hover,.site-footer .footer__columns .footer__col a:focus-visible{color:#ff641b;text-decoration:underline;outline:none}.site-footer .footer__columns .footer__col a[href^=mailto]{text-decoration:underline}.site-footer .footer__columns .footer__col .footer__heading,.site-footer .footer__columns .footer__col .sub-heading{font-size:1rem;margin-bottom:1rem}@media(min-width: 1280px){.site-footer .footer__columns .footer__col .footer__heading,.site-footer .footer__columns .footer__col .sub-heading{margin-bottom:2rem;font-size:1.5rem}}.site-footer .footer__columns .footer__col .footer__heading,.site-footer .footer__columns .footer__col .sub-heading{color:#fff}.site-footer .footer__columns .footer__col ul,.site-footer .footer__columns .footer__col address{margin:0;padding:0;list-style:none}.site-footer .footer__columns .footer__col address{font-style:normal;line-height:1.6}.site-footer .footer__divider{height:2px;width:100%;background:-webkit-gradient(linear, left top, right top, from(rgba(82, 253, 99, 0)), to(rgb(82, 253, 99)));background:linear-gradient(90deg, rgba(82, 253, 99, 0) 0%, rgb(82, 253, 99) 100%);-webkit-transform:scaleX(-1);transform:scaleX(-1);margin:3rem 0 4rem 0}.site-footer .footer__bottom{font-size:.95rem;color:#fff}@media(max-width: 800px){.site-footer .hero__icon-m{display:none}.site-footer .footer__columns{-ms-flex-direction:row;flex-direction:row;gap:0rem}.site-footer .footer__columns>.footer__col{-ms-flex:1 1 45%;flex:1 1 45%}.site-footer .footer__columns>.footer__col:nth-child(4){-ms-flex-order:0;order:0;margin-bottom:2rem}.site-footer .footer__columns>.footer__col:nth-child(2){-ms-flex-order:1;order:1}.site-footer .footer__columns>.footer__col:nth-child(3){-ms-flex-order:2;order:2}}form{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;gap:1.5rem}form ul{padding-left:0}form fieldset{border:none;padding:0;margin:0;width:100%}form fieldset label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;font-size:.875rem;font-weight:400;margin-bottom:.25rem;color:#071848}form fieldset input{border-radius:10px}form fieldset.form-columns-1 .input{width:100%;padding-right:8px;margin-right:0}form fieldset.form-columns-1 .input input[type=email]{width:100%}form fieldset.form-columns-1 .input input[type=checkbox]{width:32px;height:32px}label{display:inline-block;font-size:.875rem;font-weight:700;margin-bottom:.25rem;color:#071848}input,textarea,select{display:block;width:100%;padding:.625rem .875rem;font-size:1rem;line-height:1.5;color:#071848;background-color:#fff;border:1px solid #ccc;border-radius:4px;-webkit-transition:border-color 150ms ease,-webkit-box-shadow 150ms ease;transition:border-color 150ms ease,-webkit-box-shadow 150ms ease;transition:border-color 150ms ease,box-shadow 150ms ease;transition:border-color 150ms ease,box-shadow 150ms ease,-webkit-box-shadow 150ms ease;-webkit-appearance:none;-moz-appearance:none;appearance:none}input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder{color:#838ba3;opacity:1}input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder{color:#838ba3;opacity:1}input:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder{color:#838ba3;opacity:1}input::-ms-input-placeholder, textarea::-ms-input-placeholder, select::-ms-input-placeholder{color:#838ba3;opacity:1}input::placeholder,textarea::placeholder,select::placeholder{color:#838ba3;opacity:1}input:focus,textarea:focus,select:focus{border-color:#071848;-webkit-box-shadow:0 0 0 3px rgba(7,24,72,.15);box-shadow:0 0 0 3px rgba(7,24,72,.15);outline:none}input:disabled,textarea:disabled,select:disabled{background-color:#f2f2f2;cursor:not-allowed;opacity:.6}input[type=checkbox]:checked,textarea[type=checkbox]:checked,select[type=checkbox]:checked{background-color:#009b6b;border-color:#52fd63;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10'%3E%3Cpath fill='%23fff' d='M4.1 7.2L1.4 4.5l-1.4 1.4L4.1 10l8.9-8.9-1.4-1.4z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:center;background-size:70% 70%}textarea{resize:vertical;min-height:6rem}select{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23071848' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right .875rem center;padding-right:2.5rem;cursor:pointer}fieldset{border:1px solid #ccc;border-radius:4px;padding:1rem 1.25rem}legend{font-size:.875rem;font-weight:700;padding:0 .5rem;color:#071848}input[type=checkbox],input[type=radio]{display:inline;width:auto;margin-right:.5rem;cursor:pointer}.form-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:.25rem;margin-bottom:1rem}.form-error{border-color:#902456 !important}.form-error:focus{-webkit-box-shadow:0 0 0 3px rgba(144,36,86,.2) !important;box-shadow:0 0 0 3px rgba(144,36,86,.2) !important}.form-error-message{font-size:.875rem;color:#902456}ul.no-list,ul.inputs-list{list-style:none}.hero{position:relative;width:100vw;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;min-height:560px;min-height:100vh}@media(min-width: 1280px){.hero{min-height:993px}}.hero{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;overflow:hidden;background-color:#000}.hero__bg{position:absolute;top:0;left:0;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;z-index:1}.hero__bg img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}.hero::after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background:-webkit-gradient(linear, left bottom, left top, from(#071848), color-stop(96.17%, rgba(7, 24, 72, 0)));background:linear-gradient(0deg, #071848 0%, rgba(7, 24, 72, 0) 96.17%);z-index:2}.hero__container{position:relative;z-index:3;width:100%;max-width:1024px;height:100%;padding:3rem 0;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-positive:1;flex-grow:1}@media(min-width: 1280px){.hero__container{padding:10rem 0}}@media(max-width: 1024px){.hero__container{padding:60px 20px}}.hero__content{-ms-flex-positive:1;flex-grow:1;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center}.hero__title{color:#52fd63;font-size:clamp(2.75rem,10vw,3.125rem);line-height:140px;text-transform:uppercase;margin:0 0 3.5rem 0;max-width:900px}@media(min-width: 768px){.hero__title{font-size:clamp(3.125rem,8vw,4.5rem)}}@media(min-width: 1280px){.hero__title{font-size:10rem}}@media(max-width: 374px){.hero__title{line-height:1.05;margin-bottom:1.5rem}}@media(max-width: 768px){.hero__title{line-height:1.1;margin-bottom:2rem;text-align:center}}.hero__cta{-ms-flex-item-align:start;align-self:flex-start;background-color:#fff;color:#000;padding:12px 30px;border-radius:50px;text-decoration:none;font-weight:700;letter-spacing:1px;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;-webkit-transition:-webkit-transform .2s ease;transition:-webkit-transform .2s ease;transition:transform .2s ease;transition:transform .2s ease, -webkit-transform .2s ease}@media(max-width: 768px){.hero__cta{-ms-flex-item-align:center;align-self:center}}.hero__features{display:grid;grid-template-columns:repeat(3, 1fr);grid-gap:2.5rem;gap:2.5rem;margin-top:auto;padding-bottom:20px}.hero__feature{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;gap:1.5rem}.hero__icon{-ms-flex-negative:0;flex-shrink:0;fill:#52fd63;width:5.625rem;height:5.625rem}.hero__text{color:#fff;line-height:1.4;margin:0}.hero__icon-m{position:absolute;top:0%;right:0;opacity:1;z-index:3;pointer-events:none;display:-ms-flexbox;display:flex;width:auto;height:1006px}@media(max-width: 768px){.hero__features{gap:20px}.hero__features .hero__feature{-ms-flex-direction:column;flex-direction:column;gap:12px}.hero__features .hero__feature img{width:52px;height:52px}.hero__icon-m{right:-25%;top:34px;height:400px;opacity:.3}}.subpage-hero{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;background:#071848;color:#fff;min-height:340px;position:relative;overflow:hidden;height:100%}.subpage-hero .cutted-m-green-small{position:absolute;right:0;overflow:hidden;display:none;height:500px;width:auto}@media(min-width: 1024px){.subpage-hero{-ms-flex-direction:row;flex-direction:row;min-height:420px;height:700px}.subpage-hero .cutted-m-green-small{display:block}}.subpage-hero__image{-ms-flex:1 1 50%;flex:1 1 50%;overflow:hidden;display:-ms-flexbox;display:flex}.subpage-hero__image picture{width:100%;height:100%;display:block}.subpage-hero__image img{width:100%;height:inherit;-o-object-fit:cover;object-fit:cover;-o-object-position:center center;object-position:center center;display:block;min-height:340px}.subpage-hero__content{-ms-flex:1 1 50%;flex:1 1 50%;padding:2rem 1.5rem;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;background:#071848;position:relative}@media(min-width: 1024px){.subpage-hero__content{padding:3rem 4rem}}@media(min-width: 1280px){.subpage-hero__content{padding:3rem 10rem}}.subpage-hero .type{font-weight:800;font-family:"redditSans ExtraBold",Helvetica,Arial,sans-serif;margin-bottom:2rem;font-size:1.25rem}.subpage-hero__title{font-weight:800;font-family:"redditSans ExtraBold",Helvetica,Arial,sans-serif;color:#52fd63;margin:0 0 1rem 0;line-height:1.1;letter-spacing:-0.01em;max-width:520 px}.subpage-hero__divider{border:none;height:3px;width:60%;background:-webkit-gradient(linear, left top, right top, from(rgba(82, 253, 99, 0)), to(rgb(82, 253, 99)));background:linear-gradient(90deg, rgba(82, 253, 99, 0) 0%, rgb(82, 253, 99) 100%);-webkit-transform:rotate(180deg);transform:rotate(180deg);margin:1.875rem 0 2.8125rem 0}.subpage-hero__description{font-size:1.38rem;color:#fff;margin:0;font-weight:400;line-height:1.875rem;max-width:38rem;font-family:"redditSans Italic",Helvetica,Arial,sans-serif}.subpage-hero__description p{font-family:inherit;font-size:inherit;line-height:inherit}.skip-to-content{position:fixed;top:-100%;left:1rem;z-index:9999;padding:.75rem 1.5rem;background-color:#071848;color:#fff;font-weight:700;font-size:1rem;text-decoration:none;border-radius:0 0 4px 4px;-webkit-transition:top .15s ease;transition:top .15s ease}.skip-to-content:focus{top:0;outline:2px solid #52fd63;outline-offset:2px}.site-header{position:sticky;top:0;width:100%;z-index:111;background:#fff;-webkit-box-shadow:0 2px 8px rgba(0,0,0,.08);box-shadow:0 2px 8px rgba(0,0,0,.08);-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease, -webkit-transform .3s ease}.site-header.is-hidden{-webkit-transform:translateY(-100%);transform:translateY(-100%)}.site-header .header-bar{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;height:60px;padding:0}@media(min-width: 1280px){.site-header .header-bar{height:80px;padding:0 2rem}}.site-header .header-bar .logo{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;height:100%}.site-header .header-bar .logo img,.site-header .header-bar .logo svg{height:32px;width:auto;display:block}.site-header .header-bar .header-actions{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;gap:.5rem;height:100%}.site-header .header-bar .header-actions .lang-selector{background:none;border:none;font-size:1.25rem;color:#071848;cursor:pointer;padding:0 .5rem;height:44px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.site-header .header-bar .header-actions .lang-selector:focus-visible{outline:2px solid #ff641b}.site-header .header-bar .header-actions .nav-hamburger{margin-left:.25rem;color:#ff641b}.lang-selector{position:relative}.lang-selector__trigger{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:2.5rem;height:2.5rem;padding:0;background:none;border:none;cursor:pointer;color:#071848;border-radius:50%;-webkit-transition:color .2s ease,background-color .2s ease;transition:color .2s ease,background-color .2s ease}.lang-selector__trigger:hover,.lang-selector__trigger[aria-expanded=true]{color:#ff641b;background-color:rgba(255,100,27,.08)}.lang-selector__trigger:focus-visible{color:#ff641b;background-color:rgba(255,100,27,.08);outline:2px solid #ff641b;outline-offset:2px}.lang-selector__trigger svg{width:1.5rem;height:1.5rem;pointer-events:none}.lang-selector__panel{display:none;position:fixed;top:60px;right:0;min-width:100%;z-index:300;background-color:#fff;border-top:1px solid #071848;-webkit-box-shadow:0 8px 32px rgba(0,0,0,.14);box-shadow:0 8px 32px rgba(0,0,0,.14);padding:.5rem 0}.lang-selector__panel.is-open{display:block}@media(min-width: 1280px){.lang-selector__panel.is-open{min-width:160px;position:absolute;border-top:0px solid #071848}}.lang-selector__option{position:relative;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;width:100%;padding:.75rem 1.25rem;background:none;border:none;cursor:pointer;font-size:1rem;font-family:"redditSans Regular",Helvetica,Arial,sans-serif;font-weight:700;color:#071848;text-align:left;-webkit-transition:color .2s ease;transition:color .2s ease;gap:1rem}.lang-selector__option:not(:last-child)::after{content:"";position:absolute;bottom:0;left:1.25rem;right:1.25rem;height:1px;background:-webkit-gradient(linear, left top, right top, from(rgb(7, 24, 72)), to(rgba(7, 24, 72, 0)));background:linear-gradient(90deg, rgb(7, 24, 72) 0%, rgba(7, 24, 72, 0) 100%)}.lang-selector__option:hover{color:#ff641b}.lang-selector__option:hover .lang-selector__radio{border-color:#ff641b}.lang-selector__option:focus-visible{color:#ff641b;outline:2px solid #ff641b;outline-offset:-2px}.lang-selector__option:focus-visible .lang-selector__radio{border-color:#ff641b}.lang-selector__option[aria-pressed=true] .lang-selector__radio,.lang-selector__option.is-active .lang-selector__radio{border-color:#071848}.lang-selector__option[aria-pressed=true] .lang-selector__radio::after,.lang-selector__option.is-active .lang-selector__radio::after{opacity:1;-webkit-transform:scale(1);transform:scale(1)}.lang-selector__radio{-ms-flex-negative:0;flex-shrink:0;width:1.25rem;height:1.25rem;border-radius:50%;border:1.5px solid #071848;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;-webkit-transition:border-color .2s ease;transition:border-color .2s ease}.lang-selector__radio::after{content:"";display:block;width:.5rem;height:.5rem;border-radius:50%;background-color:#071848;opacity:0;-webkit-transform:scale(0.5);transform:scale(0.5);-webkit-transition:opacity .2s ease,-webkit-transform .2s ease;transition:opacity .2s ease,-webkit-transform .2s ease;transition:opacity .2s ease,transform .2s ease;transition:opacity .2s ease,transform .2s ease,-webkit-transform .2s ease}@media(max-width: 1279px){.navigation{display:none}.navigation.is-mobile-open{display:block}}.nav-hamburger{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:44px;height:44px;background:none;border:none;cursor:pointer;z-index:103;position:relative;margin-left:auto}@media(min-width: 1280px){.nav-hamburger{display:none}}.nav-hamburger:focus-visible{outline:2px solid #ff641b}.nav-hamburger .hamburger-icon{width:24px;height:24px;display:block;position:relative}.nav-hamburger .hamburger-icon span{display:block;height:3px;width:100%;background:#071848;border-radius:2px;margin:5px 0;-webkit-transition:all .2s;transition:all .2s}.nav-hamburger[aria-expanded=true] .hamburger-icon span:nth-child(1){-webkit-transform:translateY(8px) rotate(45deg);transform:translateY(8px) rotate(45deg)}.nav-hamburger[aria-expanded=true] .hamburger-icon span:nth-child(2){opacity:0}.nav-hamburger[aria-expanded=true] .hamburger-icon span:nth-child(3){-webkit-transform:translateY(-8px) rotate(-45deg);transform:translateY(-8px) rotate(-45deg)}.nav-hamburger[aria-expanded=true] .hamburger-icon span{background:#ff641b}.nav-overlay{display:none;position:fixed;inset:0;top:60px;background:rgba(0,0,0,.5);z-index:102;-webkit-transition:opacity .2s;transition:opacity .2s}.nav-overlay.is-open{display:block;opacity:1}.navigation.is-mobile-open{position:fixed;top:60px;left:0;width:100%;max-width:100%;height:calc(100vh - 60px);height:calc(100dvh - 60px);background:#fff;z-index:103;border-top:1px solid #071848;overflow-y:auto;-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s, -webkit-transform .2s;-webkit-transform:translateX(0);transform:translateX(0)}@media(min-width: 1280px){.navigation.is-mobile-open{position:static;width:auto;max-width:none;height:auto;-webkit-box-shadow:none;box-shadow:none;overflow:visible;background:rgba(0,0,0,0);-webkit-transform:none;transform:none}}.navigation.is-mobile-open>.container{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;padding:2rem 1.5rem 1.5rem 1.5rem}@media(min-width: 1280px){.navigation.is-mobile-open>.container{-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center;padding:0}}.navigation.is-mobile-open>.container>li{width:100%}.navigation.is-mobile-open>.container>li:not(:last-child)::after{content:"";position:absolute;bottom:0;left:0rem;right:0rem;height:1px;background:-webkit-gradient(linear, left top, right top, from(rgb(7, 24, 72)), to(rgba(7, 24, 72, 0)));background:linear-gradient(90deg, rgb(7, 24, 72) 0%, rgba(7, 24, 72, 0) 100%)}.navigation.is-mobile-open>.container>li>a,.navigation.is-mobile-open>.container>li>button,.navigation.is-mobile-open>.container>li>.navigation__item-head>.navigation__link,.navigation.is-mobile-open>.container>li>.navigation__item-head>.navigation__toggle{width:100%;-ms-flex-pack:start;justify-content:flex-start;padding:1rem 0}.navigation.is-mobile-open>.container>li>a:focus-visible,.navigation.is-mobile-open>.container>li>button:focus-visible,.navigation.is-mobile-open>.container>li>.navigation__item-head>.navigation__link:focus-visible,.navigation.is-mobile-open>.container>li>.navigation__item-head>.navigation__toggle:focus-visible{color:#ff641b;outline:2px solid #ff641b;outline-offset:-2px}.navigation.is-mobile-open>.container>li>ul{position:static;min-width:0;-webkit-box-shadow:none;box-shadow:none;background:none;padding-left:1rem}.navigation.is-mobile-open>.container>li>ul>li>a{padding:.75rem 0;font-size:1rem}.nav-lock-scroll{overflow:hidden !important;position:fixed;width:100vw}.navigation{position:relative;z-index:100;background-color:rgba(0,0,0,0)}.navigation>.container{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;list-style:none;margin:0;padding-top:0;padding-bottom:0;max-width:none;padding-right:0;padding-left:0}.navigation>.container>li{position:relative}.navigation>.container>li>.navigation__item-head{display:-ms-flexbox;display:flex;-ms-flex-align:stretch;align-items:stretch}@media(min-width: 1280px){.navigation>.container>li:hover>a,.navigation>.container>li:hover>.navigation__item-head>.navigation__link,.navigation>.container>li:hover>.navigation__item-head>.navigation__toggle{color:#ff641b}}.navigation>.container>li>a,.navigation>.container>li>.navigation__item-head>.navigation__link{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;gap:.3rem;padding:0 .875rem;height:60px;color:#071848;text-decoration:none;font-size:1rem;font-family:"redditSans ExtraBold",Helvetica,Arial,sans-serif;font-weight:700;letter-spacing:.06em;text-transform:uppercase;white-space:nowrap;-webkit-transition:color .2s ease;transition:color .2s ease;cursor:pointer}@media(min-width: 1280px){.navigation>.container>li>a,.navigation>.container>li>.navigation__item-head>.navigation__link{height:80px}}.navigation>.container>li>a:focus-visible,.navigation>.container>li>.navigation__item-head>.navigation__link:focus-visible{color:#ff641b;outline:2px solid #ff641b;outline-offset:-2px}.navigation>.container>li>a.is-active,.navigation>.container>li>.navigation__item-head>.navigation__link.is-active{color:#ff641b}.navigation>.container>li>a.is-active svg,.navigation>.container>li>.navigation__item-head>.navigation__link.is-active svg{color:#ff641b}.navigation>.container>li>a svg,.navigation>.container>li>.navigation__item-head>.navigation__link svg{-ms-flex-negative:0;flex-shrink:0;-webkit-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:center;transform-origin:center;-webkit-transition:color .2s ease,-webkit-transform .2s ease;transition:color .2s ease,-webkit-transform .2s ease;transition:transform .2s ease,color .2s ease;transition:transform .2s ease,color .2s ease,-webkit-transform .2s ease}.navigation>.container>li>button,.navigation>.container>li>.navigation__item-head>.navigation__toggle{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;gap:.3rem;padding:0 .875rem;height:60px;color:#071848;text-decoration:none;font-size:1rem;font-family:"redditSans ExtraBold",Helvetica,Arial,sans-serif;font-weight:700;letter-spacing:.06em;text-transform:uppercase;white-space:nowrap;-webkit-transition:color .2s ease;transition:color .2s ease;cursor:pointer}@media(min-width: 1280px){.navigation>.container>li>button,.navigation>.container>li>.navigation__item-head>.navigation__toggle{height:80px}}.navigation>.container>li>button:focus-visible,.navigation>.container>li>.navigation__item-head>.navigation__toggle:focus-visible{color:#ff641b;outline:2px solid #ff641b;outline-offset:-2px}.navigation>.container>li>button.is-active,.navigation>.container>li>.navigation__item-head>.navigation__toggle.is-active{color:#ff641b}.navigation>.container>li>button.is-active svg,.navigation>.container>li>.navigation__item-head>.navigation__toggle.is-active svg{color:#ff641b}.navigation>.container>li>button svg,.navigation>.container>li>.navigation__item-head>.navigation__toggle svg{-ms-flex-negative:0;flex-shrink:0;-webkit-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:center;transform-origin:center;-webkit-transition:color .2s ease,-webkit-transform .2s ease;transition:color .2s ease,-webkit-transform .2s ease;transition:transform .2s ease,color .2s ease;transition:transform .2s ease,color .2s ease,-webkit-transform .2s ease}.navigation>.container>li>button,.navigation>.container>li>.navigation__item-head>.navigation__toggle{background:none;border:none;padding-left:.35rem;padding-right:.875rem}.navigation>.container>li>button svg,.navigation>.container>li>.navigation__item-head>.navigation__toggle svg{width:1rem;height:1rem}.navigation>.container>li>button[aria-expanded=true],.navigation>.container>li>.navigation__item-head>.navigation__toggle[aria-expanded=true]{color:#ff641b}.navigation>.container>li>button[aria-expanded=true] svg,.navigation>.container>li>.navigation__item-head>.navigation__toggle[aria-expanded=true] svg{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.navigation>.container>li>ul{display:none;position:absolute;top:100%;left:0;z-index:101;min-width:280px;list-style:none;margin:0;padding:.25rem 0;background-color:#fff;-webkit-box-shadow:0 8px 32px rgba(0,0,0,.12);box-shadow:0 8px 32px rgba(0,0,0,.12)}.navigation>.container>li>ul.is-open{display:block}.navigation>.container>li>ul>li{position:relative}.navigation>.container>li>ul>li:not(:last-child)::after{content:"";position:absolute;bottom:0;left:1.25rem;right:1.25rem;height:1px;background:-webkit-gradient(linear, left top, right top, from(rgb(7, 24, 72)), to(rgba(7, 24, 72, 0)));background:linear-gradient(90deg, rgb(7, 24, 72) 0%, rgba(7, 24, 72, 0) 100%)}.navigation>.container>li>ul>li>a{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1.25rem;color:#071848;text-decoration:none;font-size:1.125rem;font-family:"redditSans Regular",Helvetica,Arial,sans-serif;font-weight:400;white-space:nowrap;-webkit-transition:color .2s ease;transition:color .2s ease}.navigation>.container>li>ul>li>a:hover{color:#ff641b}.navigation>.container>li>ul>li>a:focus-visible{color:#ff641b;outline:2px solid #ff641b;outline-offset:-2px}.navigation>.container>li>ul>li>a.is-active{color:#ff641b}.navigation>.container>li>ul>li>a.is-active svg{color:#ff641b}@media(max-width: 1279px){.navigation.is-mobile-open>.container>li>.navigation__item-head{display:grid;grid-template-columns:minmax(0, 1fr) auto;-ms-flex-align:stretch;align-items:stretch}.navigation.is-mobile-open>.container>li>.navigation__item-head>.navigation__link,.navigation.is-mobile-open>.container>li>.navigation__item-head>.navigation__toggle{height:auto;min-height:56px;padding-top:1rem;padding-bottom:1rem;text-transform:none}.navigation.is-mobile-open>.container>li>.navigation__item-head>.navigation__link{padding-right:0rem;padding-left:0rem;font-family:"redditSans ExtraBold",Helvetica,Arial,sans-serif;font-size:1.5rem}.navigation.is-mobile-open>.container>li>.navigation__item-head>.navigation__toggle{-ms-flex-pack:center;justify-content:center;padding-left:0rem;padding-right:0rem}.navigation.is-mobile-open>.container>li>.navigation__item-head>.navigation__toggle::before{content:"+";font-family:"redditSans ExtraBold",Helvetica,Arial,sans-serif;font-size:1.5rem;font-weight:700;line-height:1;min-width:1ch;text-align:center;color:currentcolor}.navigation.is-mobile-open>.container>li>.navigation__item-head>.navigation__toggle[aria-expanded=true]::before{content:"-"}.navigation.is-mobile-open>.container>li>.navigation__item-head>.navigation__toggle svg{display:none}.navigation.is-mobile-open>.container>li a{text-transform:none;font-family:"redditSans ExtraBold",Helvetica,Arial,sans-serif;font-size:1.5rem}.navigation.is-mobile-open>.container>li ul.is-open{padding-left:0}.navigation.is-mobile-open>.container>li ul.is-open li::after{display:none}}@media(prefers-reduced-motion: reduce){.navigation,.navigation *{-webkit-transition:none !important;transition:none !important}}.text-element{padding:3rem 0;color:#071848}.text-element__inner{max-width:900px;margin:0 auto;min-width:0;width:100%}.text-element__inner.text-center h2{text-align:center}.text-element__inner.text-center h2::after{left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.text-element__inner picture{display:block;max-width:100%;margin:3rem auto}.text-element__inner .text-element__content:has(picture:first-child) picture:first-child{margin-top:0}.text-element .published{margin-bottom:2rem}@media(min-width: 768px){.text-element .published{margin-bottom:3rem}}.text-element h2,.text-element__title{position:relative;display:block;margin:0;padding-bottom:.875rem;color:#071848;line-height:1.1}.text-element h2::after,.text-element__title::after{content:"";position:absolute;left:0;bottom:0;width:min(500px,100%);height:5px;background:-webkit-gradient(linear, left top, right top, from(rgba(82, 253, 99, 0)), to(rgb(82, 253, 99)));background:linear-gradient(90deg, rgba(82, 253, 99, 0) 0%, rgb(82, 253, 99) 100%)}.text-element h2[style*="text-align: center"]::after,.text-element h2.text-center::after,.text-element__title[style*="text-align: center"]::after,.text-element__title.text-center::after{left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.text-element.no-heading-style h2::after,.text-element.no-heading-style .text-element__title::after{display:none}.text-element h3{position:relative;display:block;padding-bottom:.875rem;color:#071848;line-height:1.1}.text-element p{margin:1.5rem 0}.text-element p+h3{margin-top:2.875rem}.text-element h2+p,.text-element h3+p,.text-element__title+p{margin-top:1.5rem;margin-bottom:0}.text-element p:last-child{margin-bottom:1.5rem}.text-element i,.text-element i>p,.text-element em,.text-element em>p,.text-element em *{font-family:"redditSans Italic",Helvetica,Arial,sans-serif;max-width:860px;margin:0;color:#071848;font-size:1.38rem;line-height:1.35;font-style:italic}.text-element i a,.text-element i>p a,.text-element em a,.text-element em>p a,.text-element em * a{color:#ff641b}@media(min-width: 768px){.text-element{padding:5rem 0}.text-element h2,.text-element h3,.text-element__title{font-size:2.5rem}.text-element h2+p,.text-element h3+p,.text-element__title+p{margin-top:1.5rem}}@media(min-width: 1280px){.text-element{padding:6rem 0}}.text-element+.text-element{padding-top:0}.text-element .video-container{position:relative;padding-bottom:56.25%;height:0;overflow:hidden;max-width:100%;margin:2rem auto}.text-element .video-container iframe{position:absolute;top:0;left:0;width:100%;height:100%}.text-element__content{min-width:0;width:100%}.text-element+section.process-steps-section{padding-top:0}.fact-element{position:relative;padding:3rem 0}.fact-element::before{content:"";position:absolute;width:100vw;position:absolute;inset:0;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;pointer-events:none;background:#d4fed8;top:0;bottom:0;z-index:0}.fact-element__inner{position:relative;z-index:1;max-width:900px;margin:0 auto;display:grid;grid-template-columns:1fr;grid-gap:1rem 0;gap:1rem 0}@media(min-width: 768px){.fact-element__inner{grid-template-columns:1fr auto;grid-template-rows:auto 1fr;-webkit-column-gap:3rem;-moz-column-gap:3rem;column-gap:3rem}}.fact-element__title{margin:0 0 1.875rem 0;color:#071848}@media(min-width: 768px){.fact-element__title{grid-column:1;grid-row:1}}.fact-element__content{min-width:0;margin-bottom:1.25rem}@media(min-width: 768px){.fact-element__content{margin-bottom:0;grid-column:1;grid-row:2}}.fact-element p{margin:0;color:#071848}.fact-element__list{display:grid;grid-template-columns:auto 1fr;grid-gap:.25rem 1.5rem;gap:.25rem 1.5rem;margin:0}@media(min-width: 768px){.fact-element__list{grid-column:2;grid-row:1/3;align-self:end}}.fact-element__list dt{font-family:"redditSans ExtraBold",Helvetica,Arial,sans-serif;color:#071848;text-align:left}@media(min-width: 768px){.fact-element__list dt{text-align:right}}.fact-element__list dd{margin:0;color:#071848}.service-showcase{position:relative;padding:0rem 0 50px;color:#071848}.service-showcase::before{content:"";width:100vw;position:absolute;inset:0;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;pointer-events:none;top:50px;bottom:auto;height:calc(100% + 50px)}@media(min-width: 1280px){.service-showcase::before{top:100px;height:calc(100% + 0px)}}.service-showcase::before{background:linear-gradient(180deg, rgb(7, 24, 72) 0, rgb(7, 24, 72) calc(33% - 90px), #c8ceda calc(33% - 90px), #c8ceda 100%);z-index:0;top:100px;height:calc(100% - 100px)}.service-showcase>.container{position:relative;z-index:1;padding:0}.service-showcase__title{margin:0;text-align:center;color:#52fd63}.service-showcase__intro{max-width:980px;margin:1.25rem auto 2rem;text-align:center;color:#fff;font-size:1.38rem;line-height:1.35}.service-showcase__grid{margin-top:1rem;display:grid;grid-template-columns:1fr;grid-gap:1rem;gap:1rem}@media(min-width: 768px){.service-showcase__grid{grid-template-columns:repeat(2, minmax(0, 1fr))}}@media(min-width: 1280px){.service-showcase__grid{grid-template-columns:repeat(3, minmax(0, 1fr))}}@media(min-width: 1024px){.service-showcase{padding:0 0 4rem}.service-showcase::before{background:linear-gradient(180deg, rgb(7, 24, 72) 0, rgb(7, 24, 72) calc(68% - 70px), #c8ceda calc(68% - 70px), #c8ceda 100%)}.service-showcase__intro{margin-bottom:2.5rem}.service-showcase__grid{margin-top:0rem;gap:1.25rem}}@media(min-width: 1280px){.service-showcase{padding-bottom:100px}}.service-card{background-color:#071848;border:none;-webkit-box-shadow:none;box-shadow:none;overflow:hidden;border-radius:10px}.service-card__link{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;height:100%;color:inherit;text-decoration:none}.service-card__media{margin:0}.service-card__media img{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.service-card__content{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding:1.125rem 1rem 1.25rem}.service-card__title{margin:0;color:#52fd63;line-height:1.1}.service-card__text{margin:.75rem 0 0;color:#fff;font-size:1rem;line-height:1.4}.service-card__cta{margin-top:30px;-ms-flex-item-align:start;align-self:flex-start;min-width:130px}.service-card--featured{margin-top:0}@media(min-width: 1024px){.service-card--featured{-webkit-transform:none;transform:none}}.service-card--featured .service-card__media img{aspect-ratio:16/9;border-radius:10px}.service-card--featured .service-card__content{-ms-flex-align:center;align-items:center;text-align:center;padding:2.75rem 1.75rem 3rem}.service-card--featured .service-card__title{margin-bottom:0}.service-card--featured .service-card__text{max-width:760px;margin-top:30px;line-height:1.45}.service-card--featured .service-card__cta{-ms-flex-item-align:center;align-self:center;margin-top:30px}.service-card--compact .service-card__media img{aspect-ratio:16/9}.service-card--compact .service-card__title{font-size:1.5rem;line-height:1.08}.service-card--compact .service-card__text{font-size:.875rem;line-height:1.4;margin-top:30px}.service-card--compact .service-card__cta{margin-top:30px}@media(min-width: 768px){.service-card{border-radius:10px}.service-card__content{padding:1.85rem 1.7rem 1.8rem}.service-card--featured .service-card__content{padding:3rem 2.5rem 3.25rem}.service-card--featured .service-card__media img{aspect-ratio:16/7}.service-card--compact .service-card__content{padding:2rem 1.85rem 2.1rem}.service-card--compact .service-card__cta{margin-top:30px}}@media(min-width: 1280px){.service-card--featured .service-card__content{padding:90px 2.5rem 90px}.service-card--compact .service-card__content{padding:50px}}.industries-showcase-bleed{position:relative;padding:0 0 100px}.industries-showcase-bleed::before{content:"";position:absolute;width:100vw;position:absolute;inset:0;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;pointer-events:none;background:linear-gradient(180deg, rgb(212, 254, 216) 0, rgb(212, 254, 216) calc(68% - 90px));z-index:0;top:100px;height:calc(100% - 150px)}@media(min-width: 1280px){.industries-showcase-bleed::before{top:200px;height:calc(100% - 200px)}}@media(min-width: 1280px){.industries-showcase-bleed{padding-bottom:100px}}.industries-showcase-bleed .industries-showcase-bleed__inner{margin:0 auto;position:relative;z-index:1;border-radius:16px;padding:1rem 1.25rem 2rem 1.25rem;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:stretch;align-items:stretch;overflow:visible}.industries-showcase-bleed .industries-showcase-bleed__inner::before{content:"";position:absolute;inset:0;top:40px;background:#a8feb1;border-radius:10px;z-index:-1}@media(min-width: 768px){.industries-showcase-bleed .industries-showcase-bleed__inner::before{top:110px}}@media(min-width: 768px){.industries-showcase-bleed .industries-showcase-bleed__inner{padding:3.5rem 1.5rem 2.5rem 1.5rem}}.industries-showcase-bleed__container{--industries-item-max-width: calc((100% - 2rem) / 2);display:grid;grid-template-columns:repeat(2, 1fr);grid-gap:2rem;gap:2rem}@media(min-width: 640px){.industries-showcase-bleed__container{-webkit-column-gap:2rem;-moz-column-gap:2rem;column-gap:2rem;row-gap:3.5rem}}@media(min-width: 900px){.industries-showcase-bleed__container{--industries-item-max-width: calc((100% - 5rem) / 3);grid-template-columns:repeat(3, 1fr);gap:2.5rem}}@media(min-width: 1120px){.industries-showcase-bleed__container{--industries-item-max-width: calc((100% - 7.5rem) / 4);grid-template-columns:repeat(4, 1fr)}}@media(min-width: 1440px){.industries-showcase-bleed__container{--industries-item-max-width: calc((100% - 10rem) / 5);grid-template-columns:repeat(5, 1fr)}}.industries-showcase-bleed__item{min-width:0}.industries-showcase-bleed__item:last-child:nth-child(odd),.industries-showcase-bleed__item:last-child:nth-child(3n+1){grid-column:1/-1;width:100%;max-width:var(--industries-item-max-width);justify-self:center}@media(min-width: 901px){.industries-showcase-bleed__item:last-child:nth-child(odd),.industries-showcase-bleed__item:last-child:nth-child(3n+1){grid-column:auto;width:auto;max-width:none;justify-self:auto}}.industries-showcase-bleed__item{text-align:center;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;position:relative;padding-top:0;padding-bottom:.25rem}@media(min-width: 768px){.industries-showcase-bleed__item{padding-bottom:0;padding-top:0px}}.industries-showcase-bleed__icon{width:80px;height:80px;background:#071848;border-radius:50%;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;position:relative;top:0;left:auto;-webkit-transform:none;transform:none;-webkit-box-shadow:0 4px 16px rgba(7,24,72,.08);box-shadow:0 4px 16px rgba(7,24,72,.08);margin-bottom:1.25rem}.industries-showcase-bleed__icon svg{color:#52fd63;display:block;fill:#52fd63}@media(min-width: 768px){.industries-showcase-bleed__icon{width:120px;height:120px;margin-bottom:1.5rem}}.industries-showcase-bleed__title{color:#071848;margin:0 0 .75rem 0;line-height:1.2;font-size:1.125rem}@media(min-width: 768px){.industries-showcase-bleed__title{font-size:1.5rem}}.industries-showcase-bleed__desc{color:#071848;font-size:15px}@media(min-width: 768px){.industries-showcase-bleed__desc{font-size:1rem}}.industries-showcase-bleed__desc{margin:0;opacity:.85;line-height:1.45}.carousel{position:relative;padding-bottom:50px;--carousel-nav-size: 3.5rem;--carousel-nav-offset: 0;--carousel-nav-top: calc(13rem + 36px)}@media(min-width: 1280px){.carousel{padding-bottom:100px;--carousel-nav-size: 4rem;--carousel-nav-top: calc(14rem + 36px)}}@media(max-width: 767px){.carousel{--carousel-nav-size: 3rem;--carousel-nav-offset: 0;--carousel-nav-top: calc(9rem + 36px)}}.carousel::before{content:"";width:100vw;position:absolute;inset:0;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;pointer-events:none;top:50px;bottom:auto;height:calc(100% + 50px)}@media(min-width: 1280px){.carousel::before{top:100px;height:calc(100% + 0px)}}.carousel::before{background:linear-gradient(180deg, rgb(193, 197, 209) 0, rgb(193, 197, 209) calc(68% - 90px));z-index:0;height:calc(100% - 50px)}@media(min-width: 1280px){.carousel::before{height:calc(100% - 100px)}}.carousel.industries::before,.carousel.references::before{background:linear-gradient(180deg, rgb(212, 254, 216) 0, rgb(212, 254, 216) calc(68% - 90px))}.carousel__inner{width:100%;max-width:1800px;position:relative;z-index:1;padding:0;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:stretch;align-items:stretch;overflow-x:auto;-ms-scroll-snap-type:x mandatory;scroll-snap-type:x mandatory;scroll-behavior:smooth;-webkit-overflow-scrolling:touch;scrollbar-width:none}.carousel__inner::-webkit-scrollbar{display:none}.carousel__track{display:-ms-flexbox;display:flex;-webkit-transition:-webkit-transform .4s cubic-bezier(0.25, 1, 0.5, 1);transition:-webkit-transform .4s cubic-bezier(0.25, 1, 0.5, 1);transition:transform .4s cubic-bezier(0.25, 1, 0.5, 1);transition:transform .4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform .4s cubic-bezier(0.25, 1, 0.5, 1);gap:2rem;position:relative}.carousel__controls{position:absolute;top:calc(var(--carousel-nav-top) - 120px);left:0;right:0;z-index:4;pointer-events:none}.carousel:has(.carousel-card__link) .carousel__controls{top:var(--carousel-nav-top)}.carousel-card{background:#071848;-ms-flex:0 0 calc((100% - 96px)/3.4);flex:0 0 calc((100% - 96px)/3.4);min-width:280px;position:relative;border-radius:10px;outline:none;font-weight:500;display:-ms-flexbox;display:flex;scroll-snap-align:start}.carousel-card__badge{position:absolute;top:2rem;left:0rem;background:#52fd63;color:#000;padding:.25rem .75rem;font-weight:500;text-transform:uppercase;text-align:center;font-size:.75rem;line-height:22px}@media(min-width: 1280px){.carousel-card__badge{font-size:.875rem}}.carousel-card a{text-decoration:none;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.carousel-card__media{margin:0}.carousel-card__media img{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;aspect-ratio:16/9;border-radius:10px}.carousel-card__link .carousel-card__media img{border-radius:10px 10px 0 0}.carousel-card:focus{-webkit-box-shadow:0 0 0 3px #a8feb1;box-shadow:0 0 0 3px #a8feb1;z-index:2}.carousel-card__content{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding:3.125rem;-ms-flex-pack:justify;justify-content:space-between;-ms-flex:1;flex:1;gap:1.5rem}.carousel-card__title{margin:0;font-family:"redditSans ExtraBold",Helvetica,Arial,sans-serif;font-size:1.125rem;line-height:22px;color:#52fd63}@media(min-width: 1280px){.carousel-card__title{font-size:1.5rem;line-height:28px}}.carousel-card__text{color:#fff;font-size:.9375rem;line-height:1.4}@media(min-width: 1280px){.carousel-card__text{font-size:1rem}}.carousel-card__subtitle{font-weight:700;font-size:1.125rem;text-transform:uppercase}.carousel-card__cta{margin-top:auto;-ms-flex-item-align:start;align-self:flex-start;min-width:130px;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}@media(max-width: 1023px){.carousel-card{-ms-flex:0 0 calc(50% - 1rem);flex:0 0 calc(50% - 1rem);max-width:50vw}}@media(max-width: 480px){.carousel-card{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100vw}}.carousel.industries .carousel-card,.carousel.references .carousel-card{background:#a8feb1}.carousel.industries .carousel-card__title,.carousel.references .carousel-card__title{color:#000}.carousel.industries .carousel-card__text,.carousel.references .carousel-card__text{color:#000}.carousel__button{position:absolute;top:0;background-color:#fff;color:#071848;border:none;border-radius:50%;width:var(--carousel-nav-size);height:var(--carousel-nav-size);display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;cursor:pointer;z-index:1;font-size:1.5rem;-webkit-transition:background-color .2s,color .2s,opacity .2s;transition:background-color .2s,color .2s,opacity .2s;-webkit-box-shadow:0 4px 16px rgba(7,24,72,.08);box-shadow:0 4px 16px rgba(7,24,72,.08);pointer-events:auto}.carousel__button svg{width:1.5rem;height:1.5rem;fill:currentColor}.carousel__button:hover,.carousel__button:focus{background:#52fd63;color:#071848;outline:none}.carousel__button--prev{left:20px;-webkit-transform:translateY(-50%);transform:translateY(-50%)}@media(min-width: 1280px){.carousel__button--prev{left:-30px}}.carousel__button--next{right:20px;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.carousel__button:disabled{opacity:.4;cursor:not-allowed}.newsletter-section{position:relative;width:100vw;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw}.newsletter-section .bg-picture{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1}.newsletter-section .bg-picture img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}.newsletter-section .content-overlay{position:relative;z-index:2;width:100%;max-width:1200px;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding:60px 20px}.newsletter-section{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;overflow:hidden;min-height:720px}.newsletter-section .content-overlay{padding:60px 0}.newsletter-section .form-wrapper{background-color:#a8feb1;padding:60px 30px}@media(min-width: 768px){.newsletter-section .form-wrapper{padding:80px 30px}}.newsletter-section .form-wrapper h2>span>span{font-family:"redditSans ExtraBold",Helvetica,Arial,sans-serif;font-size:2.5rem;line-height:2.75rem}.newsletter-section .form-wrapper{max-width:750px;width:90%;text-align:center;border-radius:10px}.newsletter-section .form-wrapper a{font-size:.875rem;color:#071848}.newsletter-section .form-wrapper .legal-consent-container .hs-form-booleancheckbox-display>span{margin-left:0}.newsletter-section .form-wrapper label{text-align:left}.newsletter-section .hs-button{margin-top:2rem;background-color:#fff;color:#071848;line-height:1.2}.newsletter-section svg{z-index:2;position:absolute;top:0;left:0;overflow:hidden}.newsletter-section svg.cutted-m-green-small{left:auto;right:0}.newsletter-section svg.cutted-m-white-small{left:0}.bg-white{background-color:#fff}.bg-black{background-color:#000}.bg-black-20{background-color:#ccc}.bg-black-05{background-color:#f2f2f2}.bg-dark-blue{background-color:#071848}.bg-dark-blue-50{background-color:#838ba3}.bg-dark-blue-25{background-color:#c1c5d1}.bg-green{background-color:#52fd63}.bg-green-50{background-color:#a8feb1}.bg-green-25{background-color:#d4fed8}.bg-orange{background-color:#ff641b}.bg-orange-50{background-color:#ffb18d}.bg-orange-25{background-color:#ffd8c6}.bg-light-blue{background-color:#00d6ff}.bg-dark-green{background-color:#009b6b}.bg-yellow{background-color:#ffd41e}.bg-wine-red{background-color:#902456}.bg-purple{background-color:#d558f9}.bg-gradient-green{background:-webkit-gradient(linear, left top, right top, from(rgba(82, 253, 99, 0)), to(rgb(82, 253, 99)));background:linear-gradient(90deg, rgba(82, 253, 99, 0) 0%, rgb(82, 253, 99) 100%)}.bg-gradient-orange{background:-webkit-gradient(linear, left top, right top, from(rgba(255, 100, 27, 0)), to(rgb(255, 100, 27)));background:linear-gradient(90deg, rgba(255, 100, 27, 0) 0%, rgb(255, 100, 27) 100%)}.bg-gradient-blue{background:-webkit-gradient(linear, left top, right top, from(rgb(7, 24, 72)), to(rgba(7, 24, 72, 0)));background:linear-gradient(90deg, rgb(7, 24, 72) 0%, rgba(7, 24, 72, 0) 100%)}.logo-carousel-section{position:relative;width:100vw;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;max-width:100vw;background:#fff;padding:0rem 0 1.5rem 0;z-index:1}.logo-carousel{--logo-carousel-gap: 2.5rem;width:100vw;max-width:100%;overflow:hidden;position:relative;background:#fff;padding:1.5rem 0 1.5rem 0}.logo-carousel__heading{text-align:center;font-size:1.1rem;font-weight:700;margin-bottom:.5rem;letter-spacing:.02em}.logo-carousel__underline{display:block;margin:.25rem auto 1.5rem auto;width:120px;height:3px;background:-webkit-gradient(linear, left top, right top, color-stop(60%, rgb(82, 253, 99)), to(#fff));background:linear-gradient(90deg, rgb(82, 253, 99) 60%, #fff 100%);border-radius:2px}.logo-carousel__track{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;gap:var(--logo-carousel-gap);-webkit-transition:none;transition:none;scroll-behavior:smooth;overflow-x:auto;scrollbar-width:none;-ms-overflow-style:none;padding:.5rem 0}.logo-carousel__track::-webkit-scrollbar{display:none}.logo-carousel__item{-ms-flex:0 0 auto;flex:0 0 auto;min-width:120px;max-width:180px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;-webkit-filter:grayscale(1) contrast(1.2);filter:grayscale(1) contrast(1.2);opacity:.85;-webkit-transition:opacity .2s,-webkit-filter .2s;transition:opacity .2s,-webkit-filter .2s;transition:filter .2s,opacity .2s;transition:filter .2s,opacity .2s,-webkit-filter .2s}.logo-carousel__item:focus-visible,.logo-carousel__item:hover{-webkit-filter:none;filter:none;opacity:1;outline:2px solid #52fd63;z-index:2}.logo-carousel__item img,.logo-carousel__item svg{max-width:100%;max-height:48px;width:auto;height:auto;display:block}.logo-carousel__live{position:absolute;left:0;top:0;width:1px;height:1px;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);white-space:nowrap;pointer-events:none}.large-content-lift-section{position:relative;margin-bottom:100px;background:none}.large-content-lift-section:has(+.large-content-lift-section){margin-bottom:0;padding-bottom:2rem}.large-content-lift-section::before{content:"";width:100vw;position:absolute;inset:0;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;pointer-events:none;top:50px;bottom:auto;height:calc(100% + 50px)}@media(min-width: 1280px){.large-content-lift-section::before{top:100px;height:calc(100% + 0px)}}.large-content-lift-section::before{background:linear-gradient(180deg, rgb(193, 197, 209) 0, rgb(193, 197, 209) calc(68% - 90px));z-index:0}.large-content-lift-section:nth-of-type(even)::before{background:linear-gradient(180deg, rgb(193, 197, 209) 0, rgb(193, 197, 209) calc(68% - 90px));opacity:.5}.large-content-lift-section:has(+.large-content-lift-section)::before{height:calc(100% + 2rem - 2rem)}@media(min-width: 1280px){.large-content-lift-section:has(+.large-content-lift-section)::before{height:calc(100% + 2rem - 2rem)}}.large-content-lift-section__inner{position:relative;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:2rem;padding:2rem;background:#071848;border-radius:10px}@media(min-width: 1024px){.large-content-lift-section__inner{padding:5rem 7rem}}.large-content-lift-section__inner>div{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:3rem}@media(min-width: 1024px){.large-content-lift-section__inner>div{-ms-flex-direction:row;flex-direction:row;gap:5rem}}.large-content-lift-section__media{-ms-flex:1 1 50%;flex:1 1 50%;display:-ms-flexbox;display:flex;gap:3rem;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-direction:column;flex-direction:column}.large-content-lift-section__media picture img{width:100%;height:auto;min-height:220px;max-height:280px;border-radius:10px;-o-object-fit:cover;object-fit:cover;-webkit-box-shadow:0 2px 16px rgba(0,0,0,.08);box-shadow:0 2px 16px rgba(0,0,0,.08)}.large-content-lift-section__content{-ms-flex:1 1 50%;flex:1 1 50%;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:start;justify-content:start;padding:0rem;border-radius:10px}.large-content-lift-section__title{font-size:1.875rem;font-weight:700;color:#52fd63;margin:0 0 1rem 0;line-height:1.1;letter-spacing:-0.01em;max-width:500px}.large-content-lift-section__features{list-style:none;padding:0;margin:0 0 1.5rem 0}.large-content-lift-section__features li{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;margin-bottom:2rem;gap:.5rem}.large-content-lift-section__features li .large-content-lift-section__feature-row{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;gap:.75rem}.large-content-lift-section__features li .large-content-lift-section__feature-icon{-ms-flex-negative:0;flex-shrink:0;width:24px;height:24px;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-top:.125rem}.large-content-lift-section__features li .large-content-lift-section__feature-title{color:#52fd63;font-size:1.5rem;line-height:1.2;font-weight:700}.large-content-lift-section__features li .btn{margin-left:2.25rem}.large-content-lift-section__features li .large-content-lift-section__feature-desc{color:#fff;font-size:1rem;margin-left:2.25rem;margin-top:.15em;display:block}.large-content-lift-section__description{font-size:1.38rem;color:#fff;margin:0 0 0rem 0;font-weight:400;line-height:1.875rem;max-width:38rem;font-style:italic;font-family:"redditSans Italic",Helvetica,Arial,sans-serif}.large-content-lift-section .btn{min-width:130px;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.details-lift-section{--details-lift-metric-width: 8.5rem}@media(min-width: 768px){.details-lift-section{--details-lift-metric-width: 10rem}}@media(min-width: 1024px){.details-lift-section{--details-lift-metric-width: 12rem}}.details-lift-section{position:relative;background:none;padding-bottom:50px}@media(min-width: 1024px){.details-lift-section{padding-bottom:100px}}.details-lift-section:has(+.details-lift-section){margin-bottom:0;padding-bottom:2rem}.details-lift-section::before{content:"";width:100vw;position:absolute;inset:0;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;pointer-events:none;top:50px;bottom:auto;height:calc(100% + 50px)}@media(min-width: 1280px){.details-lift-section::before{top:100px;height:calc(100% + 0px)}}.details-lift-section::before{background:linear-gradient(180deg, rgb(193, 197, 209) 0, rgb(193, 197, 209) calc(68% - 90px));z-index:0}.details-lift-section:has(+.details-lift-section)::before{height:calc(100% + 2rem - 2rem)}@media(min-width: 1280px){.details-lift-section:has(+.details-lift-section)::before{height:calc(100% + 2rem - 2rem)}}.details-lift-section+.details-lift-section::before{background:linear-gradient(180deg, rgb(193, 197, 209) 0, rgb(193, 197, 209) calc(68% - 90px));opacity:.5}.details-lift-section__inner{position:relative;z-index:1;padding:2rem;background:#071848;border-radius:10px}@media(min-width: 1024px){.details-lift-section__inner{padding:5rem 7rem}}.details-lift-section__title{margin:0 0 2rem;color:#52fd63;font-size:1.875rem;line-height:1.1;max-width:26rem}.details-lift-section__inner>div{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:3rem}@media(min-width: 1280px){.details-lift-section__inner>div{-ms-flex-direction:row;flex-direction:row;gap:3.5rem;-ms-flex-align:start;align-items:flex-start}}@media(min-width: 1440px){.details-lift-section__inner>div{gap:5rem}}.details-lift-section__media{-ms-flex:1 1 52%;flex:1 1 52%;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:1.5rem;min-width:0}.details-lift-section__media picture{display:block}.details-lift-section__media picture img{width:100%;height:auto;min-height:220px;max-height:280px;-o-object-fit:cover;object-fit:cover;border-radius:10px;-webkit-box-shadow:0 2px 16px rgba(0,0,0,.08);box-shadow:0 2px 16px rgba(0,0,0,.08)}.details-lift-section__description{margin:0;color:#fff;font-size:1rem;line-height:1.5;max-width:34rem}.details-lift-section .btn{min-width:130px;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.details-lift-section__content{-ms-flex:1 1 45%;flex:1 1 45%;min-width:0;display:-ms-flexbox;display:flex;-ms-flex-align:stretch;align-items:stretch}@media(min-width: 1280px){.details-lift-section__content{-ms-flex-pack:end;justify-content:flex-end;-ms-flex-align:center;align-items:center}}.details-lift-section__features{list-style:none;margin:0;padding:0;width:100%;max-width:100%}@media(min-width: 1280px){.details-lift-section__features{max-width:38rem}}.details-lift-section__features li{display:grid;grid-template-columns:var(--details-lift-metric-width) 1fr;grid-gap:1rem;gap:1rem;-ms-flex-align:center;align-items:center;margin-bottom:1.25rem}@media(min-width: 1280px){.details-lift-section__features li{gap:1.5rem;margin-bottom:1.5rem}}.details-lift-section__feature-row{display:-ms-flexbox;display:flex;-ms-flex-pack:end;justify-content:flex-end;-ms-flex-align:center;align-items:center;min-height:2.25rem;gap:.5rem}@media(min-width: 1280px){.details-lift-section__feature-row{min-height:2.5rem;gap:.75rem}}.details-lift-section__feature-title{color:#fff;font-family:"redditSans ExtraBold",Helvetica,Arial,sans-serif;font-size:clamp(1.625rem,4.6vw,2.5rem);line-height:1;text-align:right;white-space:nowrap;width:100%}.details-lift-section__feature-desc{color:#52fd63;font-family:"redditSans ExtraBold",Helvetica,Arial,sans-serif;font-size:clamp(1rem,2vw,1.5rem);line-height:1.15}@media(min-width: 1280px){.details-lift-section__feature-desc{font-size:1.5rem}}.details-lift-section__feature-icon{width:1.75rem;height:1.75rem;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;display:-ms-inline-flexbox;display:inline-flex;color:#fff;-ms-flex-negative:0;flex-shrink:0}@media(min-width: 1280px){.details-lift-section__feature-icon{width:2rem;height:2rem}}.details-lift-section__feature-icon svg{width:100%;height:100%;display:block;fill:currentColor}.impact-lift-section{position:relative;margin-bottom:2rem;background:none}.impact-lift-section:has(+.impact-lift-section){margin-bottom:0;padding-bottom:2rem}.impact-lift-section::before{content:"";width:100vw;position:absolute;inset:0;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;pointer-events:none;top:50px;bottom:auto;height:calc(100% + 50px)}@media(min-width: 1280px){.impact-lift-section::before{top:100px;height:calc(100% + 0px)}}.impact-lift-section::before{background:linear-gradient(180deg, rgb(193, 197, 209) 0, rgb(193, 197, 209) calc(68% - 90px));z-index:0}.impact-lift-section:has(+.impact-lift-section)::before{height:calc(100% + 2rem - 2rem)}@media(min-width: 1280px){.impact-lift-section:has(+.impact-lift-section)::before{height:calc(100% + 2rem - 2rem)}}.impact-lift-section+.impact-lift-section::before{background:linear-gradient(180deg, rgb(193, 197, 209) 0, rgb(193, 197, 209) calc(68% - 90px));opacity:.5}.impact-lift-section__inner{position:relative;z-index:1;padding:2rem;background:#071848;border-radius:10px}@media(max-width: 767px){.impact-lift-section__inner{padding:2rem 1.5rem 2.5rem}}@media(min-width: 1024px){.impact-lift-section__inner{padding:4rem 5rem}}@media(min-width: 1280px){.impact-lift-section__inner{padding:5rem 7rem}}.impact-lift-section__title{margin:0 0 2.75rem;color:#52fd63;text-align:center;font-size:clamp(1.5rem,4vw,40px);line-height:1.1}@media(max-width: 767px){.impact-lift-section__title{margin-bottom:2rem;text-align:left}}@media(min-width: 768px){.impact-lift-section__title{margin-bottom:3.5rem}}@media(min-width: 1024px){.impact-lift-section__title{margin-bottom:4rem}}.impact-lift-section__list{list-style:none;margin:0 auto;padding:0;display:grid;grid-gap:1.5rem;gap:1.5rem;max-width:74rem}@media(max-width: 767px){.impact-lift-section__list{gap:2rem}}@media(min-width: 768px){.impact-lift-section__list{gap:2rem}}@media(min-width: 1024px){.impact-lift-section__list{gap:2.25rem}}.impact-lift-section__item{display:grid;grid-template-columns:1fr;grid-gap:1.5rem;gap:1.5rem;-ms-flex-align:start;align-items:start}@media(max-width: 767px){.impact-lift-section__item{gap:1.75rem}}@media(min-width: 768px){.impact-lift-section__item{grid-template-columns:minmax(280px, 340px) minmax(0, 1fr);gap:2rem;-ms-flex-align:center;align-items:center}}@media(min-width: 1024px){.impact-lift-section__item{grid-template-columns:minmax(320px, 380px) minmax(0, 1fr);gap:2.5rem}}@media(min-width: 1440px){.impact-lift-section__item{grid-template-columns:445px minmax(0, 1fr);gap:3rem}}.impact-lift-section__media{margin:0}.impact-lift-section__media img,.impact-lift-section__media picture img{width:100%;height:auto;aspect-ratio:16/7;-o-object-fit:cover;object-fit:cover;border-radius:10px;-webkit-box-shadow:0 2px 16px rgba(0,0,0,.08);box-shadow:0 2px 16px rgba(0,0,0,.08)}.impact-lift-section__content{min-width:0;max-width:none;max-width:initial}@media(min-width: 1024px){.impact-lift-section__content{max-width:36rem}}.impact-lift-section__item-title{margin:0 0 .75rem;color:#52fd63;font-size:clamp(1.25rem,3vw,30px);line-height:1.15}@media(max-width: 767px){.impact-lift-section__item-title{margin-bottom:1rem}}.impact-lift-section__description{margin:0;max-width:34rem;color:#fff;font-size:1rem;line-height:1.5}@media(max-width: 767px){.impact-lift-section__description{font-size:1.125rem;line-height:1.45}}@media(min-width: 1024px){.impact-lift-section__description{max-width:36rem}}.key-milestones-section{--key-milestones-year-width: 5rem;position:relative;margin-bottom:2rem;background:none}.key-milestones-section:has(+.key-milestones-section){margin-bottom:0;padding-bottom:2rem}@media(min-width: 768px){.key-milestones-section{--key-milestones-year-width: 6rem}}.key-milestones-section::before{content:"";width:100vw;position:absolute;inset:0;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;pointer-events:none;top:50px;bottom:auto;height:calc(100% + 50px)}@media(min-width: 1280px){.key-milestones-section::before{top:100px;height:calc(100% + 0px)}}.key-milestones-section::before{background:linear-gradient(180deg, rgb(193, 197, 209) 0, rgb(193, 197, 209) calc(68% - 90px));z-index:0}.key-milestones-section:has(+.key-milestones-section)::before{height:calc(100% + 2rem - 2rem)}@media(min-width: 1280px){.key-milestones-section:has(+.key-milestones-section)::before{height:calc(100% + 2rem - 2rem)}}.key-milestones-section+.key-milestones-section::before{background:linear-gradient(180deg, rgb(193, 197, 209) 0, rgb(193, 197, 209) calc(68% - 90px));opacity:.5}.key-milestones-section__inner{position:relative;z-index:1;padding:2rem;background:#071848;border-radius:10px}@media(min-width: 1024px){.key-milestones-section__inner{padding:5rem 7rem}}.key-milestones-section__title{margin:0 0 1.5rem;color:#52fd63;text-align:center;font-size:clamp(1.5rem,4vw,40px);line-height:1.1}.key-milestones-section__intro{max-width:42rem;margin:0 auto 2rem;color:#fff;text-align:center;font-size:1rem;line-height:1.5}@media(min-width: 1024px){.key-milestones-section__intro{margin-bottom:3rem}}.key-milestones-section__list{width:100%;max-width:44rem;margin:0 auto}.key-milestones-section__item{border-top:1px solid hsla(0,0%,100%,.4)}.key-milestones-section__item:last-child{border-bottom:1px solid hsla(0,0%,100%,.4)}.key-milestones-section__trigger{width:100%;display:grid;grid-template-columns:var(--key-milestones-year-width) 1fr 1.5rem;grid-gap:1rem;gap:1rem;-ms-flex-align:center;align-items:center;padding:.875rem 0;text-align:left;color:#fff}@media(min-width: 768px){.key-milestones-section__trigger{gap:1.5rem;padding:1rem 0}}.key-milestones-section__trigger:focus-visible{outline:2px solid #52fd63;outline-offset:4px}.key-milestones-section__year{color:#52fd63;font-family:"redditSans ExtraBold",Helvetica,Arial,sans-serif;font-size:clamp(1.5rem,4vw,1.875rem);line-height:1;text-align:left;white-space:nowrap}.key-milestones-section__label{color:#fff;font-family:"redditSans ExtraBold",Helvetica,Arial,sans-serif;font-size:clamp(1rem,2vw,1.125rem);line-height:1.25}.key-milestones-section__icon{width:1.25rem;height:1.25rem;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;color:#fff;justify-self:end;-webkit-transition:-webkit-transform .2s ease;transition:-webkit-transform .2s ease;transition:transform .2s ease;transition:transform .2s ease, -webkit-transform .2s ease}.key-milestones-section__icon svg{width:100%;height:100%;display:block;fill:currentColor}.key-milestones-section__item.is-open .key-milestones-section__icon{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.key-milestones-section__panel{display:grid;grid-template-rows:0fr;opacity:0;max-height:0;overflow:hidden;-webkit-transition:grid-template-rows .25s ease,opacity .2s ease;transition:grid-template-rows .25s ease,opacity .2s ease;transition:grid-template-rows .25s ease,opacity .2s ease,-ms-grid-rows .25s ease}.key-milestones-section__item.is-open .key-milestones-section__panel{grid-template-rows:1fr;opacity:1;max-height:40rem}.key-milestones-section__panel-content{min-height:0;padding:0 0 1rem 1rem}@media(min-width: 768px){.key-milestones-section__panel-content{padding-left:calc(var(--key-milestones-year-width) + 1.5rem)}}.key-milestones-section__panel-content p{margin:0;color:#fff;font-size:.875rem;line-height:1.5;max-width:32rem}section.process-steps-section{padding:3rem 0}@media(min-width: 768px){section.process-steps-section{padding:6rem 0}}.process-steps{display:grid;grid-template-columns:repeat(2, 1fr);grid-gap:2rem 1rem;gap:2rem 1rem;list-style:none;padding:0;max-width:1024px;margin:0 auto}@media(min-width: 768px){.process-steps{grid-template-columns:repeat(auto-fit, minmax(120px, 1fr));gap:2rem}}.process-steps__item{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;gap:1rem;text-align:center}.process-steps__circle{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:3.5rem;height:3.5rem;border-radius:50%;background-color:#52fd63;color:#071848;font-family:"redditSans ExtraBold",Helvetica,Arial,sans-serif;font-size:1.25rem;line-height:1;-ms-flex-negative:0;flex-shrink:0}@media(min-width: 768px){.process-steps__circle{width:4rem;height:4rem;font-size:1.5rem}}.process-steps__label{font-family:"redditSans ExtraBold",Helvetica,Arial,sans-serif;font-size:1rem;color:#071848;line-height:1.3}@media(min-width: 768px){.process-steps__label{font-size:1.5rem}}.reference-grid-search{position:relative;padding:50px 0}@media(min-width: 1280px){.reference-grid-search{padding:100px 0}}.reference-grid-search::before{content:"";position:absolute;width:100vw;position:absolute;inset:0;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;pointer-events:none;background:#d4fed8;top:0;bottom:0;z-index:0}.reference-grid-search[data-loading=true] .reference-grid-search__results{opacity:.7}.reference-grid-search__inner{position:relative;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:1.5rem}.reference-grid-search__filters{display:grid;grid-template-columns:1fr;grid-gap:.75rem;gap:.75rem;max-width:60rem;width:100%;margin:0 auto}@media(min-width: 768px){.reference-grid-search__filters{grid-template-columns:repeat(3, minmax(0, 1fr))}}.reference-grid-search__filter{min-width:0}.reference-grid-search__filter select{min-height:60px;background-color:#fff;border:1px solid rgba(7,24,72,.08);border-radius:10px;-webkit-box-shadow:none;box-shadow:none;font-size:1rem;font-weight:400;-webkit-transition:border-color .2s ease,-webkit-box-shadow .2s ease;transition:border-color .2s ease,-webkit-box-shadow .2s ease;transition:border-color .2s ease,box-shadow .2s ease;transition:border-color .2s ease,box-shadow .2s ease,-webkit-box-shadow .2s ease}.reference-grid-search__filter select:hover{border-color:rgba(7,24,72,.25)}.reference-grid-search__filter select:focus-visible{outline:none;border-color:#ff641b;-webkit-box-shadow:0 0 0 3px rgba(7,24,72,.15);box-shadow:0 0 0 3px rgba(7,24,72,.15)}.reference-grid-search__status{min-height:1.5rem;margin:0 auto;color:#071848;font-size:.875rem;max-width:60rem;width:100%}.reference-grid-search__results{display:grid;grid-template-columns:1fr;grid-gap:1.25rem;gap:1.25rem;-webkit-transition:opacity 180ms ease;transition:opacity 180ms ease}@media(min-width: 768px){.reference-grid-search__results{grid-template-columns:repeat(2, minmax(0, 1fr))}}@media(min-width: 1280px){.reference-grid-search__results{grid-template-columns:repeat(3, minmax(0, 1fr))}}.reference-grid-search__card{min-width:0}.reference-grid-search__card-link{display:block;height:100%;color:inherit;text-decoration:none}.reference-grid-search__card-shell{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;height:100%;overflow:hidden;border-radius:10px;background:#a8feb1}.reference-grid-search__card--featured .reference-grid-search__card-shell{background:#071848}.reference-grid-search__card--featured .reference-grid-search__card-title,.reference-grid-search__card--featured .reference-grid-search__meta,.reference-grid-search__card--featured .reference-grid-search__card-text{color:#fff}.reference-grid-search__card--featured .reference-grid-search__card-title{color:#52fd63}.reference-grid-search__card-media{background:-webkit-gradient(linear, left top, left bottom, from(rgb(242, 242, 242)), to(rgb(204, 204, 204)));background:linear-gradient(180deg, rgb(242, 242, 242), rgb(204, 204, 204))}.reference-grid-search__card-media img{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;aspect-ratio:16/9}.reference-grid-search__badge{position:absolute;top:1.1875rem;left:0;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;min-height:1.75rem;padding:.25rem 1rem;background:#52fd63;color:#000;font-weight:500;font-size:.75rem;line-height:22px;text-transform:uppercase;letter-spacing:.04em}@media(min-width: 1280px){.reference-grid-search__badge{font-size:.875rem}}.reference-grid-search__card-content{display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;padding:1.875rem 1.5rem 1.75rem;gap:1.5rem}@media(min-width: 1280px){.reference-grid-search__card-content{padding:3.75rem 3rem}}.reference-grid-search__card-title{margin:0;color:#000;font-size:1.125rem;line-height:22px}@media(min-width: 1280px){.reference-grid-search__card-title{font-size:1.5rem;line-height:28px}}.reference-grid-search__meta{margin:0;padding:0;list-style:none;color:#071848;font-size:.9375rem;line-height:22px;font-weight:700}@media(min-width: 1280px){.reference-grid-search__meta{font-size:1rem}}.reference-grid-search__meta li{margin:0}.reference-grid-search__meta li+li{margin-top:.125rem}.reference-grid-search__meta li::before{content:"• "}.reference-grid-search__meta--large{font-size:1.125rem;text-transform:uppercase}.reference-grid-search__card-text{margin:0;color:#071848;font-size:.9375rem;line-height:22px}@media(min-width: 1280px){.reference-grid-search__card-text{font-size:1rem}}.reference-grid-search__card-cta{margin-top:auto;margin-bottom:0;-ms-flex-item-align:start;align-self:flex-start;min-width:0;padding:.8rem 1.35rem;white-space:nowrap;letter-spacing:.02em;font-size:.9375rem;line-height:22px}@media(min-width: 1280px){.reference-grid-search__card-cta{font-size:1rem}}.reference-grid-search__empty{margin:0;color:#071848}.reference-grid-search__actions{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center}.reference-grid-search__card-media--empty{min-height:12rem}.reference-grid-search__card-title{font-family:"redditSans ExtraBold",Helvetica,Arial,sans-serif}.news-events-grid{position:relative;padding:50px 0;margin-bottom:100px}.news-events-grid::before{content:"";position:absolute;width:100vw;position:absolute;inset:0;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;pointer-events:none;background:#d4fed8;top:0;bottom:0;z-index:0}.news-events-grid picture{display:inline}.news-events-grid[data-loading=true] .news-events-grid__results{opacity:.7}.news-events-grid__inner{position:relative;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:1.5rem}.news-events-grid__controls{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:1rem;max-width:60rem;width:100%;margin:0 auto}@media(min-width: 768px){.news-events-grid__controls{-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}}.news-events-grid__filters{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;gap:.75rem}.news-events-grid__filter{min-height:2.5rem;padding:.625rem 1.35rem;border:none;border-radius:40px;background:#fff;color:#071848;font-size:.875rem;font-weight:400;line-height:1;cursor:pointer;-webkit-transition:background-color .2s ease,color .2s ease;transition:background-color .2s ease,color .2s ease}.news-events-grid__filter:hover{background:#ffd8c6}.news-events-grid__filter:focus-visible{outline:none;-webkit-box-shadow:0 0 0 3px rgba(7,24,72,.15);box-shadow:0 0 0 3px rgba(7,24,72,.15)}.news-events-grid__filter[aria-pressed=true]{background:#ff641b;color:#fff}.news-events-grid__filter[aria-pressed=true]:hover{background:rgb(241.2,77.2263157895,0)}.news-events-grid__filter[aria-pressed=true]:focus-visible{outline:none;-webkit-box-shadow:0 0 0 3px rgba(255,100,27,.4);box-shadow:0 0 0 3px rgba(255,100,27,.4)}.news-events-grid__search{position:relative;display:block;width:100%}@media(min-width: 768px){.news-events-grid__search{max-width:14rem;-ms-flex:0 0 14rem;flex:0 0 14rem}}.news-events-grid__search-input{width:100%;min-height:2.5rem;padding:.625rem .875rem .625rem 2.25rem;border:none;border-radius:10px;background:#fff;-webkit-box-shadow:none;box-shadow:none;font-size:.875rem;font-weight:400}.news-events-grid__search-icon{position:absolute;top:50%;left:.75rem;width:1rem;height:1rem;color:#838ba3;-webkit-transform:translateY(-50%);transform:translateY(-50%);pointer-events:none}.news-events-grid__status{min-height:1.5rem;max-width:60rem;width:100%;margin:0 auto;color:#071848;font-size:.875rem}.news-events-grid__results{display:grid;grid-template-columns:1fr;grid-gap:1rem;gap:1rem;-webkit-transition:opacity 180ms ease;transition:opacity 180ms ease}@media(min-width: 768px){.news-events-grid__results{grid-template-columns:repeat(2, minmax(0, 1fr))}}@media(min-width: 1280px){.news-events-grid__results{grid-template-columns:repeat(3, minmax(0, 1fr))}}.news-events-grid__card{min-width:0}.news-events-grid__card-link{display:block;height:100%;color:inherit;text-decoration:none}.news-events-grid__card-shell{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;height:100%;overflow:hidden;border-radius:10px;background:#a8feb1}.news-events-grid__card--featured .news-events-grid__card-shell{background:#071848}.news-events-grid__card--featured .news-events-grid__card-title,.news-events-grid__card--featured .news-events-grid__meta,.news-events-grid__card--featured .news-events-grid__card-text{color:#fff}.news-events-grid__card--featured .news-events-grid__card-title{color:#52fd63}.news-events-grid__card-media{background:-webkit-gradient(linear, left top, left bottom, from(rgb(242, 242, 242)), to(rgb(204, 204, 204)));background:linear-gradient(180deg, rgb(242, 242, 242), rgb(204, 204, 204))}.news-events-grid__card-media img{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;aspect-ratio:16/9}.news-events-grid__badge{position:absolute;top:1.1875rem;left:0;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;min-height:1.75rem;padding:.25rem 1rem;background:#52fd63;color:#000;font-weight:500;font-size:.75rem;line-height:22px;text-transform:uppercase;letter-spacing:.04em}@media(min-width: 1280px){.news-events-grid__badge{font-size:.875rem}}.news-events-grid__card-content{display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;padding:1.875rem 1.5rem 1.75rem;gap:1.5rem}@media(min-width: 1280px){.news-events-grid__card-content{padding:3.75rem 3rem}}.news-events-grid__card-title{margin:0;color:#000;font-size:1.125rem;line-height:22px}@media(min-width: 1280px){.news-events-grid__card-title{font-size:1.5rem;line-height:28px}}.news-events-grid__meta{margin:0;padding:0;list-style:none;color:#071848;font-size:.9375rem;line-height:22px;font-weight:700}@media(min-width: 1280px){.news-events-grid__meta{font-size:1rem}}.news-events-grid__meta li{margin:0}.news-events-grid__meta li+li{margin-top:.125rem}.news-events-grid__meta li::before{content:"• "}.news-events-grid__meta--large{font-size:1.125rem;text-transform:uppercase}.news-events-grid__card-text{margin:0;color:#071848;font-size:.9375rem;line-height:22px}@media(min-width: 1280px){.news-events-grid__card-text{font-size:1rem}}.news-events-grid__card-cta{margin-top:auto;margin-bottom:0;-ms-flex-item-align:start;align-self:flex-start;min-width:0;padding:.8rem 1.35rem;white-space:nowrap;letter-spacing:.02em;font-size:.9375rem;line-height:22px}@media(min-width: 1280px){.news-events-grid__card-cta{font-size:1rem}}.news-events-grid__empty{margin:0;color:#071848}.news-events-grid__actions{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center}.news-events-grid__card-media{height:clamp(14rem,26vw,18rem)}.news-events-grid__card-media--empty{min-height:clamp(14rem,26vw,18rem)}.contact-people-grid{position:relative;padding:50px 0}@media(min-width: 1280px){.contact-people-grid{padding:100px 0}}.contact-people-grid::before{content:"";position:absolute;width:100vw;position:absolute;inset:0;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;pointer-events:none;background:#d4fed8;top:0;bottom:0;z-index:0}.contact-people-grid__inner{position:relative;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:2rem}.contact-people-grid__filters{display:grid;grid-template-columns:1fr;grid-gap:.75rem;gap:.75rem;max-width:44rem;width:100%;margin:0 auto}@media(min-width: 768px){.contact-people-grid__filters{grid-template-columns:repeat(2, minmax(0, 1fr))}}.contact-people-grid__filter{min-width:0}.contact-people-grid__filter select{width:100%;min-height:60px;background-color:#fff;border:1px solid rgba(7,24,72,.08);border-radius:10px;-webkit-box-shadow:none;box-shadow:none;color:#071848;font-size:1rem;font-weight:400;padding:0 1rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.contact-people-grid__filter select:focus-visible{outline:none;-webkit-box-shadow:0 0 0 3px rgba(7,24,72,.15);box-shadow:0 0 0 3px rgba(7,24,72,.15)}.contact-people-grid__status{min-height:1.5rem;margin:0 auto;width:100%;max-width:44rem;color:#071848;font-size:.875rem;text-align:center}.contact-people-grid__groups{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:2.5rem}@media(min-width: 1280px){.contact-people-grid__groups{gap:3.25rem}}.contact-people-grid__group-title{margin:0;color:#071848;text-align:center;font-size:clamp(1.875rem,2.2vw,2.5rem)}.contact-people-grid__grid{display:grid;grid-template-columns:1fr;grid-gap:1rem;gap:1rem}@media(min-width: 768px){.contact-people-grid__grid{grid-template-columns:repeat(2, minmax(0, 1fr))}}@media(min-width: 1024px){.contact-people-grid__grid{grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.25rem}}.contact-people-grid__card{min-width:0}.contact-people-grid__card-shell{height:100%;overflow:hidden;border-radius:10px;background:#fff}.contact-people-grid__card-image{aspect-ratio:16/10.5;background:#f2f2f2}.contact-people-grid__card-image img{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.contact-people-grid__card-content{padding:1.375rem 1.25rem 1.5rem}@media(min-width: 1280px){.contact-people-grid__card-content{padding:1.5rem}}.contact-people-grid__name{margin:0;color:#071848;font-size:1.125rem;line-height:1.38rem}@media(min-width: 1280px){.contact-people-grid__name{font-size:1.5rem;line-height:28px}}.contact-people-grid__role{margin:0;color:#071848;font-size:.875rem;line-height:1.35;font-weight:700}@media(min-width: 1280px){.contact-people-grid__role{font-size:1rem;line-height:1.35}}.contact-people-grid__detail{margin:0;color:#071848;font-size:.875rem;line-height:1.35}@media(min-width: 1280px){.contact-people-grid__detail{font-size:1rem;line-height:1.35}}.contact-people-grid__detail a{color:#071848}.contact-people-grid__detail a:hover,.contact-people-grid__detail a:focus-visible{color:#ff641b}.contact-people-grid__detail a:focus-visible{outline:none;-webkit-box-shadow:0 0 0 3px rgba(7,24,72,.15);box-shadow:0 0 0 3px rgba(7,24,72,.15);border-radius:2px}.contact-people-grid__link{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;margin-top:.875rem;color:#071848;font-size:.875rem;font-weight:700;text-decoration:none}@media(min-width: 1280px){.contact-people-grid__link{font-size:1rem;line-height:1.35}}.contact-people-grid__link::after{content:"›";margin-left:.25rem;font-size:1rem}.contact-people-grid__link:hover,.contact-people-grid__link:focus-visible{color:#ff641b}.contact-people-grid__link:focus-visible{outline:none;-webkit-box-shadow:0 0 0 3px rgba(7,24,72,.15);box-shadow:0 0 0 3px rgba(7,24,72,.15);border-radius:2px}.locations-list{position:relative;padding:50px 0}@media(min-width: 1280px){.locations-list{padding:100px 0}}.locations-list::before{content:"";position:absolute;width:100vw;position:absolute;inset:0;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;pointer-events:none;background:#a8feb1;top:0;bottom:0;z-index:0}.locations-list__inner{position:relative;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:2rem}@media(min-width: 1280px){.locations-list__inner{gap:2.5rem}}.locations-list__title{margin:0;color:#071848;text-align:center;font-size:clamp(2rem,2.8vw,2.75rem)}.locations-list__items{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:1.75rem}@media(min-width: 768px){.locations-list__items{gap:2.5rem}}.locations-list__item{display:grid;grid-template-columns:1fr;grid-gap:1.25rem;gap:1.25rem;-ms-flex-align:center;align-items:center}@media(min-width: 1024px){.locations-list__item{grid-template-columns:minmax(0, 560px) minmax(0, 1fr);gap:3.25rem}}.locations-list__image{margin:0;border-radius:10px;overflow:hidden;background:#f2f2f2}.locations-list__image img{display:block;width:100%;height:100%;aspect-ratio:16/11;-o-object-fit:cover;object-fit:cover}.locations-list__content{max-width:34rem}.locations-list__name{margin:0;color:#071848;font-size:clamp(1.6rem,2vw,2.125rem);line-height:1.05}.locations-list__description{margin:1rem 0 0;color:#071848;font-size:1rem;line-height:1.5}.locations-list__description p{margin:0}.locations-list__description p+p{margin-top:1rem}.contact-section{position:relative;background:rgba(0,0,0,0);padding:5rem 0}.contact-section::before{content:"";width:100vw;position:absolute;inset:0;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;pointer-events:none;top:50px;bottom:auto;height:calc(100% + 50px)}@media(min-width: 1280px){.contact-section::before{top:100px;height:calc(100% + 0px)}}.contact-section::before{background:linear-gradient(180deg, rgb(212, 254, 216) 0, rgb(212, 254, 216) calc(68% - 90px));z-index:0;top:450px}.contact-section.no-persons{padding-top:0;background:linear-gradient(180deg, rgb(212, 254, 216) 0, rgb(212, 254, 216) calc(68% - 90px))}.contact-section.no-persons::before{top:0}.contact-section__inner{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:2.5rem;z-index:1;position:relative}@media(min-width: 1024px){.contact-section__inner{-ms-flex-direction:row;flex-direction:row;gap:4rem}}.contact-section__content{-ms-flex:1 1 100%;flex:1 1 100%;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;padding:0}.contact-section h2.contact-section__content-title{margin-bottom:2.25rem;margin-top:3.25rem}@media(min-width: 768px){.contact-section h2.contact-section__content-title{margin-bottom:6.25rem;margin-top:8rem}}.contact-section h2.contact-section__content-title::after{display:none}.contact-section__persons{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:2rem;margin-top:6.25rem}@media(min-width: 768px){.contact-section__persons{-ms-flex-direction:row;flex-direction:row}}.contact-section__or-separator{width:100%;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin:4rem 0;font-weight:800;font-size:1.5rem;text-transform:uppercase}.contact-section__form{width:100%;max-width:800px;margin:0 auto}.contact-section__form fieldset.form-columns-2,.contact-section__form fieldset.form-columns-1{border:none;padding:0;margin:0;max-width:none;gap:.5rem;width:100%;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}@media(min-width: 768px){.contact-section__form fieldset.form-columns-2,.contact-section__form fieldset.form-columns-1{-ms-flex-direction:row;flex-direction:row;gap:1.5rem}}.contact-section__form fieldset.form-columns-2 .hs-fieldtype-text.hs-form-field,.contact-section__form fieldset.form-columns-2 .hs-fieldtype-phonenumber.hs-form-field,.contact-section__form fieldset.form-columns-1 .hs-fieldtype-text.hs-form-field,.contact-section__form fieldset.form-columns-1 .hs-fieldtype-phonenumber.hs-form-field{width:100%}.contact-section__form fieldset.form-columns-2 .hs-fieldtype-text .input,.contact-section__form fieldset.form-columns-2 .hs-fieldtype-phonenumber .input,.contact-section__form fieldset.form-columns-1 .hs-fieldtype-text .input,.contact-section__form fieldset.form-columns-1 .hs-fieldtype-phonenumber .input{margin-right:0}.contact-section__form fieldset.form-columns-2 .hs-fieldtype-text .input input.hs-input,.contact-section__form fieldset.form-columns-2 .hs-fieldtype-phonenumber .input input.hs-input,.contact-section__form fieldset.form-columns-1 .hs-fieldtype-text .input input.hs-input,.contact-section__form fieldset.form-columns-1 .hs-fieldtype-phonenumber .input input.hs-input{width:100%;padding:1rem}.contact-section__form fieldset.form-columns-2 .hs-fieldtype-textarea,.contact-section__form fieldset.form-columns-1 .hs-fieldtype-textarea{width:100%}.contact-section__form fieldset.form-columns-2 .hs-fieldtype-textarea .input,.contact-section__form fieldset.form-columns-1 .hs-fieldtype-textarea .input{margin-right:0}.contact-section__form fieldset.form-columns-2 .hs-fieldtype-textarea .input textarea.hs-input,.contact-section__form fieldset.form-columns-1 .hs-fieldtype-textarea .input textarea.hs-input{height:150px;resize:vertical;width:100%}.contact-section__form fieldset.form-columns-2 .hs-fieldtype-select .input,.contact-section__form fieldset.form-columns-1 .hs-fieldtype-select .input{margin-right:0;padding-right:0}.contact-section__form fieldset.form-columns-2 .hs-fieldtype-select .input select.hs-input,.contact-section__form fieldset.form-columns-1 .hs-fieldtype-select .input select.hs-input{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.contact-section__person{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-direction:column;flex-direction:column;gap:1.25rem}.contact-section__person-image{width:100%;height:auto;min-height:220px;border-radius:10px}@media(min-width: 1280px){.contact-section__person-image{width:375px;height:330px}}.contact-section__person-image{display:block}.contact-section__person-image img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;border-radius:10px}.contact-section__person-info{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:4px;text-align:center}.contact-section__person-info h3{font-size:1.5rem;margin-top:3rem;margin-bottom:0rem;padding-bottom:0}.contact-section__person-info p,.contact-section__person-info strong,.contact-section__person-info a{font-size:1rem;line-height:1.375;color:#071848;font-weight:400}.contact-section__person-info p{margin-bottom:1.5rem}.contact-section__person-info strong{font-weight:700}.contact-section__person-info a{text-decoration:none}.contact-section__person-info a[href^="tel:"],.contact-section__person-info a[href^="mailto:"]{text-decoration:underline}.contact-section__person-info a strong::after{content:"›";margin-left:4px;font-size:1rem}.contact-section__person-info a:focus,.contact-section__person-info a:hover,.contact-section__person-info a:hover>strong,.contact-section__person-info a:focus>strong{color:#ff641b}.toggled-content-section{background:none;margin-bottom:100px}.toggled-content-section:has(+.toggled-content-section){margin-bottom:0;padding-bottom:2rem}.toggled-content-section::before{content:"";width:100vw;position:absolute;inset:0;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;pointer-events:none;top:50px;bottom:auto;height:calc(100% + 50px)}@media(min-width: 1280px){.toggled-content-section::before{top:100px;height:calc(100% + 0px)}}.toggled-content-section::before{background:linear-gradient(180deg, rgb(212, 254, 216) 0, rgb(212, 254, 216) calc(68% - 90px));z-index:0}.toggled-content-section:nth-of-type(even)::before{background:linear-gradient(180deg, rgb(212, 254, 216) 0, rgb(212, 254, 216) calc(68% - 90px));opacity:.5}.toggled-content-section:has(+.toggled-content-section)::before{height:calc(100% + 2rem - 2rem)}@media(min-width: 1280px){.toggled-content-section:has(+.toggled-content-section)::before{height:calc(100% + 2rem - 2rem)}}.toggled-content-section:has(+:not(.toggled-content-section))::before{height:100%}.toggled-content-section{position:relative}.toggled-content-section__top{display:grid;grid-template-columns:1fr;position:relative;z-index:1;border-radius:10px;overflow:hidden}.toggled-content-section__top button{-ms-flex-order:1;order:1}@media(min-width: 1280px){.toggled-content-section__top button{-ms-flex-order:0;order:0}}@media(min-width: 1024px){.toggled-content-section__top{grid-template-columns:1fr 2fr}}.toggled-content-section__top{width:100%;-ms-flex-align:stretch;align-items:stretch;min-height:340px}.toggled-content-section__image{min-width:220px;display:-ms-flexbox;display:flex;-ms-flex-align:stretch;align-items:stretch;-ms-flex-pack:stretch;justify-content:stretch;height:200px}@media(min-width: 1024px){.toggled-content-section__image{height:500px}}.toggled-content-section__image picture{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}.toggled-content-section__image img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;display:block;border-radius:0}.toggled-content-section__content{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;background:#071848;gap:2rem;color:#fff;padding:2rem}@media(min-width: 1024px){.toggled-content-section__content{padding:2rem 3rem}}@media(min-width: 1280px){.toggled-content-section__content{padding:2rem 5rem}}.toggled-content-section__title{color:#52fd63;font-size:2rem;font-weight:700;margin-bottom:0rem;letter-spacing:.02em}.toggled-content-section__description{font-size:1rem;line-height:1.6;margin-bottom:0rem;color:#fff}.toggled-content-section__description p{font-size:inherit;line-height:inherit}.toggled-content-section__actions{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:1rem;margin-top:.5rem}@media(max-width: 600px){.toggled-content-section__actions{-ms-flex-direction:column;flex-direction:column;gap:.5rem}.toggled-content-section__actions .toggled-content-section__button-row{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;gap:1rem;width:100%;-ms-flex-pack:center;justify-content:center;margin-bottom:.5rem}.toggled-content-section__actions .toggled-content-section__button-single{width:100%;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center}}@media(min-width: 601px){.toggled-content-section__actions{-ms-flex-direction:row;flex-direction:row}.toggled-content-section__actions .toggled-content-section__button-row,.toggled-content-section__actions .toggled-content-section__button-single{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;gap:1rem;width:auto;margin-bottom:0;-ms-flex-pack:start;justify-content:flex-start}}.toggled-content-section__details{display:grid;grid-template-rows:0fr;grid-template-columns:1fr;opacity:0;max-height:0;overflow:hidden;position:relative;z-index:1;border-radius:0 0 10px 10px}@media(min-width: 1024px){.toggled-content-section__details{grid-template-columns:repeat(3, 1fr);-ms-flex-align:start;align-items:start}}.toggled-content-section__detail{-ms-flex:1 1 100%;flex:1 1 100%;min-width:220px;padding:2rem;color:#071848;min-height:0;width:100%;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.toggled-content-section__detail:nth-child(odd){background-color:#a8feb1}.toggled-content-section__detail:nth-child(even){background-color:#d4fed8}@media(min-width: 1024px){.toggled-content-section__detail{-ms-flex:1 1 33%;flex:1 1 33%;padding:6.25rem 1.125rem;height:100%}}@media(min-width: 1024px)and (min-width: 1280px){.toggled-content-section__detail{padding-right:2rem;padding-left:2rem}}@media(min-width: 1024px)and (min-width: 1440px){.toggled-content-section__detail{padding-right:3.125rem;padding-left:3.125rem}}.toggled-content-section h2,.toggled-content-section h3{font-size:1.875rem}.toggled-content-section h4{font-size:1.5rem}.toggled-content-section__card{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;gap:1rem;margin-top:1rem;-ms-flex-direction:row;flex-direction:row}.toggled-content-section__card picture{margin-right:.5rem}@media(min-width: 1280px){.toggled-content-section__card picture{margin-right:1rem}}@media(min-width: 1440px){.toggled-content-section__card picture{margin-right:2rem}}.toggled-content-section__card .status{margin-bottom:.5rem}.toggled-content-section__card .contact{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:.25rem}.toggled-content-section__card .title{font-weight:600;margin-bottom:.5rem}.toggled-content-section__card img{-o-object-fit:cover;object-fit:cover;border-radius:10px;display:block;max-width:none;max-width:initial}.toggled-content-section__card:has(>picture:first-child){-ms-flex-direction:column;flex-direction:column}.toggled-content-section__card:has(>picture:first-child) img{width:100%;height:auto}@media(min-width: 1280px){.toggled-content-section__card:has(>picture:first-child){-ms-flex-direction:row;flex-direction:row}.toggled-content-section__card:has(>picture:first-child) img{width:144px;height:240px}}.toggled-content-section__info{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:.25rem;text-align:left}.toggled-content-section.is-open .toggled-content-section__top{border-bottom-left-radius:0;border-bottom-right-radius:0}.toggled-content-section.is-open .toggled-content-section__details{grid-template-rows:1fr;opacity:1;max-height:-webkit-fit-content;max-height:-moz-fit-content;max-height:fit-content;height:auto}.content-image-section{position:relative;width:100%;padding:0}.content-image-section::before{content:"";width:100vw;position:absolute;inset:0;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;pointer-events:none;background:-webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(0, transparent), color-stop(0, rgb(168, 254, 177)), to(rgb(168, 254, 177)));background:linear-gradient(180deg, transparent 0, transparent 0, rgb(168, 254, 177) 0, rgb(168, 254, 177) 100%);z-index:0;top:0;height:100%}.content-image-section:nth-of-type(even)::before{background:-webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(0, transparent), color-stop(0, rgb(212, 254, 216)), to(rgb(212, 254, 216)));background:linear-gradient(180deg, transparent 0, transparent 0, rgb(212, 254, 216) 0, rgb(212, 254, 216) 100%)}.content-image-section.green-25::before{background:-webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(0, transparent), color-stop(0, rgb(212, 254, 216)), to(rgb(212, 254, 216)));background:linear-gradient(180deg, transparent 0, transparent 0, rgb(212, 254, 216) 0, rgb(212, 254, 216) 100%)}.content-image-section__inner{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:2rem;margin:0 auto;padding:50px 0;position:relative;z-index:1}@media(min-width: 1024px){.content-image-section__inner{-ms-flex-direction:row;flex-direction:row;gap:4rem;padding:100px 0}}.content-image-section__inner picture{width:100%}.content-image-section__content{-ms-flex:1 1 50%;flex:1 1 50%;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;min-width:0;padding:0 1rem;gap:2rem}@media(min-width: 1024px){.content-image-section__content{padding:0 4rem}}.content-image-section__content{color:#071848}.content-image-section__content .content-image-section__title{margin-bottom:1rem}.content-image-section__content .content-image-section__description{color:#071848}.content-image-section__image{-ms-flex:1 1 50%;flex:1 1 50%;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;min-width:0}.content-image-section__image img,.content-image-section__image svg{max-width:100%;width:100%;max-height:520px;border-radius:10px;display:block}.content-image-section .sub-heading{margin-top:3rem;margin-bottom:1rem}.large-cta-section{position:relative;width:100vw;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw}.large-cta-section .bg-picture{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1}.large-cta-section .bg-picture img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}.large-cta-section .content-overlay{position:relative;z-index:2;width:100%;max-width:1200px;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding:60px 20px}.large-cta-section{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;overflow:hidden;min-height:720px}.large-cta-section svg{z-index:2;position:absolute;top:0;left:0;overflow:hidden}.large-cta-section svg.cutted-m-green-small{left:auto;right:0}.large-cta-section svg.cutted-m-white-small{left:0}.large-cta-section .content-overlay svg{position:relative}.site-search{padding:3rem 0;color:#071848}.site-search__inner{max-width:900px;margin:0 auto;min-width:0;width:100%}.site-search__caption{margin-bottom:1.5rem}@media(min-width: 768px){.site-search__form{-ms-flex-direction:row;flex-direction:row}}.site-search__results{list-style:none;padding-left:0;margin-top:2rem}.site-search__result{border-bottom:1px solid #c1c5d1;padding:1rem 0}.site-search__result__title{font-size:clamp(1rem,2vw,1.125rem);font-weight:800}.site-search__result__snippet{margin-bottom:1rem}.site-search__more-results{padding:1.5rem 0;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between}

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