@charset "UTF-8";
/*!
    Theme Name: Xarxa de monitoratge del català digital
    Theme URI: https://fundacio.cat/xmcd
    Description: Xarxa de monitoratge del català digital
    Version: 1.0.1
    Author: Nordkat Solutions SL
    Author URI: https://nordkat.com
*/
.scroll-animation {
  opacity: 0;
  transition: opacity 500ms;
}

.scroll-animation.scrolled {
  opacity: 1;
}

.scrolled.fade-in {
  animation: fade-in 0.5s ease-in-out both;
}

.scrolled.fade-in-bottom {
  animation: fade-in-bottom 0.5s ease-in-out both;
}

.scrolled.fade-in-top {
  animation: fade-in-top 0.5s ease-in-out both;
}

.scrolled.slide-left {
  animation: slide-in-left 0.5s ease-in-out both;
}

.scrolled.slide-right {
  animation: slide-in-right 0.5s ease-in-out both;
}

/* Keyframes */
@keyframes slide-in-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: var(--bs-border-width) solid;
  opacity: 0.25;
}

h6, h5, h4, h3, h2, h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bs-heading-color);
}

h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

mark {
  padding: 0.1875em;
  color: var(--bs-highlight-color);
  background-color: var(--bs-highlight-bg);
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: underline;
}
a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: var(--bs-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0.25rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-secondary-color);
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

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

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

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

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

@font-face {
  font-family: "Graphik";
  src: url("fonts/Graphik-Medium-Web.woff2") format("woff2"), url("fonts/Graphik-Medium-Web.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "Graphik";
  src: url("fonts/Graphik-Regular-Web.woff2") format("woff2"), url("fonts/Graphik-Regular-Web.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "Graphik";
  src: url("fonts/Graphik-Semibold-Web.woff2") format("woff2"), url("fonts/Graphik-Semibold-Web.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "Graphik";
  src: url("fonts/Graphik-Bold-Web.woff2") format("woff2"), url("fonts/Graphik-Bold-Web.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
}
main.page-front-page .home-main {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

button.btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 0;
  margin: 0;
}
button.btn:focus {
  outline: 2px solid #e3142b;
  box-shadow: none;
}

.hbspt-form form .hs_submit .actions input[type=submit]:focus, .btn:focus {
  outline: 2px solid #e3142b;
}

h1, .h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Graphik", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}
@media (max-width: 991.98px) {
  h1, .h1 {
    font-size: 40px;
  }
}
@media (max-width: 767.98px) {
  h1, .h1 {
    font-size: 32px;
  }
}
@media (max-width: 575.98px) {
  h1, .h1 {
    font-size: 28px;
  }
}

h2, .h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Graphik", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}
@media (max-width: 991.98px) {
  h2, .h2 {
    font-size: 32px;
  }
}
@media (max-width: 767.98px) {
  h2, .h2 {
    font-size: 28px;
  }
}
@media (max-width: 575.98px) {
  h2, .h2 {
    font-size: 30px;
  }
}

h3, .h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Graphik", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}
@media (max-width: 991.98px) {
  h3, .h3 {
    font-size: 28px;
  }
}
@media (max-width: 767.98px) {
  h3, .h3 {
    font-size: 24px;
  }
}
@media (max-width: 575.98px) {
  h3, .h3 {
    font-size: 22px;
  }
}

h4, .h4 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Graphik", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}
@media (max-width: 991.98px) {
  h4, .h4 {
    font-size: 26px;
  }
}
@media (max-width: 767.98px) {
  h4, .h4 {
    font-size: 24px;
  }
}
@media (max-width: 575.98px) {
  h4, .h4 {
    font-size: 22px;
  }
}

h5, .h5 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Graphik", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}
@media (max-width: 575.98px) {
  h5, .h5 {
    font-size: 18px;
  }
}

.m1 {
  margin: 1rem !important;
}

.m15 {
  margin: 1.5rem !important;
}
@media (max-width: 575.98px) {
  .m15 {
    margin: 1rem !important;
  }
}

.m2 {
  margin: 2rem !important;
}
@media (max-width: 575.98px) {
  .m2 {
    margin: 1.5rem !important;
  }
}

.m25 {
  margin: 2.5rem !important;
}
@media (max-width: 575.98px) {
  .m25 {
    margin: 1.5rem !important;
  }
}

.m3 {
  margin: 3rem !important;
}
@media (max-width: 575.98px) {
  .m3 {
    margin: 2rem !important;
  }
}

.mL {
  margin-left: 1.5rem !important;
}

.mR {
  margin-right: 1.5rem !important;
}

.mT {
  margin-top: 1.5rem !important;
}

.mB {
  margin-bottom: 1.5rem !important;
}

.mLxl {
  margin-left: 2.5rem !important;
}
@media (max-width: 575.98px) {
  .mLxl {
    margin-left: 1.5rem !important;
  }
}

.mRxl {
  margin-right: 2.5rem !important;
}
@media (max-width: 575.98px) {
  .mRxl {
    margin-right: 1.5rem !important;
  }
}

.mTxl {
  margin-top: 2.5rem !important;
}
@media (max-width: 575.98px) {
  .mTxl {
    margin-top: 1.5rem !important;
  }
}

.mBxl {
  margin-bottom: 2.5rem !important;
}
@media (max-width: 575.98px) {
  .mBxl {
    margin-bottom: 1.5rem !important;
  }
}

.mLsm {
  margin-left: 0.5rem !important;
}

.mRsm {
  margin-right: 0.5rem !important;
}

.mTsm {
  margin-top: 0.5rem !important;
}

.mBsm {
  margin-bottom: 0.5rem !important;
}

.p1 {
  padding: 1rem !important;
}

.p15 {
  padding: 1.5rem !important;
}

.p2 {
  padding: 2rem !important;
}

.p25 {
  padding: 2.5rem !important;
}

.p3 {
  padding: 3rem !important;
}

.p-l {
  padding-left: 1.5rem !important;
}

.p-r {
  padding-right: 1.5rem !important;
}

.p-t {
  padding-top: 1.5rem !important;
}

.p-b {
  padding-bottom: 1.5rem !important;
}

.pl-sm {
  padding-left: 0.5rem !important;
}

.pt-sm {
  padding-right: 0.5rem !important;
}

.pt-sm {
  padding-top: 0.5rem !important;
}

.pb-sm {
  padding-bottom: 0.5rem !important;
}

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

.text-align-right {
  text-align: right !important;
}

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

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

.justify-content-between {
  justify-content: space-between;
  display: flex;
}

.justify-content-center {
  justify-content: center;
  display: flex;
}

html, body {
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  font-family: "Graphik", Helvetica, Arial, sans-serif;
  background: #e3142b;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
}
html img, body img {
  max-width: 100%;
}
html a, body a {
  text-decoration: none;
}
html a:focus, body a:focus {
  outline: 2px solid #e3142b;
  border-radius: inherit;
}
html a:hover, body a:hover {
  text-decoration: none;
}
html b, html strong, body b, body strong {
  font-weight: 700;
}
html p, body p {
  line-height: 1.3;
}

body {
  overflow-X: hidden;
}

#navico {
  display: flex;
  flex-direction: column;
  width: 70px;
  cursor: pointer;
  transform: scale(0.45);
}
#navico span {
  background: #fff;
  height: 7px;
  margin: 7px 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
#navico span:nth-of-type(1) {
  width: 100%;
}
#navico span:nth-of-type(2) {
  width: 100%;
}
#navico span:nth-of-type(3) {
  width: 100%;
}
#navico.opened span:nth-of-type(1) {
  width: 50%;
  transform-origin: bottom;
  transform: rotatez(45deg) translate(8px, 0px);
}
#navico.opened span:nth-of-type(2) {
  transform-origin: top;
  transform: rotatez(-45deg);
}
#navico.opened span:nth-of-type(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(30px, -11px) rotatez(45deg);
}

header#header {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all ease 0.3s;
  padding: 1.5rem 0;
}
header#header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
header#header .header-content .site-logo {
  max-width: 300px;
}
header#header .header-content .site-logo svg {
  height: 48px;
  color: #ffffff;
  transition: all ease 0.3s;
}
header#header .header-content .header-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
header#header .header-content .header-actions .btn {
  color: #ffffff;
}
header#header.active {
  background-color: #ffffff;
  padding: 1rem 0;
}
header#header.active .header-content .site-logo svg {
  height: 40px;
  color: #e3142b;
}
header#header.active .header-content .header-actions #navico span {
  background: #e3142b;
}
header#header.opened-mobile {
  background-color: transparent;
}
header#header.opened-mobile .header-content .site-logo svg {
  color: #ffffff;
}
header#header.opened-mobile .header-content .header-actions .btn {
  background-color: #ffffff;
  color: #000000;
}
header#header.opened-mobile .header-content .header-actions #navico span {
  background: #ffffff;
}
@media (max-width: 767.98px) {
  header#header {
    padding: 1rem 0;
  }
  header#header .header-content .site-logo {
    max-width: 200px;
  }
  header#header .header-content .site-logo svg {
    height: 36px;
  }
  header#header.active .header-content .site-logo {
    max-width: 200px;
  }
  header#header.active .header-content .site-logo svg {
    height: 36px;
  }
}
@media (max-width: 575.98px) {
  header#header {
    padding: 0;
  }
  header#header .header-content .site-logo {
    max-width: 150px;
  }
  header#header .header-content .site-logo svg {
    height: 30px;
  }
  header#header .header-content .header-actions .btn {
    color: #ffffff;
    margin-right: -1rem;
  }
  header#header .header-content .header-actions #navico {
    margin-right: -1rem;
    transform: scale(0.35);
  }
  header#header.active {
    padding: 0;
  }
  header#header.active .header-content .site-logo {
    max-width: 150px;
  }
  header#header.active .header-content .site-logo svg {
    height: 30px;
  }
}

.nav-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #e3142b;
  z-index: 3;
}
.nav-container .nav-container-menu {
  height: 100vh;
  background-color: #e3142b;
  position: relative;
}
.nav-container .nav-container-menu nav.main-menu {
  position: absolute;
  top: 50%;
  right: 0;
  padding: 3rem 7vw;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 700;
}
.nav-container .nav-container-menu nav.main-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.nav-container .nav-container-menu nav.main-menu ul li {
  margin-bottom: 2rem;
}
.nav-container .nav-container-info {
  height: 100vh;
  background-color: #d91329;
  position: relative;
}
.nav-container .nav-container-info .info {
  position: absolute;
  top: 50%;
  left: 0;
  padding: 3rem 7vw;
  transform: translateY(-50%);
  text-align: right;
}
.nav-container .nav-container-info .info .info-group {
  margin-bottom: 2rem;
}
.nav-container .nav-container-info .info .info-group strong {
  display: block;
}
.nav-container .nav-container-info .info .info-group.social {
  justify-content: flex-end;
  display: flex;
  gap: 1.7rem;
  margin-top: 3.5rem;
  margin-bottom: 0;
}
.nav-container .nav-container-info .info .info-group.social svg {
  height: 18px;
}
@media (max-width: 767.98px) {
  .nav-container {
    overflow-y: scroll;
  }
  .nav-container .nav-container-menu {
    height: auto;
  }
  .nav-container .nav-container-menu nav.main-menu {
    position: relative;
    top: inherit;
    right: inherit;
    transform: none;
    margin-top: 4.5rem;
  }
  .nav-container .nav-container-info {
    height: auto;
    display: none;
  }
}

.site-content {
  background: #808080;
}

.container-fluid {
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 767.98px) {
  .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .container-fluid {
    padding: 0 1rem;
  }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 767.98px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .container {
    padding: 0 1rem;
  }
}

footer#footer {
  padding: 2rem 0;
  background-color: #808080;
  color: #ffffff;
}
footer#footer h4 {
  color: rgba(0, 0, 0, 0.5);
  font-size: 20px;
  margin-bottom: 0.7rem;
}
footer#footer .footer-social .site-logo svg {
  height: 45px;
}
footer#footer .footer-social .social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 3.5rem;
  margin-bottom: 0;
}
footer#footer .footer-social .social-links svg {
  height: 16px;
}
footer#footer .footer-contact .contact-group.has-margin {
  margin-bottom: 2rem;
}
footer#footer .footer-contact .contact-group .contact-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
footer#footer .footer-contact .contact-group .contact-item svg {
  height: 14px;
}
footer#footer .footer-logos img {
  height: 70px;
}
footer#footer .footer-logos img.has-margin {
  margin-bottom: 2rem;
}
@media (max-width: 575.98px) {
  footer#footer h4 {
    font-size: 18px;
    font-weight: 600;
  }
  footer#footer .footer-contact {
    margin-top: 1.5rem;
  }
  footer#footer .footer-contact .contact-item {
    margin-bottom: 0.7rem;
  }
  footer#footer .footer-logos {
    margin-top: 1.5rem;
  }
}

button.btn, a.btn, .btn {
  padding: 0.7rem 1.5rem;
  transition: background ease 0.3s, color ease 0.3s;
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
button.btn svg, a.btn svg, .btn svg {
  height: 20px;
  margin-right: 0.5rem;
  transition: all ease 0.3s;
}
button.btn:hover, a.btn:hover, .btn:hover {
  transition: background ease 0.3s, color ease 0.3s;
}
button.btn:hover svg, a.btn:hover svg, .btn:hover svg {
  transform: rotate(-7deg);
  transition: all ease 0.3s;
}
@media (max-width: 575.98px) {
  button.btn, a.btn, .btn {
    padding: 0.4rem 0.8rem;
    font-size: 14px;
  }
}

button.btn-xl, a.btn-xl, .btn-xl {
  padding: 1rem 1.8rem;
  font-size: 20px;
  font-weight: 700;
  border-radius: 20px;
}
@media (max-width: 575.98px) {
  button.btn-xl, a.btn-xl, .btn-xl {
    padding: 0.6rem 1.3rem;
    border-radius: 10px;
    font-size: 16px;
  }
}

button.btn-uppercase, a.btn-uppercase, .btn-uppercase {
  text-transform: uppercase;
}

button.btnBlock, a.btnBlock, .btnBlock {
  width: 100%;
  display: block;
}

button.btn-primary, a.btn-primary, .btn-primary {
  background-color: #e3142b;
  color: #808080;
}
button.btn-primary svg, a.btn-primary svg, .btn-primary svg {
  fill: #808080;
}
button.btn-primary:hover, a.btn-primary:hover, .btn-primary:hover {
  background-color: #d91329;
}

button.btn-secondary, a.btn-secondary, .btn-secondary {
  background-color: #808080;
  color: #ffffff;
}
button.btn-secondary svg, a.btn-secondary svg, .btn-secondary svg {
  fill: #ffffff;
}
button.btn-secondary:hover, a.btn-secondary:hover, .btn-secondary:hover {
  background-color: #555555;
}

button.btn-white, a.btn-white, .btn-white {
  background-color: #ffffff;
  color: #000000;
}
button.btn-white svg, a.btn-white svg, .btn-white svg {
  fill: #000000;
}
button.btn-white:hover, a.btn-white:hover, .btn-white:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.loader, .loader:before, .loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  animation: bblFadInOut 1.8s infinite ease-in-out;
  animation-fill-mode: both;
}

.loader {
  color: #FFF;
  font-size: 7px;
  position: relative;
  text-indent: -9999em;
  transform: translateZ(0);
  animation-delay: -0.16s;
}

.loader:before, .loader:after {
  content: "";
  position: absolute;
  top: 0;
}

.loader:before {
  left: -3.5em;
  animation-delay: -0.32s;
}

.loader:after {
  left: 3.5em;
}

@keyframes bblFadInOut {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
.grecaptcha-badge {
  display: none;
  visibility: hidden;
}

.hbspt-form form {
  font-family: "Graphik", Helvetica, Arial, sans-serif !important;
}
.hbspt-form form .form-columns-1 {
  width: 100%;
  max-width: 100%;
}
.hbspt-form form .form-columns-2 {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.hbspt-form form .form-columns-2 .field {
  flex: 1 1 calc(50% - 2rem);
  box-sizing: border-box;
}
@media (max-width: 767.98px) {
  .hbspt-form form .form-columns-2 {
    gap: 0;
  }
  .hbspt-form form .form-columns-2 .field {
    flex: 1 1 100%;
  }
}
.hbspt-form form label {
  font-weight: 600;
  margin-top: 1rem;
}
.hbspt-form form label .hs-form-required {
  color: red;
}
.hbspt-form form .hs-field-desc {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
}
.hbspt-form form .input {
  width: 100% !important;
  max-width: 100% !important;
}
.hbspt-form form .input input[type=text], .hbspt-form form .input input[type=email], .hbspt-form form .input textarea {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0.5rem 1rem;
}
.hbspt-form form .input select {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0.6rem 0.8rem;
}
.hbspt-form form .input ul.multi-container {
  padding: 0;
  margin: 0;
}
.hbspt-form form .input ul.multi-container li {
  list-style: none;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
.hbspt-form form .input ul.multi-container li label {
  margin-top: 0;
}
.hbspt-form form .input ul.multi-container li span {
  margin-left: 0.5rem;
}
.hbspt-form form ul.hs-error-msgs {
  padding: 0;
  margin: 0;
  font-size: 13px;
}
.hbspt-form form ul.hs-error-msgs li {
  list-style: none;
}
.hbspt-form form ul.hs-error-msgs li label.hs-error-msg {
  color: red !important;
  margin-top: 0.3rem;
}
.hbspt-form form .legal-consent-container {
  margin-top: 1rem;
  font-size: 15px;
}
.hbspt-form form .legal-consent-container .hs-fieldtype-booleancheckbox ul {
  padding: 0;
  margin: 0;
}
.hbspt-form form .legal-consent-container .hs-fieldtype-booleancheckbox ul li {
  list-style: none;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
.hbspt-form form .legal-consent-container .hs-fieldtype-booleancheckbox ul li label {
  margin-top: 0;
  width: 100%;
  display: flex;
  align-items: center;
}
.hbspt-form form .legal-consent-container .hs-fieldtype-booleancheckbox ul li span {
  margin-left: 0.5rem;
}
.hbspt-form form .hs_submit {
  margin-top: 1.5rem;
}
.hbspt-form form .hs_submit .actions input[type=submit] {
  padding: 0.7rem 1.5rem;
  transition: background ease 0.3s, color ease 0.3s;
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background-color: #e3142b;
  color: #ffffff;
  border: 0;
}
.hbspt-form form .hs_submit .actions input[type=submit]:hover {
  background-color: #d91329;
}

main.page-front-page .home-main {
  width: 100%;
  min-height: 100vh;
  position: relative;
}
main.page-front-page .home-main:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1;
}
main.page-front-page .home-main .home-main-container {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
main.page-front-page .home-main .home-main-container .home-main-content {
  text-align: center;
}
main.page-front-page .home-main .home-main-container .home-main-content h1 {
  font-size: 96px;
  margin-bottom: 3rem;
}
main.page-front-page .home-main .home-main-container .home-main-content p {
  font-size: 24px;
}
main.page-front-page .home-main .home-main-arrow {
  width: 35px;
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  main.page-front-page .home-main .home-main-container .home-main-content h1 {
    font-size: 76px;
  }
}
@media (max-width: 767.98px) {
  main.page-front-page .home-main .home-main-container .home-main-content {
    padding: 0 2rem;
  }
  main.page-front-page .home-main .home-main-container .home-main-content h1 {
    font-size: 56px;
    margin-bottom: 2rem;
  }
  main.page-front-page .home-main .home-main-container .home-main-content p {
    font-size: 22px;
  }
}
@media (max-width: 575.98px) {
  main.page-front-page .home-main .home-main-container .home-main-content {
    padding: 0 1rem;
  }
  main.page-front-page .home-main .home-main-container .home-main-content h1 {
    font-size: 36px;
    margin-bottom: 2rem;
  }
  main.page-front-page .home-main .home-main-container .home-main-content p {
    font-size: 18px;
  }
}
main.page-front-page section.starred .row > .col-lg-4:nth-child(odd) .starred-item {
  background-color: #d91329;
}
main.page-front-page section.starred .row > .col-lg-4:nth-child(even) .starred-item {
  background-color: #e3142b;
}
main.page-front-page section.starred .starred-item {
  text-align: center;
  padding: 5rem;
  height: 100%;
}
main.page-front-page section.starred .starred-item h2 {
  font-size: 32px;
}
main.page-front-page section.starred .starred-item p {
  font-size: 18px;
  max-width: 400px;
  margin: 0 auto;
  margin-top: 1rem;
}
main.page-front-page section.starred .starred-item a {
  margin-top: 1rem;
}
@media (max-width: 1199.98px) {
  main.page-front-page section.starred .starred-item {
    padding: 5rem 3rem;
  }
}
@media (max-width: 767.98px) {
  main.page-front-page section.starred .starred-item {
    padding: 4rem 1.5rem;
  }
  main.page-front-page section.starred .starred-item h2 {
    font-size: 26px;
  }
}
main.page-front-page section.data {
  background-color: #ffffff;
  color: #000000;
  padding: 5rem 0;
}
main.page-front-page section.data h2 {
  margin-bottom: 3rem;
}
main.page-front-page section.data #map {
  height: 570px;
  width: 100%;
  z-index: 2;
}
main.page-front-page section.data .map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding: 1rem 0;
  justify-content: center;
}
main.page-front-page section.data .map-legend .legend-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(0, 0, 0, 0.75);
  font-size: 15px;
}
main.page-front-page section.data .map-legend .legend-item img {
  width: 26px;
}
main.page-front-page section.data .data-item {
  margin-bottom: 3rem;
}
main.page-front-page section.data .data-item span.value {
  display: block;
  font-weight: 400;
  font-size: 70px;
  padding: 0;
  margin: 0;
  color: #000000;
}
main.page-front-page section.data .data-item span.label {
  color: #000000;
  font-size: 20px;
}
@media (max-width: 767.98px) {
  main.page-front-page section.data {
    padding: 2rem 0;
  }
  main.page-front-page section.data #map {
    height: 350px;
    width: 100%;
    z-index: 2;
  }
}
main.page-front-page section.banner {
  color: #ffffff;
  background-color: #e3142b;
  padding: 5rem 0;
}
main.page-front-page section.banner .banner-content {
  text-align: center;
}
main.page-front-page section.banner .banner-content h2 {
  font-size: 40px;
}
main.page-front-page section.banner .banner-content p {
  font-size: 18px;
  margin: 1rem 0;
  margin-bottom: 2rem;
}
main.page-front-page section.banner .banner-content a {
  position: relative;
  display: inline-block;
}

main.page-participa {
  background-color: #ffffff;
  padding-top: 8rem;
  color: #000000;
}
main.page-participa .participa-content {
  padding-bottom: 3rem;
}
main.page-participa .participa-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 3rem;
}
main.page-participa .participa-content p {
  line-height: 1.5;
}
main.page-participa .participa-content a {
  color: #e3142b;
}
main.page-participa .participa-content a:hover {
  text-decoration: underline;
}
main.page-participa .participa-content iframe {
  margin: 2rem 0;
}
main.page-participa .participa-content ul li {
  margin-bottom: 0.7rem;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  main.page-participa .participa-content h3 {
    font-size: 22px;
  }
}
@media (max-width: 575.98px) {
  main.page-participa .participa-content h3 {
    font-size: 20px;
  }
}

main.page-board {
  background-color: #ffffff;
  padding-top: 8rem;
  color: #000000;
}
@media (max-width: 767.98px) {
  main.page-board {
    padding-top: 5rem;
  }
}
main.page-board .top-alert {
  margin-bottom: 2rem;
}
main.page-board .top-alert .status-alert {
  padding: 1rem;
}
main.page-board .top-alert .status-alert.warning {
  border: 1px solid #d68801;
  color: #d68801;
  background-color: rgba(214, 136, 1, 0.05);
}
main.page-board .top-alert .status-alert.error {
  border: 1px solid #a30000;
  color: #a30000;
  background-color: rgba(163, 0, 0, 0.05);
}
main.page-board .top-alert .status-alert a {
  font-weight: 700;
}
main.page-board .initial-info .sensor-data {
  padding-bottom: 4rem;
}
main.page-board .initial-info .sensor-data h2 {
  margin-bottom: 1rem;
}
main.page-board .initial-info .sensor-data span {
  display: block;
  margin-top: 0.5rem;
}
main.page-board .initial-info #sensor-map {
  height: 100%;
  min-height: 300px;
}
@media (max-width: 767.98px) {
  main.page-board .initial-info .sensor-data {
    padding-bottom: 2rem;
  }
}
main.page-board .data-items {
  padding: 4rem 0;
}
main.page-board .data-items .data-item {
  margin-bottom: 3rem;
}
main.page-board .data-items .data-item span.value {
  display: block;
  font-weight: 400;
  font-size: 70px;
  padding: 0;
  margin: 0;
  color: #000000;
}
main.page-board .data-items .data-item span.label {
  color: #000000;
  font-size: 20px;
}
@media (max-width: 767.98px) {
  main.page-board .data-items {
    padding: 2rem 0;
  }
  main.page-board .data-items .data-item {
    margin-bottom: 1.5rem;
  }
}
main.page-board .ranquing-lists {
  padding: 4rem 0;
  background-color: rgba(0, 0, 0, 0.03);
}
main.page-board .ranquing-lists .data-list h3 {
  font-size: 24px;
  margin-bottom: 1rem;
  max-width: 400px;
}
main.page-board .ranquing-lists .data-list ol, main.page-board .ranquing-lists .data-list ul {
  padding: 0 1rem;
  font-size: 18px;
}
main.page-board .ranquing-lists .data-list ol li, main.page-board .ranquing-lists .data-list ul li {
  padding: 0.3rem 0;
}
@media (max-width: 767.98px) {
  main.page-board .ranquing-lists {
    padding: 2rem 0;
  }
  main.page-board .ranquing-lists .data-list {
    margin-bottom: 1.5rem;
  }
}
main.page-board .form-banner {
  color: #ffffff;
  background-color: #e3142b;
  padding: 5rem 0;
  text-align: center;
}
main.page-board .form-banner h2 {
  font-size: 40px;
  max-width: 900px;
  margin: 0 auto;
}
main.page-board .form-banner p {
  font-size: 18px;
  max-width: 900px;
  margin: 1rem auto;
  margin-bottom: 2rem;
}
main.page-board .form-banner a {
  position: relative;
  display: inline-block;
}
@media (max-width: 767.98px) {
  main.page-board .form-banner {
    padding: 2rem 0;
  }
  main.page-board .form-banner h2 {
    font-size: 30px;
  }
}
@media (max-width: 575.98px) {
  main.page-board .form-banner h2 {
    font-size: 24px;
  }
  main.page-board .form-banner p {
    font-size: 16px;
  }
}

main.page-legal {
  padding-top: 16rem;
  padding-bottom: 6rem;
  background-color: #fff;
  color: #000000;
}
main.page-legal h1 {
  color: #e3142b;
}
main.page-legal .legal-content {
  padding-bottom: 3rem;
  font-size: 15px;
  font-weight: 400;
}
main.page-legal .legal-content h3 {
  font-size: 25px;
  font-weight: 600;
  padding: 1rem 0;
}
main.page-legal .legal-content a {
  border-radius: 10px;
  color: #e3142b;
  font-weight: 600;
}
main.page-legal .legal-content a:hover {
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  main.page-legal .legal-content h3 {
    font-size: 22px;
  }
}
@media (max-width: 575.98px) {
  main.page-legal .legal-content h3 {
    font-size: 20px;
  }
}

.cky-consent-container {
  border-radius: 15px !important;
}
.cky-consent-container .cky-consent-bar {
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2) !important;
  font-family: "Graphik", Helvetica, Arial, sans-serif !important;
}
.cky-consent-container .cky-consent-bar .cky-notice .cky-notice-btn-wrapper button {
  border-radius: 15px;
}

.cky-modal {
  border-radius: 15px !important;
  font-family: "Graphik", Helvetica, Arial, sans-serif !important;
}
.cky-modal .cky-preference-center {
  border-radius: 15px !important;
  border: 0 !important;
}
.cky-modal .cky-preference-center .cky-preference-header {
  border-bottom: 0 !important;
}
.cky-modal .cky-preference-center .cky-footer-shadow {
  display: none !important;
}
.cky-modal .cky-preference-center .cky-preference-content-wrapper {
  border-bottom: 0 !important;
}
.cky-modal .cky-preference-center .cky-preference-body-wrapper .cky-accordion {
  border: 0 !important;
}
.cky-modal .cky-preference-center .cky-preference-body-wrapper .cky-accordion-item {
  border-radius: 15px !important;
}
.cky-modal .cky-preference-center .cky-preference-body-wrapper .cky-accordion-body {
  border-radius: 15px !important;
}
.cky-modal .cky-preference-center .cky-preference-body-wrapper .cky-accordion-header .cky-always-active {
  border-radius: 10px;
}
.cky-modal .cky-footer-wrapper button {
  border-radius: 15px;
}
.cky-modal div[data-cky-tag=detail-powered-by] {
  display: none !important;
}
