/* eslint-disable */
.u-color--font-secondary {
  color: var(--color-font-secondary);
}

:root {
  --wrapper-size: 1200px;
  --border-width: 1px;
  --border-color: var(--color-gray-300);
  --border-default: 40px;
  --border-tiny: 3px;
  --border-round: 50%;
  --letter-spacing-default: 1px;
  --letter-spacing-xl: 2px;
  --letter-spacing-sm: 0.3px;
  --letter-spacing-xs: -0.5px;
  --letter-spacing-xxs: -2px;
  --transition-base: all 0.2s ease-in-out;
  --transition-fade: opacity 0.15s linear;
  --transition-collapse: height 0.35s ease;
  --zindex-background: -1;
  --zindex-normal: 1;
  --zindex-header: 2;
  --zindex-popover: 4;
  --zindex-fixed-element: 5;
  --zindex-overlay: 10;
  --zindex-overlay-above: 11;
  --zindex-mars: 999;
}

:root {
  --space-default: 4px;
  --padding-default: 16px;
  --gap-default: calc(2 * var(--space-default));
  --space-xxxxs: calc(var(--space-default) / 4);
  --space-xxxs: calc(var(--space-default) / 2);
  --space-xxs: calc(var(--space-default));
  --space-xs: calc(2 * var(--space-default));
  --space-sm: calc(4 * var(--space-default));
  --space-md: calc(6 * var(--space-default));
  --space-lg: calc(12 * var(--space-default));
  --space-xl: calc(24 * var(--space-default));
  --space-xxl: calc(48 * var(--space-default));
}

html {
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
footer,
header,
nav,
section,
figcaption,
figure,
main {
  display: block;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bold;
}

code,
kbd,
samp {
  font-family: monospace;
  font-size: 1em;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

audio,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details,
menu {
  display: block;
}

summary {
  display: list-item;
}

canvas {
  display: inline-block;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

*:focus {
  outline: 0;
}

html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

:root {
  --body-bg-color: var(--color-white);
}

html {
  overflow-y: scroll;
  min-height: 100%;
}

body {
  background-color: var(--body-bg-color);
  color: var(--font-color-primary);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
  line-height: var(--font-line-height-base);
  margin: 0 !important;
  position: relative;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}

::-moz-selection {
  background: var(--color-primary);
  color: #fff;
}

::selection {
  background: var(--color-primary);
  color: #fff;
}

@supports (object-fit: cover) {
  .js-object-fit img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
  }
}
@supports (object-fit: cover) and (-ms-ime-align: auto) {
  .js-object-fit img {
    height: auto;
    width: auto;
  }
}

img:not([src]):not([srcset]) {
  visibility: hidden;
}

@-moz-document url-prefix() {
  img:-moz-loading {
    visibility: hidden;
  }
}
:root {
  --headings-font-family: var(--font-family-secondary);
  --headings-font-weight: var(--font-weight-bold);
  --headings-line-height: 1.2;
  --h1-font-size: var(--font-xxxxl);
  --h2-font-size: var(--font-xxxl);
  --h3-font-size: var(--font-xxl);
  --h4-font-size: var(--font-xl);
  --h5-font-size: var(--font-lg);
  --h6-font-size: var(--font-size-base);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: var(--font-size-base);
  font-family: var(--headings-font-family);
  line-height: var(--headings-line-height);
  font-weight: var(--headings-font-weight);
  margin: 0;
  padding: 0;
}
h1::before,
h2::before,
h3::before,
h4::before,
h5::before,
h6::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - var(--headings-line-height)) * 0.5em);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

:root {
  --link-decoration: none;
  --link-hover-decoration: none;
  --link-color: var(--color-primary);
  --link-hover-color: var(--color-primary-600);
}

a {
  color: var(--link-color);
  text-decoration: var(--link-decoration);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a:hover, a:active, a:focus {
  color: var(--link-hover-color);
  text-decoration: var(--link-hover-decoration);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.u-color--inherit {
  color: inherit;
}
.u-color--white {
  color: var(--color-white);
}
.u-color--black {
  color: var(--color-black);
}
.u-color--font-primary {
  color: var(--font-color-primary);
}
.u-color--primary {
  color: var(--color-primary);
}
.u-color--secondary {
  color: var(--color-secondary);
}
.u-color--success {
  color: var(--color-success);
}
.u-color--warning {
  color: var(--color-warning);
}
.u-color--error {
  color: var(--color-error);
}
.u-color--info {
  color: var(--color-info);
}

.u-visible {
  display: block !important;
}

.u-hidden {
  display: none !important;
}

@media only screen and (max-width: 1440px) {
  .u-show\@desktop-wide {
    display: block !important;
  }
}
@media only screen and (max-width: 1440px) {
  .u-hide\@desktop-wide {
    display: none !important;
  }
}
@media only screen and (max-width: 1248px) {
  .u-show\@desktop {
    display: block !important;
  }
}
@media only screen and (max-width: 1248px) {
  .u-hide\@desktop {
    display: none !important;
  }
}
@media only screen and (max-width: 1024px) {
  .u-show\@tablet-wide {
    display: block !important;
  }
}
@media only screen and (max-width: 1024px) {
  .u-hide\@tablet-wide {
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .u-show\@tablet {
    display: block !important;
  }
}
@media only screen and (max-width: 768px) {
  .u-hide\@tablet {
    display: none !important;
  }
}
@media only screen and (max-width: 640px) {
  .u-show\@tablet-small {
    display: block !important;
  }
}
@media only screen and (max-width: 640px) {
  .u-hide\@tablet-small {
    display: none !important;
  }
}
@media only screen and (max-width: 560px) {
  .u-show\@phablet {
    display: block !important;
  }
}
@media only screen and (max-width: 560px) {
  .u-hide\@phablet {
    display: none !important;
  }
}
@media only screen and (max-width: 480px) {
  .u-show\@mobile-wide {
    display: block !important;
  }
}
@media only screen and (max-width: 480px) {
  .u-hide\@mobile-wide {
    display: none !important;
  }
}
@media only screen and (max-width: 400px) {
  .u-show\@mobile {
    display: block !important;
  }
}
@media only screen and (max-width: 400px) {
  .u-hide\@mobile {
    display: none !important;
  }
}
.u-not-opacity {
  opacity: 0 !important;
}

/* eslint-disable */
.u-color--font-secondary {
  color: var(--color-font-secondary);
}

:root {
  --color-white:#fff;
  --color-white-rgb:255, 255, 255;
}

:root {
  --color-gray-100:#f8f9fa;
  --color-gray-100-rgb:248, 249, 250;
}

:root {
  --color-gray-200:#eeeeee;
  --color-gray-200-rgb:238, 238, 238;
}

:root {
  --color-gray-300:#dee2e6;
  --color-gray-300-rgb:222, 226, 230;
}

:root {
  --color-gray-400:#ced4da;
  --color-gray-400-rgb:206, 212, 218;
}

:root {
  --color-gray-500:#ADADAD;
  --color-gray-500-rgb:173, 173, 173;
}

:root {
  --color-gray-600:#939393;
  --color-gray-600-rgb:147, 147, 147;
}

:root {
  --color-gray-700:#495057;
  --color-gray-700-rgb:73, 80, 87;
}

:root {
  --color-gray-800:#343a40;
  --color-gray-800-rgb:52, 58, 64;
}

:root {
  --color-gray-900:#212529;
  --color-gray-900-rgb:33, 37, 41;
}

:root {
  --color-black:#010101;
  --color-black-rgb:1, 1, 1;
}

:root {
  --color-primary:#ff0302;
  --color-primary-rgb:255, 3, 2;
}

:root {
  --color-secondary:#0082FC;
  --color-secondary-rgb:0, 130, 252;
}

:root {
  --color-background-dark:#010101;
  --color-background-dark-rgb:1, 1, 1;
}

:root {
  --color-font-primary:#010101;
  --color-font-primary-rgb:1, 1, 1;
}

:root {
  --color-font-secondary:#656565;
  --color-font-secondary-rgb:101, 101, 101;
}

:root {
  --color-font-tertiary:#939393;
  --color-font-tertiary-rgb:147, 147, 147;
}

:root {
  --wrapper-size: 1440px;
  --padding-default: calc(var(--space-default) * 10);
}
@media only screen and (max-width: 1024px) {
  :root {
    --padding-default: calc(var(--space-default) * 6);
  }
}
@media only screen and (max-width: 768px) {
  :root {
    --padding-default: calc(var(--space-default) * 4);
  }
}

:root {
  --font-color-primary: var(--color-font-primary);
  --font-color-secondary: var(--color-white);
  --font-family-primary: "Helvetica Neue LT Std",Helvetica,Arial,Lucida,sans-serif;
  --font-family-secondary: "Helvetica Neue LT Std",Helvetica,Arial,Lucida,sans-serif !important;
  --font-weight-base: var(--font-weight-regular);
  --font-size-base: 16px;
  --font-line-height-base: 1.4;
  --headings-font-family: var(--font-family-primary);
  --headings-font-weight: 800;
  --h1-font-size: 38px;
}

.c-minihero {
  align-items: center;
  background-color: #f8f8f8;
  display: flex;
  height: 500px;
  padding: calc(var(--space-default) * 15) var(--padding-default);
  position: relative;
}
@media only screen and (max-width: 768px) {
  .c-minihero {
    align-items: flex-start;
    height: auto;
    min-height: 500px;
  }
}
.c-minihero__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  z-index: 3;
  padding-right: 600px;
}
@media only screen and (max-width: 1024px) {
  .c-minihero__container {
    padding-right: 450px;
  }
}
@media only screen and (max-width: 768px) {
  .c-minihero__container {
    padding-right: 0;
  }
}
.c-minihero__container p {
  max-width: 800px;
}
.c-minihero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.c-minihero__bg img {
  object-fit: cover;
  object-position: bottom right;
}
@media only screen and (max-width: 768px) {
  .c-minihero__bg img {
    object-fit: contain;
  }
}
.c-minihero__link {
  color: inherit;
  font-size: 20px;
  opacity: 0.6;
  margin-top: calc(var(--space-default) * 6);
  position: relative;
}
.c-minihero__link::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  opacity: 0.6;
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(var(--space-default) * -1);
}
.c-minihero__link:hover, .c-minihero__link:active, .c-minihero__link:focus {
  color: var(--color-primary);
}
.c-minihero--glosario {
  min-height: calc(70vh - 86px);
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .c-minihero--glosario {
    padding-bottom: 300px;
  }
}

.c-glosario-list {
  --glosario-list-first-letter-size: 140px;
  --glosario-list-padding-y: calc(var(--space-default) * 25);
  --glosario-list-grid-minmax: 260px;
  padding: var(--glosario-list-padding-y) var(--padding-default);
}
@media only screen and (max-width: 480px) {
  .c-glosario-list {
    --glosario-list-first-letter-size: 80px;
    --glosario-list-padding-y: calc(var(--space-default) * 10);
    --glosario-list-grid-minmax: 180px;
  }
}
.c-glosario-list__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--glosario-list-grid-minmax), 1fr));
  grid-gap: calc(var(--space-default) * 15);
}
@media only screen and (max-width: 480px) {
  .c-glosario-list__grid {
    grid-gap: calc(var(--space-default) * 8);
  }
}
.c-glosario-list__first-letter {
  font-size: var(--glosario-list-first-letter-size);
  line-height: 1.2;
}
.c-glosario-list__link-list {
  padding-left: calc(0.9 * var(--glosario-list-first-letter-size));
  margin-top: calc(var(--space-default) * -6);
}
.c-glosario-list__link-list li {
  line-height: 1;
}
.c-glosario-list__link {
  color: var(--color-font-primary);
}
.c-glosario-list__link:hover, .c-glosario-list__link:active, .c-glosario-list__link:focus {
  color: var(--color-primary);
}

.u-wrapper {
  max-width: var(--wrapper-size);
  margin: 0 auto;
  position: relative;
  width: 100%;
}
.u-wrapper--md {
  --wrapper-size: 900px;
}
.u-wrapper--small {
  --wrapper-size: 750px;
}

.u-text-align--left {
  text-align: left !important;
}

.u-margin--left-sm {
  margin-left: var(--space-sm);
}

.u-margin--left-md {
  margin-left: var(--space-md);
}

.u-margin--bottom-md {
  margin-bottom: var(--space-md);
}

.u-margin--right-md {
  margin-right: var(--space-md);
}

.u-margin--top-xs {
  margin-top: var(--space-xs);
}

.u-margin--top-sm {
  margin-top: var(--space-sm);
}

.u-margin--top-md {
  margin-top: var(--space-md);
}

@media only screen and (max-width: 480px) {
  .u-margin--bottom-sm\@mobile-wide {
    margin-bottom: var(--space-sm);
  }
}
.u-padding--x-md {
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.u-padding--y-xl {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.u-title {
  color: inherit;
  margin: 0;
  padding: 0;
}
.u-title--size-xl {
  font-size: 90px;
  line-height: 1;
}
@media only screen and (max-width: 1024px) {
  .u-title--size-xl {
    font-size: 50px;
  }
}
@media only screen and (max-width: 480px) {
  .u-title--size-xl {
    font-size: 40px;
  }
}
.u-title--size-lg {
  font-size: 60px;
  line-height: 1;
}
@media only screen and (max-width: 1024px) {
  .u-title--size-lg {
    font-size: 50px;
  }
}
@media only screen and (max-width: 480px) {
  .u-title--size-lg {
    font-size: 40px;
  }
}
.u-title--size-md {
  font-size: 32px;
  line-height: 1;
}

.u-text {
  color: inherit;
}
.u-text--size-md {
  font-size: 24px;
  line-height: 28px;
}
@media only screen and (max-width: 1024px) {
  .u-text--size-md {
    font-size: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .u-text--size-md {
    font-size: 16px;
  }
}
.u-text--size-sm {
  font-size: 20px;
  line-height: 1.3;
}
@media only screen and (max-width: 480px) {
  .u-text--size-sm {
    font-size: 16px;
  }
}
.u-text--size-xs {
  font-size: 16px;
  line-height: 1.3;
}
.u-text--size-xxs {
  font-size: 12px;
  line-height: 1.3;
}

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