@charset "UTF-8";
:root {
    --mapa: #e35c55;
    --mapa-light: #e9b6b2;
    --white: #FFFFFF;
    --black: #1C2123;
    --light-grey: #F2F2F2;
    --mid-grey: #DFDFDF;
    --grey: #5A6770;
    --green-light: #E0FEF5;
    --green: #64FBCB;
    --orange: #FF9E80;
    --orange-light: #FFB199;
    --orange-lighter: #FAD8CD;
    --blue-light: #CFE6EF;
    --blue: #65C1D9;
    --blue-dark: #536771;
    --purple: #DDA8CF;
    --purple-dark: #001783;
    --yellow: #FFDC80;
    --red: #a90606;
}

/* bs */
.alert{
    background: var(--light-grey);
    padding: 1em;
    margin-bottom: var(--padding-s);
    font-style: italic;
}

.text-center{
    text-align: center;
}
.hide{
    display: none;
}
a:hover, a:focus {
    color: inherit;
    text-decoration: inherit;
}
ul.pagination{
    padding-top: var(--padding-m);
}
ul.pagination li.page-item {
    display: inline-block;
    color: var(--black);
    padding-left: var(--padding-xxxs);
    padding-right: var(--padding-xxxs);
}
ul.pagination li.page-item a {
    color: var(--black);
    text-decoration: none;
}
.pagination{
    display: block;
    width: 100%;
}
ul.pagination li.page-item.active,
.--mapa ul.pagination li.page-item.active {
    color: var(--mapa)
}
.--green ul.pagination li.page-item.active {
    color: var(--green)
}
.--orange ul.pagination li.page-item.active {
    color: var(--orange)
}
.--blue ul.pagination li.page-item.active {
    color: var(--blue)
}
.width75{
    width: 75%;
}

.social-icon {
    position: absolute;
    background: none;
    float: right;
    /*margin-left: var(--padding-xs);*/
    right: 0;
    margin-top: var(--padding-m);
    margin-left: var(--padding-xs);
    color: var(--black);
    text-align: center;
    z-index: 9999;
}

.social-icon a,
.social-icon span{
    display: block;
    color: var(--black);
    font-size: 1rem;
    padding: 0.2em;
}
.social-icon span:hover{
    cursor: pointer;
}
span.invalid-feedback {
    color: var(--red);
    font-size: var(--font-size-xxsmall);
}
span.valid-feedback {
    color: var(--black);
    font-size: var(--font-size-xxsmall);
}

input[disabled]:hover{
    cursor: not-allowed;
}


.cursor-pointer:hover{
    cursor: pointer;
}

/* bs fin*/

html,
body {
    font-family: var(--font-sans2);
    font-weight: 400;
    line-height: var(--line-height);
    font-size: var(--font-size-base);
    letter-spacing: 0;
}

:root {
    --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
    --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
    --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
    --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
    --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
    --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
    --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
    --ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
    --ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
    --ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
    --ease-in-out-expo: cubic-bezier(1, 0, 0, 1);
    --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

:root {
    --y-header: 0;
    --padding-xxxxl: 11.875rem;
    --padding-xxxl: 9.375rem;
    --padding-xxl: 7.5rem;
    --padding-xl: 5.625rem;
    --padding-lg: 3.75rem;
    --padding-l: 2.5rem;
    --padding-m: 1.875rem;
    --padding-s: 1.25rem;
    --padding-xs: 1rem;
    --padding-xxs: 0.5rem;
    --padding-xxxs: 0.25rem;
    --header-height: 5.625rem;
    --border-radius-xs: 0.625rem;
    --border-radius-small: 0.9375rem;
    --border-radius: 1.5625rem;
    --border-radius-big: 1.875rem;
    --slider-pos: 0;
}


html {
    background: var(--white);
    height: 100%;
    width: 100%;
}

body {
    min-height: 100%;
    width: 100%;
}
body main {
    width: 100%;
}



body {
    margin: 0;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

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

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

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

small {
    font-size: 80%;
}

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

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

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

figure {
    margin: 1em 40px;
}

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

pre {
    overflow: auto;
}

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

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

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

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

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

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

input[type=search] {
    -webkit-appearance: textfield;
    box-sizing: content-box;
}

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

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

* {
    box-sizing: border-box;
}

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

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

figure {
    margin: 0;
}

img {
    vertical-align: middle;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3, h4, h5, p {
    margin: 0;
}

input, button, embed, video, object {
    outline: none;
    border: 0 solid;
}

html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

button {
    -webkit-user-select: none;
    /* Chrome all / Safari all */
    /* Firefox all */
    /* IE 10+ */
    user-select: none;
    /* Likely future */
    -webkit-touch-callout: none;
    -moz-touch-callout: none;
    -ms-touch-callout: none;
    touch-callout: none;
}

.media-holder {
    --aspect: 1;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background-position: center center;
    background-size: cover;
    padding-top: calc(100% * var(--aspect));
}
.media-holder video,
.media-holder iframe,
.media-holder [data-item-load],
.media-holder [data-item-aspect-ratio],
.media-holder [data-item-loaded],
.media-holder [data-item-preload],
.media-holder [data-item-lazyload] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

[data-item-load]:not(img),
[data-item-loaded]:not(img),
[data-item-preload]:not(img),
[data-item-lazyload]:not(img) {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

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

.visually-hidden {
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    position: absolute;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* DEFAULT */
a > .content {
    position: relative;
}

a > *,
button > * {
    pointer-events: none;
}



input[type=checkbox] {
    display: none;
}
input[type=checkbox] + label::before {
    content: "";
    -webkit-appearance: none;
    background-color: var(--white);
    border: 1px solid var(--black);
    border-radius: 0;
    cursor: pointer;
    display: inline-block;
    height: 0.625rem;
    margin-right: var(--padding-xxxs);
    position: relative;
    vertical-align: baseline;
    min-width: 0.625rem;
}
input[type=checkbox]:checked + label::before {
    background: var(--black);
}
@media (max-width: 480px) {
    input[type=checkbox] + label::before {
        height: 1.25rem;
        margin-right: var(--padding-xxxs);
        position: relative;
        vertical-align: middle;
        min-width: 1.25rem;
    }
}


