@charset "utf-8";
/* CSS Document */

/** 0. Fuentes */
/** 1. Base */
/** 2. Layout: l-; 2.1. General; 2.2. Header; 2.3. Menu; 2.4. Page; 2.5. Menu */
/** 3. Componentes: c- */
/** 4. Paginas: p- */
/** 5. Otros: body-fixed */

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/** 0. Fuentes - Roboto */

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/** 1. Base */

:root {
    --color-primary: #0f77ae;
    --color-secondary: #065eac;
    --color-tertiary: #db0080;
    --color-quaternary: #a3bf2a;
    --color-bkg: #ffffff;
    --color-error: #e80000;
    --color-success: #5e7a04;
    --font-text-primary: 'Roboto', sans-serif;
    --font-color-primary: #252525;
    --font-color-secondary: #3D3D3D;
}

html, body {
    font-size: 62.5%;
    height: 100%;
}

body {
    background: var(--color-bkg) none no-repeat scroll top center;
    color: var(--font-color-primary);
    font-family: var(--font-text-primary);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
    position: relative;
}

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

*::-moz-selection {
  background: var(--color-primary);
  color: #fff;
  text-shadow: none; 
}

*::selection {
  background: var(--color-primary);
  color: #fff;
  text-shadow: none; 
}

a {
    color: var(--color-primary);
    text-decoration: underline;
    -webkit-transition: all 0.1s ease 0s;
    -ms-transition: all 0.1s ease 0s;
    -moz-transition: all 0.1s ease 0s;
    -o-transition: all 0.1s ease 0s;
    transition: all 0.1s ease 0s;
}

a:hover {
    color: var(--color-secondary);
}

b, strong {font-weight: 700;}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    color: var(--color-primary);
    font-weight: 700;
    margin: 0 0 1rem;
}

h3 {font-size: 2.5rem;}
h4 {font-size: 1.8rem;}

h2 span {
    color: var(--color-primary);
    display: inline-block;
}

ul, li {
    font-size: 1.6rem;
    padding: 0;
    list-style: outside none none;
}

li:last-child {
    margin-bottom: 0;
}

.clear {
    clear: both;
    display: block;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    width: 0;
}

.hide-text {
    display: block;
    overflow: hidden;
    text-indent: 101%;
    white-space: nowrap;
}

input {font-size: 1.4rem; font-weight: normal;}

/* input[disabled],input[readonly] {}*/


input[type="text"], input[type="password"], input[type="email"], textarea, select {
    background-color: #FFFFFF;
    border: .1rem solid var(--color-primary);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    color: var(--font-color-primary);
    font-size: 1.5rem;
    padding: 1.2rem 1.6rem;
    width: 100%;
}

input[type="file"] {
    border: 0.1rem solid var(--color-tertiary);
    display: block;
    padding: 0;
    width: auto;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus {
    -webkit-box-shadow: 0 0 0;
    -moz-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
    border: .1rem solid var(--color-secondary);
    outline: 0.3rem solid var(--color-quaternary);
    outline-offset: 0.3rem;
}

input[type="text"].readonly,
input[type="password"].readonly,
input[type="email"].readonly {
    background-color: #e6e6e6;
    border-color: var(--font-color-secondary);
    color: #999;
}

input:focus, input:active, a:focus, a:active {outline: 0;}

input[type="text"]::placeholder, input[type="password"]::placeholder, input[type="email"]::placeholder {
    color: #999;
}

img {
    font-style: italic;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 1.6rem;
}

p {
    color: var(--font-text-primary);
    font-size: 1.6rem;
}

.visually-hidden {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    left: -9999px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

a:focus, button:focus, .custom-button:focus {
    outline: 0.3rem solid var(--color-quaternary);
    outline-offset: 0.1rem;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/** 2. Layout */

/* 2.1. General */

.l-container {
    min-height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

body > .l-container::after {
    clear: both;
    content: "";
    display: block;
    height: 20.2rem;
}

@media (min-width: 768px) {

    body > .l-container::after {
        height: 7.2rem;
    }
}

/* --------------- */

/* 2.2. Header */

.l-header {
    background-color: #ffffff;
    border-bottom: 0.1rem solid #ffffff;
    min-height: 5.2rem;
    padding: 0 0;
    position: relative;
    width: 100%;
}

.l-header .l-page__container {
    max-width: 117rem;
    width: 100%;
}

.l-header__logo {
    display: inline-block;
    padding: 1rem 0;
    vertical-align: middle;
}
.l-header__logo--image {
    display: block;
    height: auto;
    width: 7rem;
}

.l-header__info {
    background-color: var(--color-tertiary);
    display: none;
    overflow: hidden;
    padding: 0.5rem 0;
    text-align: right;
    width: 100%;
}

.l-header__info ul {
    margin: 0;
    padding: 0;
}

.l-header__info li {
    color: var(--color-bkg);
    display: inline-block;
    font-size: 1.4rem;
    margin-right: 1rem;
    padding-right: 1rem;
    position: relative;
}

.l-header__info li::before {
    background-color: var(--color-bkg);
    content: '';
    height: 1rem;
    margin-top: -0.5rem;
    position: absolute;
    right: 0;
    top: 50%;
    width: 0.1rem;
}

.l-header__info li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.l-header__info li:last-child::before {
    display: none;
}

.l-header__info a {
    color: var(--color-bkg);
    text-decoration: none;
}

.l-header__info a i {
    margin-right: 0.5rem;
}

.l-header__info a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

@media (min-width: 991px) {
    .l-header {
        border-bottom: 0 none;
        padding: 3rem 0;
        min-height: auto;
    }

    .l-header .l-page__container {
        width: 92%;
    }

    .l-header__info {
        display: block;
    }

    .l-header__logo--image {
        width: 13rem;
    }

    .l-header__content > div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
}

/* --------------- */

/* 2.3. Menu */

.l-menu {
    display: none;
    overflow: hidden;
    width: 100%;
}
.l-menu.navbar {
    padding:  0;
}
.l-menu ul {
    display: block;
    float: left;
    text-align: left;
    width: 100%;
}
.l-menu li {
    float: left;
    position: relative;
}
.l-menu a {
    border-bottom: 0 none;
    color: var(--color-primary);
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.675rem;
    position: relative;
}

.l-menu li a {line-height: 2.1rem;}

.l-menu ul.navbar-nav a > i {
    display: inline-block;
    margin-left: 1rem;
    vertical-align: middle;
}

.dropdown-toggle::after {
    display: none;
}

.l-menu a:hover, .l-menu a.active {
    background-color: var(--color-primary);
    color: #fff;
    text-decoration: none;
}

.l-menu .o-info__user {
    color: #fff;
    padding: 0 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: auto;
}

.l-menu .o-info__user > ul {
    flex-grow: 1;
    float: none;
    margin: 0;
    padding: 0 0 0 1.5rem;
    width: auto;
}

.l-menu .o-info__user > ul li {
    font-size: 1.4rem;
    margin: 0 1rem;
}

.l-menu .o-info__user > ul li a {
    border: 0 none;
    font-size: 1.4rem;
    text-decoration: none;
}

.l-menu .o-info__user > ul li a:hover {
    background-color: transparent;
    color: var(--color-primary);
    text-decoration: underline;
}

.l-menu .o-info__user > ul li i {
    margin-right: 0.5rem;
}

.o-info__points {
    color: var(--color-primary);
    -webkit-box-flex: 999;
    -ms-flex-positive: 999;
    flex-grow: 999;
    padding: 0;
}

.l-menu .o-info__points p {
    font-size: 1.4rem;
    margin: 0;
}

.l-menu .o-info__points a {
    border-bottom: 0 none;
    color: var(--color-primary);
    display: inline-block;
    font-size: 1.4rem;
    text-decoration: none;
}

.l-menu .o-info__points a:hover {
    background-color: transparent;
    color: var(--color-primary);
    text-decoration: underline;
}

.navbar-nav .dropdown-menu {
    background-color: transparent;
    padding: 0;
}

@media (min-width: 991px) {

    .l-menu {
        overflow: visible;
    }
    
    .l-menu, .collapse:not(.show) {
        display: flex;
        flex-grow: 999;
        width: 100%;
        justify-content: flex-start;
        display: flex;
        flex-flow: row-reverse;
    }
    .l-menu .navbar-collapse {
        overflow: visible;
        text-align: right;
        width: auto;
        flex-basis: auto;
    }
    .l-menu ul.navbar-nav  {
        margin-top: 1.5rem;
        padding-top: 0;
        width: auto;
    }

    .l-menu ul.navbar-nav li {
        margin-right: 1rem;
        position: relative;
    }

    .l-menu ul.navbar-nav li:last-child {
        margin-right: 0;
    }
    
    .l-menu ul.navbar-nav a {
        display: block;
        font-size: 1.6rem;
        padding: 1rem 2rem;
        position: relative;
        text-decoration: none;
    }

    .l-menu__mobile {display: none;}
}

/* --------------- */

/* 2.4. Page */

.l-page {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.l-page__container {
    margin: 0 auto;
    max-width: 117rem;
    position: relative;
    width: 92%;
}

.l-page__headers {
    background: var(--color-bkg) url('../images/headline/home.jpg') no-repeat scroll center center;
    -webkit-background-size: cover;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
        flex-flow: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
        justify-content: flex-end;
    min-height: 36rem;
    overflow: hidden;
    padding: 5vh 0;
    position: relative;
    text-align: left;
    width: 100%;
}

.l-page__headers .l-page__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
        flex-flow: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 1rem 0;
    position: relative;
}

.l-page__headers h1 {
    color: #fff;
    font-size: 4.5rem;
    line-height: 1.25;
    margin: 0;
    min-height: 6rem;
    padding: 0 0 2rem;
    position: relative;
}

.l-page__headers .l-page__button {
    margin-bottom: 2rem;
}

.l-page__content {
    padding: 5rem 0;
}

.l-page__section {
    overflow: hidden;
    width: 100%;
}

.l-page__section--bkg {
    background-color: var(--color-bkg);
}

.l-page__section h2 {
    font-size: 3.5rem;
    font-weight: 300;
    margin: 0 0 2.5rem;
}

.l-page__box {
    background-color: #fff;
    overflow: visible;
    padding: 1rem;
    text-align: left;
    width: 96%;
}

.l-page__box > h2,
.l-page__box > h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

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

.o-box {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
        flex-flow: column;
    gap: 2rem;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
        justify-content: flex-start;
    overflow: visible;
}

.o-box__left {
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    gap: 2rem;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
        justify-content: flex-start;
    width: 25rem;
}

.o-box__left > span,
.o-box__left > strong {
    color: var(--color-primary);
    font-size: 4rem;
    font-weight: 700;
}

.o-box__right {
    width: 100%;
}

@media (min-width: 768px) {

    .o-box {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    }

    .o-box__left {
        width: 30%;
    }

    .o-box__right {
        width: 70%;
    }
}

.o-box__description {
    -webkit-flex-flow: row wrap;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    overflow: hidden;
    width: 100%;
}

.o-description__image {
    margin-bottom: 1.5rem;
    text-align: center;
    width: 100%;
}
.o-description__image img {
    display: block;
    margin: 0 auto;
    max-width: 320px;
    width: 100%;
}
.o-description__detail {
    width: 100%;
}

.o-box__description p:last-child {margin-bottom: 0;}

.o-box__form {
    overflow: hidden;    
    width: 100%;
}

.o-box__content {
    padding: 4rem 2rem;
}

.o-box__form .c-form {
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
}

.o-box__error {
    background-color: var(--color-bkg);
    border: 1px solid var(--color-error);
    color: var(--color-error);
    display: inline-block;
    font-weight: bold;
    margin-bottom: 2rem;
    max-width: 1170px;
    padding: 1rem;
    text-align: center;
    width: 100%;
}

.o-box__error p {
    color: var(--color-error);
    margin-bottom: 0;
}

.o-box__success {
    background-color: var(--color-bkg);
    border: 1px solid var(--color-success);
    color: var(--color-success);
    display: inline-block;
    font-weight: bold;
    margin-bottom: 2rem;
    max-width: 1170px;
    padding: 1rem;
    text-align: center;
    width: 100%;
}

.o-box__success p {
    color: var(--color-success);
    margin-bottom: 0;
}

.o-box__title {
    margin-bottom: 3rem;
    overflow: hidden;
    text-align: center;
    width: 100%;
}

.o-box__title i {
    border: 2px solid #4baf4c;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #4baf4c;
    font-size: 2rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.o-box__title h3 {
    font-size: 2.2rem;
    margin: 0;
}

.o-title--h3 {margin: 0;text-align: left;}

.l-page__button {
    margin-top: 2rem;
    overflow: visible;
    position: relative;
    text-align: center;
    width: 100%;
}

.l-page__button-top {
    margin: 0 0 2rem;
}
.l-page__button--left {text-align: left;}
.l-page__button--right {text-align: right;}
.l-page__button--m30 {margin-top: 3rem;}
.l-page__button--2 a {
    margin: 1%;
}

.o-box__text {
    margin: 2rem 0;
    overflow: hidden;
    text-align: center;
    width: 100%;
}

.o-box__text h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.o-box__text p {line-height: 1.5;}

@media (min-width: 768px) {
    .l-page__general {
        padding: 3.125rem 0;
    }
    .l-page__headers h2 {
        font-size: 3rem;
        line-height: 1.55;
    }
    .l-page__box {
        padding: 4rem;
        text-align: left;
    }

    .o-box__text h3, .o-box__title h3 {
        font-size: 3.2rem;
    }

    .o-description__image {width: 35%;}
    .o-description__detail {width: 63%;}

    .o-box__description--right .o-description__image {order: 2;}
    .o-box__description--right .o-description__detail {order: 1;}
}

.l-page__volver {
    overflow: hidden;
    padding: 1rem 0;
    text-align: left;
    width: 100%;
}

.l-page__data {
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 2.5rem;
    padding-bottom: 1.2rem;
}
.l-page__data p {font-size: 2rem;text-align: left;}

.o-data__info {
    border: 1px solid var(--color-primary);
    -webkit-border-radius: 2rem;
    -moz-border-radius: 2rem;
    border-radius: 2rem;
    min-height: 3rem;
    padding: 1rem 1rem 1rem 5rem;
    position: relative;
    max-width: 350px;
    width: 100%;
}
.o-data__info img {
    left: 1rem;
    position: absolute;
    top: 1rem;
}

.o-data__info p {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
}

@media (min-width: 768px) {
    .l-page__data {
        align-items: flex-end;
        -webkit-flex-flow: row wrap;
        display: -webkit-flex;
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        width: 100%;
    }
    .l-page__data p {margin: 0;}
}

.l-page__info {
    font-size: 1.8rem;
    margin: 0;
    padding: 1.5rem;
    position: relative;
    text-align: center;
    width: 100%;
}

.l-page__info--icon {
    margin-top: 4rem;
    padding-top: 3.5rem;
}

.l-page__info h3 {
    line-height: 1.45;
    margin-bottom: 3rem;
}

.o-info__icon {
    left: 50%;
    margin-left: -43px;
    position: absolute;
    top: -43px;
}

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

.l-page__information .o-info__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.o-info__buttons > div {
    margin-bottom: 1.2rem;
    overflow: hidden;
    width: 100%;
}

.l-page__shadow {    
    margin: 1rem auto;
    padding: 2rem;
    width: 100%;
}

.l-page__shadow--small {
    border: 0.1rem solid var(--color-primary);
    max-width: 60rem;
}

@media only screen and (min-width: 768px){
    .l-page__shadow  {
        max-width: 68rem;
    }

    .l-page__shadow--small {
        max-width: 60rem;
    }
}

@media only screen and (min-width: 992px){
    .l-page__shadow {
        max-width: 90rem;
    }

    .l-page__shadow--small {
        max-width: 65rem;
    }
}

@media only screen and (min-width: 1280px){
    .l-page__shadow {
        max-width: 100%;
    }

    .l-page__shadow--small {
        max-width: 65rem;
    }
}

.l-page__section {
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 100%;
}

.l-page__title {
    margin: 0 auto 1rem;
    overflow: hidden;
    width: 100%;
}
.l-page__title h2 {
    font-family: var(--font-text-secondary);
    font-size: 2.6rem;
    text-align: center;
}

@media (min-width: 768px) {
    .l-page__section {
        padding: 1.5rem 0 5rem;
    }

    .l-page__title {
        margin: 0 auto 3rem;
    }

    .l-page__title h2 {
        font-size: 3.5rem;
    }
}

.l-page__information {
    background-color: #fff;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    margin: 0 auto;
    max-width: 117rem;
    overflow: hidden;
    padding: 4rem;
    text-align: center;
    width: 96%;
}

.l-page__information--white {
    background-color: #fff;
}

.l-page__information h2 {
    font-size: 3.2rem;
    font-weight: 700;
}

.l-page__information h3 {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 2.5rem;
}

.l-page__information h4 {
    font-size: 2rem;
    margin-bottom: 3.5rem;
}

.l-page__information .o-info__buttons a,
.l-page__information .o-info__buttons button {
    margin: 1rem;
}

.l-page__information .o-info__buttons a {
    order: 2;
}

.l-page__information .o-info__buttons button {
    order: 1;
}

@media (min-width: 768px) {
    .l-page__information .o-info__buttons a {
        order: 1;
    }

    .l-page__information .o-info__buttons button {
        order: 2;
    }
}

.l-page__headers {
    background: #ffffff url('../images/headline/home.jpg') no-repeat scroll center center;
    background-size: cover;
    overflow: hidden;
    padding: 2rem 0 1rem;
    position: relative;
    width: 100%;
}

.l-page__headers h2,
.l-page__headers p,
.l-page__headers p a {
    color: #fff;
}

.l-page__headers p a:hover {
    color: var(--color-secondary);
}

.l-page__points {
    overflow: hidden;
    padding: 1rem 0;
    text-align: center;
    width: 100%;
}

.l-page__points h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.l-page__points ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
    max-width: 72.4rem;
    width: 100%;
}

.l-page__points li {
    background-color: var(--color-primary);
    border: 0.4rem solid var(--color-primary);
    -webkit-border-radius: 0.5rem;
    border-radius: 0.5rem;
    color: #fff;
    margin: 2% 1%;
    max-width: 28.5rem;
    padding: 2rem;
    width: 98%;
}

.l-page__points li:nth-child(2) {
    box-shadow: 4px 4px 8px var(--color-quaternary);
    margin: 1%;
}

.l-page__points h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.l-page__points span {
    font-size: 1.4rem;
    text-transform: uppercase;
}

.l-page__points h3 {
    font-size: 2.2rem;
}

.l-page__points strong {
    display: block;
    font-size: 3.4rem;
}

.l-page__points em {
    display: block;
    font-size: 1.8rem;
    font-style: normal;
    line-height: 1.85rem;
}

@media (min-width: 768px) {

    .l-page__headers {
        padding: 2.5rem 0;
    }

    .l-page__points li {
        width: 31%;
    }
}

/* --------------- */

/* 2.5. Footer */

.l-footer {
    background-color: #fff;
    border-top: 0.1rem solid #C8C8C8;
    margin-top: -202px;
    min-height: 202px;
    overflow: hidden;
    padding: 1.5rem 0;
    position: relative;
    width: 100%;
    z-index: 10;
}
.l-footer__list {
    margin: 0;
    overflow: visible;
    padding: 1rem 0;
    text-align: left;
    width: 100%;
}
.l-footer__list li {
    color: var(--font-color-secondary);
    margin: 0 0 1rem;
    text-align: left;
    width: 100%;
}

.c-footer li a {
    color: var(--font-color-secondary);
    font-size: 1.4rem;
    text-decoration: none;
}

.c-footer li a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

@media (min-width: 768px) {
    .l-footer {
        margin-top: -7.2rem;
        min-height: 7.2rem;
    }

    .l-footer > .l-page__container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    
    .l-footer__list {
        margin: 0;
        text-align: left;
        width: auto;
    }

    .l-footer__list li {
        margin-bottom: 0;
        width: auto;
    }

    .c-footer li {
        display: inline-block;
        margin: 0 1.5rem 0 0;
        padding-right: 1.5rem;
        position: relative;
        text-align: left;
    }

    .c-footer li:last-child {
        margin: 0;
        padding-right: 0;
    }

}

@media (min-width: 991px) {
    .l-footer__list + img {
        margin: 0;
        max-width: 11.7rem;
    }
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/** 3. Componentes */

/* 3.1 Botones */

.c-btn {
    background-color: var(--color-primary);
    border: .2rem solid var(--color-primary);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: var(--font-text-primary);
    font-size: 1.5rem;
    font-weight: 400;
    padding: 1.3rem 5rem 1.3rem;
    text-align: center;
    text-decoration: none;
    /*text-transform: uppercase;*/
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}
.c-btn:hover {
    background-color: #fff;
    border: .2rem solid var(--color-primary);
    color: var(--color-primary);
    text-decoration: none;
}

.c-btn--underline {
    background-color: transparent;
    border-color: transparent;
    color: var(--color-secondary);
    padding: 1rem 0.5rem;
    text-decoration: none;
}

.c-btn--underline:hover {
    background-color: transparent;
    border-color: transparent;
    color: var(--color-primary);
    text-decoration: underline;
}

.c-btn--underline i {
    margin-right: 1rem;
}

.c-btn--border {
    background-color: #fff;
    background-image: none;
    border: .2rem solid var(--color-primary);
    color: var(--color-primary);
    text-decoration: none;
}

.c-btn--border:hover {
    background-color: var(--color-primary);
    border: .2rem solid var(--color-primary);
    color: #fff;
}

.c-btn--disabled, .c-btn--disabled:hover, .c-btn--disabled:focus {
    background-color: #DDD;
    border: 0 none;
    color: #929292;
}

.c-btn--cancel {
    color: var(--color-error);
    text-decoration: underline;
    text-transform: inherit;
}

.c-btn--cancel:hover {color: #000;}

.c-btn--white {
    background-color: #fff;
    border-color: #fff;
    color: var(--color-primary);
}

.c-btn--white:hover {
    background-color: var(--color-secondary);
    border: .2rem solid var(--color-secondary);
    color: #FFF;
}

.c-button__mobile {
    display: inline-block;
    min-height: 5.2rem;
    overflow: hidden;
    position: absolute;
    left: 0;
    vertical-align: middle;
    top: 0;
}

.c-button__mobile button {
    color: var(--color-primary);
    padding: 0.6rem 1.2rem;
    outline: none;
}

.c-button__mobile button span {
    background-color: var(--color-primary);
    display: block;
    height: 0.3rem;
    margin: 6px 0;
    -webkit-transition: 0.4s;
    -ms-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    width: 3.5rem;
}

.c-button__mobile button:focus{
    outline: none;
}

.c-button__mobile i {font-size: 3.4rem;}

.c-button__mobile i.fa-times {display: none;}

@media (min-width: 991px) {
    .c-button__mobile {
        display: none;
    }
}

/* --------------- */

/* 3.2 Listas */

.c-list {
    overflow: hidden;
    width: 100%;
}

.c-list li {
    margin: 0 0 1rem;
    position: relative;
}

.c-list li:last-child {
    margin-bottom: 0;
}

.c-list--points li {    
    padding: 0 0 0 2rem;
}

.c-list--points li::before {
    background-color: var(--color-primary);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: '';
    display: block;
    height: 0.5rem;
    left: 0;
    position: absolute;
    top: .7rem;
    width: 0.5rem;
}

.c-list--points ul {margin-top: 1.2rem;}

.c-list--points ul li::before {
    background-color: #FFF;
    border: 0.1rem solid var(--color-primary);
}

.c-list--letters li {
    padding: 0 0 0 2rem;
}

.c-list--letters li span {
    color: var(--color-primary);
    font-weight: bold;
    left: 0;
    line-height: 1.2;
    position: absolute;
    top: 0;
}

/* --------------- */

/* 3.3 Colores */

.c-color--red {color: var(--color-error);}
.c-color--green {color: var(--color-secondary)};

/* --------------- */

/* 3.4 Enlaces */

.c-link--mailto {
    color: var(--color-primary);
    font-weight: bold;
}

.c-link--mailto:hover {
    text-decoration: underline;
}

.c-link--table {
    color: var(--color-primary);
    text-decoration: none;
}

.c-link--table:hover {text-decoration: underline;}

/* --------------- */

/* 3.5 Tablas */

.c-table--small {
    max-width: 400px;
    width: 100%;
}

.c-table thead th, .c-table tbody td {
    background-color: transparent;
    border-bottom: 1px solid var(--color-primary);
    border-top: 0 none;
    padding: 1.4rem 0.5rem;
    vertical-align: middle;
    text-align: left;
}

.c-table thead th {
    border-top: 0 none;
    color: var(--font-color-primary);
    font-size: 1.5rem;
    font-weight: 600;
}

.c-table tbody td {
    color: var(--font-color-primary);
    font-size: 1.4rem;
}

.c-table thead th.c-table__center,
.c-table tbody td.c-table__center {text-align: center;}
.c-table thead th.c-table__left,
.c-table tbody td.c-table__left {text-align: left;}
.c-table thead th.c-table__right,
.c-table tbody td.c-table__right {text-align: right;}

.c-table .c-table__links {
    color: var(--color-primary);
    display: inline-block;
    font-weight: 600;
    margin-right: 1rem;
}
.c-table .c-table__links:last-child {margin-right: 0;}

.c-table .c-table__links:hover {text-decoration: underline;}

.c-table td .c-btn {
    display: inline-block;
    font-size: 1.5rem;
    margin: 0 0.6rem;
    padding: 1.2rem 1rem;
}

.c-table td .c-btn i {
    margin-left: 0;
    margin-right: .4rem;
}

.desktop_view {display: none;}

.mobile_view {display: none;}

@media (min-width: 768px) {
    .desktop_view {display: block;}
    .mobile_view {display: block;}
}

/* 3.5.1 Datatable */

.dataTables_wrapper .dataTables_info {
    font-size: 1.3rem;
}

table.c-table.dataTable thead th {
    background-color: var(--color-primary);
    border-bottom: .1rem solid var(--color-primary);
    color: #fff;
    font-weight: 400;
    padding-bottom: 1.8rem;
    padding-left: 1rem;
    padding-top: 1.8rem;
    text-transform: uppercase;
}

/*table.c-table.dataTable thead .sorting:before,
table.c-table.dataTable thead .sorting:after,
table.c-table.dataTable thead .sorting_asc:before,
table.c-table.dataTable thead .sorting_desc:after,
table.c-table.dataTable thead .sorting_asc:after,
table.c-table.dataTable thead .sorting_desc:before {display: none;}*/

table.c-table.dataTable tr td {
    border-bottom: 0 none;
    padding: 1.5rem 1rem;
}

table.dataTable tbody tr.odd {
    background-color: #efefef;
}

table.c-table.dataTable.no-footer {border-bottom: 0 none;}

.o-general__content {
    padding: 3rem;
}

.o-general__content h2.center {
    text-align: center;
}

.o-general__content h3 {
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.o-general__content table.dataTable tbody tr {
    background-color: transparent;
}

.o-general__content .dataTables_wrapper .dataTables_info {
    color: var(--color-primary);
    font-size: 1.2rem;
    width: 100%;
}

.l-page__box .dataTables_wrapper .dataTables_paginate {
    text-align: right;
    width: 100%;
}

.l-page__box .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.l-page__box .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: transparent none no-repeat scroll 0 0;
    -webkit-box-shadow: 0 0 0;
    -moz-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
    border: 0;
    color: var(--color-primary)!important;
    font-size: 1.8rem;
    font-weight: bold;
}

.l-page__box .dataTables_paginate span {
    overflow: hidden;
}

.l-page__box .dataTables_paginate span a {display: inline-block;padding: .8rem!important;}

.l-page__box .dataTables_wrapper .dataTables_paginate .paginate_button {
    border: 0 none!important;
    color: var(--font-color-secondary)!important;
    font-size: 1.5rem;
    font-weight: normal;
}

.l-page__box .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: transparent none no-repeat scroll 0 0;
    -webkit-box-shadow: 0 0 0;
    -moz-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
    color: var(--color-primary)!important;
}

.l-page__box .dataTables_wrapper .dataTables_paginate > .paginate_button {
    background-color: var(--color-primary);
    color: #fff!important;
    height: 3.2rem;
    padding: 0.8rem 0 0;
    width: 3.2rem;
}

.l-page__box .dataTables_wrapper .dataTables_paginate > .paginate_button:hover {
    background-color: var(--color-secondary);
    color: #fff!important;
}

.l-page__box .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, 
.l-page__box .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, 
.l-page__box .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
    color: var(--font-color-secondary)!important;
}

.l-page__box .dataTables_wrapper .dt-buttons {
    float: right;
    margin-bottom: 1rem;
    text-align: right;
}

.l-page__box .dataTables_wrapper .dt-buttons button {
    background-color: transparent;
    border: 0.2rem solid transparent;
    color: var(--color-primary);
    cursor: pointer;
    font-size: 1.4rem;
    padding: 1rem;
}

.l-page__box .dataTables_wrapper .dt-buttons button:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.l-page__box .dataTables_wrapper .dt-buttons button i {
    margin-right: 0.5rem;
}

/* --------------- */

/* 3.6 Imagen */

.c-img--left {float: left;margin-right: 1rem;}

.c-img--right {float: right;margin-left: 1rem;}

.c-img--ranking {
    display: block;
    margin: 0 auto;
    max-width: 100%
}

/* --------------- */

/* 3.7 Select */

.c-select {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background-attachment: scroll;
    background-clip: border-box;
    background-color: #fff;
    /* background-image: url("../images/img_bg_select.png"); */
    background-origin: padding-box;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: auto 100%;
    position: relative;
    display: flex;
    overflow: hidden;
    border: 0.1rem solid var(--color-primary);
    padding: .1rem 0 0 0;
}

.c-select:focus{
    box-shadow: none !important;
    border-color: var(--color-primary) !important;
}

.c-select__multiple {
    margin-bottom: 2rem;
    overflow: hidden;
    width: 100%;
}

.c-select__multiple select {
    padding: 1.2rem;
}

.c-select::after {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: transparent url("../images/img_bg_select.png") no-repeat scroll 0 0;
    background-size: auto 100%;
    content: "";
    pointer-events: none;
    position: absolute;
    right: 1rem;
    top: 6px;
    width: 3rem;
    height: 3rem;
    border-radius: 0;
}

.c-select select {
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    border-radius: 1rem;
    -moz-appearance: caret;
    -moz-osx-font-smoothing: grayscale;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    appearance: none;
    background: #fff none repeat scroll 0 0;
    border: 0 none;
    cursor: pointer;
    font-size: 1.4rem;
    height: auto;
    color: var(--font-color-secondary);
    line-height: 1.1;
    margin: 0;
    outline: medium none;
    overflow: hidden;
    padding: 1.5rem 5.5rem 1.5rem 1.5rem;
    width: 100%;
}
.c-select select:focus {
    background-color: transparent;
}

.c-select select::-ms-expand {
    display: none;
}

/* --------------- */

/* 3.9 Modal */

.c-modal__dialog {
    background-color: #fff;
    border: 0.2rem solid var(--color-primary);
    -webkit-box-shadow: 4px 4px 0 var(--color-primary);
    box-shadow: 4px 4px 0 var(--color-primary);
}
.c-modal--newsletter .c-modal__header {
    padding-bottom: 0;
}

.c-modal__header {
    border-bottom: 0.1rem solid var(--color-primary);
    padding: 2.5rem;
}

.c-modal__header h2 {
    margin-bottom: 0;
}

.c-modal__close {
    color: var(--color-primary);
}

.c-modal__body {
    padding: 2.5rem;
}

.c-modal .c-form label {
    color: var(--font-color-primary);
}

.c-modal input[type="text"] {
    background-color: #fff;
    border: 0.1rem solid var(--color-primary);
    color: var(--color-primary);
}

.c-modal__info > img {
    display: block;
    margin: 0 auto 3rem;
    max-width: 10rem;
}

.c-modal__info > p {
    color: var(--color-primary);
    text-align: center;
}

/* 3.10 Loading */

.c-loading {
    background-color: rgba(0,0,0,0.8);
    display: none;
    height: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width:100%;
    z-index: 1100;
}

.c-loading > div {margin: auto;}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--color-primary);
  -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
          animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  -webkit-animation: lds-ellipsis1 0.6s infinite;
          animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  -webkit-animation: lds-ellipsis2 0.6s infinite;
          animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  -webkit-animation: lds-ellipsis2 0.6s infinite;
          animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  -webkit-animation: lds-ellipsis3 0.6s infinite;
          animation: lds-ellipsis3 0.6s infinite;
}
@-webkit-keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@-webkit-keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(24px, 0);
            transform: translate(24px, 0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(24px, 0);
            transform: translate(24px, 0);
  }
}

/* 3.11 Box */

.c-box {
	border: 0 none;
	margin: 0 0 1.5rem;
}

.c-box > h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.c-box > .o-general__content {
    background-color: var(--color-bkg);
}

/* --------------- */

/* 3.12 Cartela */

.c-cartela__content {
    max-width: 50rem;
    overflow: hidden;
    padding: 3rem 1rem 4rem;
    width: 100%;
}

.c-cartela__content h2 {
    color: #fff;
    font-size: 3.2rem;
    font-weight: 400;
    margin: 0 0 2rem;
}

.c-cartela__content h2 span {
    font-weight: bold;
}
.c-cartela__content h2 em {
    color: var(--color-primary);
    display: block;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
}

.c-cartela__content p {
    color: #fff;
    font-size: 2rem;
}

@media (min-width: 768px) {
    .c-cartela__content {
        max-width: 55rem;
        padding: 6rem 0 8rem 5rem;
    }
}

/* --------------- */

/* 3.13 Top */

.c-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1;
}

.c-top--image {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.c-top h2 {
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 1.5rem;
}

.c-top--large h2 {
    font-weight: 600;
}

.c-top__text {
    padding: 1.5rem 0;
    width: 100%;
}

.c-top__text p {
    font-size: 2rem;
    max-width: 50rem;
    width: 100%;
}

.c-top__image {
    display: none;
}

.c-info {
    background-color: var(--color-quaternary);
    border-radius: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    color: #fff;
    padding: 2rem 2rem;
    position: relative;
    margin: 0 auto;
    max-width: 96rem;
    width: 100%;
    z-index: 1;
}

.c-info > div {
    padding: 1rem;
}

.c-info h2, 
.c-info p {
    color: #fff;
}

.c-info h2 {
    font-size: 2.2rem;
}

.c-info p {
    font-size: 1.6rem;
}

.c-info__points > p:first-child {
    font-size: 1.8rem;
}

.c-info__points > p b {
    font-size: 2.2rem;
}

.c-info p:last-child {
    margin: 0;
}

.c-info a {
    color: #fff;
    font-weight: bold;
}

.c-info a:hover {
    color: var(--color-primary);
}

.c-info__profile {
    border-bottom: 0.1rem solid #fff;
    width: 100%;
}

.c-info__points {
    width: 100%;
}

@media (min-width: 768px) {
    .c-top__text {
        padding: 2.5rem 0;
    }

    .c-top__image {
        display: block;
        max-width: 48%;
        width: 100%;
    }

    .c-top h2 {
        font-size: 3.4rem;
        margin-bottom: 3rem;
    }

    .c-top--large h2 {
        font-weight: 600;
        padding: 2rem 0 0;
    }

    .c-info__profile {
        border-bottom: 0 none;
        border-right: 0.1rem solid #fff;
        width: 70%;
    }

    .c-info__points {
        text-align: right;
        width: 30%;
    }

}

/* --------------- */

/* 3.14 Component blue */

.c-blue {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.c-blue > div {
    width: 100%;
}

.c-notices {
    background-color: #fff;
    -webkit-border-radius: 1.5rem;
    border-radius: 1.5rem;
    margin: 0 0 1.5rem;
    padding: 3.5rem 2.5rem;
    position: relative;
}

.c-notices h3 {
    color: var(--color-primary);
}

.c-notices__content {
    height: 31rem;
    overflow: auto;
    overflow: overlay;
    width: 100%;
}

.c-notices__content::-webkit-scrollbar {
    border-radius: 0.5rem;
    display: initial;
    height: 10px;
    background-color: lightblue;
    width: 0.5rem;
}

.c-notices__content:hover::-webkit-scrollbar {
    display: initial;  
}
  
.c-notices__content::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
    -webkit-border-radius: 0.5rem;
    border-radius: 0.5rem;
}

.c-notices__description {
    border-bottom: 0.1rem solid var(--color-bkg);
    overflow: hidden;
    padding: 2rem 1.5rem 2rem 0;
    position: relative;
    width: 100%;
}

.c-notices__description:last-child {
    border-bottom: 0 none;
}

.c-notices__description--image {
    padding: 2rem 1.5rem 2rem 14.5rem;
}

.c-notices__images {
    -webkit-border-radius: 1.5rem;
    border-radius: 1.5rem;
    height: 12.2rem;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 2rem;
    width: 12.2rem;
}

.c-notices__images img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.c-notices__date {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.l-page__content--blue .c-challenges {
    background-attachment: scroll;
    background-color: var(--color-bkg);
    background-repeat: no-repeat;
    background-position: right bottom;
    
    -webkit-background-size: cover;
    background-size: cover;
    -webkit-border-radius: 1.5rem;
    border-radius: 1.5rem;
    padding: 6rem;
    position: relative;
}

.l-page__content--blue .c-challenges::before {
    background: -moz-linear-gradient(top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 );

    -webkit-border-radius: 1.5rem;
    border-radius: 1.5rem;

    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.l-page__content--blue .c-challenges p {
    color: #fff;
    position: relative;
    text-transform: uppercase;
}

.l-page__content--blue .c-challenges h3 {
    color: #fff;
    margin-bottom: 4rem;
    position: relative;
}

@media (min-width: 768px) {
    .c-blue--2 {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    }
    .c-blue--2 > div.c-notices {
        margin: 0;
        width: 45%;
    }

    .c-blue--2 > div.c-challenges {
        width: 53%;
    }
}

/** 3.15. Help banner */

.c-contactbox {
    display: none;
}

@media (min-width: 991px) {
    .c-contactbox {
        background: transparent url('../images/contact_box_small.png') no-repeat scroll 0 0;
        cursor: pointer;
        display: block;
        height: 8.4rem;
        overflow: hidden;
        padding: 0.5rem 1rem;
        position: fixed;
        right: 0;
        top: 50%;
        width: 11.6rem;
        z-index: 10;
    }
    
    .c-contactbox__small {
        overflow: hidden;
        padding-top: 0.4rem;
        width: 100%;
    }
    
    .c-contactbox h2 {
        color: var(--color-primary);
        font-size: 1.6rem;
        text-align: center;
    }
    
    .c-contactbox h3 {
        color: var(--color-primary);
        font-size: 1.5rem;
        margin: 0;
    }
    
    .c-contactbox p {
        color: var(--color-primary);
        font-size: 1.4rem;
    }
    
    .c-contactbox p:last-child {
        margin: 0;
    }
    
    .c-contactbox.c-contactbox--open {
        background: transparent url('../images/contact_box_big.png') no-repeat scroll 0 0;
        height: 17.5rem;
        width: 29.6rem;
    }
    
    .c-contactbox.c-contactbox--open .c-contactbox__small {
        display: none;
    }
    
    .c-contactbox__big {
        display: none;
        text-align: center;
    }
    
    .c-contactbox.c-contactbox--open .c-contactbox__big {
        display: block;
    }
}

/** 3.16. Headline */

.c-headline {
    background-color: var(--color-primary);
    -webkit-border-radius: 2% 2% 2% 2% / 35% 35% 35% 35%;
    border-radius: 2% 2% 2% 2% / 35% 35% 35% 35%;
    padding: 2rem;
    text-align: left;
}

.c-headline h1,
.c-headline h2 {
    color: #fff;
    font-size: 2.6rem;
    font-weight: 600;
    margin: 0;
    min-height: auto;
    padding: 0;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/** 4. Paginas */

.p-estatica__box {
    border-bottom: 0.1rem solid var(--color-primary);
    margin-bottom: 3.5rem;
    overflow: hidden;
    padding-bottom: 3.5rem;
    position: relative;
    width: 100%;
}

.p-estatica__box:last-child {
    border-bottom: 0 none;
    padding-bottom: 0;
}

.p-estatica__box .table-responsive {margin: 3rem 0;}

.p-estatica__box h3 {margin-bottom: 2rem;}

.p-estatica__box h4 {margin-bottom: 1.5rem;}

.p-estatica__box h5 {font-size: 1.6rem; margin-bottom: 1.5rem;}

.p-estatica__box p, .p-estatica__box li {
    font-size: 1.6rem;
}
.p-estatica__box p:last-child {margin-bottom: 0;}

.p-estatica__box p.small {
    font-size: 75%;
}

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

/* 4.2. Fixed */

.p-fixed {
    padding-top: 10rem;
}

.p-fixed .l-header {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.p-fixed .l-header__content {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    width: 100%

}

@media (min-width: 991px) {
    .p-fixed {
        padding-top: 7.7rem;
    }
    .p-fixed.p-user {
        padding-top: 10.8rem;
    }
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/** 5. Base */

/* 5.1 Body fixed */

.body--fixed {
    overflow: hidden;
}

.body--fixed .c-button__mobile button span.bar1 {
    -webkit-transform: rotate(-45deg) translate(-7px, 6px);
    transform: rotate(-45deg) translate(-7px, 6px);
    background-color: #fff;
}

.body--fixed .c-button__mobile button span.bar2 {
    opacity: 0;
}

.body--fixed .c-button__mobile button span.bar3 {
    -webkit-transform: rotate(45deg) translate(-7px, -6px);
    transform: rotate(45deg) translate(-7px, -6px);
    background-color: #fff;
}

.body--fixed .c-button__mobile {background-color: var(--color-primary);}

.body--fixed .c-button__mobile i {color: #fff;}

.body--fixed .o-info__user {
    display: block;
    padding: 1.5rem;
    width: 100%;
    border-bottom: 0.1rem solid #fff;
}

.body--fixed  .l-menu .o-info__user li {
    border: 0 none;
    color: #fff;
    display: inline-block;
    margin: 0 0 1.5rem;
    width: 100%;
}

.body--fixed  .l-menu .o-info__user li:last-child {
    margin: 0;
}

.body--fixed  .l-menu .o-info__user li a {
    border: 0 none;
    color: #fff;
    display: inline;
    font-size: 1.6rem;
    padding: 0;
    text-decoration: none;
}

.body--fixed  .l-menu .o-info__user li a:hover {
    color: var(--font-color-primary);
    text-decoration: underline;
}

.body--fixed  .l-menu .o-info__user li a i {
    margin-right: 1rem;
}

.body--fixed .o-info__points,
.body--fixed .o-info__points a,
.body--fixed .o-info__points a:hover {
    color: #fff;
}

.body--fixed .l-menu .o-info__user > ul {
    padding: 1.5rem 0 0;
}

.body--fixed .o-info__user i.fa-chevron-down {
    right: 1rem;
}

.body--fixed .l-menu {
    align-items: self-start;
    background-color: var(--color-primary); 
    display: flex;
    flex-flow: column;
    height: calc(100% - 5.2rem);
    left: 0;
    margin: 0;
    overflow-y: auto;
    padding: 0;
    position: fixed;
    top: 5.2rem;
    width: 100%;
    z-index: 1000;
}

.body--fixed .l-menu li {
    border-bottom: 0.1rem solid #fff;
    width: 100%;
}

.body--fixed .navbar-collapse {width: 100%;}

.body--fixed .l-header__info {display: none;}

.body--fixed .l-menu ul.navbar-nav  {
    text-align: left;
}

.body--fixed .l-menu ul.navbar-nav  li a {
    color: #fff;
    padding: 1.6rem;
    text-align: left;
    text-decoration: none;
}
.body--fixed .l-menu ul.navbar-nav  li a:hover,
.body--fixed .l-menu ul.navbar-nav  li a.active {
    background-color: var(--color-secondary);
    color: #fff;
}

/***********************************HEADER********************************************/


/*****************************************COOKIES */
#cookie-law {
    background: rgba(255, 255, 255, 0.95);
    border: 0 none;
    bottom: 0;
    color: var(--font-color-primary);
    font-family: var(--font-text-primary);
    font-size: 1.5;
    left: 0;
    margin: 0 auto;
    padding: 3rem;
    position: fixed;
    right: 0;
    text-align: center;
    width: 100%;
    z-index: 50;
}

#cookie-law p {color: var(--font-color-primary); font-size: 1.7rem;}

#cookies{
    display:none;
    background-color: #222222;
    color: #cccccc;
    padding: 10px;
    position: absolute;
    bottom: 0;
    max-width:900px;
    margin: auto; 
    display: block;
    left: 0;
    right: 0;
}

#cookie-law p a {color: var(--font-color-primary);font-weight: bold;text-decoration: underline;}

.message__warning {
    font-size: 2rem;
    border: 3px solid rgba(70, 63, 63, 0.2);
    padding: 1rem;
    border-radius: 10px;
    background-color: rgba(230, 41, 132, 0.2);
    margin-top: 1rem;
    display: block;
}