@charset "UTF-8";
.contenido {
  margin-top: 3.5rem;
}

#button,
#button-cerrar {
  border: none;
  background: none;
}

header {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(70, 66, 66, 0.12);
  z-index: 99999999 !important;
}

.lista-header {
  margin-left: 2rem !important;
}

#contacto-boton {
  background: #000842;
  color: white;
  transition: all 0.5s ease-in-out;
  border: none;
  border-radius: 10px;
  padding-left: 1.5rem;
  padding-top: 0.5rem;
  padding-right: 1.5rem;
  padding-bottom: 0.5rem;
}

#contacto-boton:hover {
  background: #00052c;
  color: white;
  transition: all 0.5s ease-in-out;
}

.lista-header-li {
  font-size: 20px;
  font-weight: 600;
  transition: all 0.5s ease-in-out;
  padding: 0.5rem;
  border-radius: 10px;
  color: rgb(20, 20, 20);
  text-decoration: none;
}

.lista-header-li:hover {
  background: #000842;
  color: white;
  transition: all 0.5s ease-in-out;
}

.sidebar {
  background: white;
  height: 100vh;
  width: 250px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: transform 0.3s ease;
  transform: translateX(-100%);
  border-radius: 20px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
}

.active {
  /* Cambiamos d-block por active */
  transform: translateX(0) !important;
  /* Visible */
}

.sidebar-item {
  border-radius: 20px;
  transition: all 0.5s ease-in-out;
}

.sidebar-item:hover {
  background: rgba(179, 177, 177, 0.363);
  transition: all 0.5s ease-in-out;
}

.sidebar-item a {
  text-decoration: none;
  color: #000842;
}

.sidebar-icon i {
  font-size: 2rem;
  color: #02c4e2;
}

.texto-banner {
  position: absolute;
  top: 60%;
}

.icono {
  width: 25px;
  height: 25px;
  fill: white !important;
}

.margintop-4 {
  margin-top: -4rem;
}

.contenido-welcome {
  background: white;
  position: relative;
  padding: 1rem;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  z-index: 99;
}

.service-list {
  background: #E6F6FE !important;
  padding-top: 6rem;
  padding-bottom: 0.5rem;
}

.service-item {
  padding-top: 6rem;
  margin-bottom: 3rem;
}

.margintop-8 {
  margin-top: -8rem;
}

.bradius15 {
  border-radius: 15px;
}

swiper-container {
  width: 100%;
  height: 100%;
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#contacto,
.copywright {
  background: #011632;
}

.servicios-titulo {
  margin-bottom: 4rem;
}

.contenedor {
  width: auto;
  height: auto;
  overflow: hidden !important;
  display: flex !important;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.caroussel-logo {
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.caroussel-logo svg {
  fill: #636363;
  transition: all 0.5s ease;
}

.caroussel-logo svg:hover {
  fill: #127AB0;
  transition: all 0.5s ease;
}

.movil {
  display: flex;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  /* Posición inicial */
  100% {
    transform: translateX(-100%);
  }
  /* Se desplaza la mitad de los logos */
}
@media (min-width: 991px) {
  .contenido-welcome {
    position: absolute;
    width: 40%;
    top: 12%;
    right: 5%;
    border-radius: 20px;
    z-index: 99999;
  }
  .texto-banner {
    top: 25%;
    width: 50%;
    padding: 1rem;
  }
  .services-description {
    margin-top: 2.5rem !important;
  }
}
@media (min-width: 1100px) {
  .contenido-welcome {
    position: absolute;
    width: 40%;
    top: 20%;
    right: 5%;
    border-radius: 20px;
  }
  .texto-banner {
    top: 45%;
    width: 50%;
  }
}/*# sourceMappingURL=styles.css.map */