@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p, li {
  line-height: 22px;
}

p {
  font-size: 18px;
  text-align: justify;
}

.azul {
  color: #0681E9;
}

article li {
  padding-bottom: 2px;
}

a h2, article h3 {
  text-align: center;
}

article h3 {
  margin-top: 30px;
  margin-bottom: 20px;
}

article h3:first-child {
  margin-top: 0px;
}

article img {
  width: 100%;
  padding: 0;
}

article p {
  margin-bottom: 15px;
}

.contenedor {
  width: 90%;
  margin: 20px auto;
  position: relative;
}

@media all and (max-width: 784px) {
  .contenedor {
    width: 98%;
  }
}

.flex {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -ms-align-items: center;
  justify-content: center;
  -ms-justify-content: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.flex-columnas {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -ms-justify-content: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  align-items: stretch;
  -ms-align-items: stretch;
}

.flex-columnas > article, .flex-columnas > a {
  flex: 1;
  -ms-flex: 1;
  text-align: center;
  margin: 10px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 10px;
  transition: all 0.5s;
}

.flex-columnas > a {
  align-self: stretch;
  -ms-align-self: stretch;
}

.flex-columnas article div h4 {
  color: #3e3e3e;
}

.flex-columnas article:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

#banner {
  background-color: skyblue;
  padding-top: 70px;
}

@media all and (max-width: 768px) {
  #banner {
    padding-top: 50px;
  }
}

#banner img {
  padding: 30px;
}

#secciones {
  height: inherit;
  background-color: #eeeeee;
}

#secciones article {
  width: 100%;
  height: auto;
  background-color: rgba(113, 178, 232, 0.6);
  transition: all 0.3s;
  border-radius: inherit;
}

#secciones article:nth-child(odd) {
  background-color: #71b2e8;
  transition: all 0.3s;
}

#secciones article:hover {
  background-color: #5585AE;
}

.contenidoSeccion {
  background-color: rgba(0, 0, 0, 0.3);
  color: aliceblue;
  padding: 30px;
  border-radius: 5px;
}

@media all and (max-width: 760px) {
  .contenidoSeccion {
    padding: 10px;
  }
}

@media all and (max-width: 700px) {
  .contenidoSeccion .flex-columnas {
    flex-direction: column;
    -ms-flex-direction: column;
  }
}

.sin-fondo {
  background-color: transparent;
}

.contenidoSeccion > p {
  font-family: 'Lato', sans-serif;
}

.izquierda {
  width: 55%;
  margin-left: 0;
}

@media all and (max-width: 784px) {
  .izquierda {
    width: 98%;
    margin: auto;
  }
}

.derecha {
  width: 55%;
  margin-left: 45%;
}

@media all and (max-width: 784px) {
  .derecha {
    width: 98%;
    margin: auto;
  }
}

.contenidoSeccion ul {
  padding-left: 40px;
}

.titulo {
  background-color: rgba(255, 255, 255, 0.8);
  color: #3E3E3E;
  padding: 40px 0px;
  text-align: center;
  font-family: 'Bitter', serif;
  font-size: 30px;
}

.imagenPromocion {
  width: 100%;
  height: 400px;
  margin: 20px 0;
}

.link {
  text-decoration: underline;
  color: lightblue;
  font-weight: bold;
}

.centrado {
  text-align: center;
}

section {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

section a {
  text-decoration: none;
  color: #fff;
}

hr {
  border: solid 1px #eee;
  margin-top: 40px;
}

footer {
  background-color: #034174;
  color: white;
  text-align: center;
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-around;
  -ms-justify-content: space-around;
  align-items: center;
  -ms-align-items: center;
}

footer hr {
  padding: 0;
  margin-top: 30px;
  margin-bottom: 30px;
  border: solid 1px rgba(255, 255, 255, 0.3);
}

footer article a {
  transition: all 0.5s;
}

footer article a:hover {
  color: rgba(255, 255, 255, 0.8);
}

footer .flex-columnas {
  justify-content: space-between;
  -ms-justify-content: space-between;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

footer .flex-columnas article {
  flex: initial;
  -ms-flex: initial;
  background-color: transparent;
  border: solid 1px rgba(255, 255, 255, 0.2);
  height: 100px;
  width: 350px;
}

footer .flex-columnas article:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

footer .flex-columnas article h3 {
  font-size: 50px;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -ms-justify-content: center;
  align-items: center;
  -ms-align-items: center;
  border-radius: 10px;
  width: 30%;
  height: 100%;
  float: left;
}

footer .flex-columnas article p {
  padding: 10px;
  color: #C5E6FA;
  float: left;
  margin: 0;
  width: 70%;
  height: 100%;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -ms-justify-content: center;
  align-items: center;
  -ms-align-items: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

footer .flex-columnas article p a {
  color: #C5E6FA;
  text-decoration: none;
  background-color: transparent;
  font-weight: bold;
  font-size: 16px;
  width: 100%;
  margin: 0px;
  padding: 5px;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -ms-justify-content: center;
  align-items: center;
  -ms-align-items: center;
}

footer .flex-columnas article p a:hover {
  color: #fff;
}

footer h2 {
  padding: 80px;
  font-family: untitled-font-1;
}

/*================================================================================================================
                                                BANNER2
=================================================================================================================*/
.banner2 {
  color: #fff;
  padding-top: 70px;
  z-index: -10;
}

@media all and (max-width: 768px) {
  .banner2 {
    padding-top: 50px;
  }
}

.banner2 div.contenedorBanner2 {
  width: 100%;
  position: relative;
}

.banner2 div.contenedorBanner2 img.fondo {
  width: 100%;
  height: auto;
  top: 0px;
  position: relative;
}

.banner2 div.contenedorBanner2 h1, .banner2 div.contenedorBanner2 h2, .banner2 div.contenedorBanner2 p, .banner2 div.contenedorBanner2 img.logo {
  position: absolute;
  font-family: 'Dosis', sans-serif;
  left: 0%;
}

.banner2 div.contenedorBanner2 h1 {
  color: black;
  top: 17%;
  left: 0%;
  padding: 0.1em 0.6em;
  font-size: 7em;
  font-weight: 100;
  background-color: rgba(255, 255, 255, 0.3);
}

.banner2 div.contenedorBanner2 h2 {
  font-size: 2.5em;
  bottom: 1%;
  color: #fff;
  padding: 0.25em 1.3em;
  background-color: rgba(0, 0, 0, 0.4);
}

.banner2 div.contenedorBanner2 img.logo {
  height: 300px;
}

/*================================================================================================================
                                                HOME
=================================================================================================================*/
#seccion1H {
  /*    background-image: url("../imagenes/promociones.jpg");*/
  background-color: #F1C40F;
}

.index ul {
  margin-left: 0px;
  padding-left: 60px;
}

@media all and (max-width: 1024px) {
  .index ul {
    padding-left: 50px;
  }
}

@media all and (max-width: 768px) {
  .index ul {
    padding-left: 60px;
  }
}

.index ul a li {
  margin: 0;
  line-height: 1.5em;
  margin-bottom: 30px;
  list-style: none;
  font-size: 1.7em;
  font-weight: 700;
  position: relative;
  transition: all 0.3s;
}

@media all and (max-width: 1024px) {
  .index ul a li {
    font-size: 1.5em;
  }
}

@media all and (max-width: 480px) {
  .index ul a li {
    font-size: 1.4em;
    line-height: 1.5em;
  }
}

.index ul a li span.icon-right-circle {
  font-size: 1.7em;
  position: absolute;
  left: -70px;
  transition: all 0.3s;
}

@media all and (max-width: 1024) {
  .index ul a li span.icon-right-circle {
    font-size: 1.5em;
    left: -65px;
  }
}

@media all and (max-width: 480px) {
  .index ul a li span.icon-right-circle {
    left: -60px;
  }
}

#seccion2H {
  background-image: url("../imagenes/fondoIndex1.jpg");
  background-color: #118DF0;
}

#seccion2H .contenidoSeccion {
  background-color: rgba(255, 255, 255, 0.4);
  color: #000;
}

#seccion2H .contenidoSeccion.index ul a li {
  color: black;
}

#seccion2H .contenidoSeccion.index ul a:hover li {
  padding-left: 10px;
  color: #034174;
}

#seccion2H .contenidoSeccion.index ul a:hover li span.icon-right-circle {
  color: #034174;
}

#seccion3H {
  background-image: url("../imagenes/fondoIndex2.jpg");
  background-color: #F07411;
}

#seccion3H .contenidoSeccion {
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
}

#seccion3H .contenidoSeccion.index ul a li {
  color: #fff;
}

#seccion3H .contenidoSeccion.index ul a:hover li {
  padding-left: 10px;
  color: #FF7F18;
}

#seccion3H .contenidoSeccion.index ul a:hover li span.icon-right-circle {
  color: #FF7F18;
}

#seccion4H {
  background-image: url("../imagenes/fondoIndex3.jpg");
  background-color: #1EF011;
}

#seccion4H .contenidoSeccion {
  height: 500px;
  background-color: rgba(14, 175, 5, 0.4);
  color: #fff;
}

#seccion4H .contenidoSeccion ul {
  margin-top: 130px;
}

#seccion4H .contenidoSeccion.index ul a li {
  color: #fff;
}

#seccion4H .contenidoSeccion.index ul a:hover li {
  padding-left: 10px;
  color: #0D9206;
}

#seccion4H .contenidoSeccion.index ul a:hover li span.icon-right-circle {
  color: #0D9206;
}

#seccion5H {
  background-image: url("../imagenes/fondoIndex4.jpg");
  background-color: #BA82D0;
}

#seccion5H .contenidoSeccion {
  background-color: rgba(186, 130, 208, 0.5);
  color: #fff;
}

#seccion5H .contenidoSeccion.index ul a li {
  color: #fff;
}

#seccion5H .contenidoSeccion.index ul a:hover li {
  padding-left: 10px;
  color: #000;
}

#seccion5H .contenidoSeccion.index ul a:hover li span {
  color: #000;
}

/*================================================================================================================
                                                QUIENES SOMOS
=================================================================================================================*/
#seccion1QS {
  /*    background-image: url("../imagenes/nuestraEmpresa.jpg");*/
  background-color: #fff;
}

#seccion1QS .contenidoSeccion h3 {
  color: #034174;
}

#seccion1QS .contenidoSeccion p {
  color: #000;
}

#seccion1QS .contenidoSeccion div.flex-columnas a {
  background-color: #fff;
  border: solid 1px rgba(24, 156, 236, 0.3);
}

#seccion1QS .contenidoSeccion div.flex-columnas a:hover {
  background-color: rgba(24, 156, 236, 0.1);
}

#seccion1QS .contenidoSeccion div.flex-columnas a article {
  padding: 10px;
  margin: 0px;
}

#seccion1QS .contenidoSeccion div.flex-columnas a article:hover {
  background-color: transparent;
}

#seccion2QS {
  /*    background-image: url("../imagenes/misionVision.jpg");*/
  background-color: #034174;
}

#seccion3QS {
  /*    background-image: url("../imagenes/misionVision.jpg");*/
  background-color: #D3D4D8;
  padding-top: 30px;
}

#seccion3QS .contenidoSeccion {
  padding: 0px;
}

#seccion3QS .contenidoSeccion .flex-columnas article {
  color: black;
}

#seccion4QS {
  background-image: url("../imagenes/valores.jpg");
  background-color: #77E871;
}

#seccion4QS .contenidoSeccion {
  background-color: rgba(255, 255, 255, 0.5);
  color: black;
}

#seccion4QS .contenidoSeccion ul {
  padding-left: 0px;
}

/*================================================================================================================
                                                LABORATORIO CLÍNICO
=================================================================================================================*/
.flex-columnas.dos {
  justify-content: center;
  -ms-justify-content: center;
}

.flex-columnas.dos article {
  background-color: transparent;
  position: relative;
}

.flex-columnas.dos article.columnaPrincipal {
  flex: 1.5;
  -ms-flex: 1.5;
}

.flex-columnas.dos article h3, .flex-columnas.dos article span, .flex-columnas.dos article a {
  color: #0681E9;
}

.flex-columnas.dos article .imagenColumna {
  width: 100%;
}

@media all and (max-width: 1024px) {
  .flex-columnas.dos {
    flex-direction: column;
    -ms-flex-direction: column;
  }
  .flex-columnas.dos .columnaIntercambiable {
    order: -1;
    -ms-flex-order: -1;
  }
}

#seccion1LC {
  /*    background-image: url("../imagenes/softwareCyber.jpg");*/
  position: relative;
}

#seccion1LC .titulo {
  background-color: rgba(186, 130, 208, 0.6);
}

#seccion1LC .contenedorAcordeon article:nth-child(1), #seccion1LC .contenedorAcordeon article:nth-child(5) {
  background-color: rgba(186, 130, 208, 0.6);
}

#seccion1LC .contenedorAcordeon article:nth-child(3), #seccion1LC .contenedorAcordeon article:nth-child(7) {
  background-color: #eee;
}

#seccion1LC .contenedorAcordeon a {
  color: #333;
  font-weight: bold;
}

#seccion1LC p, #seccion1LC li {
  color: black;
}

#seccion2LC {
  /*    background-image: url("../imagenes/reactivosQuimicos.jpg");*/
  position: relative;
}

#seccion2LC .titulo {
  background-color: rgba(1, 152, 117, 0.4);
}

#seccion2LC h3 {
  color: #0681E9;
}

#seccion2LC p {
  color: #333;
}

#seccion2LC .flecha {
  align-items: center;
  margin: 20px auto;
}

#seccion2LC .flecha h3 {
  background-color: rgba(6, 129, 233, 0.3);
  height: 50px;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -ms-align-items: center;
  margin: 0;
  padding: 0 10px;
}

#seccion2LC .flecha .flechaDerecha {
  float: right;
  width: 0px;
  height: 0px;
  border-bottom: 25px solid transparent;
  /* izquierda flecha */
  border-top: 25px solid transparent;
  /* derecha flecha */
  border-left: 50px solid rgba(6, 129, 233, 0.3);
  /* base flecha y color*/
  font-size: 0px;
  line-height: 0px;
}

@media all and (max-width: 1024px) {
  #seccion2LC .flecha .flechaDerecha {
    display: none;
  }
}

#seccion2LC article img.imagenColumna {
  width: 100%;
}

@media all and (max-width: 1024px) {
  #seccion2LC article img.imagenColumna {
    display: none;
  }
}

#seccion2LC article .apareceImg {
  display: none;
}

@media all and (max-width: 1024px) {
  #seccion2LC article .apareceImg {
    display: block;
    width: 80%;
  }
  #seccion2LC article .desapareceImg {
    display: none;
  }
}

@media all and (max-width: 600px) {
  #seccion2LC article .apareceImg {
    width: 100%;
  }
  #seccion2LC article .flecha {
    width: 100%;
  }
}

#seccion3LC {
  /*    background-image: url("../imagenes/ventaEquipo.jpg");*/
  position: relative;
}

#seccion3LC .titulo {
  background-color: rgba(204, 204, 204, 0.6);
}

#seccion3LC p, #seccion3LC li {
  color: black;
}

#seccion3LC .centrado {
  text-align: center;
}

@media all and (max-width: 1024px) {
  #seccion3LC article .imagenColumna {
    display: none;
  }
}

#seccion3LC article .apareceImg {
  display: none;
}

@media all and (max-width: 1024px) {
  #seccion3LC article .apareceImg {
    display: block;
    width: 80%;
    margin: auto;
  }
}

@media all and (max-width: 600px) {
  #seccion3LC article .apareceImg {
    width: 100%;
  }
}

#seccion4LC .titulo {
  background-color: rgba(241, 196, 15, 0.4);
}

#seccion4LC p {
  color: black;
}

#seccion4LC p.color {
  font-weight: bold;
}

#seccion4LC p.color:nth-child(odd) {
  color: #F1C40F;
}

#seccion4LC p.color:nth-child(even) {
  color: #814011;
}

#seccion4LC .flex-columnas.tres {
  margin-bottom: 10px;
}

#seccion4LC .flex-columnas.tres .fondoColumna {
  background-color: rgba(241, 196, 15, 0.4);
}

#seccion4LC .flex-columnas.tres .fondoColumna h3 {
  color: #814011;
}

#seccion4LC .flex-columnas.tres img {
  max-width: 100px;
}

#seccion4LC .flex-columnas.tres h3 {
  color: black;
  margin: 10px auto;
}

@media all and (max-width: 1024px) {
  #seccion4LC article .imagenColumna {
    display: none;
  }
}

#seccion5LC .titulo {
  background-color: rgba(95, 158, 160, 0.4);
}

#seccion5LC p {
  color: #333;
}

#seccion5LC h3 {
  color: #0681E9;
}

#seccion5LC .contenedorAcordeon article:nth-child(1), #seccion5LC .contenedorAcordeon article:nth-child(5) {
  background-color: rgba(95, 158, 160, 0.4);
}

#seccion5LC .contenedorAcordeon article:nth-child(3), #seccion5LC .contenedorAcordeon article:nth-child(7) {
  background-color: #eee;
}

#seccion5LC .contenedorAcordeon a {
  color: #333;
  font-weight: bold;
}

.contenedorImagenes {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  -ms-justify-content: center;
  -ms-align-items: center;
  -ms-flex-wrap: wrap;
}

.contenedorImagenes .imagen {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  align-items: center;
  -ms-justify-content: center;
  -ms-align-items: center;
  width: 300px;
}

.contenedorImagenes .imagen img {
  width: auto;
  height: auto;
}

.contenedorAcordeon {
  width: 80%;
  margin: auto;
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  justify-content: space-around;
  align-items: stretch;
  flex-wrap: wrap;
  -ms-flex-direction: column;
  -ms-justify-content: space-around;
  -ms-align-items: stretch;
  -ms-flex-wrap: wrap;
  margin-bottom: 20px;
}

.contenedorAcordeon a {
  text-align: left;
}

@media all and (max-width: 768px) {
  .contenedorAcordeon {
    padding: 3px;
    width: 100%;
  }
}

.contenedorAcordeon .boton {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.4);
  width: 100%;
  border-bottom: 2px solid;
  border-bottom-color: rgba(113, 178, 232, 0.5);
  transition: all 0.3s;
  margin: 0;
  color: #034174;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  -ms-align-items: center;
  -ms-justify-content: center;
  font-weight: 500;
  line-height: 2em;
  padding: 0px;
}

.contenedorAcordeon .boton:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.contenedorAcordeon .boton.activo {
  background-color: rgba(255, 255, 255, 0.8);
}

.contenedorAcordeon .boton .contenedorImagenAcordeon {
  flex: 1;
  -ms-flex: 1;
  text-align: center;
  padding: 0;
}

.contenedorAcordeon .boton .contenedorImagenAcordeon img {
  height: 60px;
  width: auto;
  padding-right: 20px;
  padding-top: 10px;
}

.contenedorAcordeon .boton a {
  flex: 2;
  -ms-flex: 2;
  color: #034174;
}

.contenedorAcordeon .target {
  width: 100%;
  background-color: transparent;
  display: none;
  justify-content: center;
  align-items: flex-start;
  -ms-justify-content: center;
  -ms-align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(113, 178, 232, 0.5);
}

.contenedorAcordeon .target p {
  margin: 0;
  padding: 20px 30px;
  text-align: justify;
  width: 100%;
  color: black;
}

.contenedorAcordeon .target ul {
  padding: 20px;
  padding: 20px 40px;
}

.contenedorAcordeon .target ul > li {
  color: black;
}

.bloque {
  width: 100%;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  align-items: center;
  -ms-justify-content: center;
  -ms-align-items: center;
}

.bloque ul {
  padding: inherit;
}

.bloque img {
  height: auto;
  width: auto;
  margin: auto;
}

/*================================================================================================================
                                               SEGURIDAD
=================================================================================================================*/
#secciones.seguridad article {
  background-color: transparent;
}

#secciones.seguridad article:nth-child(odd) {
  background-color: rgba(240, 116, 17, 0.8);
  transition: all 0.3s;
}

#secciones.seguridad article:nth-child(even) {
  background-color: rgba(240, 116, 17, 0.5);
  transition: all 0.3s;
}

#secciones.seguridad article:hover {
  background-color: #f07411;
}

#seccion1S p {
  color: #333;
}

#seccion1S .contenidoSeccion div {
  float: left;
  width: 23%;
}

#seccion2S p {
  color: #333;
}

#seccion2S .boton {
  background-color: transparent;
  background-color: rgba(240, 116, 17, 0.2);
  border-bottom-color: rgba(240, 116, 17, 0.5);
}

#seccion2S .boton a {
  color: #F07411;
  font-weight: bold;
  text-align: center;
  padding: 10px;
}

#seccion2S .target {
  border: 2px solid rgba(240, 116, 17, 0.5);
}

#seccion2S .imagenColumna {
  max-width: 400px;
}

@media all and (max-width: 768px) {
  #seccion2S .imagenColumna {
    max-width: 200px;
  }
}

#seccion3S p {
  color: #333;
  text-align: justify;
}

#seccion3S h3 {
  color: #F07411;
}

#seccion3S a {
  color: #0681E9;
  display: block;
}

#seccion3S .imagen {
  background-color: transparent;
}

#seccion3S .imagen img {
  height: 150px;
  width: auto;
}

@media all and (max-width: 1024px) {
  #seccion3S .imagen {
    order: -1;
  }
}

#seccion3S hr {
  border: solid 1px rgba(240, 116, 17, 0.4);
  margin-top: 0px;
}

/*================================================================================================================
                                               AHORRO DE ENERGÍA
=================================================================================================================*/
#secciones.ahorro article {
  background-color: transparent;
}

#secciones.ahorro article:nth-child(odd) {
  background-color: rgba(46, 157, 24, 0.8);
  transition: all 0.3s;
}

#secciones.ahorro article:nth-child(even) {
  background-color: rgba(46, 157, 24, 0.5);
  transition: all 0.3s;
}

#secciones.ahorro article:hover {
  background-color: #2e9d18;
}

#seccion1AE p, #seccion1AE li {
  color: #333;
  text-align: justify;
}

#seccion1AE .contenidoSeccion article img {
  height: 150px;
  width: auto;
}

#seccion1AE .contenidoSeccion article.imagen img {
  height: 200px;
}

#seccion1AE .contenidoSeccion ul {
  padding-left: 50px;
}

#seccion2AE p, #seccion2AE li {
  color: #333;
  text-align: justify;
}

#seccion2AE p.color {
  color: #2e9d18;
}

#seccion3AE .boton {
  border-color: white;
}

#seccion3AE .boton a {
  color: #333;
  font-weight: bold;
}

#seccion3AE .boton.electrica {
  background-color: rgba(46, 157, 24, 0.6);
}

#seccion3AE .boton.gas {
  background-color: rgba(255, 69, 0, 0.6);
}

#seccion3AE .boton.agua {
  background-color: rgba(6, 129, 233, 0.6);
}

#seccion3AE .target.electrica {
  border-color: rgba(46, 157, 24, 0.6);
}

#seccion3AE .target.gas {
  border-color: rgba(255, 69, 0, 0.6);
}

#seccion3AE .target.agua {
  border-color: rgba(6, 129, 233, 0.6);
}

#seccion3AE .flex {
  align-items: center;
  justify-content: center;
}

#seccion3AE .flex .contenedorAcordeon {
  margin: 0;
}

/*================================================================================================================
                                               SOFTWARE
=================================================================================================================*/
#secciones.software article {
  background-color: transparent;
}

#secciones.software article:nth-child(odd) {
  background-color: rgba(126, 43, 191, 0.8);
  transition: all 0.3s;
}

#secciones.software article:nth-child(even) {
  background-color: rgba(126, 43, 191, 0.5);
  transition: all 0.3s;
}

#secciones.software article:hover {
  background-color: #7e2bbf;
}

#seccion1DS {
  background-image: url(../imagenes/dise%C3%B1oInd.jpg);
}

#seccion1DS p {
  color: #333;
}

#seccion1DS article div {
  margin-bottom: 2px;
  padding: 10px 20px;
  width: 100%;
}

#seccion1DS article div h3 {
  margin: 10px;
}

#seccion1DS #gris {
  background-color: rgba(204, 204, 204, 0.8);
}

#seccion1DS #gris h3 {
  color: #7e2bbf;
}

#seccion1DS #amarillo {
  background-color: rgba(241, 196, 15, 0.8);
}

#seccion1DS #amarillo h3 {
  color: #DBDBDB;
}

#seccion1DS #verde {
  background-color: rgba(46, 157, 24, 0.8);
}

#seccion1DS #verde h3 {
  color: #FFC043;
}

#seccion1DS #naranja {
  background-color: rgba(240, 116, 17, 0.8);
}

#seccion1DS #naranja h3 {
  color: #37E43D;
}

#seccion1DS #rojo {
  background-color: rgba(255, 0, 0, 0.8);
}

#seccion1DS #rojo h3 {
  color: #ccc;
}

#seccion1DS #morado {
  background-color: rgba(126, 43, 191, 0.8);
}

#seccion1DS #morado p {
  color: white;
}

#seccion1DS #morado a {
  color: yellow;
}

#seccion2DS {
  background-image: url(../imagenes/web.jpg);
}

#seccion2DS h3 {
  color: #F07411;
}

#seccion2DS .color {
  color: #F07411;
}

#seccion2DS p, #seccion2DS li {
  color: #333;
  text-align: justify;
  padding-bottom: 5px;
}

#seccion2DS article > ul {
  margin-left: 0px;
  padding-left: 0px;
}

#seccion2DS article > ul > li {
  list-style: none;
}

#seccion2DS .contenidoSeccion {
  background-color: rgba(255, 255, 255, 0.6);
}

#seccion3DS {
  background-image: url(../imagenes/medida.jpg);
}

#seccion3DS p, #seccion3DS li {
  color: #333;
  text-align: justify;
}

#seccion3DS .color {
  color: #7e2bbf;
}

#seccion3DS .contenidoSeccion {
  background-color: rgba(255, 255, 255, 0.6);
}

@media all and (max-width: 1024px) {
  #seccion3DS .imagenColumna {
    width: 50%;
  }
}

@media all and (max-width: 500px) {
  #seccion3DS .imagenColumna {
    width: 100%;
  }
}

#seccion4DS {
  background-image: url(../imagenes/computo.jpg);
}

#seccion4DS p, #seccion4DS li {
  color: #333;
  text-align: justify;
}

#seccion4DS .color {
  color: green;
}

#seccion4DS .contenidoSeccion {
  background-color: rgba(255, 255, 255, 0.6);
}

/*================================================================================================================
                                               PROMOCIONES
=================================================================================================================*/
#seccion1P {
  margin-top: -5px;
  /*    background-image: url("../imagenes/promociones.jpg");*/
  background-color: #019875;
}

#seccion1P .contenidoSeccion {
  margin-bottom: 20px;
}

/*================================================================================================================
                                               CONTACTO
=================================================================================================================*/
#seccion1C .flex-columnas article {
  width: 500px;
}

#seccion1C .flex-columnas article img {
  width: 100%;
  height: auto;
  padding: 30px 10px 0px;
}

#seccion1C .flex-columnas article form {
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  border: 1px solid #bbb;
  padding: 10px;
  border-radius: 10px;
}

#seccion1C .flex-columnas article div {
  width: 100%;
  margin: 0;
  padding: 10px;
}

#seccion1C .flex-columnas article div label {
  text-align: left;
  display: block;
}

#seccion1C .flex-columnas article div label, #seccion1C .flex-columnas article div input, #seccion1C .flex-columnas article div textarea {
  width: 100%;
  padding: 0.5em;
}

#seccion1C .flex-columnas article div input, #seccion1C .flex-columnas article div textarea {
  border: solid 1px #bbb;
  border-radius: 5px;
}

#seccion1C .flex-columnas article div input[type="submit"] {
  background-color: #eee;
  padding: 10px;
  font-size: 18px;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s;
}

#seccion1C .flex-columnas article div input[type="submit"]:hover {
  background-color: #ccc;
}

#seccion1C .flex-columnas article #nombre, #seccion1C .flex-columnas article #mensaje {
  width: 100%;
}

#seccion1C .flex-columnas article #correo, #seccion1C .flex-columnas article #telefono {
  width: 50%;
  margin: 0;
}

@media all and (max-width: 900px) {
  #seccion1C .flex-columnas {
    flex-direction: column;
    align-items: stretch;
    -ms-flex-direction: column;
    -ms-align-items: stretch;
  }
  #seccion1C .flex-columnas article {
    width: 100%;
  }
}

/*================================================================================================================
                                               Importante
=================================================================================================================*/
section p, section li, article p {
  text-align: justify;
}

/*================================================================================================================
                                                MEDIA QUERYS
=================================================================================================================*/
@media all and (min-width: 760px) {
  #secciones article {
    width: 280px;
    height: 100px;
    margin: 10px;
    border-radius: 5px;
  }
}

@media all and (min-width: 1300px) {
  .contenedor {
    width: 1200px;
  }
}
