*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'Microgramma';
    src: url('fonts/M025094D.TTF') format('truetype');
    font-style: normal;
    font-weight: normal;
  }


body{
    /* font-family: 'Open Sans', sans-serif; */
    font-family: 'Microgramma';
    justify-content: center;
    align-items: center;
}

.contenedor{
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    margin: auto;
    padding: 60px 0;
}

.header{
    height: 100vh;
    /* width: 90%; */
    /* 02 */
    /* background-image: linear-gradient(to bottom, rgba(214,225,212, 0.5) 0%, hsla(149, 58%, 78%, 0.7) 100%), url(img/archivo.png); */

    background: linear-gradient(to bottom, rgba(214,225,212, 0.4) 0%, hsla(149, 58%, 78%, 0.5) 100%);
    /* background-image: linear-gradient(to bottom, rgba(214,225,212, 0.5) 0%, hsla(149, 68%, 79%, 0.6) 100%), url(img/lockers720.gif); */
    background-repeat: no-repeat;
    background-position: center;
    background-size:auto;
    background-blend-mode:luminosity;
}

.head{
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: rgb(0, 0, 0);
    /* color: #45ab78; */
    /* color:rgba(77, 177, 114, 1) */
}


.hamburguer{
    position: fixed;
    top: 30px;
    right: 30px;
    background: #fff;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(69,171,120, .7);
}

.menu-navegacion{
    position: fixed;
    top: 0;
    width: 20vw;
    height: 100%;

    /* background-image: linear-gradient(to top, #fbc2eb 0%, #a6c0ee 100%); */
    /* 02 */
    /* background-image: linear-gradient(to top, #8cd190 0%, #c2fbe0 100%); */
    /* background-image: linear-gradient(to top, #a0d5be 0%, #d6e1d4 100%); */

    /* background-image: linear-gradient(135deg, #dbffca 0, #ceffca 10%, #c2f7c9 20%, #b6edc7 30%, #abe2c4 40%, #a0d5be 50%, #97c8b8 60%, #90bdb1 70%, #8ab2ab 80%, #86aaa6 90%, #83a2a1 100%); */

    background: linear-gradient(to right, hsla(149, 59%, 30%, 0.5) 0%, rgba(214,225,212, 0.5) 100%);
    /* background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%); */

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    right: 0;
    transform: translateX(110%);
    transition:transform 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    backdrop-filter: blur(5px);
    
    /* text-shadow: #d6e2d4 1 0 10px; */
}

.spread{
    transform: translateX(0);
}
checklist-servicio
.menu-navegacion a{
    /* color: #3c9568; */
    color: #000;
    text-decoration: none;
    /* text-emphasis-style:open;
    text-decoration-style: dashed; */
    font-weight: bolder;
    /* position: relative; */
    display: inline-block;
    padding: 6px 6px;
    text-transform: uppercase;
    /* letter-spacing: 4px; */
    /* font-size: 24px; */
    overflow: hidden;
    transition: 0.1s;
}

a:hover{
    /* color: #3c9568; */
    color: #fff;
    background: #56e09bfb;
    box-shadow: 0 0 10px #56e09bfb,
                0 0 40px #56e09bfb,
                0 0 80px #56e09bfb;
    transition-delay: 0.2s;
}

.titulo{
    font-size: 60px;
    margin-bottom: 15px;
}

.copy{
    font-weight: 200;
    font-size: 20px;
    color: #3c9568;
    text-shadow: 0 0 30px #9fc;
    /* text-shadow: 0 0 30px #d6e2d4; */
    text-align: justify;
}

/* Inicio sección PORTAFOLIO */

.portafolio{
    margin: 0;
    padding: 0;
    position: relative;
    width: 1100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px;
    margin: 30px 10px;
    padding: 20px 15px;
    /* background: #16384c; */
}

.portafolio .card{
    margin: 60px 10px;
    padding: 20px 20px;
    position: relative;
    max-width: 320px;
    height: 510px;
    background: #fff;
    /* padding: 10px 5px; */
    display:flex;
    flex-direction: column;
    /* box-shadow: 0px 5px 202px rgba(0,0,0,0.5); */
    box-shadow: 0px 5px 202px #3c9568;
    transition: 0.3s ease-in-out;
}

.portafolio .card:hover{
    height: 490px;
}

.portafolio .card .imgBx{
    position: relative;
    width: 260px;
    height: 100px;
    top: -60px;
    left: 10px;
    z-index: 1; 
    /* box-shadow: 0 5px 20px rgba(0,0,0,0.2); */
    box-shadow: 0 5px 20px #3c9568;
}

.portafolio .card .imgBx img{
    max-width: 100%;
    border-radius: 4px;
}

.portafolio .card .content{
    position:relative;
    margin-top: -100px;
    padding: 5px 10px;
    text-align: center;
    /* color: #111; */
    color: #3c9568;
    font-size: 12px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
    /* transition: 0.3s ease; */
}

.portafolio .card:hover .content{
    visibility: visible;
    opacity: 1;
    margin-top: -50px;
    transition-delay: 0.3s;
}

.portafolio .card .content h4{
    /* color: #43af71; */
    color: #3c9568;
    /* font-size: 6em; */
    font-size: 14px;
    /* font-weight: 500; */
    display: flex ;
    justify-content: center;
    align-items: center;
}

/* Fin sección PORTAFOLIO */

/* Inicio sección Services */

.subtitulo{
    /* color: #8ad09b; */
    color: #45ab78;
    font-size: 40px;
    text-align: center;
    font-weight: 300;
    margin-bottom: 30px;
}


.services{
    width: 100vw;
    
    /* background: linear-gradient(to bottom, hsla(149, 59%, 30%, 0.5) 0%, rgba(214,225,212, 0.5) 100%);
    background: linear-gradient(to top, rgba(214,225,212, 0.5) 0%, hsla(149, 68%, 79%, 0.6) 100%); */
    
}

.contenedor-servicio{
    display: flex;
    justify-content: center;
    /*align-items: left;*/
    flex-wrap: wrap;
}

.contenedor-servicio img{
    width: 40%;
}

.checklist-servicio{
    width: 45%;
}

.service{
    margin-bottom: 40px;
    margin-left: 10px;
}

.n-service{
    margin-bottom: 7px;
    /* color: #8ad09b; */
    color: #45ab78;
}

.number{
    display: inline-block;
    /* 02 */
    background-image: linear-gradient(to top, #8cd1b7 0%, #d4fbc2 100%);
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    margin-right: 5px;
    width: 30px;
    height: 30px;
    color: #fff;
    font-weight: 700;
}

.gallery{
    background: #f2f2f2;
    background: #fff;
}

.contenedor-galeria{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 30px;
}

.img-cabecera{
    width: 30%;
    display: flex;
    margin-left: auto; 
    margin-right: auto;
    margin-bottom: 15px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .6);
    cursor: pointer;
}

.img-galeria{
    width: 20%;
    display: block;
    margin-bottom: 100px;
    margin-right: 60px;
    box-shadow: 0 0 10px rgba(69,171,120, .7);
    cursor: pointer;
}

.imagen-light{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.534);
    transform: translate(100%);
    transition: transform .2s ease-in-out;
}

.agregar-imagen{
    width: 60%;
    transform: scale(0);
    border-radius: 10px;
    transition: transform .3s .2s;
}

.showImage{
    transform: scale(1);
}

.show{
    transform: translate(0);
}

.close{
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    cursor: pointer;
}

.experts{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

.cont-expert{
    width: 30%;
    text-align: center;
    margin-bottom: 20px;
}

.cont-expert img{
    display: block;
    margin: auto;
    width: 40%;
    box-shadow: 0 0 10px rgba(69,171,120, .7);
}

.n-expert{
    width: 100%;
    display: inline-block;
    margin-top: 20px;
    font-weight: 400;
    color: #45ab78;
}

footer{
    /* background: #8ad09b; */
    /* background: #bbcebc; */
    /* background: #101114; */
    /* background: #45ab78; */
    background: linear-gradient(to top, rgba(214,225,212, 0.5) 0%, hsla(149, 68%, 79%, 0.6) 100%);
    padding-bottom: 0.1px;
}

.footer-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 60px;
    padding-bottom: 40px;
}


.contact-us{
    width: 40%;
    color: #000;
}

.brand{
    font-weight: 400;
    font-size: 24px;
    color: #45ab78;
}

.brand+p{
    font-weight: 400;
}

.social-media{
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.social-media-icon{
    display: inline-block;
    margin-left: 20px;
    width: 60px;
    height: 60px;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
    color: #fff;
}

.social-media-icon i{
    font-size: 30px;
    line-height: 60px;
}

.line{
    width: 90%;
    max-width: 1200px;
    margin: auto;
    height: 2px;
    background: #45ab78;
    margin-bottom: 50px;
}

.social-media-icon:hover{
    background: #fff;
    color:#764ba2;
}

@media screen and (max-width: 800px){
    .menu-navegacion{
        width: 50vw;
    }

    .titulo{
        font-size: 40px;
    }

    .contenedor-servicio img{
        width: 80%;
        margin-bottom: 40px;
    }
    
    .checklist-servicio{
        width: 80%;
        /*box-shadow: 0 0 10px rgba(69,171,120, .7);*/
    }

    .service{
        margin-bottom: 30px;
    }

    .img-galeria{
        width: 40%;
    }
    
    .agregarImagen{
        width: 80%;
    }

    .cont-expert{
        width: 80%;
    }
    
    .footer-content{
        justify-content: center;
    }

    .social-media{
        width: 80%;
        justify-content: space-evenly;
    }

    .social-media-icon{
        margin-left: 0;
    }

    .contact-us{
        text-align: center;
        width: 80%;
        margin-bottom: 40px;
    }
    
}


@media screen and (max-width: 500px){
    .menu-navegacion{
        width: 65vw;
    }

    .hamburguer{
        top: 20px;
        right: 20px;
    }

    .titulo{
        font-size: 30px;
    }

    .subtitulo{
        font-size: 30px;
    }

    .img-galeria{
        width: 95%;
    }
    
    .agregar-imagen{
        width: 90%;
    }

    .social-media{
        width: 100%;
        justify-content: space-evenly;
    }

    .social-media-icon{
        margin-left: 0;
    }

    .contact-us{
        text-align: center;
        width: 95%;
        margin-bottom: 40px;
    }
    
}

.footer-content .box
{
    display: flex;
    justify-content: center;
    width: 700px;
    margin: 0 auto;
    justify-content: space-between;
    text-align: center;
}

.footer-content .box .icon .bi{
    cursor: pointer;
    width: 28px;
    height: 28px;
    padding: 2px;
    /* border: 2px solid #45ab78; */
    border: 1.5px solid #fff;
    border-radius: 20%;
}

.footer-content .box .icon p{
    position: relative;

    overflow: hidden;

    margin: 0;
    padding: 2px 5px;

    transition-delay: 0.3333s;
    color: transparent;
}

/* .box .icon{
    display: inline-block;
    margin-left: 20px;
    width: 60px;
    height: 60px;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
    color: #fff;
} */



/* .footer-content .box .bi:hover{
    color: black;
} */

.footer-content .box .icon p:before{
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    /* background: #a1d5ba; */
    background: hsla(149, 68%, 79%, 0.6);
    transition: 1s;
}

/* comentarios animación footer*/

.footer-content .box:hover .bi ~ p::before{
    left: initial;
    right:-100%;
    left: -100%;
}

.footer-content .box:hover .bi ~ p{
    color: #45ab78;
}

/* animando texto lockers */

h2{
    /* color: #43af71; */
    color: #3c9568;
    /* font-size: 6em; */
    font-size: 100px;
    /* font-weight: 500; */
    display: flex ;
    justify-content: center;
    align-items: center;
}

h2 span{
    animation: animate 4s linear infinite;
}

h2 span:nth-child(1)
{
    animation-delay: 0s;
}

h2 span:nth-child(2)
{
    animation-delay: 0.1s;
}

h2 span:nth-child(3)
{
    animation-delay: 0.2s;
}

h2 span:nth-child(4)
{
    animation-delay: 0.3s;
}

h2 span:nth-child(5)
{
    animation-delay: 0.4s;
}

h2 span:nth-child(6)
{
    animation-delay: 0.5s;
}

h2 span:nth-child(7)
{
    animation-delay: 0.6s;
}

h2 span:nth-child(8)
{
    animation-delay: 0.7s;
}


@keyframes animate{
    0%, 100%
    {
        /* color:#96e399; */
        color: #8fde9b;
        text-shadow: 0 0 5px #3c9568,
                    0 0 10px #3c9568,
                    0 0 20px #3c9568,
                    0 0 35px #3c9568,
                    0 0 55px #3c9568,
                    0 0 80px #3c9568,
                    0 0 110px #3c9568,
                    0 0 150px #3c9568;
    }

    25%, 75%
    {
        color:#3c9568;
        /* filter: blur(2px); */
        text-shadow: none;
    }
}

