﻿@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&family=Open+Sans:wght@300;400;500;600&display=swap');

*{
    padding:0;
    margin:0;
    box-sizing: border-box;
    list-style: none;
    scroll-behavior: smooth;
    text-decoration: none;

}
:root {
    --text-color: #F2F2F2;
    --hover-color: #0dc959;
    --hover-color-green: #0dc959;
    --hover-color-red: #FF2415;
    --bg-color: #292e33;
    --secon-bg-color: #1f2327;
    --three-bg-color: #3f4449;
    --big-font: 3.5rem;
    --norma-font: 2.5rem;
    --neon-box-shadow: 0 0 .5rem#0dc959;
    --neon-box-shadow-green: 0 0 .5rem #0dc959;
    --neon-box-shadow-red: 0 0 .5rem #FF2415;
    --h2-font: 3rem;
    --font-neon-text-shadow: 0 0 10px rgba(18, 247, 255, 0.3), 0 0 20px rgba(18, 247, 255, 0.3), 0 0 30px rgba(18, 247, 255, 0.3), 0 0 40px rgba(18, 247, 255, 0.3), 0 0 70px rgba(18, 247, 255, 0.3), 0 0 80px rgba(18, 247, 255, 0.3), 0 0 100px rgba(18, 247, 255, 0.3), 0 0 150px rgba(18, 247, 255, 0.3);
    --blue: #0097FC;
    --light-blue: #7AC1FE;
    --dark-blue: #008CEA;
    --grey: #828282;


    --user-button-circle: rgba(0,0,0,0.025);
    --user-button-cardborder: rgba(255,255,255,0.25);
    --user-button-text: #323133;
    --user-button-shadow: rgba(0,0,0,0.1);
}


/* Barra de desplazamiento */
::-webkit-scrollbar {
    height: 0;
    width: .5rem; /* Ancho de la barra */
    background-color: #333; /* Color de fondo */
}

/* Track (pista) de la barra de desplazamiento */
::-webkit-scrollbar-track {
    background: var(--secon-bg-color); /* Color de fondo */
}

/* Handle (agarre) de la barra de desplazamiento */
::-webkit-scrollbar-thumb {
    background: var(--hover-color); /* Color del agarre */
    border-radius: 5rem; /* Radio de borde del agarre */
}

/*circles----------------*/
.area {
    position: relative;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: inherit;
}

    .circles li {
        position: absolute;
        display: block;
        list-style: none;
        width: 20px;
        height: 20px;
        background: rgba(255, 255, 255, 0.1);
        animation: animate 25s linear infinite;
        bottom: -150px;
    }

        .circles li:nth-child(1) {
            left: 25%;
            width: 80px;
            height: 80px;
        }


        .circles li:nth-child(2) {
            left: 10%;
            width: 20px;
            height: 20px;
            animation-duration: 12s;
        }

        .circles li:nth-child(3) {
            left: 70%;
            width: 20px;
            height: 20px;
            animation-duration: 12s;
        }

        .circles li:nth-child(4) {
            left: 40%;
            width: 60px;
            height: 60px;
            animation-duration: 18s;
        }

        .circles li:nth-child(5) {
            left: 65%;
            width: 20px;
            height: 20px;
        }

        .circles li:nth-child(6) {
            left: 75%;
            width: 110px;
            height: 110px;
        }

        .circles li:nth-child(7) {
            left: 35%;
            width: 150px;
            height: 150px;
        }

        .circles li:nth-child(8) {
            left: 50%;
            width: 25px;
            height: 25px;
            animation-duration: 45s;
        }

        .circles li:nth-child(9) {
            left: 20%;
            width: 15px;
            height: 15px;
            animation-duration: 35s;
        }

        .circles li:nth-child(10) {
            left: 85%;
            width: 150px;
            height: 150px;
            animation-duration: 11s;
        }



@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 20%;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

/*----------*/


body {
    font-family: Lato, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    width:100%;
    height: 100%;
}
.loader-section{
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secon-bg-color);
  z-index:999;
  transition: all 1s 1s ease-out;
  opacity:1;
}
.loaded{
  opacity:0;
  z-index:-1;
}
  
.loader {
    width: 48px;
    height: 48px;
    border: 5px solid var(--hover-color-red);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}





header {
    position: relative;
    top: 0;
    left: 0;
    border-bottom: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 10%;
    z-index: 3;
}



.logo img {
    
    width: 120px; /* Ajusta el ancho deseado */
    height: auto;
}


span{
    color:var(--hover-color);
}

.navlist{
    display: flex;
    
}




/*-------------MEGA MENU*/

#mega-menu {
    position: relative;
    display: inline-table;
    height: 55px;
    width: 250px;
    top:70px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    /*border-bottom: 2px solid var(--hover-color);*/
}

    #mega-menu > .btn-mega {
        font-size: 1rem;
        padding: 9px 15px;
        transition: all .3s ease;
        width: max-content;
        height: 65px;
        line-height: 65px;
        position: relative;
        z-index: 98;
        cursor: pointer;
    }


.active-menu {
    
    font-weight: 700;
}



    .active-menu:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-top: 2px solid var(--dark-blue);
        transform: scaleY(2);
        opacity: 0;
        transition: 0.3s;
    }

    .active-menu:after {
        content: "";
        position: absolute;
        top: 2px;
        left: 0;
        width: 100%;
        height: 30%;
        background-color: var(--blue);
        transform: scale(0);
        opacity: 0;
        transition: 0.3s;
        z-index: -1;
    }

    .active-menu:hover {
        color: #fff;
    }

        .active-menu:before {
            transform: scaleY(1);
            opacity: 1;
        }

        .active-menu:after {
            transform: scaleY(1);
            opacity: 1;
        }







#mega-menu > ul.menu {
    position: relative;
    z-index: 90;
    background-color: var(--bg-color); /*COLOR PRIMER DROPDOWN*/
    border: 1px solid var(--secon-bg-color);
    border-radius: 8px;
    top: -40px;
    opacity: 0;
    visibility: hidden;
    height: 5a;
    width: inherit;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


    #mega-menu > ul.menu > li > a {
        height: 50px;
        line-height: 51px;
        padding: 0 24px;
        border-bottom: 1px solid #000; /*LINEAS INFERIORES*/
        display: block;
        position: relative;
        text-decoration: none;
    }

    #mega-menu > ul.menu > li:last-child > a {
        border-bottom: none;
        text-decoration: none;
    }

    #mega-menu > ul.menu > li:hover > a .menu-title {
        color: var(--dark-blue); /*HOVER PALABRA DROPDOWN UNO*/
        text-decoration: none;
    }

    #mega-menu > ul.menu > li > a.dropdown:after {
        content: '\f105';
        position: absolute;
        font-family: 'fontawesome';
        right: 29px;
        font-size: 14px;
        color: var(--text-color);
    }

    #mega-menu > ul.menu > li > a .menu-img {
        margin-right: 18px;
        min-width: 30px;
        text-align: center;
    }

    #mega-menu > ul.menu > li > a .menu-title {
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--text-color);
        text-transform: none;
    }

#mega-menu.style1 > ul.menu {
    transform: translateY(0%);
    opacity: 1;
    top: -1px;
    visibility: visible;
    border-width: 1px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}



#mega-menu > ul.menu > li.active > .drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0%);
}

#mega-menu > ul.menu > li > .drop-menu.active {
    opacity: 1;
    visibility: unset;
    transform: translateX(0%);
}

#mega-menu > ul.menu > li .drop-menu {
    transform: translateX(-10%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    padding: 38px 29px 58px 29px;
    position: absolute;
    top: -1px;
    left: 250px;
    width: 1100px;
    max-height: 490px;
    overflow-y: auto;
    border-radius: 10px;
    z-index: -1;
    background-color: var(--secon-bg-color); /*COLOR SEGUNDO DROPDOWN*/
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.one-third {
    position: relative;
    top: 65px;
    width: 48%;
}

.img-up {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    height: 100px; /* Ajusta la altura según sea necesario */
}

    .img-up img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
    }

    .img-up h2.title {
        position: absolute;
        top: 70%; /* Coloca el título en el centro vertical */
        left: 50%; /* Coloca el título en el centro horizontal */
        transform: translate(-50%, -50%); /* Centra el título exactamente en el centro */
        color: #fff; /* Cambia el color del título según sea necesario */
    }




.solucion {
    width: 140px;
    display: grid;
    height: 168px;
    justify-items: center;
    position: relative;
}

.banner {
    list-style: none;
    padding: 0;
    margin: 0;
}


#mega-menu > ul.menu > li .drop-menu > .one-third ul li a {
    font-family: Lato;
    text-align: left;
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: 5px;
    text-decoration: none;
}


#mega-menu > ul.menu > li .drop-menu > .one-third .show a {
    font-family: Lato;
    font-weight: 300;
    font-size: .6rem;
    color: #fff;
    position: relative;
    text-decoration: none;
}

    #mega-menu > ul.menu > li .drop-menu > .one-third .show a:before {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -4px;
        right: 0;
        background: var(--secon-bg-color);
        -webkit-transition: width .2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
        -o-transition: width .2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
        transition: width .2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
        text-decoration: none;
    }

    #mega-menu > ul.menu > li .drop-menu > .one-third .show a:hover:before {
        width: 100%;
        left: 0;
    }

#mega-menu > ul.menu > li .drop-menu > .one-third ul.banner li {
    width: 100%; /* O ajusta según sea necesario */
    justify-content: center;
    text-align: center;
    margin-top: 45px;
    margin-bottom: 45px; /* Espacio entre cada estructura */
    border-radius: 5px;
    height: auto;
    padding: 4px 1px 10px 8px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


.icon-container {
    margin-right: 10px; /* Ajusta el espacio entre la imagen y el texto según sea necesario */
}

    .icon-container img {
        max-width: 100%; /* Ajusta el ancho máximo de la imagen según sea necesario */
        height: 80px;
        width: 80%;
        fill: #000; /* Color predeterminado (negro en este caso) */
        transition: fill 0.3s; /* Agregar transición para un cambio suave */
    }



#mega-menu > ul.menu > li .drop-menu > .one-third ul.banner li .banner-text .banner-title {
    font-family: Lato;
    color: #6f6f71;
    font-size: 12px;
    margin-bottom: 10px;
    margin-top: 10px;
}

#mega-menu > ul.menu > li .drop-menu > .one-third ul.banner li .banner-text .more-link a {
    margin-left: 10px;
    font-family: Lato;
    font-weight: 300;
    font-size: .6rem;
    color: #fff;
    display: table-cell;
    width: 115px;
    padding-top: 10px;
}

#mega-menu > ul.menu > li .drop-menu > .one-third ul.banner li .banner-img {
    width: 100%; /* Para asegurar que todas las imágenes tengan el mismo tamaño */
    height: auto; /* Mantiene la proporción original de la imagen */
    display: block;
    float: right;
    width: 130px;
    position: relative;
}


#mega-menu > ul.menu > li .drop-menu > .one-third .cat-title {
    color: var(--hover-color);
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}



/*tipos*/

.tipos {
    list-style: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}



.icon-container {
    margin-right: 10px;
}

    .icon-container i {
        font-size: 45px; /* Ajusta el tamaño del icono según sea necesario */
        color: #9f9f9f;
    }

.text-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 15px;
    height: 100px;
    width: 420px;
    justify-content: center;
}

.tipos:hover {
    background: var(--bg-color);
}

    .tipos:hover .title-mega {
        color: var(--blue) /* Cambia el color del título al hacer hover */
    }

    .tipos:hover .description-mega {
        color: #fff /* Cambia el color de la descripción al hacer hover */
    }

    .tipos:hover .icon-container i {
        color: var(--blue);
    }

    .tipos:hover .icon-container img {
        fill: #fff; /* Cambiar a rojo cuando se hace hover */
    }

.title-mega {
    font-weight: 900;
    color: #fff;
    text-transform: capitalize;
}

.description-mega {
    font-weight: 500;
    color: #9f9f9f;
}
















/*----------*/
/*------------styles nav2 list hover*/
.container {
    margin: 0 auto;
    padding: 0 50px;
}


nav {
    display: flex;
    align-items: center; /* Centrado vertical */
    padding: 5px; /* Añade relleno según sea necesario */
    color: #fdfdfd;
    font-size: .4rem;
    font-weight: 300;
    letter-spacing: 2px;
    height: 60px;
    position: relative;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    /*right: 155px;*/
}

    nav > .container {
        display: flex;
        align-items: center;
        width: auto
    }




























/*NAVBAR 2-------------------------*/


.navlist a {
    display: inline-block;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 20px;
    animation: slideAnimation 1s ease forwards;
    animation-delay: calc(.3s * var(--i));
    opacity: 0;

      background-image: linear-gradient(
        to right,
        #54b3d6,
        #54b3d6 50%,
        var(--text-color) 50%
      );
      background-size: 200% 100%;
      background-position: -100%;
      display: inline-block;
      position: relative;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      transition: all 0.3s ease-in-out;
}
    .navlist a:hover {
        background-position: 0;
    }

    .navlist a:before{
      content: '';
      background: #54b3d6; /*barra azul*/
      display: block;
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 3px;
      transition: all 0.3s ease-in-out;
    }
    .navlist a:hover::before {
        width: 100%;
    }

 

.language {
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
     
}

.language-item {
    display: block;
    cursor: pointer;
}
    .language-item img {
        width: 25px; /* Ajusta el tamaño de los iconos según tus necesidades */
    }



#menu-icon {
    font-size: 1.8rem;
    z-index: 10001;
    cursor: pointer;
    margin-left: 25px;
    display: none;
}
section{
    padding: 115px 10%;
}

.home{
    min-height: 80vh;
    width:100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    grid-gap: 4em;
}
.home-contect{
    max-width: 600px;
    z-index: 2;
}

    .home-contect h1 {
        font-size: var(--big-font);
        font-weight: 900;
    }

    .home-contect p {
        font-size: 1.1rem;
        margin-top: 20px;
        align-content: center;
        text-align: justify;
        font-weight: 300;
        letter-spacing: 1px;
        line-height: 1.6;
    }

.change-text{
    font-size: 1.5rem;
    font-weight: 600;
}
    .change-text h3 {
        display: inline-flex;
        margin: 0;
        vertical-align: top;
        margin-top: 10px;
        font-weight: 500;
    }
        .change-text h3 .word {
            position: absolute;
            display: flex;
            opacity: 0;
            font-weight: 700;
        }

.change-text h3 .word .letter{
    transform-origin:center center 25px;
}

.change-text h3 .word .letter.out{
    transform: rotateX(90deg);
    transition: 0.32s cubic-bezier(0.6,0,0.7,0.2);
}
.change-text h3 .word .letter.in{
    transition:0.38s ease;
}

.change-text h3 .word .letter.behind{
    transform: rotateX(-90deg);
}
.home-content p{
    color: #bdbdbd;
    line-height: 1.6;
}
.info-box{
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 325px;
    margin: 1rem 0 2rem;
}

.info-box h5{
    font-weight: 300;
    color: var(--text-color);
    font-size: 1rem;

}
.info-box span{
    font-size: .9rem;
    color: #bdbdbd;
}
.btn-box {
    display: flex;
    justify-content: space-between;
    width: 320px;
    height: 45px;
}

    .btn-box .btn {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 150px;
        height: 100%;
        background: var(--hover-color);
        color: var(--bg-color);
        font-size: 1rem;
        letter-spacing: 1px;
        font-weight: 900;
        transition: .6s;
        box-shadow: var(--neon-box-shadow);
        border: 2px solid var(--hover-color);
        border-radius: 5px;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

.btn:hover{
    color: var(--hover-color);
}

.btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bg-color);
    width: 0;
    height: 100%;
    z-index: -1;
    transition: .4s;
}

.btn:hover::before{
    width: 100%;
}

.btn:nth-child(1){
    background: var(--bg-color);
    color: var(--hover-color);
}

    .btn:nth-child(1):hover {
        color: var(--bg-color);
        border: 2px solid var(--hover-color);
        box-shadow: var(--neon-box-shadow);
    }

    .btn:nth-child(1)::before {
        background: var(--hover-color);
    }
.social-icons {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    width: 220px;
    height: 40px;
    
}
    .social-icons a {
        display: inline-flex;
        width: 50px;
        height: 100%;
        justify-content: center;
        align-items: center;
        background: var(--bg-color);
        color: var(--hover-color);
        border: 2px solid var(--hover-color);
        transition: .6s;
        box-shadow: 0 0 0.3rem #12f7ff;
        border-radius: 5px;
        position: relative;
        z-index: 1;
        overflow: hidden;
        opacity: 0.5;
        
    }

        .social-icons a i {
            font-size: 1.5rem;
            opacity:1;
        }

        .social-icons a:hover {
            color: var(--bg-color);
            opacity: 2;
        }

.social-icons a::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--hover-color);
    transition: .6s;
    z-index: -1;
}

    .social-icons a:hover::before{
        width: 100%;
    }

.whatsapp-icon {
    position: fixed;
    bottom: 70px;
    right: 70px;
    font-size: 50px;
    color: #fff;
    z-index: 9999;
    color: #4cff00;
}

    .whatsapp-icon:hover {
        color: #97ff00;
    }

.contact-text {
    display: none;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: #1f2327;
    padding: 5px 10px;
    font-size: 15px;
    border-radius: 4px;
    white-space: nowrap;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
}


.whatsapp-icon:hover .contact-text {
    border: 2px solid #97ff00;
    background: #97ff00;
    box-shadow: var(--neon-box-shadow-green);
    display: block;
}
.home-vid {
    opacity: 0.6;
    z-index: -1;
}
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0;
    transition: opacity 3s;
}

/*About Section css*/

.about {
    position: relative; /* Establece una posición relativa para el contenedor */
    display: flex;
    grid-gap: 2rem;
    height: 500px;
}

    .about::before {
        content: "";
        background-image: url('../img/A1_Inicio/banner.jpg'); /* Ruta de la imagen */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1; /* Asegura que esta capa esté detrás del contenido */
    }

.about-content {
    max-width: 600px;
    display: grid;
    justify-content: center;
    align-items: center;
    align-content: center; 
}


    .about-content span{
        color: #fdfdfd;
        font-size: .8rem;
        font-weight: 300;
        letter-spacing: 2px;
        text-transform: uppercase;

    }

.about-content h2 {
    color: var(--h2-font);
    font-weight: 900;
    font-size: var(--big-font);
    margin-bottom: 20px;
}


.todo_services {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 1px; /* Espacio vertical */
    grid-column-gap: 1px;
    justify-content: center; /* Ajusta según tus necesidades */  
    align-items: center;
}

.flip-container_services {
    display: flex;
    justify-content: center;
    align-content: center;
    min-height: 200px;
    perspective: 1000px;
}

.card_services{
    height: 335px;
    width: 335px;
    text-align: center;
    margin: 15px;
    position: relative;
    transition: transform 1s;
    transform-style: preserve-3d;
}

.flip-container_services:hover .card_services{
    transform: rotateY(180deg);
    height: 335px;
    width: 335px;
}

.front_services, .back_services {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 70px;
}

.card_services .front_services img {
    border-radius: 10px; /* Ajusta el valor según tus necesidades */
    height: 335px;
    width: 335px;
    /*opacity: 0.8;*/
}

.front_services {
    color: #fff;
    flex-wrap: wrap;
    justify-content: space-around;
    display: flex;
}
    .front_services h1 {
        position: absolute;
        top: 30%; /* Alinea el texto verticalmente en el centro */
        left: 50%; /* Alinea el texto horizontalmente en el centro */
        transform: translate(-50%, -50%); /* Centra el texto correctamente */
        z-index: 1; /* Asegura que el texto esté sobre la imagen */
        color: white; /* Establece el color del texto, ajusta según tus necesidades */
        font-size: 24px; /* Ajusta el tamaño del texto según tus necesidades */
        font-weight: bold; /* Ajusta el peso de la fuente según tus necesidades */
    }


.back_services {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.3));
    backdrop-filter: blur(21px);
    -webkit-backdrop-filter: blur(21px);
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.36);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 10px;
    padding: 10px;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card_services .back_services img {
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.back_services h1 {
    position: absolute;
    top: 33%; /* Alinea el texto verticalmente en el centro */
    left: 50%; /* Alinea el texto horizontalmente en el centro */
    transform: translate(-50%, -50%); /* Centra el texto correctamente */
    z-index: 1; /* Asegura que el texto esté sobre la imagen */
    color: white; /* Establece el color del texto, ajusta según tus necesidades */
    font-size: 26px; /* Ajusta el tamaño del texto según tus necesidades */
    font-weight: bold; /* Ajusta el peso de la fuente según tus necesidades */
    width: 100%;
}

.back_services p {
    font-size: 14px;
    top: 45px;
    width: 260px;
    position: relative;
}

/*services section css------------------------------*/

.main-text {
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--hover-color);
    margin-top: 20px;
}

    .main-text h2 {
        font-weight: 700;
        font-size: var(--norma-font);
    }

    .main-text span {
        color: #fdfdfd;
        font-size: .8rem;
        font-weight: 300;
        letter-spacing: 2px;
        text-transform: uppercase;
    }


.section-services {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    grid-gap: 2rem;
    margin-top: 0;
}

    .section-services .services-box {
        flex: 1 1 18rem;
        height: auto;
        padding: 2rem 1rem 2rem;
        text-align: center;
        background: var(--secon-bg-color);
        transition: transform .4s;
        border-radius: 10px;
        box-shadow: var(--neon-box-shadow);
        border: 1px solid var(--hover-color);
        margin-top: 20px;
    }

.services-btn{
    width: auto;
    justify-content: center;
    margin-top:40px;
}

.services-box:hover {
    transform: translateY(-.7rem);
    box-shadow: var(--neon-box-shadow-green);
    border: 1px solid var(--hover-color-green);
}

.service-icon {
    border: 2px solid var(--hover-color);
    padding: 1rem;
    background: var(--bg-color);
    align-items: center;
    font-size: 2rem;
    border-radius: 50%;
    position:relative;
    color:var(--hover-color);
    box-shadow: var(--neon-box-shadow);
    outline:3px solid var(--bg-color);
}


.services-box h3{
    margin-top: 20px;
    font-size: 1.5rem;
}

.services-box p{
    margin: .5rem 0 1.5rem 0;
    font-weight: 300;
    letter-spacing:1px;
    color: #bdbdbd;
    line-height:1.6;
}

/*logo client-------------------*/

.client {
    background: var(--secon-bg-color);
    padding-top: 20px
    
}

.client .main-tex span{
    margin-top: 80px;
}

#timeline {
    display: flex;
    background-color: #0d67ac;
}

    #timeline:hover .tl-item {
        width: 23.3333%;
    }

.tl-item {
    transform: translate3d(0, 0, 0);
    position: relative;
    width: 300px;
    height: 80vh;
    min-height: 600px;
    color: #fff;
    overflow: hidden;
    transition: width 0.5s ease;
}

    .tl-item:before, .tl-item:after {
        transform: translate3d(0, 0, 0);
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .tl-item:after {
        background: rgba(12, 44, 69, 0.85);
        opacity: 1;
        transition: opacity 0.5s ease;
    }

    .tl-item:before {
        background: linear-gradient(to bottom, rgba(28, 96, 198, 0) 0%, rgb(60, 121, 235) 75%);
        z-index: 1;
        opacity: 0;
        transform: translate3d(0, 0, 0) translateY(50%);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .tl-item:hover {
        width: 30% !important;
    }

        .tl-item:hover:after {
            opacity: 0;
        }

        .tl-item:hover:before {
            opacity: 1;
            transform: translate3d(0, 0, 0) translateY(0);
            transition: opacity 1s ease, transform 1s ease 0.25s;
        }

        .tl-item:hover .tl-content {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.75s ease 0.5s;
        }

        .tl-item:hover .tl-bg {
            filter: grayscale(0);
        }

.tl-content {
    transform: translate3d(0, 0, 0) translateY(25px);
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 1.618em;
    top: 55%;
    opacity: 0;
}


.tl-year {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.tl-content h1 {
  
    font-size: 1.5rem;
    font-weight: normal;
}

.tl-bg {
    transform: translate3d(0, 0, 0);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center center;
    transition: filter 0.5s ease;
    filter: grayscale(100%);
}

/*experience section---------------------------------------*/



.experience .main-text {
    width: 70%;
    text-align: center;
}

    .experience .main-text p {
        color: #fff;
        font-size: 1.1rem;
        margin-top: 7px;
        align-content: center;
        text-align: center;
        font-weight: 300;
        letter-spacing: 1px;
        line-height: 1.6;
    }


.experience #user-button {
    z-index: 1000;
    bottom: 1rem !important;
    right: 1rem !important;
    color: var(--user-button-text);
    transition: 1s 0s ease-out;
    -webkit-animation: slide 3s ease-out forwards;
    animation: slide 3s ease-out forwards;
}

@-webkit-keyframes slide {
    0%, 50% {
        opacity: 0;
        display: block !important;
    }

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

@keyframes slide {
    0%, 50% {
        opacity: 0;
        display: block !important;
    }

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

.experience #user-button .u-card {
    border-radius: 100%;
    box-shadow: 0 0 1rem -0.25rem var(--user-button-shadow), inset 0 0 1rem -0.75rem var(--user-button-shadow);
}

.experience #user-button .u-main {
    cursor: pointer;
    --user-button-background: var(--user-button-main, #EC87C0);
}

    .experience #user-button .u-main img {
        height: 100%;
        width: 100%;
    }

    .experience #user-button .u-main iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 4rem;
        height: 4rem;
        opacity: 1;
        transition: 0s 4s;
    }

.experience #user-button .u-icons {
    position: relative;
    z-index: 950;
    transform: translate(-50%, -50%);
    background: var(--user-button-circle);
    box-shadow: 0 0 0 0.125rem var(--user-button-cardborder);
    border-radius: 100%;
    transition: 0.25s;
    opacity: 1 !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    /*&:before {
     z-index:-1;
     position:absolute;
     top:0; right:0; bottom:0; left:0;
     content:'';

     backdrop-filter: blur(10px);
  }*/
}

    .experience #user-button .u-icons a {
        color: inherit;
        display: grid;
        place-items: center;
        width: 30px;
        height: 30px;
        text-decoration: none;
    }

        .experience #user-button .u-icons a div {
            padding: 0.5rem;
            transition: 0s;
        }

        .experience #user-button .u-icons a[href="https://twitter.com/zed_dash"] {
            position: relative;
        }

            .experience #user-button .u-icons a[href="https://twitter.com/zed_dash"]:before {
                content: "Middle Click";
                position: absolute;
                top: -1.5rem;
                left: 50%;
                font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
                white-space: pre;
                transform: translateX(-50%);
                opacity: 0;
                pointer-events: none;
                transition: 0.25s ease-in;
                background: #fffc;
                padding: 0.25rem 0.5rem;
                border-radius: 0.25rem;
            }

            .experience #user-button .u-icons a[href="https://twitter.com/zed_dash"].show:before {
                opacity: 1;
                transition: 0.25s ease-out;
            }

            .experience #user-button .u-icons a[href="https://twitter.com/zed_dash"] div {
                color: #1da1f2;
            }

        .experience #user-button .u-icons a[href="https://codepen.io/z-"] div {
            background: black;
            color: white;
        }

        .experience #user-button .u-icons a.u-random div {
            position: relative;
            top: -1px;
            -webkit-animation: diespin 2s linear infinite;
            animation: diespin 2s linear infinite;
        }

@-webkit-keyframes diespin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes diespin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.experience #user-button .u-icons a.u-random:not(:hover) div {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.experience #user-button .u-icons > * {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--singlecolour);
    border-radius: 100%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: 0.25s -0.05s;
}

    .experience #user-button .u-icons > *:before {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .experience #user-button .u-icons > *:hover, body #user-button .u-icons > *:focus-within {
        background: var(--hcolour);
    }

    .experience #user-button .u-icons > *:first-child:nth-last-child(1):nth-child(1), body #user-button .u-icons > *:first-child:nth-last-child(1) ~ *:nth-child(1) {
        left: 25%;
        top: 25%;
    }

    .experience #user-button .u-icons > *:first-child:nth-last-child(2):nth-child(1), body #user-button .u-icons > *:first-child:nth-last-child(2) ~ *:nth-child(1) {
        left: 37.5%;
        top: 18.75%;
    }

    .experience #user-button .u-icons > *:first-child:nth-last-child(2):nth-child(2), body #user-button .u-icons > *:first-child:nth-last-child(2) ~ *:nth-child(2) {
        left: 18.75%;
        top: 37.5%;
    }

    .experience #user-button .u-icons > *:first-child:nth-last-child(3):nth-child(1), body #user-button .u-icons > *:first-child:nth-last-child(3) ~ *:nth-child(1) {
        left: 50%;
        top: 15.625%;
    }

    .experience #user-button .u-icons > *:first-child:nth-last-child(3):nth-child(2), body #user-button .u-icons > *:first-child:nth-last-child(3) ~ *:nth-child(2) {
        left: 25%;
        top: 25%;
    }

    .experience #user-button .u-icons > *:first-child:nth-last-child(3):nth-child(3), body #user-button .u-icons > *:first-child:nth-last-child(3) ~ *:nth-child(3) {
        left: 15.625%;
        top: 50%;
    }

    .experience #user-button .u-icons > *:first-child:nth-last-child(4):nth-child(1), body #user-button .u-icons > *:first-child:nth-last-child(4) ~ *:nth-child(1) {
        left: 62.5%;
        top: 18.75%;
    }

    .experience #user-button .u-icons > *:first-child:nth-last-child(4):nth-child(2), body #user-button .u-icons > *:first-child:nth-last-child(4) ~ *:nth-child(2) {
        left: 37.5%;
        top: 18.75%;
    }

    .experience #user-button .u-icons > *:first-child:nth-last-child(4):nth-child(3), body #user-button .u-icons > *:first-child:nth-last-child(4) ~ *:nth-child(3) {
        left: 18.75%;
        top: 37.5%;
    }

    .experience #user-button .u-icons > *:first-child:nth-last-child(4):nth-child(4), body #user-button .u-icons > *:first-child:nth-last-child(4) ~ *:nth-child(4) {
        left: 18.75%;
        top: 62.5%;
    }

.experience #user-button:hover .u-icons, body #user-button:focus-within .u-icons {
    width: 300% !important;
    height: 300% !important;
}

.experience {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
    overflow: hidden;
    transition: 0.25s;
    background: var(--secon-bg-color);
}


.experience .credit {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: inherit;
}

.experience .options {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    min-width: 600px;
    max-width: 900px;
    width: calc(100% - 100px);
    height: 400px;
}

@media screen and (max-width: 718px) {
    .experience .options {
        min-width: 520px;
    }

        body .options .option:nth-child(5) {
            display: none;
        }
}

@media screen and (max-width: 638px) {
    .experience .options {
        min-width: 440px;
    }

        .experience .options .option:nth-child(4) {
            display: none;
        }
}

@media screen and (max-width: 558px) {
    .experience .options {
        min-width: 360px;
    }

        .experience .options .option:nth-child(3) {
            display: none;
        }
}

@media screen and (max-width: 478px) {
    .experience .options {
        min-width: 280px;
    }

        .experience .options .option:nth-child(2) {
            display: none;
        }
}

.experience .options .option {
    position: relative;
    overflow: hidden;
    min-width: 60px;
    margin: 10px;
    background: var(--optionBackground, var(--defaultBackground, #e6e9ed));
    background-size: auto 120%;
    background-position: center;
    cursor: pointer;
    transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

    .experience .options .option:nth-child(1) {
        --defaultBackground: #5d9cec;
    }

    .experience .options .option:nth-child(2) {
        --defaultBackground: #ff431e;
    }

    .experience .options .option:nth-child(3) {
        --defaultBackground: #2ecc71;
    }

    .experience .options .option:nth-child(4) {
        --defaultBackground: #5d9cec;
    }


    .experience .options .option.active {
        flex-grow: 10000;
        transform: scale(1);
        max-width: 600px;
        margin: 0px;
        border-radius: 40px;
        background-size: auto 100%;
        /*&:active {
     transform:scale(0.9);
  }*/
    }

        .experience .options .option.active .shadow {
            box-shadow: inset 0 -120px 120px -120px black, inset 0 -120px 120px -100px black;
        }

        .experience .options .option.active .label {
            bottom: 20px;
            left: 20px;
        }

            .experience .options .option.active .label .info > div {
                left: 0px;
                opacity: 1;
            }

    .experience .options .option:not(.active) {
        flex-grow: 1;
        border-radius: 30px;
    }

        .experience .options .option:not(.active) .shadow {
            bottom: -40px;
            box-shadow: inset 0 -120px 0px -120px black, inset 0 -120px 0px -100px black;
        }

        .experience .options .option:not(.active) .label {
            bottom: 10px;
            left: 10px;
        }

            .experience .options .option:not(.active) .label .info > div {
                left: 20px;
                opacity: 0;
            }

    .experience .options .option .shadow {
        position: absolute;
        bottom: 0px;
        left: 0px;
        right: 0px;
        height: 120px;
        transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
    }

    .experience .options .option .label {
        display: flex;
        position: absolute;
        right: 0px;
        height: 40px;
        transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
    }

        .experience .options .option .label .icon {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            min-width: 40px;
            max-width: 40px;
            height: 40px;
            border-radius: 100%;
            background-color: white;
            color: var(--defaultBackground);
        }

        .experience .options .option .label .info {
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin-left: 10px;
            color: white;
            white-space: pre;
        }

            .experience .options .option .label .info > div {
                position: relative;
                transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity 0.5s ease-out;
            }

            .experience .options .option .label .info .main {
                font-weight: bold;
                font-size: 1.2rem;
            }

            .experience .options .option .label .info .sub {
                transition-delay: 0.1s;
            }

    /*INTERES SECTION ---------------------------*/

    .interesg{
        background: var(--three-bg-color);
    }

.interes h1 {
    font-size: var(--big-font);
    font-weight: 900;
    text-align: center;
    justify-content: center;
    justify-items: center;
    display: flex; 
    width: 60%;
}

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

    .texto span {
        color: #fdfdfd;
        font-size: .8rem;
        font-weight: 300;
        letter-spacing: 2px;
        text-transform: uppercase;
    }


/*contact ius css------------------------------------*/

.contact{
    background: var(--bg-color);
    width: 100%;
}

.contact h2{
    color: var(--hover-color-green)
}


.contact .btn {
    color: #bdbdbd;
    border: 2px solid var(--hover-color-green);
    box-shadow: var(--neon-box-shadow-green);
}

    .contact .btn:nth-child(1):hover {
        color: var(--bg-color);
        border: 2px solid var(--hover-color-green);
        box-shadow: var(--neon-box-shadow-green);
    }

    .contact .btn:nth-child(1)::before {
        background: var(--hover-color-green);
    }

.contact form{
    text-align: center;
    max-width: 50rem;
    margin: 5rem auto;
    margin-bottom: 6rem;
}

    .contact form input, textarea {
        width: 100%;
        color: var(--text-color-);
        background: var(--bg-color-);
        margin-bottom: .8rem;
        border: none;
        border-radius: 4px;
        padding: .9rem;
        /*box-shadow: var(--neon-box-shadow-green);*/
        border: 2px solid var(--hover-color-green);
        text-decoration-color: #fff;
    }

    .contact form textarea {
        resize: none;
        
    }

    .formBtn{
        display:flex;
        justify-content:center;
        width: 100%;
        
    }
    .formBtn .btn{
        cursor: pointer;
        font-size:1rem;
    }


    /*Footer css*/


    footer{
        padding: 1.5rem 10%;
        display: flex;  
        align-items:center;
        justify-content:space-between;
        background:var(--secon-bg-color);
    }

    footer p{
        color:#bdbdbd;
    }

        footer .social-icons a {
            background: var(--hover-color);
            opacity: 1;
        }

    footer a{
        display: inline-flex;
        justify-content: center;
        color: var(--text-color);
        background: var(--hover-color);
        padding:.6rem;
        border-radius:5px;
    }

    footer a i{
        font-size: 1rem;
        color: var(--secon-bg-color);
    }

/*Parallax*/

.scroll-scale{
    opacity: 0;
    transform: scale(.9);
    transition: all 2s;

}

.scroll-bottom{
    opacity:0;
    transform: translateY(300px);
    transition: 3s;

}

.scroll-top {
    opacity: 0;
    transform: translateY(-300px);
    transition: 3s;
}

.show-items{
    opacity: 1;
    transform: translateX(0);
    transition: 3s;
}

/*lmouse heaader*/














/*KEYFRAMES*/
@keyframes morph {
    0%, 100%{
        border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
    }
    30% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }
    60% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }
    80% {
        border-radius: 69% 31% 66% 34% / 21% 30% 70% 79%;
    }

}

@keyframes slideAnimation{

    0%{
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }

}



/*----------------RESPONSIVE---------------------------------*/


@media (max-width:1540px){
    .todo_services {
        grid-template-columns: repeat(2, 1fr);
    }

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

    nav {
        display: none;
    }

    #menu-icon {
        display: block;
        transition: all .4s ease;
    }

        #menu-icon.fa-x {
            transform: rotate(-180deg);
        }

    .navlist {
        display: flex;
        position: absolute;
        top: -1000px;
        right: 0;
        left: 0;
        flex-direction: column;
        background: var(--bg-color);
        text-align: left;
        padding: 0 5%;
        transition: all .45s ease;
    }

        .navlist a {
            display: block;
            padding-bottom: 1rem;
            font-size: 1rem;
        }

        .navlist.open {
            top: 100%;
        }


    .home {
        grid-template-columns: 1fr;
    }

    .about {
        flex-direction: column-reverse;
    }

    .tl-content h1 {
        font-size: 1.2rem;
        font-weight: normal;
    }

    .fillter-buttons {
        margin: 2.5rem 0;
    }

    footer p {
        font-size: 1rem;
    }
}

@media(max-width: 870px) {
    .tl-content h1 {
        font-size: 1rem;
        font-weight: normal;
    }

}


@media(max-width: 830px){
    .todo_services {
        grid-template-columns: repeat(1, 1fr);
    }

}




@media(max-width: 991px){
    header,header.sticky{
        padding: 15px 5%;
    }

    footer{
        padding:15px 5%;
    }
    section{
        padding: 50px 5%;
    }

    .navlist a{
        padding: 8px 15px;
    }




    :root{
        --big-font:2.2rem;
        --norma-font:1.8rem;
        --neon-box-shadow: 0 0 .8rem #12f7ff;
        --h2-font: 3rem;
    }
    .home-contect{
        margin-top: 5rem;
    }

    .social-icons{
        margin-top: 2rem;
    }
}

@media(max-width: 690px) {
    .tl-content h1 {
        font-size: .5rem;
        font-weight: normal;
    }
}



@media(max-width: 615px) {
    .change-text {
        font-size: 99%;
    }

    .tl-content h1 {
        font-size: .7rem;
        font-weight: normal;
    }
    .tl-content h1 {
        font-size: .4rem;
        font-weight: normal;
    }
}
@media(max-width: 440px) {
    html{
        font-size:90%;
    }

    footer p{
        font-size: .8rem;
    }
    .fillter-buttons .button{
        font-size: .5rem;
    }
    .info-about1, .info-about2{
        display:none;

    }

    .tl-content h1 {
        font-size: .2rem;
        font-weight: normal;
    }
}

@media(max-width:370px){
    html {
        font-size: 85%;
    }

    footer p {
        font-size: .7rem;
    }

    .fillter-buttons .button {
        font-size: .4rem;
    }

    .info-about1, .info-about2 {
        display: none;
    }

    .tl-content h1 {
        font-size: .2rem;
        font-weight: normal;
    }

}




.titulo_produc {
    text-align: center !important;
    justify-content: center !important;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.servicessec .header-section2 {
    margin-bottom: 35px;
}

.title {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 25px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 35px;
}

    .title:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 140px;
        height: 1px;
        background-color: #28a745;
    }

    .title:after {
        content: "";
        position: absolute;
        bottom: -1px;
        left: 50%;
        transform: translateX(-50%);
        width: 45px;
        height: 3px;
        background-color: #28a745;
    }

.header-section2 span {
    color: #fff;
    font-size: .8rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}
