/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.google.com/share?selection.family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --white-color: hsl(0, 100%, 100%);
  --black-color: hsl(0, 100%, 100%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Kanit", sans-serif;
  --biggest-font-size: 2rem;
  --big-font-size: 1.5rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 4rem;
    --big-font-size: 3rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
.main {
    overflow: hidden;
  }
  

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--black-color);
  color: var(--white-color);
  margin: 0; 
  padding: 0;
}

.header::before {
    content: " ";
    display: block;
    margin-bottom: 80px;
}


.header-hero {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    position: relative;
    display: grid;
    grid-template-rows: 100px 1fr;
    color: #fff;
}

.header-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 105%;
    background-image: linear-gradient(180deg, #0182ec93 0%, #0000008c 100%), url('../img/PORTADA NEW 2026.png');
    background-size: cover;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 95%, 0 80%);
    z-index: -1;
}

header::before {
    content: " ";
    display: block;
    margin-bottom: 80px;
}

/*Particulas JS diseño*/
#particles-js{
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: -1;
}



/* Hero container */
/* Ensure z-index of hero__container is above particles.js */
.hero__container {
    max-width: 800px;
    --padding-container: 0;
    display: grid;
    grid-auto-rows: max-content;
    align-content: center;
    gap: 1em;
    padding-bottom: 100px;
    text-align: center;
    margin-top: 10%; /* Adjusted margin */
    margin-left: auto; /* Centered the container */
    margin-right: auto; /* Centered the container */
    z-index: 1; /* Ensure it's above particles.js */
    position: relative;
}

/* Add background and adjustments to make text visible */
.header-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 105%;
    background-image: linear-gradient(180deg, #0182ec93 0%, #0000008c 100%), url('../img/PORTADA NEW 2026.png');
    background-size: cover;
    background-attachment: fixed;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 95%, 0 80%);
    z-index: -1;
}

.titulo-1{
    justify-content: center;
    text-align: center;
    margin-top: 15%;
    font-size: var(--big-font-size);
}

.parrafo-box{
    margin-top: 17%;
}
.parrafo-2{
    justify-content: center;
    text-align: center;
    margin-right: 2%;
    font-size: var(--h3-font-size);
}

.cta {
    background-color: #2091F9;
    color: #fff;
    text-decoration: none;
    padding: 13px 30px;
    border-radius: 32px;
    z-index: 1;
    margin-left: 44%;
    
}

.cta-pro{
  background-color: #2091F9;
  color: #fff;
  text-decoration: none;
  padding: 13px 30px;
  border-radius: 32px;
  z-index: 1;
  margin-left: 39%;
}

/*Prueba de animacion*/

.animacion-zoom {
  opacity: 0;
  transform: scale(0.5);
  transition: all 1s ease-in-out;
}

.animacion-zoom.show {
  opacity: 1;
  transform: scale(1);
}




/*NAV-BAR O Barra de navegación*/

.nav {
    position: fixed;
    height: var(--header-height);
    display: flex;
    justify-content:space-around;
    align-items: center;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.692),rgba(0, 110, 255, 0.671)); /* Fondo oscuro opaco */
    width: 100%;
    transition: top 0.3s ease; /* Transición suave */
    z-index: 100;
    
  }
  
.nav__logo img{
  width: 116px;
  margin-top: 5px; 
}
     
  .nav__close, 
  .nav__toggle {
    display: flex;
    color: var(--white-color);
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* Navigation for mobile devices */
  @media screen and (max-width: 1150px) {
    .nav__menu {
      position: fixed;
      left: -100%;
      top: 0;
      background-color: rgba(0, 110, 235, 0.315);
      width: 100%;
      height: 100%;
      padding: 6rem 3.5rem 4.5rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: left .4s;
      backdrop-filter: blur(5px); /*Para el efecto BLUR es necesario dejar el background con el RGBA y el color ya se modifica a gusto :3*/
    }
  
    .nav__item {
      transform: translateX(-150px);
      visibility: hidden;
      transition: transform .4s ease-out, visibility .4s;
    }
  
    .nav__item:nth-child(1) {
      transition-delay: .1s;
    }
    .nav__item:nth-child(2) {
      transition-delay: .2s;
    }
    .nav__item:nth-child(3) {
      transition-delay: .3s;
    }
    .nav__item:nth-child(4) {
      transition-delay: .4s;
    }
    .nav__item:nth-child(5) {
      transition-delay: .5s;
    }
  }
  
  .nav__list, 
  .nav__social {
    display: flex;
  }
  
  .nav__list {
    flex-direction: column;
    row-gap: 3rem;
  }
  
  .nav__link {
    position: relative;
    color: var(--white-color);
    font-size: var(--h1-font-size);
    font-weight: var(--font-semi-bold);
    display: inline-flex;
    align-items: center;
    transition: opacity .4s;
  }
  
  .nav__link i {
    font-size: 2rem;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s, visibility .4s;
  }
  
  .nav__link span {
    position: relative;
    transition: margin .4s;
  }
  
  .nav__link span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: var(--white-color);
    transition: width .4s ease-out;
  }
  
  /* Animation link on hover */
  .nav__link:hover span {
    margin-left: 2.5rem;
  }
  
  .nav__link:hover i {
    opacity: 1;
    visibility: visible;
  }
  
  .nav__link:hover span::after {
    width: 100%;
  }
  
  /* Sibling fade animation */
  .nav__list:has(.nav__link:hover) .nav__link:not(:hover) {
    opacity: .4;
  }
  
  .nav__close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
  }
  
  .nav__social {
    column-gap: 1rem;
  }
  
  .nav__social-link {
    color: var(--white-color);
    font-size: 1.5rem;
    transition: transform .4s;
  }
  
  .nav__social-link:hover {
    transform: translateY(-.25rem);
  }
  
  /* Show menu */
  .show-menu {
    left: 0;
  }
  
  /* Animation link when displaying menu */
  .show-menu .nav__item {
    visibility: visible;
    transform: translateX(0);
  }

  .scroll-up {
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

.scroll-down {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

  
  
  /* Show menu */
  
  .show-menu{
    right: 0;
  }

  ul {
    list-style: none;
  }
  
  a {
    text-decoration: none;
  }

  
  /*=============== BREAKPOINTS ===============*/
/* For large devices */
@media screen and (min-width: 1150px) {
    .container {
      margin-inline: auto;
    }
  
   
    .nav__toggle, 
    .nav__close {
      display: none;
    }
  
    .nav__link {
      font-size: var(--normal-font-size);
    }
  
    .nav__link i {
      font-size: 1.5rem;
    }
  
    .nav__list {
      flex-direction: row;
      column-gap: 3.5rem;
    }
  
    .nav__menu {
      display: flex;
      align-items: center;
      column-gap: 3.5rem;
    }
  }

  /*=============== BREAKPOINTS ===============*/
/* For medium devices */

@media screen and (min-width: 768px) {

    .nav__menu{
      width: 50%;
    }
    
  }
  
  
  /* For large devices */
  
  @media screen and (min-width: 1150px) {
  
    .nav{
      height: calc(var(--header-height) + 1rem);
    }
  
    .nav__toggle,
    .nav__close{
      display: none;
    }
  
    .nav__menu{
      width: initial;
    }
    .nav__list{
      flex-direction: row;
      column-gap: 4rem;
    }
  

  }

  /*Informacion de ¿Que hacemos en matrix telcom*/
  .office-22 {
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    color: #006deb;
  }
  
  
  
  .informacion {
    padding: 50px;
    display: flex;
    
  }
  
  .informacion-img {
    flex-basis: 50%;
   
  }
  
  .informacion-img video {
    padding: 20px;
    max-width: 110%; /* Evita que el video sea más ancho que el contenedor */
    max-height: 120%; /* Evita que el video sea más alto que el contenedor */
    border-radius: 10px;
    margin-top: 60px;
  }
  
  .informacion-txt {
    flex-basis: 50%;
    margin-left: 60px;
  }
  
  .office {
    margin: 50px 0;
    display: flex;
    align-items: center;
  }
  
  .office h3 {
    font-size: 17px;
    font-weight: 500;
    margin-left: 8px;
    color: #000000;
    margin-top: -20px;
    line-height: 1.5;
  }   
  
  .office h3 span{
    color: #0237e7;
  }


  /*Slider de los trabajadores y del Ceo matrix telcom*/
.center {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    z-index: -1;
  }
  
  .wrapper {
    display: flex;
    grid-gap: 1em;
    overflow: hidden;
    width: 55em;
    
  }
  .wrapper > .inner {
    display: flex;
    grid-gap: 1em;
    transition: all 1s ease-in-out;
  }
  
  .card-td {
    border-radius: 0.5em;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    
  }
  .card-td > img {
    border-top-right-radius: inherit;
    border-top-left-radius: inherit;
    display: block;
    object-fit: cover;
    aspect-ratio: 10/9;
    width: 17.5em;
  }
  .card-td > .content {
    background: linear-gradient(to right, rgb(7, 7, 7), rgb(3, 107, 243));
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    padding: 1em;
    text-align: center;
  }
  .card-td > .content > h1, .card-td > .content > h3 {
    margin: 0.35em 0;
  }
  .card-td > .content > h1 {
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
  }
  .card-td > .content > h3 {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 300;
  }
  
  .map {
    margin-top: 1em;
  }
  .map > button {
    all: unset;
    background: #072138;
    cursor: pointer;
    margin: 0 0.125em;
    position: relative;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    border-radius: 100%;
    height: 1em;
    width: 1em;
  }
  .map > button.active:after {
    background: #fdfeff;
    content: "";
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    border-radius: 100%;
    height: 0.5em;
    width: 0.5em;
  }


  /* Results POR FAVOR NO TOCAR NINGUNA LINEA DE CODIGO */

.results {
    background: #28284e;
    padding-top: 30px;
   
    position: relative;
    z-index: 1;
  }
  
  .results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/NO\ SE.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: rgba(0, 73, 231, 0.5);
    opacity: 0.6;
    z-index: -1;
  }
  
  .conten-results {
    display: flex;
    justify-content: space-evenly;
  }
  
  .numbers {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  
  .numbers .number {
    width: 45%;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    border-radius: 10px;
    padding: 40px 35px;
    margin-bottom: 20px;
  }
  
  .numbers .number h4 {
    color: #fff;
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  
  .numbers .number p {
    color: #f2f5fc;
    font-weight: 300;
  }
  
  .results-text {
    width: 37%;
    margin-top: 70px;
  }
  
  .results-text h4 {
    color: #fff;
    font-size: 40px;
  }
  
  .results-text p {
    color: #fff;
    font-weight: 300;
    margin: 20px 0;
  }
  
  
  .results-text>a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    border: 1px solid #fff;
    padding: 10px 0;
    width: 120px;
    text-align: center;
    border-radius: 5px;
  }
  
  .results-text>a:hover{
    color: #fff;
    background-color: #1d3efcbb;
    border-color: #1d3ffc;
  }


  
/*Nueva galeria de matrix inicio para productos*/

 



  /* About us */

.titulo-abo{
    justify-content: center;
    text-align: center;
    font-size: 2.5rem;
  }
  
  .about-us {
    /*background: linear-gradient(to left, #0466d4c4, #040d21);*/
    background-image: linear-gradient(rgba(0, 0, 0, 0.116),
    rgba(0, 0, 0, 0.788)),
     url(../img/Estante\ de\ productos\ 2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    
  }
  
  .contenedor-articulo {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
    justify-content: space-around;
  }
  
  .articulo {
    width: 29%;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 10px;
    padding: 45px 30px 60px 30px;   
    transition: 0.5s;
    justify-content: center;
    text-align: center;
  }
  
  .contenedor1 .titulo{
    color: #f6f6f7;
    justify-content:center;
    text-align:center;
  }
  
  .articulo:hover {
    box-shadow: 0 4px 10px rgba(17, 29, 48, .26);
  }
  
  .articulo>i {
    font-size: 30px;
    color: #fff;
    background: #1d6bfc;
    display: inline-block;
    width: 70px;
    height: 70px;
    text-align: center;
    padding-top: 20px;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(2, 103, 255, 0.897);
  }
  
  .articulo>h3 {
    font-size: 24px;
    margin-top: 30px;
    font-weight: 500;
    color: #000;
   
  }
  
  .articulo>p {
    font-weight: 400;
    color: #070707;
    margin-top: 15px;
    padding-bottom: 20px;
    font-size: 17px;
  }
  
  .articulo>a {
    color: #050505;
    font-weight: 400;
    text-decoration: none;
  }
  
  .articulo>a:hover {
    color: #1d3ffc;
    transition: color .5s;
  }

  
/* SECCIÓN C O N T A C T O / footer o pie de pagina */
/*.contacto{
    background:
        linear-gradient(rgb(48, 47, 47), rgba(0, 12, 103, 0.63)),
        url(../img/Fibra\ optica.jpg);
        background-size: cover;
        color: #fff;
        margin-top: 100px;
        padding: 80px 20px;
  }
  .contacto .contenedor-contacto{
    max-width: 1100px;
    margin: auto;
  }
  .contacto h2{
    text-align: center;
    padding-bottom: 30px;
  }
  .contacto .contenedor-contacto .fila{
    display: flex;
  }
  .contacto .contenedor-contacto .fila .col{
    width: 50%;
  }
  .contacto .contenedor-contacto .info{
    margin-bottom: 30px;
    border-left: 3px solid #8d8d8d;
    padding-left: 8px;
  }
  .contacto .contenedor-contacto .info p{
    color: #8d8d8d;
  }
  .contacto input, .contacto textarea{
    width: 100%;
    border: none;
    background-color: transparent;
    padding: 10px;
    border: 1px solid #8d8d8d ;
    margin-bottom: 20px;
    outline: none;
    color: #00aeff;
  }
  .contacto .btn{
    background-color: none;
    padding: 5px 40px;
    border: 2px solid;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(to right, #00a2ff, #2c2a2c);
  }


  .iso{
    align-items: center;   
    display: flex;
    flex-direction: column;
    margin: 0 10px;
  }

  .iso img{
    width: 100px;
    height: auto;
  }


  
  footer{
    background-color: #000;
    color: #fff;
    padding: 7px 0;
    font-size: 14px;
    text-align: center;
  }*/


  /*sCROLL INFINITO PRODCUTOS*/
  .scroller {
    max-width: 800px;
    margin-left: 19%;
    
  }
  
  .scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient(
      90deg,
      transparent,
      white 20%,
      white 80%,
      transparent
    );
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  }
  
  .scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 40s)
      var(--_animation-direction, forwards) linear infinite;
  }
  
  .scroller[data-direction="right"] {
    --_animation-direction: reverse;
  }
  
  .scroller[data-direction="left"] {
    --_animation-direction: forwards;
  }
  
  .scroller[data-speed="fast"] {
    --_animation-duration: 20s;
  }
  
  .scroller[data-speed="slow"] {
    --_animation-duration: 60s;
  }
  
  @keyframes scroll {
    to {
      transform: translate(calc(-50% - 0.5rem));
    }
  }
  .tag-list {
    margin: 0;
    padding-inline: 0;
    list-style: none;
  }
  
  .tag-list li {
    padding: 1rem;
    background: var(--clr-primary-400);
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem -0.25rem;
    color: black;
  }
  
  /* for testing purposed to ensure the animation lined up correctly */
  .test {
    background: red !important;
  }

  .imaganes-pro{
    width: 200px;
  }

  /*=====RESPONSIVE======*/

  @media screen and (max-width:600px) {

    .header-hero::before {  
      background-image: linear-gradient(150deg, #0182ec93 0%, #0000008c 100%), url('../img/PORTADA NEW 2026.png');
      background-position: center;  
  }

    .titulo-1{
      margin-top: 210px;
    }
  
    .parrafo-box{
      margin-top: 210px;
    }

    .cta{
      margin-left: 38%;
    }

    .informacion-img video{
      display: none;
    }

   .informacion{
    padding: 40px 20px;
    margin-right: 110px;
   }

   .informacion-txt{
    text-align: center;
    text-align:center;
   }

  
   .center{
    display: none;
   }
  }

  @media screen and (max-width: 800px) {
    /* results */

    .conten-results {
      flex-direction: column-reverse;
  }

  .results-text>a {
      margin-bottom: 60px;
  }

  .numbers {
      width: 100%;
      /* justify-content: space-between; */
  }

  .results-text {
      width: 100%;
      text-align: center;
  }

  /*Scroller infinity*/

  .scroller{
    max-width: 60%;
  }

  .cta-pro{
    margin-left: 28%;
  }

  /* About us */

  .articulo {
    width: 55%;
}

.numbers {
  width: 100%;
  /* justify-content: space-between; */
}

.results-text {
  width: 100%;
}
    
}

@media screen and (max-width: 500px) {

  /* ABOUT US */

  .imagen-about-us{
    margin-bottom: 60px;
    width: 70%;
}
 

.header-hero p{
  display: none;
}

.cta{
  margin: 0px -70px;
  bottom: -40px;  
  justify-content: center;
}
  
/*Conteneodr principal del slider de los comerciales*/
.container-app{
  display: none;
}

.header-hero h1{
  justify-content: center;
  text-align: center;
  margin-right: -90%;
  padding: 10px 20px;
  margin-top: 130px;
}



}


/*Estilos para slider comercial*/

.container-app {
  width: 100%;
  max-width: 900px;
  margin: 0 15%;
  margin-top: 30px;
  background-color: #111111;
}
.card-comerci {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  background-color: var(--white);
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset,
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.card-info {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  padding: 1em 2em;
}
.card-info  h1 {
  font-size: 40px;
  color: rgb(255, 255, 255);
  align-self: center;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  line-height: 70px;
}
.card-info p {
  font-size: 0.8rem;
  font-weight: bold;
  align-self: center;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  line-height: 22px;
  color: rgb(255, 255, 255);
}
.card-info a {
  display: grid;
  grid-template-columns: max-content 20px;
  align-items: center;
  column-gap: 7px;
  color: var(--dark-green);
  font-size: 0.85rem;
  font-weight: bold;
  align-self: center;
  justify-self: flex-end;
  transform: translateX(0px);
  transition: transform 0.3s 0.1s ease-out;
}
.card-info a:hover {
  transform: translateX(5px);
}
.card-info a:hover svg {
  transform: translateX(5px);
}
.card-info svg {
  width: 20px;
  height: 10px;
  transform: translateX(0px);
  transition: transform 0.3s ease-out;
}
.card-info svg line {
  stroke: var(--dark-green);
}

.card-photo {
  width: 450px;
  object-fit: cover;
  position: relative;
  overflow: hidden;
}
.card-photo img {
  display: block;
  max-width: 100%;
  aspect-ratio: 1/1;
}
.card-photo a {
  display: grid;
  grid-template-columns: max-content 20px;
  align-items: center;
  column-gap: 7px;
  color: var(--white);
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1px;
  align-self: flex-start;
  transform: translateX(0px);
  transition: transform 0.3s 0.1s ease-out;
  position: absolute;
  z-index: 10;
  bottom: 5%;
  right: 8%;
}
.card-photo a:hover {
  transform: translateX(5px);
}
.card-photo a:hover svg {
  transform: translateX(5px);
}
.card-photo svg {
  width: 20px;
  height: 10px;
  transform: translateX(0px);
  transition: transform 0.3s ease-out;
}
.card-photo svg line {
  stroke: rgb(0, 140, 255);
  stroke-width: 2;
}
.card-photo .mask {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  z-index: 5;
  background-color: rgb(10, 10, 10);
}
#mask-1 {
  left: 0;
  transform: translateY(-100%);
}
#mask-2 {
  right: 0;
  transform: translateY(100%);
}

.card-photo p{
  color: #fbfbff;
  font-size: 19px;
}

@media (max-width: 600px) {
  .card-comerci {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-right: 40%;
  }

  .card-info {
    order: 2;
    height: 400px;
  }
  .card-photo {
    width: 100%;
    order: 1;
  }

  .card-photo img {
    width: 100%;
  }

  .card-photo .mask {
    height: 100%;
  }
}

@media (max-width: 500px) {
  header {
    padding: 1em;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
  }
  header ul {
    flex-direction: column;
  }
  header li {
    width: min-content;
    margin-right: 0;
  }
  .card-info h1 {
    font-size: 3rem;
  }
}

/*=====Nuevo footer para la parte de inicio======*/

footer{
  width: 100%;
  background: linear-gradient(to right,#00093c, #152c3b);
  color: #fff;
  padding: 50px 0 30px;
  font-size: 13px;
  line-height: 20px;
}
.row{
  width: 85%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.col{
  flex-basis: 25%;
  padding: 10px;
}
.col:nth-child(2), .col:nth-child(3){
  flex-basis: 15%;
}
.footer_logo{ /*El general y la 45001*/
  width: 90px;
  position: relative;
  top: -23px;
  left: -18px;
}
/*individualizar logos ISO*/


.footer_logo:nth-child(1){ /*ISO 9001*/
  width: 262px;
  left: -68px;
}

.footer_logo:nth-child(2){ /*ISO 45001*/
  width: 20px;
  
}

.footer_logo:nth-child(3){ /*ISO 14001*/
  margin-left: 7px;
  width: 80px;
}

.footer_about-codigo{
  position: relative;
  top: -50px;
  margin-left: 2px;
  font-weight: 500;
}

.footer_about{
  position: relative;
  top: -23px;
}
.col h3{
  width: fit-content;
  margin-bottom: 40px;
  position: relative;
}
.footer_email{
  width: fit-content;
  border-bottom: 1px solid #34a1fa;
  margin: 20px 0;
}
.col ul li{
  list-style: none;
  margin-bottom: 12px;
}
.col ul li a{
  text-decoration: none;
  color: #fff;
}
.col form{
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1379ff;
  margin-bottom: 50px;
}
.col form .icon{
  font-size: 18px;
  margin-right: 10px;
}
.col form input{
  width: 100%;
  background: transparent;
  color: #ccc;
  border: 0;
  outline: none;
}
.col form button{
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}
.col form button .icon_right{
  font-size: 16px;
  color: #ccc;
}
.col .social_icons .social_icon{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  color: #fff;
  background: linear-gradient(to top,rgb(0, 102, 255), rgb(34, 34, 34));
  margin-right: 15px;
  padding: 5px;
  cursor: pointer;
}
hr{
  width: 90%;
  border: 0;
  border-bottom: 1px solid #ccc;
  margin: 20px auto;
}
footer .copyright{
  text-align: center;
}
.bottom_line{
  width: 100%;
  height: 5px;
  background: #767676;
  border-radius: 3px;
  position: absolute;
  top: 25px;
  left: 0;
  overflow: hidden;
}
.bottom_line span{
  width: 15px;
  height: 100%;
  background: #3572f6;
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 10px;
  animation: moveline 2s linear infinite;
}
@keyframes moveline{
  0%{
      left:-20px;
  }
  100%{
      left:100%;
  }
}

/*Pequeña parte del responsive del footer*/

@media (max-width:500px){
  .bottom_line{
    margin-top: 20px;
    
  }
}

/*Diseño del boton de whatsapp*/

/* Dropdown Button */
.nav__link.dropdown-toggle {
  background-color: #00000000; /* Black background */
  color: #fff; /* White text */
  border-radius: 20px;
  border: none; /* No border */
  cursor: pointer; /* Pointer cursor on hover */
}

/* Dropdown Content (Hidden by Default) */
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #000; /* Black background */
  min-width: 60px;
  border-radius: 20px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.021);
  z-index: 1;
}

.dropdown-item{
  position: relative;
    color: var(--white-color);
    font-size: var(--h1-font-size);
    font-weight: var(--font-semi-bold);
    display: inline-flex;
    align-items: center;
    transition: opacity .4s;
    padding: 20px;
}

/* Show the dropdown menu on hover */
.nav__link.dropdown-toggle:hover.dropdown-menu {
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-item:hover {
  background-color: #007bff; /* Blue background */
  color: #fff; /* White text */
  border-radius: 20px;
}




/*Pantallas FULL HD*/

@media screen and (max-width:1920px){
  .informacion-txt{
    margin-left: 10%;
  }

  .scroller{
    margin-left: 30%;
  }

  .cta-pro{
    margin-left: 43%;
  }

  .container-app{
    margin-left: 27%;
  }
}

@media (max-width: 1360px){
  .scroller{
    margin-right: 30%;
  }

  .container-app{
    margin-left: 19%;
  }

}








  
   