:root {
  --base-color-brand--blue: #0014a5;
  --base-color-brand--orange: #fa5d4c;
  --background-color--background-primary: var(--base-color-brand--blue);
  --text-color--text-alternate: var(--base-color-neutral--white);
  --text-color--text-primary: var(--base-color-brand--blue);
  --text-color--text-secondary: var(--base-color-brand--orange);
  --background-color--background-success: var(--base-color-system--success-green);
  --text-color--text-success: var(--base-color-system--success-green-dark);
  --border-color--border-primary: var(--base-color-brand--blue);
  --background-color--background-alternate: var(--base-color-neutral--white);
  --background-color--background-secondary: var(--base-color-brand--orange);
  --link-color--link-primary: var(--base-color-brand--blue);
  --background-color--background-tertiary: var(--base-color-brand--blue-fade);
  --background-color--background-error: var(--base-color-system--error-red);
  --text-color--text-error: var(--base-color-system--error-red-dark);
  --base-color-brand--orange-dark: #e02c1e;
  --border-color--border-alternate: var(--base-color-neutral--neutral-darker);
  --link-color--link-alternate: var(--base-color-neutral--white);
  --background-color--background-warning: var(--base-color-system--warning-yellow);
  --text-color--text-warning: var(--base-color-system--warning-yellow-dark);
  --base-color-neutral--white: #fff;
  --base-color-brand--blue-fade: #5f5baa;
  --base-color-system--success-green-dark: #114e0b;
  --base-color-brand--blue-dark: #171f44;
  --base-color-brand--blue-light: #d9e5ff;
  --base-color-brand--pink-light: #ffaefe;
  --base-color-brand--pink-dark: #3c043b;
  --base-color-neutral--black: #000;
  --base-color-neutral--neutral-lightest: #eee;
  --base-color-neutral--neutral-lighter: #ccc;
  --base-color-neutral--neutral-light: #aaa;
  --base-color-neutral--neutral: #666;
  --base-color-neutral--neutral-dark: #444;
  --base-color-neutral--neutral-darker: #222;
  --base-color-neutral--neutral-darkest: #111;
  --base-color-system--success-green: #cef5ca;
  --base-color-system--warning-yellow: #fcf8d8;
  --base-color-system--warning-yellow-dark: #5e5515;
  --base-color-system--error-red: #f8e4e4;
  --base-color-system--error-red-dark: #3b0b0b;
  --base-color-system--focus-state: #2d62ff;
  --border-color--border-secondary: var(--base-color-brand--blue-fade);
  --link-color--link-secondary: var(--base-color-brand--orange);
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

.w-backgroundvideo-backgroundvideoplaypausebutton:focus-visible {
  outline-offset: 2px;
  border-radius: 50%;
  outline: 2px solid #3b79c3;
}

body {
  color: var(--base-color-brand--blue);
  -webkit-text-stroke-color: var(--base-color-brand--blue);
  font-family: Lexend Variablefont Wght, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--base-color-brand--orange);
  text-decoration: none;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: .25rem;
}

img {
  max-width: 100%;
  margin-bottom: 2px;
  display: inline-block;
}

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.utility-page_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility-page_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 20rem;
  display: flex;
}

.utility-page_form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.utility-page_image {
  margin-left: auto;
  margin-right: auto;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.margin-custom2 {
  margin: 2.5rem;
}

.padding-xlarge {
  padding: 4rem;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-xsmall {
  margin: .5rem;
}

.padding-xhuge {
  padding: 8rem;
}

.margin-custom1 {
  margin: 1.5rem;
}

.padding-0 {
  padding: 0;
}

.padding-xxhuge {
  padding: 12rem;
}

.padding-huge {
  padding: 6rem;
}

.margin-large {
  margin: 3rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.margin-xxsmall {
  margin: .25rem;
}

.padding-custom3 {
  padding: 3.5rem;
}

.padding-large {
  padding: 3rem;
}

.margin-tiny {
  margin: .125rem;
}

.padding-small {
  padding: 1rem;
}

.padding-custom2 {
  padding: 2.5rem;
}

.margin-custom3 {
  margin: 3.5rem;
}

.padding-custom1 {
  padding: 1.5rem;
}

.margin-huge {
  margin: 6rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-xsmall {
  padding: .5rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.padding-xxsmall {
  padding: .25rem;
}

.margin-xhuge {
  margin: 8rem;
}

.padding-tiny {
  padding: .125rem;
}

.margin-small {
  margin: 1rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-xxhuge {
  margin: 12rem;
}

.margin-0 {
  margin: 0;
}

.margin-horizontal {
  margin-top: 0;
  margin-bottom: 0;
}

.padding-top {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.margin-vertical {
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.padding-left {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.padding-horizontal {
  padding-top: 0;
  padding-bottom: 0;
}

.margin-right {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.margin-top {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-left {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.padding-right {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.padding-bottom {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.form_checkbox {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.form_checkbox-icon {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-checked {
  background-size: 90%;
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-focus {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.fs-styleguide_background {
  border: 1px solid #0000001a;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.fs-styleguide_spacing {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-image: linear-gradient(to top, #2d40ea1a, #fff0);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start stretch;
  display: grid;
  position: relative;
}

.icon-1x1-small {
  flex: none;
  width: 1rem;
  height: 1rem;
}

.overflow-auto {
  overflow: auto;
}

.spacing-clean {
  margin: 0;
  padding: 0;
}

.icon-1x1-large {
  width: 2.5rem;
  height: 2.5rem;
}

.z-index-2 {
  z-index: 2;
  position: relative;
}

.fs-styleguide_background-space {
  width: 1px;
  height: 1px;
  margin: 5rem;
}

.text-weight-semibold {
  font-weight: 600;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.fs-styleguide_item {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  border-bottom: 1px solid #0000001a;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 3rem;
  display: grid;
  position: relative;
}

.fs-styleguide_item.is-stretch {
  justify-items: stretch;
}

.max-width-full {
  width: 100%;
  max-width: none;
}

.fs-styleguide_item-header {
  border-bottom: 1px solid #0000001a;
  width: 100%;
  padding-bottom: 2rem;
}

.background-color-primary {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-alternate);
}

.z-index-1 {
  z-index: 1;
  position: relative;
}

.text-color-primary {
  color: var(--text-color--text-primary);
}

.text-color-secondary {
  color: var(--text-color--text-secondary);
}

.fs-styleguide_2-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.fs-styleguide_2-col.is-align-start {
  align-items: start;
}

.form_message-success {
  background-color: var(--background-color--background-success);
  color: var(--text-color--text-success);
  padding: 1.25rem;
}

.fs-styleguide_row {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.heading-style-h3 {
  font-size: 3.8rem;
  font-weight: 300;
  line-height: 1.2;
}

.heading-style-h3.text-align-center {
  margin-bottom: 20px;
  font-size: 3.9rem;
}

.text-rich-text h1, .text-rich-text h2, .text-rich-text h3, .text-rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.text-rich-text h5, .text-rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

.text-rich-text p {
  margin-bottom: 1rem;
}

.text-rich-text ul, .text-rich-text ol {
  margin-bottom: 1.5rem;
}

.text-rich-text blockquote {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.pointer-events-auto {
  pointer-events: auto;
}

.container-small {
  width: 100%;
  max-width: 43rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.icon-height-small {
  height: 1rem;
}

.icon-1x1-medium {
  color: var(--base-color-brand--orange);
  width: 1.3rem;
  height: 1.3rem;
}

.heading-style-h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.padding-global.padding-section-large.alt {
  padding-bottom: 4rem;
}

.text-weight-normal {
  font-weight: 400;
}

.padding-section-small {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.max-width-small {
  width: 100%;
  max-width: 20rem;
}

.text-color-alternate {
  color: var(--text-color--text-alternate);
}

.text-style-italic {
  font-style: italic;
}

.pointer-events-none {
  pointer-events: none;
}

.text-weight-medium {
  font-weight: 500;
}

.overflow-hidden {
  overflow: hidden;
}

.fs-styleguide_section-header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid var(--border-color--border-primary);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-bottom: 3rem;
  line-height: 1.4;
  display: grid;
}

.text-size-tiny {
  font-size: .75rem;
}

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

.fs-styleguide_1-col {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.overflow-visible {
  overflow: visible;
}

.fs-styleguide_empty-box {
  z-index: -1;
  background-color: #2d40ea0d;
  border: 1px dashed #2d40ea;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.text-weight-light {
  font-weight: 300;
}

.fs-styleguide_heading-medium {
  color: var(--base-color-brand--blue);
  font-size: 4rem;
}

.max-width-xsmall {
  width: 100%;
  max-width: 16rem;
}

.fs-styleguide_4-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.text-size-regular {
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.4;
}

.text-weight-xbold {
  font-weight: 800;
}

.text-align-right {
  text-align: right;
  padding-left: 0;
  padding-right: 0;
}

.text-weight-bold {
  font-weight: 700;
}

.max-width-medium {
  width: 100%;
  max-width: 32rem;
}

.fs-styleguide_item-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.fs-styleguide_header-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  display: grid;
}

.background-color-alternate {
  background-color: var(--background-color--background-alternate);
}

.text-style-muted {
  opacity: .6;
}

.text-size-small {
  font-size: .875rem;
}

.heading-style-h4 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.form_radio-icon {
  width: .875rem;
  height: .875rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
}

.form_radio-icon.w--redirected-checked {
  border-width: .25rem;
  width: .875rem;
  height: .875rem;
}

.form_radio-icon.w--redirected-focus {
  width: .875rem;
  height: .875rem;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.text-style-nowrap {
  white-space: nowrap;
}

.text-align-left {
  text-align: left;
}

.background-color-secondary {
  background-color: var(--background-color--background-secondary);
}

.form_input {
  border: 1px solid var(--border-color--border-primary);
  background-color: #0000;
  min-height: 3rem;
  margin-bottom: .75rem;
  padding: .5rem 1rem;
  font-size: 1rem;
}

.form_input::placeholder, .form_input.is-select-input {
  color: var(--text-color--text-secondary);
}

.form_input.is-text-area {
  min-height: 8rem;
  padding-top: .75rem;
  font-size: 1rem;
}

.heading-style-h6 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.padding-section-large {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.fs-styleguide_3-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  display: grid;
}

.fs-styleguide_3-col.is-align-start {
  align-items: start;
}

.text-style-link {
  color: var(--link-color--link-primary);
  text-decoration: underline;
}

.text-size-large {
  font-size: 1.5rem;
}

.fs-styleguide_header {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-alternate);
  background-image: radial-gradient(circle at 100% 100%, #dd23bb40, #0000 40%), radial-gradient(circle at 0 100%, #2d62ff4d, #0000 60%);
}

.heading-style-h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.page-wrapper {
  position: relative;
}

.fs-styleguide_label {
  background-color: var(--background-color--background-tertiary);
  color: var(--text-color--text-alternate);
  border-radius: .25rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: .25rem .75rem .3rem;
  font-weight: 600;
  display: flex;
}

.fs-styleguide_label.is-tag {
  background-color: var(--background-color--background-tertiary);
}

.heading-style-h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.icon-height-medium {
  height: 2rem;
}

.text-style-allcaps {
  text-transform: uppercase;
}

.overflow-scroll {
  overflow: scroll;
}

.form_message-error {
  background-color: var(--background-color--background-error);
  color: var(--text-color--text-error);
  margin-top: .75rem;
  padding: .75rem;
}

.icon-height-large {
  height: 3rem;
}

.text-align-center {
  text-align: center;
}

.form_component {
  margin-bottom: 0;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 12rem;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.text-style-quote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.button {
  float: none;
  clear: none;
  background-color: var(--background-color--background-secondary);
  color: var(--text-color--text-alternate);
  text-align: center;
  border-radius: .5rem;
  padding: .6rem 1.8rem;
  font-size: 1.3rem;
  font-weight: 300;
  transition: all .4s;
}

.button:hover {
  background-color: var(--base-color-brand--orange-dark);
}

.button.is-text {
  color: #000;
  background-color: #0000;
  border: 2px solid #0000;
}

.button.is-small {
  padding: .5rem 1.25rem;
}

.button.is-large {
  padding: 1rem 2rem;
}

.button.is-secondary {
  border: 1px solid var(--border-color--border-alternate);
  color: var(--text-color--text-primary);
  background-color: #0000;
}

.button.is-icon {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.button.is-brand {
  background-color: var(--background-color--background-secondary);
}

.button.btn-see-more {
  border-color: #0000;
}

.fs-styleguide_classes {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-size-medium {
  color: var(--base-color-brand--blue);
  font-size: 1.25rem;
}

.text-size-medium.white {
  color: var(--link-color--link-alternate);
}

.fs-styleguide_section {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.fs-styleguide_section.is-vertical {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-columns: 1fr;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hide {
  display: none;
}

.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.container-medium {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.form_radio {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.fs-styleguide_spacing-all {
  display: none;
}

.spacer-huge {
  width: 100%;
  padding-top: 6rem;
}

.spacer-medium {
  width: 100%;
  padding-top: 2rem;
}

.fs-styleguide_spacer-box {
  background-color: #2d40ea1a;
  border: 1px dashed #2d40ea;
  width: 100%;
  position: relative;
}

.spacer-xsmall {
  width: 100%;
  padding-top: .5rem;
}

.spacer-small {
  width: 100%;
  padding-top: 1rem;
}

.spacer-xhuge {
  width: 100%;
  padding-top: 8rem;
}

.spacer-tiny {
  width: 100%;
  padding-top: .125rem;
}

.spacer-xxsmall {
  width: 100%;
  padding-top: .25rem;
}

.spacer-xxhuge {
  width: 100%;
  padding-top: 12rem;
}

.spacer-xxhuge.alt {
  padding-top: 10rem;
}

.spacer-xlarge {
  width: 100%;
  padding-top: 4rem;
}

.spacer-large {
  padding-top: 3rem;
}

.spacer-xxlarge {
  width: 100%;
  padding-top: 5rem;
}

.fs-styleguide_message {
  background-color: var(--background-color--background-warning);
  color: var(--text-color--text-warning);
  border-radius: .25rem;
  padding: .25rem .5rem;
  font-size: .875rem;
}

.nav_component {
  background-color: #0000;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  inset: 0% 0% auto;
}

.nav_container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.nav_logo {
  width: 14rem;
  margin-bottom: 0;
  transition: all .4s;
}

.nav_menu {
  text-align: center;
  background-color: #fff;
  background-image: url('../images/footer-gradient.png');
  background-position: 50% 0;
  background-repeat: repeat-x;
  background-size: 1px;
  height: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  position: absolute;
}

.nav_menu_link {
  color: var(--base-color-brand--blue);
  text-align: center;
  padding: 1rem;
  font-style: normal;
  transition: all .4s;
  display: inline-block;
}

.nav_menu_link:hover, .nav_menu_link.w--current {
  color: var(--base-color-brand--orange);
}

.nav_button {
  margin-right: -6px;
  padding: 0;
  transition: all .4s;
}

.nav_button.w--open {
  background-color: #0000;
}

.aspect-ratio-square {
  aspect-ratio: 1;
  object-fit: cover;
}

.aspect-ratio-portrait {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.aspect-ratio-landscape {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.aspect-ratio-widescreen {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.background-color-tertiary {
  background-color: var(--background-color--background-tertiary);
}

.fs-styleguide_hero-label {
  color: var(--text-color--text-primary);
  text-transform: uppercase;
  background-color: #eee;
  border-radius: .25rem;
  padding: .25rem .375rem;
  font-size: .75rem;
  font-weight: 500;
  text-decoration: none;
}

.hero_content {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start stretch;
  max-width: 100rem;
  padding-top: 40px;
  display: grid;
  position: relative;
}

.hero_image {
  border-radius: 1rem;
  margin-top: 0;
}

.hero_heading {
  color: var(--base-color-brand--blue);
  max-width: 750px;
  margin-bottom: 2rem;
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.section-hero {
  color: #fff;
  background-color: #0000;
  background-image: none;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  display: flex;
  position: relative;
}

.hero_grid {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.fs-styleguide_heading-header {
  font-size: 6rem;
}

.navbar {
  background-color: #0000;
  position: fixed;
  inset: 0% 0% auto;
}

.footer {
  color: #ddd;
  background-color: #0000;
  background-image: url('../images/footer-gradient.png');
  background-position: 50% 100%;
  background-repeat: repeat-x;
  background-size: auto 260px;
}

.footer_col {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  position: relative;
}

.footer_grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 8rem;
  grid-template-rows: auto;
  grid-template-columns: 3fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.footer_logo {
  width: 16rem;
  display: block;
}

.footer_link {
  color: var(--base-color-brand--blue);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  transition: all .4s;
  display: block;
}

.footer_link:hover, .footer_link.w--current {
  color: var(--base-color-brand--orange);
}

.footer_link_wrap {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: end start;
  display: grid;
}

.body {
  color: var(--base-color-brand--blue);
  font-family: Lexend Variablefont Wght, Tahoma, sans-serif;
}

.highlight-article {
  color: var(--base-color-brand--blue);
  width: 50%;
  margin-bottom: 40px;
  transition: all .4s;
}

.highlight-article:hover {
  color: var(--base-color-brand--orange);
}

.more-news {
  position: relative;
}

.footer-cta {
  background-image: url('../images/cta-bg.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 802px;
  width: 810px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 128px;
}

.body-2 {
  color: var(--base-color-brand--blue);
  font-family: Lexend Variablefont Wght, Tahoma, sans-serif;
}

.hero-highlights {
  color: var(--base-color-brand--blue);
}

.icon {
  color: var(--base-color-brand--blue);
  font-size: 2.2rem;
  transition: all .4s;
}

.border-default {
  border: 1px solid var(--base-color-brand--blue);
  border-radius: 16px;
  padding: 45px 46px 39px;
  position: relative;
}

.border-default.article-first {
  max-width: 70%;
  min-height: 272px;
  margin-bottom: 80px;
  position: static;
}

.article-meta {
  z-index: 2;
  color: var(--base-color-brand--orange);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-size: 9px;
  font-weight: 300;
  display: block;
  position: relative;
}

.article-meta.lg {
  font-size: 14px;
}

.link-meta {
  color: var(--base-color-brand--orange);
  text-decoration: none;
  transition: all .4s;
}

.link-meta:hover {
  color: var(--base-color-brand--blue);
}

.article-heading {
  max-width: 500px;
  font-size: 2rem;
  line-height: 1.2;
}

.heading {
  border-bottom: 4px solid #000;
  border-radius: 0;
}

.border-thick {
  background-color: var(--base-color-brand--blue);
  background-image: linear-gradient(90deg, var(--base-color-brand--blue), white);
  width: 100%;
  height: 4px;
  margin-top: 14px;
  margin-bottom: 14px;
}

.article-highlight-meta {
  color: var(--base-color-brand--orange);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-size: 9px;
  font-weight: 300;
}

.link-highlight-meta {
  color: var(--base-color-brand--blue);
  text-decoration: none;
}

.article-highlight-heading {
  font-size: 1.3rem;
  line-height: 1.2;
  display: inline;
}

.link {
  text-decoration: none;
  transition: all .4s;
}

.link:hover {
  color: var(--base-color-neutral--white);
}

.link.alt:hover {
  color: var(--base-color-brand--blue);
}

.article-highlight-link {
  color: var(--base-color-brand--orange);
  padding-left: 7px;
  font-size: 1rem;
  text-decoration: none;
  display: inline;
}

.quick-stack {
  grid-column-gap: 44px;
  grid-row-gap: 44px;
  padding: 10px 0;
}

.column {
  padding-left: 0;
  padding-right: 0;
}

.small-section-header {
  font-weight: 600;
}

.section-header-more {
  color: var(--base-color-neutral--white);
  text-align: right;
  font-weight: 600;
  text-decoration: none;
  transition: all .4s;
}

.section-header-more:hover, .bold-text {
  color: var(--base-color-brand--orange);
}

.quick-stack-2 {
  padding-left: 0;
  padding-right: 0;
}

.cell {
  justify-content: center;
  align-items: center;
  padding-top: 25px;
  padding-bottom: 25px;
}

.cell.text-align-center {
  justify-content: center;
  align-items: center;
}

.cell-2 {
  justify-content: flex-start;
  align-items: center;
}

.cell-2.text-align-center {
  justify-content: center;
  align-items: center;
}

.cell-3 {
  justify-content: flex-start;
  align-items: center;
}

.cell-3.text-align-center {
  justify-content: center;
  align-items: center;
}

.cell-4 {
  justify-content: flex-start;
  align-items: center;
}

.cell-4.text-align-center {
  justify-content: center;
  align-items: center;
}

.cell-5 {
  justify-content: flex-start;
  align-items: center;
}

.cell-5.text-align-center {
  justify-content: center;
  align-items: center;
}

.cell-6 {
  justify-content: flex-start;
  align-items: center;
}

.cell-6.text-align-center {
  justify-content: center;
  align-items: center;
}

.link-icon {
  color: var(--base-color-brand--orange);
  text-align: center;
  margin-top: 0;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  position: static;
}

.link-orador {
  color: var(--base-color-brand--blue);
  margin-left: 37px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .4s;
  position: relative;
  transform: scale(1);
}

.link-orador:hover {
  transform: scale(1.03);
}

.link-orador-cargo {
  color: var(--base-color-brand--blue);
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-top: 4px;
  font-size: .5rem;
  font-weight: 300;
}

.cell-7 {
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
}

.cell-8, .cell-9 {
  justify-content: center;
  align-items: center;
}

.cell-10 {
  justify-content: center;
  align-items: flex-end;
}

.cell-11 {
  justify-content: center;
  align-items: flex-start;
}

.icon-hp {
  margin-bottom: 10px;
}

.orador-thumbnail {
  aspect-ratio: 1;
  border-radius: 20px;
  width: 210px;
  max-width: 100%;
  margin-bottom: 10px;
  overflow: hidden;
}

.column-2 {
  box-sizing: border-box;
  justify-content: flex-start;
  display: flex;
}

.cell-apoios {
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
}

.article-heading-first {
  pointer-events: none;
  margin-top: -10px;
  margin-bottom: 30px;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.15;
}

.article-p-first {
  pointer-events: none;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.4;
}

.column-3 {
  padding-left: 0;
  padding-right: 15px;
}

.column-4 {
  padding-left: 15px;
  padding-right: 0;
}

.column-4.animate-from-right-2 {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
}

.cta-heading {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.8rem;
  font-weight: 300;
}

.checkbox-label {
  max-width: 510px;
  font-size: .8rem;
  font-weight: 300;
  line-height: 1.3;
}

.text-field {
  float: left;
  border: 1px solid var(--base-color-brand--blue);
  -webkit-text-stroke-color: var(--base-color-brand--blue-fade);
  background-color: #0000;
  border-radius: 12px;
  width: 100%;
  min-height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 1.1rem;
}

.text-field::placeholder {
  color: var(--base-color-brand--blue-fade);
  -webkit-text-stroke-color: var(--base-color-system--success-green-dark);
}

.quick-stack-3 {
  grid-column-gap: 21px;
  padding: 0;
}

.cell-12 {
  justify-content: center;
  align-items: flex-start;
}

.cell-13 {
  justify-content: flex-start;
  align-items: flex-end;
}

.form-block {
  margin-bottom: 0;
}

.checkbox {
  border: 1px solid var(--base-color-brand--blue);
}

.column-5 {
  padding-left: 0;
  padding-right: 40px;
}

.column-6 {
  padding-left: 0;
  padding-right: 20px;
}

.heading-article {
  font-size: 3.6rem;
  font-weight: 300;
}

.orador-thumb-article {
  aspect-ratio: 1;
  border-radius: 20px;
  width: 128px;
  max-width: 100%;
  margin-bottom: 0;
  position: absolute;
  inset: auto -20px -100px auto;
  overflow: hidden;
}

.article-heading-small {
  padding-top: 0;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
}

.column-7 {
  padding-left: 0;
  padding-right: 15px;
}

.column-8 {
  padding-left: 15px;
  padding-right: 0;
}

.column-9 {
  padding-left: 15px;
  padding-right: 15px;
}

.article-thumbnail {
  pointer-events: none;
  border-radius: 16px;
  width: 260px;
  max-width: 100%;
  height: 150px;
  margin-top: -85px;
  margin-bottom: 20px;
  overflow: hidden;
}

.image {
  border-radius: 12px;
  margin-top: -140px;
  margin-bottom: 60px;
}

.social-icons {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  justify-content: flex-start;
  align-items: center;
  margin-left: -7px;
  margin-right: -7px;
  display: block;
}

.text-body {
  font-size: .9rem;
  font-weight: 300;
}

.mid-article-heading {
  margin-bottom: 30px;
  font-size: 2rem;
  line-height: 1.2;
}

.quick-stack-4 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  padding: 0;
}

.article-thumbnail-highlight {
  float: none;
  border-radius: 16px;
  width: 40%;
  height: 250px;
  margin-top: -80px;
  position: absolute;
  inset: auto 0 auto auto;
  overflow: hidden;
}

.list-nav {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.list-nav-item {
  color: var(--base-color-brand--blue);
  text-align: center;
  width: 40px;
  height: 40px;
  margin-left: 2px;
  margin-right: 2px;
  padding: 8px 0;
  transition: all .4s;
  display: inline-block;
}

.list-nav-item:hover {
  color: var(--base-color-brand--orange);
}

.list-nav-item-active {
  color: var(--base-color-neutral--white);
  text-align: center;
  background-image: url('../images/list-nav-active-bg.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 42px;
  width: 50px;
  height: 42px;
  margin-left: 0;
  margin-right: 0;
  padding: 9px 10px 8px;
  font-weight: 600;
  display: inline-block;
}

.list-nav-right {
  color: var(--base-color-brand--blue);
  text-align: center;
  background-image: url('../images/nav-arrow-right.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 8px;
  width: 50px;
  height: 40px;
  margin-left: 0;
  margin-right: 0;
  padding: 8px 0;
  line-height: 6;
  display: inline-block;
}

.orador-thumb-single {
  border-radius: 20px;
  width: 180px;
  margin-top: -50px;
  margin-bottom: 0;
  margin-right: -50px;
  padding-right: 0;
  position: absolute;
  inset: 0 0% auto auto;
}

.container-small-plus {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.article-sub-heading {
  font-weight: 300;
  line-height: 2;
}

.image-3 {
  position: absolute;
  top: -150px;
  right: -200px;
}

.big-article-meta {
  color: var(--base-color-brand--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 300;
}

.agenda-heading {
  max-width: 570px;
  margin-bottom: 30px;
  font-size: 3.7rem;
  font-weight: 300;
  line-height: 1.2;
}

.agenda-item-heading {
  color: var(--base-color-brand--blue);
  margin-bottom: 0;
  padding-bottom: 5px;
  padding-right: 5px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  display: block;
}

.agenda-list-item {
  float: left;
  width: 50%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.agenda-list-thumb {
  float: left;
  border-radius: 8px;
  max-width: 50px;
  margin-bottom: 10px;
  margin-right: 10px;
  padding-bottom: 0;
}

.agenda-list-name {
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.agenda-list-cargo {
  text-transform: uppercase;
  max-width: 220px;
  font-size: .6rem;
  font-weight: 300;
  line-height: 1.2;
}

.agenda-data-meta {
  color: var(--base-color-neutral--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: .7rem;
  font-weight: 300;
}

.agenda-data {
  color: var(--base-color-neutral--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  max-width: none;
  margin-top: 18px;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.1;
}

.agenda-item-date {
  text-align: center;
  height: 160px;
  padding-left: 0;
  padding-right: 40px;
  display: inline-block;
}

.agenda-data-bg {
  z-index: -1;
  border-radius: 14px;
  position: absolute;
  left: 0;
}

.agenda-ver-mais {
  color: var(--base-color-neutral--white);
  font-size: .9rem;
  font-weight: 600;
  transition: all .4s;
}

.agenda-ver-mais:hover {
  color: var(--base-color-brand--orange);
}

.bold-text-2 {
  color: var(--base-color-brand--orange);
  font-size: 1rem;
}

.agenda-item-wrap {
  margin-bottom: 40px;
}

.agenda-item-bg {
  z-index: -1;
  background-image: url('../images/agenda-bg-gradient.png');
  background-position: 100%;
  background-repeat: repeat-y;
  background-size: 304px;
  border-radius: 14px;
  width: 50%;
  height: 100%;
  margin-top: -30px;
  margin-bottom: -30px;
  margin-right: 0;
  position: absolute;
  right: 0;
}

.spacer-negative {
  height: 1px;
  margin-bottom: -6rem;
  padding-bottom: 0;
}

.hero-bg {
  margin-bottom: -200px;
  margin-left: -150px;
  position: absolute;
  inset: auto auto 50% 50%;
}

.orador-bg {
  z-index: -1;
  justify-content: center;
  align-items: center;
  width: 214px;
  max-width: none;
  height: 214px;
  margin-left: 0;
  display: flex;
  position: absolute;
  bottom: -30px;
  left: -37px;
  overflow: hidden;
}

.orador-bg.rotate-1 {
  transform: rotate(0);
}

.orador-bg.rotate-2 {
  transform: rotate(90deg);
}

.orador-bg.rotate-3 {
  transform: rotate(180deg);
}

.orador-bg.rotate-4 {
  transform: rotate(270deg);
}

.quick-stack-5 {
  padding-left: 0;
  padding-right: 0;
}

.icon-bg {
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
}

.icon-bg.rotate-1 {
  transform: rotate(0);
}

.icon-bg.rotate-2 {
  transform: rotate(45deg);
}

.icon-bg.rotate-3 {
  transform: rotate(90deg);
}

.icon-bg.rotate-4 {
  transform: rotate(135deg);
}

.icon-bg.rotate-5 {
  transform: rotate(180deg);
}

.icon-bg.rotate-6 {
  transform: rotate(225deg);
}

.highlight-wrap-image-1 {
  border-radius: 12px;
  width: 680px;
  height: 360px;
  margin-top: -110px;
  margin-bottom: 40px;
  margin-left: 70px;
  position: static;
  overflow: clip;
}

.highlight-article-right {
  float: right;
  color: var(--base-color-brand--blue);
  width: 50%;
  margin-bottom: 40px;
  margin-right: 50px;
  transition: all .4s;
}

.highlight-article-right:hover {
  color: var(--base-color-brand--orange);
}

.highlight-wrap-image-2 {
  border-radius: 12px;
  width: 415px;
  height: 360px;
  margin: -200px -95px 40px auto;
  position: static;
  overflow: clip;
}

.highlight-wrap-image-3 {
  border-radius: 12px;
  width: 415px;
  height: 360px;
  margin: -340px auto 40px -133px;
  position: static;
  overflow: clip;
}

.highlight-article-3 {
  color: var(--base-color-brand--blue);
  width: 50%;
  margin-bottom: 40px;
  margin-left: 86px;
  transition: all .4s;
}

.highlight-article-3:hover {
  color: var(--base-color-brand--orange);
}

.news-bg {
  background-image: url('../images/news-bg.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 604px;
  width: 600px;
  height: 600px;
  margin-top: -190px;
  margin-right: -780px;
  display: block;
  position: absolute;
  inset: 0% 50% auto auto;
}

.more-news-bg {
  background-image: url('../images/more-news-bg.png');
  background-position: 50% 70%;
  background-repeat: no-repeat;
  background-size: 906px;
  position: absolute;
  inset: 0%;
}

.preloader {
  z-index: 99999;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.preloader-trigger {
  display: none;
}

.preloader-content {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.preloader-brand {
  max-width: 9rem;
  transition: transform .2s;
}

.orador-bg-img {
  width: 150%;
  max-width: none;
  height: 150%;
}

.orador-bg-img.rotate-1 {
  transform: rotate(0);
}

.orador-bg-img.rotate-2 {
  transform: rotate(45deg);
}

.orador-bg-img.rotate-3 {
  transform: rotate(90deg);
}

.orador-bg-img.rotate-4 {
  transform: rotate(135deg);
}

.orador-bg-img.rotate-5 {
  transform: rotate(180deg);
}

.orador-bg-img.rotate-6 {
  transform: rotate(225deg);
}

.orador-bg-img.rotate-7 {
  transform: rotate(270deg);
}

.orador-bg-img.rotate-8 {
  transform: rotate(315deg);
}

.hero_heading-2 {
  margin-bottom: 2.5rem;
  font-size: 3.375rem;
  font-weight: 400;
}

.hero_para {
  color: #222f54;
  max-width: 30rem;
  font-size: 1.875rem;
  line-height: 1.3;
}

.button_text {
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: .875rem;
}

.button_icon {
  width: 24px;
}

.button_wrap {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #222f54;
  cursor: pointer;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.hero_bottom_para {
  color: #222f54;
  max-width: 50rem;
  font-size: 3.375rem;
  line-height: 1.1;
}

.text-block-17 {
  display: inline;
}

.border-thick-red {
  background-color: var(--base-color-brand--blue);
  background-image: linear-gradient(90deg, var(--base-color-brand--orange), white);
  width: 100%;
  height: 4px;
  margin-top: 14px;
  margin-bottom: 14px;
}

.section-hero-dark {
  background-color: var(--base-color-brand--blue-dark);
  color: #fff;
  background-image: none;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  display: flex;
  position: relative;
}

.hero_heading_white {
  color: var(--base-color-neutral--white);
  max-width: 750px;
  margin-bottom: 2rem;
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.small-section-header-white {
  color: var(--base-color-neutral--white);
  font-weight: 600;
}

.txt-white {
  color: var(--base-color-neutral--white);
}

.bg-hero {
  z-index: 0;
  height: 100%;
  min-height: 100svh;
  position: absolute;
  inset: 0%;
}

.hero-video-overlay {
  z-index: 0;
  background-color: var(--base-color-brand--blue-dark);
  opacity: .6;
  position: absolute;
  inset: 0%;
}

.play-pause-button {
  border: 1px solid var(--base-color-brand--orange);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  width: 36px;
  height: 36px;
}

.play-state, .pause-state {
  line-height: 1;
}

.image-4 {
  margin-bottom: 3px;
}

.image-5 {
  margin-bottom: 3px;
  margin-left: 3px;
}

.nav_logo-negative {
  z-index: 2;
  width: 14rem;
  margin-bottom: 0;
  transition: all .4s;
  position: absolute;
  inset: 0%;
}

.article-highlight {
  color: var(--base-color-neutral--white);
  transition: all .4s;
}

.article-highlight:hover {
  color: var(--base-color-brand--orange);
}

.article-highlight.alt {
  color: var(--base-color-brand--blue);
}

.article-highlight.alt:hover {
  color: var(--base-color-brand--orange);
}

.link-round {
  aspect-ratio: 1;
  justify-content: center;
  align-items: center;
  width: 180px;
  max-width: 100%;
  transition: all .4s;
  display: flex;
  position: relative;
  transform: translate(0);
}

.link-round:hover {
  transform: scale(1.07);
}

.article-full-link {
  z-index: 1;
  position: absolute;
  inset: 0%;
}

.article {
  color: var(--base-color-brand--blue);
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  transition: all .4s;
  display: flex;
  position: relative;
}

.article:hover {
  color: var(--base-color-brand--orange);
}

.article.first {
  height: 100%;
  min-height: 100%;
}

.article.article-first {
  position: static;
}

.article.full-height {
  height: 100%;
}

.columns {
  display: flex;
}

.article-top {
  position: relative;
}

.section-more {
  color: var(--base-color-brand--blue);
  text-align: right;
  font-weight: 600;
  text-decoration: none;
  transition: all .4s;
}

.section-more:hover {
  color: var(--base-color-brand--orange);
}

.social-link {
  padding: 7px;
  transition: all .2s;
}

.social-link:hover {
  opacity: .5;
}

.navbar-bg {
  z-index: -1;
  position: absolute;
  inset: 0%;
}

.nav-events {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 25px;
}

.link-navbar-block {
  transform: scale3d(1none, 1none, 1none);
  color: var(--base-color-brand--blue);
  transform-style: preserve-3d;
  justify-content: center;
  align-items: center;
  width: 125px;
  max-width: 100%;
  height: 125px;
  padding: 5px;
  transition: all .4s;
  display: flex;
  position: relative;
}

.link-navbar-block:hover {
  color: var(--base-color-brand--orange);
  transform: scale(1.05);
}

.link-navbar-block.w--current {
  color: var(--base-color-brand--orange);
}

.icon-bg-nav {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.icon-bg-nav.rotate-1 {
  transform: rotate(0);
}

.icon-bg-nav.rotate-2 {
  transform: rotate(45deg);
}

.icon-bg-nav.rotate-3 {
  transform: rotate(90deg);
}

.icon-bg-nav.rotate-4 {
  transform: rotate(135deg);
}

.icon-bg-nav.rotate-5 {
  transform: rotate(180deg);
}

.icon-bg-nav.rotate-6 {
  transform: rotate(225deg);
}

.link-icon-nav {
  text-align: center;
  color: inherit;
  margin-top: 0;
  font-family: Lexend Variablefont Wght, Tahoma, sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  position: relative;
}

.icon-nav {
  margin-bottom: 5px;
}

.text-icon-nav {
  color: inherit;
  font-size: .9rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.1;
}

.cell-14, .cell-15, .cell-16, .cell-17, .cell-18, .cell-19 {
  justify-content: center;
  align-items: center;
}

.nav-events-wrap {
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
}

.nav-events-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: stretch stretch;
  display: grid;
}

.collection-item {
  justify-content: center;
  align-items: center;
  display: flex;
}

.list-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: -60px;
  display: grid;
}

.list-grid.alt {
  margin-bottom: 0;
}

.article-meta-link {
  vertical-align: middle;
  transition: all .4s;
  display: inline-block;
}

.article-meta-link:hover {
  color: var(--base-color-brand--blue);
}

.item-article-info {
  margin-bottom: 12px;
  font-size: .8rem;
}

.text-block-18 {
  text-transform: none;
  font-size: 1rem;
}

.item-article-categories, .item-article-date-dot {
  vertical-align: middle;
  display: inline-block;
}

.no-category {
  background-color: #0000;
  padding: 0;
}

.item-article-div {
  vertical-align: middle;
  padding-left: 7px;
  padding-right: 7px;
  display: inline-block;
}

.item-article-date-field {
  vertical-align: middle;
  font-size: .8rem;
  display: inline-block;
}

.item-article-date {
  letter-spacing: 2.5px;
  vertical-align: middle;
  font-size: .8rem;
  display: inline-block;
}

.collection-item-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  vertical-align: middle;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: inline-block;
}

.article-category {
  vertical-align: middle;
  margin-right: 7px;
  transition: all .4s;
  display: inline;
}

.article-category:hover {
  color: var(--base-color-brand--blue);
}

.article-meta-no-info {
  z-index: 2;
  color: var(--base-color-brand--orange);
  letter-spacing: 1px;
  text-transform: uppercase;
  vertical-align: middle;
  margin-right: 7px;
  font-size: 9px;
  font-weight: 300;
  display: inline-block;
  position: relative;
}

.empty-state {
  background-color: #0000;
}

.empty {
  background-color: #0000;
  padding: 0;
  display: none;
}

.btn-navigation {
  color: var(--base-color-brand--blue);
  font-size: 1rem;
}

.icon-2 {
  vertical-align: middle;
  width: 20px;
  height: 20px;
}

.text-block-19 {
  vertical-align: middle;
  display: inline;
}

.article-wrap {
  margin-bottom: 60px;
}

.article-wrap.alt {
  margin-bottom: 0;
}

.no-results {
  text-align: center;
  background-color: #0000;
  padding: 0;
}

.article-date {
  vertical-align: middle;
  display: inline-block;
}

.article-meta-link-w {
  vertical-align: middle;
  transition: all .4s;
  display: inline-block;
}

.article-meta-link-w:hover {
  color: var(--base-color-neutral--white);
}

.collection-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-events {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-events-wrap {
  padding-top: 30px;
  padding-bottom: 30px;
}

.list-grid-oradores {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: -40px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: grid;
}

.list-grid-oradores.alt {
  margin-bottom: 0;
}

.orador-wrap {
  margin-bottom: 40px;
}

.orador-wrap.alt {
  margin-bottom: 0;
}

.name-orador {
  line-height: 1.3;
}

.orador-inner-thumb {
  float: none;
  aspect-ratio: 1;
  border-radius: 16px;
  width: 180px;
  margin-top: -50px;
  margin-right: -50px;
  position: absolute;
  inset: 0 0 auto auto;
  overflow: hidden;
}

.image-6 {
  object-fit: cover;
}

.highlight-img {
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.video-player {
  border-radius: 12px;
  width: 100%;
  margin-top: -140px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.text-body-wrap {
  margin-top: 60px;
}

.video {
  display: block;
}

.footer-credits {
  color: var(--base-color-brand--blue);
  text-align: center;
  margin-top: 6rem;
  font-size: .8rem;
}

.footer_link_credits {
  color: var(--base-color-brand--blue);
  font-size: .8rem;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  transition: all .4s;
}

.footer_link_credits:hover, .footer_link_credits.w--current {
  color: var(--base-color-brand--orange-dark);
}

.error-message {
  text-align: center;
}

.success-message {
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 0;
}

.heading-center {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 300;
}

.column-right-flex {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  padding-left: 15px;
  padding-right: 0;
  display: flex;
}

.column-right-flex.animate-from-right-2 {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
}

.column-left-flex {
  flex-flow: column;
  align-items: stretch;
  height: 100%;
  padding-left: 0;
  padding-right: 15px;
  display: flex;
}

.link-orador-highlight {
  color: var(--base-color-brand--blue);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .4s;
  position: relative;
}

.link-orador-highlight:hover {
  color: var(--base-color-brand--orange);
}

.txt-meta {
  color: var(--base-color-brand--orange);
  text-decoration: none;
  transition: all .4s;
}

.agenda-item-content {
  margin-top: -30px;
  margin-bottom: 30px;
  padding: 30px 40px 20px 0;
}

.nav_menu_link_dropdown {
  color: var(--base-color-brand--blue);
  text-align: center;
  padding: 1rem;
  font-style: normal;
  transition: all .4s;
  display: inline-block;
}

.nav_menu_link_dropdown:hover, .nav_menu_link_dropdown.w--current {
  color: var(--base-color-brand--orange);
}

.dropdown-toggle {
  color: inherit;
  padding: 0 20px 0 0;
}

.icon-3 {
  margin-right: 0;
}

.dropdown-list {
  background-color: var(--base-color-neutral--white);
  border-radius: 7px;
  min-width: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  display: none;
  position: absolute;
  top: 90%;
  left: 1rem;
  right: 1rem;
}

.dropdown-list.min-width {
  min-width: auto;
}

.dropdown-link {
  color: var(--base-color-brand--blue);
  text-align: center;
  padding: 3px 1rem;
  transition: all .4s;
}

.dropdown-link:hover, .dropdown-link.w--current {
  color: var(--base-color-brand--orange);
}

.footer_link_dropdown {
  color: var(--base-color-brand--blue);
  text-align: center;
  padding-bottom: 5px;
  font-style: normal;
  font-weight: 600;
  transition: all .4s;
  display: inline-block;
}

.footer_link_dropdown:hover, .footer_link_dropdown.w--current {
  color: var(--base-color-brand--orange);
}

.dropdown-list-footer {
  background-color: var(--base-color-neutral--white);
  border-radius: 7px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}

.dropdown-list-footer.min-width {
  min-width: auto;
}

.dropdown-link-footer {
  color: var(--base-color-brand--blue);
  text-align: center;
  padding: 2px 1rem;
  transition: all .4s;
}

.dropdown-link-footer:hover, .dropdown-link-footer.w--current {
  color: var(--base-color-brand--orange);
}

.link-round-wrap, .link-navbar-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
}

.article-thumbnail-img, .article-thumbnail-highlight-img, .orador-thumbnail-img, .orador-inner-thumb-img, .orador-thumb-article-img {
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.spacer-xxhuge-alt {
  width: 100%;
  padding-top: 10rem;
}

.spacer-xxhuge-alt.alt {
  padding-top: 10rem;
}

.thumbnail-inner {
  aspect-ratio: 16 / 9;
}

.thumbnail-inner-img {
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.link-category {
  color: var(--base-color-brand--blue);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .4s;
  position: relative;
}

.link-category:hover {
  color: var(--base-color-brand--orange);
}

.meta-info {
  color: var(--base-color-brand--blue);
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-top: 4px;
  font-size: .5rem;
  font-weight: 300;
}

.news-filters {
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.news_link {
  color: var(--base-color-brand--blue);
  text-align: center;
  padding: 15px 20px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  transition: all .4s;
  display: block;
}

.news_link:hover, .news_link.w--current, .news_link.active {
  color: var(--base-color-brand--orange);
}

@media screen and (min-width: 1280px) {
  .hero_heading-2 {
    font-size: 3.375rem;
  }

  .hero_bottom_para {
    max-width: 60rem;
  }
}

@media screen and (max-width: 991px) {
  .padding-xlarge {
    padding: 3rem;
  }

  .margin-xlarge {
    margin: 3rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 8rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .margin-xxlarge {
    margin: 4rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-xxhuge {
    margin: 8rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .hide-tablet {
    display: none;
  }

  .fs-styleguide_2-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .heading-style-h3.text-align-center {
    font-size: 2.8rem;
  }

  .fs-styleguide_1-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .fs-styleguide_heading-medium {
    font-size: 3rem;
  }

  .fs-styleguide_4-col {
    grid-template-columns: 1fr;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .fs-styleguide_3-col {
    grid-template-columns: 1fr;
  }

  .main-wrapper {
    position: relative;
    overflow: hidden;
  }

  .fs-styleguide_section {
    grid-column-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .spacer-huge {
    padding-top: 5rem;
  }

  .spacer-medium {
    padding-top: 1.5rem;
  }

  .spacer-xhuge {
    padding-top: 6rem;
  }

  .spacer-xxhuge {
    padding-top: 8rem;
  }

  .spacer-xlarge {
    padding-top: 3rem;
  }

  .spacer-large {
    padding-top: 2.5rem;
  }

  .spacer-xxlarge {
    padding-top: 4rem;
  }

  .nav_button {
    color: #fff;
  }

  .hero_heading {
    font-size: 3.5rem;
  }

  .section-hero {
    max-width: 100%;
    padding-top: 3rem;
    overflow: hidden;
  }

  .hero_grid {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .fs-styleguide_heading-header {
    font-size: 4rem;
  }

  .footer_grid {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .footer_link {
    font-size: .9rem;
  }

  .highlight-article.border-default {
    width: 100%;
    margin-bottom: 100px;
  }

  .footer-cta {
    background-size: 100%;
    width: 100%;
  }

  .border-default {
    padding: 30px;
  }

  .border-default.article-first {
    max-width: 100%;
  }

  .article-heading {
    font-size: 1.3rem;
  }

  .article-highlight-heading {
    font-size: 1.1rem;
  }

  .link-orador {
    margin-left: 20px;
  }

  .article-heading-first {
    margin-top: -5px;
    font-size: 2rem;
  }

  .article-p-first {
    font-size: 1.1rem;
  }

  .cta-heading {
    margin-bottom: 30px;
    font-size: 1.4rem;
  }

  .column-5 {
    padding-right: 40px;
  }

  .column-6 {
    padding-right: 0;
  }

  .heading-article {
    font-size: 2.3rem;
  }

  .orador-thumb-article {
    margin-top: 20px;
    margin-bottom: 0;
    position: relative;
    bottom: 0;
    right: 0;
  }

  .article-heading-small {
    font-size: .9rem;
  }

  .article-thumbnail {
    width: 100%;
  }

  .image {
    margin-top: 40px;
  }

  .article-thumbnail-highlight {
    width: 100%;
    margin-top: -70px;
    margin-bottom: 30px;
    position: relative;
  }

  .orador-thumb-single {
    width: 160px;
    margin-right: -20px;
  }

  .image-3 {
    max-width: 80%;
  }

  .agenda-heading {
    font-size: 3rem;
  }

  .agenda-item-heading {
    font-size: 1.4rem;
  }

  .agenda-data {
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
  }

  .agenda-item-date {
    padding-right: 20px;
  }

  .agenda-data-bg {
    position: absolute;
  }

  .hero-bg {
    max-width: 80%;
    margin-bottom: -140px;
    margin-left: -70px;
  }

  .orador-bg {
    width: 190px;
    height: 190px;
    bottom: -20px;
    left: -20px;
  }

  .quick-stack-5 {
    grid-column-gap: 76px;
    grid-row-gap: 76px;
  }

  .highlight-wrap-image-1 {
    width: 100%;
    margin-top: -100px;
    margin-left: 0;
    display: inline-block;
  }

  .highlight-article-right.border-default {
    width: 100%;
    margin-bottom: 100px;
    margin-right: auto;
  }

  .highlight-wrap-image-2 {
    width: 100%;
    margin-top: -100px;
    margin-right: auto;
    display: inline-block;
  }

  .highlight-wrap-image-3 {
    width: 100%;
    margin-top: -100px;
    margin-left: auto;
    display: inline-block;
  }

  .highlight-article-3.border-default {
    width: 100%;
    margin-bottom: 0;
    margin-left: auto;
  }

  .hero_heading-2 {
    font-size: 2.5rem;
  }

  .hero_para {
    font-size: 1.25rem;
  }

  .hero_content_box {
    z-index: 2;
    position: relative;
  }

  .hero_bottom_para {
    font-size: 2.5rem;
  }

  .text-block, .text-block-2, .text-block-3, .text-block-4, .text-block-5, .text-block-6, .text-block-7, .text-block-8, .text-block-9, .text-block-10, .text-block-11, .text-block-12, .text-block-13, .text-block-14, .text-block-15, .text-block-16, .text-block-17 {
    font-size: 1rem;
  }

  .section-hero-dark {
    max-width: 100%;
    padding-top: 3rem;
    overflow: hidden;
  }

  .hero_heading_white {
    font-size: 3.5rem;
  }

  .link-round {
    width: 160px;
  }

  .list-grid-oradores {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .name-orador {
    font-size: 1rem;
  }

  .orador-inner-thumb {
    margin-top: -70px;
    margin-bottom: 30px;
    position: relative;
  }

  .video-player {
    margin-top: 40px;
  }

  .footer_link_credits {
    font-size: .9rem;
  }

  .heading-center {
    font-size: 2.3rem;
  }

  .footer_link_dropdown {
    font-size: .9rem;
  }

  .spacer-xxhuge-alt {
    padding-top: 8rem;
  }

  .news-filters {
    flex-flow: wrap;
  }

  .news_link {
    width: 33%;
    padding: 8px;
    font-size: .9rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: .875rem;
  }

  .padding-xlarge {
    padding: 2rem;
  }

  .margin-xlarge {
    margin: 2rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 4.5rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .margin-large {
    margin: 1.5rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-large {
    padding: 1.5rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .padding-medium {
    padding: 1.25rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .margin-medium {
    margin: 1.25rem;
  }

  .margin-xxhuge {
    margin: 4.5rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .heading-style-h3 {
    font-size: 1.5rem;
  }

  .heading-style-h1 {
    font-size: 2.5rem;
  }

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .padding-global.padding-section-small.alt {
    padding-top: 3rem;
  }

  .padding-section-small {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .fs-styleguide_section-header {
    font-size: .875rem;
  }

  .fs-styleguide_heading-medium {
    font-size: 2rem;
  }

  .text-align-right {
    text-align: left;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .heading-style-h4 {
    font-size: 1rem;
  }

  .text-style-nowrap {
    white-space: normal;
  }

  .heading-style-h6 {
    font-size: .75rem;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .text-size-large {
    font-size: 1.25rem;
  }

  .heading-style-h2 {
    font-size: 2rem;
  }

  .heading-style-h5 {
    font-size: .875rem;
  }

  .padding-section-medium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .spacer-huge {
    padding-top: 3.5rem;
  }

  .spacer-huge.alt {
    padding-top: 5rem;
  }

  .spacer-medium {
    padding-top: 1.25rem;
  }

  .spacer-xhuge {
    padding-top: 4rem;
  }

  .spacer-xxhuge {
    padding-top: 4.5rem;
  }

  .spacer-xlarge {
    padding-top: 2rem;
  }

  .spacer-large {
    padding-top: 1.5rem;
  }

  .spacer-xxlarge {
    padding-top: 3rem;
  }

  .nav_logo {
    width: 10rem;
  }

  .nav_menu {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav_menu_link {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .column-5 {
    padding-right: 0;
  }

  .column-6 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .orador-thumb-article {
    position: relative;
  }

  .list-nav-item {
    margin-left: 0;
    margin-right: 0;
  }

  .agenda-item-date {
    margin-bottom: 40px;
    padding-right: 0;
  }

  .agenda-data-bg {
    margin-left: -76px;
    left: 50%;
  }

  .agenda-item-wrap {
    margin-bottom: 20px;
  }

  .preloader-brand {
    max-width: 7rem;
  }

  .nav_logo-negative {
    width: 10rem;
  }

  .nav-events {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .nav-events-list, .list-grid, .grid-events, .list-grid-oradores {
    grid-template-columns: 1fr 1fr;
  }

  .image-6 {
    box-sizing: border-box;
  }

  .video-player {
    margin-top: 0;
  }

  .agenda-item-content {
    padding-right: 30px;
  }

  .nav_menu_link_dropdown {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .spacer-xxhuge-alt {
    padding-top: 4.5rem;
  }
}

@media screen and (max-width: 479px) {
  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .fs-styleguide_row {
    flex-wrap: wrap;
  }

  .heading-style-h3.text-align-center {
    font-size: 2.1rem;
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

  .hide-mobile-portrait {
    display: none;
  }

  .button {
    width: 100%;
    font-size: 1.2rem;
  }

  .nav_logo {
    max-width: 90%;
  }

  .nav_menu {
    background-position: 50% 100%;
  }

  .hero_heading {
    max-width: none;
    font-size: 2.3rem;
  }

  .hero_heading.txt-white {
    line-height: 1.1;
  }

  .footer_grid {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    grid-template-columns: 3fr;
  }

  .footer_logo {
    width: 14rem;
    display: inline-block;
  }

  .footer_brand, .footer_brand.w--current {
    text-align: center;
    width: 100%;
  }

  .footer_link_wrap {
    grid-row-gap: 14px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    place-items: center;
    width: 100%;
  }

  .highlight-article.border-default {
    width: 100%;
    margin-bottom: 70px;
  }

  .footer-cta {
    background-size: cover;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .border-default {
    padding: 30px 30px 28px;
  }

  .border-default.article-first {
    max-width: 100%;
    min-height: 0;
    margin-bottom: 55px;
  }

  .article-heading {
    font-size: 1.2rem;
  }

  .border-thick {
    width: auto;
  }

  .article-highlight-heading {
    font-size: 1.1rem;
    line-height: 1.1;
  }

  .quick-stack-2 {
    padding-bottom: 60px;
  }

  .cell {
    padding-top: 0;
    padding-bottom: 0;
  }

  .link-icon {
    font-size: 1rem;
  }

  .link-orador {
    margin-left: 12px;
    font-size: 1rem;
    line-height: 1.2;
  }

  .cell-7 {
    padding-bottom: 30px;
  }

  .orador-thumbnail {
    border-radius: 15px;
    width: 110px;
    margin-bottom: 10px;
  }

  .article-heading-first {
    font-size: 1.7rem;
  }

  .article-p-first {
    font-size: 1rem;
  }

  .column-3 {
    padding-right: 0;
  }

  .column-4 {
    margin-top: 60px;
    padding-left: 0;
  }

  .cta-heading {
    margin-bottom: 20px;
    font-size: 1.4rem;
  }

  .checkbox-label {
    font-size: .75rem;
  }

  .quick-stack-3 {
    grid-column-gap: 20px;
    grid-row-gap: 0px;
  }

  .cell-13 {
    justify-content: center;
    align-items: center;
  }

  .column-6 {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-right: 0;
  }

  .heading-article {
    margin-bottom: 10px;
    font-size: 1.9rem;
  }

  .column-7 {
    margin-bottom: 60px;
    padding-right: 0;
  }

  .column-8 {
    padding-left: 0;
  }

  .column-9 {
    margin-bottom: 60px;
    padding-left: 0;
    padding-right: 0;
  }

  .article-thumbnail {
    margin-top: -70px;
  }

  .image {
    margin-top: 0;
    margin-bottom: 30px;
  }

  .article-thumbnail-highlight {
    max-width: 100%;
    margin: -60px auto 20px;
    position: relative;
    right: auto;
  }

  .orador-thumb-single {
    max-width: 120px;
    margin-top: 20px;
    margin-right: auto;
    position: relative;
  }

  .article-sub-heading {
    line-height: 1.2;
  }

  .image-3 {
    top: -105px;
    right: -125px;
  }

  .agenda-heading {
    font-size: 2.2rem;
  }

  .agenda-item-heading {
    font-size: 1.3rem;
  }

  .agenda-list-thumb {
    float: none;
  }

  .agenda-list-cargo {
    font-size: .5rem;
  }

  .agenda-data {
    max-width: 146px;
    margin-left: auto;
    margin-right: auto;
  }

  .agenda-item-date {
    margin-bottom: 40px;
    padding-right: 0;
  }

  .agenda-item-bg {
    width: 270px;
  }

  .hero-bg {
    max-width: 100%;
    margin: 40px auto -150px;
    position: relative;
    bottom: auto;
    left: 0;
  }

  .orador-bg {
    width: 130px;
    height: 130px;
    bottom: -12px;
    left: -12px;
  }

  .quick-stack-5 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .highlight-wrap-image-1 {
    width: 100%;
    height: 160px;
    margin-top: -70px;
    margin-bottom: 30px;
    margin-left: auto;
  }

  .highlight-article-right.border-default {
    float: none;
    width: 100%;
    max-width: 100%;
    margin-bottom: 70px;
  }

  .highlight-wrap-image-2 {
    width: 100%;
    height: 160px;
    margin-top: -70px;
    margin-bottom: 30px;
    margin-right: auto;
  }

  .highlight-wrap-image-3 {
    width: 100%;
    height: 160px;
    margin-top: -70px;
    margin-bottom: 30px;
    margin-left: auto;
  }

  .highlight-article-3.border-default {
    width: 100%;
    margin-left: 0;
  }

  .news-bg {
    margin-right: -600px;
  }

  .hero_heading-2 {
    margin-bottom: 2rem;
    font-size: 2.125rem;
  }

  .button_text {
    letter-spacing: 3px;
    font-size: .875rem;
  }

  .hero_bottom_para {
    font-size: 2.125rem;
  }

  .text-block, .text-block-2, .text-block-3, .text-block-4, .text-block-5, .text-block-6, .text-block-7, .text-block-8, .text-block-9, .text-block-10, .text-block-11, .text-block-12, .text-block-13, .text-block-14, .text-block-15, .text-block-16 {
    font-size: .8rem;
  }

  .border-thick-red {
    width: auto;
  }

  .hero_heading_white {
    max-width: none;
    font-size: 2.3rem;
  }

  .bg-hero {
    min-height: 100%;
  }

  .nav_logo-negative {
    max-width: 90%;
  }

  .article-highlight {
    line-height: 1.4;
  }

  .link-round {
    width: 130px;
  }

  .columns {
    display: block;
  }

  .text-icon {
    font-size: .9rem;
  }

  .nav-events {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    padding-left: 0;
    padding-right: 0;
  }

  .link-icon-nav {
    font-size: 1rem;
  }

  .text-icon-nav {
    font-size: .9rem;
  }

  .nav-events-wrap {
    max-width: 100%;
  }

  .list-grid {
    grid-template-columns: 1fr;
    margin-bottom: -40px;
  }

  .article-wrap {
    margin-bottom: 40px;
  }

  .list-grid-oradores {
    margin-bottom: -20px;
  }

  .orador-wrap {
    margin-bottom: 20px;
  }

  .name-orador {
    font-size: .8rem;
  }

  .orador-inner-thumb {
    max-width: 100%;
    margin-top: -60px;
    margin-bottom: 20px;
    position: relative;
    right: auto;
  }

  .video-player {
    margin-top: 0;
    margin-bottom: 30px;
  }

  .text-body-wrap {
    margin-top: 30px;
  }

  .footer-credits {
    margin-top: 3rem;
  }

  .footer_link_credits {
    font-size: .9rem;
  }

  .heading-center {
    margin-bottom: 10px;
    font-size: 1.9rem;
  }

  .column-right-flex {
    margin-top: 80px;
    padding-left: 0;
  }

  .column-left-flex {
    padding-right: 0;
  }

  .link-orador-highlight, .link-category {
    font-size: 1rem;
    line-height: 1.2;
  }

  .news_link {
    width: 100%;
  }
}

#w-node-_70abd6dc-6d39-f2f9-f044-165d8fd9afc2-fb69f637 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_572b9afe-fcf9-fbe9-911f-33a7fdd6d5ef-fb69f637, #w-node-_572b9afe-fcf9-fbe9-911f-33a7fdd6d5f0-fb69f637 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

#w-node-_5aed7b19-c9de-ad32-eccd-8b47b327b66d-fb69f637, #w-node-_5aed7b19-c9de-ad32-eccd-8b47b327b66e-fb69f637 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

#w-node-_63a14dd5-4e0d-fb4b-7b0b-334e4c1a8014-df508c4d, #w-node-_1aa23613-7ece-31c6-f92d-255adf508c52-df508c4d {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

#w-node-_1aa23613-7ece-31c6-f92d-255adf508c5b-df508c4d {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-d880abd0-372c-0020-3ef1-1fe4bc1a9feb-df508c4d {
  grid-template-rows: auto;
  grid-template-columns: 2.25fr 1fr;
}

#w-node-b224ec27-30fa-be84-48bf-7ed471542af3-fb69f63a, #w-node-_1cb30034-64d2-8ce4-2ab0-5420f2e1b004-fb69f63a, #w-node-_912a3528-433b-bd3f-b214-7f19a3051afd-fb69f63a, #w-node-_56e54484-8e4e-6ff3-8ce5-4312f3e8f9f5-fb69f63a, #w-node-_311cabf7-af6d-ea9d-13a5-baa0d22f2477-fb69f63a, #w-node-afac1b90-2dab-860e-06c8-d725d411b388-fb69f63a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_483c70f6-a0fd-021d-6f0d-db6234d03834-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca17-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca1c-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca21-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca26-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca2c-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca32-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca38-fb69f63a {
  justify-self: start;
}

#w-node-_5d224905-8a1e-1460-7532-d38cb7ec37c1-fb69f63a, #w-node-_40538c8c-870b-b365-34c4-2a06f0f8567d-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cb45-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cb5e-fb69f63a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb61-fb69f63a {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb63-fb69f63a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb66-fb69f63a {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cbb8-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cbc2-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cbc3-fb69f63a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc31-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc36-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc3b-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc40-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc45-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc4a-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc54-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc59-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc5e-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc63-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc68-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc6d-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc72-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc77-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc7c-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc81-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc86-fb69f63a {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc8a-fb69f63a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc8b-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc90-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc95-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc9a-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccaf-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccb4-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccb9-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccbe-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccc3-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccc8-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccd2-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccd7-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccdc-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cce1-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cce6-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cceb-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccf0-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccf5-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccfa-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccff-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd04-fb69f63a {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cd08-fb69f63a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cd09-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd0e-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd13-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd18-fb69f63a, #w-node-_30684373-af34-3818-02a4-e58b3ffef3e5-fb69f63a, #w-node-_30684373-af34-3818-02a4-e58b3ffef3ea-fb69f63a, #w-node-_30684373-af34-3818-02a4-e58b3ffef3ef-fb69f63a, #w-node-_30684373-af34-3818-02a4-e58b3ffef3f4-fb69f63a, #w-node-_30684373-af34-3818-02a4-e58b3ffef3f9-fb69f63a, #w-node-_30684373-af34-3818-02a4-e58b3ffef3fe-fb69f63a, #w-node-_30684373-af34-3818-02a4-e58b3ffef403-fb69f63a, #w-node-_30684373-af34-3818-02a4-e58b3ffef408-fb69f63a, #w-node-_30684373-af34-3818-02a4-e58b3ffef40d-fb69f63a, #w-node-_30684373-af34-3818-02a4-e58b3ffef412-fb69f63a {
  justify-self: start;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef416-fb69f63a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef417-fb69f63a {
  justify-self: start;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef41a-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd6b-fb69f63a, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd98-fb69f63a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cdc7-fb69f63a {
  justify-self: start;
}

#w-node-f5b4ef7d-b96f-3863-ee71-08778f97f9f5-78745be7, #w-node-_7ff1c09c-8a66-5d0c-34d5-843caeccada1-78745be7 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

#w-node-ee879fb0-9085-2ef1-fd44-deac3ce15f57-78745be7 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media screen and (max-width: 991px) {
  #w-node-_572b9afe-fcf9-fbe9-911f-33a7fdd6d5f0-fb69f637 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  #w-node-_5aed7b19-c9de-ad32-eccd-8b47b327b66d-fb69f637, #w-node-_5aed7b19-c9de-ad32-eccd-8b47b327b66e-fb69f637 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  #w-node-_7ff1c09c-8a66-5d0c-34d5-843caeccada1-78745be7 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  #w-node-ee879fb0-9085-2ef1-fd44-deac3ce15f57-78745be7 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_572b9afe-fcf9-fbe9-911f-33a7fdd6d5f0-fb69f637, #w-node-_7ff1c09c-8a66-5d0c-34d5-843caeccada1-78745be7 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_70abd6dc-6d39-f2f9-f044-165d8fd9afc2-fb69f637 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_572b9afe-fcf9-fbe9-911f-33a7fdd6d5ef-fb69f637, #w-node-_572b9afe-fcf9-fbe9-911f-33a7fdd6d5f0-fb69f637 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_5aed7b19-c9de-ad32-eccd-8b47b327b66d-fb69f637, #w-node-_5aed7b19-c9de-ad32-eccd-8b47b327b66e-fb69f637 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-a7cfed13-9f6b-0abe-92e4-b24d2c354ad1-9327efb7 {
    grid-column: span 1 / span 1;
  }

  #w-node-_63a14dd5-4e0d-fb4b-7b0b-334e4c1a8014-df508c4d, #w-node-_1aa23613-7ece-31c6-f92d-255adf508c52-df508c4d {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-d880abd0-372c-0020-3ef1-1fe4bc1a9feb-df508c4d {
    grid-template-rows: auto;
    grid-template-columns: 2.25fr;
  }

  #w-node-f5b4ef7d-b96f-3863-ee71-08778f97f9f5-78745be7, #w-node-_7ff1c09c-8a66-5d0c-34d5-843caeccada1-78745be7 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-ee879fb0-9085-2ef1-fd44-deac3ce15f57-78745be7 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }
}


@font-face {
  font-family: 'Lexend Variablefont Wght';
  src: url('../fonts/Lexend-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}