* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: auto;
  width: auto;
  scroll-behavior: smooth;
}

body {
  height: auto;
  width: auto;
}

a {
  color: #003541;
  text-decoration: none;
  font-size: 17px;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 500;
}

ul {
  list-style: none;
}

/*TEXTOS*/

h1 {
  font-family: "Nunito", "sans-serif";
  font-weight: 700;
  font-size: 28px;
  color: #00a4f3;
  margin-bottom: 30px;
}

h3 {
  font-family: "Nunito", "sans-serif";
  font-weight: 700;
  font-size: 20px;
  color: #646464;
  margin-bottom: 20px;
}

.cuerpo-texto {
  font-family: "Nunito", "sans-serif";
  font-weight: 400;
  font-size: 20px;
  color: #757575;
  width: 80%;
  margin-bottom: 56px;
  margin-left: auto;
  margin-right: auto;
}

.cuerpo-texto-2 {
  font-family: "Nunito", "sans-serif";
  font-weight: 500;
  font-size: 18px;
  color: #00778c;
  margin-bottom: 0px;
}

/*CONTAINER - MENÚ*/

.container {
  position: fixed;
  z-index: 4;
  background-color: white;
  width: 100%;
  height: 50px;
  border-bottom: solid 2px rgb(0, 157, 248);
}

.nav-brand {
  width: 110px;
}

.menu {
  display: flex;
  position: fixed;
  z-index: 1;
  top: 55%;
  transform: translateY(-50%);
  width: 250px;
  height: 500px;
  background: linear-gradient(0deg, rgb(0, 138, 249) 0%, rgb(0, 199, 247) 100%);
  border-radius: 0px 300px 300px 0px;
  flex-direction: column;
  justify-content: center;
  padding-left: 40px;
  filter: drop-shadow(10px 0px 11px rgba(33, 1, 1, 0.24));
}

.menu ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu ul li {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: white;
  font-size: 18px;
  margin-bottom: 18px;
  margin-top: 18px;
  opacity: 70%;
  transition: 200ms;
}

.menu ul li:hover {
  opacity: 100%;
  cursor: pointer;
  transition: 200ms;
}

#clientes-alianzas {
  line-height: 35px;
}

.nav-main {
  display: flex;
  height: 50px;
  flex-direction: row;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
}

/*SHOWCASE*/

.showcase {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #00a4f3;
  background-repeat: no-repeat;
  background-size: cover 110%;
  background-position-x: -100px;
}

.showcase video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: smooth 2s ease-in;
  filter: brightness(1.1);
}

@keyframes smooth {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.logo-info {
  position: absolute;
  display: fle;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 250px;
}

#logo-principal {
  width: 800px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 46vh;
  transform: translateY(-55%);
}

/*
#logo-principal {
  width: fit-content;
  padding-left: 20%;
  padding-right: 20%;
  transform: translateY(-48%);
  margin-top: 52vh;
}
*/

.reportes {
  display: flex;
  width: 892px;
  height: 132px;
  background-color: rgba(19, 19, 19, 0.281);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-33%);
  justify-content: space-evenly;
  align-items: center;
}

.linea {
  width: 1px;
  height: 50%;
  background-color: white;
  opacity: 35%;
}

.reporte {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 300ms ease-in-out;
}

.dato {
  width: 115px;
  font-family: "Nunito", "sans-serif";
  font-weight: 400;
  font-size: 16px;
  color: white;
  margin-bottom: 5px;
}

.reporte span {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: "Nunito", "sans-serif";
  font-weight: 600;
  font-size: 32px;
  color: white;
}

.cifra {
  font-family: "Nunito", "sans-serif";
  font-weight: 600;
  font-size: 32px;
  color: white;
}

.cifra-2 {
  font-family: "Nunito", "sans-serif";
  font-weight: 600;
  font-size: 32px;
  color: white;
}

.icon-reporte {
  width: 45px;
  filter: invert(1);
  margin-right: 5px;
  opacity: 40%;
  transition: all 300ms ease-in-out;
}

.reporte:hover .icon-reporte {
  opacity: 100%;
  transition: all 300ms ease-in-out;
}

.reporte:hover {
  background-color: rgba(0, 0, 0, 0.267);
  cursor: default;
  height: 90%;
  border-radius: 10px;
  padding: 15px;
  transition: all 300ms ease-in-out;
}

/*
@keyframes cambio-opacidad {

  0%{opacity:40%}
  50%{opacity:100%}
  100%{opacity:40%}
}
*/

.canarias {
  width: 30px;
  opacity: 50%;
  transition: 200ms;
}

.canarias:hover {
  opacity: 100%;
}

/*ESTO ES*/

.esto-es {
  width: 100%;
  height: fit-content;
  background-color: #216194;
  padding-left: 320px;
  padding-right: 40px;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

.esto-es h1 {
  color: white;
}

.esto-es .cuerpo-texto {
  color: rgba(255, 255, 255, 0.877);
}

iframe {
  width: 560px;
  height: 315px;
  border-radius: 15px;
  margin-right: 40px;
}

.cuentas-con {
  display: inline-block;
  text-align: center;
  background-color: white;
  border-radius: 20px;
  width: 400px;
  height: 333px;
  padding-top: 25px;
  padding-bottom: 25px;
  vertical-align: bottom;
  padding-left: 30px;
  padding-right: 30px;
}

.cuentas-con p {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(92.15deg, #0c6ea6 10%, #3cd0ff 50%, #0c6ea6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cuentas-con hr {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #38c8f8;
}

.cuentas-con ul {
  margin-top: 20px;
  list-style-image: url(bullet.svg);
  list-style-position: outside;
}

.cuentas-con ul li {
  margin-bottom: 10px;
  text-align: left;
}

.contenedor-ul {
  display: block;
  text-align: center;
  width: 270px;
  margin-right: auto;
  margin-left: auto;
}

.contenedor-ul span {
  margin-left: 10px;
}

/*NUESTRAS FUNCIONES*/

.nuestras-funciones {
  width: 100%;
  height: fit-content;
  background-color: rgb(255, 255, 255);
  padding-left: 320px;
  padding-right: 40px;
  padding-top: 80px;
  padding-bottom: 40px;
  text-align: center;
}

/*CARRUSEL*/

.carrusel {
  position: relative;
  width: 100%;
  height: fit-content;
}

.grupo-funciones {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 420px;
  align-items: center;
}

.icono-funciones {
  width: 40px;
  margin-right: 20px;
  transition: all 200ms ease-in-out;
}

.funcion {
  display: flex;
  font-family: "Nunito", "sans-serif";
  font-weight: 500;
  font-size: 16px;
  text-align: left;
  color: #646464;
  align-items: center;
  background: white;
  width: 300px;
  height: 52px;
  margin-bottom: 15px;
  padding-right: 30px;
  padding-left: 10px;
  border-radius: 5px;
  transition: all 200ms ease-in-out;
  box-shadow: 0px 1px 14px 5px rgba(0, 0, 0, 0.13);
  position: relative;
  z-index: 1;
}

.funcion:hover {
  transform: scale(1.2);
  transition: all 200ms ease-in-out;
  cursor: default;
  color: white;
  background: #00a4f3;
}

.funcion:hover .icono-funciones {
  filter: brightness(3);
  transition: all 200ms ease-in-out;
}

/*flex: 1 1 80px;*/

.carrusel .carrusel__item,
.carrusel .carrusel__item--hidden {
  display: none;
}

.carrusel .carrusel__item--visible {
  display: block;
  animation: fadeVisibility 0.5s;
}

.carrusel .carrusel__actions {
  display: flex;
  width: 100%;
  justify-content: space-between;
  position: absolute;
  top: 130px;
  align-items: center;
}

.carrusel .carrusel__actions button {
  background-color: #d8d8d8;
  border-radius: 50px;
  border: 0;
  font-weight: bold;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 2;
  transition: 300ms;
}

.carrusel .carrusel__actions button:hover {
  transform: scale(1.2);
  background-color: #adadad;
  transition: 300ms;
}

.carrusel .carrusel__actions button#carousel__button--prev {
  margin-left: 20px;
}

.carrusel .carrusel__actions button#carousel__button--next {
  margin-right: 20px;
}

.carrusel__actions #prev {
  display: block;
  transform: rotate(270deg);
  width: 20px;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 12px;
  margin-left: auto;
  filter: invert(1);
}

.carrusel__actions #next {
  display: block;
  transform: rotate(90deg);
  width: 20px;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: auto;
  margin-left: 12px;
  filter: invert(1);
}

@keyframes fadeVisibility {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: opacity linear;
  }
}

/*COMPONENTES*/

.componentes {
  width: 100%;
  height: fit-content;
  background: linear-gradient(
    114.34deg,
    rgba(74, 214, 233, 0) 22.45%,
    #6ea8ff 101.9%
  );
  padding-left: 320px;
  padding-right: 40px;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

.grupo-modulos {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.modulo {
  width: 200px;
  flex-basis: 220px;
  margin-bottom: 30px;
}

.rectangulo {
  background: #00a4f3;
  width: 200px;
  height: 50px;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  transition: all 200ms ease-in-out;
}

.pointer {
  background: #00a4f3;
  width: 30px;
  height: 23px;
  transform: rotate(45deg);
  border-radius: 0px 0px 5px 0px;
  margin-top: -17px;
  margin-left: auto;
  margin-right: auto;
  transition: all 200ms ease-in-out;
}

.circulo {
  background: white;
  width: 200px;
  height: 170px;
  margin-top: -30px;
  border-radius: 10px;
  box-shadow: 0px 0px 9px 5px rgba(0, 0, 0, 0.11);
  margin-left: auto;
  margin-right: auto;
  transition: all 200ms ease-in-out;
}

.img-modulo {
  width: 115px;
  margin-top: 35px;
  filter: invert(60%) sepia(58%) saturate(4439%) hue-rotate(167deg)
    brightness(94%) contrast(105%);
}

.texto-rectangulo {
  font-family: "Nunito", "sans-serif";
  font-weight: 600;
  font-size: 18px;
  color: white;
  line-height: 50px;
  position: relative;
  z-index: 1;
  transition: all 200ms ease-in-out;
}

#interconexion {
  font-size: 16px;
  line-height: 20px;
  padding-top: 5px;
}

.modulo:hover .img-modulo {
  filter: invert(100%) sepia(100%) saturate(15%) hue-rotate(334deg)
    brightness(106%) contrast(103%);
  transform: scale(1.2);
}

.modulo:hover .circulo {
  background: #00a4f3;
  cursor: pointer;
  transition: all 200ms ease-in-out;
}

.modulo:hover .rectangulo {
  background: rgb(255, 255, 255);
}

.modulo:hover .pointer {
  background: rgb(255, 255, 255);
}

.modulo:hover .texto-rectangulo {
  color: #00a4f3;
  cursor: pointer;
}

#overlay {
  position: absolute;
  display: none;
  width: 100%;
  height: 110%;
  background-color: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(60px);
  z-index: 3;
  cursor: pointer;
  border-radius: 20px;
  animation: fadeInFromNone 0.5s;
  margin-top: -20px;
  box-shadow: 0px 0px 13px 9px rgba(0, 0, 0, 0.1);
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 35px;
  cursor: default;
}



@keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0;
  }

  1% {
    display: block;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: 1;
  }
}


.superpuesto{
  position: absolute;
  display: none;
  width: 100%;
  height: 110%;
  background-color: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(60px);
  z-index: 3;
  cursor: pointer;
  border-radius: 20px;
  animation: fadeInFromNone 0.5s;
  margin-top: -20px;
  box-shadow: 0px 0px 13px 9px rgba(0, 0, 0, 0.1);
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 35px;
  cursor: default;

}

.detalle1 {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
  justify-content: space-between;
}

.detalle1 span h1 {
  display: inline-block;
}

.titulo-icono{
  display:flex;
  align-items: center;
}

.contenedor-icono{
  display: flex;
  width: 45px;
  height: 45px;
  background-color:#00a4f3;
  border-radius: 100%;
  align-items: center;
  align-content: center;
  flex-direction: column;
  justify-content: center;
}


  

.contenedor-icono img{
  width:35px;
  display: block;
  filter: invert(1);  
}

.titulo-detalle{
  line-height: 60px;
  margin-bottom: 0px;
  margin-left: 20px;
}


.cerrar{
  width:30px;
  opacity: 15%;
  cursor: pointer;
  transition: 200ms;
}

.cerrar:hover{
  opacity: 25%;
  transition: 200ms;
}

.detalle2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  height: 350px;
}


.img-detalle{
  width: 400px;
  height:100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0px 0px 13px 9px rgba(0, 0, 0, 0.1);
  transition: all 200ms ease-in-out;
  margin-right: 50px;
  cursor: pointer;
}

#lightbox{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99;
  background:  rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity ease 0.4s;
}

#lightbox.show {
  visibility: visible;
  opacity: 1;
}

#lightbox img{
  height: 80%;
  max-width: 90%;
  object-fit: contain;
  margin: auto;
  border-radius: 10px;
}


.img-detalle:hover{
  box-shadow: 0px 0px 13px 9px rgba(0, 0, 0, 0.2);
  transition: all 200ms ease-in-out;
  
}

.texto-completo{
  text-align: left;
}

.descripcion-detalle{
  font-family: "Nunito", "sans-serif";
    font-weight: 400;
    font-size: 16px;
    color: #757575;
  margin-bottom: 25px;
}



.caracteristica{
  display: flex;
    font-family: "Nunito", "sans-serif";
    font-weight: 500;
    font-size: 14px;
    text-align: left;
    color: #646464;
    align-items: center;
    background: white;
    width: 265px;
    height: 34px;
    margin-bottom: 15px;
    padding-right: 30px;
    padding-left: 10px;
    border-radius: 5px;
    transition: all 200ms ease-in-out;
    box-shadow: 0px 1px 14px 5px rgb(0 0 0 / 13%);
    position: relative;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
}


.caracteristica img{
  width:27px;
  opacity: 40%;
  margin-right: 10px;
}

#overlay2 .detalle2{
  justify-content: space-around;
}

#overlay2 .detalle2 .texto-completo{
  width: 375px;
}

#descripcion-detalle-2{
  margin-bottom: 0px;
}

#overlay2 .detalle2 .img-detalle{
  height: 200px;
}



#overlay3 .detalle2 .img-detalle{
  height: 200px;
}

#overlay3 .detalle2 .texto-completo .lista-detalle .caracteristica{
  width:360px;
}


#overlay4 .detalle2 img{
  width: 148px;
  margin-left: 107px;
  box-shadow: none;
  object-fit: contain;
  filter: invert(65%) sepia(6%) saturate(266%) hue-rotate(164deg) brightness(89%) contrast(87%);
}

#overlay4 .detalle2 img:hover{
  box-shadow: none;
}

#overlay4 .detalle2{
  justify-content: center;
}

#overlay4 .descripcion-detalle{
  width: 330px;
}


#overlay5 .detalle2 img{
  height: 88%;
  margin-left: 70px;
  margin-right: 70px;
  box-shadow: none;
  object-fit: contain;
  filter: invert(51%) sepia(1%) saturate(0%) hue-rotate(19deg) brightness(90%) contrast(90%);
}

#overlay5 .detalle2 img:hover{
  box-shadow: none;
}

#overlay5 .detalle2 .texto-completo .lista-detalle .caracteristica img{
  margin-left: 0px;
  margin-right: 10px;
  filter:none;
}

#overlay6 .detalle2 img{
  width: 342px;
  margin-left: 50px;
  box-shadow: none;
  object-fit: contain;
  filter: invert(51%) sepia(1%) saturate(0%) hue-rotate(19deg) brightness(90%) contrast(90%);
}

#overlay6 .detalle2 img:hover{
  box-shadow: none;
}


/*CLIENTES*/

.clientes {
  width: 100%;
  height: fit-content;
  background-color: rgb(255, 255, 255);
  padding-left: 320px;
  padding-right: 40px;
  padding-top: 80px;
  padding-bottom: 65px;
  text-align: center;
}

label {
  display: block;
  width: 270px;
  perspective: 1000px;
  transform-style: preserve-3d;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  margin-bottom: 40px;
  flex-basis: 350px;
  height: 215px;
}

.flip-card {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: all 300ms ease-in-out;
  z-index: 1;
}

.flip-card .front,
.flip-card .back {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #fff;
  -webkit-box-shadow: 0px 0px 16px 4px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 0px 16px 4px rgba(0, 0, 0, 0.16);
  backface-visibility: hidden;
  border-radius: 10px;
}

.flip-card .back {
  transform: rotateX(180deg);
  color: #000;
  background: #00a4f3;
}

.front {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

label:hover {
  transform: scale(1.2);
  transition: all 300ms ease-in-out;
  z-index: 2;
}

label:hover .front img {
  opacity: 60%;
}

input {
  display: none;
}

:checked + .flip-card {
  transform: rotateX(180deg);
}
label:hover :checked + .flip-card {
  transform: rotateX(175deg);
}

.lista-clientes {
  display: flex;
  width: 787px;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-around;
  margin-top: 68px;
  flex-wrap: wrap;
}

.front img {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 40%;
  transition: all 300ms ease-in-out;
}

.back {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.back p {
  font-family: "Nunito", "sans-serif";
  font-weight: 500;
  font-size: 20px;
  color: white;
  display: inline-block;
  width: 200px;
}

.marca {
  font-weight: 800;
}

.alcaldia {
  font-weight: 500;
  font-size: 18px;
  margin-top: 20px;
}

.año {
  font-family: "Nunito", "sans-serif";
  font-weight: 500;
  font-size: 18px;
}

/*ALIANZAS*/

.alianzas {
  width: 100%;
  height: fit-content;
  background-color: #006ba0;
  padding-left: 320px;
  padding-right: 40px;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

.alianzas h1 {
  color: white;
}

.alianzas .cuerpo-texto {
  color: white;
}

.lista-alianzas {
  display: flex;
  justify-content: center;
  margin-top: 68px;
  flex-wrap: wrap;
}

.lista-alianzas img {
  filter: invert(1);
  width: 200px;
  opacity: 60%;
  transition: 200ms;
  flex-basis: 222px;
  height: 100px;
}

.lista-alianzas img:hover {
  opacity: 100%;
  transition: 200ms;
}

/*FOOTER*/

footer {
  width: 100%;
  height: fit-content;
  background-color: rgb(233, 233, 233);
  padding-top: 80px;
  padding-bottom: 20px;
  padding-left: 320px;
  text-align: center;
}

.dato-contacto-footer {
  display: flex;
  width: 100%;
  font-family: "Nunito", "sans-serif";
  font-weight: 500;
  font-size: 16px;
  color: #727272;
  align-items: center;
}

#separador-footer {
  width: 90%;
  opacity: 30%;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

#producto {
  font-family: "Nunito", "sans-serif";
  font-weight: 500;
  font-size: 15px;
  color: #9e9e9e;
  margin-top: 15px;
}

.icono-contacto-footer {
  width: 26px;
  opacity: 40%;
  margin-right: 10px;
}

footer span {
  display: block;
  width: 237px;
  margin-left: auto;
  margin-right: auto;
}

/*M  E  D  I  A*/

@media (min-width: 1477px) {
  .cuerpo-texto {
    width: 675px;
  }

  /*ESTO ES*/

  /*NUESTRAS FUNCIONES*/

  .carrusel {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }

  /*COMPONENTES*/

  .grupo-modulos {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-evenly;
  }

  .modulo {
    flex-basis: 25%;
  }

  /*CLIENTES*/

  .lista-clientes {
    width: 835px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-evenly;
  }

  /*ALIANZAS*/

  .lista-alianzas {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-evenly;
  }

  .lista-alianzas img {
    flex-basis: 25%;
  }
}

@media (max-width: 1380px) {
  /*SHOWCASE*/

  #logo-principal {
    width: 667px;
  }

  /*ESTO-ES*/

  iframe {
    margin-right: 0px;
    margin-bottom: 20px;
  }

  .cuentas-con {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }

  /*CLIENTES*/
}

@media (min-width: 1001px) and (max-width: 1256px) {
  /*COMPONENTES*/

  .modulo {
    flex-basis: 50%;
  }

  .img-modulo {
    width: 93px;
  }

  .circulo {
    width: 154px;
    height: 140px;
  }
}

@media (max-width:1256px){

  .detalle1{
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

.detalle2{
  flex-direction: column-reverse;
  height: auto;
  margin-top: 50px;
}


.img-detalle{
  margin-top:50px;
  margin-right: 0px;
  margin-left: 0px;
  width: 80%;
}

.descripcion-detalle{
  width: 80%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.lista-detalle{
  margin-top: 50px;
}

  .cerrar{
    position: absolute;
    right: 50px;
  }

#overlay4{
  height: 80%;
}

  #overlay4 .detalle2{
    flex-direction: column;
  }

  #overlay4 .detalle2 img{
    margin-left: 0px;
    margin-top:20px;
      }

      #overlay5 .detalle2 img {
        width: 50%;
        max-height: 289px;
margin-top:25px;
      }

      #overlay5 .detalle2 .texto-completo .lista-detalle .caracteristica img{
        width: 27px;
        margin-top: 0px;
      }

  

  #overlay6 .detalle2 img{
    margin-left: 0px;
    width: 315px;
    margin-top: 31px;
  } 

  #overlay7{
    height:80%;
  }

}

@media (max-width: 1240px) {
  .reportes {
    width: 728px;
  }
}

@media (max-width: 1200px) {
  /*CLIENTES*/

  .lista-clientes {
    width: 624px;
  }

  label {
    flex-basis: 274px;
    height: 173px;
  }

  label:hover {
    transform: scale(1.15);
  }

  .back p {
    font-size: 18px;
  }

  .alcaldia {
    font-size: 16px;
  }

  .año {
    font-size: 16px;
  }
}

@media (min-width: 1001px) and (max-width: 1107px) {
  /*NUESTRAS FUNCIONES*/

  #carrusel__button--prev {
    margin-left: -32px;
  }

  #carrusel__button--next {
    margin-right: -32px;
  }
}

@media (max-width: 1000px) {
  .menu {
    display: none;
  }

  .nav-main {
    justify-content: center;
  }

  .canarias {
    position: absolute;
    right: 20px;
    top: 6px;
  }

  /*SHOWCASE*/

  .showcase {
    padding-left: 0px;
  }

  .logo-info {
    padding-left: 0px;
  }

  #logo-principal {
    width: 70%;
  }

  .reportes {
    width: 609px;
    height: 105px;
    left: 50%;
    transform: translateX(-50%);
  }

  .dato {
    width: 98px;
    font-size: 13px;
  }

  .cifra,
  .cifra-2 {
    font-size: 25px;
  }

  .reporte span {
    font-size: 25px;
  }

  .icon-reporte {
    width: 36px;
  }

  /*ESTO ES*/
  .esto-es {
    padding-left: 40px;
  }

  iframe {
    margin-right: 0px;
    margin-bottom: 20px;
  }

  /*NUESTRAS FUNCIONES*/

  .nuestras-funciones {
    height: fit-content;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .carrusel {
    height: auto;
  }

  .grupo-funciones {
    height: 660px;
  }

  .carrusel .carrusel__actions {
    top: 276px;
  }

  /*FUNCIONES*/

  .funciones {
    padding-left: 40px;
  }

  /*COMPONENTES*/

  .componentes {
    padding-left: 40px;
  }

  .grupo-modulos {
    width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .modulo {
    flex-basis: 50%;
  }

  .img-modulo {
    width: 93px;
  }

  .circulo {
    width: 154px;
    height: 140px;
  }

  /*CLIENTES*/

  .clientes {
    padding-left: 40px;
  }

  /*ALIANZAS*/

  .alianzas {
    padding-left: 40px;
  }

  /*FOOTER*/

  footer {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 850px) {
}

@media (max-width: 800px) {
  /*NUESTRAS FUNCIONES*/

  .nuestras-funciones {
    padding-left: 20px;
    padding-right: 20px;
  }

  .grupo-funciones {
    height: 880px;
  }

  .funcion {
    width: 265px;
    height: 58px;
    text-align: left;
  }

  .carrusel .carrusel__actions {
    top: 373px;
  }
}

@media (max-width: 720px) {
  /*CLIENTES*/

  .lista-clientes {
    width: 374px;
  }
}

@media (max-width: 700px) {
  /*SHOWCASE*/

  .showcase {
    height: 75vh;
  }
  #logo-principal {
    transform: translateY(-25%);
    margin-top: 25vh;
  }

  .reportes {
    width: 316px;
    height: 203px;
    flex-wrap: wrap;
    align-content: stretch;
    bottom: 35px;
  }

  #linea-2 {
    display: none;
  }

  .linea {
    height: 30%;
  }

  .reporte {
    flex-basis: 40%;
    height: auto;
  }

  .reporte:hover {
    padding: 10px;
    height: auto;
  }

  .reporte span {
    font-size: 23px;
  }

  .cifra,
  .cifra-2 {
    font-size: 23px;
  }

  /*ESTO ES*/

  iframe {
    width: 400px;
    height: 225px;
  }

  /*COMPONENTES*/

  .grupo-modulos {
    width: 100%;
  }
}


@media (max-width:600px){

  .img-detalle{
    width: 100%;
  }

.detalle1 span h1{
  width: 213px;
    line-height: 38px;
    text-align: center;
    font-size: 25px;
}

  .cerrar{
    width: 25px;
    right: 35px;

  }

  #overlay6 .detalle2 img {
    max-height: 240px;
  }

  

  
}

@media (max-width: 580px) {
  /*COMPONENTES*/

.grupo-modulos{
  justify-content: space-evenly;
}


  .modulo {
    flex-basis: 49%;
    margin-bottom: 40px;
  }


  .rectangulo {
    width: 170px;
  }

  .texto-rectangulo {
    font-size: 17px;
  }

  #interconexion{
    font-size:16px;
    width: 65%;
    margin: auto;
  }

  .texto-rectangulo{
    font-size: 17px;
  }

  .descripcion-detalle{
    font-size: 15px;
  }

  #overlay6 .detalle2 img {
    max-height: 196px;
  }



/*ALIANZAS*/

.alianzas{
  padding-left: 0px;
  padding-right: 0px;
}

.lista-alianzas{
  width:100%;
}

.lista-alianzas img{
  flex-basis: 41%;
    height: 90px;
}


  }

  


@media (max-width: 500px) {
  .cuerpo-texto {
    font-size: 16px;
    width: 90%;
  }

  /*SHOWCASE*/

  #logo-principal {
    margin-top: 25vh;
    width: 75%;
  }

  /*ESTO ES*/

  iframe {
    width: 250px;
    height: 141px;
  }

  /*ESTO ES*/
  .cuentas-con {
    width: 270px;
    padding-left: 48px;
    padding-right: 46px;
  }

  .contenedor-ul {
    width: 215px;
  }

  .cuentas-con .cuerpo-texto-2 {
    font-size: 16px;
  }

  /*NUESTRAS FUNCIONES*/
  .nuestras-funciones h1 {
    padding-left: 20px;
    padding-right: 20px;
  }


  /*COMPONENTES*/

  .componentes{
    padding-left: 0px;
    padding-right: 0px;

  }

  .modulo{
    flex-basis:40%;
  }

  .rectangulo{
    width: 130px;
  }

  .texto-rectangulo{
    display: flex;
    font-size: 15px;
    width:84px;
    height: 100%;
    line-height: 18px;
    margin: auto;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center; 
  }

  #interconexion{
    font-size: 15px;
    width: 77%;
    margin: auto;
    line-height: 18px;
    padding-top: 0px;
  }

  .circulo{
    width:105px;
    height: 118px;
  }


  .img-modulo{
    width: 78px;
  }

  #overlay2 .detalle2 .texto-completo {
    width: 100%;
}

#overlay4 .descripcion-detalle{
  width: 100%;
}

  

  /*CLIENTES*/

  .lista-clientes {
    width: 220px;
  }

  .label {
    flex-basis: 242px;
    height: 148px;
  }
}

@media(max-width:470px){
  .cerrar{
    display: none;
  }
}

@media (max-width: 400px) {
  /*SHOWCASE*/

  .reportes {
    width: 262px;
  }

  .cifra,
  .cifra-2 {
    font-size: 21px;
  }

  .reporte span {
    font-size: 21px;
  }

  .reporte:hover {
    padding-left: 0px;
    padding-right: 0px;
  }

  .icon-reporte {
    width: 31px;
  }

  /*ESTO-ES*/
  .esto-es {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cuentas-con {
    padding-left: 10px;
    padding-right: 10px;
    width: 258px;
  }

  .cuentas-con ul {
    list-style-position: inside;
  }

  /*COMPONENTES*/

  .contenedor-icono{
    width: 35px;
    height: 35px;
  }

  .contenedor-icono img{
    width: 28px;
  }

  .detalle1 span h1{
    font-size: 21px;
  }


  #overlay2 .descripcion-detalle{
    font-size: 14px;
  }

  #overlay3 .detalle2 .texto-completo .lista-detalle .caracteristica{
  width:264px ;
}

#cambio-caracteristica{
  height: 54px;
}

#overlay3 .detalle2 .img-detalle{
  height: 145px;
  margin-top: 30px;
}

#overlay4 .detalle2 img {
  width: 124px;
}

  #overlay6 .detalle2 img {
    max-height: 166px;
  }

  #overlay5 .detalle2 img {
    width:auto;
    max-height:160px ;
    margin-top:12px;
    
  }

  #overlay7{
    height: 91%;
  }

  #overlay7 .detalle2 .img-detalle{
    height: 119px;
    margin-top:20px;
  }

  #overlay8 .descripcion-detalle{
    width: 100%;
    font-size: 14px;
  }

}

@media (max-width: 380px) {
  /*NUESTRAS FUNCIONES*/

  .nuestras-funciones {
    padding-left: 10px;
    padding-right: 10px;
  }

  .grupo-funciones {
    height: 1312px;
  }

  .funcion {
    font-size: 14px;
    width: 218px;
    height: 90px;
    text-align: center;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 12px;
    padding-bottom: 20px;
    flex-direction: column;
    justify-content: center;
  }

  .icono-funciones {
    margin-right: 0px;
    margin-bottom: 5px;
    margin-top: 5px;
  }

  .contenedor ul {
    width: 100%;
  }

  .contenedor ul span {
    margin-left: 0px;
  }

  .carrusel .carrusel__actions {
    top: 550px;
  }
}


@media (max-width:332px){
  #overlay6 .detalle2 img{
    width: auto;
  }
}