/*
  https://developer.mozilla.org/en/docs/Web/CSS/box-shadow
  box-shadow: [inset?] [top] [left] [blur] [size] [color];

  Tips:
    - We're setting all the blurs to 0 since we want a solid fill.
    - Add the inset keyword so the box-shadow is on the inside of the element
    - Animating the inset shadow on hover looks like the element is filling in from whatever side you specify ([top] and [left] accept negative values to become [bottom] and [right])
    - Multiple shadows can be stacked
    - If you're animating multiple shadows, be sure to keep the same number of shadows so the animation is smooth. Otherwise, you'll get something choppy.
*/
.movilidad:hover,
.movilidad:focus, .sbn:hover, .sbn:focus, .economia:hover, .economia:focus, .terru:hover, .terru:focus, .adapta:hover, .adapta:focus, .sensi:hover, .sensi:focus, .participa:hover, .participa:focus {
  box-shadow: inset 0 0 0 20em var(--hover);
}

.pulse:hover,
.pulse:focus {
  -webkit-animation: pulse 1s;
          animation: pulse 1s;
  box-shadow: 0 0 0 2em rgba(255, 255, 255, 0);
}

@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--hover);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--hover);
  }
}
.close:hover,
.close:focus {
  box-shadow: inset -3.5em 0 0 0 var(--hover), inset 3.5em 0 0 0 var(--hover);
}

.raise:hover,
.raise:focus {
  box-shadow: 0 0.5em 0.5em -0.4em var(--hover);
  -webkit-transform: translateY(-0.25em);
          transform: translateY(-0.25em);
}

.up:hover,
.up:focus {
  box-shadow: inset 0 -3.25em 0 0 var(--hover);
}

.slide:hover,
.slide:focus {
  box-shadow: inset 6.5em 0 0 0 var(--hover);
}

.offset {
  box-shadow: 0.3em 0.3em 0 0 var(--color), inset 0.3em 0.3em 0 0 var(--color);
}
.offset:hover, .offset:focus {
  box-shadow: 0 0 0 0 var(--hover), inset 6em 3.5em 0 0 var(--hover);
}

.movilidad, .economia, .terru, .adapta, .sbn, .sensi, .participa {
	  font-size:13px;
	  font-weight:bold;
	  line-height: 13px;
  font-family: Verdana, Geneva, sans-serif;
	}

.movilidad {
  --color: #a972cb;
  --hover: #a972cb;

}
.economia {
  --color: #f28e3d;
  --hover: #f28e3d;
}
.terru {
  --color: #2ebde9;
  --hover: #2ebde9;
}
.adapta {
  --color: #cb72aa;
  --hover: #cb72aa;
}
.sbn {
  --color: #60b047;
  --hover: #60b047;
}
.sensi {
  --color: #b6576a;
  --hover: #b6576a;
}
.participa {
  --color: #aca8b7;
  --hover: #aca8b7;
}

.pulse {
  --color: #ef6eae;
  --hover: #ef8f6e;
}

.close {
  --color: #ff7f82;
  --hover: #ffdc7f;
}

.raise {
  --color: #ffa260;
  --hover: #e5ff60;
}

.up {
  --color: #e4cb58;
  --hover: #94e458;
}

.slide {
  --color: #8fc866;
  --hover: #66c887;
}

.offset {
  --color: #19bc8b;
  --hover: #1973bc;
}

button {
  color: var(--color);
  -webkit-transition: 0.25s;
  transition: 0.25s;
  min-height: 60px;
  vertical-align:top !important;
}
button:hover, button:focus {
  border-color: var(--hover);
  color: #fff;
  cursor: pointer;
}

body {
  color: #000000;
  background: #ffffff;
  /*font: Verdana, Geneva, sans-serif;*/
  /*font-size: 12px;*/
  -webkit-box-pack: center;
          justify-content: center;
  align-content: center;
  -webkit-box-align: center;
          /*align-items: center;*/
  /*text-align: center;*/
  min-height: 100vh;
  display: -webkit-box;
  display: flex;
}

button {
  background: none;
  border: 2px solid;
  font: inherit;
  line-height: 1;
  margin: 0.5em;
  padding: 0.5em 2em;
  border-radius: 3px;
}

h1 {
  font-weight: 400;
}

code {
  color: #e4cb58;
  font: inherit;
}
.titu_cat1 {
	font-size:16px;
	background-color:#939;
	padding: 2px;
	color:#FFF;
	
	
	}
.buttons {
	width:100%;}