@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;700&display=swap");
:root {
  --max-width: 1280px;
  --min-width: 320px;
  --color-primario: #1380bf;
  --color-secundario: #b6c929;
}
* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline;
}
html,
body {
  height: 100%;
  background-color: white;
  margin: 0;
  padding: 0;
  border: 0;
  color: white;
  font-family: "Noto Sans", sans-serif;
}
img,
picture,
video,
iframe,
figure {
  max-width: 100%;
  width: 100%;
  display: block;
}
a {
  display: block;
}
p a {
  display: inline;
}
li {
  list-style-type: none;
}
html {
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
strong,
blockquote,
i,
b,
u,
em {
  font-size: 1em;
  font-weight: inherit;
  font-style: inherit;
  text-decoration: none;
  color: inherit;
}
::selection {
  background-color: var(--color-primario);
  color: var(--color-secundario);
}
.body {
  height: 100vh;
}
.bg__azul--3 {
  background-color: #1380bf;
}
.bg__azul--2 {
  background-color: #1aa0d0;
}
.bg__verde {
  background-color: #b6c929;
}
.bg__blanco {
  background-color: white;
}
.negrita {
  font-weight: 800;
}
.body__header {
  width: 100%;
}
.header__section--datos {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px;
  display: grid;
  grid-template: "ubicacion redes redes datos";
}
.aside__ubicacion {
  display: flex;
  grid-area: ubicacion;
  align-items: center;
}
.aside__redes {
  display: flex;
  justify-content: center;
  grid-area: redes;
}
.aside__datos {
  grid-area: datos;
}
.a__redes {
  display: flex;
  margin: 0 10px;
  align-items: center;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.a__redes:hover {
  color: #b6c929;
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
}
.a__datos {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.a__datos:hover {
  color: #b6c929;
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
}
.svg__icono {
  margin-right: 10px;
}
.img__redes {
  width: 35px;
  margin: 0 5px;
}
.texto__datos {
  font-size: 0.75em;
}
.header__section--menu {
  width: 100%;
  padding: 1em 3em;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.img__logo {
  max-width: 200px;
}
.button__menu {
  background-color: white;
  display: none;
}
.svg__menu {
  fill: #1380bf;
}
.ul__menu {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
}
.li__menu {
  margin: 0 0.5em;
}
.a__menu {
  color: #1380bf;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.a__menu:hover {
  color: #b6c929;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.main__contenedor {
  width: 100%;
}
.section__inicio {
  width: 100%;
  height: 90vh;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  background: linear-gradient(-45deg, #b6c929, #1aa0d0, #1380bf, #b6c929);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  -webkit-animation: gradient 15s ease infinite;
  min-width: var(--min-width);
  font-size: 100%;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.aside__inicio--img {
  width: 50%;
  height: 100%;
  animation: animate 25s ease-in-out infinite;
  -webkit-animation: animate 25s ease-in-out infinite;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.7;
}
@keyframes animate {
  0%,
  100% {
    background-image: url(../img/fisioterapia.png);
  }
  25% {
    background-image: url(../img/osteopatia.png);
  }
  50% {
    background-image: url(../img/deportiva.png);
  }
  75% {
    background-image: url(../img/masaje.png);
  }
}

.section__inicio--contenido {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2em;
  justify-content: space-around;
  align-items: center;
}
.h1__inicio {
  font-weight: 800;
  font-size: 3em;
  line-height: 1.5em;
  border-left: white solid 5px;
  padding-left: 10px;
}
.h2__inicio {
  font-size: 1.5em;
  line-height: 1.5em;
  margin-bottom: 20px;
}
.h3__inicio {
  font-size: 1em;
  font-weight: 800;
  line-height: 1.5em;
}
.p__inicio {
  font-size: 1em;
  line-height: 1.5em;
}
.a__inicio {
  color: white;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.a__inicio:hover {
  color: #b6c929;
}
.section__somos {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.article__somos {
  width: 50%;
  padding: 4em;
  display: flex;
  flex-direction: column;
}
.h3__somos {
  color: #b6c929;
  font-weight: 800;
  font-size: 2em;
  margin-bottom: 50px;
}
.p__somos {
  color: #1380bf;
  margin-bottom: 20px;
}
.aside__somos {
  width: 50%;
}
.section__tratamientos {
  width: 100%;
  background-image: url(../img/background-servicios.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.article__tratamientos {
  max-width: 1280px;
  padding: 3em 1em;
  display: grid;
  grid-gap: 1em;
  grid-template-areas:
    "header header header"
    "uno dos tres"
    "cuatro cinco seis";
}
.tratamiento__uno {
  grid-area: uno;
}
.tratamiento__dos {
  grid-area: dos;
}
.tratamiento__tres {
  grid-area: tres;
}
.tratamiento__cuatro {
  grid-area: cuatro;
}
.tratamiento__cinco {
  grid-area: cinco;
}
.tratamiento__seis {
  grid-area: seis;
}
.header__tratamientos {
  grid-area: header;
  width: 100%;
  padding-bottom: 2em;
}
.h3__tratamientos {
  font-size: 2em;
  font-weight: 800;
}
.h4__tratamientos {
  font-size: 1.5em;
}
.aside__tratamientos {
  padding: 1em;
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 350px;
  border-radius: 1em;
  -webkit-border-radius: 1em;
  -moz-border-radius: 1em;
  -ms-border-radius: 1em;
  -o-border-radius: 1em;
}
.h2__tratamientos {
  font-size: 1em;
  font-weight: 800;
  margin-block-start: 0em;
  margin-block-end: 2em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
.p__tramiento {
  font-size: 1em;
  display: block;
  margin-block-start: 1.33em;
  margin-block-end: 1.33em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
.a__tratamientos {
  font-size: 0.75em;
  position: relative;
  display: block;
  margin-top: auto;
  transition: all 450ms ease;
  -webkit-transition: all 450ms ease;
  -moz-transition: all 450ms ease;
  -ms-transition: all 450ms ease;
  -o-transition: all 450ms ease;
  padding: 1em 2em;
  border: white solid 1px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.a__tratamientos:hover {
  color: #b6c929;
  border: #b6c929 solid 2px;
  background-color: white;
}
.section__equipo {
  width: 100%;
  display: flex;
  justify-content: center;
  background: linear-gradient(
    to top,
    #b6c929 0%,
    #b6c929 30%,
    #fff 30%,
    #fff 100%
  );
}
.article__equipo {
  width: 100%;
  max-width: 1280px;
  padding: 3em 2em;
}
.header__equipo {
  width: 100%;
  padding-bottom: 2em;
}
.h3__equipo {
  font-size: 2em;
  font-weight: 800;
  color: #b6c929;
}
.aside__equipo {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-flow: row wrap;
}
.div__equipo--tarjeta {
  width: 280px;
  height: 360px;
  border-radius: 15px;
  padding: 1.5rem;
  background: white;
  position: relative;
  display: flex;
  align-items: flex-end;
  transition: 0.4s ease-out;
  box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
  margin: 1em;
}
.div__equipo--tarjeta:hover {
  transform: translateY(20px);
}
.div__equipo--tarjeta:hover:before {
  opacity: 1;
}
.div__equipo--tarjeta:hover .div__equipo--texto {
  opacity: 1;
  transform: translateY(0px);
}
.div__equipo--tarjeta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: rgba(59, 105, 160, 0.7);
  z-index: 2;
  transition: 0.5s;
  opacity: 0;
}
.img__equipo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px;
}
.div__equipo--tarjeta .div__equipo--texto {
  position: relative;
  z-index: 3;
  color: white;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.5s;
}
.h4__equipo {
  margin: 0px;
  font-size: 1em;
}
.p__equipo {
  letter-spacing: 1px;
  font-size: 1em;
  font-weight: 800;
  margin: 1em 0;
}
.a__equipo {
  width: 40%;
  padding: 0.6rem;
  border-radius: 3px;
  background: white;
  color: #b6c929;
  font-weight: bold;
  transition: 0.4s ease;
}
.a__equipo:hover {
  background: #1380bf;
  color: white;
}

.section__tecnologia {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: white;
}
.h3__tecnologia {
  color: #b6c929;
  font-weight: 800;
  font-size: 2em;
  margin: 3vmin 10vmin;
}

.p__tecnologia {
  font-size: 1em;
  color: #1380bf;
  margin: 1vmin 10vmin;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5vmin 10vmin;
  overflow: hidden;
  transform: skew(5deg);
  -webkit-transform: skew(5deg);
  -moz-transform: skew(5deg);
  -ms-transform: skew(5deg);
  -o-transform: skew(5deg);
}
.container .card {
  flex: 1;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  height: 75vmin;
  position: relative;
}
.container .card .card__head {
  color: white;
  background: #b6c929;
  padding: 0.5em;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform-origin: 0% 0%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  min-width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 1em;
  white-space: nowrap;
}
.container .card:hover {
  flex-grow: 10;
}
.container .card:hover img {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
}
.container .card:hover .card__head {
  text-align: center;
  top: calc(100% - 2em);
  color: white;
  background: #1380bf;
  font-size: 2em;
  transform: rotate(0deg) skew(-5deg);
  -webkit-transform: rotate(0deg) skew(-5deg);
  -moz-transform: rotate(0deg) skew(-5deg);
  -ms-transform: rotate(0deg) skew(-5deg);
  -o-transform: rotate(0deg) skew(-5deg);
}
.container .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
.container .card:not(:nth-child(6)) {
  margin-right: 1em;
}

.section__datos--clini {
  width: 100%;
  background-color: #1380bf;
  background-image: url(../img/fondo-datos.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.article__datos--clini {
  min-width: 80vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.aside__datos--clini {
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  margin: 5vmin 1vmin;
}
.button__datos {
  background: none;
  color: #fff;
  width: 3em;
  height: 3em;
}
.h3__datos {
  font-size: 3.5em;
  font-weight: bold;
}
.section__mapa {
  width: 100%;
  background-color: #1380bf;
}

.aside__mapa {
  width: 100%;
  height: 500px;
  position: relative;
}
.iframe__mapa {
  width: 100%;
  height: 500px;
}
.article__mapa {
  width: 300px;
  height: 500px;
  background-color: #1aa0d0;
  margin: 0 25vmin;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -500px;
}
.h4__mapa {
  font-size: 1.5em;
  margin: 1em 0;
}
.div__mapa {
  width: 90%;
  display: flex;
  padding: 0.5em 0;
}
.span__mapa--negrita {
  font-weight: bold;
  width: 40%;
}
.span__mapa {
  width: 60%;
}
.button__mapa {
  background-color: rgba(59, 105, 160, 0);
  color: #fff;
}
.a__mapa {
  margin-left: 1em;
}
.footer__pagina {
  width: 100%;
  background-color: #1380bf;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  align-content: center;
  padding: 2em;
}
.aside__redes--footer {
  display: flex;
  justify-content: center;
}
.nav__footer {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1em;
  border-top: solid 1px;
}
.ul__footer {
  max-width: 85%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}
.li__footer {
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1em;
}
.a__footer {
  color: #fff;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.a__footer:hover {
  color: #b6c929;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.img__footer {
  width: 5vmax;
  margin-top: 2em;
}
.h3__footer {
  font-size: 1.3em;
  font-weight: 800;
  margin-top: 1em;
  text-align: center;
}
.div__footer--politica {
  width: 100%;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  margin-top: 1em;
}
.a__footer--politica {
  font-size: 0.75em;
  margin: 0 2em;
}
.div__footer--derechos {
  margin-top: 1em;
}
.span__footer {
  font-size: 0.6em;
}
.article__servicio {
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.span__negrita {
  font-weight: bold;
}
.aside__titulo {
  width: 100%;
  height: 150px;
  background-color: #b6c929;
}
.bg__servicio_01 {
  background-image: url(../img/rehabilitacion.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.bg__servicio_02 {
  background-image: url(../img/osteopatia.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.bg__servicio_03 {
  background-image: url(../img/fisioterapia.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.bg__servicio_04 {
  background-image: url(../img/deportiva.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.bg__servicio_05 {
  background-image: url(../img/respiratoria.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.div__titulo {
  width: 100%;
  height: 100%;
  background: #b6c929;
  background: linear-gradient(
    130deg,
    rgba(59, 105, 160, 0.8) 0%,
    rgba(170, 191, 48, 0.8) 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
}
.h1__servicio {
  font-size: 2em;
  padding: 1em;
  font-weight: bold;
  margin-right: 20px;
}
.img__icono--servicio {
  width: 40px;
  margin-left: 20px;
}

.aside__contenido--servicio {
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: aliceblue;
}

.h2__servicio {
  width: 100%;
  font-size: 1.5em;
  color: #b6c929;
  font-weight: bold;
  text-align: center;
  padding: 1em;
}
.div__contenido--servicio {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p__servicio {
  color: #1380bf;
  padding: 1em;
}
.img__servicio {
  width: 40%;
}
.span__servicio {
  font-size: 1.5em;
  color: #1380bf;
  padding: 1em;
}
.color-azul {
  color: #1aa0d0;
  padding: 1em;
}
/* WhatsApp star */
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #b6c929;
  color: #fff;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 30;
  padding-top: 13px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
.my-float {
  margin-top: 20px;
}
/* WhatsApp end */
.section__profesional {
  width: 100%;
  background-color: aliceblue;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.aside__titulo--profesional {
  width: 100%;
  height: 150px;
  background-color: #b6c929;
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.div__titulo--profesional {
  width: 100%;
  max-width: 1200px;
}
.h2__profesional {
  font-size: 2em;
  font-weight: bold;
}
.article__profesional {
  width: 100%;
  max-width: 1200px;
  display: flex;
}
.aside__foto--profesional {
  max-width: 350px;
  background-color: #fff;
  padding-bottom: 2em;
}
.img__profesional {
  min-width: 350px;
  margin-bottom: 2em;
}
.h3__horario {
  width: 100%;
  color: #1380bf;
  font-size: 1.5em;
  font-weight: bold;
  margin-left: 1em;
  margin-bottom: 1em;
}
.div_horario {
  width: 90%;
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px var(--color-secundario);
  margin-left: 1em;
  margin-bottom: 0.5em;
}
.span__horario {
  color: #1380bf;
}
.h3__info--contacto {
  width: 100%;
  color: #1380bf;
  font-size: 1em;
  font-weight: bold;
  margin: 2em 1em;
}
.a__profesional {
  color: #1380bf;
  margin-left: 1em;
  margin-bottom: 0.5em;
}
.aside__contenido--profesional {
  padding: 2em;
  color: #1380bf;
}
.h3__subtitulo {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 2em;
}
.p__profesional {
  margin-bottom: 1.5em;
}
.section__tecnologia--pagina {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.article__tecnologia--contenido {
  max-width: 1100px;
  display: flex;
}
.aside__tecnolgia--contenido {
  max-width: 50%;
  padding: 2em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.h1__tecnologia {
  font-size: 3em;
  color: #b6c929;
  font-weight: bold;
}
.h2__tecnologia {
  font-size: 1.5em;
  color: #1380bf;
  margin-top: 0.5em;
}
.p__tecnologia--p {
  color: #1380bf;
  margin: 1em 0;
}
.aside__tecnologia--img {
  width: 100%;
}
.img__tecnologia {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.article__tecnologia--beneficios {
  width: 100%;
  background-color: #b6c929;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4em 1em;
  text-align: center;
}
.h2__beneficios {
  font-size: 1.5em;
  font-weight: bold;
}
.li__beneficios {
  margin: 1em 0;
}
.aside__citas {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4em 1em;
}
.h2__tecnologia--citas {
  font-size: 1.5em;
  color: #1380bf;
  font-weight: bold;
}
.tecnologia__color {
  color: #1380bf;
  margin-top: 2em;
}
.article__error {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.img__error {
  width: 50vw;
  padding: 1em;
}
.h3__error {
  display: flex;
  flex-direction: column;
  color: #1380bf;
  font-size: 1.5em;
  padding: 1em;
}
.a__error {
  color: #b6c929;
  font-weight: bold;
  transition: all 0.45s ease;
  -webkit-transition: all 0.45s ease;
  -moz-transition: all 0.45s ease;
  -ms-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
}
.a__error:hover {
  color: #1380bf;
}

/* Responsivo*/

@media (max-width: 1024px) {
  .h1__inicio {
    font-size: 2em;
    margin-bottom: 20px;
  }
  .h2__inicio {
    font-size: 1.5em;
    margin-bottom: 20px;
  }
  .h3__inicio .p__inicio {
    font-size: 1em;
  }
  .svg__inicio {
    width: 40px;
    height: 40px;
    margin-top: 20px;
  }
  .article__tratamientos {
    grid-template-areas:
      "header header"
      "uno dos"
      "tres cuatro"
      "cinco seis";
  }
  .aside__equipo {
    justify-content: center;
  }

  .h1__tecnologia {
    font-size: 2em;
  }
  .h2__tecnologia {
    font-size: 1.5;
  }
}

@media (max-width: 910px) {
  .button__menu {
    display: block;
    cursor: pointer;
  }
  .nav__menu {
    width: 100%;
    height: 0;
    pointer-events: none;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
  }
  .nav__menu.activo {
    width: 100%;
    /*display: block;*/
    height: 300px;
    pointer-events: auto;
  }
  .ul__menu {
    flex-direction: column;
  }
  .li__menu {
    margin: 0.5em 0;
  }
  .aside__inicio--img {
    width: 100%;
    height: 50%;
  }
  .section__inicio--contenido {
    width: 100%;
    height: 50%;
  }
  .section__somos {
    flex-direction: column;
    flex-flow: column nowrap;
  }
  .article__somos {
    width: 100%;
    padding: 2em;
  }
  .aside__somos {
    width: 100%;
  }
  .article__datos--clini {
    justify-content: center;
  }
  .aside__datos--clini {
    margin: 5vmin 6vmin;
  }
  .aside__mapa {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .article__mapa {
    margin: 0 auto;
    top: 0px;
  }
  .div__contenido--servicio {
    flex-direction: column;
  }
  .img__servicio {
    width: 100%;
    padding: 1em;
  }
  .h3__error {
    text-align: center;
    align-items: center;
  }
  .img__error {
    width: 100%;
  }
}
@media (max-width: 700px) {
  .header__section--datos {
    grid-template:
      "ubicacion datos"
      "redes redes";
    justify-items: center;
  }
  .aside__redes {
    padding: 10px 0;
  }
  .section__inicio {
    height: 100%;
  }
  .aside__inicio--img {
    height: 50vh;
  }
  .section__inicio--contenido {
    padding: 1em;
  }
  .article__tratamientos {
    grid-template-areas:
      "header"
      "uno"
      "dos"
      "tres"
      "cuatro"
      "cinco"
      "seis";
  }
  .article__profesional {
    flex-direction: column-reverse;
    align-items: center;
  }
  .img__profesional {
    min-width: 300px;
  }
  .article__tecnologia--contenido {
    flex-direction: column;
    align-items: center;
  }
  .aside__tecnolgia--contenido {
    max-width: 100%;
  }
}
@media (max-width: 560px) {
  .h1__inicio {
    font-size: 2em;
    margin: 1em 0.5em;
  }
  .a__inicio {
    padding-top: 1em;
  }

  .header__section--datos {
    grid-template:
      "ubicacion ubicacion"
      "datos redes";
  }
  .a__tecnologia {
    font-size: 0.4em;
  }
}
