:root{
    --color-1: #88bd2e;
    --color-2: #110c0e;
}

        /* Scrollbar */
		::-webkit-scrollbar {
			width: 2px;
			height: 2px;
			background-color: rgba(255, 255, 255, 0);
		}

		::-webkit-scrollbar-thumb {
			margin-top: 1vw;
			margin-bottom: 1vw;
			border-radius: 0.5rem;
			background: linear-gradient(1deg, #1f1f1f, #070707, #131313);
		}

		::-webkit-scrollbar-track {
			margin: 1em;
			max-height: 2px;
			max-width: 2px;
            background: transparent;
		}

        
        * {
            box-sizing: border-box;
            padding: 0;
            margin: 0;
            /* user-select:none; */
            scroll-behavior: smooth;
            -webkit-tap-highlight-color: rgba(0,0,0,0);
            touch-action: manipulation;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }


        body{
            width: 100vw;
            max-width: 100vw;
            /* overflow-x: hidden; */
            background-color: rgb(233 233 233);
        }



        /* VISTA PH */
        /* Cuando la pantalla es menor a "X" ejecuta el programa */
            @media only screen and (max-width: 583px) {
                    
            }


        /* VISTA PC */
        /* Cuando la pantalla es mayor a "X" ejecuta el programa */
            @media only screen and (min-width: 582px) {
                

            }
































        /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
        /* ~~~~~~~~~~~~~~~~~~~~ HEADER ~~~~~~~~~~~~~~~~~~~ */
        /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

            .header{
                transition: 1s ease-in-out;
            }

            /* VISTA UNIVERSAL PH ~ PH */
                /* Cuando la pantalla es menor a "X" ejecuta el programa  PH */
                @media only screen and (max-width: 749px) {

                    /* =============================================== */
                    /* ================== HEADER PH ================== */
                    /* =============================================== */

                        /* HEADER de PH */    
                            header{
                                width: 100%;
                                height: auto;
                                min-height: 5rem;
                                z-index: 100;
                                display: flex;
                                flex-direction: column;
                                justify-content: space-between;
                                align-items: center;
                                align-content: center;
                                flex-wrap: nowrap;
                                position: fixed;
                                background-color: transparent !important;
                            }

                            /* SPAN Contenedor del logo y el boton PH */
                                .headerLogoButtonContainer{
                                    width: 100%;
                                    display: flex;
                                    align-items: center;
                                    justify-content: space-around;
                                    align-content: center;
                                    flex-wrap: nowrap;
                                    flex-direction: row;
                                    /* margin: 2em 0; */
                                    z-index: 5;
                                    height: 5em;
                                    transition: 250ms ease-in-out;
                                    background: #00000000; 
                                    box-shadow: none;
                                }

                                /* LOGO del Header PH */
                                    .headerLogo{
                                        transition: 1s ease-in-out;
                                        cursor: pointer;
                                        width: 7em;
                                    }

                                /* BUTTON del Header PH */
                                    #buttonMenu{
                                        display: visible;
                                        width: 5em;
                                        height: 5em;
                                    }

                            /* UL contenedora de los items del menu PH */
                                .headerListMenu{
                                    display: flex;
                                    width: 100%;
                                    flex-direction: column;
                                    flex-wrap: wrap;
                                    justify-content: space-evenly;
                                    align-items: center;
                                    margin-bottom: 0.5em;
                                    position: absolute;
                                    background-color: rgba(0, 0, 0, 0.956);
                                    transition: 550ms ease-in-out;
                                    top: -100vh;
                                    list-style: none;
                                    /* 5em completo afuera */
                                }    
                                
                                /* LI de la lista de items del menu header PH */
                                    header ul li{
                                        padding: 1em 1em;
                                        position: relative;
                                        width: 88%;
                                        border-bottom: 1px solid #7a7a7a26;
                                    }

                                    /* SEPARADOR "|" de los items del header */
                                        .headerListItemSeparator{
                                            display: none;
                                        }    


                                        .headerItemSoluciones:hover .headerItemSolucionesSubmenu {
                                            max-height: 20em;
                                        }
                                        
                                        .headerItemSolucionesSubmenu {
                                            position: relative;
                                            /* bottom: -15em; */
                                            /* left: 1em; */
                                            /* background: #ffffff; */
                                            list-style: none;
                                            /* display: none; */
                                            padding-top: 1em;
                                            transition: 0.5s ease-in-out;
                                            max-height: 0em;
                                            overflow: hidden;
                                        }
        
                                        .headerItemSolucionesSubmenu:hover {
                                            max-height: 20em;
                                        }
        
                                        .headerItemSolucionesSubmenu li{
                                            margin: 0.5em 0;
                                            border: none;
                                            padding: 0;
                                        }

                                        .headerItemSolucionesSubmenu li a{
                                            margin: 0.5em 0;
                                            font-weight: 100;
                                            color: #181818;
                                        }

                }

            /* VISTA UNIVERSAL PC ~ PC */
                /* Cuando la pantalla es mayor a "X" ejecuta el programa  PC */
                @media only screen and (min-width: 750px) {

                    /* =============================================== */
                    /* ================== HEADER PC ================== */
                    /* =============================================== */

                        /* HEADER de PC */    
                            header{
                                width: 100%;
                                height: auto;
                                z-index: 100;
                                min-height: 5rem;
                                display: flex;
                                justify-content: space-around;
                                align-items: center;
                                align-content: center;
                                flex-wrap: nowrap;
                                position: fixed;
                                box-shadow: rgba(0, 0, 0, 0.19) 0px 0px 21px 4px;
                                transition: 0.5s ease-in-out;
                            }

                            /* SPAN LOGO del Header PC */
                                .headerLogoButtonContainer{
                                    display: visible !important;
                                }

                                /* Logo del header PC */
                                    .headerLogo{
                                        opacity: 100% !important;
                                        margin-top: 0.15em;
                                        display: visible !important;
                                        transition: 1s ease-in-out;
                                        cursor: pointer;
                                        width: 9em;
                                    }

                            /* UL contenedora de los items del menu PC */
                                .headerListMenu{
                                    display: flex;
                                    width: 60%;
                                    flex-direction: row;
                                    flex-wrap: wrap;
                                    justify-content: space-evenly;
                                    align-items: center;
                                    list-style: none;
                                }    

                                .headerListMenu a{
                                    /* color: black !important; */
                                }

                                /* SEPARADOR "|" de los items del header */
                                    .headerListItemSeparator{
                                        /* color: #8200ff; */
                                        /* text-shadow: 0px 0px 0px #ff006d; */
                                        color: #00000000;
                                        font-weight: 100;
                                        font-size: 2em;
                                        margin-top: -9px;
                                    }    

                            /* BUTTON del Header PC */
                                #buttonMenu{
                                    display: none;
                                }

                                .headerItemSoluciones:hover .headerItemSolucionesSubmenu {
                                    display: block;
                                }
                                
                                .headerItemSolucionesSubmenu {
                                    position: absolute;
                                    padding: 0 1em;
                                    bottom: -17em;
                                    /* left: 1em; */
                                    background: #ffffff;
                                    background: linear-gradient(0deg, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff, transparent, transparent);
                                    list-style: none;
                                    display: none;
                                    transition-delay: 250ms;
                                    padding-top: 3em;
                                }

                                .headerItemSolucionesSubmenu:hover {
                                    display: block;
                                }

                                .headerItemSolucionesSubmenu li{
                                    margin: 0.5em 0;
                                }

                                .headerItemSolucionesSubmenu li a{
                                    font-weight: 100;
                                    color: #181818 !important;
                                }

                }


            /* GLOBALES del HEADER */

                /* BUTTON del Header  */
                    #buttonMenu{
                        border-radius: 0%;
                        border: 0;
                        background-color: transparent;
                        background-image: url(../images/menu-open.png);
                        background-position: center;
                        /* background-size: cover; */
                        background-size: 60%;
                        background-repeat: no-repeat;
                        outline: none;
                        cursor: pointer;
                        filter: drop-shadow(0px 0px 5px black);
                        transition: 200ms ease-in-out;
                    }

                /* BUTTON del Header  */
                    #buttonMenu:hover{
                        box-shadow: none;
                    }

                /* LI A Items del menu header  */
                    .headerListMenu a{
                        color: rgb(203, 203, 203); 
                        font-weight: 500;
                        font-size: 1.1em;
                        cursor: pointer;
                        font-family: system-ui;
                        text-decoration: none;
                        padding-bottom: 0.25rem;
                        text-shadow: 0 0 0px transparent;
                        transition: 400ms ease-in-out;
                        position: relative;
                        display: inline-block;
                        padding: 5px 10px;
                        text-transform: uppercase;
                    }     

                        .headerListMenu a:hover{
                            color: rgb(255, 255, 255); 
                            font-weight: 200;
                            transform: scale(1.05) translateY(-1px);
                        }     
                        
                        .headerListMenu a::before {
                            content: "";
                            position: absolute;
                            right: 0;
                            bottom: 0;
                            width: 0;
                            height: 2px;
                            background-color: #88bd2e;
                            transition: width 0.5s ease-in-out;
                        }
                        
                        .headerListMenu a:hover::before {
                            width: 100%;
                            left: 0;
                            right: auto;
                        }
                
                        .headerListMenu a::after {
                            content: '';
                            position: absolute;
                            width: 100%;
                            transform: scaleX(0);
                            height: 2px;
                            bottom: 0;
                            left: 0;
                            background-color: rgb(255, 255, 255);
                            transform-origin: bottom right;
                            transition: transform 0.25s ease-out;
                        }
                
                        .headerListMenu a:hover::after {
                            transform: scaleX(1);
                            transform-origin: bottom left;
                        }

                        .headerListMenu > li {
                            padding: 20px;
                        }

                /* A items ocultos del header */        
                    .headerHiddenItem{
                        color: transparent;
                        position: absolute;
                        font-size: 1px;
                        margin: 0;
                        padding: 0;
                        user-select: none;
                    }
























































































        /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
        /* ~~~~~~~~~~~~~~~~~~ CONTACTO ~~~~~~~~~~~~~~~~~~~ */
        /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

            /* SECTION de contacto */
            .contactContainer{
                width: 100%;
                display: flex;
                flex-direction: column;
                flex-wrap: wrap;
                align-content: center;
                justify-content: center;
                align-items: center;
                z-index: 1;
                position: relative;
                padding: 1em;
                padding-top: 3em;
                padding-bottom: 3em;
                box-shadow: 0 0 69px #00000033;
                background: #181818;
            }

            .contactContainer svg{
                fill: rgb(136 189 46) !important;
            }

            .contactContainer button, .contactContainer a{
                color: white !important;
                background: #88bd2e !important;
                font-family: system-ui !important;
                /* border-color: #282828; */
            }

            /* SPAN contenedor con el titulo de la seccion */
                .contactTitleContainer{
                    padding: 1em 2.8em;
                    /* background: #090909; */
                    width: 100%;
                    display: flex;
                    justify-content: center;
                    margin-bottom: 2em;
                    flex-direction: column;
                    flex-wrap: nowrap;
                    align-content: center;
                    align-items: center;
                    text-align: center;
                    
                }

                /* H2 con el titulo de la seccion */
                    .contactTitle{
                        font-family: system-ui;
                        font-size: 9vmin;
                        text-align: start;
                        width: 95vw;
                        font-weight: 500;
                        color: white;
                        text-transform: uppercase;
                        letter-spacing: 2px;
                        margin-left: 2em;
                    }

                /* H3 con el subtitulo de la seccion */
                    .contactSubtitle{
                        font-weight: 100;
                        color: #cacaca80;
                        margin: 2em;
                        text-align: start;
                        display: flex;
                        position: relative;
                        width: 100%;
                        padding-left: 1.5em;
                    }
            
            /* ARTICLE contenedor del contenido */
                .contactContentContainer{
                    display: flex;
                    flex-direction: row;
                    flex-wrap: wrap;
                    align-content: center;
                    justify-content: space-evenly;
                    align-items: center;
                    width: 100vw;
                }    

                /* DIV contenedor del mapa */
                    .contactMapContainer{
                        border-radius: 20px;
                        overflow: hidden;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        margin: 1em 0;
                        flex-wrap: nowrap;
                        box-shadow: 0px 0px 10px #00000012;
                        background: #00000008;
                        padding: 1em 0;
                        border: solid 1px #00000003;
                        position: relative;
                    }

                /* SPAN contenedor de los inputs y titulo */
                    .contactFormContainer{
                        
                    }

                    /* H3 con el subtitulo de "nosotros nos comunicamos" */
                        .contactContentContainer h3{
                            color: #f4f4f4;
                            font-family: system-ui;
                            font-size: 1.3em;
                            font-weight: 100;
                            position: relative;
                            display: flex;
                            margin: 1.5em 1em;
                            border-radius: 8%;
                            text-align: center;
                        }  

                    

                /* SPAN contenedor de la informacion extra */
                    .contactExtrasContainer{

                    }    

            /* HR divisoria de botones extras */
                .contactContainer hr{
                    margin-top: 1.5em;
                    width: 64%;
                    border-radius: 100%;
                    border: none;
                    background: #19120f;
                    height: 2px;
                    opacity: 38%;
                    box-shadow: 0 0 10px 10px #00000021;
                    display: none;
                }    

            /* DIV contenedor de los botones */
                .contactExtrasButtonContainer{
                    width: 100%;
                    display: flex;
                    align-items: center;
                    flex-wrap: wrap;
                    flex-direction: row;
                    align-content: center;
                    justify-content: center;
                    padding: 2em 0;
                    margin: 0 1em;
                    max-width: 40em;
                }

                /* BUTTON de los extras */
                    .contactExtrasButtonContainer button{
                        /* padding: 1em 1.2em; */
                        width: 1.5em;
                        margin: 1em;
                        height: 1.5em;
                        background-position: center;
                        background-size: cover;
                        border-radius: 100%;
                        background-repeat: no-repeat;
                        display: flex;
                        font-size: 2.8em;
                        box-shadow: 0 0 35px #000000;
                        flex-direction: row;
                        align-items: center;
                        justify-content: center;
                        padding: 9px;
                        border: none;
                        cursor: pointer;
                        transition: 0.5s ease-in-out;
                    }

                    .contactExtrasButtonContainer button:hover{
                        filter: grayscale(0);
                        transform: scale(1.05);
                        opacity: 90%;
                    }

                /* A con los enlaces */
                    .contactExtrasButtonContainer a{
                        color: transparent;
                        
                    }


                /* DIV contenedor del input y label */
                    .contactInputContainer {
                        position: relative;
                        margin-bottom: 20px;
                    }

                /* INPUTS */
                    .contactInput{
                        position: relative;
                        font-family: system-ui;
                    }

                /* LABBEL */  
                    .contactInputLabel, .contactInputContainer label {
                        position: absolute;
                        top: 0.7em;
                        left: 0.6em;
                        pointer-events: none;
                        transition: 0.3s ease-in-out;
                        color: #ffffff6e;
                        font-family: system-ui;
                        font-weight: 100;
                        letter-spacing: 1px;
                    }

                    .contactInputContainer .contactInputLabel {
                        top: -5px;
                        font-size: 12px;
                        color: rgb(255, 255, 255);
                        font-weight: 100;
                        font-family: system-ui;
                    }

                    #labelError, .contactInputContainer label.error {
                        top: 1em;
                        color: red;
                        display: flex;
                    }


                /* ALERTA DE CONTACTO */
                    #contactAlert{
                        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
                    }


                    /* VISTA PH */
                    /* Cuando la pantalla es menor a "X" ejecuta el programa */
                        @media only screen and (max-width: 974px) {

                            /* DIV contenedor del mapa <<<<<SE APLICABA CON 974PX>>>> */
                                /* .contactMapContainer{
                                        border-radius: 20px;
                                        overflow: hidden;
                                        display: flex;
                                        flex-direction: column;
                                        align-items: center;
                                        margin: 1em;
                                        margin-bottom: 3em;
                                        flex-wrap: nowrap;
                                        box-shadow: 0px 0px 10px #00000012;
                                        background: #00000008;
                                        padding: 1em;
                                        border: solid 1px #00000003;
                                } */

                        }


                   

    
                    /* CONTACTOS DESGLOSADOS */
                        /* UL contenedor */
                            .contactExtrasInfoContainer{
                                display: flex;
                                width: 21em;
                                justify-content: center;
                                align-items: center;
                                list-style: none;
                                flex-wrap: wrap;
                                margin: 0 1em;
                            }

                            /* LI con cada item */
                                .contactExtrasInfoContainer li{
                                    margin: 0.5em 1em;
                                    display: flex;
                                    align-items: stretch;
                                }

                                /* SVG */
                                    .contactExtrasInfoContainer svg{

                                    }

                                /* A */
                                    .contactExtrasInfoContainer a{
                                        background: transparent !important;
                                        color: #aeaeae !important;
                                        margin: 0 0.2em;
                                        text-decoration: underline transparent;
                                        transition: 0.3s ease;
                                        cursor: pointer;
                                    }

                                    .contactExtrasInfoContainer a:hover{
                                        color: #ffffff !important;
                                        text-decoration: underline white;
                                        transform: translateY(-2px);
                                    }
                                        
                                    .contactExtrasInfoContainer p{
                                        background: transparent !important;
                                        color: #aeaeae !important;
                                        margin: 0 0.2em;
                                        text-decoration: underline transparent;
                                        transition: 0.3s ease;
                                    }





.contactUbicationButton{
    position: absolute;
    top: 11em;
}









        /* =================================================== */
        /* ===================== FOOTER ====================== */
        /* =================================================== */

            /* FOOTER conenedor */
            footer{
                padding: 1.4em 1em;
                display: flex;
                flex-direction: column;
                align-content: center;
                align-items: center;
                justify-content: space-between;
                background-color: black;
                position: relative;
                opacity: 1
            }

            /* P Texto del footer */
                .footerText{
                    margin: 5px auto;
                    font-family: system-ui;
                    font-size: 0.8em;
                    color: #f0f0f099;
                    display: flex;
                }

            /* A de footer */  
                .footerDeveloper{
                    color: #f0f0f099;
                    font-family: system-ui;
                    text-align: center;
                    margin: 1em 1em;
                    margin-bottom: 0.4em;
                    text-decoration: none;
                    font-size: 1.5em;
                    font-weight: 900;
                    cursor: pointer;
                    position: relative;
                    z-index: 1;
                    letter-spacing: 7px;
                    text-shadow: 0 0 0px transparent;
                    transition: 0.5s ease-in-out;
                }

                .footerDeveloper:hover{
                    color: #fdfdfd;
                    text-shadow: 0 0 15px rgba(255, 255, 255, 0.561);
                    letter-spacing: 1px;
                }

                .footerDeveloperBackground {
                    transition: 0.7s ease-in-out;
                    position: absolute;
                    z-index: 0;
                    width: 3em;
                    top: 5em;
                    transform: scale(0.9);
                    opacity: 0;
                    filter: grayscale(1);
                }

                .footerDeveloper:hover + .footerDeveloperBackground {
                    transform: scale(1);
                    opacity: 1;
                    width: 7em;
                    top: 4em;
                    filter: grayscale(0);
                }


            /* DIV contenedor de contacto / sugerencia */
                .footerOcurrencesContainer{
                    margin: 5px;
                    margin-bottom: 10px;
                    color: #f0f0f099;
                }

                /* A texto enlace del footer */
                    .footerOcurrence{
                        text-decoration: none;
                        text-decoration: rgba(132, 132, 132, 0.259);
                        color: #f0f0f060;
                        font-weight: 100;
                        display: inline;
                        transition: 0.5s ease-in-out;
                    }  

                    .footerOcurrence:hover{
                        text-decoration: underline;
                        text-decoration: rgba(132, 132, 132, 0.846);
                        color: #e5e5e5;
                    }

                /* A con nombre de empresa */
                    .footerCompany{
                        color: rgb(202, 202, 202);
                        font-family: sans-serif;
                        letter-spacing: -1px;
                        font-size: 1em;
                        position: relative;
                        bottom: -2px;
                        margin-left: 5px;
                        font-weight: 100;
                    }    





.click-to-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4dc247;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    z-index: 9999999999;
    text-align: center;
    font-size: 32px;
    text-decoration: none;
    padding: 8px 0px;
    -webkit-box-shadow: 1px 1px 3px 1px rgba(0,0,0,.4);
    box-shadow: 1px 1px 3px 1px rgba(0,0,0,.4);

    &:hover {
        box-shadow: 2px 2px 11px rgba(0,0,0,.7);
    }

    &.share {
        font-size: 32px;
        cursor: pointer;
        &:hover {
            cursor: pointer;
        }
    }
}

/*--------------submitted form desktop style ------------- */
.submitted-form{
  display: none;
  background-color: transparent;
  position: absolute;
  height: 100vh; 
  width: 100vw;
  z-index: 60;
}
.submitted-form div{
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45vw;
  height: 40vh;
  background-color: rgba(0, 0, 0, .8);
}
.submitted-form div h1{
   color:white;
}