*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0%;
    background: #0c1618;
    transition: 0.5s;
    place-items: center;
    cursor: none;
}

body.active
{
    background: #e0e2db;
    transition: 0.5s;
}

.contenedor_loader {
    background-color: #0c1618;
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    transition: all 1s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader::after {
    content: "";
    color: #03DFB5;
    width: 100px;
    height: 100px;
    border: 12px solid currentColor;
    box-sizing: border-box;
    border-top-color: transparent;
    border-left-color: transparent;
    border-radius: 50%;
}

.loader:nth-child(2)::after {
    content: "";
    color: #03DFB5;
    width: 80px;
    height: 80px;
    border: 12px solid currentColor;
    box-sizing: border-box;
    border-bottom-color: transparent;
    border-right-color: transparent;
    border-radius: 50%;
    animation: rotate 1.7s infinite linear;
}


@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

[class^="cursor"]{
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    position: fixed;
}

.cursor-inner{
    width: 35px;
    height: 35px;
    background: rgb(255, 255, 255);
    /*mix-blend-mode: difference;*/
}
.todo:hover ~ .cursor-outer{
    width: 35px;
    height: 35px;
    
    transition: 0.13s;
    border: solid;
    border-color: #ffffff;
}
.cabeza:hover ~ .cursor-inner{
    opacity: 0;
    background: rgb(255, 255, 255);
    width: 45px;
    height: 45px;
}

a:hover ~ .cursor-inner{
    background: rgb(255, 255, 255);
    transition: 0.15s;
}


#toggle
{
    position: absolute;
    margin: 0;
    display: block;
    width: 40px;
    height: 20px;
    border-radius: 20px;
    background-color: #e0e2db;
    transition: 0.5s;
    margin-top: 20px;
    z-index: 9;
    /* transform: rotate(90deg); */ 
}

#toggle.active
{
    background: #0c1618;
}

#toggle .indicator
{
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: #0b1517;
    border-radius: 50%;
    transform: scale(0.8);
    transition: 0.5s;
}

#toggle.active .indicator
{
    left: 20px;
    background: #e0e2db;
}

h1.active
{
    color: #0c1618;
    transition: 0.5s;
}

h2.active
{
    -webkit-text-stroke: 1px #0c1618;
    transition: 0.5s;
}

h3.active
{
    color: #0c1618;
    transition: 0.5s;
}

h4.active
{
    color: #0c1618;
    transition: 0.5s;
}
h5.active
{
    color: #0c1618;
    transition: 0.5s;
}
h6.active
{
    color: #0c1618;
    transition: 0.5s;
}
p.active
{
    color: #0c1618;
    transition: 0.5s;
}

.ultimaLinea.active {
    background-color: #0c1618;
    transition: 0.5s;
}

.linea-link-proyecto.active {
    background-color: #0c1618;
    transition: 0.5s;
}




html {
    scroll-behavior: smooth;
}

.contacto > .todo > .footer {
    margin-top: -200px;
}

.contacto > .todo > .contenedor > .textoPrincipal > .texto1 > h1 {
    font-size: 76px;
    line-height: 59px;
    letter-spacing: -2px;
}

.todo {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.cabeza {
    display: flex;
    width: 100%;
    height: 45px;
    justify-content: space-between;
    position: fixed;
    top: 0;
    z-index: 1;
    transition: 0.5s;
}

.logo1 {
    justify-content: flex-start;
    margin-left: 25px;
    transition: 0.5s;
}

.logo1.active {
    background-image: url('images/General/Logo_negro.svg');
}

.logo1 > a > img {
    width: 160px;
    margin: 0px;
    margin-left: 38px;
    margin-top: 20px;
    vertical-align: middle;
    filter: drop-shadow(-1px 1px 1px rgba(0, 0, 0, 0.356));
}

.burger {
    margin-top: 8px;
    margin-right: 20px;
    filter: drop-shadow(-1px 1px 1px rgba(0, 0, 0, 0.356));
}

body.open-menu .menuDesplegable{
    display: block;
  }

.linea {
    margin-top: 10px;
    width: 46px;
    height: 2px;
    /* background-color: rgb(255, 255, 255); */
    vertical-align: middle;
}

.menuDesplegable  {
    width: 100%;
    height: 100%;
    margin-top: 35px;
    right: 10px;
    display: none;
    position: fixed;
    background-color:#0c1618;  
}

.menuDesplegable a {
    font-family: degular-text, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 80px;
    line-height: 58px;
    margin-left: 35px;
    color: rgb(255, 255, 255);
    /* justify-content: flex-start;*/
    text-align: right;
    text-decoration:none;
    align-items: baseline;
}

.flecha > a > img {
    width: 80%;
}

.slider {
    width: 100vw;
    height: auto;
    margin: auto;
    overflow: hidden;
}

.slider .slide-track {
    display: flex;
    animation: scroll 10s linear infinite;
    -webkit-animation: scroll 10s linear infinite;
    width: calc(2150px * 2);
}

.slider .slide {
    width: 100%;
    -webkit-text-size-adjust: 100%;
    white-space: nowrap;
    margin: 10px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-2158px));
        transform: translateX(calc(-2158px));
    }
}

.slider2 {
    width: 100vw;
    height: auto;
    margin: auto;
    overflow: hidden;
}

.slider2 .slide-track2 {
    display: flex;
    animation: scroll 15s linear infinite;
    -webkit-animation: scroll 15s linear infinite;
    width: calc(2500px * 2);
}

.slider2 .slide2 {
    width: 100%;
    -webkit-text-size-adjust: 100%;
    white-space: nowrap;
    margin-right: 10px;
    margin-top: -70px;
}

/*
@keyframes scroll {
    0% {
        transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-2508px));
        transform: translateX(calc(-2508px));
    }
}
*/

.lineaDeSeparacion {
    width: 0px;
    height: 20px;
}

.lineaDeSeparacion2 {
    width: 0px;
    height: 8px;
    opacity: 0%;
}

.contenedor {
    justify-content: center;
    align-items: center;
    display: block;
    width: 100%;
    margin-bottom: 80px;
}

.ubicacionWeb {
    margin-left: 35px;
    margin-top: 150px;
}

.textoPrincipal {
    text-align: left;
    margin-top: 150px;
    justify-content: left;
    align-items: flex-start;
    height: 100vh

}

.textoPrincipal a {
    width: 80px;
    align-items: baseline;
    margin-bottom: 5%;
    margin-right: 20px;    
}
.texto1 {
    text-align: left;
    width: 100%;
    margin-bottom: 2rem;
    align-items: baseline;
    display: grid;
}

/* Boton subir*/
.go-top-container {
    position: fixed;
    bottom: 0px;
    right: -15px;
    width: 70px;
    height: 70px;
    z-index: -1;
    transform: translate(-50%, -50%) scale(0);
}

.go-top-container img {
    transform: rotate(180deg);
}

.show {
    z-index: 10;
}

.show.go-top-container{
    transform: translate(-50%, -50%) scale(1);
}

.flechaDeCorreo {
    float: left;
    vertical-align: middle;
    justify-content: flex-start;
    display: flex;
}

.texto1 > .flechaDeCorreo > img {
    width: 65px;
    height: 63px;
    transform: rotate(270deg);
    margin-left: 35px;
    display: flex;
    vertical-align: middle;
    align-items: flex-start;
    align-items: baseline;
    margin-bottom: 12%;
    margin-right: 20px; 
}

.correoConFlecha > h4 {
    display: inline-flex;
    vertical-align: middle;
    align-items: flex-start;
    margin: 0px;
}

.correoConFlecha {
    display: flex;
}

p {
    font-family: degular-text, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: start;
    font-size: 18px;
    margin: 0 auto;
    margin-top: 5px;
    margin-bottom: 40px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: 0.5s;
}

a, p {
    text-decoration: none;
}

h1 {
    font-family: degular-text, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 92px;
    line-height: 70px;
    margin: auto;
    text-align: left;
    margin: 35px;
    color: white;
    transition: 0.5s;
    
    }

h2 {
    font-family: degular-text, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 200px;
    margin: auto;
    text-align: left;
    margin: 0px;
    -webkit-text-stroke: 1px white;
    color: transparent; 
    transition: 0.5s;

}

h3 {
    font-family: degular-text, sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 54px;
    line-height: 40px;
    margin: 0px;
    text-align: left;
    margin-left: 35px;
    color: white;
    transition: 0.5s;
    
    }

h4 {
    font-family: degular-text, sans-serif;
    font-weight: 500;
    font-style: normal;        
    font-size: 58px;
    line-height: 40px;
    margin: auto;
    text-align: left;
    color: rgb(255, 255, 255);

    transition: 0.5s;
}

 h5 {
    font-family: degular-text, sans-serif;
    font-weight: 700;
    font-style: normal;        
    font-size: 26px;
    line-height: 40px;
    margin: auto;
    text-align: left;
    color: white;
    transition: 0.5s;
    }

h6 {
    font-family: degular-text, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 24px;
    margin: auto;
    text-align: left;
    color: white;
    text-decoration: none;
    transition: 0.5s;
    }

.container-destacados {
    object-fit: cover;
    object-position: center center;
    display: grid;
}

.box-img1 {
    margin: 35px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
}
.container-destacados .box-img1 img {
    width: 50vw;
    justify-content: center;

}

.box-img2 {
    width: 50vw;
    margin: 35px;
}
.container-destacados .box-img2 img {
    width: 50vw;

}

.box-img3 {
    margin: 35px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
}
.container-destacados .box-img3 img {
    width: 50vw;

}

.box-img4 {
    width: 50vw;
    margin: 35px;
}
.container-destacados .box-img4 img {
    width: 50vw;

}

.box-img5 {
    margin: 35px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
}
.container-destacados .box-img5 img {
    width: 50vw;

}

.box-img6 {
    width: 50vw;
    margin: 35px;
}
.container-destacados .box-img6 img {
    width: 50vw;

}

.linea-link-proyecto {
    width: auto;
    height: 1px;
    background-color: #e0e2db;
    margin: 0px;
    margin-top: 5px;
}


.ultimaLinea {
    width: auto;
    height: 1px;
    background-color: rgb(255, 255, 255);
    margin: 0px;
    margin-top: 45px;
    margin-bottom: 30px;
    display: flex;
}

.footer {
    height: 200px;
    width: 100%;
    padding-left: 35px;
    padding-right: 35px;
}

.textosFooter {
    display: flex;
    width: 95%;
    justify-content: space-between;
    top: 0;
    z-index: 99;       
}

.enlacesRRSS > a {
    text-decoration: none;
}

.enlacesRRSS > a > h6 {
    margin-top: 7px;
}

.datosEmpresa > h5 {
    margin-top: 10px;
}

.CajaTodosLosProyectos {
    width: 500px;
    height: 300px;
    background-color: aqua;
}
    /* FORMATO PC*/
    @media (min-width: 1024px) {

        .todo {
            width: 100%;
            margin-left: 10px;
        }
    
        .cabeza {
           width: 100%;
        }

        .logo1 > a > img {
            margin-left: 20px;
        }
    
        .contenedor {
            width: 100%;
            margin: 0 auto;
            text-align: center;
            justify-content: center;
        }
    
        .textoPrincipal {
            display: flex;
            margin-top: 0px;
            align-items: flex-end;
            justify-content: center;
        }

        .flecha {
            width: 20%;
        }

        
        .textoPrincipal > img:hover {
            width: 540px;
            transition: 1s;
        }
        
        h1 {
            font-size: 72px;
            line-height: 60px;
        }

        h3 {
            margin-bottom: 15px;
        }

        .texto2 > h1 
        {
            display: none;
        }
    }


     /* FORMATO IPAD*/
     @media (max-width: 1024px) {

        .contenedor_loader {
            width: 105vw;
            height: 105vh;
        }

        .todo {
            width: 100%;
            margin-left: 10px;
        }
    
        .cabeza {
           width: 100%;
        }

        .logo1 > a > img {
            margin-left: 0px;
        }
    
        .contenedor {
            width: 100%;
            margin: 0 auto;
            text-align: center;
            justify-content: center;
        }
    
        .textoPrincipal {
            display: flex;
            margin-top: 60px;
            align-items: flex-end;
            justify-content: center;
        }

        .menuDesplegable a {
            margin-top: 700px;
            font-size: 70px;
            line-height: 20px;
            margin-left: 55px;
            justify-content: flex-start;
            align-items: baseline;
        }

        .flecha {
            width: 20%;
        }

        #toggle {
            margin-left: 25%;
        }

        .textoPrincipal > img:hover {
            width: 540px;
            transition: 1s;
        }

        p {
            font-size: 15px;
        }
        
        h1 {
            font-size: 68px;
            line-height: 58px;
        }

        h3 {
            margin-bottom: 25px;
        }

        .ultimaLinea {
            margin-top: 15px;
        }

        h4 {
            font-size: 40px;
        }

       

        .texto1 > h1 
        {
            display: none;
        }

        .textoPrincipal {
            margin-top: -10%;
        }

        .ubicacionWeb > h4 {
            visibility:hidden;
        }
    }



    /* FORMATO movil*/
    @media (max-width: 450px) {

        .contenedor_loader {
            width: 120vw;
            height: 120vh;
        }

        .todo {
            width: 100vw;
            margin-left: 5%;
        }
    
        .cabeza {
           width: 95%;
           margin-left: 0%;
        }

        .logo1 > a > img {
            margin-left: 0px;
        }
    
        .contenedor {
            width: 100%;
            margin: 0 auto;
            text-align: center;
            justify-content: center;
        }
    
        .textoPrincipal {
            display: flex;
            margin-top: 60px;
            align-items: flex-end;
            justify-content: center;
        }

        #flecha {
            display: none;
        }

        h1 {
            font-size: 56px;
            line-height: 48px;
        }

        .texto1 h1 {
            width: 95%;
            margin: 0px;
        }

        .container-destacados {
            justify-items: center;
            width: 100%;
        }


        .container-destacados .box-img1 img {
            width: 100vw;
            justify-content: center;
        }

        #toggle {
            margin-left: 40%;
            margin-top: 25px;
        }

        .menuDesplegable a {
            margin-top: 700px;
            font-size: 45px;
            line-height: 20px;
            margin-left: 35px;
            justify-content: flex-start;
            align-items: baseline;
        }

        .textosFooter {
            display: block;
        }

        .ultimaLinea {
            margin-top: 5px;
        }

        h3 {
            margin-left: 0px;
            margin-bottom: 15px;
        }

        .footer {
            width: auto;
            height: 300px;
        }

        .enlacesRRSS {
            margin-top: 30px;
        }

        .box-img2 {
            margin: 35px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            align-content: center;
            margin-right: 20px;
        }
        .container-destacados .box-img1 img {
            width: 80vw;
            justify-content: center;
        }

        .container-destacados .box-img2 img {
            width: 80vw;
            justify-content: center;
        }

        .container-destacados .box-img3 img {
            width: 80vw;
            justify-content: center;
        }

        .container-destacados .box-img4 img {
            width: 80vw;
            justify-content: center;
        }

        .container-destacados .box-img5 img {
            width: 80vw;
            justify-content: center;
        }

        .container-destacados .box-img6 img {
            width: 80vw;
            justify-content: center;
        }
       

        .slider .slide-track {
            display: flex;
            animation: scroll 10s linear infinite;
            -webkit-animation: scroll 10s linear infinite;
            width: calc(1000px * 2);
        }
        
        .slider .slide {
            width: 100%;
            -webkit-text-size-adjust: 100%;
            white-space: nowrap;
            margin: 10px;
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-1458px));
                transform: translateX(calc(-1458px));
            }
        }
        
        .slider2 {
            width: 100vw;
            height: auto;
            margin: auto;
            overflow: hidden;
        }
        
        .slider2 .slide-track2 {
            display: flex;
            animation: scroll 12s linear infinite;
            -webkit-animation: scroll 12s linear infinite;
            width: calc(1000px * 2);
        }
        
        .slider2 .slide2 {
            width: 100%;
            -webkit-text-size-adjust: 100%;
            white-space: nowrap;
            margin-right: 10px;
            margin-top: 0px;
        }

        h2 {
            font-size: 100px;
        }

        h4 {
            font-size: 42px;
            line-height: 34px;
            margin-left: -20px;
        }

        .correoConFlecha > h4 {
            font-size: 24px;
        }

        .container-destacados {
            justify-items: center;
            
        }

        .todo:hover ~ .cursor-outer{
            border: none;
            border-color: none;
        }
        .cabeza:hover ~ .cursor-inner{
            background: none;
        }
        
        a:hover ~ .cursor-inner{
            background: none;
            transition: 0.15s;
        }

        .texto2 > h1 
        {
            display: none;
        }

        .texto1 > h1 
        {
            display: flex;
            font-size: 48px;
            line-height: 36px;
            margin-top: -35%;
        }

        .ubicacionWeb  >h4 {
            margin-top: -10%;
        }

        .textoPrincipal {
            margin-top: -40%;
        }

        .menuDesplegable  {
            margin-top: 65px; 
        }
       


    }