/*! HTML5 Boilerplate v5.3.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

:root {
    --primario: #0054aa;
    --secundario: #003459;
    --claro: #00a7e1;
    --negro: #00171f;
    --blanco: #ffffff;
    --gris-claro: #f5f5f5;
    --bordeado: #2564a3;

    --titulo: 'Montserrat', sans-serif;
    --parrafo: 'Poppins', sans-serif;
}

/* ====================Copia de Seguridad de Colores=====================
:root {
    --primario: #0054aa;
    --secundario: #003459;
    --claro: #00a7e1;
    --negro: #00171f;
    --blanco: #ffffff;
    --gris-claro: #f5f5f5;
    --bordeado: #2564a3;
    
    --titulo: 'Montserrat', sans-serif;
    --parrafo: 'Poppins', sans-serif;
}
========================================================================== */

html {
    font-size: 62.5%;
    line-height: 1.4;

    box-sizing: border-box;
    max-width: 100%;
}
*, *:before, *:after {
    box-sizing: inherit;
}
@media (max-width: 959px){
    a.anchor-off{
        pointer-events: none;
        cursor: pointer;
        }
}

/*  Código para modificar el color de la selección y eliminar el text-shadow  */

::-moz-selection {
    background: var(--primario);
    color: var(--blanco);
    text-shadow: none;
}

::selection {
    background: var(--primario);
    color: var(--blanco);
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */  

body{
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-size: 2rem;
    font-family: var(--parrafo);

    color: var(--negro);
    background: var(--blanco);
}
.bold{
    font-weight: bold;
}
.line2{
    line-height: 2;
}
.fontmax{
    font-size: 3rem;
}
.fontmed{
    font-size: 2.3rem;
}

/* NAVBAR */

header{
    position: fixed;

    width: 100%;
    max-width: 100%;

    z-index: 5;
    -webkit-box-shadow: 0px 5px 20px -7px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 5px 20px -7px rgba(0,0,0,0.75);
    box-shadow: 0px 5px 20px -7px rgba(0,0,0,0.75);
}

.menu{
    background-color: var(--blanco);
    color: var(--primario);
    height: 90px;
    border-bottom: 3.5px solid var(--primario);
}

.menu__container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
}

.menu__logo{
    height: 75px;
}

.menu__logo img{
    max-height: 100%;
}

.menu__logo #logo-web-mini {
    display: none;
}

@media (max-width:400px) {
    .menu__logo #logo-web-mini {
        display: block;
    }
    .menu__logo #logo-web {
        display: none;
    }
}

.menu__links{
    height: 100%;
    transition: transform .5s;
    display: flex;
    font-size: 1.7rem;
}

.menu__item{
    list-style: none;
    position: relative;
    height: 100%;
    cursor: pointer;
    --clip: polygon(0 0, 100% 0, 100% 0, 0 0);
    --transform: rotate(-90deg);
}

.menu__item:hover{
    --clip: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    --transform: rotate(0);
}

.menu__link{
    color: var(--primario);
    text-decoration: none;
    padding: 0 25px;
    display: flex;
    height: 100%;
    align-items: center;
}

.menu__link:hover{
    background-color: var(--primario);
    transition: ease-in-out .2s;
    color: var(--blanco);
}

.menu__link--colabora{
    background-color: var(--primario);
    color: var(--blanco);
}

.menu__link--colabora:hover{
    background-color: var(--secundario);
    color: var(--blanco);
}

.menu__arrow{
    transform: var(--transform);
    transition: transform .3s;
    display: block;
    margin-left: 6px;
}

.menu__icon{
    display: none;
}

.menu__nesting{
    list-style: none;
    transition:clip-path .3s;
    clip-path: var(--clip);
    position: absolute;
    right: 0;
    bottom: 0;
    width: max-content;
    transform: translateY(100%);
    background-color: var(--primario);
    padding-left: 0px;
    /*border-left: 5px solid var(--primario);*/
}

.menu__link--inside{
    padding: 30px 60px 30px 20px;
    color: var(--blanco);
    border-left: 5px solid var(--claro)
}

.menu__link--inside:hover{
    background-color: var(--blanco);
    color: var(--primario);
    border-left: 5px solid var(--primario);
    transition: ease-in-out .3s;
}

.menu-toggle {
    display: none;
}

.menu-toggle {
	height: 32px;
	position: relative;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
	width: 120px;
    right: 0px;
}
.menu-toggle:hover {
	color: var(--primario);
}
.menu-toggle i,
.menu-toggle i:after,
.menu-toggle i:before {
	display: block;
	position: absolute;
	height: 3px;
	width: 40px;
	right: 0;
	background: var(--primario);
	border-radius: 2px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}
.menu-toggle i:after,
.menu-toggle i:before {
	content: '';
}
.menu-toggle i:after {
	top: -32px;
}
.menu-toggle i:before {
	top: -16px;
}
.menu-toggle i {
	top: 32px;
}
.menu-toggle.open i:after {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	top: -22px;
}
.menu-toggle.open i:before {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: -22px;
}

@media (max-width: 960px){
    .menu__logo{
        height: 55px;
    }
}
@media (max-width:960px){

    .no-link-960 {
        pointer-events: none;
    }

    .menu__logo{
        height: 60px;
    }

    .menu__hamburguer{
        display: flex;
        right: 0;
    }

    .menu__item{
        --clip:0;
        overflow:hidden ;
        
        border-bottom: 1px solid var(--claro);
    }

    .menu__item--active{
        --transform: rotate(0);
    }

    .menu__item--show{
        background-color: var(--primario);
    }


    .menu__links{
        position: fixed;
        max-width: 95%; /* He retocado el max-width para adaptar a móviles */
        width: 95%; /* He retocado el width para adaptar a móviles REVISAR*/
        top: 70px;
        bottom: 0;
        right: 0;
        background-color: var(--primario);
        overflow-y: auto;
        display: grid;
        grid-auto-rows: max-content;
        transform: translateX(100%);
        padding-left: 0px;
    }

    .menu__links--show{
        transform: unset;
        width: 95%;
    }

    .menu__link{
        padding: 30px 0;
        padding-left: 20px;
        height: auto;
        color: var(--blanco);
    }

    .menu__arrow{
        margin-left: auto;
        margin-right: 20px;
    }

    .menu__icon{
        transform: var(--transform);
        transition: transform .3s;
        display: block;
        margin-left: auto;
        margin-right: 20px;
    }

    .menu__nesting{
        display: grid;
        position: unset;
        width: 100%;
        transform: translateY(0);
        height: 0;
        transition: height .3s;
    }

    .menu__link--inside{
        width: 100%;
        margin-left: auto;
        border-left: 3px solid var(--primario);
        border-bottom: 1px solid var(--primario);
        background-color: var(--claro);
    }
}

/* COLORES REDES SOCIALES */

#logo-fb:hover{
    color: #3c5a99;
    text-shadow: 0px 0px 15px rgba(255, 255, 255, .7);
}
#logo-tw:hover{
    color: #000000;
    text-shadow: 0px 0px 15px rgba(255, 255, 255, .7);
}
#logo-yt:hover{
    color: #ff0000;
    text-shadow: 0px 0px 15px rgba(255, 255, 255, .7);
}
#logo-fb:focus{
    color: #3c5a99;
}
#logo-tw:focus{
    color: #000000;
}
#logo-yt:focus{
    color: #ff0000;
}

.footer__fb:hover {
    background: #3c5a99;
}
.footer__tw:hover {
    background: #000000;
}
.footer__yt:hover {
    background: #ff0000;
}
.footer__sh:hover {
    background: #25D366;
}

/* CSS SLIDER */

.separador{
    position: relative;
    width: 100%;
    height: 90px;
    background-color: var(--primario);
    z-index: -1;
}

#hero{
    width: 100%;
    height: calc(100vh - 90px);
    z-index: 2;
}
#slides {
    position: relative;
}
#slides .slides-container {
    display: none;
}
#slides .scrollable {
    *zoom: 1;
    position: relative;
    top: 0;
    left: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: 100%;
}
#slides .scrollable:after {
    content: "";
    display: table;
    clear: both;
}
  
.slides-navigation {
    position: absolute;
    z-index: 3;
    top: 40%;
    width: 100%;
    transition: .5s;
}
@media (min-width: 768px){
      .slides-navigation{
          top: 45%;
      }
}
.slides-navigation a {
    position: absolute;
    text-decoration: none;
    background: rgba(0,0,0,.5);
    color: var(--blanco);
    font-weight: bold;
    height: 6rem;
    width: 6rem;
    text-align: center;
    line-height: 6rem;
    border-radius: 50%;
    font-size: 4rem;
}
.slides-navigation a:hover{
    background: var(--negro);
    transition: .5s;
}
.slides-navigation a.prev {
    left: .5rem;
}
.slides-navigation a.next {
    right: .5rem;
}
  
.slides-pagination {
    position: absolute;
    z-index: 3;
    bottom: 0;
    text-align: center;
    width: 100%;
}
.slides-pagination a {
    border: 2px solid var(--blanco);
    border-radius: 5px;
    width: 6rem;
    height: 1rem;
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    zoom: 1;
    *display: inline;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR4nGP6zwAAAgcBApocMXEAAAAASUVORK5CYII=");
    margin: .3rem;
    margin-bottom: .5rem;
    overflow: hidden;
    text-indent: -100%;
    text-decoration: none;
    color: transparent;
    transition: .5s;
}
.slides-pagination a:hover{
    transition: .2s;
    border: 2px solid var(--blanco);
}
@media (max-width: 768px){
    .slides-pagination a{
        height: 3rem;
    }
}
  .slides-pagination a.current {
    background: var(--blanco);
  }
  .description-slide{
    background-color: rgba(0,0,0,.5);
    color: var(--blanco);
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    padding-bottom: 40px;
    width: 100%;
  }
  .max-width{
    max-width: 1200px;
    margin: 0 auto;
  }
  @media (max-width: 1200px){
    .max-width{
      padding: 0 20px;
    }
  }
  .description-text{
    text-align: justify;
    padding: 0;
    margin: 0 0 30px 0;
  }
  @media (max-width: 768px){
    .description-text{
        display: none;
    }
  }
  .description-btn{
    text-decoration:none;
    font-weight: bold;
    font-size: 20px;
    color:var(--blanco);
    padding: 15px 40px;
    background-color: rgba(0,0,0,.5);
    border-width: 3px;
    border-style: solid;
    border-color: var(--blanco);
    float: right;
    text-align: center;
    text-transform: uppercase;
    transition: all .3s ease;
  }
  .description-btn:hover{
    background-color: rgba(0,0,0,1);
  }
@media (max-width: 959px){
    .description-btn{
        display: block;
        width: 100%;
    }
    .description-text{
        margin-bottom: 15px;
    }
}
  @media (min-width: 960px){
    .max-width{
      display: flex;
    }
    .description-text{
      flex: 1 0 75%;
      padding-right: 20px;
    }
    .description-btn{
      flex: 1 0 25%;
      max-height: 65px;
    }
  }

/* CSS PRINCIPAL WEB */

.max{
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
}
@media (min-width: 1320px){
    .max{
        max-width: 1200px;
    }
} 
.index-section1{
    display: block;
    margin-top: 1rem;
}
.section-title-1{
    font-family: var(--titulo);
    text-transform: uppercase;
    font-size: 4rem;
    color: var(--primario);
    /*text-shadow: 0px 3px 5px rgba(255, 255, 255, .5);*/
}
.section-title-1 p{
    font-size: 2rem;
    margin-top: 0;
}
.section-title-2{
    font-family: var(--titulo);
    text-transform: uppercase;
    font-size: 4rem;
    color: var(--blanco);
    text-shadow: 0px 3px 5px rgba(0, 0, 0, .5);
}
h1::after,
.section-title-1::after{
    content: '';
    margin: 0 auto;
    background-image: url(../img/sep-puntos.png);
    background-position: center;
    background-repeat: no-repeat;
    height: 24px;
    width: 100px;
    display: block;
}
.section-title-2::after{
    content: '';
    margin: 0 auto;
    background-image: url(../img/sep-puntos-2.png);
    background-position: center;
    background-repeat: no-repeat;
    height: 24px;
    width: 100px;
    display: block;
}
.h1-type{
    font-size: 3.7rem;
    line-height: 0.8;
}
h1 span {
    font-size: 1.8rem;
    line-height: 2;
}
h1, h2, h3, h4 {
    font-family: var(--titulo);

    word-wrap: break-word;
    overflow-wrap: break-word;
}
.lgtxt{
    font-size: 2rem;
}
@media (min-width: 768px){
    .lgtxt{
        text-align: justify;
    }
}
.section-logo img{
    width: 100%;
}
@media (max-width: 768px){
    .section-logo img{
        max-height: 250px;
        width: auto;
    }
}
.section-text-s1{
    margin-bottom: 0;
    font-size: 2.1rem;
    line-height: 1.7;
}
.section-btn{
    text-align: center;
    display: block;
}
.section-wall{
    background-color: var(--primario);
    z-index: -2;
}
.wall1{
background-image: url(../img/background.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: repeat;
    background-attachment: fixed;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.index-section1, .index-section3, .index-section5 {
    padding: 3rem 0 3rem 0;
}
.index-section2, .index-section4{
    color: var(--blanco);
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
}

.tri-top {
    margin: 0 auto;
    padding: 0;
    width: 0;
    height: 0;
    border-right: 30px solid transparent;
    border-top: 30px solid var(--blanco);
    border-left: 30px solid transparent;
    border-bottom: 0px solid transparent;
    z-index: 3;
    padding-bottom: 3.5rem;
}
.tri-bottom {
    margin: 0 auto;
    width: 0;
    height: 0;
    border-right: 30px solid transparent;
    border-top: 0px solid transparent;
    border-left: 30px solid transparent;
    border-bottom: 30px solid var(--blanco);
    z-index: 3;
    padding-top: 3rem;
}

/* CSS BOTONES */

.btn{
    border: .1rem solid var(--primario);
    background: none;
    z-index: 1;
    padding: 1rem 2rem;
    margin: 3rem 0;
    font-size: 2rem;
    cursor: pointer;
    transition: 0.5s;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    height: 6rem;
    width: 100%;
    text-align: center;
}
.btn-edit{
    height: 8rem;
    font-size: 3rem;
    line-height:6rem;
    margin: 2rem 0;
}
.btn1,.btn2{border: .1rem solid var(--blanco); background-color: var(--secundario)}
.btn1{border-top: .4rem solid var(--blanco);}
.btn2{border-bottom: .4rem solid var(--blanco);}
.btn3{border-top: .4rem solid var(--primario);}
.btn4{border-bottom: .4rem solid var(--primario);}
.btn1,.btn2{
    color: var(--blanco);
}
.btn3,.btn4{
    color: var(--blanco);
}
.btn1:hover,.btn2:hover{
    color: var(--primario);
}
.btn3:hover,.btn4:hover{
    color: var(--primario);
}
.btn::before{
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--primario);
    z-index: -1;
    transition: 0.5s;
}
.btn1::before,.btn3::before{
    top: 0;
    border-radius: 0 0 30% 30%;
}
.btn2::before,.btn4::before{
    bottom: 0;
    border-radius: 30% 30% 0 0;
}
.btn3::before,.btn4::before{
    height: 140%;
}
.btn1:hover::before,.btn2:hover::before{
    height: 140%;
    background: var(--blanco);
}
.btn3:hover::before,.btn4:hover::before{
    height: 0%;
}

@media (min-width: 768px) {
    .lgtxt{
        display: flex;
        justify-content: space-between;
    }
    .section-logo{
        flex: 0 0 25%;
    }
    .section-logo img{
        display:inherit;
        width: 80%;
    }
    .section-text-s1{
        flex: 0 0 calc(75% - 3rem);
        text-align: left;
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .section-btn{
        text-align: end;
    }
    .section-btn-edit{
        text-align: center;
    }
    .btn{
        width: 25rem;
    }
    .btn-edit{
        width: 40rem;
    }
}


/* SECCION 3 MOBILE*/

@media (max-width: 767px){
    .flex{
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: start;
        min-height: 57rem;
    }
    .container-sc3{
        width: 100%;
        display: block;
    }
    .box-sc3{
        position: relative;
        width: 100%;
        height: 60rem;
        background: var(--negro);
        box-shadow: 0 2rem 1.5rem rgba(0,0,0,.5);
        margin-bottom: 4rem;
        color: var(--blanco);
    }
    .imgBx{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .imgBx img{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 50%;
        object-fit: cover;
    }
    .contentBx{
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background: var(--blanco);
        transition: 0.5s;
        overflow: hidden;

        padding: 15px;
        box-sizing: border-box;
    }
    .box-sc3 .contentBx h3{
        margin: 0;
        padding: 0;
        font-size: 1.8rem;
        transition: 0.5s;
        color: var(--negro);
    }
    .box-sc3 .contentBx h6{
        font-size: 1.2rem;
        text-align: center;
        padding: 1rem;
        margin: 0;
        font-style: italic;
        color: var(--negro);
    }
    .box-sc3 .contentBx p{
        padding: 0 10px;
        opacity: 1;
        line-height: 1.2em;
        transition: 0.5s;
        text-align: justify;
        margin-top: 0px;
        margin-bottom: 0px;
        color: var(--negro);
    }
    .box-sc3 .contentBx a{
        width: 100%;
        background-color: var(--primario);
        margin: 0 auto;
        padding: 3rem;
        opacity: 1;
        line-height: 1.2em;
        transition: 0.5s;
        text-align: center;
        position: absolute;
        bottom: 0;
        left: 0;
        text-decoration: none;
        color: var(--blanco);
        text-transform: uppercase;
        font-size: 2rem;
    }
    .box-sc3 .contentBx a:hover{
        background-color: var(--secundario);
        transition: .3s ease-in-out;
    }
}

/* SECCION 3 DESKTOP*/

@media (min-width: 768px){
    .flex{
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: start;
        min-height: 57rem;
    }
    .container-sc3{
        width: 1200px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .box-sc3{
        position: relative;
        width: 30%;
        height: 50rem;
        background: var(--negro);
        box-shadow: 0 30px 30px rgba(0,0,0,.5);
    }
    @media (min-width: 768px) and (max-width: 1100px) {
        .box-sc3{
            width: 48%;
            margin-bottom: 3.5rem;
        }
        .box-sc3:last-of-type{
            width: 100%;
            height: 35rem;
            margin-bottom: 5rem;
        }
    }
    .imgBx{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .imgBx img{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
    }
    .box-sc3:hover .imgBx img{
        opacity: 0;
    }
    .contentBx{
        position: absolute;
        bottom: 0rem;
        left: 0;
        width: 100%;
        height: 8rem;
        background: var(--blanco);
        transition: 0.5s;
        overflow: hidden;
        z-index: 3;

        padding: 15px;
        box-sizing: border-box;
    }
    .box-sc3:hover .contentBx{
        height: 100%;
        width: 100%;
        bottom: 0;
        left: 0;
    }
    .box-sc3 .contentBx h3{
        margin: 0;
        padding: 0;
        font-size: 1.6rem;
        transition: 0.5s;
    }
    .box-sc3:hover .contentBx h3{
        font-size: 2rem;
    }
    .box-sc3 .contentBx h6{
        font-size: 1.2rem;
        text-align: center;
        padding: 1rem;
        margin: 0;
        font-style: italic;
        opacity: 0;
    }
    .box-sc3:hover .contentBx h6{
        opacity: 1;
        transition-delay: 0.5s;
    }
    .box-sc3 .contentBx p{
        margin: 10px 0 0;
        padding: 0;
        opacity: 0;
        line-height: 1.2em;
        transition: 0.5s;
        text-align: justify;
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .box-sc3:hover .contentBx p{
        opacity: 1;
        transition-delay: 0.5s;
    }
    .box-sc3 .contentBx a{
        width: 100%;
        background-color: var(--primario);
        margin: 0 auto;
        padding: 2.5rem;
        opacity: 0;
        line-height: 1.2em;
        transition: 0.5s;
        text-align: center;
        position: absolute;
        bottom: 0;
        left: 0;
        text-decoration: none;
        color: var(--blanco);
        text-transform: uppercase;
        font-size: 2.5rem;
    }
    .box-sc3:hover .contentBx a{
        opacity: 1;
    }
    .box-sc3 .contentBx a:hover{
        background-color: var(--secundario);
    }
}

/* SECCION NEWSLETTER */

.email-box{
    display: block;
    border: 1px solid var(--blanco);
    margin-bottom: 2rem;
    background: var(--secundario);
}
.nws-mob-1{
    display: flex;
    height: 6rem;
}
.nws-mob-2{
    display: flex;
}
.email-box .nws-mob-1 i{
    background: var(--blanco);
    font-size: 4rem;
    flex: 1 0 auto;
    line-height: 6rem;
    border: 1px solid var(--blanco);
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
}
.tbox,.news-btn{
    border: none;
    outline: none;
}
.tbox{
    font-size: 1.8rem;
    padding: 0;
    padding-left: 10px;
    color: var(--negro);
    flex: 10 0 auto;
}
.news-btn{
    background: var(--secundario);
    color: var(--blanco);
    padding: 0 1rem;
    text-transform: uppercase;
    transition: 0.5s;
    flex: 1 0 auto;
    height: 6rem;
    cursor: pointer;
}
.news-btn:hover{
    background: var(--claro);
}
@media (min-width: 768px){
    .email-box{
        display: flex;
        max-width: 768px;
        margin: 3rem auto;
    }
    .nws-mob-1{
        flex: 3 0 auto;
    }
    .nws-mob-2{
        flex: 1 0 auto;
    }
    .email-box .nws-mob-1 i{
        flex: 1 0 auto;
    }
    .tbox{
        flex: 10 0 auto;
    }
}
#news{
    text-align: center;
}

@media (max-width: 768px){
    .email-box {
        max-height: 122px;
    }

}

@media (max-width: 380px) {
    .email-box .nws-mob-1 i {
        display: none;
    }
    .tbox {
        display: block;
        width: 100%;
        max-width: 100%;
    }
}

/* SECCION COLABORADORES */

.container-colab{
    display: flex;
    max-width: 1200px;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}
.box-colab{
    flex: 0 0 46%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 2rem;
    border: solid 1px rgba(0, 0, 0, .2);
}
@media (min-width: 768px){
    .box-colab{
        flex: 0 0 23%;
    }
}
@media (min-width: 960px){
    .box-colab{
        flex: 0 0 18%;
    }
}
.img-colab{
    overflow: hidden;
}
.img-colab img{
    width: 100%;
    max-height: 50rem;
}
@media (min-width: 768px){
    .img-colab img{
        width: 100%;
        max-height: 50rem;
        -webkit-filter: grayscale(100%);
        -moz-filter: grayscale(100%);
        -ms-filter: grayscale(100%);
        -o-filter: grayscale(100%);
        filter: grayscale(100%);
        transition: .5s ease;
    }
    .box-colab:hover img{
        transform: scale(1.10);
        -webkit-filter: grayscale(0%);
        -moz-filter: grayscale(0%);
        -ms-filter: grayscale(0%);
        -o-filter: grayscale(0%);
        filter: grayscale(0%);
    }
}
.box-colab p{
    text-transform: uppercase;
    font-size: 1.2rem;
    color: rgba(0, 0, 0, .6);
}

/* SECCIÓN FOOTER */

footer {
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px 0;

    background: radial-gradient(circle, var(--claro) 0%, var(--primario) 50%, var(--secundario) 100%);

    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    font-size: 1.6rem;
}

footer .footer__contenedor {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;

    width: 95%;
    max-width: 1200px;

    margin: 0 auto;
}

footer .footer__seccion {
    margin-right: 30px;
}

footer .footer__nosotros {
    width: 40%;
}

footer .footer__seccion h2 {
    position: relative;
    color: var(--blanco);
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 15px;
    font-size: 2.6rem;
}

footer .footer__seccion h2:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--claro);
}


footer .footer__seccion p {
    color: var(--blanco);
}

footer .footer__redes {
    margin-top: 20px;
    display: flex;
    padding: 0;
    flex-wrap: wrap;
}
footer .footer__redes li {
    list-style: none;
}

footer .footer__redes li a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--claro);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    text-decoration: none;
    font-size: 2.8rem;
    color: var(--blanco);
    transition: all .3s ease-in-out;
}
footer .footer__redes li a:hover{
    border-radius: 25px;
}

footer .footer__enlaces {
    position: relative;
    width: 20%;
}

footer .footer__enlaces ul {
    padding: 0;
    list-style: none;
}

footer .footer__enlaces ul li a{
    color: var(--blanco);
    text-decoration: none;
    margin-bottom: 6px;
    display: inline-block;

    transition: all .2s ease-in-out;
}
footer .footer__enlaces ul li a:hover {
    color: var(--blanco);
    text-shadow: var(--negro) 3px 3px 8px;
    letter-spacing: .1rem;
}

footer .footer__contacto {
    width: calc(35% - 30px);
    margin-right: 0 !important;
}

footer .footer__contacto--lista {
    position: relative;
    padding-left: 0;
}
footer .footer__contacto--lista li {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
}
footer .footer__contacto--lista li span:nth-child(1) {
    font-size: 20px;
    margin-right: 10px;
}

footer .footer__contacto--lista li span {
    color: var(--blanco);
}
footer .footer__contacto--lista li a {
    color: var(--blanco);
    text-decoration: none;

    transition: all .2s ease-in-out;
}
footer .footer__contacto--lista li a:hover {
    color: var(--blanco);
    text-shadow: var(--negro) 3px 3px 8px;
    letter-spacing: .1rem;
}

.copyrightText {
    width: 100%;
    background: var(--secundario);
    padding: 10px 10px;
    text-align: center;
    font-size: 1.3rem;
    color: var(--blanco);
}
.copyrightText p {
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 880px) {
    footer {
        padding: 40px 40px 20px 40px;
    }
    footer .footer__contenedor {
        flex-direction: row;
    }
    footer .footer__seccion {
        margin-right: 0px;
    }

    footer .footer__nosotros {
        width: 100%;
    }
    footer .footer__enlaces {
        width: 250px;
    }
    footer .footer__contacto {
        width: calc(100% - 250px);
        margin-bottom: 0;
    }
}
@media (min-width: 768px) {
    .no-pc {
        display: none !important;
    }
}
@media (max-width: 560px) {
    footer .footer__contenedor {
        flex-direction: column;
    }
    footer .footer__enlaces {
        width: 100%;
    }
    footer .footer__contacto {
        width: 100%;
    }
}
@media (max-width: 400px) {
    footer .footer__redes li a {
        margin-bottom: 10px;
    }
    footer .footer__redes li:nth-child(3),
    footer .footer__redes li:nth-child(4) {
        margin-bottom: 0;
    }
    footer .footer__contenedor {
        max-width: 95%;
    }

}

/* IDENTIFICADOR SECCIÓN */

.sect-id{
    width: 100%;
    display: block;
    background: var(--claro);
    background: radial-gradient(circle, var(--claro) 0%, var(--primario) 50%, var(--secundario) 100%);
}
.box-id{
    max-width: 85%;
    padding: 15px 0;
}
.box-transparencia{
    margin: 5rem auto;
    max-width: 90%;
    padding-bottom: 2.5rem;
}
.box-transparencia h3,
.t-art h3{
    padding: 2rem 0;
    display: block;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1.6;
    font-size: 2.8rem;
    color: var(--blanco);
    font-weight: bold;
}
.box-transparencia h3:after,
.t-art h3:after {
    content:' ';
    display:block;
    max-width: 20rem;
    margin: 0 auto;
    border:2px solid var(--blanco);
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
}
.t-art h3 {
    padding: 0;
    text-align: left;
    color: var(--primario);
}
.t-art h3:after {
    border:2px solid var(--primario);
    margin: 0 0;
}
.t-art ul li {
    text-align: left;
    margin-bottom: .8rem;
}

@media (max-width: 560px){
    .box-transparencia h3:after,
    .t-art h3:after{
        max-width: 80%;
    }
}
.box-transparencia p{
    margin: 0;
    display: block;
    text-decoration: none;
    line-height: 1.7;
    color: var(--blanco);
    text-align: justify;
}
.box-id a{
    margin: 0;
    display: block;
    text-align: right;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 2;
    color: var(--blanco);
    width: auto;
    height: auto;
    transition: ease .3s;
}
.box-id a:hover{
    color: var(--claro);
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
    
}
.box-id a:nth-child(2)::before{
    content:' >> ';
    padding: 0 7px;
    cursor: default;
    color: var(--blanco);
    position: relative;
    top: -2.5px;
}
.box-id a:nth-child(2):hover::before{
    color: var(--blanco);
    left: 6px;
}
.box-id p{
    margin: 0;
    display: block;
    text-align: right;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 2;
    color: var(--blanco);
    font-weight: bold;
}
.box-id p::before{
    content:' >> ';
    padding: 0 5px;
    cursor: default;
    position: relative;
    top: -2.5px;
}
@media (min-width: 640px){
    .box-id{
        margin: 0 auto;
        display: flex;
        justify-content: right;
    }
    .box-id a{
        height: 80px;
        line-height: 80px;
    }
    .box-id p{
        height: 80px;
        line-height: 80px;
    }
}
@media (min-width: 1320px){
    .box-id,
    .box-transparencia{
        max-width: 1200px;
    }
}

/* PAGINA ASPPAR */

.container-asp{
    display: flex;
    max-width: 1200px;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}
.box-asp{
    flex: 0 0 46%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 2rem;
}
@media (min-width: 768px){
    .box-asp{
        flex: 0 0 30%;
    }
}
@media (min-width: 960px){
    .box-asp{
        flex: 0 0 20%;
    }
}
.img-asp{
    overflow: hidden;
}
.img-asp img{
    width: 100%;
    max-height: 50rem;
    transform: scale(1.175);
}
@media (min-width: 768px){
    .img-asp img{
        width: 100%;
        transform: scale(1);
        max-height: 50rem;
        -webkit-filter: grayscale(100%);
        -moz-filter: grayscale(100%);
        -ms-filter: grayscale(100%);
        -o-filter: grayscale(100%);
        filter: grayscale(100%);
        transition: .5s ease;
    }
    .box-asp:hover img{
        transform: scale(1.175);
        -webkit-filter: grayscale(0%);
        -moz-filter: grayscale(0%);
        -ms-filter: grayscale(0%);
        -o-filter: grayscale(0%);
        filter: grayscale(0%);
    }
}
.text-asp{
    height: 40px;
}
.text-asp p{
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.5rem;
    color: rgba(0, 0, 0, .6);
    line-height: 1.4;
}

a:visited .text-asp p {
    color: var(--secundario);
}

.box-main{
    display: none;
}

@media (min-width: 960px){
    .box-main{
        display: block;
        width: 100%;
        height: 300px;
        background-color: var(--secundario);
        -moz-transition: .3s ease;
        transition: .3 ease;
    }
}

#box0{
    display: block;
    width: 100%;
    height: 300px;
    background-image: url(../img/box-desc-0.jpg);
    background-position: center;
    background-repeat: none;
}
#box1{
    display: none;
    
    width: 100%;
    height: 300px;
    background-image: url(../img/box-desc-1.jpg);
    background-position: center;
    background-repeat: none;
}
#box2{
    display: none;
    
    width: 100%;
    height: 300px;
    background-image: url(../img/box-desc-2.jpg);
    background-position: center;
    background-repeat: none;
}
#box3{
    display: none;
    
    width: 100%;
    height: 300px;
    background-image: url(../img/box-desc-3.jpg);
    background-position: center;
    background-repeat: none;
}
#box4{
    display: none;
    
    width: 100%;
    height: 300px;
    background-image: url(../img/box-desc-4.jpg);
    background-position: center;
    background-repeat: none;
}
#box5{
    display: none;
    
    width: 100%;
    height: 300px;
    background-image: url(../img/box-desc-5.jpg);
    background-position: center;
    background-repeat: none;
}
#box6{
    display: none;
    
    width: 100%;
    height: 300px;
    background-image: url(../img/box-desc-6.jpg);
    background-position: center;
    background-repeat: none;
}
#box7{
    display: none;
    
    width: 100%;
    height: 300px;
    background-image: url(../img/box-desc-7.jpg);
    background-position: center;
    background-repeat: none;
}
#box8{
    display: none;
    
    width: 100%;
    height: 300px;
    background-image: url(../img/box-desc-8.jpg);
    background-position: center;
    background-repeat: none;
}
#box9{
    display: none;
    
    width: 100%;
    height: 300px;
    background-image: url(../img/box-desc-9.jpg);
    background-position: center;
    background-repeat: none;
}
#box10{
    display: none;
    
    width: 100%;
    height: 300px;
    background-image: url(../img/box-desc-10.jpg);
    background-position: center;
    background-repeat: none;
}
.colab-sect{
    margin-bottom: 40px;
}
.colab-sect-text{
    margin-top: 20px;
    margin-bottom: 0;
    font-family: var(--titulo);
    font-size: 4rem;
    color: var(--claro);
}
.colab-sect-color{
    font-size: 5.5rem;
    text-transform: uppercase;
    color: var(--primario);
}
.sep-mob{
    display: block;
    width: 100%;
    height: 80px;
    background-image: url(../img/sep-mob.png);
    -moz-transition: .3s ease;
    transition: .3 ease;
    background-position: center;
    background-repeat: none;
}
@media (min-width: 960px){
    .sep-mob{
        display: none;
    }
    .sep-pc{
        display: block;
        background-image: url(../img/sep-pc.png);
        -moz-transition: .3s ease;
        transition: .3 ease;
        background-position: center;
        background-repeat: no-repeat;
    }
}

/* PÁGINA ASOCIACIÓN */

.img-bg-top{
    display: flex;
    height: 80rem;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg1{
    background-image: url(../img/asoc-back.jpg);
}
.bg2{
    background-image: url(../img/neuron-back.jpg);
}
.bg3{
    background-image: url(../img/terapias-back.jpg);
    background-position: top;
}

.elevate{
    position: relative;
    top: -30rem;
    max-width: 130rem;
    padding: 2rem 5rem 0 5rem;
    background-color: var(--blanco);
    margin: 0 auto;
    margin-bottom: -30rem;
    box-shadow: 0px -15px 5px -5px rgba(0,0,0,0.3);
}

.t-art p{
    margin-top: 0;
    text-align: justify;
    line-height: 1.7;
}

#lista4 ol {
    counter-reset: li; 
    list-style: none; 
    *list-style: decimal;
    font: 15px 'trebuchet MS', 'lucida sans';
    padding: 0;
    margin-bottom: 4em;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
}

#lista4 ol {
    margin: 0 0 0 2em; 
}

#lista4 {
    list-style-type: none;
    /*list-style-type: decimal!ie; /*IE 7- hack*//**/
    margin: 0;
    margin-left: 3em;
    padding: 0;
    counter-reset: li-counter;
}

#lista4 > li{
    position: relative;
    margin-bottom: 20px;
    padding: 1em .8em;
    border-left: 2px solid var(--primario);
    background-color: var(--gris-claro);
    text-align: justify;
}

#lista4 > li:before {
    position: absolute;
    top: 10px;
    left: -0.95em;
    width: 1em;
 
    font-size: 4em;
    line-height: 1;
    font-weight: bold;
    text-align: right;
    color: var(--primario);
     
    transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    -webkit-transform: rotate(-25deg);
    z-index: -99;
    overflow: hidden;
     
    content: counter(li-counter);
    counter-increment: li-counter;
}

.logos {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    margin: 30px auto;
}
.logo_item {
    flex: 1 0 25%;
}
.logo_item img {
    max-width: 75%;
}
@media (max-width: 768px){
    .logo_item {
        flex: 1 0 45%;
    }
    .logo_item img {
        max-width: 95%;
        margin: 2rem 0;
    }
}

.add-margin-top{
    margin-top: 20px;
}
.add-margin-bottom{
    margin-bottom: 20px;
}

/* PÁGINA MVV */

.barra-title{
    max-width: 90%;
    margin: 0 auto;
}
@media (min-width: 1200px){
    .barra-title{
        max-width: 1200px;
    }
}

.title-mvv-dcha{
    display: block;
    margin: 0 auto;
    padding: 10px 0 5px 0;
    background: linear-gradient(90deg, var(--primario) 50%, rgba(255,255,255,0) 90%);
}
.title-mvv-izda{
    display: block;
    margin: 0 auto;
    padding: 10px 0 5px 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 10%, var(--primario) 50%);
}

h4{
    font-size: 2.5rem;
    font-family: var(--titulo);
    text-transform: uppercase;
    padding: 0 20px;
    margin: 0;
    color: var(--blanco);
}
h4.dcha{
    text-align: right;
}
.gradient-dcha{
    display: block;
    margin: 0 auto;
    height: 10px;
    background: linear-gradient(90deg, var(--claro) 0%, var(--primario) 50%, rgba(255,255,255,0) 90%);
    margin-bottom: 20px;
}
.gradient-izda{
    display: block;
    margin: 0 auto;
    height: 10px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 10%, var(--primario) 50%, var(--claro) 100%);
    margin-bottom: 20px;
}

/* PÁGINA PRENSA */

.contenedor-not{
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    width: 95%;
    margin-bottom: 20px;
}
@media (min-width: 600px){
    .contenedor-not{
        width: 90%;
    }
}
@media (min-width: 1024px){
    .contenedor-not{
        width: 100%;
        max-width: 1200px;
        flex-direction: row;
    }
}
.cat-not{
    order: 1;
    flex: 1 0 100%;
    display: flex;
}
@media (min-width: 1024px){
    .cat-not{
        order: 2;
        flex: 1 0 30%;
        display: flex;
    }
}
.cats{
    display: flex;
    flex: 1 0 auto;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    border-bottom: 4px solid var(--claro);
    overflow: hidden;
}
@media (min-width: 1024px){
    .cats{
        flex-direction: column;
        border-bottom: none;
    }
}
.cats-btn{
    flex: 1 1 50%;
    padding: 10px 0;
    border: .2px solid var(--claro);
    text-align: center;
    background-color: var(--primario);
    text-transform: uppercase;
    font-size: 1.8rem;
    color: var(--blanco);
    line-height: 3.1rem;
}
@media (min-width: 600px){
    .cats-btn{
        flex: 1 1 25%;
    }
}
@media (min-width: 1024px){
    .cats-btn{
        border: none;
        border-bottom: .2px solid var(--secundario);
        flex: 1 0 auto;
        max-height: 50px;
        background-color: var(--claro);
    }
    .cats-btn:last-of-type{
        border-bottom: none;
    }
}
.cats-btn:hover{
    background-color: var(--primario);
}
.cat-active{
    background-color: var(--secundario);
    font-weight: bold;
    color: var(--blanco);
}
.cat-active:hover{
    background-color: var(--secundario);
}
.panel-not{
    order: 2;
    flex: 1 1 auto;
    display: inline-flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: 20px;
}
@media (min-width: 1024px){
    .panel-not{
        order: 1;
        flex: 1 0 70%;
        margin-top: 0;
        border-right: 8px solid var(--secundario);
        border-bottom-right-radius: 15px;
    }
}
.bloque-not{
    flex: 1 1 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
@media (min-width: 600px){
    .bloque-not{
        flex: 1 1 auto;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
}
@media (min-width: 1024px){
    .bloque-not{
        padding-right: 10px;
    }
}
.bloque-radio{
    width: 100%;
    height: 250px;
    padding-right: 0;
}
.radio-img{
    background-image: url(../img/radio-mb.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
}
@media (min-width: 600px){
    .radio-img{
        background-image: url(../img/radio-pc.jpg);
    }
}
.foto-not{
    display: block;
    flex: 1 0 100%;
}
.foto-not img{
    height: 15rem;
    width: 100%;
    -webkit-filter: grayscale(.4);
    filter: grayscale(.4);
    object-fit: cover;
}
@media (min-width: 600px){
    .foto-not{
        flex: 1 1 30%;
    }
}
.not{
    display: block;
}
@media (min-width: 600px){
    .not{
        flex: 1 1 calc(70% - 1rem);
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }
}
.not h5{
    margin: 0;
    padding: 0;
    margin-left: 20px;
    margin-right: 30px;
    padding-right: 30px;
    font-family: var(--titulo);
    font-size: 3rem;
    border-bottom: 2px solid var(--primario);
    color: var(--primario);
}
.not .fecha{
    margin: 0;
    padding: 0;
    margin-right: 30px;
    font-size: 1.3rem;
    text-align: right;
}
.not .contenido-not{
    margin: 10px 0;
    padding: 0;
    margin-left: 20px;
    padding-right: 30px;
    text-align: justify;
    color: var(--negro);
    max-height: 195px;
    overflow: hidden;
}
.not .section-btn{
    margin: 0 auto;
    padding: 0;
    width: 95%;
}
.not .btn{
    margin-top: 0;
}
@media (min-width: 600px){
    .not .section-btn{
        margin: 0;
        width: 100%;
        margin-right: 30px;
    }
}

.separador-not{
    border: 2px outset  var(--primario);
    border-radius: 5px;
    margin: 20px 15% 40px 15%;
}

.separador-not:last-of-type{
    margin: 20px 15% 20px 15%;
}

.paginacion {
	margin: 0 auto;
}

.paginacion ul {
	list-style: none;
	text-align: center;
    padding: 0;
}

.paginacion ul li {
	display:inline-block;
	margin-right:10px;
}

.paginacion ul li:last-of-type {
	margin-right:0;
}

.paginacion ul li a {
	display:block;
	padding:10px 20px;
	color:#fff;
	background:var(--primario);
	text-decoration: none;
}

.paginacion ul li a:hover {
	background:var(--secundario);
}

.paginacion ul li .active {
	background:var(--secundario);
	font-weight:bold;
}

/* PÁGINA EQUIPO */

.equipo{
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
@media (min-width: 1320px){
    .equipo{
        width: 100%;
        max-width: 1200px;
    }
}
.tarjeta{
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}
@media (min-width: 480px){
    .tarjeta{
        width: 48%;
    }
}
@media (min-width: 768px){
    .tarjeta{
        width: 31%;
    }
}@media (min-width: 960px){
    .tarjeta{
        width: 23%;
    }
}
.tarjeta img{
    display: block;
    margin: 0 auto;
    width: 100%;
    transition: all .3s ease;
}
.texto-tarjeta{
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, .5);
    text-align: center;
    margin: 0;
    padding: 5px;
    transition: all .3s ease;
}
.texto-tarjeta p{
    margin: 0;
    padding: 0;
    color: var(--blanco);
    line-height: 1.3;
}
@media (min-width: 768px){
    .texto-tarjeta{
        bottom: -25px;
    }
    .tarjeta:hover .texto-tarjeta{
        bottom: 0;
    }
    .texto-tarjeta p{
        line-height: 2;
    }
    .tarjeta img{
        -webkit-filter: grayscale(1);
        filter: grayscale(1);
    }
    .tarjeta:hover img{
        -webkit-filter: grayscale(0);
        filter: grayscale(0);
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
}

.texto-tarjeta p:nth-child(1){
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: bold;
}
.texto-tarjeta p:nth-child(2){
    font-size: 1.4rem;
}

/* PÁGINA SINTOMAS */

.listas{
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 2rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.item{
    position: relative;
    padding-left: 30px;
}
.item::before{
    content: url(../img/icon-plus.png);
    position: absolute;
    top: 3px;
    left: 0px;
}
@media (min-width: 768px){
    .item:hover::before{
        transform: rotate(-15deg);
        filter: grayscale(1);
    }
}
.fuente{
    text-align: right;
    font-size: 1.5rem;
    font-style: italic;
    color: rgba(0, 0, 0, .5);
}

/* PÁGINA PREGUNTAS Y RESPUESTAS */

.card{
    width: 95%;
    margin-bottom: 40px;
}
.card-pregunta{
    background: var(--primario);
    color: var(--blanco);
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
    padding: 15px 0px 10px 75px;
    position: relative;
    border-top-right-radius: 25px;
}
.card-pregunta::before{
    position: absolute;
    top: 10px;
    left: 10px;
    content: '\f059';
    font-family: fontAwesome;
    color: var(--blanco);
    font-size: 60px;
    margin: 0;
    padding: 0;
    line-height: 1;
    -webkit-text-shadow: 0px 5px 10px rgba(0, 0, 0, .5);
    text-shadow: 0px 5px 10px rgba(0, 0, 0, .5);
}
@media (min-width: 768px){
    .card-pregunta::before{
        top:3px
    }
}
.card-respuesta{
    background: #dfdfdf;
    padding: 15px;
    text-align: justify;
    border-bottom-left-radius: 25px;
}

/* PÁGINA MENÚ SOCIAL */

    .soc-body {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        background: #f7f7f7;
        margin: auto;
        line-height: .5rem;
        flex-direction: column;
    }
    .soc-container {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 95%;
    }
    .soc-container .soc-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 35px;
        margin-bottom: 10px;
    }
    .soc-container .soc-logo img{
        width: 320px;
    }
    @media (max-width: 400px) {
        .soc-container .soc-logo img{
            width: 95%;
        }
    }
    .soc-container .soc-box {
        position: relative;
        width: 100%;
        height: 100px;
        background: #ffffff;
        cursor: pointer;
        transition: 0.5s ease-in-out;
        box-shadow: 10px 10px 10px rgba(0,0,0,0.2);
    }
    .soc-container .soc-box:nth-child(5) {
        margin-bottom: 60px;
    }

    @media (min-width: 801px) {
        .soc-container {
            width: fit-content;
        }
        .soc-container .soc-box {
            width: 400px;
        }
        .soc-container .soc-logo img{
            width: 430px;
        }
        .soc-container .soc-box:nth-child(2) {
            transform: translate(-75px);
        }
        .soc-container .soc-box:nth-child(3) {
            transform: translate(-25px);
        }
        .soc-container .soc-box:nth-child(4) {
            transform: translate(25px);
        }
        .soc-container .soc-box:nth-child(5) {
            transform: translate(75px);
        }

        .soc-container:hover .soc-box:nth-child(2) {
        transform: translate(0);
        }
        .soc-container:hover .soc-box:nth-child(3) {
            transform: translate(0);
        }
        .soc-container:hover .soc-box:nth-child(4) {
            transform: translate(0);
        }
        .soc-container:hover .soc-box:nth-child(5) {
            transform: translate(0);
        }
    }

    .soc-container .soc-box::before {
        content: '';
        position: absolute;
        width: 90px;
        height: 100%;
        background: var(--clr);
        transition: 0.5s ease-in-out;
    }

    @media (min-width: 801px) {
        .soc-container .soc-box::before {
            width: 6px;
        }
        .soc-container .soc-box:hover::before {
            width: 100%;
        }
    }

    .soc-container .soc-box .soc-content {
        position: relative;
        display: flex;
        align-items: center;
        height: 100%;
    }

    .soc-container .soc-box .soc-content .soc-icon {
        position: relative;
        min-width: 95px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .soc-container .soc-box .soc-content .soc-icon i{
        font-size: 4.5rem;
        color: var(--blanco);
        transition: 0.3s ease-in-out;
    }

    @media (min-width: 801px) {
        .soc-container .soc-box .soc-content .soc-icon i{
            font-size: 4.5rem;
            color: var(--clr);
            transition: 0.3s ease-in-out;
        }
        .soc-container .soc-box:hover .soc-content .soc-icon i {
            color: #fff;
        }
    }

    .soc-container .soc-box .soc-content .soc-text h3 {
        font-weight: 700;
        font-size: 1.8rem;
        color: var(--clr);
        transition: 0.3s ease-in-out;
    }
    .soc-container .soc-box .soc-content .soc-text p {
        font-size: 1.4rem;
        color: var(--negro);
        transition: 0.3s ease-in-out;
    }

    @media (min-width: 801px) {
        .soc-container .soc-box:hover .soc-content .soc-text h3,
        .soc-container .soc-box:hover .soc-content .soc-text p {
        color: var(--blanco);
    }
    }

    @media (max-width: 330px) {
        .delete-330 {
            display: none;
        }
        .soc-container .soc-logo {
            margin-top: 25px;
        }
        .soc-container .soc-box .soc-content .soc-text p {
            font-size: 1.2rem;
        }
}

/* PÁGINA CONTACTO */

.main__contacto {
	width: 90%;
    max-width: 1180px;
	margin: 5rem auto;

    background-color: rgb(248, 248, 248);
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, .5);
}

.formulario {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;

    padding: 20px;
}

.formulario__titulo {
    background-color: var(--primario);
    border-radius: 10px 10px 0 0;
    padding: 20px;
}
.formulario__titulo i {
    font-size: 3rem;
    margin-right: 5px;
}
.formulario__titulo h2{
    padding: 0;
    margin: 0;

    color: var(--blanco);
    font-size: 4rem;
    
    text-shadow: rgba(0, 0, 0, .4) 4px 4px 8px;
}
.formulario__titulo h2::after {
    content: "";
    display: block;
    width: 33%;
    height: 5px;
    background-color: var(--blanco);
    opacity: 90%;
    margin: 12px 0;

    box-shadow: rgba(0, 0, 0, .4) 4px 4px 8px;
}


.formulario__titulo p{
    padding: 5px 0;
    margin: 0;

    color: var(--blanco);
    font-size: 1.8rem;
}

.formulario__label {
	display: block;
	font-weight: 700;
	padding: 10px;
}
.formulario__label:last-child {
    font-weight: 300;
    font-size: 1.6rem;
}
.formulario__checkbox {
    cursor: pointer;
}

.formulario__grupo-input {
	position: relative;
    font-size: 1.7rem;
}

.formulario__input {
	width: 100%;
	background: #fff;
	border: 3px solid transparent;
	border-radius: 3px;
	height: 45px;
	line-height: 45px;
	padding: 0 40px 0 10px;
	transition: .3s ease all;
}

.formulario__input:focus {
	border: 3px solid #0075FF;
	outline: none;
	box-shadow: 3px 0px 15px rgba(0, 0, 0, 0.33);
}

.formulario__input-error {
	font-size: 1.4rem;
    padding: 8px 0px 0px 5px;
    margin: 0;
	display: none;
}

.formulario__input-error-activo {
	display: block;
}

.formulario__validacion-estado {
	position: absolute;
	right: 10px;
	top: 15px;
	z-index: 3;
	font-size: 16px;
	opacity: 0;
}
.grupo__mensaje .formulario__validacion-estado {
	position: absolute;
	right: 25px;
	top: 10px;
	z-index: 3;
	font-size: 16px;
	opacity: 0;
}

.formulario__checkbox {
	margin-right: 10px;
}

#grupo__mensaje,
#grupo__terminos, 
.formulario__mensaje,
.formulario__grupo-btn-enviar {
	grid-column: span 2;
	max-width: 100%;
}

.enlace-terminos {
    color: var(--negro);
    text-decoration: underline !important;
    transition: .2s ease-in-out all;
}
.enlace-terminos:hover {
    color: var(--primario);
}

.txt-grupo__mensaje {
	max-width: 100%;
	height: 150px;
	line-height: 20px;
}

.formulario__mensaje {
    font-size: 1.6rem;
	height: 45px;
	line-height: 45px;
	background: #F66060;
	padding: 0 15px;
	border-radius: 3px;
	display: none;
}

.formulario__mensaje-activo {
	display: block;
}

.formulario__mensaje p {
	margin: 0;
}

.formulario__grupo-btn-enviar {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.formulario__btn {
    display: block;
    padding: 10px 2px;
	width: 30%;
	background: var(--primario);
	color: #fff;
	font-weight: bold;
    text-transform: uppercase;
	border: none;
	border-radius: 5px;
	transition: .2s ease all;
}

.formulario__btn:hover {
	box-shadow: 3px 0px 20px rgba(163,163,163, 1);
    background-color: var(--secundario);
    cursor: pointer;
}

.formulario__mensaje-exito {
    width: 100%;

    font-size: 1.8rem;
    padding: 10px;
    text-align: center;
    color: var(--blanco);
    font-weight: 700;
	background: #b3b3b3;
	border-radius: 3px;
    margin-top: 15px;
	display: none;
}

.formulario__mensaje-exito--bloque {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.precarga {
    background:transparent url(../img/carga.gif) center no-repeat;
    background-size: 36px;
    width: 36px;
    height: 36px;
    display: block;
 }


 .formulario__mensaje-exito p {
    line-height: 1.2;
    color: var(--negro);

    margin: 5px 0;
 }

.formulario__mensaje-exito-activo {
	display: block;
}

/* ----- -----  Sección Formulario Socios ----- ----- */

.cuota__texto {
    background-color: var(--blanco);
    padding: 1rem;
    margin-top: 0.5rem;
    min-height: 14.3rem;
    display: block;
}
.cuota__texto p {
    margin: 0;
    padding: 0;
}
.cuota__texto ul{
    margin-block-start: .2rem;
    margin-block-end: 0;
    padding-inline-start: 3.5rem;
    font-size: 1.5rem;
}
#cuota0 {
    display: block;
    font-size: 1.5rem;
}
#cuota1 {
    display: none;
}
#cuota2 {
    display: none;
}
#cuota3 {
    display: none;
}

/* ----- -----  Estilos para Validacion ----- ----- */

.botones {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.boton {
    width: 23%;
    margin: 30px;
    box-sizing: border-box;
    text-align: center;
    transition: 0.3s;
    
    color: var(--primario);
}

.boton img {
    width: 100%;
    transition: all .5s ease-in-out;
}

.boton p {
    font-size: 1.6rem;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
}

.boton:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, .6);
    color: var(--secundario);
}

@media (max-width: 992px) {
    .botones {
        width: 95%;
    }
    .boton {
        width: 35%;
        box-shadow: 0 0 20px rgba(0, 0, 0, .4);
    }
}
@media (max-width: 768px) {
    .botones {
        width: 95%;
    }
    .boton {
        width: 50%;
        box-shadow: 0 0 20px rgba(0, 0, 0, .4);
    }
}

/* ----- -----  Estilos para Validacion ----- ----- */

.formulario__grupo-correcto .formulario__validacion-estado {
	color: #1ed12d;
	opacity: 1;
}

.formulario__grupo-incorrecto .formulario__label {
	color: #bb2929;
}

.formulario__grupo-incorrecto .formulario__validacion-estado {
	color: #bb2929;
	opacity: 1;
}

.formulario__grupo-incorrecto .formulario__input {
	border: 3px solid #bb2929;
}


/* ----- -----  Mediaqueries ----- ----- */
@media screen and (max-width: 768px) {
	.formulario {
        display: block;
	}

	.formulario__btn {
		width: 100%;
	}
}

/* ----- -----  Botón para cerrar en Términos y Condiciones ----- ----- */

.btn-cerrar-pc {
    position: absolute;
    top: 20px;
    right: 80px;
    background-color: #bb2929;
    border-radius: 25px;
    display: flex;
    align-items: center;
    padding: 2px 20px;
    cursor: pointer;
    transition: .2s ease-in-out all;
  }
  .btn-cerrar-pc:hover {
    background-color: #8d1f1f;
  }
  
  .btn-cerrar-pc span {
    color: var(--blanco);
    margin-right: auto;
  }
  
  .btn-cerrar-pc i {
    color: var(--blanco);
    margin-left: 10px;
    font-size: 4.5rem;
  }
  
.btn-cerrar-movil {
    display: none;
}

@media screen and (max-width: 980px) {
	.btn-cerrar-movil {
        display: inline;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    .btn-cerrar-movil i{
        text-shadow: var(--blanco) -4px 0px 15px;
    
        font-size: 6rem;
        color: #bb2929;
        cursor: pointer;
    }
    .btn-cerrar-pc {
        display: none;
    }
}

/* ----- -----  Secciones Avisos Legales ----- ----- */

.legales p {
    font-size: 1.8rem;
}
.legales p.sangria {
    margin-left: 27px;
    margin-bottom: 10px;
}
.legales p:last-of-type {
    margin-bottom: 40px;
}
.legales ul li{
    font-size: 1.8rem;
    text-align: left;
    line-height: 1.7;
    margin-left: 5px;
}
.legales h3 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: left;

    color: var(--primario);
}
.legales h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--negro);
    text-align: left;
    padding: 0;
    margin: 0 0 10px 25px;
}
.enlace-legal,
.legales a {
    text-decoration: underline;
    color: var(--primario);
    cursor: pointer;

    word-wrap: break-word;
    overflow-wrap: break-word;
}
.enlace-legal:visited,
.legales a:visited {
    color: var(--primario);
}
.enlace-legal:hover,
.legales a:hover {
    color: var(--secundario);
}

.enlaces-legales {
    background: var(--primario);

}
.enlaces-legales ul {
    margin: 0 auto;
    padding: 10px 0;
    list-style: none;
    width: 90%;
    max-width: 1200px;

    display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	align-content: center;
}
.enlaces-legales ul li {
    padding: 10px 0;
}

.enlaces-legales__links a{
    color: var(--blanco);
    text-decoration: none;
    transition: all .2s ease-in-out;
    font-size: 1.6rem;
}
.enlaces-legales__links a:hover {
    text-shadow: var(--negro) 3px 3px 8px;
    letter-spacing: .1rem;
}
@media screen and (max-width: 480px) {
    .enlaces-legales ul {
        flex-direction: column;
    }
}

.borde-tabla {
    border-top: .1rem solid var(--negro);
    border-left: .1rem solid var(--negro);
    border-right: .1rem solid var(--negro);
    list-style-type: none;
    margin: 0;
    padding: 2px 0 2px 10px;
}
#borde-tabla__last {
    border-bottom: .1rem solid var(--negro);
}

.legales-btn {
    display: block;
    margin: 0 auto;
    margin-bottom: 2rem;
    background-color: var(--primario);
    color: var(--blanco) !important;
    padding: 2rem;
    width: 20rem;
    text-decoration: none !important;
    border-radius: 1rem;

    transition: all .3s ease-in-out;
}
.legales-btn:hover {
    background-color: var(--secundario);
    color: var(--blanco) !important;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.center{
    justify-content: center !important;
    text-align: center !important;
}
.center-img{
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.letrapeq {
    font-size: 1.1rem !important;
}
@media screen and (max-width: 767px) {
    .no-768 {
        display: none !important;
    }
}
@media screen and (max-width: 399px) {
    .no-400 {
        display: none !important;
    }
}
.break {
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.mayus {
    text-transform: uppercase;
}
.color-primario {
    color: var(--primario);
}
.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

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

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after,
    *:first-letter,
    *:first-line {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a:visited {
        text-decoration: none!important;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}


a:visited,
a:visited p,
a:visited i {
    text-decoration: none !important;
}

/* ----- -----  Botón Descarga ----- ----- */

#wrap-bt-dl {
    margin: 2rem auto 0 auto;
    text-align: center;
}

.btn-dl, .btn-dl2 {
    position: relative;
    display: inline-block;
    height: 7rem;
    width: 30rem;
    line-height: 62px;
    padding: 0;
    border-radius: 50px;
    background: var(--blanco);
    border: 4px solid var(--bordeado);
    margin: 10px;
    transition: .5s;
}

.btn-dl2 {
    border: 4px solid var(--bordeado);
}

.btn-dl:hover {
    background-color: var(--primario);
}

.btn-dl2:hover {
    background-color: var(--claro);
}

.btn-dl:hover span.circle-dl, .btn-dl2:hover span.circle-dl2 {
    left: 94%;
    margin-left: -45px;
    background-color: var(--blanco);
    color: var(--primario);
}

.btn-dl2:hover span.circle-dl2 {
    color: var(--claro);
}

.btn-dl:hover span.title-dl, .btn-dl2:hover span.title-dl2 {
    left: 40px;
    opacity: 0;
}

.btn-dl:hover span.title-dl-hover, .btn-dl2:hover span.title-dl-hover2 {
    opacity: 1;
    left: 3rem;
}

.btn-dl span.circle-dl, .btn-dl2 span.circle-dl2 {
    display: block;
    background-color: var(--primario);
    color: var(--blanco);
    position: absolute;
    float: left;
    margin: 5px;
    line-height: 56px;
    height: 53px;
    width: 53px;
    top: 0;
    left: 0;
    transition: .5s;
    border-radius: 50%;
}

.btn-dl2 span.circle-dl2 {
    background-color: var(--claro);
}

.btn-dl span.title-dl,
  .btn-dl span.title-dl-hover, .btn-dl2 span.title-dl2,
  .btn-dl2 span.title-dl-hover2 {
    position: absolute;
    left: 6.5rem;
    text-align: center;
    margin: 0 auto;
    font-size: 16px;
    font-weight: bold;
    color: var(--primario);
    transition: .5s;
}

.btn-dl2 span.title-dl2,
  .btn-dl2 span.title-dl-hover2 {
    color: var(--claro);
    left: 6.5rem;
  }

.btn-dl span.title-dl-hover, .btn-dl2 span.title-dl-hover2 {
    left: 80px;
    opacity: 0;
}

.btn-dl span.title-dl-hover, .btn-dl2 span.title-dl-hover2 {
    color: var(--blanco);
}