/*

* Diseñado por: F.N, InfoZero.
* Para: infozero.net - 2024

*/

body{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--white);
    /* background-color: brown; */
    box-sizing: border-box;
}
.main-container{
    /* background-color: green; */
    width: 100%;
    display: flex;
    flex-direction: column;
}
/* FRAMES */
.frame{
    width: 100%;
    display: flex;
    justify-content: center;
}
.frame.f-a{
    border-bottom: 1px solid var(--lightdarkwhite);
}
.frame.f-b{
    /* background-color: violet; */
}
.frame.f-c{
    background-color: var(--lightdarkwhite);
}
.frame.f-d{
    background-color: var(--lightestgray-b);
}
.frame.f-e{
    background-color: var(--black);
}
.frame.f-f{
    background-color: var(--black);
}

.frame.f-a .banner{
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.frame.f-a .banner .header{
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    /* background-color: purple; */
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
    
}
.frame.f-a .banner .header .a, .b, .c{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60%;
    font-family: 'Satoshi-Bold',Arial, sans-serif !important;
    color: var(--black);
}
.frame.f-a .banner .header .a{
    /* background-color: yellow; */
    width: 15%;
    box-sizing: border-box;
}
.frame.f-a .banner .header .b{
    width: calc(70% - 20px);
    padding-right: 20px;
}
.frame.f-a .banner .header .c{
    /* background-color: pink; */
    width: 15%;
    justify-content: end;
}
.frame.f-a .banner .header .a a{
    /* background-color: orange; */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.frame.f-a .banner .header .a a img{
    display: flex;
    width: 100%;
    height: auto;
}
.frame.f-a .banner .header .b ul{
    width: 100%;
    height: 100%;
    display: flex;
    gap: 30px;
    list-style-type: none;
    align-items: center;
    justify-content: end;
}
.frame.f-a .banner .header .b ul li{
    height: 100%;
    display: flex;
    align-items: center;
}
.frame.f-a .banner .header .b ul li a{
    height: 80%;
    display: flex;
    align-items: end;
    padding-bottom: 6px;
    transition: border-bottom 0.1s ease-out;
}
.frame.f-a .banner .header .b ul li a, .header .b ul li a:visited, .header .b ul li a:hover{
    text-decoration: none;
    font-family: 'Satoshi-Bold',Arial, sans-serif !important;
    color: var(--darkgray);
    border:none;
}
.frame.f-a .banner .header .b ul li a:hover{
    color: var(--black);
    border-bottom: 2px solid var(--black);
}
.frame.f-a .banner .header .c a{
    /* background-color: orange; */
    padding-left: 20px;
    padding-right: 20px;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background-color: var(--black);
    color: var(--white);
    transition: all 0.2s ease-out;
}
.frame.f-a .banner .header .c a, .header .c a:visited, .header .c a:hover{
    text-decoration: none;
    font-family: 'Satoshi-Bold',Arial, sans-serif !important;
}
.frame.f-a .banner .header .c a:hover{
    background-color: var(--white);
    border: 2px solid var(--darkestgray);
    color: var(--darkestgray);
}
.frame.f-b .presentation{
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 50px 40px;
    gap: 20px;
}

.frame.f-b .presentation .texto{
    /* background-color: yellow; */
    height: 100%;
    width: calc(60% - 10px);
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.frame.f-b .presentation img{
    width: calc(40% - 10px);
    height: auto;
}
.frame.f-b .presentation .texto p{
    margin: 0;
}
.frame.f-b .presentation .texto label{
    /* background-color: red; */
    /* display: block; */
    font-family: 'Satoshi-Black',Arial, sans-serif !important;
    font-size: 300%;
    line-height: 120%;
}
.frame.f-b .presentation .texto p{
    box-sizing: border-box;
    padding-right: 5%;
    /* display: block; */
    font-family: 'Satoshi-Regular',Arial, sans-serif !important;
    font-size: 130%;
    line-height: 150%;
}
.frame.f-b .presentation .texto a, .frame.f-b .presentation .texto a:hover, .frame.f-b .presentation .texto a:visited{
    text-decoration: none;
    color: var(--black);
}
.frame.f-b .presentation .texto a{
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    padding: 10px 20px;
    width: 6em;
    font-family: 'Satoshi-Bold',Arial, sans-serif !important;
    font-size: 110%;
    background-color: var(--white);
    border-radius: 100px;
    border: 2px solid var(--black);
    color: var(--black);
    transition: all 0.2s ease-out;
    white-space: nowrap;
}

.frame.f-b .presentation .texto a:hover{
    background-color: var(--black);
    border: 2px solid var(--black);
    color: var(--white);
}

.frame.f-c .clients{
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 40px;
    gap: 25px;
    box-sizing: border-box;
}
.frame.f-c .clients label{
    /* background-color: red; */
    /* display: block; */
    width: 100%;
    font-family: 'Satoshi-Black',Arial, sans-serif !important;
    font-size: 150%;
    text-align: center;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}
.frame.f-c .clients .grid{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 10px;
    box-sizing: border-box;
}
.frame.f-c .clients .grid .client{
    width: 90%;
    height: 90%;
    padding: 25px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}
.frame.f-c .clients .grid .client img{
    width: 100%;
    height: auto;
    transition: all 0.2s ease-out;
}
.frame.f-c .clients .grid .client img:hover{
    transform: scale(1.10);
}
.frame.f-d .services{
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 40px;
    gap: 25px;
    box-sizing: border-box;
}

.frame.f-d .services label{
    width: 100%;
    font-family: 'Satoshi-Black',Arial, sans-serif !important;
    font-size: 150%;
    text-align: center;
    color: var(--black);
    display: flex;
    align-items: end;
    justify-content: center;
}

.frame.f-d .services p{
    box-sizing: border-box;
    /* display: block; */
    font-family: 'Satoshi-Regular',Arial, sans-serif !important;
    font-size: 110%;
    line-height: 150%;
    margin: 0;
    text-align: center;
}
    
.frame.f-d .services .servicegroup{
    /* background-color: RED; */
    width: 100%;
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    gap: 20px;
}
.frame.f-d .services .servicegroup .service{
    /* background-color: var(--darkwhite);
    border-radius: 5px; */
    background-color: var(--white);
    box-shadow: 3px 3px 0px 0px var(--lightestgray);
    -webkit-box-shadow: 3px 3px 0px 0px var(--lightestgray);
    -moz-box-shadow: 3px 3px 0px 0px var(--lightestgray);
    width: 100%;
    padding: 50px;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 30px;
    box-sizing: border-box;
    transition: all 0.2s ease-out;
}
.frame.f-d .services .servicegroup .service:hover{
    transform: scale(1.02);
}
.frame.f-d .services .servicegroup .service .texto{
    /* background-color: blue; */
    width: calc(80% - 15px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.frame.f-d .services .servicegroup .service .imagen{
    width: calc(20% - 15px);
    display: flex;
    align-items: center;
    justify-content: end;
}

.frame.f-d .services .servicegroup .service .texto label{
    width: 100%;
    font-family: 'Satoshi-Black',Arial, sans-serif !important;
    font-size: 120%;
    text-align: start;
    color: var(--black);
    display: flex;
    align-items: start;
    justify-content: start;
}

.frame.f-d .services .servicegroup .service .texto p{
    box-sizing: border-box;
    font-family: 'Satoshi-Regular',Arial, sans-serif !important;
    font-size: 110%;
    line-height: 150%;
    margin: 0;
    text-align: start;
    display: flex;
    align-items: start;
    justify-content: start;
}

.frame.f-d .services p a, .frame.f-d .services p a:hover, .frame.f-d .services p a:visited{
    color: var(--black);
    text-decoration: none;
    font-family: 'Satoshi-Black',Arial, sans-serif !important;
    transition: all 0.2s ease-out;
}
.frame.f-d .services p a:hover{
    border-bottom: 2px solid var(--black);
}

.frame.f-d .services .servicegroup .service .imagen img{
    width: 100%;
    height: auto;
    /* border-radius: 5px; */
}

.frame.f-e .contact{
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 40px;
    gap: 25px;
    color: var(--white);
}


.frame.f-e .contact label{
    width: 100%;
    font-family: 'Satoshi-Black',Arial, sans-serif !important;
    font-size: 150%;
    text-align: center;
    display: flex;
    align-items: end;
    justify-content: center;
}

.frame.f-e .contact p{
    box-sizing: border-box;
    font-family: 'Satoshi-Regular',Arial, sans-serif !important;
    font-size: 110%;
    line-height: 150%;
    margin: 0;
    text-align: center;
}
.frame.f-e .contact .imagen{
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.frame.f-e .contact .imagen img{
    width: 100%;
    height: auto;
    /* border-radius: 5px; */
}

.frame.f-e .contact form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-sizing:border-box;
    gap:20px;
}

.frame.f-e .contact form .row{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.frame.f-e .contact form .row div{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.frame.f-e .contact form .row div label{
    width: 100%;
    display: flex;
    justify-content: start;
    font-family: 'Satoshi-Regular',Arial, sans-serif !important;
    font-size: 110%;
}
.frame.f-e .contact form .row div input{
    display: flex;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    font-family: 'Satoshi-Regular',Arial, sans-serif !important;
    font-size: 110%;
    background-color: var(--lightestgray-b);
    color: var(--black);
    transition: all 0.2s ease-out;
    box-shadow: 3px 3px 0px 0px var(--gray);
    -webkit-box-shadow: 3px 3px 0px 0px var(--gray);
    -moz-box-shadow: 3px 3px 0px 0px var(--gray);
}
.frame.f-e .contact form .row div input, .frame.f-e .contact form .row div input:focus{
    outline: none;
    border: none;
}
.frame.f-e .contact form .row div input:focus{
    background-color: var(--white);
    color: var(--black);
}
.frame.f-e .contact form .row div textarea{
    display: flex;
    width: 100%;
    height: 300px;
    padding: 10px;
    box-sizing: border-box;
    font-family: 'Satoshi-Regular',Arial, sans-serif !important;
    font-size: 110%;
    background-color: var(--lightestgray-b);
    color: var(--black);
    transition: all 0.2s ease-out;
    box-shadow: 3px 3px 0px 0px var(--gray);
    -webkit-box-shadow: 3px 3px 0px 0px var(--gray);
    -moz-box-shadow: 3px 3px 0px 0px var(--gray);
    resize: none;
}
.frame.f-e .contact form .row div textarea, .frame.f-e .contact form .row div textarea:focus{
    outline: none;
    border: none;
}
.frame.f-e .contact form .row div textarea:focus{
    background-color: var(--white);
    color: var(--black);
}

.frame.f-e .contact form .row input[type="submit"]{
    display: flex;
    width: 6em;
    padding: 10px;
    box-sizing: border-box;
    font-family: 'Satoshi-Regular',Arial, sans-serif !important;
    font-size: 110%;
    background-color: var(--lightestgray-b);
    color: var(--black);
    transition: all 0.2s ease-out;
    box-shadow: 3px 3px 0px 0px var(--gray);
    -webkit-box-shadow: 3px 3px 0px 0px var(--gray);
    -moz-box-shadow: 3px 3px 0px 0px var(--gray);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.frame.f-e .contact form .row input[type="submit"], .frame.f-e .contact form .row div input[type="submit"]{
    outline: none;
    border: none;
}
.frame.f-e .contact form .row input[type="submit"]:hover{
    background-color: var(--white);
    color: var(--black);
}
.frame.f-e .contact form .row input[type="submit"]:focus{
    background-color: var(--lightgray);
    color: var(--black);
    box-shadow: 3px 3px 0px 0px var(--darkgray);
    -webkit-box-shadow: 3px 3px 0px 0px var(--darkgray);
    -moz-box-shadow: 3px 3px 0px 0px var(--darkgray);
}

.frame.f-e .contact form .row input[type="number"]::-webkit-inner-spin-button,
.frame.f-e .contact form .row input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.frame.f-e .contact form .row input[type="number"]{
    appearance: textfield;
}

.frame.f-e .contact form .row .error label{
    color: var(--red);   
}
.frame.f-e .contact form .row .error input{
    color: var(--red);
    transition: all 0.2s ease-out;
    box-shadow: 3px 3px 0px 0px var(--darkred);
    -webkit-box-shadow: 3px 3px 0px 0px var(--darkred);
    -moz-box-shadow: 3px 3px 0px 0px var(--darkred);
}
.frame.f-e .contact form .row .error textarea{
    color: var(--red);
    transition: all 0.2s ease-out;
    box-shadow: 3px 3px 0px 0px var(--darkred);
    -webkit-box-shadow: 3px 3px 0px 0px var(--darkred);
    -moz-box-shadow: 3px 3px 0px 0px var(--darkred);
}

.frame.f-f footer{
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 50px 30px;
    color: var(--white);
    border-top: 1px solid var(--darkgray);
}
.frame.f-f footer .info{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: center;
}
.frame.f-f footer .info .logo{
    width: 100%;
    height: 25px;
    display: flex;
    justify-content: end;
    align-items: center;
}
.frame.f-f footer .info .credits{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}
.frame.f-f footer .info .logo img{
    height: 100%;
    width: auto;
}
.frame.f-f footer .info .credits label{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    font-family: 'Satoshi-Regular',Arial, sans-serif !important;
    font-size: 75%;
}

@media (max-width: 900px){
    .main-container{
        /* background-color: green; */
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    /* FRAMES */
    .frame{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .frame.f-a{
        border-bottom: 1px solid var(--lightdarkwhite);
    }
    .frame.f-b{
        /* background-color: violet; */
    }
    .frame.f-c{
        background-color: var(--lightdarkwhite);
    }
    .frame.f-d{
        background-color: var(--lightestgray-b);
    }
    .frame.f-e{
        background-color: var(--black);
    }
    .frame.f-f{
        background-color: var(--black);
    }
    
    .frame.f-a .banner{
        width: 100%;
        max-width: 900px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .frame.f-a .banner .header{
        width: 100%;
        height: 80px;
        display: flex;
        flex-direction: row;
        gap: 10px;
        /* background-color: purple; */
        align-items: center;
        padding-left: 40px;
        padding-right: 40px;
        box-sizing: border-box;
        
    }
    .frame.f-a .banner .header .a, .b, .c{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 60%;
        font-family: 'Satoshi-Bold',Arial, sans-serif !important;
        color: var(--black);
    }
    .frame.f-a .banner .header .a{
        /* background-color: yellow; */
        width: 15%;
        box-sizing: border-box;
    }
    .frame.f-a .banner .header .b{
        width: calc(70% - 20px);
        padding-right: 20px;
    }
    .frame.f-a .banner .header .c{
        /* background-color: pink; */
        width: 15%;
        justify-content: end;
    }
    .frame.f-a .banner .header .a a{
        /* background-color: orange; */
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .frame.f-a .banner .header .a a img{
        display: flex;
        width: 100%;
        height: auto;
    }
    .frame.f-a .banner .header .b ul{
        width: 100%;
        height: 100%;
        display: flex;
        gap: 30px;
        list-style-type: none;
        align-items: center;
        justify-content: center;
    }
    .frame.f-a .banner .header .b ul li{
        height: 100%;
        display: flex;
        align-items: center;
    }
    .frame.f-a .banner .header .b ul li a{
        height: 80%;
        display: flex;
        align-items: end;
        padding-bottom: 6px;
        transition: border-bottom 0.1s ease-out;
    }
    .frame.f-a .banner .header .b ul li a, .header .b ul li a:visited, .header .b ul li a:hover{
        text-decoration: none;
        font-family: 'Satoshi-Bold',Arial, sans-serif !important;
        color: var(--darkgray);
        border:none;
    }
    .frame.f-a .banner .header .b ul li a:hover{
        color: var(--black);
        border-bottom: 2px solid var(--black);
    }
    .frame.f-a .banner .header .c a{
        /* background-color: orange; */
        padding-left: 20px;
        padding-right: 20px;
        height: 80%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100px;
        background-color: var(--black);
        color: var(--white);
        transition: all 0.2s ease-out;
    }
    .frame.f-a .banner .header .c a, .header .c a:visited, .header .c a:hover{
        text-decoration: none;
        font-family: 'Satoshi-Bold',Arial, sans-serif !important;
    }
    .frame.f-a .banner .header .c a:hover{
        background-color: var(--white);
        border: 2px solid var(--darkestgray);
        color: var(--darkestgray);
    }
    .frame.f-b .presentation{
        width: 100%;
        max-width: 900px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 50px 40px;
        gap: 20px;
    }
    
    .frame.f-b .presentation .texto{
        /* background-color: yellow; */
        height: 100%;
        width: calc(60% - 10px);
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .frame.f-b .presentation img{
        width: calc(40% - 10px);
        height: auto;
    }
    .frame.f-b .presentation .texto p{
        margin: 0;
    }
    .frame.f-b .presentation .texto label{
        /* background-color: red; */
        /* display: block; */
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        font-size: 300%;
        line-height: 120%;
    }
    .frame.f-b .presentation .texto p{
        box-sizing: border-box;
        padding-right: 5%;
        /* display: block; */
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 130%;
        line-height: 150%;
    }
    .frame.f-b .presentation .texto a, .frame.f-b .presentation .texto a:hover, .frame.f-b .presentation .texto a:visited{
        text-decoration: none;
        color: var(--black);
    }
    .frame.f-b .presentation .texto a{
        display: flex;
        justify-content: center;
        box-sizing: border-box;
        padding: 10px 20px;
        width: 6em;
        font-family: 'Satoshi-Bold',Arial, sans-serif !important;
        font-size: 110%;
        background-color: var(--white);
        border-radius: 100px;
        border: 2px solid var(--black);
        color: var(--black);
        transition: all 0.2s ease-out;
        white-space: nowrap;
    }
    
    .frame.f-b .presentation .texto a:hover{
        background-color: var(--black);
        border: 2px solid var(--black);
        color: var(--white);
    }
    
    .frame.f-c .clients{
        width: 100%;
        max-width: 900px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 40px;
        gap: 25px;
        box-sizing: border-box;
    }
    .frame.f-c .clients label{
        /* background-color: red; */
        /* display: block; */
        width: 100%;
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        font-size: 150%;
        text-align: center;
        color: var(--black);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .frame.f-c .clients .grid{
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        column-gap: 10px;
        box-sizing: border-box;
    }
    .frame.f-c .clients .grid .client{
        width: 90%;
        height: 90%;
        padding: 25px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .frame.f-c .clients .grid .client img{
        width: 100%;
        height: auto;
        transition: all 0.2s ease-out;
    }
    .frame.f-c .clients .grid .client img:hover{
        transform: scale(1.10);
    }
    .frame.f-d .services{
        width: 100%;
        max-width: 900px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 40px;
        gap: 25px;
        box-sizing: border-box;
    }
    
    .frame.f-d .services label{
        width: 100%;
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        font-size: 150%;
        text-align: center;
        color: var(--black);
        display: flex;
        align-items: end;
        justify-content: center;
    }
    
    .frame.f-d .services p{
        box-sizing: border-box;
        /* display: block; */
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 110%;
        line-height: 150%;
        margin: 0;
        text-align: center;
    }
        
    .frame.f-d .services .servicegroup{
        /* background-color: RED; */
        width: 100%;
        display: flex;
        box-sizing: border-box;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        gap: 20px;
    }
    .frame.f-d .services .servicegroup .service{
        /* background-color: var(--darkwhite);
        border-radius: 5px; */
        background-color: var(--white);
        box-shadow: 3px 3px 0px 0px var(--lightestgray);
        -webkit-box-shadow: 3px 3px 0px 0px var(--lightestgray);
        -moz-box-shadow: 3px 3px 0px 0px var(--lightestgray);
        width: 100%;
        padding: 50px;
        display: flex;
        align-items: center;
        flex-direction: row;
        gap: 30px;
        box-sizing: border-box;
        transition: all 0.2s ease-out;
    }
    .frame.f-d .services .servicegroup .service:hover{
        transform: scale(1.02);
    }
    .frame.f-d .services .servicegroup .service .texto{
        /* background-color: blue; */
        width: calc(80% - 15px);
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .frame.f-d .services .servicegroup .service .imagen{
        width: calc(20% - 15px);
        display: flex;
        align-items: center;
        justify-content: end;
    }
    
    .frame.f-d .services .servicegroup .service .texto label{
        width: 100%;
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        font-size: 120%;
        text-align: start;
        color: var(--black);
        display: flex;
        align-items: start;
        justify-content: start;
    }
    
    .frame.f-d .services .servicegroup .service .texto p{
        box-sizing: border-box;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 110%;
        line-height: 150%;
        margin: 0;
        text-align: start;
        display: flex;
        align-items: start;
        justify-content: start;
    }
    
    .frame.f-d .services p a, .frame.f-d .services p a:hover, .frame.f-d .services p a:visited{
        color: var(--black);
        text-decoration: none;
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        transition: all 0.2s ease-out;
    }
    .frame.f-d .services p a:hover{
        border-bottom: 2px solid var(--black);
    }
    
    .frame.f-d .services .servicegroup .service .imagen img{
        width: 100%;
        height: auto;
        /* border-radius: 5px; */
    }
    
    .frame.f-e .contact{
        width: 100%;
        max-width: 900px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 40px;
        gap: 25px;
        color: var(--white);
    }
    
    
    .frame.f-e .contact label{
        width: 100%;
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        font-size: 150%;
        text-align: center;
        display: flex;
        align-items: end;
        justify-content: center;
    }
    
    .frame.f-e .contact p{
        box-sizing: border-box;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 110%;
        line-height: 150%;
        margin: 0;
        text-align: center;
    }
    .frame.f-e .contact .imagen{
        width: 20%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .frame.f-e .contact .imagen img{
        width: 100%;
        height: auto;
        /* border-radius: 5px; */
    }
    
    .frame.f-e .contact form{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--white);
        box-sizing:border-box;
        gap:20px;
    }
    
    .frame.f-e .contact form .row{
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 20px;
    }
    .frame.f-e .contact form .row div{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .frame.f-e .contact form .row div label{
        width: 100%;
        display: flex;
        justify-content: start;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 110%;
    }
    .frame.f-e .contact form .row div input{
        display: flex;
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 110%;
        background-color: var(--lightestgray-b);
        color: var(--black);
        transition: all 0.2s ease-out;
        box-shadow: 3px 3px 0px 0px var(--gray);
        -webkit-box-shadow: 3px 3px 0px 0px var(--gray);
        -moz-box-shadow: 3px 3px 0px 0px var(--gray);
    }
    .frame.f-e .contact form .row div input, .frame.f-e .contact form .row div input:focus{
        outline: none;
        border: none;
    }
    .frame.f-e .contact form .row div input:focus{
        background-color: var(--white);
        color: var(--black);
    }
    .frame.f-e .contact form .row div textarea{
        display: flex;
        width: 100%;
        height: 300px;
        padding: 10px;
        box-sizing: border-box;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 110%;
        background-color: var(--lightestgray-b);
        color: var(--black);
        transition: all 0.2s ease-out;
        box-shadow: 3px 3px 0px 0px var(--gray);
        -webkit-box-shadow: 3px 3px 0px 0px var(--gray);
        -moz-box-shadow: 3px 3px 0px 0px var(--gray);
        resize: none;
    }
    .frame.f-e .contact form .row div textarea, .frame.f-e .contact form .row div textarea:focus{
        outline: none;
        border: none;
    }
    .frame.f-e .contact form .row div textarea:focus{
        background-color: var(--white);
        color: var(--black);
    }
    
    .frame.f-e .contact form .row input[type="submit"]{
        display: flex;
        width: 6em;
        padding: 10px;
        box-sizing: border-box;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 110%;
        background-color: var(--lightestgray-b);
        color: var(--black);
        transition: all 0.2s ease-out;
        box-shadow: 3px 3px 0px 0px var(--gray);
        -webkit-box-shadow: 3px 3px 0px 0px var(--gray);
        -moz-box-shadow: 3px 3px 0px 0px var(--gray);
        cursor: pointer;
    }
    .frame.f-e .contact form .row input[type="submit"], .frame.f-e .contact form .row div input[type="submit"]{
        outline: none;
        border: none;
    }
    .frame.f-e .contact form .row input[type="submit"]:hover{
        background-color: var(--white);
        color: var(--black);
    }
    .frame.f-e .contact form .row input[type="submit"]:focus{
        background-color: var(--lightgray);
        color: var(--black);
        box-shadow: 3px 3px 0px 0px var(--darkgray);
        -webkit-box-shadow: 3px 3px 0px 0px var(--darkgray);
        -moz-box-shadow: 3px 3px 0px 0px var(--darkgray);
    }
    
    .frame.f-e .contact form .row input[type="number"]::-webkit-inner-spin-button,
    .frame.f-e .contact form .row input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    
    .frame.f-e .contact form .row input[type="number"]{
        appearance: textfield;
    }
    
    .frame.f-e .contact form .row .error label{
        color: var(--red);   
    }
    .frame.f-e .contact form .row .error input{
        color: var(--red);
        transition: all 0.2s ease-out;
        box-shadow: 3px 3px 0px 0px var(--darkred);
        -webkit-box-shadow: 3px 3px 0px 0px var(--darkred);
        -moz-box-shadow: 3px 3px 0px 0px var(--darkred);
    }
    .frame.f-e .contact form .row .error textarea{
        color: var(--red);
        transition: all 0.2s ease-out;
        box-shadow: 3px 3px 0px 0px var(--darkred);
        -webkit-box-shadow: 3px 3px 0px 0px var(--darkred);
        -moz-box-shadow: 3px 3px 0px 0px var(--darkred);
    }
    
    .frame.f-f footer{
        width: 100%;
        max-width: 900px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 50px 30px;
        color: var(--white);
        border-top: 1px solid var(--darkgray);
    }
    .frame.f-f footer .info{
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 30px;
        align-items: center;
        justify-content: center;
    }
    .frame.f-f footer .info .logo{
        width: 100%;
        height: 25px;
        display: flex;
        justify-content: end;
        align-items: center;
    }
    .frame.f-f footer .info .credits{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: start;
        align-items: center;
    }
    .frame.f-f footer .info .logo img{
        height: 100%;
        width: auto;
    }
    .frame.f-f footer .info .credits label{
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 75%;
    }
    
}

@media (max-width: 768px){
    .main-container{
        /* background-color: green; */
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    /* FRAMES */
    .frame{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .frame.f-a{
        border-bottom: 1px solid var(--lightdarkwhite);
    }
    .frame.f-b{
        /* background-color: violet; */
    }
    .frame.f-c{
        background-color: var(--lightdarkwhite);
    }
    .frame.f-d{
        background-color: var(--lightestgray-b);
    }
    .frame.f-e{
        background-color: var(--black);
    }
    .frame.f-f{
        background-color: var(--black);
    }
    
    .frame.f-a .banner{
        width: 100%;
        max-width: 768px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .frame.f-a .banner .header{
        width: 100%;
        height: 80px;
        display: flex;
        flex-direction: row;
        gap: 10px;
        /* background-color: purple; */
        align-items: center;
        padding-left: 40px;
        padding-right: 40px;
        box-sizing: border-box;
        
    }
    .frame.f-a .banner .header .a, .b, .c{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 60%;
        font-family: 'Satoshi-Bold',Arial, sans-serif !important;
        color: var(--black);
    }
    .frame.f-a .banner .header .a{
        /* background-color: yellow; */
        width: 15%;
        box-sizing: border-box;
    }
    .frame.f-a .banner .header .b{
        width: calc(70% - 20px);
        padding-right: 20px;
    }
    .frame.f-a .banner .header .c{
        /* background-color: pink; */
        width: 15%;
        justify-content: end;
    }
    .frame.f-a .banner .header .a a{
        /* background-color: orange; */
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .frame.f-a .banner .header .a a img{
        display: flex;
        width: 100%;
        height: auto;
    }
    .frame.f-a .banner .header .b ul{
        width: 100%;
        height: 100%;
        display: flex;
        gap: 30px;
        list-style-type: none;
        align-items: center;
        justify-content: center;
    }
    .frame.f-a .banner .header .b ul li{
        height: 100%;
        display: flex;
        align-items: center;
    }
    .frame.f-a .banner .header .b ul li a{
        height: 80%;
        display: flex;
        align-items: end;
        padding-bottom: 6px;
        transition: border-bottom 0.1s ease-out;
    }
    .frame.f-a .banner .header .b ul li a, .header .b ul li a:visited, .header .b ul li a:hover{
        text-decoration: none;
        font-family: 'Satoshi-Bold',Arial, sans-serif !important;
        color: var(--darkgray);
        border:none;
    }
    .frame.f-a .banner .header .b ul li a:hover{
        color: var(--black);
        border-bottom: 2px solid var(--black);
    }
    .frame.f-a .banner .header .c a{
        /* background-color: orange; */
        padding-left: 20px;
        padding-right: 20px;
        height: 80%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100px;
        background-color: var(--black);
        color: var(--white);
        transition: all 0.2s ease-out;
    }
    .frame.f-a .banner .header .c a, .header .c a:visited, .header .c a:hover{
        text-decoration: none;
        font-family: 'Satoshi-Bold',Arial, sans-serif !important;
    }
    .frame.f-a .banner .header .c a:hover{
        background-color: var(--white);
        border: 2px solid var(--darkestgray);
        color: var(--darkestgray);
    }
    .frame.f-b .presentation{
        width: 100%;
        max-width: 768px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 40px;
        gap: 20px;
        position: relative;
    }
    
    .frame.f-b .presentation .texto{
        /* background-color: yellow; */
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 30px;
        z-index: 1000;
    }
    .frame.f-b .presentation img{
        width: calc(45% - 10px);
        height: auto;
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 900;
        opacity: 20%;
        bottom: 10px;
        right: 10px;

    }
    .frame.f-b .presentation .texto p{
        margin: 0;
    }
    .frame.f-b .presentation .texto label{
        /* background-color: red; */
        /* display: block; */
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        font-size: 300%;
        line-height: 120%;
    }
    .frame.f-b .presentation .texto p{
        box-sizing: border-box;
        padding-right: 5%;
        /* display: block; */
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 130%;
        line-height: 150%;
    }
    .frame.f-b .presentation .texto a, .frame.f-b .presentation .texto a:hover, .frame.f-b .presentation .texto a:visited{
        text-decoration: none;
        color: var(--black);
    }
    .frame.f-b .presentation .texto a{
        display: flex;
        justify-content: center;
        box-sizing: border-box;
        padding: 10px 20px;
        width: 6em;
        font-family: 'Satoshi-Bold',Arial, sans-serif !important;
        font-size: 110%;
        background-color: var(--white);
        border-radius: 100px;
        border: 2px solid var(--black);
        color: var(--black);
        transition: all 0.2s ease-out;
        white-space: nowrap;
    }
    
    .frame.f-b .presentation .texto a:hover{
        background-color: var(--black);
        border: 2px solid var(--black);
        color: var(--white);
    }
    
    .frame.f-c .clients{
        width: 100%;
        max-width: 768px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 40px;
        gap: 25px;
        box-sizing: border-box;
    }
    .frame.f-c .clients label{
        /* background-color: red; */
        /* display: block; */
        width: 100%;
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        font-size: 150%;
        text-align: center;
        color: var(--black);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .frame.f-c .clients .grid{
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        column-gap: 10px;
        box-sizing: border-box;
    }
    .frame.f-c .clients .grid .client{
        width: 90%;
        height: 90%;
        padding: 15px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .frame.f-c .clients .grid .client img{
        width: 100%;
        height: auto;
        transition: all 0.2s ease-out;
    }
    .frame.f-c .clients .grid .client img:hover{
        transform: scale(1.10);
    }
    .frame.f-d .services{
        width: 100%;
        max-width: 768px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 40px;
        gap: 25px;
        box-sizing: border-box;
    }
    
    .frame.f-d .services label{
        width: 100%;
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        font-size: 150%;
        text-align: center;
        color: var(--black);
        display: flex;
        align-items: end;
        justify-content: center;
    }
    
    .frame.f-d .services p{
        box-sizing: border-box;
        /* display: block; */
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 110%;
        line-height: 150%;
        margin: 0;
        text-align: center;
    }
        
    .frame.f-d .services .servicegroup{
        /* background-color: RED; */
        width: 100%;
        display: flex;
        box-sizing: border-box;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        gap: 20px;
    }
    .frame.f-d .services .servicegroup .service{
        /* background-color: var(--darkwhite);
        border-radius: 5px; */
        background-color: var(--white);
        box-shadow: 3px 3px 0px 0px var(--lightestgray);
        -webkit-box-shadow: 3px 3px 0px 0px var(--lightestgray);
        -moz-box-shadow: 3px 3px 0px 0px var(--lightestgray);
        width: 100%;
        padding: 50px;
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 30px;
        box-sizing: border-box;
        transition: all 0.2s ease-out;
    }
    .frame.f-d .services .servicegroup .service:hover{
        transform: scale(1.02);
    }
    .frame.f-d .services .servicegroup .service .texto{
        /* background-color: blue; */
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 10;
    }
    .frame.f-d .services .servicegroup .service .imagen{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        z-index: 1;
        opacity: 20%;
    }
    
    .frame.f-d .services .servicegroup .service .texto label{
        width: 100%;
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        font-size: 120%;
        text-align: start;
        color: var(--black);
        display: flex;
        align-items: start;
        justify-content: start;
    }
    
    .frame.f-d .services .servicegroup .service .texto p{
        box-sizing: border-box;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 110%;
        line-height: 150%;
        margin: 0;
        text-align: start;
        display: flex;
        align-items: start;
        justify-content: start;
    }
    
    .frame.f-d .services p a, .frame.f-d .services p a:hover, .frame.f-d .services p a:visited{
        color: var(--black);
        text-decoration: none;
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        transition: all 0.2s ease-out;
    }
    .frame.f-d .services p a:hover{
        border-bottom: 2px solid var(--black);
    }
    
    .frame.f-d .services .servicegroup .service .imagen img{
        width: 30%;
        height: auto;
        /* border-radius: 5px; */
    }
    
    .frame.f-e .contact{
        width: 100%;
        max-width: 768px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 40px;
        gap: 25px;
        color: var(--white);
    }
    
    
    .frame.f-e .contact label{
        width: 100%;
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        font-size: 150%;
        text-align: center;
        display: flex;
        align-items: end;
        justify-content: center;
    }
    
    .frame.f-e .contact p{
        box-sizing: border-box;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 110%;
        line-height: 150%;
        margin: 0;
        text-align: center;
    }
    .frame.f-e .contact .imagen{
        width: 20%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .frame.f-e .contact .imagen img{
        width: 100%;
        height: auto;
        /* border-radius: 5px; */
    }
    
    .frame.f-e .contact form{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--white);
        box-sizing:border-box;
        gap:20px;
    }
    
    .frame.f-e .contact form .row{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .frame.f-e .contact form .row div{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .frame.f-e .contact form .row div label{
        width: 100%;
        display: flex;
        justify-content: start;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 110%;
    }
    .frame.f-e .contact form .row div input{
        display: flex;
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 110%;
        background-color: var(--lightestgray-b);
        color: var(--black);
        transition: all 0.2s ease-out;
        box-shadow: 3px 3px 0px 0px var(--gray);
        -webkit-box-shadow: 3px 3px 0px 0px var(--gray);
        -moz-box-shadow: 3px 3px 0px 0px var(--gray);
    }
    .frame.f-e .contact form .row div input, .frame.f-e .contact form .row div input:focus{
        outline: none;
        border: none;
    }
    .frame.f-e .contact form .row div input:focus{
        background-color: var(--white);
        color: var(--black);
    }
    .frame.f-e .contact form .row div textarea{
        display: flex;
        width: 100%;
        height: 300px;
        padding: 10px;
        box-sizing: border-box;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 110%;
        background-color: var(--lightestgray-b);
        color: var(--black);
        transition: all 0.2s ease-out;
        box-shadow: 3px 3px 0px 0px var(--gray);
        -webkit-box-shadow: 3px 3px 0px 0px var(--gray);
        -moz-box-shadow: 3px 3px 0px 0px var(--gray);
        resize: none;
    }
    .frame.f-e .contact form .row div textarea, .frame.f-e .contact form .row div textarea:focus{
        outline: none;
        border: none;
    }
    .frame.f-e .contact form .row div textarea:focus{
        background-color: var(--white);
        color: var(--black);
    }
    
    .frame.f-e .contact form .row input[type="submit"]{
        display: flex;
        width: 6em;
        padding: 10px;
        box-sizing: border-box;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 110%;
        background-color: var(--lightestgray-b);
        color: var(--black);
        transition: all 0.2s ease-out;
        box-shadow: 3px 3px 0px 0px var(--gray);
        -webkit-box-shadow: 3px 3px 0px 0px var(--gray);
        -moz-box-shadow: 3px 3px 0px 0px var(--gray);
        cursor: pointer;
    }
    .frame.f-e .contact form .row input[type="submit"], .frame.f-e .contact form .row div input[type="submit"]{
        outline: none;
        border: none;
    }
    .frame.f-e .contact form .row input[type="submit"]:hover{
        background-color: var(--white);
        color: var(--black);
    }
    .frame.f-e .contact form .row input[type="submit"]:focus{
        background-color: var(--lightgray);
        color: var(--black);
        box-shadow: 3px 3px 0px 0px var(--darkgray);
        -webkit-box-shadow: 3px 3px 0px 0px var(--darkgray);
        -moz-box-shadow: 3px 3px 0px 0px var(--darkgray);
    }
    
    .frame.f-e .contact form .row input[type="number"]::-webkit-inner-spin-button,
    .frame.f-e .contact form .row input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    
    .frame.f-e .contact form .row input[type="number"]{
        appearance: textfield;
    }
    
    .frame.f-e .contact form .row .error label{
        color: var(--red);   
    }
    .frame.f-e .contact form .row .error input{
        color: var(--red);
        transition: all 0.2s ease-out;
        box-shadow: 3px 3px 0px 0px var(--darkred);
        -webkit-box-shadow: 3px 3px 0px 0px var(--darkred);
        -moz-box-shadow: 3px 3px 0px 0px var(--darkred);
    }
    .frame.f-e .contact form .row .error textarea{
        color: var(--red);
        transition: all 0.2s ease-out;
        box-shadow: 3px 3px 0px 0px var(--darkred);
        -webkit-box-shadow: 3px 3px 0px 0px var(--darkred);
        -moz-box-shadow: 3px 3px 0px 0px var(--darkred);
    }
    
    .frame.f-f footer{
        width: 100%;
        max-width: 768px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 50px 30px;
        color: var(--white);
        border-top: 1px solid var(--darkgray);
    }
    .frame.f-f footer .info{
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 30px;
        align-items: center;
        justify-content: center;
    }
    .frame.f-f footer .info .logo{
        width: 100%;
        height: 25px;
        display: flex;
        justify-content: end;
        align-items: center;
    }
    .frame.f-f footer .info .credits{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: start;
        align-items: center;
    }
    .frame.f-f footer .info .logo img{
        height: 100%;
        width: auto;
    }
    .frame.f-f footer .info .credits label{
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 75%;
    }
    

}
@media (max-width: 425px){
    .main-container{
        /* background-color: green; */
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    /* FRAMES */
    .frame{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .frame.f-a{
        border-bottom: 1px solid var(--lightdarkwhite);
    }
    .frame.f-b{
        /* background-color: violet; */
    }
    .frame.f-c{
        background-color: var(--lightdarkwhite);
    }
    .frame.f-d{
        background-color: var(--lightestgray-b);
    }
    .frame.f-e{
        background-color: var(--black);
    }
    .frame.f-f{
        background-color: var(--black);
    }
    
    .frame.f-a .banner{
        width: 100%;
        max-width: 425px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .frame.f-a .banner .header{
        width: 100%;
        height: 80px;
        display: flex;
        flex-direction: row;
        gap: 10px;
        /* background-color: purple; */
        align-items: center;
        padding-left: 40px;
        padding-right: 40px;
        box-sizing: border-box;
        
    }
    .frame.f-a .banner .header .a, .b, .c{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 60%;
        font-family: 'Satoshi-Bold',Arial, sans-serif !important;
        color: var(--black);
    }
    .frame.f-a .banner .header .a{
        /* background-color: yellow; */
        width: 40%;
        box-sizing: border-box;
    }
    .frame.f-a .banner .header .b{
        width: calc(70% - 20px);
        padding-right: 20px;
        display: none;
    }
    .frame.f-a .banner .header .c{
        /* background-color: pink; */
        width: 60%;
        justify-content: end;
        font-size: 90% !important;
    }
    .frame.f-a .banner .header .a a{
        /* background-color: orange; */
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .frame.f-a .banner .header .a a img{
        display: flex;
        width: 100%;
        height: auto;
    }
    .frame.f-a .banner .header .b ul{
        width: 100%;
        height: 100%;
        display: flex;
        gap: 30px;
        list-style-type: none;
        align-items: center;
        justify-content: center;
    }
    .frame.f-a .banner .header .b ul li{
        height: 100%;
        display: flex;
        align-items: center;
    }
    .frame.f-a .banner .header .b ul li a{
        height: 80%;
        display: flex;
        align-items: end;
        padding-bottom: 6px;
        transition: border-bottom 0.1s ease-out;
    }
    .frame.f-a .banner .header .b ul li a, .header .b ul li a:visited, .header .b ul li a:hover{
        text-decoration: none;
        font-family: 'Satoshi-Bold',Arial, sans-serif !important;
        color: var(--darkgray);
        border:none;
    }
    .frame.f-a .banner .header .b ul li a:hover{
        color: var(--black);
        border-bottom: 2px solid var(--black);
    }
    .frame.f-a .banner .header .c a{
        /* background-color: orange; */
        padding-left: 20px;
        padding-right: 20px;
        height: 80%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100px;
        background-color: var(--black);
        color: var(--white);
        transition: all 0.2s ease-out;
        
    }
    .frame.f-a .banner .header .c a, .header .c a:visited, .header .c a:hover{
        text-decoration: none;
        font-family: 'Satoshi-Bold',Arial, sans-serif !important;
    }
    .frame.f-a .banner .header .c a:hover{
        background-color: var(--white);
        border: 2px solid var(--darkestgray);
        color: var(--darkestgray);
    }
    .frame.f-b .presentation{
        width: 100%;
        max-width: 425px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px 40px;
        gap: 20px;
        position: relative;
    }
    
    .frame.f-b .presentation .texto{
        /* background-color: yellow; */
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 30px;
        z-index: 1000;
    }
    .frame.f-b .presentation img{
        width: calc(60% - 10px);
        height: auto;
        position: absolute;
        display: flex;
        z-index: 900;
        opacity: 20%;
        bottom: 10px;
        right: 10px;

    }
    .frame.f-b .presentation .texto p{
        margin: 0;
    }
    .frame.f-b .presentation .texto label{
        /* background-color: red; */
        /* display: block; */
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        font-size: 200%;
        line-height: 120%;
    }
    .frame.f-b .presentation .texto p{
        box-sizing: border-box;
        padding-right: 5%;
        /* display: block; */
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 110%;
        line-height: 150%;
    }
    .frame.f-b .presentation .texto a, .frame.f-b .presentation .texto a:hover, .frame.f-b .presentation .texto a:visited{
        text-decoration: none;
        color: var(--black);
    }
    .frame.f-b .presentation .texto a{
        display: flex;
        justify-content: center;
        box-sizing: border-box;
        padding: 10px 20px;
        width: 6em;
        font-family: 'Satoshi-Bold',Arial, sans-serif !important;
        font-size: 90%;
        background-color: var(--white);
        border-radius: 100px;
        border: 2px solid var(--black);
        color: var(--black);
        transition: all 0.2s ease-out;
        white-space: nowrap;
    }
    
    .frame.f-b .presentation .texto a:hover{
        background-color: var(--black);
        border: 2px solid var(--black);
        color: var(--white);
    }
    
    .frame.f-c .clients{
        width: 100%;
        max-width: 425px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px 40px;
        gap: 30px;
        box-sizing: border-box;
    }
    .frame.f-c .clients label{
        /* background-color: red; */
        /* display: block; */
        width: 100%;
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        font-size: 130%;
        text-align: center;
        color: var(--black);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .frame.f-c .clients .grid{
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        column-gap: 10px;
        box-sizing: border-box;
    }
    .frame.f-c .clients .grid .client{
        width: 90%;
        height: 90%;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .frame.f-c .clients .grid .client img{
        width: 100%;
        height: auto;
        transition: all 0.2s ease-out;
    }
    .frame.f-c .clients .grid .client img:hover{
        transform: scale(1.10);
    }
    .frame.f-d .services{
        width: 100%;
        max-width: 425px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px 30px;
        gap: 25px;
        box-sizing: border-box;
    }
    
    .frame.f-d .services label{
        width: 100%;
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        font-size: 130%;
        text-align: center;
        color: var(--black);
        display: flex;
        align-items: end;
        justify-content: center;
    }
    
    .frame.f-d .services p{
        box-sizing: border-box;
        /* display: block; */
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 110%;
        line-height: 150%;
        margin: 0;
        text-align: center;
    }
        
    .frame.f-d .services .servicegroup{
        /* background-color: RED; */
        width: 100%;
        display: flex;
        box-sizing: border-box;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        gap: 20px;
    }
    .frame.f-d .services .servicegroup .service{
        /* background-color: var(--darkwhite);
        border-radius: 5px; */
        background-color: var(--white);
        box-shadow: 3px 3px 0px 0px var(--lightestgray);
        -webkit-box-shadow: 3px 3px 0px 0px var(--lightestgray);
        -moz-box-shadow: 3px 3px 0px 0px var(--lightestgray);
        width: 100%;
        padding: 30px;
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 30px;
        box-sizing: border-box;
        transition: all 0.2s ease-out;
    }
    .frame.f-d .services .servicegroup .service:hover{
        transform: scale(1.02);
    }
    .frame.f-d .services .servicegroup .service .texto{
        /* background-color: blue; */
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 10;
    }
    .frame.f-d .services .servicegroup .service .imagen{
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        z-index: 1;
        opacity: 20%;
    }
    
    .frame.f-d .services .servicegroup .service .texto label{
        width: 100%;
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        font-size: 120%;
        text-align: start;
        color: var(--black);
        display: flex;
        align-items: start;
        justify-content: start;
    }
    
    .frame.f-d .services .servicegroup .service .texto p{
        box-sizing: border-box;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 100%;
        line-height: 150%;
        margin: 0;
        text-align: start;
        display: flex;
        align-items: start;
        justify-content: start;
    }
    
    .frame.f-d .services p a, .frame.f-d .services p a:hover, .frame.f-d .services p a:visited{
        color: var(--black);
        text-decoration: none;
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        transition: all 0.2s ease-out;
    }
    .frame.f-d .services p a:hover{
        border-bottom: 2px solid var(--black);
    }
    
    .frame.f-d .services .servicegroup .service .imagen img{
        width: 30%;
        height: auto;
        /* border-radius: 5px; */
    }
    
    .frame.f-e .contact{
        width: 100%;
        max-width: 425px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 40px;
        gap: 25px;
        color: var(--white);
    }
    
    
    .frame.f-e .contact label{
        width: 100%;
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        font-size: 130%;
        text-align: center;
        display: flex;
        align-items: end;
        justify-content: center;
    }
    
    .frame.f-e .contact p{
        box-sizing: border-box;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 110%;
        line-height: 150%;
        margin: 0;
        text-align: center;
    }
    .frame.f-e .contact .imagen{
        width: 20%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .frame.f-e .contact .imagen img{
        width: 100%;
        height: auto;
        /* border-radius: 5px; */
    }
    
    .frame.f-e .contact form{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--white);
        box-sizing:border-box;
        gap:20px;
    }
    
    .frame.f-e .contact form .row{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .frame.f-e .contact form .row div{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .frame.f-e .contact form .row div label{
        width: 100%;
        display: flex;
        justify-content: start;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 110%;
    }
    .frame.f-e .contact form .row div input{
        display: flex;
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 110%;
        background-color: var(--lightestgray-b);
        color: var(--black);
        transition: all 0.2s ease-out;
        box-shadow: 3px 3px 0px 0px var(--gray);
        -webkit-box-shadow: 3px 3px 0px 0px var(--gray);
        -moz-box-shadow: 3px 3px 0px 0px var(--gray);
    }
    .frame.f-e .contact form .row div input, .frame.f-e .contact form .row div input:focus{
        outline: none;
        border: none;
    }
    .frame.f-e .contact form .row div input:focus{
        background-color: var(--white);
        color: var(--black);
    }
    .frame.f-e .contact form .row div textarea{
        display: flex;
        width: 100%;
        height: 300px;
        padding: 10px;
        box-sizing: border-box;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 110%;
        background-color: var(--lightestgray-b);
        color: var(--black);
        transition: all 0.2s ease-out;
        box-shadow: 3px 3px 0px 0px var(--gray);
        -webkit-box-shadow: 3px 3px 0px 0px var(--gray);
        -moz-box-shadow: 3px 3px 0px 0px var(--gray);
        resize: none;
    }
    .frame.f-e .contact form .row div textarea, .frame.f-e .contact form .row div textarea:focus{
        outline: none;
        border: none;
    }
    .frame.f-e .contact form .row div textarea:focus{
        background-color: var(--white);
        color: var(--black);
    }
    
    .frame.f-e .contact form .row input[type="submit"]{
        display: flex;
        width: 6em;
        padding: 10px;
        box-sizing: border-box;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 110%;
        background-color: var(--lightestgray-b);
        color: var(--black);
        transition: all 0.2s ease-out;
        box-shadow: 3px 3px 0px 0px var(--gray);
        -webkit-box-shadow: 3px 3px 0px 0px var(--gray);
        -moz-box-shadow: 3px 3px 0px 0px var(--gray);
        cursor: pointer;
    }
    .frame.f-e .contact form .row input[type="submit"], .frame.f-e .contact form .row div input[type="submit"]{
        outline: none;
        border: none;
    }
    .frame.f-e .contact form .row input[type="submit"]:hover{
        background-color: var(--white);
        color: var(--black);
    }
    .frame.f-e .contact form .row input[type="submit"]:focus{
        background-color: var(--lightgray);
        color: var(--black);
        box-shadow: 3px 3px 0px 0px var(--darkgray);
        -webkit-box-shadow: 3px 3px 0px 0px var(--darkgray);
        -moz-box-shadow: 3px 3px 0px 0px var(--darkgray);
    }
    
    .frame.f-e .contact form .row input[type="number"]::-webkit-inner-spin-button,
    .frame.f-e .contact form .row input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    
    .frame.f-e .contact form .row input[type="number"]{
        appearance: textfield;
    }
    
    .frame.f-e .contact form .row .error label{
        color: var(--red);   
    }
    .frame.f-e .contact form .row .error input{
        color: var(--red);
        transition: all 0.2s ease-out;
        box-shadow: 3px 3px 0px 0px var(--darkred);
        -webkit-box-shadow: 3px 3px 0px 0px var(--darkred);
        -moz-box-shadow: 3px 3px 0px 0px var(--darkred);
    }
    .frame.f-e .contact form .row .error textarea{
        color: var(--red);
        transition: all 0.2s ease-out;
        box-shadow: 3px 3px 0px 0px var(--darkred);
        -webkit-box-shadow: 3px 3px 0px 0px var(--darkred);
        -moz-box-shadow: 3px 3px 0px 0px var(--darkred);
    }
    
    .frame.f-f footer{
        width: 100%;
        max-width: 425px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 50px 30px;
        color: var(--white);
        border-top: 1px solid var(--darkgray);
    }
    .frame.f-f footer .info{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        justify-content: center;
    }
    .frame.f-f footer .info .logo{
        width: 100%;
        height: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .frame.f-f footer .info .credits{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .frame.f-f footer .info .logo img{
        height: 100%;
        width: auto;
    }
    .frame.f-f footer .info .credits label{
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 75%;
        text-align: center;
    }
    

}

@media (max-width: 375px){
    .main-container{
        /* background-color: green; */
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    /* FRAMES */
    .frame{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .frame.f-a{
        border-bottom: 1px solid var(--lightdarkwhite);
    }
    .frame.f-b{
        /* background-color: violet; */
    }
    .frame.f-c{
        background-color: var(--lightdarkwhite);
    }
    .frame.f-d{
        background-color: var(--lightestgray-b);
    }
    .frame.f-e{
        background-color: var(--black);
    }
    .frame.f-f{
        background-color: var(--black);
    }
    
    .frame.f-a .banner{
        width: 100%;
        max-width: 375px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .frame.f-a .banner .header{
        width: 100%;
        height: 80px;
        display: flex;
        flex-direction: row;
        gap: 10px;
        /* background-color: purple; */
        align-items: center;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
        
    }
    .frame.f-a .banner .header .a, .b, .c{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 60%;
        font-family: 'Satoshi-Bold',Arial, sans-serif !important;
        color: var(--black);
    }
    .frame.f-a .banner .header .a{
        /* background-color: yellow; */
        width: 40%;
        box-sizing: border-box;
    }
    .frame.f-a .banner .header .b{
        width: calc(70% - 20px);
        padding-right: 20px;
        display: none;
    }
    .frame.f-a .banner .header .c{
        /* background-color: pink; */
        width: 60%;
        justify-content: end;
        font-size: 85% !important;
    }
    .frame.f-a .banner .header .a a{
        /* background-color: orange; */
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .frame.f-a .banner .header .a a img{
        display: flex;
        width: 100%;
        height: auto;
    }
    .frame.f-a .banner .header .b ul{
        width: 100%;
        height: 100%;
        display: flex;
        gap: 30px;
        list-style-type: none;
        align-items: center;
        justify-content: center;
    }
    .frame.f-a .banner .header .b ul li{
        height: 100%;
        display: flex;
        align-items: center;
    }
    .frame.f-a .banner .header .b ul li a{
        height: 80%;
        display: flex;
        align-items: end;
        padding-bottom: 6px;
        transition: border-bottom 0.1s ease-out;
    }
    .frame.f-a .banner .header .b ul li a, .header .b ul li a:visited, .header .b ul li a:hover{
        text-decoration: none;
        font-family: 'Satoshi-Bold',Arial, sans-serif !important;
        color: var(--darkgray);
        border:none;
    }
    .frame.f-a .banner .header .b ul li a:hover{
        color: var(--black);
        border-bottom: 2px solid var(--black);
    }
    .frame.f-a .banner .header .c a{
        /* background-color: orange; */
        padding-left: 20px;
        padding-right: 20px;
        height: 80%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100px;
        background-color: var(--black);
        color: var(--white);
        transition: all 0.2s ease-out;
        
    }
    .frame.f-a .banner .header .c a, .header .c a:visited, .header .c a:hover{
        text-decoration: none;
        font-family: 'Satoshi-Bold',Arial, sans-serif !important;
    }
    .frame.f-a .banner .header .c a:hover{
        background-color: var(--white);
        border: 2px solid var(--darkestgray);
        color: var(--darkestgray);
    }
    .frame.f-b .presentation{
        width: 100%;
        max-width: 375px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px 40px;
        gap: 20px;
        position: relative;
    }
    
    .frame.f-b .presentation .texto{
        /* background-color: yellow; */
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 30px;
        z-index: 1000;
    }
    .frame.f-b .presentation img{
        width: calc(60% - 10px);
        height: auto;
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 900;
        opacity: 20%;
        bottom: 10px;
        right: 10px;
    }
    .frame.f-b .presentation .texto p{
        margin: 0;
    }
    .frame.f-b .presentation .texto label{
        /* background-color: red; */
        /* display: block; */
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        font-size: 160%;
        line-height: 120%;
    }
    .frame.f-b .presentation .texto p{
        box-sizing: border-box;
        padding-right: 5%;
        /* display: block; */
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 100%;
        line-height: 150%;
    }
    .frame.f-b .presentation .texto a, .frame.f-b .presentation .texto a:hover, .frame.f-b .presentation .texto a:visited{
        text-decoration: none;
        color: var(--black);
    }
    .frame.f-b .presentation .texto a{
        display: flex;
        justify-content: center;
        box-sizing: border-box;
        padding: 10px 20px;
        width: 6em;
        font-family: 'Satoshi-Bold',Arial, sans-serif !important;
        font-size: 85%;
        background-color: var(--white);
        border-radius: 100px;
        border: 2px solid var(--black);
        color: var(--black);
        transition: all 0.2s ease-out;
        white-space: nowrap;
    }
    
    .frame.f-b .presentation .texto a:hover{
        background-color: var(--black);
        border: 2px solid var(--black);
        color: var(--white);
    }
    
    .frame.f-c .clients{
        width: 100%;
        max-width: 375px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px 40px;
        gap: 30px;
        box-sizing: border-box;
    }
    .frame.f-c .clients label{
        /* background-color: red; */
        /* display: block; */
        width: 100%;
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        font-size: 120%;
        text-align: center;
        color: var(--black);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .frame.f-c .clients .grid{
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        column-gap: 10px;
        box-sizing: border-box;
    }
    .frame.f-c .clients .grid .client{
        width: 90%;
        height: 90%;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .frame.f-c .clients .grid .client img{
        width: 100%;
        height: auto;
        transition: all 0.2s ease-out;
    }
    .frame.f-c .clients .grid .client img:hover{
        transform: scale(1.10);
    }
    .frame.f-d .services{
        width: 100%;
        max-width: 375px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px 30px;
        gap: 25px;
        box-sizing: border-box;
    }
    
    .frame.f-d .services label{
        width: 100%;
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        font-size: 120%;
        text-align: center;
        color: var(--black);
        display: flex;
        align-items: end;
        justify-content: center;
    }
    
    .frame.f-d .services p{
        box-sizing: border-box;
        /* display: block; */
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 90%;
        line-height: 150%;
        margin: 0;
        text-align: center;
    }
        
    .frame.f-d .services .servicegroup{
        /* background-color: RED; */
        width: 100%;
        display: flex;
        box-sizing: border-box;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        gap: 20px;
    }
    .frame.f-d .services .servicegroup .service{
        /* background-color: var(--darkwhite);
        border-radius: 5px; */
        background-color: var(--white);
        box-shadow: 3px 3px 0px 0px var(--lightestgray);
        -webkit-box-shadow: 3px 3px 0px 0px var(--lightestgray);
        -moz-box-shadow: 3px 3px 0px 0px var(--lightestgray);
        width: 100%;
        padding: 30px;
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 30px;
        box-sizing: border-box;
        transition: all 0.2s ease-out;
    }
    .frame.f-d .services .servicegroup .service:hover{
        transform: scale(1.02);
    }
    .frame.f-d .services .servicegroup .service .texto{
        /* background-color: blue; */
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 10;
    }
    .frame.f-d .services .servicegroup .service .imagen{
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        z-index: 1;
        opacity: 20%;
    }
    
    .frame.f-d .services .servicegroup .service .texto label{
        width: 100%;
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        font-size: 100%;
        text-align: start;
        color: var(--black);
        display: flex;
        align-items: start;
        justify-content: start;
    }
    
    .frame.f-d .services .servicegroup .service .texto p{
        box-sizing: border-box;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 90%;
        line-height: 150%;
        margin: 0;
        text-align: start;
        display: flex;
        align-items: start;
        justify-content: start;
    }
    
    .frame.f-d .services p a, .frame.f-d .services p a:hover, .frame.f-d .services p a:visited{
        color: var(--black);
        text-decoration: none;
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        transition: all 0.2s ease-out;
    }
    .frame.f-d .services p a:hover{
        border-bottom: 2px solid var(--black);
    }
    
    .frame.f-d .services .servicegroup .service .imagen img{
        width: 30%;
        height: auto;
        /* border-radius: 5px; */
    }
    
    .frame.f-e .contact{
        width: 100%;
        max-width: 375px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 40px;
        gap: 25px;
        color: var(--white);
    }
    
    
    .frame.f-e .contact label{
        width: 100%;
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        font-size: 100%;
        text-align: center;
        display: flex;
        align-items: end;
        justify-content: center;
    }
    
    .frame.f-e .contact p{
        box-sizing: border-box;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 90%;
        line-height: 150%;
        margin: 0;
        text-align: center;
    }
    .frame.f-e .contact .imagen{
        width: 20%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .frame.f-e .contact .imagen img{
        width: 100%;
        height: auto;
        /* border-radius: 5px; */
    }
    
    .frame.f-e .contact form{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--white);
        box-sizing:border-box;
        gap:20px;
    }
    
    .frame.f-e .contact form .row{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .frame.f-e .contact form .row div{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .frame.f-e .contact form .row div label{
        width: 100%;
        display: flex;
        justify-content: start;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 90%;
    }
    .frame.f-e .contact form .row div input{
        display: flex;
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 90%;
        background-color: var(--lightestgray-b);
        color: var(--black);
        transition: all 0.2s ease-out;
        box-shadow: 3px 3px 0px 0px var(--gray);
        -webkit-box-shadow: 3px 3px 0px 0px var(--gray);
        -moz-box-shadow: 3px 3px 0px 0px var(--gray);
    }
    .frame.f-e .contact form .row div input, .frame.f-e .contact form .row div input:focus{
        outline: none;
        border: none;
    }
    .frame.f-e .contact form .row div input:focus{
        background-color: var(--white);
        color: var(--black);
    }
    .frame.f-e .contact form .row div textarea{
        display: flex;
        width: 100%;
        height: 300px;
        padding: 10px;
        box-sizing: border-box;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 90%;
        background-color: var(--lightestgray-b);
        color: var(--black);
        transition: all 0.2s ease-out;
        box-shadow: 3px 3px 0px 0px var(--gray);
        -webkit-box-shadow: 3px 3px 0px 0px var(--gray);
        -moz-box-shadow: 3px 3px 0px 0px var(--gray);
        resize: none;
    }
    .frame.f-e .contact form .row div textarea, .frame.f-e .contact form .row div textarea:focus{
        outline: none;
        border: none;
    }
    .frame.f-e .contact form .row div textarea:focus{
        background-color: var(--white);
        color: var(--black);
    }
    
    .frame.f-e .contact form .row input[type="submit"]{
        display: flex;
        width: 6em;
        padding: 10px;
        box-sizing: border-box;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 90%;
        background-color: var(--lightestgray-b);
        color: var(--black);
        transition: all 0.2s ease-out;
        box-shadow: 3px 3px 0px 0px var(--gray);
        -webkit-box-shadow: 3px 3px 0px 0px var(--gray);
        -moz-box-shadow: 3px 3px 0px 0px var(--gray);
        cursor: pointer;
    }
    .frame.f-e .contact form .row input[type="submit"], .frame.f-e .contact form .row div input[type="submit"]{
        outline: none;
        border: none;
    }
    .frame.f-e .contact form .row input[type="submit"]:hover{
        background-color: var(--white);
        color: var(--black);
    }
    .frame.f-e .contact form .row input[type="submit"]:focus{
        background-color: var(--lightgray);
        color: var(--black);
        box-shadow: 3px 3px 0px 0px var(--darkgray);
        -webkit-box-shadow: 3px 3px 0px 0px var(--darkgray);
        -moz-box-shadow: 3px 3px 0px 0px var(--darkgray);
    }
    
    .frame.f-e .contact form .row input[type="number"]::-webkit-inner-spin-button,
    .frame.f-e .contact form .row input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    
    .frame.f-e .contact form .row input[type="number"]{
        appearance: textfield;
    }
    
    .frame.f-e .contact form .row .error label{
        color: var(--red);   
    }
    .frame.f-e .contact form .row .error input{
        color: var(--red);
        transition: all 0.2s ease-out;
        box-shadow: 3px 3px 0px 0px var(--darkred);
        -webkit-box-shadow: 3px 3px 0px 0px var(--darkred);
        -moz-box-shadow: 3px 3px 0px 0px var(--darkred);
    }
    .frame.f-e .contact form .row .error textarea{
        color: var(--red);
        transition: all 0.2s ease-out;
        box-shadow: 3px 3px 0px 0px var(--darkred);
        -webkit-box-shadow: 3px 3px 0px 0px var(--darkred);
        -moz-box-shadow: 3px 3px 0px 0px var(--darkred);
    }
    
    .frame.f-f footer{
        width: 100%;
        max-width: 375px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 50px 30px;
        color: var(--white);
        border-top: 1px solid var(--darkgray);
    }
    .frame.f-f footer .info{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        justify-content: center;
    }
    .frame.f-f footer .info .logo{
        width: 100%;
        height: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .frame.f-f footer .info .credits{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .frame.f-f footer .info .logo img{
        height: 100%;
        width: auto;
    }
    .frame.f-f footer .info .credits label{
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 75%;
        text-align: center;
    }
    

}

@media (max-width: 320px){
    .main-container{
        /* background-color: green; */
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    /* FRAMES */
    .frame{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .frame.f-a{
        border-bottom: 1px solid var(--lightdarkwhite);
    }
    .frame.f-b{
        /* background-color: violet; */
    }
    .frame.f-c{
        background-color: var(--lightdarkwhite);
    }
    .frame.f-d{
        background-color: var(--lightestgray-b);
    }
    .frame.f-e{
        background-color: var(--black);
    }
    .frame.f-f{
        background-color: var(--black);
    }
    
    .frame.f-a .banner{
        width: 100%;
        max-width: 320px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .frame.f-a .banner .header{
        width: 100%;
        height: 80px;
        display: flex;
        flex-direction: row;
        gap: 10px;
        /* background-color: purple; */
        align-items: center;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
        
    }
    .frame.f-a .banner .header .a, .b, .c{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 60%;
        font-family: 'Satoshi-Bold',Arial, sans-serif !important;
        color: var(--black);
    }
    .frame.f-a .banner .header .a{
        /* background-color: yellow; */
        width: 40%;
        box-sizing: border-box;
    }
    .frame.f-a .banner .header .b{
        width: calc(70% - 20px);
        padding-right: 20px;
        display: none;
    }
    .frame.f-a .banner .header .c{
        /* background-color: pink; */
        width: 60%;
        justify-content: end;
        font-size: 85% !important;
    }
    .frame.f-a .banner .header .a a{
        /* background-color: orange; */
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .frame.f-a .banner .header .a a img{
        display: flex;
        width: 100%;
        height: auto;
    }
    .frame.f-a .banner .header .b ul{
        width: 100%;
        height: 100%;
        display: flex;
        gap: 30px;
        list-style-type: none;
        align-items: center;
        justify-content: center;
    }
    .frame.f-a .banner .header .b ul li{
        height: 100%;
        display: flex;
        align-items: center;
    }
    .frame.f-a .banner .header .b ul li a{
        height: 80%;
        display: flex;
        align-items: end;
        padding-bottom: 6px;
        transition: border-bottom 0.1s ease-out;
    }
    .frame.f-a .banner .header .b ul li a, .header .b ul li a:visited, .header .b ul li a:hover{
        text-decoration: none;
        font-family: 'Satoshi-Bold',Arial, sans-serif !important;
        color: var(--darkgray);
        border:none;
    }
    .frame.f-a .banner .header .b ul li a:hover{
        color: var(--black);
        border-bottom: 2px solid var(--black);
    }
    .frame.f-a .banner .header .c a{
        /* background-color: orange; */
        padding-left: 20px;
        padding-right: 20px;
        height: 80%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100px;
        background-color: var(--black);
        color: var(--white);
        transition: all 0.2s ease-out;
        
    }
    .frame.f-a .banner .header .c a, .header .c a:visited, .header .c a:hover{
        text-decoration: none;
        font-family: 'Satoshi-Bold',Arial, sans-serif !important;
    }
    .frame.f-a .banner .header .c a:hover{
        background-color: var(--white);
        border: 2px solid var(--darkestgray);
        color: var(--darkestgray);
    }
    .frame.f-b .presentation{
        width: 100%;
        max-width: 320px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px 20px;
        gap: 20px;
        position: relative;
    }
    
    .frame.f-b .presentation .texto{
        /* background-color: yellow; */
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 30px;
        z-index: 1000;
    }
    .frame.f-b .presentation img{
        width: calc(60% - 10px);
        height: auto;
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 900;
        opacity: 20%;
        bottom: 10px;
        right: 10px;
    }
    .frame.f-b .presentation .texto p{
        margin: 0;
    }
    .frame.f-b .presentation .texto label{
        /* background-color: red; */
        /* display: block; */
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        font-size: 160%;
        line-height: 120%;
    }
    .frame.f-b .presentation .texto p{
        box-sizing: border-box;
        padding-right: 5%;
        /* display: block; */
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 100%;
        line-height: 150%;
    }
    .frame.f-b .presentation .texto a, .frame.f-b .presentation .texto a:hover, .frame.f-b .presentation .texto a:visited{
        text-decoration: none;
        color: var(--black);
    }
    .frame.f-b .presentation .texto a{
        display: flex;
        justify-content: center;
        box-sizing: border-box;
        padding: 10px 20px;
        width: 6em;
        font-family: 'Satoshi-Bold',Arial, sans-serif !important;
        font-size: 85%;
        background-color: var(--white);
        border-radius: 100px;
        border: 2px solid var(--black);
        color: var(--black);
        transition: all 0.2s ease-out;
        white-space: nowrap;
    }
    
    .frame.f-b .presentation .texto a:hover{
        background-color: var(--black);
        border: 2px solid var(--black);
        color: var(--white);
    }
    
    .frame.f-c .clients{
        width: 100%;
        max-width: 320px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px 20px;
        gap: 30px;
        box-sizing: border-box;
    }
    .frame.f-c .clients label{
        /* background-color: red; */
        /* display: block; */
        width: 100%;
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        font-size: 120%;
        text-align: center;
        color: var(--black);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .frame.f-c .clients .grid{
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        column-gap: 10px;
        box-sizing: border-box;
    }
    .frame.f-c .clients .grid .client{
        width: 90%;
        height: 90%;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .frame.f-c .clients .grid .client img{
        width: 100%;
        height: auto;
        transition: all 0.2s ease-out;
    }
    .frame.f-c .clients .grid .client img:hover{
        transform: scale(1.10);
    }
    .frame.f-d .services{
        width: 100%;
        max-width: 320px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px 20px;
        gap: 25px;
        box-sizing: border-box;
    }
    
    .frame.f-d .services label{
        width: 100%;
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        font-size: 120%;
        text-align: center;
        color: var(--black);
        display: flex;
        align-items: end;
        justify-content: center;
    }
    
    .frame.f-d .services p{
        box-sizing: border-box;
        /* display: block; */
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 90%;
        line-height: 150%;
        margin: 0;
        text-align: center;
    }
        
    .frame.f-d .services .servicegroup{
        /* background-color: RED; */
        width: 100%;
        display: flex;
        box-sizing: border-box;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        gap: 20px;
    }
    .frame.f-d .services .servicegroup .service{
        /* background-color: var(--darkwhite);
        border-radius: 5px; */
        background-color: var(--white);
        box-shadow: 3px 3px 0px 0px var(--lightestgray);
        -webkit-box-shadow: 3px 3px 0px 0px var(--lightestgray);
        -moz-box-shadow: 3px 3px 0px 0px var(--lightestgray);
        width: 100%;
        padding: 20px;
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 30px;
        box-sizing: border-box;
        transition: all 0.2s ease-out;
    }
    .frame.f-d .services .servicegroup .service:hover{
        transform: scale(1.02);
    }
    .frame.f-d .services .servicegroup .service .texto{
        /* background-color: blue; */
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 10;
    }
    .frame.f-d .services .servicegroup .service .imagen{
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        z-index: 1;
        opacity: 20%;
    }
    
    .frame.f-d .services .servicegroup .service .texto label{
        width: 100%;
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        font-size: 100%;
        text-align: start;
        color: var(--black);
        display: flex;
        align-items: start;
        justify-content: start;
    }
    
    .frame.f-d .services .servicegroup .service .texto p{
        box-sizing: border-box;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 90%;
        line-height: 150%;
        margin: 0;
        text-align: start;
        display: flex;
        align-items: start;
        justify-content: start;
    }
    
    .frame.f-d .services p a, .frame.f-d .services p a:hover, .frame.f-d .services p a:visited{
        color: var(--black);
        text-decoration: none;
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        transition: all 0.2s ease-out;
    }
    .frame.f-d .services p a:hover{
        border-bottom: 2px solid var(--black);
    }
    
    .frame.f-d .services .servicegroup .service .imagen img{
        width: 30%;
        height: auto;
        /* border-radius: 5px; */
    }
    
    .frame.f-e .contact{
        width: 100%;
        max-width: 320px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 20px;
        gap: 25px;
        color: var(--white);
    }
    
    
    .frame.f-e .contact label{
        width: 100%;
        font-family: 'Satoshi-Black',Arial, sans-serif !important;
        font-size: 100%;
        text-align: center;
        display: flex;
        align-items: end;
        justify-content: center;
    }
    
    .frame.f-e .contact p{
        box-sizing: border-box;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 90%;
        line-height: 150%;
        margin: 0;
        text-align: center;
    }
    .frame.f-e .contact .imagen{
        width: 20%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .frame.f-e .contact .imagen img{
        width: 100%;
        height: auto;
        /* border-radius: 5px; */
    }
    
    .frame.f-e .contact form{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--white);
        box-sizing:border-box;
        gap:20px;
    }
    
    .frame.f-e .contact form .row{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .frame.f-e .contact form .row div{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .frame.f-e .contact form .row div label{
        width: 100%;
        display: flex;
        justify-content: start;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 90%;
    }
    .frame.f-e .contact form .row div input{
        display: flex;
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 90%;
        background-color: var(--lightestgray-b);
        color: var(--black);
        transition: all 0.2s ease-out;
        box-shadow: 3px 3px 0px 0px var(--gray);
        -webkit-box-shadow: 3px 3px 0px 0px var(--gray);
        -moz-box-shadow: 3px 3px 0px 0px var(--gray);
    }
    .frame.f-e .contact form .row div input, .frame.f-e .contact form .row div input:focus{
        outline: none;
        border: none;
    }
    .frame.f-e .contact form .row div input:focus{
        background-color: var(--white);
        color: var(--black);
    }
    .frame.f-e .contact form .row div textarea{
        display: flex;
        width: 100%;
        height: 300px;
        padding: 10px;
        box-sizing: border-box;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 90%;
        background-color: var(--lightestgray-b);
        color: var(--black);
        transition: all 0.2s ease-out;
        box-shadow: 3px 3px 0px 0px var(--gray);
        -webkit-box-shadow: 3px 3px 0px 0px var(--gray);
        -moz-box-shadow: 3px 3px 0px 0px var(--gray);
        resize: none;
    }
    .frame.f-e .contact form .row div textarea, .frame.f-e .contact form .row div textarea:focus{
        outline: none;
        border: none;
    }
    .frame.f-e .contact form .row div textarea:focus{
        background-color: var(--white);
        color: var(--black);
    }
    
    .frame.f-e .contact form .row input[type="submit"]{
        display: flex;
        width: 6em;
        padding: 10px;
        box-sizing: border-box;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 90%;
        background-color: var(--lightestgray-b);
        color: var(--black);
        transition: all 0.2s ease-out;
        box-shadow: 3px 3px 0px 0px var(--gray);
        -webkit-box-shadow: 3px 3px 0px 0px var(--gray);
        -moz-box-shadow: 3px 3px 0px 0px var(--gray);
        cursor: pointer;
    }
    .frame.f-e .contact form .row input[type="submit"], .frame.f-e .contact form .row div input[type="submit"]{
        outline: none;
        border: none;
    }
    .frame.f-e .contact form .row input[type="submit"]:hover{
        background-color: var(--white);
        color: var(--black);
    }
    .frame.f-e .contact form .row input[type="submit"]:focus{
        background-color: var(--lightgray);
        color: var(--black);
        box-shadow: 3px 3px 0px 0px var(--darkgray);
        -webkit-box-shadow: 3px 3px 0px 0px var(--darkgray);
        -moz-box-shadow: 3px 3px 0px 0px var(--darkgray);
    }
    
    .frame.f-e .contact form .row input[type="number"]::-webkit-inner-spin-button,
    .frame.f-e .contact form .row input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    
    .frame.f-e .contact form .row input[type="number"]{
        appearance: textfield;
    }
    
    .frame.f-e .contact form .row .error label{
        color: var(--red);   
    }
    .frame.f-e .contact form .row .error input{
        color: var(--red);
        transition: all 0.2s ease-out;
        box-shadow: 3px 3px 0px 0px var(--darkred);
        -webkit-box-shadow: 3px 3px 0px 0px var(--darkred);
        -moz-box-shadow: 3px 3px 0px 0px var(--darkred);
    }
    .frame.f-e .contact form .row .error textarea{
        color: var(--red);
        transition: all 0.2s ease-out;
        box-shadow: 3px 3px 0px 0px var(--darkred);
        -webkit-box-shadow: 3px 3px 0px 0px var(--darkred);
        -moz-box-shadow: 3px 3px 0px 0px var(--darkred);
    }
    
    .frame.f-f footer{
        width: 100%;
        max-width: 320px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 50px 30px;
        color: var(--white);
        border-top: 1px solid var(--darkgray);
    }
    .frame.f-f footer .info{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        justify-content: center;
    }
    .frame.f-f footer .info .logo{
        width: 100%;
        height: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .frame.f-f footer .info .credits{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .frame.f-f footer .info .logo img{
        height: 100%;
        width: auto;
    }
    .frame.f-f footer .info .credits label{
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Satoshi-Regular',Arial, sans-serif !important;
        font-size: 75%;
        text-align: center;
    }
    

}