@charset "UTF-8";
/*

  VARIABLES

*/
/*
	Theme Name: ATRES 2023 V1
	Theme URI: https://www.loygorri.com
	Description: Tailored WordPress Theme
	Version: 1.0
	Author: Gabriel García Loygorri
	Author URI: https://www.loygorri.com
	Tags: TAILORED, HTML5, CSS3, SASS
*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

:root, :root.light {
  --blanco: rgba(255,255,255,1);
  --fondo: rgba(237,239,242,1);
  --cian: rgba(104,225,234,1);
  --morado: rgba(0,102,255,1);
  --oscuro: rgba(3,26,52,1);
  --gris: rgba(120,131,152,1);
  --light: #edeff2;
  --blanco: rgba(255,255,255,1);
  --blanco_75: rgba(255,255,255,0.75);
  --blanco_25: rgba(255,255,255,0.25);
  --crema_siempre: rgba(249,246,239,1);
  --oscuro_siempre: rgba(52,58,66,1);
  --blanco_siempre: rgba(255,255,255,1);
  --negro: rgba(0,0,0,1);
  --color_secundario: rgba(229,75,75,1);
  --naranja: rgba(88,164,190,1);
  --naranja_oscuro: rgba(255,206,71,1);
  --oscuro_naranja: rgba(52,58,66,1);
  --blanco_naranja: rgba(249,246,239,1);
  --cat_naranja: rgba(255,206,71,1);
  --cat_negro: rgba(52,58,66,1);
  --cat_azul: rgba(176,218,229,1);
  --cat_verde: rgba(163,193,171,1);
  --cat_pistacho: rgba(232,244,189,1);
  --color_principal: rgba(88,164,190,1);
  --ancho_maximo: 1110px;
  --familia: "Inter", sans-serif;
  --texto_boton_clean: var(--blanco);
  --size_texto_boton_clean: 25px;
  --size_texto_boton_clean_movil: 18px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --blanco: rgba(255,255,255,1);
    --fondo: rgba(237,239,242,1);
    --cian: rgba(104,225,234,1);
    --morado: rgba(0,102,255,1);
    --oscuro: rgba(3,26,52,1);
    --gris: rgba(120,131,152,1);
    --light: #edeff2;
    --blanco: rgba(255,255,255,1);
    --blanco_75: rgba(255,255,255,0.75);
    --blanco_25: rgba(255,255,255,0.25);
    --crema_siempre: rgba(249,246,239,1);
    --oscuro_siempre: rgba(52,58,66,1);
    --blanco_siempre: rgba(255,255,255,1);
    --negro: rgba(0,0,0,1);
    --color_secundario: rgba(229,75,75,1);
    --naranja: rgba(88,164,190,1);
    --naranja_oscuro: rgba(255,206,71,1);
    --oscuro_naranja: rgba(52,58,66,1);
    --blanco_naranja: rgba(249,246,239,1);
    --cat_naranja: rgba(255,206,71,1);
    --cat_negro: rgba(52,58,66,1);
    --cat_azul: rgba(176,218,229,1);
    --cat_verde: rgba(163,193,171,1);
    --cat_pistacho: rgba(232,244,189,1);
    --color_principal: rgba(88,164,190,1);
  }
}
:root.dark {
  --blanco: rgba(255,255,255,1);
  --fondo: rgba(237,239,242,1);
  --cian: rgba(104,225,234,1);
  --morado: rgba(0,102,255,1);
  --oscuro: rgba(3,26,52,1);
  --gris: rgba(120,131,152,1);
  --light: #edeff2;
  --blanco: rgba(255,255,255,1);
  --blanco_75: rgba(255,255,255,0.75);
  --blanco_25: rgba(255,255,255,0.25);
  --crema_siempre: rgba(249,246,239,1);
  --oscuro_siempre: rgba(52,58,66,1);
  --blanco_siempre: rgba(255,255,255,1);
  --negro: rgba(0,0,0,1);
  --color_secundario: rgba(229,75,75,1);
  --naranja: rgba(88,164,190,1);
  --naranja_oscuro: rgba(255,206,71,1);
  --oscuro_naranja: rgba(52,58,66,1);
  --blanco_naranja: rgba(249,246,239,1);
  --cat_naranja: rgba(255,206,71,1);
  --cat_negro: rgba(52,58,66,1);
  --cat_azul: rgba(176,218,229,1);
  --cat_verde: rgba(163,193,171,1);
  --cat_pistacho: rgba(232,244,189,1);
  --color_principal: rgba(88,164,190,1);
}

h1 {
  font-family: var(--titulares);
}

hr {
  display: none;
}

body {
  font-family: var(--familia);
  font-size: 100%;
  background-color: var(--blanco);
  color: var(--oscuro);
}
body p {
  letter-spacing: 0.03em;
}
body.stop {
  height: 100dvh;
  overflow: hidden;
}
body .wrapper {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
body .wrapper header, body .wrapper main, body .wrapper aside {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
body .wrapper.blur header, body .wrapper.blur main, body .wrapper.blur aside {
  -webkit-filter: blur(2px);
          filter: blur(2px);
}
@media only screen and (max-width: 550px) {
  body .wrapper.blur header, body .wrapper.blur main, body .wrapper.blur aside {
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}

.move {
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.move_2 {
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out 0.2s;
  transition: all 0.5s ease-in-out 0.2s;
}

.move_3 {
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out 0.4s;
  transition: all 0.5s ease-in-out 0.4s;
}

.move_4 {
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out 0.6s;
  transition: all 0.5s ease-in-out 0.6s;
}

.move_5 {
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out 0.8s;
  transition: all 0.5s ease-in-out 0.8s;
}

.move_6 {
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out 1s;
  transition: all 0.5s ease-in-out 1s;
}

.move_dev {
  opacity: 0;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.move_ball {
  opacity: 0;
}

.clean {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  min-height: 100svh;
}
.clean svg#logo {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 30px;
  fill: var(--oscuro);
}
.clean svg#clean {
  max-width: 500px;
  margin: 5%;
}
.clean svg#clean #arco {
  fill: var(--naranja);
}
.clean svg#clean #texto {
  fill: var(--oscuro);
}
.clean a.boton {
  background-color: var(--oscuro);
  color: var(--texto_boton_clean);
  text-decoration: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: var(--size_texto_boton_clean);
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: 5%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media only screen and (max-width: 550px) {
  .clean a.boton {
    font-size: var(--size_texto_boton_clean_movil);
  }
}

/*

	VARIABLES

*/
header {
  padding-top: 25px;
  padding-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
  position: sticky;
  background-color: var(--blanco);
  top: 0px;
  z-index: 4;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--blanco);
}
@media only screen and (max-width: 550px) {
  header {
    padding-top: 20px;
  }
}
header .centrado {
  width: 100%;
  max-width: var(--ancho_maximo);
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  justify-items: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
header .centrado .logo {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 550px) {
  header .centrado .logo {
    margin-left: 0px;
  }
}
header .centrado .logo svg {
  height: 40px;
}
header .centrado .logo svg .cian {
  fill: var(--cian);
}
header .centrado .logo svg .morado {
  fill: var(--morado);
}
header .centrado .logo svg .oscuro {
  fill: var(--morado);
}
@media only screen and (max-width: 550px) {
  header .centrado .logo svg {
    height: 35px;
  }
}
header .centrado .logo h1 {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .centrado .logo a {
  font-weight: 700;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .centrado hr {
  display: none;
}
header .centrado .bars {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  cursor: pointer;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media only screen and (max-width: 550px) {
  header .centrado .bars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
header .centrado .bars svg {
  width: 30px;
  fill: var(--oscuro);
}
header .centrado .nav {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
@media only screen and (max-width: 550px) {
  header .centrado .nav {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
header .centrado .nav .sociales {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
header .centrado .nav .sociales a {
  width: 25px;
  height: 25px;
  border-radius: 325px;
  border: 1px solid var(--oscuro);
}
header .centrado .nav .sociales a svg {
  fill: var(--oscuro);
}
header .centrado .nav .telefono {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  border-radius: 10px;
  border: 1px solid var(--morado);
  color: var(--morado);
  line-height: 38px;
  padding-left: 10px;
  padding-right: 10px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
header .centrado .nav .telefono span {
  white-space: nowrap;
}
header .centrado .nav .telefono svg {
  fill: var(--morado);
  height: 22px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
header .centrado .nav .telefono:hover {
  background-color: var(--morado);
  color: white;
}
header .centrado .nav .telefono:hover svg {
  fill: white;
  height: 22px;
}
@media only screen and (max-width: 550px) {
  header .centrado .nav .telefono {
    display: none;
  }
}
header .centrado .nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0px;
  list-style: none;
  gap: 10px 30px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
@media only screen and (max-width: 550px) {
  header .centrado .nav ul {
    display: none;
  }
}
header .centrado .nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .centrado .nav ul li.current-menu-item a, header .centrado .nav ul li.current-menu-parent a {
  color: var(--morado);
}
header .centrado .nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  text-align: center;
  font-size: 16px;
  color: var(--gris);
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
header .centrado .nav ul li a:hover {
  color: var(--morado);
}
header .centrado .nav ul li a > span {
  position: relative;
  top: 13px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
header .centrado .nav ul li a span:last-child {
  position: relative;
  top: 33px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0px;
}
header .centrado .nav ul li a:hover {
  color: var(--morado);
}
header .centrado .nav ul li a:hover > span {
  position: relative;
  top: -33px;
  opacity: 0px;
}
header .centrado .nav ul li a:hover span:last-child {
  position: relative;
  top: -6px;
}
header .centrado .nav ul li ul {
  display: none;
}

body.no_top header .centrado nav .switch {
  opacity: 1;
}
@media only screen and (max-width: 550px) {
  body.no_top header .centrado nav .switch {
    display: none;
  }
}

body.abajo header {
  top: -100px;
  opacity: 1;
}

body.arriba header {
  top: 0px;
  opacity: 1;
}

body.no_top header {
  -webkit-box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.1);
}

body.no_top header .centrado .logo svg #uno {
  opacity: 0;
}
body.no_top header .centrado .logo svg #dos {
  opacity: 1;
}

@media only screen and (max-width: 550px) {
  .stop .wrapper header {
    -webkit-backdrop-filter: blur(0px);
            backdrop-filter: blur(0px);
    background-color: var(--oscuro_siempre);
  }
  .stop .wrapper header .logo svg path,
  .stop .wrapper header .logo svg rect {
    fill: var(--crema_siempre);
  }
  .stop .wrapper header .centrado .bars svg {
    fill: var(--crema_siempre);
  }
  .stop .wrapper header .centrado .nav .sociales a {
    border: 1px solid var(--crema_siempre);
  }
  .stop .wrapper header .centrado .nav .sociales a svg {
    fill: var(--crema_siempre);
  }
}
/*

	VARIABLES

*/
.menu-desplegable {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  right: -100%;
  background-color: var(--blanco_75);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 5;
  opacity: 0.5;
  overflow: scroll;
  height: 100dvh;
}
.menu-desplegable .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background-color: var(--morado);
  padding: 20px;
}
.menu-desplegable .logo svg {
  height: 35px;
}
.menu-desplegable .logo svg .oscuro, .menu-desplegable .logo svg .morado, .menu-desplegable .logo svg .cian {
  fill: var(--blanco);
}
.menu-desplegable .logo .cierre svg {
  fill: var(--blanco);
  height: 25px;
}
.menu-desplegable > ul {
  background-color: var(--blanco);
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  padding: 20px;
  padding-top: 0px;
}
.menu-desplegable > ul li {
  font-size: 20px;
  list-style: none;
}
.menu-desplegable > ul li a {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--gris);
  text-decoration: none;
  border-bottom: 1px solid var(--gris);
}
.menu-desplegable > ul li.current-menu-item a, .menu-desplegable > ul li:where(body.single) a {
  color: var(--morado);
}
.menu-desplegable > ul li:last-child a {
  border-bottom: 0px solid var(--gris);
}
.menu-desplegable > ul li.menor {
  font-size: 16px;
}
.menu-desplegable > ul li.menor a {
  padding: 10px 15px;
}
.menu-desplegable .botonera {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  background-color: var(--morado);
  padding: 20px;
}
.menu-desplegable .botonera .telefono {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  border-radius: 10px;
  border: 1px solid var(--blanco);
  padding: 10px;
  color: var(--blanco);
  text-decoration: none;
}
.menu-desplegable .botonera .telefono svg {
  height: 25px;
  fill: var(--blanco);
}
.menu-desplegable .botonera .contacta {
  background-color: var(--cian);
  color: var(--oscuro);
  border-radius: 10px;
  width: 100%;
  max-width: 140px;
  line-height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}
.menu-desplegable.activo {
  top: 0px;
  right: 0px;
  width: 100%;
  opacity: 1;
}
@media only screen and (max-width: 550px) {
  .menu-desplegable.activo {
    right: 0px;
    top: 0px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
}

.single .menu-desplegable ul li.articulo a {
  color: var(--morado);
}

.cierre-menu-desplegable {
  position: fixed;
  top: 0px;
  left: 100%;
  width: 100%;
  height: 100vh;
  z-index: 4;
  background-color: rgb(0, 0, 0);
  cursor: pointer;
}

.cierre-menu-desplegable.activo {
  left: 0px;
  top: 0px;
}
/* FIRMA */
.firma {
  background-color: rgb(10, 10, 10);
  color: rgb(255, 255, 255);
  padding: 10px;
  font-size: 11px;
  text-transform: uppercase;
}

.firma a {
  color: rgb(255, 255, 255);
}

.firma a:hover {
  font-weight: 700;
}

.enlace_firma {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 75px;
  max-width: 200px;
  margin-top: 20px;
}

.enlace_firma span {
  color: rgb(255, 255, 255);
  padding: 0px 10px;
  font-size: 11px;
  text-transform: uppercase;
}

.enlace_firma span a {
  color: rgb(255, 255, 255);
  font-weight: 700;
}

.enlace_firma a {
  height: 30px;
  font-weight: 700;
}

.enlace_firma a svg {
  height: 30px;
}

/*

	VARIABLES
	--color_fondo_footer
	--color_borde_footer
	--color_borde_titular
	--color_titular_h2
	--color_enlace_pie
	--color_buller_pie

	--ancho_centrado
	--grosor_uno
	--hueco_triple
	--hueco

	--veinte
	--dieciseis
	--light




*/
body:not(.home) aside {
  position: fixed;
  bottom: 0px;
  width: 100%;
  background-color: var(--crema_aside);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
}
body:not(.home) aside.activo .centrado .contenedor {
  opacity: 0;
}
body:not(.home) aside.activo .centrado .acciones p {
  opacity: 0;
  color: var(--oscuro);
}
body:not(.home) aside.activo .centrado .acciones ul {
  opacity: 0;
}
body:not(.home) aside.activo .centrado .acciones svg {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
body:not(.home) aside.activo .centrado .acciones svg rect {
  fill: var(--oscuro);
}
body:not(.home) aside .centrado {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
body:not(.home) aside .centrado .acciones {
  width: 200px;
  min-width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (max-width: 550px) {
  body:not(.home) aside .centrado .acciones {
    width: 100%;
    max-width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
body:not(.home) aside .centrado .acciones h2 {
  cursor: pointer;
  font-family: var(--gosha);
  font-size: 23px;
  line-height: 0.8em;
  letter-spacing: -0.05em;
  color: var(--oscuro);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 550px) {
  body:not(.home) aside .centrado .acciones h2 {
    background-color: var(--naranja);
    padding: 10px;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
  }
}
body:not(.home) aside .centrado .acciones h2 svg {
  width: 20px;
  margin-right: 10px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
body:not(.home) aside .centrado .acciones h2 svg rect {
  fill: var(--oscuro);
}
body:not(.home) aside .centrado .acciones h2 svg.giro {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
body:not(.home) aside .centrado .acciones p {
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding-bottom: 10px;
  padding-top: 10px;
  color: var(--oscuro);
}
@media only screen and (max-width: 550px) {
  body:not(.home) aside .centrado .acciones p {
    display: none;
  }
}
body:not(.home) aside .centrado .acciones ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  list-style: none;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 550px) {
  body:not(.home) aside .centrado .acciones ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
body:not(.home) aside .centrado .acciones ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 5px;
  width: 100%;
}
body:not(.home) aside .centrado .acciones ul li.con {
  display: none;
}
@media only screen and (max-width: 550px) {
  body:not(.home) aside .centrado .acciones ul li.con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
body:not(.home) aside .centrado .acciones ul li.sin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 550px) {
  body:not(.home) aside .centrado .acciones ul li.sin {
    display: none;
  }
}
body:not(.home) aside .centrado .acciones ul li.naranja a {
  background-color: var(--cat_naranja);
  color: var(--oscuro_siempre);
}
body:not(.home) aside .centrado .acciones ul li.negro a {
  background-color: var(--cat_negro);
}
body:not(.home) aside .centrado .acciones ul li.azul a {
  background-color: var(--cat_azul);
  color: var(--oscuro_siempre);
}
body:not(.home) aside .centrado .acciones ul li.verde a {
  background-color: var(--cat_verde);
  color: var(--oscuro_siempre);
}
body:not(.home) aside .centrado .acciones ul li.pistacho a {
  background-color: var(--cat_pistacho);
  color: var(--oscuro_siempre);
}
body:not(.home) aside .centrado .acciones ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 4px 10px;
  background-color: black;
  text-transform: uppercase;
  color: white;
  font-size: 13px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  cursor: pointer;
}
body:not(.home) aside .centrado .acciones #buscar {
  width: 20px;
  cursor: pointer;
  fill: var(--oscuro);
}
@media only screen and (max-width: 550px) {
  body:not(.home) aside .centrado .acciones #buscar {
    display: none;
  }
}
body:not(.home) aside .centrado .contenedor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
body:not(.home) aside .centrado .contenedor::-webkit-scrollbar {
  display: none;
}
body:not(.home) aside .centrado .contenedor .owl-stage-outer .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
body:not(.home) aside .centrado .contenedor .owl-stage-outer .owl-stage .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
body:not(.home) aside .centrado .contenedor .owl-nav .owl-prev {
  position: absolute;
  left: 0px;
  top: calc(50% - 25px);
  width: 20px;
  height: 50px;
}
body:not(.home) aside .centrado .contenedor .owl-nav .owl-prev svg {
  fill: var(--oscuro);
}
body:not(.home) aside .centrado .contenedor .owl-nav .owl-next {
  position: absolute;
  right: 0px;
  top: calc(50% - 25px);
  width: 20px;
  height: 50px;
}
body:not(.home) aside .centrado .contenedor .owl-nav .owl-next svg {
  fill: var(--oscuro);
}
@media only screen and (max-width: 550px) {
  body:not(.home) aside .centrado .contenedor {
    display: none;
  }
}
body:not(.home) aside .centrado .contenedor .item {
  width: 250px;
  min-width: 200px;
  background-color: var(--blanco);
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body:not(.home) aside .centrado .contenedor .item .linea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 5px;
}
body:not(.home) aside .centrado .contenedor .item .linea .titulo {
  font-size: 14px;
  font-weight: 500;
  color: var(--oscuro);
}
body:not(.home) aside .centrado .contenedor .item .linea .categoria {
  padding: 5px 5px;
  border-radius: 10px;
  background-color: black;
  text-transform: uppercase;
  color: white;
  font-size: 13px;
}
body:not(.home) aside .centrado .contenedor .item .linea .categoria.naranja {
  background-color: var(--cat_naranja);
  color: var(--oscuro_siempre);
}
body:not(.home) aside .centrado .contenedor .item .linea .categoria.negro {
  background-color: var(--cat_negro);
}
body:not(.home) aside .centrado .contenedor .item .linea .categoria.azul {
  background-color: var(--cat_azul);
  color: var(--oscuro_siempre);
}
body:not(.home) aside .centrado .contenedor .item .linea .categoria.verde {
  background-color: var(--cat_verde);
  color: var(--oscuro_siempre);
}
body:not(.home) aside .centrado .contenedor .item .linea .categoria.pistacho {
  background-color: var(--cat_pistacho);
  color: var(--oscuro_siempre);
}
body:not(.home) aside .centrado .contenedor .item p {
  padding-bottom: 5px;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  font-size: 14px;
  font-weight: 400;
  color: var(--oscuro);
}
body:not(.home) aside .centrado .contenedor .item a {
  display: block;
  display: block;
  width: 100%;
  aspect-ratio: 5/4;
  overflow: hidden;
}
body:not(.home) aside .centrado .contenedor .item a img {
  display: block;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  aspect-ratio: 5/4;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
body:not(.home) aside .centrado .contenedor .item a:hover img {
  width: 120%;
  margin-left: -5%;
  margin-top: -5%;
}

body.home aside {
  position: fixed;
  bottom: -300px;
  width: 100%;
  background-color: var(--crema);
  padding-top: 25px;
  padding-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
}
body.home aside.activo {
  bottom: 0px;
}
body.home aside.activo .centrado .contenedor {
  opacity: 1;
}
body.home aside.activo .centrado .contenedor .owl-stage-outer .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
body.home aside.activo .centrado .contenedor .owl-stage-outer .owl-stage .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
body.home aside.activo .centrado .contenedor .owl-nav .owl-prev {
  position: absolute;
  left: 0px;
  top: calc(50% - 25px);
  width: 20px;
  height: 50px;
}
body.home aside.activo .centrado .contenedor .owl-nav .owl-prev svg {
  fill: var(--oscuro);
}
body.home aside.activo .centrado .contenedor .owl-nav .owl-next {
  position: absolute;
  right: 0px;
  top: calc(50% - 25px);
  width: 20px;
  height: 50px;
}
body.home aside.activo .centrado .contenedor .owl-nav .owl-next svg {
  fill: var(--oscuro);
}
body.home aside.activo .centrado .acciones svg {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
body.home aside.activo .centrado .acciones svg rect,
body.home aside.activo .centrado .acciones svg path {
  fill: var(--oscuro);
}
body.home aside.activo .centrado .acciones #buscar {
  width: 20px;
  cursor: pointer;
  fill: var(--oscuro);
}
@media only screen and (max-width: 550px) {
  body.home aside.activo .centrado .acciones #buscar {
    display: none;
  }
}
body.home aside.activo .centrado .acciones p {
  opacity: 1;
  padding-bottom: 10px;
  padding-top: 10px;
  color: var(--oscuro);
}
body.home aside.activo .centrado .acciones ul {
  opacity: 1;
}
body.home aside.activo .centrado .acciones ul li.con {
  display: none;
}
@media only screen and (max-width: 550px) {
  body.home aside.activo .centrado .acciones ul li.con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
body.home aside.activo .centrado .acciones ul li.sin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 550px) {
  body.home aside.activo .centrado .acciones ul li.sin {
    display: none;
  }
}
body.home aside.activo .centrado .acciones ul li.naranja a {
  background-color: var(--cat_naranja);
  color: var(--oscuro_siempre);
}
body.home aside.activo .centrado .acciones ul li.negro a {
  background-color: var(--cat_negro);
}
body.home aside.activo .centrado .acciones ul li.azul a {
  background-color: var(--cat_azul);
  color: var(--oscuro_siempre);
}
body.home aside.activo .centrado .acciones ul li.verde a {
  background-color: var(--cat_verde);
  color: var(--oscuro_siempre);
}
body.home aside.activo .centrado .acciones ul li.pistacho a {
  background-color: var(--cat_pistacho);
  color: var(--oscuro_siempre);
}
body.home aside .centrado {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
body.home aside .centrado .acciones {
  width: 200px;
  min-width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (max-width: 550px) {
  body.home aside .centrado .acciones {
    width: 100%;
    max-width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
body.home aside .centrado .acciones h2 {
  cursor: pointer;
  font-family: var(--gosha);
  font-size: 23px;
  line-height: 0.8em;
  letter-spacing: -0.05em;
  color: var(--oscuro);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 550px) {
  body.home aside .centrado .acciones h2 {
    background-color: var(--naranja);
    padding: 10px;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
  }
}
body.home aside .centrado .acciones h2 svg {
  width: 20px;
  margin-right: 10px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
body.home aside .centrado .acciones h2 svg rect {
  fill: var(--oscuro);
}
body.home aside .centrado .acciones h2 svg.giro {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
body.home aside .centrado .acciones p {
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: var(--oscuro);
}
@media only screen and (max-width: 550px) {
  body.home aside .centrado .acciones p {
    display: none;
  }
}
body.home aside .centrado .acciones ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  list-style: none;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 550px) {
  body.home aside .centrado .acciones ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
body.home aside .centrado .acciones ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 5px;
  width: 100%;
}
body.home aside .centrado .acciones ul li.con {
  display: none;
}
@media only screen and (max-width: 550px) {
  body.home aside .centrado .acciones ul li.con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
body.home aside .centrado .acciones ul li.sin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 550px) {
  body.home aside .centrado .acciones ul li.sin {
    display: none;
  }
}
body.home aside .centrado .acciones ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 4px 10px;
  background-color: black;
  text-transform: uppercase;
  color: white;
  font-size: 13px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  cursor: pointer;
}
body.home aside .centrado .acciones ul li.naranja a {
  background-color: var(--cat_naranja);
  color: var(--oscuro_siempre);
}
body.home aside .centrado .acciones ul li.negro a {
  background-color: var(--cat_negro);
}
body.home aside .centrado .acciones ul li.azul a {
  background-color: var(--cat_azul);
  color: var(--oscuro_siempre);
}
body.home aside .centrado .acciones ul li.verde a {
  background-color: var(--cat_verde);
  color: var(--oscuro_siempre);
}
body.home aside .centrado .acciones ul li.pistacho a {
  background-color: var(--cat_pistacho);
  color: var(--oscuro_siempre);
}
body.home aside .centrado .acciones #buscar {
  width: 20px;
  cursor: pointer;
  fill: var(--oscuro);
}
@media only screen and (max-width: 550px) {
  body.home aside .centrado .acciones #buscar {
    display: none;
  }
}
body.home aside .centrado .contenedor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
}
body.home aside .centrado .contenedor::-webkit-scrollbar {
  display: none;
}
body.home aside .centrado .contenedor .owl-stage-outer .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
body.home aside .centrado .contenedor .owl-stage-outer .owl-stage .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
body.home aside .centrado .contenedor .owl-nav .owl-prev {
  position: absolute;
  left: 0px;
  top: calc(50% - 25px);
  width: 20px;
  height: 50px;
}
body.home aside .centrado .contenedor .owl-nav .owl-prev svg {
  fill: var(--oscuro);
}
body.home aside .centrado .contenedor .owl-nav .owl-next {
  position: absolute;
  right: 0px;
  top: calc(50% - 25px);
  width: 20px;
  height: 50px;
}
body.home aside .centrado .contenedor .owl-nav .owl-next svg {
  fill: var(--oscuro);
}
@media only screen and (max-width: 550px) {
  body.home aside .centrado .contenedor {
    display: none;
  }
}
body.home aside .centrado .contenedor .item {
  width: 250px;
  min-width: 200px;
  background-color: var(--blanco);
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
body.home aside .centrado .contenedor .item .linea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 5px;
}
body.home aside .centrado .contenedor .item .linea .titulo {
  font-size: 14px;
  font-weight: 500;
  color: var(--oscuro);
}
body.home aside .centrado .contenedor .item .linea .categoria {
  padding: 5px 5px;
  border-radius: 10px;
  background-color: black;
  text-transform: uppercase;
  color: var(--blanco_siempre);
  font-size: 13px;
}
body.home aside .centrado .contenedor .item .linea .categoria.naranja {
  background-color: var(--cat_naranja);
  color: var(--oscuro_siempre);
}
body.home aside .centrado .contenedor .item .linea .categoria.negro {
  background-color: var(--cat_negro);
}
body.home aside .centrado .contenedor .item .linea .categoria.azul {
  background-color: var(--cat_azul);
  color: var(--oscuro_siempre);
}
body.home aside .centrado .contenedor .item .linea .categoria.verde {
  background-color: var(--cat_verde);
  color: var(--oscuro_siempre);
}
body.home aside .centrado .contenedor .item .linea .categoria.pistacho {
  background-color: var(--cat_pistacho);
  color: var(--oscuro_siempre);
}
body.home aside .centrado .contenedor .item p {
  padding-bottom: 5px;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  font-size: 14px;
  font-weight: 400;
  color: var(--oscuro);
}
body.home aside .centrado .contenedor .item a {
  display: block;
  display: block;
  width: 100%;
  aspect-ratio: 5/4;
  overflow: hidden;
}
body.home aside .centrado .contenedor .item a img {
  display: block;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  aspect-ratio: 5/4;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
body.home aside .centrado .contenedor .item a:hover img {
  width: 120%;
  margin-left: -5%;
  margin-top: -5%;
}

/*

body.home .wrapper aside .centrado{
	justify-content: flex-end;	
}
body.home .wrapper aside .centrado .contenedor{
	visibility: collapse;
	opacity: 0;
}

body.home .wrapper aside .centrado .acciones p,
body.home .wrapper aside .centrado .acciones ul{
	visibility: collapse;
	opacity: 0;
}

body.home .wrapper aside.activo{

}
body.home .wrapper aside.activo .centrado .contenedor{
	display: flex;
	opacity: 1;


}

body.home .wrapper aside.activo .centrado .acciones p,
body.home .wrapper aside.activo .centrado .acciones ul{
	display: flex;
	opacity: 1;

}
*/
/*

	VARIABLES
	--color_fondo_footer




*/
footer {
  position: relative;
  overflow: hidden;
  background-color: rgb(0, 102, 255);
}
footer > img {
  position: absolute;
  top: 0px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center top;
     object-position: center top;
  width: 100%;
  z-index: 1;
}
footer > .v_1 {
  position: absolute;
  bottom: -20px;
  left: -10px;
  height: 100%;
  z-index: 1;
}
footer > .v_2 {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  z-index: 1;
}
footer .fila_contacto {
  position: relative;
  z-index: 2;
}
footer .fila_contacto .centrado {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--cian);
}
@media only screen and (max-width: 550px) {
  footer .fila_contacto .centrado {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
footer .fila_contacto .centrado .lado {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 50px;
  padding-bottom: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 550px) {
  footer .fila_contacto .centrado .lado {
    margin-left: initial;
  }
}
footer .fila_contacto .centrado .lado p {
  font-size: 36px;
  font-weight: 500;
  color: var(--blanco);
  padding-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 550px) {
  footer .fila_contacto .centrado .lado p {
    display: inherit;
  }
}
footer .fila_contacto .centrado .lado a {
  background-color: var(--cian);
  color: var(--oscuro);
  border-radius: 10px;
  width: 100%;
  max-width: 140px;
  line-height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
footer .fila_contacto .centrado .lado a:hover {
  background-color: var(--blanco);
}
footer .fila_contacto .centrado ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
footer .fila_contacto .centrado ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  color: var(--fondo);
  font-size: 16px;
  text-align: left;
  padding-top: 10px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  gap: 10px;
}
footer .fila_contacto .centrado ul li svg {
  width: 25px;
  fill: var(--cian);
}
footer .fila_contacto .centrado ul li:first-child {
  font-size: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
footer .fila_contacto .centrado ul li > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
footer .pie {
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}
footer .pie .centrado {
  padding-bottom: 20px;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 550px) {
  footer .pie .centrado {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    gap: 10px;
  }
}
@media only screen and (max-width: 550px) {
  footer .pie .centrado > a {
    margin-left: 0px;
  }
}
footer .pie .centrado > a svg {
  height: 37px;
}
footer .pie .centrado > a svg .oscuro {
  fill: var(--fondo);
}
footer .pie .centrado > a svg .cian {
  fill: var(--fondo);
}
footer .pie .centrado > a svg .morado {
  fill: var(--fondo);
}
footer .pie .centrado p {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  text-align: center;
  width: 100%;
  font-size: 12px;
  color: var(--fondo);
}
footer .pie .centrado ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  gap: 25px;
}
@media only screen and (max-width: 550px) {
  footer .pie .centrado ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    gap: 15px;
  }
}
footer .pie .centrado ul li {
  padding: 0px;
}
footer .pie .centrado ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 21px;
  height: 21px;
}
footer .pie .centrado ul li a svg {
  width: 100%;
  height: 100%;
  fill: var(--cian);
}
footer .pie .centrado ul li a span {
  display: none;
}
footer .cierre .centrado {
  padding-top: 25px;
  padding-bottom: 25px;
}
footer .centrado {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: var(--ancho_maximo);
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1200px) {
  footer .centrado {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 550px) {
  footer .centrado {
    padding-left: 10px;
    padding-right: 10px;
  }
}
footer .centrado ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  margin: 0px;
}
@media only screen and (max-width: 550px) {
  footer .centrado ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
footer .centrado ul li {
  padding-left: 10px;
  padding-right: 10px;
}
footer .centrado ul li a {
  color: var(--blanco);
}

.lateral_x5F_pi1_x5F_1-visible footer > .v_1 {
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 100%;
  z-index: 1;
}

.lateral_x5F_pie_x5F_2-visible footer > .v_2 {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  z-index: 1;
}

.contact footer {
  position: relative;
  z-index: 1;
}
.contact footer .fila_contacto .centrado {
  padding-top: 50px;
  padding-bottom: 20vh;
}
@media only screen and (max-width: 550px) {
  .contact footer .fila_contacto .centrado {
    padding-top: 5vh;
    padding-bottom: 5vh;
  }
}

.blog footer {
  position: relative;
  z-index: 1;
  overflow: initial;
}
@media only screen and (max-width: 550px) {
  .blog footer {
    overflow: hidden;
  }
}
@media only screen and (max-width: 550px) {
  .blog footer .fila_contacto {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.blog footer .fila_contacto .centrado {
  background-color: var(--cian);
  color: var(--oscuro);
  border-radius: 20px;
  padding: 40px;
  max-width: 950px;
  margin-top: -175px;
  margin-bottom: 200px;
  position: relative;
}
@media only screen and (max-width: 550px) {
  .blog footer .fila_contacto .centrado {
    margin-top: 5vh;
    margin-bottom: 5vh;
  }
}
.blog footer .fila_contacto .centrado img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: invert(100%);
          filter: invert(100%);
  top: 0px;
  left: 0px;
  opacity: 0.5;
  z-index: 1;
}
.blog footer .fila_contacto .centrado .lado {
  max-width: 500px;
  padding-top: 0px;
  padding-bottom: 0px;
  z-index: 2;
  position: relative;
}
.blog footer .fila_contacto .centrado .lado p {
  letter-spacing: 0.03em;
  font-size: 400;
  color: var(--oscuro);
}
.blog footer .fila_contacto .centrado .lado p:first-child {
  font-size: 24px;
  padding-bottom: 35px;
}
.blog footer .fila_contacto .centrado .lado p:last-child {
  font-size: 16px;
  padding-bottom: 0px;
}
.blog footer .fila_contacto .centrado div:not(.lado) {
  max-width: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 2;
  position: relative;
}
.blog footer .fila_contacto .centrado div:not(.lado) ul li {
  color: var(--oscuro);
}
.blog footer .fila_contacto .centrado div:not(.lado) ul li svg {
  fill: var(--morado);
}
.blog footer .fila_contacto .centrado div:not(.lado) a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 125px;
  text-align: center;
  font-size: 18px;
  color: var(--verde);
  font-family: var(--gosha);
  text-decoration: none;
  background-color: var(--oscuro);
  color: var(--blanco);
  border: 1px solid var(--azul_aliot);
  border-radius: 10px;
  padding-left: 25px;
  padding-right: 25px;
  line-height: 40px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  text-transform: initial;
  margin-top: 40px;
}
.blog footer .pie .centrado {
  border-top: 1px solid var(--cian);
}

.single footer {
  position: relative;
  z-index: 1;
  overflow: initial;
}
@media only screen and (max-width: 550px) {
  .single footer {
    overflow: hidden;
  }
}
.single footer > .v_1 {
  width: 100%;
}
@media only screen and (max-width: 550px) {
  .single footer .fila_contacto .centrado {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-top: 5vh;
  }
}
.single footer .fila_contacto .centrado .lado {
  max-width: 350px;
  z-index: 2;
  position: relative;
  padding-top: 90px;
  padding-bottom: 90px;
}
@media only screen and (max-width: 550px) {
  .single footer .fila_contacto .centrado .lado {
    padding-top: 5vh;
    padding-bottom: 5vh;
    max-width: 100%;
  }
}
.single footer .fila_contacto .centrado .lado p {
  letter-spacing: 0.03em;
  font-weight: 400;
  color: var(--fondo);
}
.single footer .fila_contacto .centrado .lado p:first-child {
  font-size: 24px;
  padding-bottom: 35px;
}
.single footer .fila_contacto .centrado .lado p:last-of-type {
  font-size: 16px;
  padding-bottom: 0px;
}
.single footer .fila_contacto .centrado .lado ul {
  padding-top: 90px;
}
@media only screen and (max-width: 550px) {
  .single footer .fila_contacto .centrado .lado ul {
    padding-top: 5vh;
  }
}
.single footer .fila_contacto .centrado > div:not(.lado) {
  z-index: 2;
  position: relative;
  background-color: white;
  margin-top: -150px;
  max-width: 500px;
  padding: 50px;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 50px rgba(0, 0, 0, 0.25);
          box-shadow: 5px 5px 50px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 550px) {
  .single footer .fila_contacto .centrado > div:not(.lado) {
    margin-top: initial;
    padding: 20px;
  }
}
.single footer .pie .centrado {
  border-top: 1px solid var(--cian);
}

.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  word-wrap: normal !important;
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2;
}

.wpcf7 form.init .wpcf7-response-output, .wpcf7 form.resetting .wpcf7-response-output, .wpcf7 form.submitting .wpcf7-response-output {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
}

.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
  border-color: #dc3232;
}

.wpcf7 form.spam .wpcf7-response-output {
  border-color: #f56e28;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900;
}

.wpcf7-form-control-wrap {
  position: relative;
}

.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 1em;
  font-weight: 400;
  display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
  position: relative;
  top: -2ex;
  left: 1em;
  z-index: 100;
  border: 1px solid #dc3232;
  background: #fff;
  padding: 0.2em 0.8em;
  width: 24em;
}

.wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before, .wpcf7-list-item-label::after {
  content: " ";
}

.wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  background-color: #23282d;
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0 24px;
  position: relative;
}

form.submitting .wpcf7-spinner {
  visibility: visible;
}

.wpcf7-spinner::before {
  content: "";
  position: absolute;
  background-color: #fbfbfc;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  -webkit-transform-origin: 8px 8px;
          transform-origin: 8px 8px;
  -webkit-animation-name: spin;
          animation-name: spin;
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
  .wpcf7-spinner::before {
    -webkit-animation-name: blink;
            animation-name: blink;
    -webkit-animation-duration: 2000ms;
            animation-duration: 2000ms;
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes blink {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes blink {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.wpcf7 input[type=file] {
  cursor: pointer;
}

.wpcf7 input[type=file]:disabled {
  cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed;
}

.wpcf7 input[type=url], .wpcf7 input[type=email], .wpcf7 input[type=tel] {
  direction: ltr;
}

.wpcf7-reflection > output {
  display: list-item;
  list-style: none;
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 100%;
    gap: 10px;
    padding: 20px;
  }
}
@media only screen and (max-width: 550px) {
  form {
    padding: 0px;
  }
}
form label:first-child {
  width: 100%;
}
@media only screen and (max-width: 768px) and (min-width: 429px) {
  form label:first-child {
    max-width: 100%;
  }
}
@media only screen and (max-width: 428px) {
  form label:first-child {
    max-width: 100%;
  }
}
@media only screen and (max-width: 768px) and (min-width: 429px) {
  form label:nth-child(2) {
    max-width: 100%;
  }
}
@media only screen and (max-width: 428px) {
  form label:nth-child(2) {
    max-width: 100%;
  }
}
form label {
  display: block;
  width: 100%;
}
form label.medio {
  width: 47%;
}
@media only screen and (max-width: 428px) {
  form label.medio {
    width: 100%;
  }
}
form input {
  font-family: var(--family);
  font-size: var(--dieciocho);
}
form input:not([type=checkbox]),
form textarea {
  width: 100%;
  padding: 10px 10px;
  font-family: var(--family);
  font-size: var(--dieciocho);
  background-color: var(--light);
  border: 0px;
}
form input:not([type=checkbox]):focus-visible,
form textarea:focus-visible {
  outline: none;
}
form select {
  width: 100%;
  padding: 10px 10px;
  font-family: var(--family);
  font-size: var(--dieciocho);
  background-color: var(--color_principal_light);
  border: 0px;
}
form select:focus-visible {
  outline: none;
}
form input[type=submit] {
  -webkit-appearance: none;
  -webkit-border-radius: none;
  margin-top: 10px;
  background-color: var(--color_secundario);
  font-size: var(--veinticuatro);
  color: var(--color_blanco_siempre);
  text-transform: uppercase;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 15px;
  border-radius: var(--radio_boton);
  white-space: nowrap;
  width: 100%;
  cursor: pointer;
}
@media only screen and (max-width: 1024px) {
  form input[type=submit] {
    white-space: normal;
    text-align: center;
  }
}
form a {
  color: var(--color_principal);
}
form .wpcf7-form-control-wrap {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  padding-top: 5px;
}
form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  position: absolute;
  right: 5px;
  top: 5px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-size: 12px;
  font-weight: 700;
}
form .wpcf7-spinner {
  position: absolute;
  top: calc(50% - 12px);
  left: calc(50% - 12px);
  display: block;
  margin: 0px;
}
form .wpcf7-response-output {
  position: absolute;
  bottom: -75px;
  left: 0px;
  border: 0px;
  margin: 0px;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
}
form.invalid .wpcf7-response-output {
  background-color: #ffb900;
  color: black;
}
form.sent .wpcf7-response-output {
  background-color: #46b450;
  color: black;
}

.wpcf7.no-js {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.wpcf7.no-js p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  gap: 20px;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wpcf7.no-js p .wpcf7-form-control-wrap .wpcf7-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0px;
  margin: 0px;
  font-size: 13px;
}
.wpcf7.no-js p .wpcf7-form-control-wrap .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  gap: 10px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.wpcf7.no-js p .wpcf7-form-control-wrap .wpcf7-list-item label input[type=checkbox] {
  margin-top: 3px;
}
.wpcf7.no-js p .wpcf7-form-control-wrap .wpcf7-list-item label input[type=checkbox] {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  vertical-align: middle;
  border: 1px solid var(--oscuro);
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  position: relative;
}
.wpcf7.no-js p .wpcf7-form-control-wrap .wpcf7-list-item label input[type=checkbox]:checked {
  background-color: var(--oscuro);
}
.wpcf7.no-js p .wpcf7-form-control-wrap .wpcf7-list-item label a {
  color: var(--azul_aliot);
}
.wpcf7.no-js p label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.wpcf7.no-js p label.legal {
  font-size: 14px;
}
.wpcf7.no-js p label.legal span {
  font-size: 13px;
}
.wpcf7.no-js p label span {
  font-size: 16px;
}
.wpcf7.no-js p label span a {
  color: var(--azul_aliot);
}
.wpcf7.no-js p label input:not([type=checkbox]), .wpcf7.no-js p label textarea, .wpcf7.no-js p label select {
  width: 100%;
  background-color: var(--light);
  border: 0px;
  padding: 10px 10px;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--gosha);
  border-radius: 5px;
  color: var(--azul_aliot);
}
.wpcf7.no-js p .wpcf7-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
  max-width: 125px;
  text-align: center;
  font-size: 18px;
  color: var(--verde);
  font-family: var(--gosha);
  text-decoration: none;
  background-color: var(--oscuro);
  color: var(--blanco);
  border: 1px solid var(--azul_aliot);
  border-radius: 10px;
  padding-left: 25px;
  padding-right: 25px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  margin: auto;
  text-transform: initial;
}
.wpcf7.no-js p .wpcf7-submit:hover {
  background-color: var(--cian);
  color: var(--oscuro);
}

/*

	VARIABLES
	--color_fondo_footer

*/
.home .wrapper {
  width: 100vw;
}
.home .wrapper .ball1 {
  width: 700px;
  opacity: 0.3;
  position: absolute;
  z-index: 2;
}
.home .wrapper .ball2 {
  width: 700px;
  opacity: 0.3;
  position: absolute;
  z-index: 2;
}
.home .wrapper main {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  position: relative;
}
.home .wrapper main .fila {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.home .wrapper main .fila .centrado {
  width: 100%;
  max-width: var(--ancho_maximo);
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  justify-items: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media only screen and (max-width: 1200px) {
  .home .wrapper main .fila .centrado {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .fila .centrado {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.home .wrapper main .fila.fila_quienes {
  background-color: var(--fondo);
}
.home .wrapper main .fila.fila_quienes .centrado {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 75px;
  padding-bottom: 65px;
}
.home .wrapper main .fila.fila_quienes .centrado h2 {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--morado);
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .fila.fila_quienes .centrado h2 {
    text-align: center;
  }
}
.home .wrapper main .fila.fila_quienes .centrado h3 {
  font-size: 48px;
  font-weight: 500;
  padding-top: 20px;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .fila.fila_quienes .centrado h3 {
    text-align: center;
    font-size: 40px;
    line-height: 1em;
  }
}
.home .wrapper main .fila.fila_quienes .centrado p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-align: center;
  padding-top: 25px;
  color: var(--gris);
}
.home .wrapper main .fila.fila_quienes .centrado p span {
  display: block;
}
.home .wrapper main .fila.fila_banner {
  height: 50vh;
  background-color: var(--morado);
  color: var(--blanco);
  position: relative;
  overflow: hidden;
}
.home .wrapper main .fila.fila_banner .filtro {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgb(0, 102, 255);
  background: linear-gradient(72deg, rgba(0, 102, 255, 0.7091211485) 0%, rgba(3, 26, 52, 0.381390056) 49%, rgba(0, 102, 255, 0.6446953782) 100%);
}
.home .wrapper main .fila.fila_banner .owl-banner {
  height: 50vh;
}
.home .wrapper main .fila.fila_banner .owl-banner .owl-stage-outer {
  overflow: hidden;
  height: 50vh;
}
.home .wrapper main .fila.fila_banner .owl-banner .owl-stage-outer .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50vh;
}
.home .wrapper main .fila.fila_banner .owl-banner .owl-stage-outer .owl-stage .owl-item {
  height: 50vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .wrapper main .fila.fila_banner .owl-banner .owl-stage-outer .owl-stage .owl-item img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  height: 100%;
}
.home .wrapper main .fila.fila_banner .owl-banner .owl-nav {
  display: none;
}
.home .wrapper main .fila.fila_banner .owl-banner .owl-dots {
  display: none;
}
.home .wrapper main .fila.fila_banner > img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  height: auto;
}
.home .wrapper main .fila.fila_banner p {
  position: absolute;
  z-index: 4;
  width: 100%;
  height: 100%;
  padding-top: 110px;
  text-transform: uppercase;
  color: white;
  font-size: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .wrapper main .fila.fila_banner p span {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  position: absolute;
}
.home .wrapper main .fila.fila_banner .name {
  fill: var(--blanco);
  position: absolute;
  z-index: 4;
  width: 20vh;
  height: 20vh;
  left: calc(50% - 10vh);
  top: calc(50% - 10vh);
}
.home .wrapper main .fila.fila_banner .lines {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  top: 0px;
  left: -40px;
}
.home .wrapper main .fila.fila_servicios {
  background-color: var(--fondo);
}
.home .wrapper main .fila.fila_servicios .centrado {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.home .wrapper main .fila.fila_servicios .centrado h2 {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--morado);
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .fila.fila_servicios .centrado h2 {
    text-align: center;
  }
}
.home .wrapper main .fila.fila_servicios .centrado h3 {
  font-size: 48px;
  font-weight: 500;
  padding-top: 20px;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .fila.fila_servicios .centrado h3 {
    text-align: center;
    font-size: 40px;
    line-height: 1em;
  }
}
.home .wrapper main .fila.fila_servicios .centrado > p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-align: center;
  padding-top: 25px;
  color: var(--gris);
}
.home .wrapper main .fila.fila_servicios .centrado > p span {
  display: block;
}
.home .wrapper main .fila.fila_servicios .centrado .array_servicios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 10%;
     -moz-column-gap: 10%;
          column-gap: 10%;
  padding-top: 50px;
  width: 100%;
  padding-bottom: 30px;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .fila.fila_servicios .centrado .array_servicios {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    gap: 40px;
  }
}
.home .wrapper main .fila.fila_servicios .centrado .array_servicios .item_servicios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 5px 5px 50px rgba(0, 0, 0, 0);
          box-shadow: 5px 5px 50px rgba(0, 0, 0, 0);
  width: 100%;
  max-width: 320px;
  border-radius: 10px;
  padding: 20px 10px;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .fila.fila_servicios .centrado .array_servicios .item_servicios {
    max-width: 100%;
  }
}
.home .wrapper main .fila.fila_servicios .centrado .array_servicios .item_servicios:hover {
  background-color: var(--blanco);
  -webkit-box-shadow: 5px 5px 50px rgba(0, 0, 0, 0.25);
          box-shadow: 5px 5px 50px rgba(0, 0, 0, 0.25);
}
.home .wrapper main .fila.fila_servicios .centrado .array_servicios .item_servicios h4 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  font-size: 20px;
  padding-top: 20px;
  font-weight: 400;
}
.home .wrapper main .fila.fila_servicios .centrado .array_servicios .item_servicios h4 a {
  text-decoration: none;
  color: var(--oscuro);
  cursor: pointer;
}
.home .wrapper main .fila.fila_servicios .centrado .array_servicios .item_servicios img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 100px;
  height: 100px;
  cursor: pointer;
}
.home .wrapper main .fila.fila_servicios .centrado .array_servicios .item_servicios p {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  text-align: center;
  color: var(--gris);
  padding-top: 20px;
  letter-spacing: 0.03em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.home .wrapper main .fila.fila_servicios .centrado .array_servicios .item_servicios p a {
  color: var(--oscuro);
  text-decoration: none;
  cursor: pointer;
}
.home .wrapper main .fila.fila_servicios .centrado .array_servicios .item_servicios p .span {
  display: block;
}
.home .wrapper main .fila.fila_tecnologia {
  background-color: var(--cian);
  position: relative;
}
.home .wrapper main .fila.fila_tecnologia .uno {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .wrapper main .fila.fila_tecnologia .dos {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .wrapper main .fila.fila_tecnologia .centrado {
  padding-top: 150px;
  padding-bottom: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .fila.fila_tecnologia .centrado {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.home .wrapper main .fila.fila_tecnologia .centrado .otrolado {
  width: 500px;
  height: 390px;
  position: relative;
  /* Define la animación */
  /* Aplica la animación a las clases específicas */
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .fila.fila_tecnologia .centrado .otrolado {
    width: 100%;
  }
}
.home .wrapper main .fila.fila_tecnologia .centrado .otrolado .base {
  width: 160%;
  height: 160%;
  position: absolute;
  top: -30%;
  left: -30%;
}
.home .wrapper main .fila.fila_tecnologia .centrado .otrolado .img_tablet {
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 2;
}
.home .wrapper main .fila.fila_tecnologia .centrado .otrolado .img_dektop {
  position: absolute;
  top: 25px;
  left: 0px;
}
.home .wrapper main .fila.fila_tecnologia .centrado .otrolado .img_movil {
  position: absolute;
  top: 0px;
  right: 0px;
}
@-webkit-keyframes oscilar {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(2px, 5px);
            transform: translate(2px, 5px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes oscilar {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(2px, 5px);
            transform: translate(2px, 5px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes oscilar2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(2px, -5px);
            transform: translate(2px, -5px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes oscilar2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(2px, -5px);
            transform: translate(2px, -5px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes oscilar3 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(-5px, 1px);
            transform: translate(-5px, 1px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes oscilar3 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(-5px, 1px);
            transform: translate(-5px, 1px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.home .wrapper main .fila.fila_tecnologia .centrado .otrolado .img_dektop {
  -webkit-animation: oscilar 4.2s infinite;
          animation: oscilar 4.2s infinite; /* 2s de duración, bucle infinito */
}
.home .wrapper main .fila.fila_tecnologia .centrado .otrolado .img_movil {
  -webkit-animation: oscilar2 4.7s infinite;
          animation: oscilar2 4.7s infinite; /* 2s de duración, bucle infinito */
}
.home .wrapper main .fila.fila_tecnologia .centrado .otrolado .img_tablet {
  -webkit-animation: oscilar3 5s infinite;
          animation: oscilar3 5s infinite; /* 2s de duración, bucle infinito */
}
.home .wrapper main .fila.fila_tecnologia .centrado .lado {
  width: 100%;
  max-width: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 2;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .fila.fila_tecnologia .centrado .lado {
    max-width: 100%;
  }
}
.home .wrapper main .fila.fila_tecnologia .centrado h2 {
  font-size: 48px;
  font-weight: 500;
}
.home .wrapper main .fila.fila_tecnologia .centrado h2 span {
  display: block;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .fila.fila_tecnologia .centrado h2 {
    text-align: center;
    font-size: 40px;
    line-height: 1em;
  }
}
.home .wrapper main .fila.fila_tecnologia .centrado p {
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-align: left;
  padding-top: 25px;
  color: var(--oscuro);
}
.home .wrapper main .fila.fila_tecnologia .centrado p span {
  display: block;
}
.home .wrapper main .fila.fila_tecnologia .centrado ul {
  padding-top: 25px;
}
.home .wrapper main .fila.fila_tecnologia .centrado ul li {
  list-style: none;
  font-size: 15px;
  color: var(--oscuro);
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
.home .wrapper main .fila.fila_tecnologia .centrado ul li svg {
  width: 15px;
}
.home .wrapper main .fila.fila_tecnologia .centrado ul li svg circle {
  fill: var(--morado);
}
.home .wrapper main .fila.fila_tecnologia .centrado ul li svg path {
  fill: var(--blanco);
}
.home .wrapper main .fila.fila_clientes {
  background-color: var(--blanco);
}
.home .wrapper main .fila.fila_clientes .centrado {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 60px;
}
.home .wrapper main .fila.fila_clientes .centrado h2 {
  font-size: 48px;
  font-weight: 500;
  padding-top: 25px;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .fila.fila_clientes .centrado h2 {
    text-align: center;
    font-size: 40px;
    line-height: 1em;
  }
}
.home .wrapper main .fila.fila_clientes .centrado p {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.03em;
  font-weight: 400;
  text-align: center;
  padding-top: 25px;
  color: var(--gris);
}
.home .wrapper main .fila.fila_clientes .centrado p span {
  display: block;
}
.home .wrapper main .fila.fila_clientes .centrado .array_clientes {
  width: 100%;
  padding-bottom: 75px;
  padding-top: 25px;
  position: relative;
  z-index: 2;
}
.home .wrapper main .fila.fila_clientes .centrado .array_clientes .owl-stage-outer {
  overflow: hidden;
}
.home .wrapper main .fila.fila_clientes .centrado .array_clientes .owl-stage-outer .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.home .wrapper main .fila.fila_clientes .centrado .array_clientes .owl-stage-outer .owl-stage .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .wrapper main .fila.fila_clientes .centrado .array_clientes .owl-nav {
  display: none;
}
.home .wrapper main .fila.fila_clientes .centrado .array_clientes .owl-dots {
  display: none;
}
.home .wrapper main .fila.fila_clientes .centrado .array_clientes .item_clientes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.home .wrapper main .fila.fila_clientes .centrado .array_clientes .item_clientes img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.home .wrapper main .fila.fila_clientes .centrado .array_clientes .item_clientes img:hover {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.home .wrapper main .fila.fila_noticias {
  background-color: var(--fondo);
}
.home .wrapper main .fila.fila_noticias .centrado {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
  z-index: 3;
}
.home .wrapper main .fila.fila_noticias .centrado h2 {
  font-size: 48px;
  font-weight: 500;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .fila.fila_noticias .centrado h2 {
    text-align: center;
    font-size: 40px;
    line-height: 1em;
  }
}
.home .wrapper main .fila.fila_noticias .centrado > p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-align: center;
  padding-top: 25px;
  color: var(--gris);
}
.home .wrapper main .fila.fila_noticias .centrado > p span {
  display: block;
}
.home .wrapper main .fila.fila_noticias .centrado .array_posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 50px;
  width: 100%;
  max-width: 930px;
  margin: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .fila.fila_noticias .centrado .array_posts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
.home .wrapper main .fila.fila_noticias .centrado .array_posts .item_post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 280px;
  overflow: hidden;
  border-radius: 10px;
  padding-bottom: 10px;
  background-color: var(--blanco);
  -webkit-box-shadow: 5px 5px 50px rgba(0, 0, 0, 0.25);
          box-shadow: 5px 5px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .fila.fila_noticias .centrado .array_posts .item_post {
    max-width: 100%;
  }
}
.home .wrapper main .fila.fila_noticias .centrado .array_posts .item_post h4 {
  position: absolute;
  font-weight: 400;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: var(--blanco);
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.home .wrapper main .fila.fila_noticias .centrado .array_posts .item_post h3 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  font-size: 16px;
  font-weight: 500;
}
.home .wrapper main .fila.fila_noticias .centrado .array_posts .item_post h3 a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: var(--oscuro);
}
.home .wrapper main .fila.fila_noticias .centrado .array_posts .item_post h3 a:hover {
  color: var(--morado);
}
.home .wrapper main .fila.fila_noticias .centrado .array_posts .item_post > a {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.home .wrapper main .fila.fila_noticias .centrado .array_posts .item_post > a img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  max-height: 180px;
}
.home .wrapper main .fila.fila_noticias .centrado .array_posts .item_post p {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  padding: 10px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--gris);
}
.home .wrapper main .fila.fila_noticias .centrado .array_posts .item_post:hover h4 {
  opacity: 1;
}
.home .wrapper main .fila.fila_noticias .centrado .array_posts .item_post:hover > a img {
  width: 110%;
}

/*

	VARIABLES
	--color_fondo_footer

*/
.blog {
  background-color: var(--fondo);
}
.blog main {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.blog main .centrado {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
.blog main .centrado .panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  max-width: var(--ancho_maximo);
  margin: auto;
  padding: 75px 0px;
  padding-bottom: 350px;
}
@media only screen and (max-width: 550px) {
  .blog main .centrado .panel {
    padding-top: 5vh;
    padding-bottom: 5vh;
  }
}
.blog main .centrado .panel > H2 {
  text-align: center;
  font-size: 16px;
  color: var(--morado);
  text-transform: uppercase;
  font-weight: 400;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.blog main .centrado .panel > H1 {
  text-align: center;
  font-size: 48px;
  color: var(--oscuro);
  font-weight: 500;
  padding-top: 20px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.blog main .centrado .panel > p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-align: center;
  padding-top: 25px;
  color: var(--gris);
  max-width: 700px;
  margin: auto;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.blog main .centrado .panel .array_posts {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 50px;
  width: 100%;
  margin: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media only screen and (max-width: 550px) {
  .blog main .centrado .panel .array_posts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
.blog main .centrado .panel .array_posts .item_post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 265px;
  overflow: hidden;
  border-radius: 10px;
  padding-bottom: 10px;
  background-color: var(--blanco);
  -webkit-box-shadow: 5px 5px 50px rgba(0, 0, 0, 0.25);
          box-shadow: 5px 5px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 550px) {
  .blog main .centrado .panel .array_posts .item_post {
    max-width: 100%;
  }
}
.blog main .centrado .panel .array_posts .item_post h4 {
  position: absolute;
  font-weight: 400;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: var(--blanco);
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.blog main .centrado .panel .array_posts .item_post h3 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  font-size: 16px;
  font-weight: 500;
}
.blog main .centrado .panel .array_posts .item_post h3 a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: var(--oscuro);
}
.blog main .centrado .panel .array_posts .item_post h3 a:hover {
  color: var(--morado);
}
.blog main .centrado .panel .array_posts .item_post > a {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.blog main .centrado .panel .array_posts .item_post > a img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  max-height: 180px;
}
.blog main .centrado .panel .array_posts .item_post p {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  padding: 10px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--gris);
}
.blog main .centrado .panel .array_posts .item_post:hover h4 {
  opacity: 1;
}
.blog main .centrado .panel .array_posts .item_post:hover > a img {
  width: 110%;
}

/*

	VARIABLES
	--color_fondo_footer

*/
.about main {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about main .centrado {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
.about main .centrado .panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  max-width: var(--ancho_maximo);
  margin: auto;
  padding: 40px 25px;
}
@media only screen and (max-width: 550px) {
  .about main .centrado .panel {
    padding: 0px;
  }
}
.about main .centrado .panel h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 60px;
  color: var(--azul_aliot);
  font-family: var(--gosha);
  line-height: 0.9em;
  font-weight: 300;
}
@media only screen and (max-width: 550px) {
  .about main .centrado .panel h1 {
    font-size: 50px;
  }
}
.about main .centrado .panel .next {
  padding: 20px;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.05);
}
.about main .centrado .panel .next h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: var(--gosha);
  font-size: 30px;
  font-weight: 400;
  line-height: 1em;
  color: var(--azul_aliot);
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.about main .centrado .panel .next h2 a {
  text-decoration: none;
  color: var(--azul_aliot);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.about main .centrado .panel .next:hover {
  background-color: var(--azul_aliot);
}
.about main .centrado .panel .next:hover a {
  color: white;
}
.about main .centrado .panel .puntos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 75px;
     -moz-column-gap: 75px;
          column-gap: 75px;
  gap: 75px;
  padding-top: 50px;
}
@media only screen and (max-width: 1024px) {
  .about main .centrado .panel .puntos {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (max-width: 550px) {
  .about main .centrado .panel .puntos {
    gap: 25px;
  }
}
.about main .centrado .panel .puntos .punto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  width: calc(33.3333333333% - 75px);
}
@media only screen and (max-width: 550px) {
  .about main .centrado .panel .puntos .punto {
    width: 100%;
  }
}
.about main .centrado .panel .puntos .punto .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
  color: var(--azul_aliot);
  text-transform: uppercase;
  height: 250px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border-radius: 20px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.05);
  position: relative;
}
.about main .centrado .panel .puntos .punto .card img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: 1;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0.25;
}
.about main .centrado .panel .puntos .punto .card h2 {
  position: absolute;
  font-family: var(--gosha);
  font-size: 30px;
  font-weight: 400;
  line-height: 1em;
  color: var(--azul_aliot);
  text-transform: uppercase;
  padding: 20px;
  z-index: 2;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.about main .centrado .panel .puntos .punto .card:hover img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
  opacity: 1;
}
.about main .centrado .panel .puntos .punto .card:hover h2 {
  background-color: rgba(0, 0, 0, 0.75);
}
.about main .centrado .panel .puntos .punto h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
  font-family: var(--familia);
  font-size: 24px;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: -0.05em;
  color: var(--oscuro);
}
.about main .centrado .panel .puntos .punto p {
  padding-bottom: 20px;
  font-family: var(--familia);
  font-size: 17px;
  line-height: 1.5em;
  color: var(--oscuro);
}
.about main .centrado .panel .puntos .punto p a {
  color: var(--naranja);
  font-weight: bold;
  text-decoration: none;
}
.about main .centrado .panel .puntos .punto p a:hover {
  text-decoration: underline;
}
.about main .centrado .panel .puntos .punto ul {
  padding-bottom: 20px;
  padding-left: 20px;
}
.about main .centrado .panel .puntos .punto ul li {
  font-family: var(--familia);
  font-size: 17px;
  color: var(--oscuro);
  position: relative;
  list-style: none;
}
.about main .centrado .panel .puntos .punto ul li::before {
  content: "-";
  position: absolute;
  left: -10px;
}

/*

	VARIABLES
	--color_fondo_footer

*/
.services main {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.services main .bloque_asesoria {
  padding-top: 75px;
  padding-bottom: 100px;
  background-color: var(--fondo);
}
.services main .bloque_asesoria .centrado {
  width: 100%;
  max-width: var(--ancho_maximo);
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  justify-items: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media only screen and (max-width: 1200px) {
  .services main .bloque_asesoria .centrado {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 550px) {
  .services main .bloque_asesoria .centrado {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.services main .bloque_asesoria .centrado .introduccion {
  text-align: center;
}
.services main .bloque_asesoria .centrado H1 {
  text-align: center;
  font-size: 16px;
  color: var(--morado);
  text-transform: uppercase;
  font-weight: 400;
}
.services main .bloque_asesoria .centrado H2 {
  text-align: center;
  font-size: 48px;
  color: var(--oscuro);
  font-weight: 500;
  padding-top: 20px;
}
.services main .bloque_asesoria .centrado p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-align: center;
  padding-top: 25px;
  color: var(--gris);
  max-width: 700px;
  margin: auto;
}
.services main .bloque_asesoria .centrado > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 30px;
  margin-top: 50px;
}
@media only screen and (max-width: 550px) {
  .services main .bloque_asesoria .centrado > ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0px;
  }
}
.services main .bloque_asesoria .centrado > ul li {
  width: 25%;
  list-style: none;
}
@media only screen and (max-width: 550px) {
  .services main .bloque_asesoria .centrado > ul li {
    width: 100%;
  }
}
.services main .bloque_asesoria .centrado > ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 20px;
  border-top: 1px solid var(--morado);
  text-decoration: none;
  font-size: 24px;
  color: var(--oscuro);
}
.services main .bloque_asesoria .centrado > ul li a:hover, .services main .bloque_asesoria .centrado > ul li a.visible {
  color: var(--morado);
}
.services main .bloque_asesoria .centrado .array_asesoria {
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 550px) {
  .services main .bloque_asesoria .centrado .array_asesoria {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.services main .bloque_asesoria .centrado .array_asesoria .item_asesoria {
  position: relative;
  background-color: white;
  width: 100%;
  margin-bottom: 50px;
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 550px) {
  .services main .bloque_asesoria .centrado .array_asesoria .item_asesoria {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.services main .bloque_asesoria .centrado .array_asesoria .item_asesoria.visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.services main .bloque_asesoria .centrado .array_asesoria .item_asesoria .contenido {
  padding: 40px;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 550px) {
  .services main .bloque_asesoria .centrado .array_asesoria .item_asesoria .contenido {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.services main .bloque_asesoria .centrado .array_asesoria .item_asesoria .contenido svg {
  width: 25px;
  margin-top: -3px;
}
.services main .bloque_asesoria .centrado .array_asesoria .item_asesoria .contenido svg circle {
  fill: transparent;
}
.services main .bloque_asesoria .centrado .array_asesoria .item_asesoria .contenido svg path {
  fill: var(--morado);
}
.services main .bloque_asesoria .centrado .array_asesoria .item_asesoria .contenido img {
  width: 84px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-right: -20px;
  margin-bottom: -20px;
}
.services main .bloque_asesoria .centrado .array_asesoria .item_asesoria .contenido h3 {
  display: none;
}
.services main .bloque_asesoria .centrado .array_asesoria .item_asesoria .contenido ul {
  list-style: none;
}
.services main .bloque_asesoria .centrado .array_asesoria .item_asesoria .contenido ul li {
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.services main .bloque_asesoria .centrado .array_asesoria .item_asesoria .contenido ul li:last-child {
  padding-bottom: 0px;
}
.services main .bloque_asesoria .centrado .array_asesoria .item_asesoria .contenido ul li span {
  width: calc(100% - 30px);
}
.services main .bloque_asesoria .centrado .array_asesoria .item_asesoria .destino {
  width: 50%;
  background-color: var(--morado);
  color: white;
  top: 0px;
  right: 0px;
  bottom: 0px;
  text-align: center;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 550px) {
  .services main .bloque_asesoria .centrado .array_asesoria .item_asesoria .destino {
    width: 100%;
  }
}
.services main .bloque_asesoria .centrado .array_asesoria .item_asesoria .destino:has(p) {
  padding: 40px;
}
.services main .bloque_asesoria .centrado .array_asesoria .item_asesoria .destino img:not(.ico_alt, .ico) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  height: 100%;
  opacity: 0.1;
}
.services main .bloque_asesoria .centrado .array_asesoria .item_asesoria .destino > img.ico_alt {
  height: 240px;
  margin: auto;
  position: absolute;
  top: calc(50% - 120px);
  left: calc(50% - 120px);
}
.services main .bloque_asesoria .centrado .array_asesoria .item_asesoria .destino > img.ico {
  height: 240px;
  margin: auto;
}
.services main .bloque_asesoria .centrado .array_asesoria .item_asesoria .destino h4 {
  font-size: 20px;
  text-transform: uppercase;
  color: white;
}
.services main .bloque_asesoria .centrado .array_asesoria .item_asesoria .destino p {
  font-size: 16px;
  line-height: 1.5em;
  color: white;
}
.services main .bloque_asesoria .centrado .array_asesoria .item_asesoria .destino p:last-child {
  padding-bottom: 0px;
}
.services main .bloque_consultoria {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--cian);
  position: relative;
}
.services main .bloque_consultoria > img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.services main .bloque_consultoria .centrado {
  width: 100%;
  max-width: var(--ancho_maximo);
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  justify-items: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: 2;
  position: relative;
}
@media only screen and (max-width: 1200px) {
  .services main .bloque_consultoria .centrado {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 550px) {
  .services main .bloque_consultoria .centrado {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.services main .bloque_consultoria .centrado h2 {
  text-align: center;
  font-size: 48px;
  color: var(--oscuro);
  font-weight: 500;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  padding-top: 20px;
}
.services main .bloque_consultoria .centrado > p {
  text-align: center;
  font-size: 16px;
  color: var(--morado);
  text-transform: uppercase;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.services main .bloque_consultoria .centrado .destacado {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  background-color: var(--morado);
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  border-radius: 20px;
  padding: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 550px) {
  .services main .bloque_consultoria .centrado .destacado {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.services main .bloque_consultoria .centrado .destacado img {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  opacity: 0.2;
  -webkit-filter: invert(100%);
          filter: invert(100%);
}
.services main .bloque_consultoria .centrado .destacado div {
  width: 100%;
  max-width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 550px) {
  .services main .bloque_consultoria .centrado .destacado div {
    max-width: 100%;
  }
}
.services main .bloque_consultoria .centrado .destacado div p {
  font-size: 16px;
  padding-bottom: 20px;
}
.services main .bloque_consultoria .centrado .destacado div p:last-child {
  padding-bottom: 0px;
}
.services main .bloque_consultoria .centrado .destacado div:last-child {
  max-width: 40%;
}
@media only screen and (max-width: 550px) {
  .services main .bloque_consultoria .centrado .destacado div:last-child {
    max-width: 100%;
  }
}
.services main .bloque_consultoria .centrado .destacado div:last-child p {
  font-size: 24px;
  font-weight: 500;
}
.services main .bloque_consultoria .centrado .destacado div:last-child a {
  background-color: var(--oscuro);
  color: var(--blanco);
  border-radius: 10px;
  width: 100%;
  max-width: 140px;
  line-height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -ms-flex-item-align: end;
      align-self: flex-end;
  position: relative;
  z-index: 4;
}
.services main .bloque_consultoria .centrado .destacado div:last-child a:hover {
  background-color: var(--cian);
}
.services main .bloque_consultoria .centrado .columnas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 100px;
  margin-top: 50px;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media only screen and (max-width: 550px) {
  .services main .bloque_consultoria .centrado .columnas {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.services main .bloque_consultoria .centrado .columnas .columna {
  width: 100%;
  max-width: 40%;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
@media only screen and (max-width: 550px) {
  .services main .bloque_consultoria .centrado .columnas .columna {
    max-width: 100%;
  }
}
.services main .bloque_consultoria .centrado .columnas .columna h3 {
  font-weight: 500;
  font-size: 24px;
}
.services main .bloque_consultoria .centrado .columnas .columna ul, .services main .bloque_consultoria .centrado .columnas .columna ol {
  margin-top: 20px;
}
.services main .bloque_consultoria .centrado .columnas .columna ul li, .services main .bloque_consultoria .centrado .columnas .columna ol li {
  list-style: none;
  font-size: 16px;
  color: var(--oscuro);
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.services main .bloque_consultoria .centrado .columnas .columna ul li span, .services main .bloque_consultoria .centrado .columnas .columna ol li span {
  width: calc(100% - 30px);
}
.services main .bloque_consultoria .centrado .columnas .columna svg {
  width: 15px;
  margin-top: 2px;
}
.services main .bloque_consultoria .centrado .columnas .columna svg circle {
  fill: var(--morado);
}
.services main .bloque_consultoria .centrado .columnas .columna svg path {
  fill: var(--blanco);
}
.services main .bloque_gestion {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--fondo);
}
.services main .bloque_gestion .centrado {
  width: 100%;
  max-width: var(--ancho_maximo);
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  justify-items: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media only screen and (max-width: 1200px) {
  .services main .bloque_gestion .centrado {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 550px) {
  .services main .bloque_gestion .centrado {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.services main .bloque_gestion .centrado h2 {
  text-align: center;
  font-size: 48px;
  color: var(--oscuro);
  font-weight: 500;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  padding-top: 20px;
}
.services main .bloque_gestion .centrado > p {
  text-align: center;
  font-size: 16px;
  color: var(--morado);
  text-transform: uppercase;
  padding-top: 20px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.services main .bloque_gestion .centrado .array_gestion {
  margin-top: 25px;
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
  gap: 50px;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
@media only screen and (max-width: 550px) {
  .services main .bloque_gestion .centrado .array_gestion {
    -webkit-columns: 1;
       -moz-columns: 1;
            columns: 1;
  }
}
.services main .bloque_gestion .centrado .array_gestion .item_gestion {
  border-top: 1px solid var(--morado);
  border-bottom: 1px solid var(--morado);
  margin-top: -1px;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  height: auto;
}
.services main .bloque_gestion .centrado .array_gestion .item_gestion h3 {
  padding: 25px 5px;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  color: var(--oscuro);
  /*
  &:before{
  	position: absolute;
  	content: "-";
  	top: -5px;
  	right: 0px;
  	color: var(--cian);
  	font-size: 60px;
  	font-weight: 200;
  }
  &:after{
  	position: absolute;
  	content: "+";
  	top: -5px;
  	right: 0px;
  	color: var(--cian);
  	font-size: 60px;
  	font-weight: 200;
  	//transform: rotate(90deg);
  }
  */
}
.services main .bloque_gestion .centrado .array_gestion .item_gestion h3 svg {
  width: 20px;
  height: 20px;
}
.services main .bloque_gestion .centrado .array_gestion .item_gestion h3 svg .tumbado {
  transform-box: fill-box;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  fill: var(--cian);
}
.services main .bloque_gestion .centrado .array_gestion .item_gestion h3 svg .levantado {
  transform-box: fill-box;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  fill: var(--cian);
}
.services main .bloque_gestion .centrado .array_gestion .item_gestion h3:hover {
  color: var(--morado);
}
.services main .bloque_gestion .centrado .array_gestion .item_gestion h3.activo svg .tumbado {
  transform-box: fill-box;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}
.services main .bloque_gestion .centrado .array_gestion .item_gestion h3.activo svg .levantado {
  transform-box: fill-box;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.services main .bloque_gestion .centrado .array_gestion .item_gestion div {
  display: block;
  padding-left: 5px;
  padding-right: 5px;
  height: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}
.services main .bloque_gestion .centrado .array_gestion .item_gestion div.activo {
  display: block;
  height: auto;
  opacity: 1;
  padding-bottom: 25px;
}
.services main .bloque_gestion .centrado .array_gestion .item_gestion div p {
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0;
  padding-bottom: 10px;
}
.services main .bloque_gestion .centrado .array_gestion .item_gestion div p:last-child {
  padding-bottom: 0px;
}
.services main .bloque_gestion .centrado .array_gestion .item_gestion div ul li, .services main .bloque_gestion .centrado .array_gestion .item_gestion div ol li {
  font-size: 16px;
  line-height: 1.5em;
  list-style: none;
  position: relative;
  padding-left: 25px;
}
.services main .bloque_gestion .centrado .array_gestion .item_gestion div ul li:before, .services main .bloque_gestion .centrado .array_gestion .item_gestion div ol li:before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: "";
  background-image: url("../img/check.svg");
  background-size: 15px 15px;
  height: 15px;
  width: 15px;
  position: absolute;
  top: 5px;
  left: 0px;
}
.services main .centrado {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}

/*

	VARIABLES
	--color_fondo_footer

*/
.legal main {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--fondo);
}
.legal main .centrado {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
.legal main .centrado .panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  max-width: var(--ancho_maximo);
  margin: auto;
  padding: 40px 25px;
}
@media only screen and (max-width: 550px) {
  .legal main .centrado .panel {
    padding: 0px;
  }
}
.legal main .centrado .panel h1 {
  text-align: center;
  font-size: 48px;
  color: var(--oscuro);
  font-weight: 500;
  padding-top: 20px;
  padding-bottom: 25px;
}
.legal main .centrado .panel h2 {
  line-height: 1.5em;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--gris);
  padding-top: 25px;
}
.legal main .centrado .panel h2 span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.legal main .centrado .panel h2 span.number {
  border-radius: 100px;
  padding: 15px;
  background-color: var(--oscuro);
  color: white;
  border-radius: 100px;
  margin-bottom: 20px;
  font-size: 23px;
  font-family: var(--gosha);
  line-height: 0.8em;
  letter-spacing: -0.05em;
  width: 60px;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.legal main .centrado .panel p {
  line-height: 1.5em;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--gris);
  padding-top: 25px;
}
.legal main .centrado .panel ol, .legal main .centrado .panel ul {
  padding-bottom: 20px;
  padding-left: 20px;
  padding-top: 25px;
}
.legal main .centrado .panel ol li, .legal main .centrado .panel ul li {
  color: var(--gris);
  font-family: var(--familia);
  line-height: 1.5em;
  font-size: 17px;
}
.legal main .centrado .panel ol li strong, .legal main .centrado .panel ul li strong {
  font-weight: 400;
  color: var(--azul_aliot);
}
.legal main .centrado .panel ol li a, .legal main .centrado .panel ul li a {
  color: var(--azul_aliot);
}

/*

	VARIABLES
	--color_fondo_footer

*/
.contact main {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgb(255, 255, 255);
  background: linear-gradient(110deg, rgb(255, 255, 255) 0%, rgba(104, 225, 234, 0.4864320728) 95%, rgba(104, 225, 234, 0) 100%);
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 550px) {
  .contact main {
    padding-bottom: 5vh;
  }
}
.contact main .centrado {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  max-width: var(--ancho_maximo);
  margin: auto;
  position: relative;
  padding: 75px 25px;
}
@media only screen and (max-width: 550px) {
  .contact main .centrado {
    padding: 0px;
  }
}
.contact main .centrado .panel {
  width: 50%;
  max-width: 500px;
}
@media only screen and (max-width: 550px) {
  .contact main .centrado .panel {
    width: 100%;
    max-width: 100%;
    padding-top: 5vh;
    padding-bottom: 5vh;
  }
}
.contact main .centrado .panel h1 {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--morado);
}
.contact main .centrado .panel h2 {
  font-size: 48px;
  font-weight: 400;
  color: var(--oscuro);
  padding-top: 10px;
}
.contact main .centrado .panel p {
  line-height: 1.5em;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--gris);
  padding-top: 25px;
}
.contact main .centrado .wpcf7 {
  background-color: white;
  border-radius: 10px;
  -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
  width: 50%;
  max-width: 500px;
  position: absolute;
  top: 125px;
  right: 0px;
  padding: 20px;
}
@media only screen and (max-width: 550px) {
  .contact main .centrado .wpcf7 {
    position: relative;
    top: 0px;
    width: 100%;
    max-width: 100%;
  }
}

/*

	VARIABLES
	--color_fondo_footer

*/
.single main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  position: relative;
}
@media only screen and (max-width: 550px) {
  .single main {
    overflow: hidden;
  }
}
.single main > img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
}
@media only screen and (max-width: 550px) {
  .single main > img {
    position: absolute;
    top: 0px;
    left: -25%;
    width: 200%;
    height: 50vh;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
}
.single main .centrado {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  padding-bottom: 150px;
  width: 100%;
  max-width: var(--ancho_maximo);
  margin: auto;
}
@media only screen and (max-width: 550px) {
  .single main .centrado {
    padding-bottom: 5vh;
  }
}
.single main .centrado article {
  width: 100%;
  height: 100%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0px;
  padding-top: 125px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media only screen and (max-width: 550px) {
  .single main .centrado article {
    padding: 0px;
  }
}
.single main .centrado article .uno {
  padding: 25px 0px;
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: auto;
}
@media only screen and (max-width: 550px) {
  .single main .centrado article .uno {
    max-width: 100%;
    padding-bottom: 0px;
  }
}
@media only screen and (max-width: 550px) {
  .single main .centrado article .uno .glue {
    min-width: initial;
  }
}
.single main .centrado article .uno .glue h1 {
  font-size: 45px;
  font-weight: 500;
  color: var(--oscuro);
}
.single main .centrado article .uno .glue p {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--gris);
  padding-top: 10px;
}
.single main .centrado article .dos {
  padding: 25px 0px;
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: auto;
}
@media only screen and (max-width: 550px) {
  .single main .centrado article .dos {
    max-width: 100%;
    padding-top: 20px;
    padding-bottom: 0px;
  }
}
.single main .centrado article .dos .conjunto {
  width: 100%;
}
.single main .centrado article .dos .conjunto.fijo {
  position: sticky;
  top: 120px;
}
.single main .centrado article .dos .conjunto video + p {
  margin-bottom: 20px;
  color: var(--oscuro);
}
.single main .centrado article .dos .conjunto .youtube {
  padding-bottom: 20px;
}
.single main .centrado article .dos .conjunto .youtube iframe {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 4/3;
  background-color: var(--oscuro_siempre);
}
.single main .centrado article .dos .conjunto .youtube p {
  color: var(--oscuro);
}
.single main .centrado article .dos .conjunto .vimeo {
  padding-bottom: 20px;
}
.single main .centrado article .dos .conjunto .vimeo iframe {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 4/3;
  background-color: var(--oscuro_siempre);
}
.single main .centrado article .dos .conjunto .vimeo p {
  color: var(--oscuro);
}
.single main .centrado article .dos a {
  display: block;
}
.single main .centrado article .dos a + p {
  margin-bottom: 20px;
  line-height: 1.2em;
  color: var(--oscuro);
  padding-top: 5px;
}
.single main .centrado article .dos a + img {
  margin-top: 20px;
}
.single main .centrado article .dos a + a {
  margin-top: 20px;
}
.single main .centrado article .dos img {
  display: block;
  width: 100%;
}
@media only screen and (max-width: 550px) {
  .single main .centrado article .dos img {
    width: 100%;
  }
}
.single main .centrado article .dos img.empty {
  height: 320px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 5px;
}
.single main .centrado article .tres {
  padding: 40px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 75px;
  width: 100%;
  max-width: 750px;
  margin: auto;
}
@media only screen and (max-width: 550px) {
  .single main .centrado article .tres {
    max-width: 100%;
    padding-top: 20px;
    padding-bottom: 0vh;
  }
}
.single main .centrado article .tres .categoria {
  background-color: black;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 5px;
}
.single main .centrado article .tres .categoria a {
  color: white;
  text-decoration: none;
  padding: 4px 5px;
}
.single main .centrado article .tres .categoria.naranja a {
  background-color: var(--cat_naranja);
  color: var(--oscuro_siempre);
}
.single main .centrado article .tres .categoria.negro a {
  background-color: var(--cat_negro);
}
.single main .centrado article .tres .categoria.azul a {
  background-color: var(--cat_azul);
  color: var(--oscuro_siempre);
}
.single main .centrado article .tres .categoria.verde a {
  background-color: var(--cat_verde);
  color: var(--oscuro_siempre);
}
.single main .centrado article .tres .categoria.pistacho a {
  background-color: var(--cat_pistacho);
  color: var(--oscuro_siempre);
}
.single main .centrado article .tres .date {
  margin-bottom: 50px;
  color: var(--oscuro);
}
@media only screen and (max-width: 550px) {
  .single main .centrado article .tres .date {
    margin-bottom: 20px;
  }
}
.single main .centrado article .tres .lo_importante {
  display: block;
}
.single main .centrado article .tres .lo_importante ul li {
  position: relative;
  list-style: none;
  padding-left: 5px;
}
.single main .centrado article .tres .lo_importante ul li:before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: "";
  background-image: url("../img/check.svg");
  background-size: 15px 15px;
  height: 15px;
  width: 15px;
  position: absolute;
  top: 5px;
  left: -20px;
}
.single main .centrado article .tres pre {
  max-width: 100%;
  font-size: 30px;
  font-family: var(--gosha);
  text-wrap: wrap;
  white-space: pre-wrap;
  margin-bottom: 20px;
  color: var(--oscuro);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
}
.single main .centrado article .tres h2 {
  font-size: 24px;
  color: var(--oscuro);
  font-family: var(--familia);
  font-weight: 400;
  line-height: 1.5em;
  padding-top: 40px;
  padding-bottom: 40px;
}
.single main .centrado article .tres h2:has(strong) {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--morado);
}
.single main .centrado article .tres h3 {
  font-size: 20px;
  font-family: var(--gosha);
  color: var(--oscuro);
  font-weight: 400;
  line-height: 1.5em;
  padding-bottom: 10px;
}
.single main .centrado article .tres h4 {
  font-size: 15px;
  font-family: var(--gosha);
  color: var(--oscuro);
  font-weight: 400;
  line-height: 1.5em;
  padding-bottom: 10px;
}
.single main .centrado article .tres h5 {
  font-family: var(--familia);
  font-size: 12px;
  color: var(--oscuro);
  font-weight: 400;
  line-height: 1.5em;
  padding-bottom: 10px;
}
.single main .centrado article .tres h6 {
  font-family: var(--familia);
  font-size: 10px;
  color: var(--oscuro);
  font-weight: 400;
  line-height: 1.5em;
  padding-bottom: 10px;
}
.single main .centrado article .tres ul, .single main .centrado article .tres ol {
  padding-left: 20px;
}
.single main .centrado article .tres ul li, .single main .centrado article .tres ol li {
  padding-bottom: 10px;
  font-size: 16px;
  line-height: 1.5em;
  color: var(--oscuro);
  font-family: var(--familia);
}
.single main .centrado article .tres pre {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 18px;
  line-height: 1.5em;
  padding: 40px 70px 60px;
  position: relative;
  background-color: var(--fondo);
  border-radius: 10px;
}
.single main .centrado article .tres pre strong {
  position: absolute;
  color: var(--morado);
  font-weight: 400;
  bottom: 20px;
  right: 20px;
  font-size: 16px;
}
.single main .centrado article .tres pre:before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: "";
  background-image: url("../img/asterisco.svg");
  background-size: 30px 30px;
  background-repeat: no-repeat;
  height: 30px;
  width: 30px;
  position: absolute;
  top: 20px;
  left: 20px;
}
.single main .centrado article .tres p {
  padding-bottom: 10px;
  font-size: 16px;
  line-height: 1.5em;
  color: var(--oscuro);
}
.single main .centrado article .tres p strong {
  color: var(--morado);
}
.single main .centrado article .tres p a {
  color: var(--naranja);
  font-weight: 500;
}
.single main .centrado article .tres p:has(img.alignleft) {
  max-width: 50%;
  float: left;
  padding-right: 20px;
}
@media only screen and (max-width: 550px) {
  .single main .centrado article .tres p:has(img.alignleft) {
    max-width: 100%;
    padding-right: initial;
  }
}
.single main .centrado article .tres p:has(img.alignright) {
  max-width: 50%;
  float: right;
  padding-left: 20px;
}
@media only screen and (max-width: 550px) {
  .single main .centrado article .tres p:has(img.alignright) {
    max-width: 100%;
    padding-left: initial;
  }
}
.single main .centrado article .tres p:has(img.aligncenter) {
  max-width: 100%;
  text-align: center;
}
.single main .centrado article .tres p img {
  max-width: 100%;
  height: initial;
}
.single main .centrado article .tres p img.alignleft {
  max-width: 100%;
}
.single main .centrado article .tres p img.aligncenter {
  max-width: 50%;
  margin: auto;
}
@media only screen and (max-width: 550px) {
  .single main .centrado article .tres p img.aligncenter {
    max-width: 100%;
  }
}
.single main .centrado article .tres p img.alignright {
  max-width: 100%;
}
.single main .centrado article .tres a.back {
  padding: 4px 10px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--oscuro);
  border: 1px solid var(--oscuro);
  background-color: var(--blanco);
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.single main .centrado article .tres a.back:hover {
  border: 1px solid var(--oscuro);
  background-color: var(--oscuro);
  color: var(--crema);
}
.single main .centrado article .cuatro {
  background-color: var(--blanco);
  padding: 40px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 75px;
  width: 100%;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  gap: 20px;
}
@media only screen and (max-width: 550px) {
  .single main .centrado article .cuatro {
    max-width: 100%;
    padding-top: 20px;
  }
}
.single main .centrado article .cuatro .fila {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  gap: 20px;
}
.single main .centrado article .cuatro .fila:first-child {
  -webkit-column-gap: 0px;
     -moz-column-gap: 0px;
          column-gap: 0px;
  gap: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 30px;
}
@media only screen and (max-width: 550px) {
  .single main .centrado article .cuatro .fila:first-child {
    margin-bottom: 0px;
  }
}
.single main .centrado article .cuatro .fila .categoria {
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 5px;
}
.single main .centrado article .cuatro .fila .categoria a {
  color: white;
  text-decoration: none;
  padding: 4px 5px;
  display: inline-block;
}
.single main .centrado article .cuatro .fila .categoria.naranja a {
  background-color: var(--cat_naranja);
  color: var(--oscuro_siempre);
}
.single main .centrado article .cuatro .fila .categoria.negro a {
  background-color: var(--cat_negro);
}
.single main .centrado article .cuatro .fila .categoria.azul a {
  background-color: var(--cat_azul);
  color: var(--oscuro_siempre);
}
.single main .centrado article .cuatro .fila .categoria.verde a {
  background-color: var(--cat_verde);
  color: var(--oscuro_siempre);
}
.single main .centrado article .cuatro .fila .categoria.pistacho a {
  background-color: var(--cat_pistacho);
  color: var(--oscuro_siempre);
}
.single main .centrado article .cuatro .fila .date {
  color: var(--oscuro);
}
.single main .centrado article .cuatro .fila.derecha {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 550px) {
  .single main .centrado article .cuatro .fila.derecha {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.single main .centrado article .cuatro .fila.izquierda {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media only screen and (max-width: 550px) {
  .single main .centrado article .cuatro .fila.izquierda {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 550px) {
  .single main .centrado article .cuatro .fila {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.single main .centrado article .cuatro .fila .medio {
  width: 50%;
}
@media only screen and (max-width: 550px) {
  .single main .centrado article .cuatro .fila .medio {
    width: 100%;
  }
}
.single main .centrado article .cuatro .fila .medio:first-child .lo_importante {
  display: block;
}
.single main .centrado article .cuatro .fila .medio:first-child pre {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  font-size: 30px;
  font-family: var(--gosha);
  text-wrap: wrap;
  margin-bottom: 20px;
  color: var(--oscuro);
  white-space: pre-wrap;
  padding: 0;
  margin: 0;
}
.single main .centrado article .cuatro .fila .medio:first-child h2 {
  font-size: 20px;
  color: var(--oscuro);
  font-family: var(--familia);
  font-weight: 400;
  line-height: 1.5em;
  padding-bottom: 10px;
}
.single main .centrado article .cuatro .fila .medio:first-child h3 {
  font-size: 20px;
  font-family: var(--gosha);
  color: var(--oscuro);
  font-weight: 400;
  line-height: 1.5em;
  padding-bottom: 10px;
}
.single main .centrado article .cuatro .fila .medio:first-child h4 {
  font-size: 15px;
  font-family: var(--gosha);
  color: var(--oscuro);
  font-weight: 400;
  line-height: 1.5em;
  padding-bottom: 10px;
}
.single main .centrado article .cuatro .fila .medio:first-child h5 {
  font-family: var(--familia);
  font-size: 12px;
  color: var(--oscuro);
  font-weight: 400;
  line-height: 1.5em;
  padding-bottom: 10px;
}
.single main .centrado article .cuatro .fila .medio:first-child h6 {
  font-family: var(--familia);
  font-size: 10px;
  color: var(--oscuro);
  font-weight: 400;
  line-height: 1.5em;
  padding-bottom: 10px;
}
.single main .centrado article .cuatro .fila .medio:first-child a {
  color: var(--naranja);
  font-weight: 500;
}
.single main .centrado article .cuatro .fila .medio:first-child p {
  padding-bottom: 10px;
  font-size: 15px;
  line-height: 1.5em;
  color: var(--oscuro);
}
.single main .centrado article .cuatro .fila .medio:first-child p:has(img.alignleft) {
  max-width: 50%;
  float: left;
  padding-right: 20px;
}
@media only screen and (max-width: 550px) {
  .single main .centrado article .cuatro .fila .medio:first-child p:has(img.alignleft) {
    max-width: 100%;
    padding-right: initial;
  }
}
.single main .centrado article .cuatro .fila .medio:first-child p:has(img.alignright) {
  max-width: 50%;
  float: right;
  padding-left: 20px;
}
@media only screen and (max-width: 550px) {
  .single main .centrado article .cuatro .fila .medio:first-child p:has(img.alignright) {
    max-width: 100%;
    padding-left: initial;
  }
}
.single main .centrado article .cuatro .fila .medio:first-child p:has(img.aligncenter) {
  max-width: 100%;
  text-align: center;
}
.single main .centrado article .cuatro .fila .medio:first-child p img {
  max-width: 100%;
  height: initial;
}
.single main .centrado article .cuatro .fila .medio:first-child p img.alignleft {
  max-width: 100%;
}
.single main .centrado article .cuatro .fila .medio:first-child p img.aligncenter {
  max-width: 50%;
  margin: auto;
}
@media only screen and (max-width: 550px) {
  .single main .centrado article .cuatro .fila .medio:first-child p img.aligncenter {
    max-width: 100%;
  }
}
.single main .centrado article .cuatro .fila .medio:first-child p img.alignright {
  max-width: 100%;
}
.single main .centrado article .cuatro .fila .medio:last-child:has(.conjunto) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single main .centrado article .cuatro .fila .medio:last-child .conjunto {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.single main .centrado article .cuatro .fila .medio:last-child .conjunto.fijo {
  position: sticky;
  top: 120px;
}
.single main .centrado article .cuatro .fila .medio:last-child .conjunto video + p {
  margin-bottom: 20px;
  color: var(--oscuro);
}
.single main .centrado article .cuatro .fila .medio:last-child .conjunto .youtube {
  padding-bottom: 20px;
}
.single main .centrado article .cuatro .fila .medio:last-child .conjunto .youtube iframe {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 4/3;
  background-color: var(--oscuro_siempre);
}
.single main .centrado article .cuatro .fila .medio:last-child .conjunto .youtube p {
  color: var(--oscuro);
}
.single main .centrado article .cuatro .fila .medio:last-child .conjunto .vimeo {
  padding-bottom: 20px;
}
.single main .centrado article .cuatro .fila .medio:last-child .conjunto .vimeo iframe {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 4/3;
  background-color: var(--oscuro_siempre);
}
.single main .centrado article .cuatro .fila .medio:last-child .conjunto .vimeo p {
  color: var(--oscuro);
}
.single main .centrado article .cuatro .fila .medio:last-child a {
  display: block;
  margin: auto;
}
.single main .centrado article .cuatro .fila .medio:last-child a + p {
  margin-bottom: 20px;
  line-height: 1.2em;
  color: var(--oscuro);
  padding-top: 5px;
}
.single main .centrado article .cuatro .fila .medio:last-child a + img {
  margin-top: 20px;
}
.single main .centrado article .cuatro .fila .medio:last-child a a + a {
  margin-top: 20px;
}
.single main .centrado article .cuatro .fila .medio:last-child img {
  display: block;
  max-width: 100%;
}
@media only screen and (max-width: 550px) {
  .single main .centrado article .cuatro .fila .medio:last-child img {
    width: 100%;
  }
}
.single main .centrado article .cuatro .fila .medio:last-child img.empty {
  height: 320px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 5px;
}
.single main .centrado article .cuatro .fila .medio:only-child {
  width: 100%;
}

/*

	VARIABLES
	--color_fondo_footer
	--color_borde_footer
	--color_borde_titular
	--color_titular_h2
	--color_enlace_pie
	--color_buller_pie

	--ancho_centrado
	--grosor_uno
	--hueco_triple
	--hueco

	--veinte
	--dieciseis
	--light




*/
.search .wrapper main, .category .wrapper main, .blog .wrapper main {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.search .wrapper main .centrado, .category .wrapper main .centrado, .blog .wrapper main .centrado {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.search .wrapper main .centrado .acciones, .category .wrapper main .centrado .acciones, .blog .wrapper main .centrado .acciones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200px;
  min-width: 200px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
}
@media only screen and (max-width: 550px) {
  .search .wrapper main .centrado .acciones, .category .wrapper main .centrado .acciones, .blog .wrapper main .centrado .acciones {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    z-index: 2;
  }
}
.search .wrapper main .centrado .acciones .panel, .category .wrapper main .centrado .acciones .panel, .blog .wrapper main .centrado .acciones .panel {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 200px;
}
@media only screen and (max-width: 550px) {
  .search .wrapper main .centrado .acciones .panel, .category .wrapper main .centrado .acciones .panel, .blog .wrapper main .centrado .acciones .panel {
    position: relative;
    width: 100%;
    max-width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: var(--crema);
    top: 0px;
  }
}
.search .wrapper main .centrado .acciones .panel h2, .category .wrapper main .centrado .acciones .panel h2, .blog .wrapper main .centrado .acciones .panel h2 {
  cursor: pointer;
  font-family: var(--gosha);
  font-size: 23px;
  line-height: 0.8em;
  letter-spacing: -0.05em;
  color: var(--oscuro);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 10px;
}
@media only screen and (max-width: 550px) {
  .search .wrapper main .centrado .acciones .panel h2, .category .wrapper main .centrado .acciones .panel h2, .blog .wrapper main .centrado .acciones .panel h2 {
    background-color: var(--naranja);
    padding: 10px;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
  }
}
.search .wrapper main .centrado .acciones .panel h2 svg, .category .wrapper main .centrado .acciones .panel h2 svg, .blog .wrapper main .centrado .acciones .panel h2 svg {
  width: 20px;
  margin-right: 10px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.search .wrapper main .centrado .acciones .panel h2 svg .st0, .category .wrapper main .centrado .acciones .panel h2 svg .st0, .blog .wrapper main .centrado .acciones .panel h2 svg .st0 {
  fill: var(--oscuro);
}
.search .wrapper main .centrado .acciones .panel h2 svg.giro, .category .wrapper main .centrado .acciones .panel h2 svg.giro, .blog .wrapper main .centrado .acciones .panel h2 svg.giro {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.search .wrapper main .centrado .acciones .panel p, .category .wrapper main .centrado .acciones .panel p, .blog .wrapper main .centrado .acciones .panel p {
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding-bottom: 10px;
  padding-top: 10px;
}
@media only screen and (max-width: 550px) {
  .search .wrapper main .centrado .acciones .panel p, .category .wrapper main .centrado .acciones .panel p, .blog .wrapper main .centrado .acciones .panel p {
    display: none;
  }
}
.search .wrapper main .centrado .acciones .panel #buscar, .category .wrapper main .centrado .acciones .panel #buscar, .blog .wrapper main .centrado .acciones .panel #buscar {
  width: 20px;
  cursor: pointer;
  fill: var(--oscuro);
}
@media only screen and (max-width: 550px) {
  .search .wrapper main .centrado .acciones .panel #buscar, .category .wrapper main .centrado .acciones .panel #buscar, .blog .wrapper main .centrado .acciones .panel #buscar {
    display: none;
  }
}
.search .wrapper main .centrado .acciones .panel ul, .category .wrapper main .centrado .acciones .panel ul, .blog .wrapper main .centrado .acciones .panel ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  list-style: none;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 550px) {
  .search .wrapper main .centrado .acciones .panel ul, .category .wrapper main .centrado .acciones .panel ul, .blog .wrapper main .centrado .acciones .panel ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 20px;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
.search .wrapper main .centrado .acciones .panel ul li, .category .wrapper main .centrado .acciones .panel ul li, .blog .wrapper main .centrado .acciones .panel ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 5px;
  width: 100%;
}
.search .wrapper main .centrado .acciones .panel ul li a, .category .wrapper main .centrado .acciones .panel ul li a, .blog .wrapper main .centrado .acciones .panel ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 4px 10px;
  background-color: var(--oscuro_siempre);
  text-transform: uppercase;
  color: var(--blanco_siempre);
  font-size: 13px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
}
.search .wrapper main .centrado .acciones .panel ul li.naranja a, .category .wrapper main .centrado .acciones .panel ul li.naranja a, .blog .wrapper main .centrado .acciones .panel ul li.naranja a {
  background-color: var(--cat_naranja);
  color: var(--oscuro_siempre);
}
.search .wrapper main .centrado .acciones .panel ul li.negro a, .category .wrapper main .centrado .acciones .panel ul li.negro a, .blog .wrapper main .centrado .acciones .panel ul li.negro a {
  background-color: var(--cat_negro);
}
.search .wrapper main .centrado .acciones .panel ul li.azul a, .category .wrapper main .centrado .acciones .panel ul li.azul a, .blog .wrapper main .centrado .acciones .panel ul li.azul a {
  background-color: var(--cat_azul);
  color: var(--oscuro_siempre);
}
.search .wrapper main .centrado .acciones .panel ul li.verde a, .category .wrapper main .centrado .acciones .panel ul li.verde a, .blog .wrapper main .centrado .acciones .panel ul li.verde a {
  background-color: var(--cat_verde);
  color: var(--oscuro_siempre);
}
.search .wrapper main .centrado .acciones .panel ul li.pistacho a, .category .wrapper main .centrado .acciones .panel ul li.pistacho a, .blog .wrapper main .centrado .acciones .panel ul li.pistacho a {
  background-color: var(--cat_pistacho);
  color: var(--oscuro_siempre);
}
.search .wrapper main .centrado .contenedor, .category .wrapper main .centrado .contenedor, .blog .wrapper main .centrado .contenedor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  width: 100%;
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media only screen and (max-width: 550px) {
  .search .wrapper main .centrado .contenedor, .category .wrapper main .centrado .contenedor, .blog .wrapper main .centrado .contenedor {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    z-index: 1;
    position: relative;
  }
}
.search .wrapper main .centrado .contenedor h1, .category .wrapper main .centrado .contenedor h1, .blog .wrapper main .centrado .contenedor h1 {
  width: 100%;
  color: var(--oscuro);
  font-size: 40px;
  color: var(--oscuro);
  font-family: var(--gosha);
  margin-bottom: 20px;
  margin-left: 25px;
}
.search .wrapper main .centrado .contenedor article h2, .category .wrapper main .centrado .contenedor article h2, .blog .wrapper main .centrado .contenedor article h2 {
  width: 100%;
  color: var(--oscuro);
  font-size: 20px;
  color: var(--oscuro);
  font-family: var(--gosha);
  margin-bottom: 20px;
  margin-left: 25px;
}
.search .wrapper main .centrado .contenedor .item, .category .wrapper main .centrado .contenedor .item, .blog .wrapper main .centrado .contenedor .item {
  width: calc(25% - 10px);
  min-width: 200px;
  background-color: var(--blanco);
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 10px;
}
@media only screen and (max-width: 550px) {
  .search .wrapper main .centrado .contenedor .item, .category .wrapper main .centrado .contenedor .item, .blog .wrapper main .centrado .contenedor .item {
    min-width: initial;
    width: calc(50% - 5px);
  }
}
.search .wrapper main .centrado .contenedor .item .linea, .category .wrapper main .centrado .contenedor .item .linea, .blog .wrapper main .centrado .contenedor .item .linea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 5px;
}
.search .wrapper main .centrado .contenedor .item .linea .titulo, .category .wrapper main .centrado .contenedor .item .linea .titulo, .blog .wrapper main .centrado .contenedor .item .linea .titulo {
  font-size: 14px;
  font-weight: 500;
  color: var(--oscuro);
}
.search .wrapper main .centrado .contenedor .item .linea .categoria, .category .wrapper main .centrado .contenedor .item .linea .categoria, .blog .wrapper main .centrado .contenedor .item .linea .categoria {
  padding: 5px 5px;
  border-radius: 10px;
  background-color: black;
  text-transform: uppercase;
  color: var(--blanco_siempre);
  font-size: 13px;
}
.search .wrapper main .centrado .contenedor .item .linea .categoria.naranja, .category .wrapper main .centrado .contenedor .item .linea .categoria.naranja, .blog .wrapper main .centrado .contenedor .item .linea .categoria.naranja {
  background-color: var(--cat_naranja);
  color: var(--oscuro_siempre);
}
.search .wrapper main .centrado .contenedor .item .linea .categoria.negro, .category .wrapper main .centrado .contenedor .item .linea .categoria.negro, .blog .wrapper main .centrado .contenedor .item .linea .categoria.negro {
  background-color: var(--cat_negro);
}
.search .wrapper main .centrado .contenedor .item .linea .categoria.azul, .category .wrapper main .centrado .contenedor .item .linea .categoria.azul, .blog .wrapper main .centrado .contenedor .item .linea .categoria.azul {
  background-color: var(--cat_azul);
  color: var(--oscuro_siempre);
}
.search .wrapper main .centrado .contenedor .item .linea .categoria.verde, .category .wrapper main .centrado .contenedor .item .linea .categoria.verde, .blog .wrapper main .centrado .contenedor .item .linea .categoria.verde {
  background-color: var(--cat_verde);
  color: var(--oscuro_siempre);
}
.search .wrapper main .centrado .contenedor .item .linea .categoria.pistacho, .category .wrapper main .centrado .contenedor .item .linea .categoria.pistacho, .blog .wrapper main .centrado .contenedor .item .linea .categoria.pistacho {
  background-color: var(--cat_pistacho);
  color: var(--oscuro_siempre);
}
.search .wrapper main .centrado .contenedor .item p, .category .wrapper main .centrado .contenedor .item p, .blog .wrapper main .centrado .contenedor .item p {
  padding-bottom: 5px;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  font-size: 14px;
  font-weight: 400;
  color: var(--oscuro);
}
.search .wrapper main .centrado .contenedor .item a, .category .wrapper main .centrado .contenedor .item a, .blog .wrapper main .centrado .contenedor .item a {
  display: block;
  display: block;
  width: 100%;
  aspect-ratio: 5/4;
  overflow: hidden;
}
.search .wrapper main .centrado .contenedor .item a img, .category .wrapper main .centrado .contenedor .item a img, .blog .wrapper main .centrado .contenedor .item a img {
  display: block;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  aspect-ratio: 5/4;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.search .wrapper main .centrado .contenedor .item a:hover img, .category .wrapper main .centrado .contenedor .item a:hover img, .blog .wrapper main .centrado .contenedor .item a:hover img {
  width: 120%;
  margin-left: -5%;
  margin-top: -5%;
}

/*

	VARIABLES

*/
.default {
  min-height: 100vh;
  position: relative;
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 20px;
  background-color: var(--color_fondo_contacto);
}
.default .centrado {
  width: 100%;
  margin: auto;
  max-width: var(--ancho_maximo);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 1200px) {
  .default .centrado {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.kit-plus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.kit-plus .centrado {
  width: 100%;
  max-width: var(--ancho_maximo);
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 1200px) {
  .kit-plus .centrado {
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 550px) {
  .kit-plus .centrado {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.kit-plus .marcas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media only screen and (max-width: 1200px) {
  .kit-plus .marcas {
    max-width: 320px;
    margin: auto;
    margin-top: 25px;
  }
}
.kit-plus .marcas p {
  background-color: #e1e5ea;
  color: var(--oscuro);
  text-transform: uppercase;
  font-size: 15px;
  text-align: center;
  width: 100%;
  padding: 5px;
}
.kit-plus .marcas .caja_marcas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.kit-plus .marcas .caja_marcas img {
  display: block;
  width: auto;
  height: 100%;
  max-height: 55px;
}
.kit {
  width: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 20px;
}
@media only screen and (max-width: 550px) {
  .kit {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.kit .kit_1 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.kit .kit_1 img {
  display: block;
  width: auto;
  height: 100%;
  max-height: 55px;
}
@media only screen and (max-width: 550px) {
  .kit .kit_1 img {
    max-width: 300px;
  }
}
.kit .kit_2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.kit .kit_2 img {
  display: block;
  width: auto;
  height: 100%;
  max-height: 50px;
}
@media only screen and (max-width: 550px) {
  .kit .kit_2 img {
    height: 50px;
  }
}

/*

	VARIABLES

	--color_fondo_alert
	--color_borde_alert

	--grosor_uno

*/
.alert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  z-index: 3;
  bottom: -50px;
  left: 0px;
  width: 100%;
  background-color: var(--naranja);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid var(--oscuro_siempre);
}
@media only screen and (max-width: 550px) {
  .alert {
    border-top: var(--grosor_uno) solid var(--color_borde_alert);
  }
}
.alert p {
  width: 100%;
  padding: 10px;
  margin: 0px;
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media only screen and (max-width: 550px) {
  .alert p {
    padding: 15px 10px;
  }
}
.alert p a {
  font-weight: 700;
  color: black;
  margin-left: 20px;
}
.alert span {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.alert.dark {
  bottom: 0px;
  text-transform: uppercase;
}

/*

  VARIABLES

  --grosor_uno

*/
.again {
  cursor: pointer;
}

#gdpr-cookie-message {
  position: fixed;
  bottom: 0px;
  z-index: 20;
  background-color: rgba(0, 0, 0, 0.8);
  border-top: 1px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  padding: 20px;
}

#gdpr-cookie-message h4 {
  text-transform: uppercase;
  padding-bottom: 10px;
  font-size: 15px;
}

#gdpr-cookie-message p {
  line-height: 1.3em;
  font-size: 14px;
}

#gdpr-cookie-message a {
  color: rgb(255, 255, 255);
}

#gdpr-cookie-types {
  padding: 20px 0px;
}

#gdpr-cookie-types h5 {
  text-transform: uppercase;
  padding-bottom: 10px;
}

#gdpr-cookie-types ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#gdpr-cookie-types ul li {
  padding: 0px 10px;
}

#gdpr-cookie-message p:last-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 20px;
}

#gdpr-cookie-message button {
  padding: 10px 20px;
  border-radius: 0px;
  border: 0px;
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  background-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#gdpr-cookie-message button:first-of-type:hover {
  background-color: rgba(0, 0, 0, 0);
}

#gdpr-cookie-message button:last-of-type {
  margin-left: 20px;
  padding: 0px;
  border: 0px;
  text-decoration: underline;
  font-size: 12px;
}

#gdpr-cookie-message label {
  cursor: pointer;
}

@media (max-width: 414px) {
  #gdpr-cookie-types {
    padding-bottom: 0px;
  }
  #gdpr-cookie-types h5 {
    margin: 0px;
  }
  #gdpr-cookie-types ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0px;
    padding: 0px;
  }
}