/* Definicion de colores */
:root {
  --colorppal: #339b33;
}

/* Fuentes */
body {
  font-family: "Signika Negative", sans-serif;
  font-size: 16px;
  line-height: 1.4em;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Federo", sans-serif;
  font-weight: bold;
}

/* Estilos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 300ms linear;
}
a {
  text-decoration: none;
  color: var(--colorppal);
}
a:hover {
  color: #000;
}
p {
  margin: 1em 0;
}
.contenedor {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.clear {
  clear: both;
}
.ancla {
  margin-top: -70px;
  padding-top: 70px;
  height: 0;
  overflow: hidden;
}
.cabecera {
  background: #fff;
  padding: 5px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: none;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.cabecera .contenedor {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  max-width: 80%;
}
.logo a {
  height: 60px;
  display: block;
  overflow: hidden;
}
.logo img {
  display: block;
  object-fit: contain;
  object-position: 0 50%;
  width: 100%;
  height: 100%;
  max-width: 210px;
}
.cabecera nav {
  display: flex;
  align-items: center;
  line-height: 1.5em;
  padding: 0;
}
.cabecera nav .oculto {
  display: none;
}
.vermenu {
  display: block;
  float: right;
}
.cabecera ul.menu {
  position: fixed;
  top: 70px;
  right: 0;
  width: 100%;
  height: 0;
  background: #fff;
  text-align: right;
  overflow: hidden;
  list-style: none;
  padding: 0 20px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.cabecera ul.menu li {
  padding: 4px 0;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 2.1em;
  line-height: 1.4em;
}
.cabecera ul.menu ul {
  display: none;
}
.cabecera ul.menu a {
  color: #000;
}
.cabecera ul.menu .active a,
.cabecera ul.menu a:hover {
  color: var(--colorppal);
}
.menuppal:checked ~ ul.menu {
  height: calc(100vh - 70px);
  padding: 20px;
}
.menuppal {
  display: none;
}
.vermenu {
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
  cursor: pointer;
}
.vermenu span {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: #000;
  position: absolute;
}
.vermenu .uno {
  top: 0;
}
.vermenu .dos {
  top: 9px;
}
.vermenu .tres {
  top: 18px;
}
.menuppal:checked + .vermenu .uno {
  transform: rotate(45deg);
  top: 9px;
}
.menuppal:checked + .vermenu .tres {
  transform: rotate(-45deg);
  top: 9px;
}
.menuppal:checked + .vermenu .dos {
  background: transparent;
}
.mod-languages {
  border-left: 1px solid #000;
  margin: 0 0 0 20px;
}
.mod-languages ul {
  display: flex;
  line-height: 20px;
  font-size: 1.1em;
}
.mod-languages ul li {
  margin: 0 !important;
  padding: 0 0 0 12px;
}
.mod-languages a {
  color: #000;
}
.mod-languages .lang-active a,
.mod-languages a:hover {
  color: var(--colorppal);
}
.cuerpo {
  padding-top: 70px;
}
.swiper-container {
  width: 100%;
  height: calc(70vh - 70px);
  position: relative;
  overflow: hidden;
}
.swiper-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.swiper-wrapper figure {
  position: absolute;
  width: 100%;
  height: 100%;
}
.swiper-wrapper figure img {
  object-fit: cover;
  object-position: 50% 20%;
  width: 100%;
  height: 100%;
}
.swiper-wrapper .contenedor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  text-align: center;
  width: 95%;
  max-width: 900px;
  z-index: 1;
}
.swiper-wrapper .swiper-slide-active h2 {
  font-size: 1.2em;
  line-height: 1.4em;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 5px #000;
  margin: 0 0 1em;
  animation-name: bajar;
  animation-duration: 1.1s;
  opacity: 1;
}
.swiper-wrapper .swiper-slide-active p {
  font-size: 1em;
  line-height: 1.4em;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 5px #000;
  margin: 1.4em 0;
  animation-name: subir;
  animation-duration: 1.6s;
  opacity: 1;
}
.swiper-wrapper .swiper-slide-active p a {
  color: #fff;
  border: 2px solid var(--colorppal);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 2em;
  padding: 5px 40px;
  animation-name: subir;
  animation-duration: 2s;
  display: inline-block;
}
.swiper-wrapper .swiper-slide-active p a:hover {
  background: var(--colorppal);
}
.seguir {
  display: none;
}
.seguir i {
  animation-name: bajar;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
}
.principal .presentacion {
  height: 50vh;
  width: 100%;
  background-size: cover;
  background-position: 50% 20%;
  position: absolute;
  z-index: -1;
  animation-name: bajar;
  animation-duration: 1200ms;
}
.principal .titulo {
  height: 50vh;
  animation-name: subir;
  animation-duration: 900ms;
  position: relative;
}
.principal .titulo h1 {
  font-size: calc(20px + 1vw + 1vh);
  line-height: 1.3em;
  color: #fff;
  text-shadow: 2px 2px 4px #000;
  margin: 0.5em 0;
  width: calc(100% - 40px);
  position: absolute;
  bottom: 0;
}
.principal .texto {
  background: #fff;
  animation-name: subir;
  animation-duration: 900ms;
  min-height: calc(40vh - 75px);
  padding-bottom: 50px;
}
.principal .texto p:first-child {
  font-size: 1.1em;
  line-height: 1.4em;
  font-weight: bold;
}
.principal .texto img {
  max-width: 100%;
}
.principal .fecha.contenedor {
  margin: 0.75em auto;
  font-size: 0.9em;
  font-style: italic;
  animation-name: subir;
  animation-duration: 900ms;
  color: #333;
}
.fila {
  margin: 30px 0 60px;
  animation-name: subir;
  animation-duration: 1.2s;
}
.fila .foto {
  height: 25vh;
  display: block;
}
.fila .foto * {
  display: block;
  height: 100%;
  width: 100%;
}
.fila .foto img {
  object-fit: cover;
}
.fila .datos h2 {
  margin: 0.5em 0;
}
.fila .datos .fecha {
  margin: 0.5em 0;
  font-size: 0.9em;
  font-style: italic;
  color: #333;
}
.fila .datos .leermas {
  margin: 0.3em 0;
  font-size: 0.9em;
}
.destacado {
  padding: 30px 0;
  text-align: center;
  margin: -130px 0 0;
  position: relative;
  z-index: 1;
}
.destacado img,
.destacado picture {
  max-width: 100%;
}
.destacado p {
  font-size: 1.1em;
  line-height: 1.4em;
  margin-top: 0;
}
.destacado p a {
  color: #fff;
  border-radius: 2em;
  padding: 7px 45px;
  display: inline-block;
  background: var(--colorppal);
}
.destacado p a:hover {
  background: #d4b83a;
}
.completo {
  margin: 0 0 60px;
}
.completo .foto {
  display: block;
  height: 25vh;
  max-height: 250px;
  min-height: 175px;
  width: 100%;
  animation-name: bajar;
  animation-duration: 1200ms;
}
.completo .foto img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.completo .campoicono {
  width: 100px;
  height: 100px;
  text-align: center;
  display: inline-block;
  background: var(--colorppal);
  border-radius: 100%;
  position: absolute;
  z-index: 5;
  top: -50px;
  left: 0;
  right: 0;
  margin: 0 auto;
  animation-name: subir;
  animation-duration: 1200ms;
}
.completo .campoicono i {
  line-height: 100px;
  font-size: 40px;
  color: #fff;
}
.completo .titular {
  padding-top: 70px;
  font-size: 1.8em;
  line-height: 1.4em;
  animation-name: subir;
  animation-duration: 800ms;
}
.completo .titular ~ p {
  animation-name: subir;
  animation-duration: 1500ms;
}
.gris {
  background: #f0f0f0;
}
.gris + .gris {
  border-top: 5px solid #fff;
}
.gris h2.titular {
  text-align: center;
  padding: 2em 0 0;
  font-size: 1.8em;
}
.parrilla {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr;
  padding: 50px 0;
}
.parrilla .elemento {
  border: 1px solid var(--colorppal);
  border-radius: 12px;
  padding: 20px;
  background: #fff;
  animation-name: subir;
  animation-duration: 1200ms;
  text-align: center;
}
.parrilla .campoicono {
  width: 100px;
  height: 100px;
  text-align: center;
  display: inline-block;
  background: var(--colorppal);
  border-radius: 100%;
  margin: 0 auto;
}
.parrilla .campoicono i {
  line-height: 100px;
  font-size: 40px;
  color: #fff;
}
.parrilla .elemento h3 {
  margin: 1em auto;
}
.parrilla .elemento h3 a,
.parrilla .elemento p a {
  color: #000;
}
.parrilla .elemento:hover {
  background: var(--colorppal);
}
.parrilla .elemento:hover a {
  color: #fff;
}
.parrilla .elemento:hover .campoicono {
  background: #fff;
}
.parrilla .elemento:hover .campoicono i {
  color: var(--colorppal);
}
.moduloblog {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr;
  padding: 50px 0;
}
.moduloblog .foto {
  height: 250px;
  display: block;
  overflow: hidden;
}
.moduloblog .foto img {
  object-fit: cover;
  display: block;
  height: 100%;
  width: 100%;
}
.moduloblog .elemento:hover .foto img {
  transform: scale(1.1);
}
.moduloblog .elemento {
  background: #fff;
  animation-name: subir;
  animation-duration: 1200ms;
}
.moduloblog .datos {
  padding: 25px;
  text-align: center;
}
.moduloblog .datos a {
  color: #000;
}
.moduloblog .datos a:hover {
  color: var(--colorppal);
}
.moduloblog .leermas a {
  border: 2px solid var(--colorppal);
  border-radius: 2em;
  padding: 5px 40px;
  display: inline-block;
}
.moduloblog .leermas a:hover {
  background: var(--colorppal);
  color: #fff;
}
.parallax {
  background: url("../images/parallax.jpg") fixed center center;
  background-size: cover;
  padding: 10vh 0;
  text-align: center;
  color: #fff;
}
.parallax h2 {
  font-size: 1.8em;
  line-height: 1.5em;
}
.parallax p {
  font-size: 1.1em;
  line-height: 1.4em;
}
.parallax p a {
  color: #fff;
  border: 2px solid var(--colorppal);
  background: var(--colorppal);
  border-radius: 2em;
  padding: 5px 40px 7px;
  display: inline-block;
  margin-top: 1em;
  line-height: 2em;
}
.parallax p a:hover {
  background: #d4b83a;
  border-color: #d4b83a;
  color: #000;
}
.parallax-arreglista {
  background: url("../images/parallax-arreglista.jpg") fixed center center;
  background-size: cover;
  padding: 10vh 0;
  text-align: center;
  color: #fff;
}
.parallax-arreglista h2 {
  font-size: 1.8em;
  line-height: 1.5em;
}
.parallax-arreglista p {
  font-size: 1.1em;
  line-height: 1.4em;
}
.parallax-arreglista p a {
  color: #fff;
  border: 2px solid var(--colorppal);
  background: var(--colorppal);
  border-radius: 2em;
  padding: 5px 40px 7px;
  display: inline-block;
  margin-top: 1em;
  line-height: 2em;
}
.parallax-arreglista p a:hover {
  background: #d4b83a;
  border-color: #d4b83a;
  color: #000;
}
.addtoany_container {
  padding: 20px 0 20px;
}
.footer a {
  color: #fff;
}
.footer a:hover {
  color: #000;
}
.footer p {
  margin: 0;
}
.pie1 {
  background: var(--colorppal);
  color: #fff;
  text-align: center;
  padding: 30px 0;
}
.pie1 .contenedor {
  display: flex;
  flex-direction: column;
}
.pie1 .contenedor > div {
  margin: 5px 0;
  flex: 1;
}
.pie1 .logopie img {
  width: 80%;
  max-width: 200px;
}
.menupie ul {
  list-style: none;
}
.menupie li {
  margin: 9px 0;
}
.iconosrrss {
  margin: 0 -5px;
}
.iconosrrss a {
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  font-size: 20px;
  background: #fff;
  color: var(--colorppal);
  display: inline-block;
  border-radius: 100%;
  margin: 10px 5px;
}
.iconosrrss a:hover {
  color: #fff;
  background: #000;
}
.pie2 {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
.pie2 .desarrolladopor {
  font-size: 0.85em;
  margin: 10px 0 0;
}
.pie2 a {
  color: var(--colorppal);
}
.pie2 a:hover {
  color: #fff;
}
.mapadelsitio {
  margin: 0 0 30px;
}
.mapadelsitio .foto {
  min-height: 30vh;
}
#SchuWeb_Sitemap .titular {
  margin: 20px 0;
}
#SchuWeb_Sitemap ul {
  list-style: none;
}
#SchuWeb_Sitemap ul ul {
  margin: 0 0 0 20px;
}
#SchuWeb_Sitemap a {
  color: #000;
}
#SchuWeb_Sitemap a:hover {
  color: var(--colorppal);
}
#SchuWeb_Sitemap li {
  padding: 2px 0;
}
#SchuWeb_Sitemap li:before {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  padding: 0 10px 0 0;
  color: var(--colorppal);
}
.mapaubicacion {
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.mapaubicacion iframe {
  width: 100%;
  height: 30vh;
  min-height: 400px;
  display: block;
}
.mapaubicacion .titular {
  text-align: center;
  padding: 50px 0 15px;
  font-size: 1.8em;
}
.mapaubicacion .datoscontacto {
  display: flex;
  flex-direction: column;
}
.mapaubicacion .datoscontacto .elemento {
  flex: 1;
  text-align: center;
  margin: 0 0 30px;
}
.mapaubicacion .datoscontacto .elemento .circ {
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: var(--colorppal);
  margin: 10px auto;
}
.mapaubicacion .datoscontacto .elemento i.fal {
  color: #fff;
  font-size: 40px;
  line-height: 100px;
}
.mapaubicacion .datoscontacto .elemento h4 {
  margin: 0.4em 0;
}
.mapaubicacion .datoscontacto .elemento p {
  margin: 0;
}
.mapaubicacion .imagenmapa p {
  margin: 0;
}
.mapaubicacion .imagenmapa a {
  width: 100%;
  height: 30vh;
  min-height: 400px;
  display: block;
}
.mapaubicacion .imagenmapa img {
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}
.texto .sigplus-gallery ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  margin-top: 50px;
}
.texto .sigplus-gallery ul a {
  display: block !important;
}
.texto .sigplus-gallery ul img {
  display: block;
  width: 100%;
}
.galeria {
  background: var(--colorppal);
  padding: 30px 0;
}
.galeria .titular {
  text-align: center;
  color: #fff;
  margin: 0 0 30px;
  font-size: 1.8em;
}
.galeria .fotos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 10px;
  padding: 0 20px;
}
.galeria a {
  flex: 1;
  display: block;
  padding: 0 5px;
}
.galeria a img {
  width: 100%;
  display: block;
}
.faqs {
  display: flex;
  flex-direction: column-reverse;
}
.faqs .textofaqs {
  padding: 30px 20px;
  flex: 1;
}
.faqs .imagenfaqs {
  flex: 1;
  max-height: 25vh;
  overflow: hidden;
}
.faqs .imagenfaqs img {
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}
.unafaq {
  background: #f0f0f0;
  padding: 20px;
  margin: 0 0 20px;
  border-radius: 5px;
  position: relative;
}
.unafaq input {
  display: none;
}
.unafaq label {
  cursor: pointer;
  padding: 0 30px 0 0;
  display: block;
  font-weight: bold;
}
.unafaq .contenidofaq {
  max-height: 0;
  overflow: hidden;
  transition: all 500ms ease-in-out;
}
.unafaq input:checked ~ .contenidofaq {
  max-height: 100vh;
}
.unafaq i.far {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  color: var(--colorppal);
  pointer-events: none;
}
.unafaq i.fa-arrow-to-top {
  display: none;
}
.unafaq i.fa-arrow-to-bottom {
  display: block;
}
.unafaq input:checked ~ i.fa-arrow-to-top {
  display: block;
}
.unafaq input:checked ~ i.fa-arrow-to-bottom {
  display: none;
}
.formulario {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
}
.formulario .imagencontacto {
  min-height: 20vh;
  background: url("../images/contacto.jpg") 50% 50% / cover no-repeat;
}
.formulario .contenidoformulario {
  padding: 30px 20px;
}
.formulario fieldset {
  border: none;
}
.formulario #datos input {
  width: 100%;
  background: #eee;
  padding: 8px 12px;
  margin: 0 0 12px;
  border-radius: 5px;
  border: none;
  font-size: 1.1em;
  font-family: "Open Sans", sans-serif;
}
.formulario #datos textarea {
  width: 100%;
  height: 120px;
  background: #eee;
  padding: 8px 12px;
  margin: 0 0 12px;
  border-radius: 5px;
  border: none;
  font-size: 1.1em;
  resize: none;
  font-family: "Open Sans", sans-serif;
}
.formulario #datos select {
  width: 100%;
  background: #eee;
  padding: 8px 12px;
  margin: 0 0 12px;
  border-radius: 5px;
  border: none;
  font-size: 1.1em;
  font-family: "Open Sans", sans-serif;
}
.formulario .condiciones {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.formulario .condiciones input {
  margin: 0 12px 0 0;
}
.formulario .condiciones .legal {
  font-size: 0.8em;
  max-width: 75%;
  text-align: left;
  line-height: 1.1em;
}
.formulario .submit .btn {
  background: var(--colorppal);
  display: block;
  width: 100%;
  margin: 20px 0;
  padding: 0;
  border-radius: 5px;
  color: #fff;
  font-size: 1.2em;
  line-height: 3em;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  border: none;
}
.formulario .submit .btn:hover {
  background: #d4b83a;
}
.formulario .pretext {
  margin: 0 0 30px;
  text-align: left;
}
.formulario .pretext p {
  text-align: justify;
}
.formulario .btnregistro {
  display: none;
}
.pagination {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.pagination nav {
  display: flex;
  list-style: none;
  margin-bottom: 30px;
}
.pagination nav .pag .conenlace a {
  margin-right: 6px;
  padding: 3px 10px;
  border: 1px solid var(--colorppal);
  text-align: center;
  display: block;
}
.pagination nav .pag .conenlace a:hover {
  background: var(--colorppal);
  color: #fff;
}
.pagination nav .pag .sinenlace {
  margin-right: 6px;
  padding: 3px 10px;
  border: 1px solid #555;
  text-align: center;
  color: #555;
}
.cuerpo .texto ul,
.infoeditor ul {
  list-style: none;
}
.cuerpo .texto ul li,
.infoeditor ul li {
  margin: 1.3em 0;
  padding-left: 35px;
  position: relative;
}
.cuerpo .texto ul li::before,
.infoeditor ul li::before {
  font-family: "Font Awesome 5 Pro";
  content: "\f00c";
  color: var(--colorppal);
  padding: 0;
  font-size: 14px !important;
  position: absolute;
  top: 2px !important;
  left: 8px;
}
#ca_banner {
  height: auto !important;
}
#ca_banner .accept {
  color: #fff !important;
  border-radius: 2em !important;
  padding: 7px 45px !important;
  display: inline-block !important;
  background: var(--colorppal) !important;
  box-shadow: none !important;
  text-shadow: none !important;
  width: auto !important;
}
#ca_banner .accept:hover {
  background: #000 !important;
}
p.alerta {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
  padding: 20px;
  border-radius: 6px;
}
.acceso {
  width: 100%;
  max-width: 450px;
}
.acceso h2 {
  margin: 2em 0 1em;
}
.acceso fieldset {
  border: none;
}
.acceso fieldset p {
  margin-top: 0;
}
.acceso .control-group {
  display: flex;
}
.acceso .control-label {
  width: 60px;
  height: 40px;
  position: relative;
  background: #000;
}
.acceso .controls {
  flex: 1;
}
.acceso .control-label label {
  width: 60px;
  height: 40px;
  display: block;
  overflow: hidden;
}
.acceso .control-label label::before {
  font-family: "Font Awesome 5 Pro";
  color: #fff;
  padding: 0;
  font-size: 24px !important;
  line-height: 40px;
  text-align: center;
  display: block !important;
}
.acceso .control-label #username-lbl::before,
.acceso .control-label #jform_username-lbl::before,
.acceso .control-label #jform_email-lbl::before {
  content: "\f0e0";
}
.acceso .control-label #password-lbl::before,
.acceso .control-label #jform_password1-lbl::before,
.acceso .control-label #jform_password2-lbl::before {
  content: "\f084";
}
.acceso .control-label #jform_token-lbl::before {
  content: "\f3c2";
}
.acceso input {
  width: 100%;
  background: #eee;
  padding: 8px 12px;
  margin: 0 0 12px;
  border-radius: 5px;
  border: none;
  font-size: 1.1em;
  font-family: "Open Sans", sans-serif;
}
.acceso .btn {
  background: var(--colorppal);
  display: block;
  width: 100%;
  margin: 20px 0 40px;
  padding: 0;
  border-radius: 5px;
  color: #fff;
  font-size: 1.2em;
  line-height: 3em;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  border: none;
}
.acceso .btn:hover {
  background: #000;
}
.acceso .recordarclave {
  margin: 30px 0 50px;
  text-align: center;
}
.acceso .recordarclave a {
  color: #333;
}
.acceso .recordarclave a:hover {
  color: var(--colorppal);
}
.popover {
  display: none !important;
}
#system-message-container {
  background: #fcf8e3;
}
#system-message-container #system-message {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}
.menuusuario {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 5px;
  text-align: center;
  margin: 20px 0 30px;
}
.menuusuario .elemento {
  background: var(--colorppal);
  padding: 5px;
}
.menuusuario .elemento.current,
.menuusuario .elemento:hover {
  background: #222;
}
.menuusuario a {
  color: #fff;
  font-size: 0.1px;
  line-height: 0.1em;
  display: block;
}
.menuusuario a::before {
  font-family: "Font Awesome 5 Pro";
  padding: 0;
  font-size: 15px !important;
  line-height: 30px;
  text-align: center;
  display: block !important;
}
.menuusuario a.acceso::before {
  content: "\f3c2";
}
.menuusuario a.info::before {
  content: "\f8c9";
}
.menuusuario a.rrss::before {
  content: "\f1e0";
}
.menuusuario a.fotos::before {
  content: "\f302";
}
.menuusuario a.videos::before {
  content: "\f03d";
}
.menuusuario a.gestion::before {
  content: "\f085";
}
.menuusuario a.cerrar::before {
  content: "\f2f5";
}
.editarbanda {
  padding-bottom: 50px;
}
.editarbanda h2 {
  background: #eee;
  padding: 10px 12px;
}
.editarbanda fieldset {
  border: none;
  padding: 10px 12px;
}
.editarbanda fieldset + h2,
.editarbanda .grupo + h2 {
  margin-top: 35px;
}
.editarbanda .grupo {
  display: flex;
  flex-direction: column;
  margin: 15px 0;
}
.editarbanda .grupo label {
  flex: 1;
  display: block;
  padding: 0 20px 0 12px;
}
.editarbanda .grupo input,
.editarbanda .grupo select {
  flex: 3;
  width: 100%;
  background: #eee;
  padding: 8px 12px;
  margin: 0;
  border-radius: 5px;
  border: none;
  font-size: 1em;
  font-family: "Open Sans", sans-serif;
}
.editarbanda .grupo .privacidad {
  flex: 3;
  width: 100%;
  padding: 8px 0;
  font-size: 1em;
  font-family: "Open Sans", sans-serif;
}
.editarbanda .grupo .privacidad input {
  display: inline;
  width: 20px;
}
.editarbanda .grupo .js-editor-tinymce,
.editarbanda .grupo .imgs {
  flex: 3;
}
.editarbanda .grupo .js-editor-tinymce .mce-menubar,
.editarbanda .grupo .js-editor-tinymce .toggle-editor {
  display: none;
}
.editarbanda .grupo .js-editor-tinymce iframe {
  height: 200px !important;
}
.editarbanda .submit {
  padding: 0 12px;
}
.editarbanda .submit .btn {
  background: var(--colorppal);
  display: inline-block;
  width: auto;
  margin: 0;
  padding: 0 30px;
  border-radius: 5px;
  color: #fff;
  font-size: 1.1em;
  line-height: 3em;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  border: none;
}
.editarbanda .submit .btn:hover {
  background: #000;
}
.editarbanda .grupo .imgs .logo {
  display: flex;
  align-items: flex-end;
}
.editarbanda .grupo .imgs .logo img {
  max-height: 120px;
  border: 1px solid #ccc;
  padding: 2px;
  display: inline-block;
  width: auto;
  margin: 10px 0;
}
.editarbanda .grupo .imgs .logo input.borrador {
  display: none;
}
.editarbanda .grupo .imgs .logo label {
  margin: 10px 0 10px 10px;
  padding: 12px 16px;
  font-size: 22px;
  background: var(--colorppal);
  color: #fff;
  cursor: pointer;
  border-radius: 2px;
  height: auto;
}
.editarbanda .grupo .imgs .logo label:hover {
  background: #000;
}
.editarbanda .grupo .imgs .logo a {
  height: auto;
  margin: 10px 0;
}
.editarbanda .grupo .imgs .logo a img {
  margin: 0;
  display: block;
}
#cargando {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  color: var(--colorppal);
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  pointer-events: none;
}
#cargando i {
  animation: rotar 1s linear infinite;
}
.listadobandas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 12px;
  margin: 40px 0;
}
.listadobandas.modulo {
  display: flex;
  flex-wrap: wrap;
}
.listadobandas .banda {
  border: 1px solid #ccc;
  background: #fff;
  text-align: center;
  padding: 0;
  position: relative;
}
.listadobandas.modulo .banda {
  flex: 1;
  min-width: 40%;
}
.listadobandas .banda:hover {
  transform: scale(1.12);
  z-index: 1;
}
.listadobandas .banda .emblema {
  display: block;
  height: auto;
  width: 86%;
  margin: 7%;
  position: relative;
}
.listadobandas .banda .emblema:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.listadobandas .banda .emblema img {
  position: absolute;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.listadobandas .banda .nombre {
  display: block;
  font-size: 0.8em;
  font-weight: bold;
  margin: 0.7em 20px 0;
  color: #000;
  overflow-wrap: anywhere;
}
.listadobandas .banda .nombre + .nombre {
  margin-top: 0;
}
.listadobandas .banda:hover .nombre {
  color: var(--colorppal);
}
.listadobandas .banda .provincia {
  display: block;
  font-size: 0.8em;
  margin: 0.4em 20px 0.7em;
  overflow-wrap: anywhere;
}
.listadobandas .banda .provincia::before {
  font-family: "Font Awesome 5 Pro";
  padding: 0 10px 0 0;
  content: "\f3c5";
}
.listadobandas .banda .fecha {
  display: block;
  font-size: 1.1em;
  margin: 0.4em 20px 0.7em;
  overflow-wrap: anywhere;
  color: #000;
}
.listadobandas .banda .fecha::before {
  font-family: "Font Awesome 5 Pro";
  padding: 0 10px 0 0;
  content: "\f274";
}
.infobanda {
  margin: 30px 0;
}
.infobanda .imagencabecera {
  height: 600px;
  max-height: 50vh;
  min-height: 200px;
}
.infobanda .imagencabecera img {
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}
.infobanda .superior {
  margin-top: -175px;
}
.infobanda .seccion {
  display: flex;
  flex-direction: column;
}
.infobanda .superior .emblema {
  width: 150px;
  height: 150px;
  border: 1px solid #ccc;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  margin: 0 25px 25px;
}
.infobanda .superior .emblema img {
  display: block;
  object-fit: contain;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}
.infobanda .superior h2 {
  margin: 2.7em 0 0;
  padding-top: 20px;
  font-size: 1.6em;
  line-height: 1.1em;
}
.infobanda .superior .ubicacion {
  margin: 0.5em 0 30px;
  color: var(--colorppal);
}
.infobanda .superior .ubicacion i {
  width: 25px;
}
.infobanda .seccion .izq i {
  width: 25px;
  color: var(--colorppal);
}
.infobanda .seccion .izq .linea {
  margin: 0 0 10px;
}
.infobanda .seccion .izq .linea a {
  color: #000;
}
.infobanda .seccion .izq .linea a:hover {
  color: var(--colorppal);
}
.infobanda .seccion .izq .presupuesto {
  width: 100%;
  max-width: 350px;
  display: inline-block;
  border: 1px solid var(--colorppal);
  text-align: center;
  border-radius: 5px;
  padding: 6px 0;
  margin: 18px 0;
}
.infobanda .seccion .izq .presupuesto:hover {
  background: var(--colorppal);
  color: #fff;
}
.infobanda .redessociales {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
}
.infobanda .redessociales .social {
  line-height: 50px;
  margin-bottom: 10px;
}
.infobanda .redessociales .social i {
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 24px;
  line-height: 50px;
  text-align: center;
  border-radius: 100%;
  margin-right: 10px;
}
.infobanda .redessociales .social a {
  color: #000;
}
.infobanda .redessociales .social a:hover {
  color: var(--colorppal);
}
.infobanda .redessociales .social a:hover i {
  background: var(--colorppal);
}
.infobanda .redessociales .social .desc {
  display: none;
}
.infobanda .redessociales .fa-facebook-f {
  background: #3b5998;
}
.infobanda .redessociales .fa-link {
  background: #000;
}
.infobanda .redessociales .fa-twitter {
  background: #55acee;
}
.infobanda .redessociales .fa-instagram {
  background: radial-gradient(
    circle at 33% 100%,
    #fed373 4%,
    #f15245 30%,
    #d92e7f 62%,
    #9b36b7 85%,
    #515ecf
  );
}
.infobanda .redessociales .fa-linkedin-in {
  background: #0e76a8;
}
.infobanda .redessociales .fa-youtube {
  background: #c4302b;
}
.infobanda .redessociales .fa-vimeo-v {
  background: #86c9ef;
}
.infobanda .redessociales .fa-soundcloud {
  background: #ff7700;
}
.infobanda .redessociales .fa-spotify {
  background: #81b71a;
}
.infobanda .redessociales .fa-apple {
  background: #a3aaae;
}
.infobanda .redessociales .fa-google-play {
  background: #3bccff;
}
.infobanda .redessociales .fa-amazon {
  background: #febd69;
}
.infobanda .seccion .dcha .infoeditor {
  margin: 0 0 50px;
}
.infobanda .seccion .dcha .infoeditor * {
  text-align: justify !important;
}
.infobanda .seccion .dcha h3 {
  margin: 0.7em 0;
}
.infobanda .galeriabanda {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  margin-bottom: 50px;
}
.infobanda .galeriabanda img {
  width: 100%;
  height: auto;
  display: block;
}
.infobanda .videosbanda {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  margin-bottom: 50px;
}
.infobanda .videosbanda .youtube {
  background-color: #000;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  cursor: pointer;
}
.infobanda .videosbanda .youtube img {
  width: 100%;
  top: -16.82%;
  left: 0;
  opacity: 0.7;
}
.infobanda .videosbanda .youtube .play-button {
  width: 90px;
  height: 60px;
  background-color: #333;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  z-index: 1;
  opacity: 0.8;
  border-radius: 6px;
}
.infobanda .videosbanda .youtube .play-button:before {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 26px;
  border-color: transparent transparent transparent #fff;
}
.infobanda .videosbanda .youtube img,
.infobanda .videosbanda .youtube .play-button {
  cursor: pointer;
}
.infobanda .videosbanda .youtube img,
.infobanda .videosbanda .youtube iframe,
.infobanda .videosbanda .youtube .play-button,
.infobanda .videosbanda .youtube .play-button:before {
  position: absolute;
}
.infobanda .videosbanda .youtube .play-button,
.infobanda .videosbanda .youtube .play-button:before {
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.infobanda .videosbanda .youtube iframe {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.listadomenu {
  margin: 30px 0 50px;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px 40px;
}
.listadomenu a {
  display: flex;
  align-items: center;
  border: 1px solid var(--colorppal);
  border-radius: 10px;
  color: #000;
}
.listadomenu a:hover {
  background: #eee;
  border-color: #000;
}
.listadomenu a i {
  background: var(--colorppal);
  color: #fff;
  width: 80px;
  text-align: center;
  font-size: 24px;
  line-height: 3em;
  border-radius: 8px 0 0 8px;
}
.listadomenu a:hover i {
  background: #000;
}
.listadomenu a .text {
  padding: 0 15px;
  flex: 1;
}
.buscador {
  background: var(--colorppal);
  padding: 12px 0;
  color: #fff;
  font-size: 0.9em;
}
.buscador .cajabuscador {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 60px 0 0;
  max-height: 36px;
  overflow: hidden;
}
.buscador .parabuscar {
  width: 100%;
}
.buscador .parabuscar input,
.buscador .parabuscar select {
  background: #eee;
  padding: 6px 12px;
  margin: 0 0 0 8%;
  border: 1px solid #fff;
  font-size: 1em;
  font-family: "Open Sans", sans-serif;
}
.buscador .parabuscar select {
  width: calc(100% - 65px);
  margin: 12px 0 0 65px;
}
.buscador .parabuscar.primero form {
  display: flex;
  align-items: center;
}
.buscador .parabuscar.primero label {
  width: 65px;
}
.buscador .parabuscar.primero input {
  flex: 1;
  margin: 0;
}
.buscador .parabuscar .vermapa {
  width: calc(100% - 65px);
  margin: 12px 0 0 65px;
  background: #fff;
  color: #000;
  padding: 8px 12px 9px;
  display: block;
  font-size: 1em;
  font-family: "Open Sans", sans-serif;
}
.buscador .parabuscar .vermapa:hover {
  background: #d4b83a;
}
.buscador #desplegar {
  display: none;
}
.buscador .desplegar {
  position: absolute;
  top: 4px;
  right: 2px;
  padding: 0 20px;
  font-size: 20px;
  cursor: pointer;
}
.buscador .desplegar:hover {
  color: #000;
}
.buscador #desplegar:checked + .desplegar {
  transform: scale(1, -1);
}
.buscador #desplegar:checked ~ .cajabuscador {
  max-height: 240px;
}
#presupuesto {
  margin-top: -100px;
  padding-top: 100px;
}
.solicitarpresupuesto {
  background: #eee;
  padding: 40px 0;
}
.formpresupuesto {
  flex: 1;
  text-align: left;
  margin: 30px 0 0;
}
.formpresupuesto .bloquedatos {
  display: flex;
  flex-wrap: wrap;
}
.formpresupuesto .bloquedatos .bloque {
  flex: 1;
  min-width: 80%;
  padding: 0 0 20px;
}
.formpresupuesto .bloquedatos .bloque:last-child {
  padding: 0;
}
.formpresupuesto #datos.bloquedatos input,
.formpresupuesto #datos.bloquedatos select {
  background: #fff;
  font-size: 0.95em;
}
.formpresupuesto #datos.bloquedatos textarea {
  background: #fff;
  height: 180px;
  font-size: 0.95em;
}
.formpresupuesto .bloquedatos .etiqueta {
  font-style: italic;
  margin: 0 0 20px;
  border-bottom: 1px solid #aaa;
}
.formpresupuesto #datos.bloquedatos .fechas input {
  width: 48%;
  float: left;
}
.formpresupuesto #datos.bloquedatos .fechas span {
  display: block;
  text-align: center;
  width: 4%;
  line-height: 38px;
  float: left;
}
.formpresupuesto .condiciones {
  justify-content: left;
  margin: 0;
  padding: 18px 0 0 2px;
}
.formpresupuesto #datos.bloquedatos .condiciones input {
  width: 30px;
  margin: 0;
}
.botonpresupuesto {
  border: 2px solid var(--colorppal);
  border-radius: 2em;
  padding: 5px 40px;
  display: table;
  margin: 0 auto;
  font-size: 1.1em;
}
.botonpresupuesto:hover {
  background: var(--colorppal);
  color: #fff;
}
.titulobuscador {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.titulobuscador h2 {
  flex: 1;
  line-height: 36px;
}
.titulobuscador a {
  flex: 1;
  display: inline-block;
  border: 1px solid var(--colorppal);
  text-align: center;
  border-radius: 5px;
  padding: 6px 0;
  margin: 20px 0 0;
}
.titulobuscador a:hover {
  background: var(--colorppal);
  color: #fff;
}
.marcoactuar {
  border: none;
  width: 100%;
  height: 100%;
}
.paraactuar.editarbanda {
  padding: 0;
}
.paraactuar .provinciasparaactuar {
  flex: 3;
}
.paraactuar .provactuar {
  display: inline-block;
  border: 1px solid var(--colorppal);
  border-radius: 20px;
  padding: 0 15px;
  margin: 4px 12px 4px 0;
  font-size: 0.9em;
}
.paraactuar .provactuar input {
  display: none;
}
.paraactuar .provactuar label {
  display: inline-block;
  padding-right: 0;
  cursor: pointer;
}
.paraactuar .provactuar + form {
  margin-top: 12px;
}
.listadosuscripciones {
  overflow-x: auto;
}
.listadosuscripciones table {
  width: 100%;
  min-width: 600px;
  margin-bottom: 50px;
  color: #444;
  border-spacing: 0;
  border-collapse: collapse;
}
.listadosuscripciones table thead {
  font-weight: bold;
  background: #eee;
}
.listadosuscripciones table td {
  padding: 8px;
  border-bottom: 1px solid #ccc;
}
.listadosuscripciones table tr:nth-child(2n) {
  background: #eee;
}
#renovarsuscripcion {
  flex: 1;
  max-width: 300px;
}
.renovarsuscripcion {
  display: inline-block;
  width: 100%;
  border: 1px solid var(--colorppal);
  color: var(--colorppal);
  background: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 6px 25px;
  margin: 20px 0 0;
  font-size: 1em;
  cursor: pointer;
}
.renovarsuscripcion:hover {
  background: var(--colorppal);
  color: #fff;
}
.rojo {
  color: #ff0000;
}
.infoenmapa {
  padding: 2px 12px 2px 2px;
}
.infoenmapa p {
  margin: 0.5em 0 0;
}
#mapadebandas {
  width: 100%;
  height: calc(100vh - 70px);
}
#mapadebandas * {
  transition: none;
}

/* Lightbox.css */
body.lb-disable-scrolling {
  overflow: hidden;
}
.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  display: none;
}
.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
}
.lightboxOverlay,
.lightbox,
.lightbox * {
  transition-duration: 0s;
}
.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  border: 4px solid white;
}
.lightbox a img {
  border: none;
}
.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.8);
}
.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}
.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}
.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images/loading.gif) no-repeat;
}
.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}
.lb-container > .nav {
  left: 0;
}
.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
}
.lb-prev,
.lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}
.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../images/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../images/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}
.lb-data {
  padding: 0 4px;
  color: #ccc;
}
.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}
.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}
.lb-data .lb-caption a {
  color: #4ae;
}
.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}
.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* Animaciones */

@keyframes bajar {
  0% {
    transform: translateY(-200%);
    opacity: 0;
  }
  50% {
    transform: translateY(-200%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes subir {
  0% {
    transform: translateY(200%);
    opacity: 0;
  }
  50% {
    transform: translateY(200%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes rotar {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Media queries */

@media only screen and (min-width: 760px) {
  .fila {
    display: flex;
    margin-bottom: 30px;
    align-items: center;
  }
  .fila .foto {
    min-height: 250px;
    margin-right: 25px;
    flex: 1;
  }
  .fila .datos {
    flex: 2;
  }
  .swiper-wrapper .swiper-slide-active h2 {
    font-size: 2.1em;
  }
  .swiper-wrapper .swiper-slide-active p {
    font-size: 1.5em;
  }
  .parrilla {
    grid-template-columns: 1fr 1fr;
  }
  .moduloblog {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .mapaubicacion .datoscontacto {
    flex-direction: row;
  }
  .texto .sigplus-gallery ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .texto .sigplus-gallery ul li {
    margin: 0;
    padding: 0;
  }
  .galeria .fotos {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }
  .formulario {
    flex-direction: row;
  }
  .formulario .imagencontacto {
    flex: 0.85;
  }
  .formulario .contenidoformulario {
    flex: 1;
    padding: 40px 20px 40px 40px;
  }
  .pagination nav .pag .conenlace a,
  .pagination nav .pag .sinenlace {
    margin-right: 8px;
    padding: 3px 16px;
  }
  .menuusuario .elemento {
    padding: 12px 15px;
  }
  .menuusuario a {
    font-size: 14px;
    line-height: 1.1em;
  }
  .menuusuario a::before {
    font-size: 28px !important;
    line-height: 50px;
  }
  .editarbanda .grupo {
    flex-direction: row;
    align-items: center;
  }
  .editarbanda .grupo label {
    text-align: right;
  }
  .editarbanda .submit .btn {
    margin-left: calc(25% + 20px);
  }
  .listadobandas {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .listadobandas .banda .nombre,
  .listadobandas .banda .provincia {
    font-size: 1em;
  }
  .listadobandas .banda .emblema {
    width: 80%;
    margin: 7% 10%;
  }
  .listadobandas.modulo .banda {
    min-width: 20%;
  }
  .infobanda .superior {
    flex-direction: row;
    align-items: flex-end;
    margin-top: -75px;
  }
  .infobanda .galeriabanda {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .infobanda .videosbanda {
    grid-template-columns: 1fr 1fr;
  }
  .listadomenu {
    grid-template-columns: 1fr 1fr;
  }
  .buscador .cajabuscador {
    flex-direction: row;
    padding: 0;
  }
  .buscador .parabuscar {
    flex: 1;
  }
  .buscador .parabuscar.primero {
    flex: 1.5;
  }
  .buscador .parabuscar select {
    width: 92%;
    margin: 0 0 0 8%;
  }
  .buscador .parabuscar .vermapa {
    width: 92%;
    margin: 0 0 0 8%;
    text-align: center;
    line-height: 1.1em;
  }
  .buscador .desplegar {
    display: none;
  }
  .titulobuscador {
    flex-direction: row;
  }
  .titulobuscador a,
  .renovarsuscripcion {
    margin: 0;
    max-width: 300px;
  }
  .formulario .btnregistro {
    display: inline;
  }
}
@media only screen and (min-width: 1024px) {
  #menuppal + label {
    display: none;
  }
  .cabecera ul.menu {
    top: 0;
    right: 0;
    position: relative;
    display: flex;
    height: auto;
    background: none;
    padding: 0;
    box-shadow: none;
  }
  .cabecera ul.menu li {
    font-size: 1.25em;
    width: auto;
    margin: 0;
    padding: 0 0 0 20px;
  }
  .destacado p {
    font-size: 1.8em;
    line-height: 1.4em;
  }
  .swiper-wrapper .swiper-slide-active h2 {
    font-size: 2.5em;
  }
  .swiper-wrapper .swiper-slide-active p {
    font-size: 1.7em;
  }
  .principal p,
  .principal ul {
    font-size: 18px;
    line-height: 1.4em;
  }
  .parrilla {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .parallax h2 {
    font-size: 2.1em;
  }
  .parallax p {
    font-size: 1.4em;
  }
  .pie1 .contenedor {
    flex-direction: row;
    text-align: left;
  }
  .pie1 .datoscontacto {
    flex: 1 !important;
  }
  .pie1 .menupie {
    flex: 0.7 !important;
  }
  .pie1 .datoscontacto .direccion,
  .pie1 .datoscontacto .telefono,
  .pie1 .datoscontacto .email {
    padding-left: 30px;
    position: relative;
    margin-bottom: 5px;
  }
  .pie1 .datoscontacto > div::before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    padding: 0 10px 0 0;
    position: absolute;
    left: 0;
  }
  .pie1 .datoscontacto .direccion::before {
    content: "\f1ad";
  }
  .pie1 .datoscontacto .telefono::before {
    content: "\f879";
  }
  .pie1 .datoscontacto .email::before {
    content: "\f0e0";
  }
  .pie1 .menupie li {
    padding-left: 12px;
    position: relative;
  }
  .pie1 .menupie li:before {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    padding: 0 10px 0 0;
  }
  .menupie li {
    margin: 2px 0;
  }
  .texto .sigplus-gallery ul {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
  .galeria {
    padding: 60px 0;
  }
  .faqs {
    flex-direction: row;
  }
  .faqs .imagenfaqs {
    flex: 0.85;
    max-height: 100%;
  }
  .faqs .textofaqs {
    padding: 60px 7%;
  }
  .formulario .imagencontacto {
    font-size: 150px;
  }
  .formulario .contenidoformulario {
    padding: 60px 7%;
  }
  .menuusuario .elemento {
    padding: 18px 22px;
  }
  .menuusuario a {
    font-size: 16px;
    line-height: 1.1em;
  }
  .menuusuario a::before {
    font-size: 35px !important;
    line-height: 60px;
  }
  .listadobandas {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .infobanda .superior {
    margin-top: -100px;
  }
  .listadobandas .banda .emblema {
    width: 70%;
    margin: 7% 15%;
  }
  .infobanda .superior h2 {
    font-size: 2em;
    line-height: 1.1em;
  }
  .infobanda .superior .emblema {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
  }
  .infobanda .superior .ubicacion {
    margin: 0.5em 0 40px;
  }
  .infobanda .superior .nombre {
    margin-left: 50px;
  }
  .infobanda .seccion {
    flex-direction: row;
  }
  .infobanda .seccion .izq {
    flex: 1;
    margin-top: 1em;
  }
  .infobanda .seccion.superior .izq {
    margin-top: 0;
  }
  .infobanda .seccion .dcha {
    flex: 2;
    margin-left: 50px;
  }
  .infobanda .redessociales {
    display: block;
  }
  .infobanda .redessociales .social .desc {
    display: inline;
  }
  .listadomenu {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .formpresupuesto .bloquedatos .bloque {
    min-width: 25%;
    padding: 0 40px 0 0;
  }
}
