@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap");
::-webkit-scrollbar {
  width: 0px;
}

::-webkit-scrollbar {
  width: 0px;
}

* {
  box-sizing: border-box;
}

.snow-container {
  position: absolute;
  top: 0;
  overflow: hidden;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.snowflake {
  position: absolute;
  width: 25px;
  height: 25px;
  animation: fall linear infinite;
  z-index: 900;
}

@keyframes fall {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100vh);
  }
}
body {
  margin: 0px;
  font-family: "Space Grotesk";
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.scroll-buton {
  width: 50px;
  height: 50px;
  background-color: black;
  border: 2px solid #2894ff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 100px;
  right: 10px;
  border-radius: 8px;
  cursor: pointer;
  visibility: hidden;
  z-index: 999;
}
.scroll-buton svg {
  width: 25px;
  height: 25px;
  color: #2894ff;
}

.active-btn {
  visibility: visible;
}

.mensaje-buton {
  width: 50px;
  height: 50px;
  background-color: black;
  border: 2px solid #2894ff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 20px;
  right: 10px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 999;
}
.mensaje-buton:hover {
  transform: sca;
}
.mensaje-buton svg {
  width: 25px;
  height: 25px;
  color: rgb(14, 166, 14);
}

.nav {
  width: 100vw;
  height: 100px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding-left: 25px !important;
  padding-right: 25px !important;
  position: fixed;
  top: 0px;
  z-index: 100;
}
@media screen and (min-width: 786px) {
  .nav {
    justify-content: center;
    border: 0px;
    position: fixed;
    height: 100px;
  }
  .nav .enlaces-index {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .nav .enlaces-index a {
    display: inline !important;
    color: white;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
  }
  .nav .enlaces-index a:hover {
    border-bottom: 2px solid white;
  }
  .nav .enlaces-index img {
    width: 100px;
  }
}
.nav .enlaces-index {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 1000px) {
  .nav .enlaces-index {
    gap: 30px;
  }
}
.nav .enlaces-index a {
  display: none;
}
.nav .enlaces-index img {
  width: 100px;
}

.nav-black {
  background-color: black !important;
}

.content-info {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 520px) {
  .content-info {
    flex-flow: row nowrap;
    justify-content: center !important;
    gap: 20px;
  }
}
@media screen and (min-width: 800px) {
  .content-info {
    gap: 50px;
  }
}
.content-info .logo {
  width: 200px;
  height: 200px;
  position: relative;
  z-index: 910;
}
@media screen and (min-width: 520px) {
  .content-info .logo {
    width: 180px;
    height: 180px;
  }
}
.content-info .logo img {
  width: 100%;
  height: 100%;
}
.content-info .info {
  display: none;
  flex-flow: row wrap;
  justify-content: start;
  align-items: center;
  gap: 20px;
  width: 80%;
  height: 70px;
}
@media screen and (min-width: 786px) {
  .content-info .info {
    display: flex;
  }
}
.content-info .item-info {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: self-start;
  height: 40px;
  gap: 10px;
  margin-top: -30px;
}
@media screen and (min-width: 520px) {
  .content-info .item-info {
    margin-top: 0px;
  }
}
.content-info .item-info svg {
  width: 25px;
  margin-top: 5px;
  color: #2894ff;
}
@media screen and (min-width: 520px) {
  .content-info .item-info svg {
    width: 20px;
  }
}
.content-info .item-info div strong {
  font-size: 14px;
}
.content-info .item-info div p {
  font-size: 13px;
}
.content-info .ecommerce {
  display: none;
}
@media screen and (min-width: 786px) {
  .content-info .ecommerce {
    display: block;
  }
}
.content-info .ecommerce a {
  width: 150px;
  height: 30px;
  font-size: 15px;
  background-color: #2894ff;
  border-radius: 4px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  position: relative;
  z-index: 910;
}
.content-info .ecommerce a:hover {
  transition: all 0.35s ease;
  background-color: #1e1e1e;
}

.btn-nav {
  width: 40px;
  height: 40px;
  z-index: 100;
}
@media screen and (min-width: 786px) {
  .btn-nav {
    display: none;
  }
}
.btn-nav svg {
  width: 100%;
  height: 100%;
  color: white;
  position: relative;
}

.enlaces-active {
  transition: all 0.3s ease;
  transform: translateY(0%) !important;
}

.content-enlaces {
  transition: all 0.3s ease;
  transform: translateY(-1000%);
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  transition: all 0.3s ease;
  background-color: white;
  border-left: 1px solid rgba(128, 128, 128, 0.368627451);
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  z-index: 800;
  padding: 20px;
  display: flex;
  flex-flow: column;
}
@media screen and (min-width: 600px) {
  .content-enlaces {
    display: none;
    transition: all 0.3s ease;
    transform: translateX(100vw);
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 50%;
    transition: all 0.3s ease;
    background-color: white;
    border-left: 1px solid rgba(128, 128, 128, 0.368627451);
    overflow: hidden;
    margin-right: auto;
    margin-left: auto;
    z-index: 800;
    padding: 10px;
    display: flex;
    flex-flow: column;
  }
}
.content-enlaces .header-enlaces {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 786px) {
  .content-enlaces .header-enlaces {
    display: none;
  }
}
.content-enlaces .header-enlaces img {
  width: 100px;
  margin-left: 8px;
}
.content-enlaces .header-enlaces .btn-close-model {
  width: 40px;
  height: 40px;
}
.content-enlaces .header-enlaces .btn-close-model svg {
  width: 100%;
  height: 100%;
}
.content-enlaces .enlaces {
  display: flex;
  flex-flow: column nowrap;
  align-items: self-start;
  justify-content: center;
  gap: 25px;
  padding: 10px;
  z-index: 10000;
}
@media screen and (min-width: 787px) {
  .content-enlaces .enlaces {
    flex-flow: row nowrap;
    align-items: center;
    justify-content: start;
    margin-left: 25px;
    height: 47px;
    padding: 0px;
  }
  .content-enlaces .enlaces::before {
    position: absolute;
    content: "";
    width: 100px;
    height: 46px;
    background-color: #fff;
    top: -19px;
    left: -50px;
    transform: rotate(-35deg);
  }
}
@media screen and (min-width: 1000px) {
  .content-enlaces .enlaces {
    margin-left: 70px;
  }
}
.content-enlaces .enlaces .hr {
  width: 100%;
  height: 2px;
  background-color: rgba(128, 128, 128, 0.368627451);
}
@media screen and (min-width: 787px) {
  .content-enlaces .enlaces .hr {
    display: none;
  }
}
.content-enlaces .enlaces a {
  width: 100%;
  text-decoration: none;
  color: black;
  font-size: 15px;
  font-weight: 600;
  z-index: 10000;
  width: auto;
}
.content-enlaces .enlaces a:last-child {
  color: #2894ff;
  font-size: 17px;
}
@media screen and (min-width: 787px) {
  .content-enlaces .enlaces a:last-child {
    display: none;
  }
}
.content-enlaces .enlaces a:hover {
  transition: all 0.1s ease;
  border-bottom: 3px solid #2894ff;
}
@media screen and (min-width: 787px) {
  .content-enlaces .enlaces a {
    width: auto;
    font-size: 12.5px;
    font-weight: 600;
    color: white;
  }
  .content-enlaces .enlaces a:hover {
    transition: all 0.1s ease;
    border-bottom: 3px solid white;
  }
}

.contenedor-luces {
  width: 100vw;
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
}
.contenedor-luces .luces {
  width: 40px;
  height: auto;
  z-index: 990;
  position: relative;
}
@media screen and (min-width: 800px) {
  .contenedor-luces .luces {
    width: 35px;
  }
}

.lema-nav {
  height: 33px;
  width: 100vw;
  background-color: #2894ff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media screen and (min-width: 787px) {
  .lema-nav {
    display: none;
  }
}
.lema-nav p {
  color: white;
  font-size: 14px;
  margin: 0px;
  white-space: nowrap; /* Evita que el párrafo se rompa */
  overflow: hidden; /* Oculta el texto que se sale del contenedor */
  position: relative; /* Necesario para animación */
  animation: mover 5s linear infinite; /* Animación infinita */
}
@keyframes mover {
  0% {
    transform: translateX(-100vw);
  }
  100% {
    transform: translateX(100vw); /* Termina en la posición final */
  }
}

.loadin {
  position: fixed;
  z-index: 999;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column nowrap;
}
.loadin .loader {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  width: 300px;
  border-radius: 50%;
  box-shadow: inset -10px -10px 15px rgb(255, 255, 255), inset 10px 10px 10px rgba(0, 0, 0, 0.1);
}
.loadin .loader::before {
  content: "";
  position: absolute;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  box-shadow: -10px -10px 15px rgb(255, 255, 255), 10px 10px 10px rgba(0, 0, 0, 0.1);
}
.loadin .blue {
  height: 186px;
  width: 220px;
  position: absolute;
  animation: rotate 5s linear infinite;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
.loadin .img {
  width: 180px;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}
.loadin .img img {
  width: 100%;
  height: 100%;
}
.loadin .blue::before {
  content: "";
  position: absolute;
  height: 30px;
  border-radius: 50%;
  width: 30px;
  background: linear-gradient(45deg, #2894ff, #5c89ff);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
.loadin p {
  color: #1e1e1e;
  font-weight: 600;
  margin-top: 20px;
  font-size: 2rem;
  text-align: center;
}

.remove-loading {
  display: none;
}

.footer {
  height: auto;
  background-color: #1e1e1e;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.footer .contenedor-footer {
  max-width: 1540px;
}
.footer .contenedor-footer .icono-fdc {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: start;
  flex-flow: column;
  color: white;
}
.footer .contenedor-footer .icono-fdc p {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 0px;
}
.footer .contenedor-footer .icono-fdc span {
  display: block;
  font-size: 12px;
}
.footer .contenedor-footer .enlaces-contenedor {
  width: 100%;
  padding: 20px 0px;
  overflow: hidden;
  overflow-y: auto;
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
@media screen and (min-width: 1230px) {
  .footer .contenedor-footer .enlaces-contenedor {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
}
.footer .contenedor-footer .enlaces-contenedor .enlaces {
  width: max-content;
  display: flex;
  flex-flow: column;
  align-items: self-start;
  justify-content: start;
  gap: 10px;
}
@media screen and (min-width: 600px) {
  .footer .contenedor-footer .enlaces-contenedor .enlaces {
    padding: 15px;
  }
}
@media screen and (min-width: 1230px) {
  .footer .contenedor-footer .enlaces-contenedor .enlaces {
    width: 20%;
  }
}
.footer .contenedor-footer .enlaces-contenedor .enlaces:first-child {
  width: 100%;
}
@media screen and (min-width: 1230px) {
  .footer .contenedor-footer .enlaces-contenedor .enlaces:first-child {
    width: 35%;
  }
}
.footer .contenedor-footer .enlaces-contenedor .enlaces strong {
  font-size: 15px;
  font-weight: 700;
  color: #2894ff;
  margin-top: 20px;
}
.footer .contenedor-footer .enlaces-contenedor .enlaces strong svg {
  width: 15px;
}
.footer .contenedor-footer .enlaces-contenedor .enlaces p {
  color: white;
  font-size: 13px;
  text-align: justify;
}
.footer .contenedor-footer .enlaces-contenedor .enlaces a {
  color: white;
  font-size: 13px;
  text-decoration: none;
  padding-left: 10px;
}
.footer .contenedor-footer .footer-footer {
  width: 100%;
  border-top: 2px solid gray;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0px;
}
.footer .contenedor-footer .footer-footer a {
  text-decoration: none;
  color: white;
  font-size: 13px;
}
.footer .contenedor-footer .footer-footer .redes {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.footer .contenedor-footer .footer-footer .redes a {
  width: 25px;
  height: 25px;
  padding: 5px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .contenedor-footer .footer-footer .redes a:hover {
  transition: all 0.3s ease;
  transform: scale(1.1);
}
.footer .contenedor-footer .footer-footer .redes a svg {
  width: 100% !important;
  height: 100% !important;
  color: #1e1e1e;
}

body {
  margin: 0px;
  overflow-x: hidden;
  background-color: #ffffff;
}

html {
  overflow-x: hidden;
}

.alert-display {
  display: none;
  visibility: hidden;
}

.card-red {
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
  text-align: left;
  border-radius: 0.5rem;
  max-width: 290px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.header-red {
  padding: 1.25rem 1rem 1rem 1rem;
  background-color: #ffffff;
}

.image-red {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  background-color: #fee2e2;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
}

.image-red svg {
  color: #dc2626;
  width: 1.5rem;
  height: 1.5rem;
}

.content-red {
  margin-top: 0.75rem;
  text-align: center;
}

.title-red {
  color: #111827;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
}

.message-red {
  margin-top: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.actions-red {
  margin: 0.75rem 1rem;
  background-color: #f9fafb;
}

.desactivate {
  display: inline-flex;
  padding: 0.5rem 1rem;
  background-color: #dc2626;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  justify-content: center;
  width: 100%;
  border-radius: 0.375rem;
  border-width: 1px;
  border-color: transparent;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.cancel {
  display: inline-flex;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  color: #374151;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  justify-content: center;
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid #d1d5db;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.alerta {
  background-color: rgba(36, 37, 37, 0.8901960784);
  position: fixed;
  margin-bottom: 0px;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.card {
  overflow: hidden;
  position: relative;
  text-align: left;
  border-radius: 0.5rem;
  max-width: 290px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  background-color: #fff;
}

.dismiss {
  position: absolute;
  right: 10px;
  top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background-color: #fff;
  color: black;
  border: 2px solid #d1d5db;
  font-size: 1rem;
  font-weight: 300;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  transition: 0.3s ease;
}

.dismiss:hover {
  background-color: #ee0d0d;
  border: 2px solid #ee0d0d;
  color: #fff;
}

.header {
  padding: 1.25rem 1rem 1rem 1rem;
}

.image {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  background-color: #e2feee;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  animation: animate 0.6s linear alternate-reverse infinite;
  transition: 0.6s ease;
}

.image svg {
  color: #0afa2a;
  width: 2rem;
  height: 2rem;
}

.content {
  margin-top: 0.75rem;
  text-align: center;
}

.title {
  color: #066e29;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
}

.message {
  margin-top: 0.5rem;
  color: #595b5f;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.actions {
  margin: 0.75rem 1rem;
}

.history {
  display: inline-flex;
  padding: 0.5rem 1rem;
  background-color: #1aa06d;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  justify-content: center;
  width: 100%;
  border-radius: 0.375rem;
  border: none;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.track {
  display: inline-flex;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  color: #242525;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  justify-content: center;
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid #d1d5db;
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

#carouselExampleInterval .carousel-inner .carousel-item {
  height: 100vh !important;
}
#carouselExampleInterval .carousel-inner .carousel-item .contenedor-text {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1000px) {
  #carouselExampleInterval .carousel-inner .carousel-item .contenedor-text {
    justify-content: start;
  }
}
#carouselExampleInterval .carousel-inner .carousel-item .contenedor-text .descripcion {
  color: white;
  text-align: center;
  max-width: 800px;
}
@media screen and (min-width: 1000px) {
  #carouselExampleInterval .carousel-inner .carousel-item .contenedor-text .descripcion {
    text-align: left;
    margin-left: 115px;
  }
}
#carouselExampleInterval .carousel-inner .carousel-item .contenedor-text .titulo-top {
  color: #2894ff;
  font-size: clamp(1.2rem, 10vw, 1.3rem);
  margin-bottom: 0px;
}
#carouselExampleInterval .carousel-inner .carousel-item .contenedor-text .titulo-carrusel {
  font-size: clamp(2.5rem, 10vw, 5.5rem);
}
#carouselExampleInterval .carousel-inner .carousel-item .contenedor-text p {
  font-size: 14px;
}
@media screen and (min-width: 800px) {
  #carouselExampleInterval .carousel-inner .carousel-item .contenedor-text p {
    font-size: 18px;
  }
}
#carouselExampleInterval .carousel-inner #chicago {
  background-image: linear-gradient(192deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.693)), url(../assets/img/fondo-chicago.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#carouselExampleInterval .carousel-inner #karcher {
  background-image: linear-gradient(192deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.693)), url(../assets/img/fondo-karcher.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#carouselExampleInterval .carousel-inner #storage {
  background-image: linear-gradient(192deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.693)), url(../assets/img/fondo-storage.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.contenedor-main-page {
  width: 100vw;
  height: auto;
}
.contenedor-main-page .seccion-form {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  height: auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding: 10px;
}
@media screen and (min-width: 1000px) {
  .contenedor-main-page .seccion-form {
    margin-top: -60px !important;
  }
}
.contenedor-main-page .seccion-form .targeta-index {
  width: 100%;
  height: auto;
  color: white;
  background-color: #474747;
  display: flex;
  flex-flow: column nowrap;
  align-items: start;
  justify-content: center;
  text-align: justify;
  padding: 0px 20px 10px 20px;
}
.contenedor-main-page .seccion-form .targeta-index .h4 {
  margin-top: 30px;
  text-align: center;
  margin-bottom: 20px;
  color: #2894ff;
}
.contenedor-main-page .seccion-form .targeta-index ul {
  list-style: none;
  padding-left: 0px;
  width: 100%;
}
.contenedor-main-page .seccion-form .targeta-index ul li {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
}
.contenedor-main-page .seccion-form .targeta-index ul li p:first-child {
  color: #2894ff;
}
.contenedor-main-page .seccion-form .targeta-index ul li p:last-child {
  width: 200px;
}
@media screen and (min-width: 1000px) {
  .contenedor-main-page .seccion-form .targeta-index {
    width: 280px !important;
    height: 400px;
  }
}
@media screen and (min-width: 1450px) {
  .contenedor-main-page .seccion-form .targeta-index {
    width: 330px !important;
    height: 500px;
  }
}
.contenedor-main-page .seccion-form .descripcion {
  padding: 0px 30px 20px 30px;
}
@media screen and (min-width: 1000px) {
  .contenedor-main-page .seccion-form .descripcion {
    border-radius: 35px 4px 4px 35px;
  }
}
.contenedor-main-page .seccion-form .descripcion p {
  font-size: 19px;
}
.contenedor-main-page .seccion-form .descripcion a {
  width: 130px;
  background-color: #2894ff;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  border-radius: 6px;
  font-size: 13px;
  height: 35px;
  text-decoration: none;
}
.contenedor-main-page .seccion-form .form {
  width: 100%;
  height: 470px;
  background-color: #2894ff;
  border-radius: 4px;
  margin-top: 10px;
  margin-bottom: 10px;
  z-index: 980;
}
@media screen and (min-width: 1000px) {
  .contenedor-main-page .seccion-form .form {
    height: 470px;
  }
}
.contenedor-main-page .seccion-form .form form {
  padding-top: 20px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.contenedor-main-page .seccion-form .form form .h4 {
  color: white;
  font-size: 25px;
  margin-top: 30px;
}
.contenedor-main-page .seccion-form .form form input {
  color: white;
  width: 300px;
  outline: none;
  height: 40px;
  padding-left: 10px;
  border: 2px solid rgba(14, 96, 202, 0.932);
  background-color: rgba(14, 95, 202, 0.781);
}
.contenedor-main-page .seccion-form .form form input::placeholder {
  color: white;
}
.contenedor-main-page .seccion-form .form form input:last-child {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}
.contenedor-main-page .seccion-form .form form input:last-child:hover {
  font-weight: 700;
  transform: scale(0.9);
}
@media screen and (min-width: 1000px) {
  .contenedor-main-page .seccion-form .form {
    width: 350px;
  }
}
@media screen and (min-width: 1450px) {
  .contenedor-main-page .seccion-form .form {
    width: 400px !important;
    height: 530px;
  }
}
@media screen and (min-width: 1000px) {
  .contenedor-main-page .seccion-form .horario {
    border-radius: 4px 35px 35px 4px;
  }
}
.contenedor-main-page .seccion-form .horario .h4 {
  margin-left: 20px;
}
.contenedor-main-page .seccion-form .horario p {
  font-size: 12px;
}
@media screen and (min-width: 800px) {
  .contenedor-main-page .seccion-form .horario p {
    font-size: 14px;
  }
}
.contenedor-main-page .servicios-fdc- {
  width: 100vw;
  height: auto;
  margin-top: 80px;
}
.contenedor-main-page .servicios-fdc- .titulo-servicio {
  color: #2894ff;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0px;
}
.contenedor-main-page .servicios-fdc- .sub-titulo {
  color: #363636;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 57px;
}
.contenedor-main-page .servicios-fdc- .targetas-servicios {
  width: 90vw;
  margin: 20px auto;
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
@media screen and (min-width: 1653px) {
  .contenedor-main-page .servicios-fdc- .targetas-servicios {
    display: flex;
    align-items: stretch;
    justify-content: center;
  }
}
.contenedor-main-page .servicios-fdc- .targetas-servicios .targeta {
  width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
  border-radius: 10px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  position: relative;
}
.contenedor-main-page .servicios-fdc- .targetas-servicios .targeta:hover {
  transition: all 0.3s ease;
  transform: translateY(-15px);
}
.contenedor-main-page .servicios-fdc- .targetas-servicios .targeta .img-targeta {
  width: 100%;
  height: 240.096px;
  flex-shrink: 0;
  border-radius: inherit;
  z-index: 80;
  overflow: hidden;
}
.contenedor-main-page .servicios-fdc- .targetas-servicios .targeta .img-targeta a {
  width: 100%;
  height: 100%;
  z-index: 90;
}
.contenedor-main-page .servicios-fdc- .targetas-servicios .targeta .img-targeta a img {
  width: 100%;
  height: 100%;
}
.contenedor-main-page .servicios-fdc- .targetas-servicios .targeta .img-storage {
  background-image: url(../assets/img/Taller.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.contenedor-main-page .servicios-fdc- .targetas-servicios .targeta .img-storage a {
  position: absolute;
  width: 100%;
  height: 100%;
}
.contenedor-main-page .servicios-fdc- .targetas-servicios .targeta .img-taller {
  background-image: url(../assets/img/modelo-bim.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.contenedor-main-page .servicios-fdc- .targetas-servicios .targeta .img-taller a {
  position: absolute;
  width: 100%;
  height: 100%;
}
.contenedor-main-page .servicios-fdc- .targetas-servicios .targeta .descripcion-targeta {
  padding: 10px;
  width: 100%;
  height: calc(100% - 240.096px);
}
.contenedor-main-page .servicios-fdc- .targetas-servicios .targeta .descripcion-targeta .h4-tarjeta {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.contenedor-main-page .servicios-fdc- .targetas-servicios .targeta .descripcion-targeta p {
  font-size: 15px;
  font-weight: 400;
}
.contenedor-main-page .servicios-fdc- .targetas-servicios .targeta .descripcion-targeta a {
  text-decoration: none;
  color: #2894ff;
  font-weight: 600;
  animation: scalar 0.2s ease infinite;
}
@keyframes scalar {
  0% {
    transform: scale(1.01);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1.1);
  }
}
.contenedor-main-page .servicios-fdc- .targetas-servicios .targeta .descripcion-targeta a svg {
  width: 20px;
  margin-left: 8px;
}
.contenedor-main-page .descripcion-empresa {
  width: 100%;
  height: auto;
  margin-top: 100px;
}
.contenedor-main-page .descripcion-empresa .contenedor {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-flow: column nowrap;
}
@media screen and (min-width: 800px) {
  .contenedor-main-page .descripcion-empresa .contenedor {
    width: 90%;
  }
}
@media screen and (min-width: 1450px) {
  .contenedor-main-page .descripcion-empresa .contenedor {
    justify-content: space-between;
    align-items: self-start !important;
  }
}
@media screen and (min-width: 600px) {
  .contenedor-main-page .descripcion-empresa .contenedor {
    justify-content: center;
    align-items: center;
  }
}
.contenedor-main-page .descripcion-empresa .contenedor .descripcion-text {
  display: flex;
  flex-flow: column nowrap;
}
@media screen and (min-width: 560px) {
  .contenedor-main-page .descripcion-empresa .contenedor .descripcion-text {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}
@media screen and (min-width: 1000px) {
  .contenedor-main-page .descripcion-empresa .contenedor .descripcion-text {
    justify-content: space-between;
  }
}
.contenedor-main-page .descripcion-empresa .contenedor .descripcion-text .img-descripcion {
  display: none;
  border-radius: 20px;
  box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.11);
  border: 10px solid white;
  width: 50%;
  height: 590px;
  background-image: url(../assets/img/portada-fdc-page.jpg);
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1000px) {
  .contenedor-main-page .descripcion-empresa .contenedor .descripcion-text .img-descripcion {
    display: block;
    height: 450px;
  }
}
@media screen and (min-width: 1450px) {
  .contenedor-main-page .descripcion-empresa .contenedor .descripcion-text .img-descripcion {
    height: 550px;
  }
}
.contenedor-main-page .descripcion-empresa .contenedor .descripcion-text .img-descripcion img {
  width: 100%;
  height: 100%;
}
.contenedor-main-page .descripcion-empresa .contenedor .descripcion-text .contenedor-item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-flow: row wrap;
}
@media screen and (min-width: 560px) {
  .contenedor-main-page .descripcion-empresa .contenedor .descripcion-text .contenedor-item {
    display: flex;
    justify-content: space-around;
    flex-flow: row wrap;
    width: 98%;
  }
}
@media screen and (min-width: 880px) {
  .contenedor-main-page .descripcion-empresa .contenedor .descripcion-text .contenedor-item {
    width: 85%;
  }
}
@media screen and (min-width: 1000px) {
  .contenedor-main-page .descripcion-empresa .contenedor .descripcion-text .contenedor-item {
    width: 70%;
  }
}
@media screen and (min-width: 1450px) {
  .contenedor-main-page .descripcion-empresa .contenedor .descripcion-text .contenedor-item {
    width: 44%;
  }
}
.contenedor-main-page .descripcion-empresa .contenedor .descripcion-text .titulo {
  width: 100%;
  height: auto;
}
.contenedor-main-page .descripcion-empresa .contenedor .descripcion-text .titulo .titulo-sobre {
  color: #2894ff;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0px;
}
@media screen and (min-width: 1000px) {
  .contenedor-main-page .descripcion-empresa .contenedor .descripcion-text .titulo .titulo-sobre {
    font-size: 19px;
  }
}
@media screen and (min-width: 1450px) {
  .contenedor-main-page .descripcion-empresa .contenedor .descripcion-text .titulo .titulo-sobre {
    font-size: 24px;
  }
}
.contenedor-main-page .descripcion-empresa .contenedor .descripcion-text .titulo .sub-titulo {
  color: #363636;
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 1000px) {
  .contenedor-main-page .descripcion-empresa .contenedor .descripcion-text .titulo .sub-titulo {
    font-size: 27px;
  }
}
@media screen and (min-width: 1450px) {
  .contenedor-main-page .descripcion-empresa .contenedor .descripcion-text .titulo .sub-titulo {
    font-size: 32px;
  }
}
.contenedor-main-page .descripcion-empresa .contenedor .descripcion-text .item-descripcion {
  margin-top: 40px;
  padding: 10px;
  display: flex;
  flex-flow: row nowrap;
  align-items: self-start;
  justify-content: space-around;
}
.contenedor-main-page .descripcion-empresa .contenedor .descripcion-text .item-descripcion .text h3 {
  font-size: 18px;
}
@media screen and (min-width: 1000px) {
  .contenedor-main-page .descripcion-empresa .contenedor .descripcion-text .item-descripcion .text h3 {
    font-size: 15px;
  }
}
@media screen and (min-width: 1450px) {
  .contenedor-main-page .descripcion-empresa .contenedor .descripcion-text .item-descripcion .text h3 {
    font-size: 18px;
  }
}
.contenedor-main-page .descripcion-empresa .contenedor .descripcion-text .item-descripcion .text h3 strong {
  color: #2894ff;
}
@media screen and (min-width: 560px) {
  .contenedor-main-page .descripcion-empresa .contenedor .descripcion-text .item-descripcion .text {
    width: 200px;
  }
}
@media screen and (min-width: 1000px) {
  .contenedor-main-page .descripcion-empresa .contenedor .descripcion-text .item-descripcion p {
    font-size: 14px;
  }
}
@media screen and (min-width: 1450px) {
  .contenedor-main-page .descripcion-empresa .contenedor .descripcion-text .item-descripcion p {
    font-size: 16px;
  }
}
.contenedor-main-page .descripcion-empresa .contenedor .descripcion-text .item-descripcion svg {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
@media screen and (min-width: 1450px) {
  .contenedor-main-page .descripcion-empresa .contenedor .descripcion-text .item-descripcion svg {
    width: 50px;
    height: 50px;
  }
}
.contenedor-main-page .servicio {
  width: 100vw;
  height: 465px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}
.contenedor-main-page .servicio .text-servicio {
  width: 100%;
  height: 100%;
  color: white;
  background-image: linear-gradient(rgba(0, 0, 0, 0.685), rgba(0, 0, 0, 0.719)), url(../assets/img/compresor-tornillo.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.contenedor-main-page .servicio .text-servicio::before {
  width: 103%;
  height: 75px;
  content: "";
  position: absolute;
  bottom: -60px;
  transform: rotate(-7deg);
  background-color: #2894ff;
}
@media screen and (min-width: 800px) {
  .contenedor-main-page .servicio .text-servicio {
    width: 50%;
  }
}
.contenedor-main-page .servicio .text-servicio .text {
  width: 100%;
  padding: 10px;
}
.contenedor-main-page .servicio .text-servicio .text .subtitulo {
  color: #2894ff;
  font-weight: 700;
  font-size: 16px;
  margin: 0px;
}
.contenedor-main-page .servicio .text-servicio .text .titulo-text {
  position: relative;
  font-size: 35px;
}
.contenedor-main-page .servicio .text-servicio .text .titulo-text::before {
  content: "";
  width: 100px;
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: -5px;
}
@media screen and (min-width: 600px) {
  .contenedor-main-page .servicio .text-servicio .text .titulo-text {
    font-size: 50px;
  }
}
.contenedor-main-page .servicio .descripcion-servicio {
  width: 100%;
  height: 100%;
  color: white;
  background-color: #2894ff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
@media screen and (min-width: 800px) {
  .contenedor-main-page .servicio .descripcion-servicio {
    width: 50%;
  }
}
.contenedor-main-page .servicio .descripcion-servicio .text {
  width: 100%;
}
@media screen and (min-width: 1450px) {
  .contenedor-main-page .servicio .descripcion-servicio .text {
    width: 80%;
  }
}
.contenedor-main-page .servicio .descripcion-servicio .text h2 {
  font-size: 1.8rem;
}
.contenedor-main-page .servicio .descripcion-servicio .text p {
  font-size: 14px;
}
.contenedor-main-page .servicio .descripcion-servicio .text ul li {
  font-size: 14px;
}
.contenedor-main-page .servicio .descripcion-servicio .text a {
  background-color: #474747;
  width: 118px;
  height: 25px;
  font-size: 12px;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
}
.contenedor-main-page .servicio .descripcion-servicio .text h1 {
  font-size: 50px;
  position: relative;
}
.contenedor-main-page .servicio .descripcion-servicio .text h1::before {
  content: "";
  width: 100px;
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: 2px;
}
@media screen and (min-width: 500px) {
  .contenedor-main-page .noticias {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 800px) {
  .contenedor-main-page .noticias {
    width: 100%;
  }
}
@media screen and (min-width: 1000px) {
  .contenedor-main-page .noticias {
    width: 100%;
  }
}
@media screen and (min-width: 1450px) {
  .contenedor-main-page .noticias {
    width: 100%;
  }
}
.contenedor-main-page .noticias .titulo-noticia {
  text-align: center;
  color: #2894ff;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0px;
}
.contenedor-main-page .noticias .sub-titulo {
  color: #363636;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 600px) {
  .contenedor-main-page .noticias {
    text-align: center;
  }
}
@media screen and (min-width: 1450px) {
  .contenedor-main-page .noticias {
    text-align: left;
  }
}
.contenedor-main-page .contenedor-targeta {
  width: 90vw;
  margin: 20px auto;
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
@media screen and (min-width: 978.81px) {
  .contenedor-main-page .contenedor-targeta .targeta:last-child {
    display: none;
  }
}
@media screen and (min-width: 1178.81px) {
  .contenedor-main-page .contenedor-targeta .targeta:last-child {
    display: block;
  }
}
@media screen and (min-width: 1653px) {
  .contenedor-main-page .contenedor-targeta {
    width: 78vw;
    display: flex;
    align-items: stretch;
    justify-content: center;
  }
}
.contenedor-main-page .contenedor-targeta .targeta {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.15);
  width: 100%;
  text-align: center;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.contenedor-main-page .contenedor-targeta .targeta:hover {
  transition: all 0.3s ease-in-out;
  transform: translateY(-20px);
}
.contenedor-main-page .contenedor-targeta .targeta img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
  margin: 0;
  width: 100%;
}
@media screen and (min-width: 800px) {
  .contenedor-main-page .contenedor-targeta .targeta img {
    height: 200px;
  }
}
.contenedor-main-page .contenedor-targeta .targeta .targeta-titulo {
  font-size: 15px;
  font-weight: 600;
  margin: 0px;
}
.contenedor-main-page .contenedor-targeta .targeta .targeta-text {
  font-size: 12px;
  margin: 0px;
}
.contenedor-main-page .contenedor-targeta .targeta .text-body-secondary {
  font-size: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contenedor-main-page .contenedor-targeta .targeta .text-body-secondary img {
  width: 30px;
  height: 30px;
}
.contenedor-main-page .contenedor-targeta .targeta .targeta-descripcion {
  padding: 10px;
  padding: 10px;
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.contenedor-main-page .contenedor-targeta .targeta .mes-fecha {
  background-color: #2894ff;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  font-weight: 600;
  padding: 4px;
}
.contenedor-main-page .contenedor-targeta .targeta .mes-fecha p {
  margin: 0px;
}
.contenedor-main-page .contenedor-targeta .targeta a {
  background-color: #eee;
  color: #2894ff;
  border-radius: 20px;
  height: 30px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  text-decoration: none;
  transition: 0.2s ease;
}
.contenedor-main-page .contenedor-targeta .targeta a:hover {
  box-shadow: 1px 1px 10px #2894ff;
  transition: 0.2s ease;
  background-color: #2894ff;
  color: white;
}

.contenedor-marcas {
  width: 100%;
  overflow: hidden;
  display: flex;
  background-color: rgba(57, 57, 57, 0.031372549);
  margin: 466px 0px 0px 0px;
}
@media screen and (min-width: 800px) {
  .contenedor-marcas {
    margin: 0px;
  }
}
.contenedor-marcas .marcas {
  display: inline-flex;
  animation: scroll 10s linear infinite;
  white-space: nowrap;
  align-items: center;
  padding: 20px;
}
.contenedor-marcas .marcas img {
  height: 60px;
  display: block;
  margin: 0px 30px;
}
.contenedor-marcas .marcas img:first-child {
  height: 35px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.productos {
  width: 90vw;
  height: auto;
  overflow: hidden;
  margin: 60px auto;
}
.productos .titulo-productos {
  text-align: center;
  color: #2894ff;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0px;
}
.productos .sub-titulo {
  color: #363636;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.productos button {
  width: 50px;
  border: 0px;
  height: 50px;
  background: white;
}
.productos button:hover {
  transition: all 0.4s ease;
  transform: scale(1.1);
  background-color: #2894ff;
}
.productos button:hover svg {
  color: white;
}
.productos button svg {
  width: 100%;
  height: 100%;
  color: #2894ff;
  font-weight: 800;
}
.productos .contenedor-productos {
  max-width: 1450px;
  height: auto;
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.productos .contenedor-productos .productos-all {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.productos .contenedor-productos .slaider-productos {
  transition: all 0.3s ease;
  width: 100%;
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
}
@media screen and (min-width: 600px) {
  .productos .contenedor-productos .slaider-productos {
    gap: 20px;
  }
}
.productos .contenedor-productos .slaider-productos .producto {
  max-width: 300px; /* Ancho máximo */
  height: auto;
}
.productos .contenedor-productos .slaider-productos .producto:hover .img img {
  transition: all 0.7s ease;
  transform: scale(1.1);
}
.productos .contenedor-productos .slaider-productos .producto a {
  width: 100%;
  height: auto;
}
.productos .contenedor-productos .slaider-productos .producto a .img {
  overflow: hidden;
  width: 100%;
  height: 300px;
  /* Altura fija */
}
@media screen and (min-width: 600px) {
  .productos .contenedor-productos .slaider-productos .producto a .img {
    height: 300px;
  }
}
@media screen and (min-width: 1450px) {
  .productos .contenedor-productos .slaider-productos .producto a .img {
    height: 220px;
  }
}
.productos .contenedor-productos .slaider-productos .producto a .img img {
  height: 100%;
}
.productos .contenedor-productos .slaider-productos .producto strong {
  display: block;
  text-align: center;
  font-size: 15px;
}

/*# sourceMappingURL=index.css.map */
