@font-face {
    font-family: 'arcon';
    src: url('fonts/arcon-regular-webfont.woff2') format('woff2'),
         url('fonts/arcon-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body{
    padding: 0px;
    margin: 0px;
    background-color: #151515;
}

/* HOME */
.bg {
	background: linear-gradient(-45deg, #0000C6, #000000, #0000C6, #010160);
	background-size: 400% 400%;
	animation: gradient 25s ease infinite;
	height: 100vh;
    width: 100%;
    position: relative;
    z-index: 1;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

#home{
    position: relative;
    width: 100%;
    display: inline-block;
    height: 100vh;
}

#menu{
    position: absolute;
    z-index: 20;
    top: 0px;
    left: 0px;
    width: 100%;
    text-align: center;
}

#menuLogo{
    position: fixed;
    z-index: 1;
    top: 30px;
    left: 30px;
}

.imageLogo{
    width: 38px;
    height: 42px;
}

.bottom1{
    position: absolute;
    left: 30px;
    top: 0px;
    z-index: 1;
    display: block;
}

.bottom2{
    position: absolute;
    top: 0px;
    z-index: 2;
    width: auto;
    display:inline-block;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.bottom3{
    position: absolute;
    right: 30px;
    top: 0px;
    z-index: 3;
    display: block;
}

.bottomLinks{
    font-family: 'arcon';
    color: #DADADA;
    font-size: 21;
    text-decoration: underline 0.05em rgba(218, 218, 218, 0);
    transition: text-decoration-color 300ms;
    text-underline-offset: 0.2em;
}

.bottomLinks:hover{
    text-decoration-color: rgba(218, 218, 218, 1);
}

#homeText{
    z-index: 10;
    width: 1000px;
    height: auto;
    display: inline-block; 
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

    font-family: 'arcon';
    color: #DADADA;
    font-size: 71px;
    line-height: 78px;
    text-align: center;

    /*-webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    */
    opacity: 1;
    -webkit-mask-image: linear-gradient(to left, #0000 25%, #000 75%);
    -webkit-mask-size: 500%;
    mask-image: linear-gradient(to left, #0000 25%, #000 75%);
    mask-size: 500%;
    animation-name: text-wipe;
    animation-duration: 2.2s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}

@keyframes text-wipe {
    0% {
        opacity: 1;
        -webkit-mask-position: 100%;
        mask-position: 100%;
    }
    100% {
        opacity: 1;
        -webkit-mask-position: 0%;
        mask-position: 0%;
    }
}

#homeText a{
    text-decoration: underline 0.08em;
    font-family: 'arcon';
    color: #DADADA;
    font-size: 71px;
    line-height: 78px;
    text-align: center;
}

.logoText{
    height: 72px;
    display: inline;
    float: left;
    position: relative;
    margin-right: 20px;
}

.logoTextEn{
    height: 74px;
    top:12px;
    position: relative;
    margin-right: 0px;
    padding-right: 0px;
}

.inMobile{
    display: none;
}

#designItems{
    z-index: 20;
    width: 800px;
    height: auto;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: inline-block;
    display:none;
   
}

.itemsBlocks{
    font-family: 'arcon';
    color: #DADADA;
    font-size: 53px;
    line-height: 60px;
    text-align: center;
    width: 400px;
    border: 1px solid #0000FF;
    background-color: #000;
    padding-top: 24px;
    padding-bottom: 24px;
    display: inline-block;
    display: none;
}

.pos1{
    position: relative;
    left:0px;
    transform: rotate(-4deg);
}
.pos2{
    position: relative;
    right:0px;
    transform: rotate(5deg);
    float: right;
    top:-30px;
}

.pos3{
    position: relative;
    transform: rotate(-4.8deg);
    left: 200px;
    float: left;
    top:0px;
}

.pos4{
    position: relative;
    left:0px;
    transform: rotate(15deg);
    top:-10px;
    float: left;
}

.pos5{
    position: relative;
    right:0px;
    float: right;
    transform: rotate(-11deg);
    top:-20px;
}

#devItems{
    z-index: 21;
    width: 800px;
    height: auto;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: inline-block;
    display:none;
}

.posdev1{
    position: relative;
    left:0px;
    transform: rotate(4deg);
}

.posdev2{
    position: relative;
    right:0px;
    transform: rotate(7deg);
    float: right;
    top:-40px;
}

.posdev3{
    position: relative;
    transform: rotate(-6deg);
    left: 100px;
    float: left;
    top:-40px;
}

.posdev4{
    position: relative;
    left:0px;
    transform: rotate(15deg);
    top:-20px;
    float: right;
}

.posdev5{
    position: relative;
    left:0px;
    float: left;
    transform: rotate(11deg);
    top:-40px;
}

#iconToOpenMenu{
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 3; 
}

.Lines{
    width: 25px;
}

#fotosItems{
    z-index: 21;
    width: 800px;
    height: auto;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: inline-block;
    display:none;
}

.foto{
    width: 200px;
    border: 1px solid #0000FF;
}

.posfoto1{
    position: relative;
    left:0px;
    transform: rotate(-4deg);
    top:120px;
}

.posfoto2{
    position: relative;
    left:200px;
    transform: rotate(0deg);
    float: left;
    top:-240px;
}

.posfoto3{
    position: relative;
    transform: rotate(6deg);
    right: 200px;
    float: right;
    top:-40px;
}

.posfoto4{
    position: relative;
    right:-200px;
    transform: rotate(-10deg);
    top:-140px;
    float: right;
}


/* OVER MENU */
#menuMobile{
    width: 100%;
    background: #151515;
    z-index: 500;
    position: fixed; 
    height: 100vh; 
    box-sizing: border-box;
    top:0px;
    left: 0px;
    opacity: 1; 
    display: none;
}

.closeMenu{
    position:absolute;
    width:auto;
    height:40px;
    cursor:pointer;
    top: 30px;
    right: 30px;
    z-index: 2;
}

#linksMobile{
    z-index: 1;
    position: relative;
    width: 100%;
    height: auto;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}

.closeIcon{
    width: 22px;
}

.menuLinks{

    font-family: 'Arcon';
    font-style: normal;
    font-weight: 300;
    font-size: 60px;
    line-height: 70px;
    text-align: center;
    margin-left: 40px;
    margin-right: 40px;
    color: #DADADA !important;
    text-decoration: none;
}

.menuLinks:hover{
    text-decoration: underline;
}

.menuLinksOver{
    font-family: 'Arcon';
    font-style: normal;
    font-weight: 300;
    font-size: 60px;
    line-height: 70px;
    text-align: center;
    margin-left: 40px;
    margin-right: 40px;
    color: #DADADA !important;
    text-decoration: underline;
}


#lenguages{

}

.len{
    font-family: 'arcon';
    color: #DADADA;
    font-size: 21;
    margin-left: 10px;
    text-decoration: underline 0.10em rgba(218, 218, 218, 0);
    transition: text-decoration-color 300ms;
    text-underline-offset: 0.2em;
    text-decoration: none;
}

.len:hover{
    text-decoration-color: rgba(218, 218, 218, 1);
}

/* END OVER MENU */


/* END HOME */

/* PROJECTS */
#proyectos{
    position: relative;
    width: 100%;
    height: auto;
    display: inline-block;
    background-color: #151515;
    box-sizing: border-box;
}

#menuProyectos{
    position: relative;
    background-color: #151515;
    height: 50px;
    width: 100%;
    z-index: 10;
    top:0px;
    left: 0px;
    text-align: center;
}

.projectTypeButton{
    top:14px;
    position: relative;
    font-family: 'arcon';
    color: #DADADA;
    font-size: 18px;
    padding: 2px 16px 0px 20px;
    border: 1px solid #DADADA;
    border-radius: 30px;
    text-decoration: none;
    margin-left: 10px;
    margin-right: 10px;
    transition: all .5s;
}

.projectTypeButton:hover{
    color:#151515;
    background-color: #DADADA;
}

.projectTypeButtonOver{
    top:14px;
    position: relative;
    font-family: 'arcon';
    color:#151515;
    background-color: #DADADA;
    font-size: 18px;
    padding: 2px 16px 0px 20px;
    border: 1px solid #DADADA;
    border-radius: 30px;
    text-decoration: none;
    margin-left: 10px;
    margin-right: 10px;
}

#listado{
    width: 100%;
    position: relative;
    height: auto;
    display: inline-block;
}

.project{
    width: 50%;
    height: 40vw;
    display: inline;
    float: left;
    background-color: #151515;
    cursor: pointer;
}

.projectIcon{
    width: 100%;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    height: calc(40vw - 50px);
}

.projectIconInfo{
    width: 100%;
    position: relative;
    height: 50px;
    box-sizing: border-box;
}

.projectIconName{
    font-family: 'arcon';
    color:#fff;
    font-size: 21px;
    position: absolute;
    top:0px;
    left: 40px;
    padding-top: 10px;
}

.projectIconCategories{
    font-family: 'arcon';
    color:#fff;
    font-size: 21px;
    position: absolute;
    top:0px;
    right: 40px;
    padding-top: 10px;
}

/* END PROJECT */

/* NOSOTROS */
#nosotros{
    width: 100%;
    height: auto;
    display: inline-block;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.tittle{
    text-decoration: underline;
    color:#DADADA;
    font-size: 60px;
    font-family: 'arcon';
    padding-top: 30px;
    font-weight: 200;
}

.subtittle{
    text-decoration: underline;
    color:#DADADA;
    font-size: 60px;
    font-family: 'arcon';
    padding-top: 30px;
    font-weight: 200;
}

.generalText{
    text-decoration: none;
    color:#DADADA;
    font-size: 45px;
    line-height: 48px;
    font-family: 'arcon';
    width: 90vw;
    position: relative;
    display:inline-block;
    box-sizing: border-box;
}

.process{
    width: 90vw;
    position: relative;
    display: inline-block;
}

.processDiv1{
    width: 30%;
    display: inline-block;
    float: left;
    text-align: left;
    position: relative;
}

.processDiv2{
    width: 30%;
    display: inline-block;
    float: left;
    text-align: left;
    position: relative;
}

.processDiv3{
    width: 30%;
    display: inline-block;
    float: left;
    text-align: left;
    position: relative;
}

.processDivEnd{
    width: 10%;
    display: inline-block;
    float: left;
    text-align: left;
    position: relative;
}

.number{
    text-decoration: none;
    color:#DADADA;
    font-size: 48px;
    font-family: 'arcon';
}

.numerals{
    text-decoration: none;
    color:#DADADA;
    font-size: 24px;
    font-family: 'arcon';
}

.reconocimientos{
    text-decoration: none;
    color:#DADADA;
    font-size: 45px;
    font-family: 'arcon';
    width: 90vw;
    position: relative;
    display:inline-block;
    box-sizing: border-box;
}

.column1{
    width: 50%;
    display: inline;
    float: left;
    text-align: center;
    padding-bottom: 30px;
    font-size: 24px;
    font-family: 'arcon';
    text-decoration: none;
}

.column2{
    width: 50%;
    display: inline;
    float: left;
    text-align: center;
    padding-bottom: 30px;
    font-size: 24px;
    font-family: 'arcon';
    text-decoration: none;
}

.processLine{
    width: calc(100% - 68px);
    height: 1px;
    color:#DADADA;
    position: absolute;
    padding-left: 5px;
    padding-right: 5px;
    top:20px;
    left: 34px;
}

.line2{

}

/* END NOSOTROS */

/* CONTACTO */
#contacto{
    width: 100%;
    height: auto;
    display: inline-block;
    text-align: center;
    padding-top: 0px;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.normalText{
    text-decoration: none;
    color:#DADADA;
    font-size: 24px;
    font-family: 'arcon';
    width: 90vw;
    position: relative;
    display:inline-block;
    box-sizing: border-box;
}

.button{
    color: #DADADA;
    font-size: 22px;
    font-family: 'arcon';
    border: 2px solid #DADADA;
    padding: 5px 40px 5px 40px;
    text-decoration: none;
    border-radius: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.contactData{
    color: #DADADA;
    font-size: 45px;
    font-family: 'arcon';
}
.contactData2{
    color: #DADADA;
    font-size: 24px;
    font-family: 'arcon';
}

.contactData3{
    color: #DADADA;
    font-size: 21px;
    font-family: 'arcon';
}

.socialIcon{
    width: 36px;
    margin-left: 10px;
    margin-right: 10px;
}

/* END CONTACTO */

#bottom{
    position: relative;
    height: auto;
    display: block;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 40px;
    box-sizing: border-box;
    text-decoration: none;
    color:#DADADA;
    font-size: 24px;
    font-family: 'arcon';
    width: 100%;
}

#upIcon{
    width: 25px;
    height: 25px;
    position: fixed;
    bottom:30px;
    left: 30px;
    z-index: 20;
   transition: all .6s ease-out;
    opacity: 0;
}

.upIcon{
    width: 25px;
    height: 25px;
}

/* PROJECT */
#closeProjectIcon{
    position: fixed;
    z-index: 10;
    top: 30px;
    left: 30px;
    cursor: pointer;
}

.closeIcon{
    width: 26px;
    height: 26px;
}

#plusProjectIcon{
    width: 25px;
    height: 25px;
    left:calc(50% - 12.5px);
    top:30px;
    position: relative;
    z-index: 9;
}

.plusIcon{
    width: 25px;
    height: 25px;
}

#projectContent{
    width: 100%;
    height: auto;
    display: inline-block;
    position: relative;
    text-align: center;
    display: none;
    box-sizing: border-box;
    padding-left: 30px;
    padding-right: 30px;
}

.concentCenter{
    font-family: 'arcon';
    color:#fff;
    font-size: 18px;
    width: 800px;
    position: relative;
    display: inline-block;
}

.concentCenter a{
    font-family: 'arcon';
    color:#fff;
    font-size: 18px;
    text-decoration: underline;
}



#projectImagesContent{
    width: 100%;
    height: auto;
    display: inline-block;
    position: relative;
}

.projectImage{
    width: 50%;
    height: 40vw;
    display: inline;
    float: left;
    background-color: #151515;
    cursor: pointer;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

#projectTopContent{
    height: 80px;
    width: 100%;
    position: relative;
}

#projectName{
    z-index: 1;
    width: 50%;
    position: absolute;
    height: 80px;
    top: 0px;
    left: 0px;
    text-align: center;
    box-sizing: border-box;
    padding-top: 26px;
}

#projectCategories{
    z-index: 2;
    width: 50%;
    position: absolute;
    height: 80px;
    top: 0px;
    left: 50%;
    text-align: center;
    box-sizing: border-box;
    padding-top: 26px;
}

.projectName{
    font-family: 'arcon';
    color:#fff;
    font-size: 21px;
}

.projectCategories{
    font-family: 'arcon';
    color:#fff;
    font-size: 21px;
}

#projectNameCategories{
    display: none;
}

#moreProjects{
    width: 100%;
    position: relative;
    height: 50px;
}

#anterior{
    width: 50%;
    position: absolute;
    top:7px;
    left: 30px; 
    padding-left: 30px;
    box-sizing: border-box;
    display: inline-block;
    text-align: left;

    background-image: url('../images/leftArrow.png');
    background-repeat: no-repeat;
    background-position: left 8px;
    background-size: 20px 16px;

    font-family: 'arcon';
    color:#fff;
    font-size: 21px;
    cursor: pointer;
}

#siguiente{
    width: 50%;
    position: absolute;
    top:7px;
    right: 30px;
    padding-right: 30px;
    box-sizing: border-box;
    display: inline-block;
    text-align: right;

    background-image: url('../images/rightArrow.png');
    background-repeat: no-repeat;
    background-position: right 8px;
    background-size: 20px 16px;

    font-family: 'arcon';
    color:#fff;
    font-size: 21px;
    cursor: pointer;
}

/* END PROJECT*/

/* LOW RESOLUTIONS/MOBILE */
@media screen and (max-width: 920px) {

    .projectTypeButton{
        top:15px;
        font-size: 13px;
        padding: 1px 16px 0px 16px;
        border-radius: 30px;
        margin-left: 8px;
        margin-right: 8px;
    }  
    
    .projectTypeButtonOver{
        top:15px;
        font-size: 13px;
        padding: 1px 16px 0px 16px;
        border-radius: 30px;
        margin-left: 8px;
        margin-right: 8px;
    }

    .projectIconName{
        font-size: 14px;
        top:4px;
        left: 20px;
    }
    
    .projectIconCategories{
        font-size: 14px;
        top:4px;
        right: 20px; 
    }

    #menuLogo{
        top: 20px;
        left: 20px;
    }

    #iconToOpenMenu{
        top: 22px;
        right: 20px;
    }

    .closeMenu{
        top: 20px;
        right: 20px;
    }

    .imageLogo{
        width: 30px;
        height: auto;
    }

    .len{
        font-size: 18;
    }
    
    .bottomLinks{
        font-size: 18;
    }

    #homeText{
        width: 80%;
        font-size: 30px;
        line-height: 35px;
        text-align: center;
    }

    #homeText a{
        font-size: 30px;
        line-height: 35px;
    }
    
    .logoText{
        height: 30px;
        margin-right: 0px;
        float:none;
    }

    .logoTextEn{
        height: 30px;
        margin-right: 0px;
        float:none;
        top:7px;
    }


    .inMobile{
        display: initial;
    }

    #designItems{
        width: 300px;  
        text-align: center;
    }
    
    .itemsBlocks{
        font-size: 43px;
        line-height: 45px;
        width: 300px;
        padding-top: 20px;
        padding-bottom: 20px; 
    }
    
    .pos1{
        position: relative;
        left:auto;
        float: none;
        transform: rotate(-4deg);
    }
    .pos2{
        position: relative;
        right:auto;
        transform: rotate(5deg);
        float: none;
        top:0px;
    }
    
    .pos3{
        position: relative;
        transform: rotate(-4.8deg);
        left: auto;
        float: none;
        top:-5px;
    }
    
    .pos4{
        position: relative;
        left:auto;
        transform: rotate(15deg);
        top:-10px;
        float: none;
    }
    
    .pos5{
        position: relative;
        right:auto;
        float: none;
        transform: rotate(-11deg);
        top:5px;
    }

    #devItems{
        width: 300px;  
        text-align: center;
    }
    
    .posdev1{
        position: relative;
        left:auto;
        transform: rotate(4deg);
        top:-10px;
       
    }
    .posdev2{
        position: relative;
        right:auto;
        transform: rotate(-7deg);
        float:none;
        top:40px;
    }
    
    .posdev3{
        position: relative;
        transform: rotate(4.8deg);
        left: auto;
        float: none;
        top:-20px;
    }
    
    .posdev4{
        position: relative;
        right:auto;
        transform: rotate(-12deg);
        top:-20px;
        float: none;
    }
    
    .posdev5{
        position: relative;
        left:auto;
        float: none;
        transform: rotate(11deg);
        top:-5px;
    }

    #fotosItems{
        width: 200px;  
        text-align: center;
    }

    .posfoto1{
        position: relative;
        left:auto;
        float: none;
        top:0px;
    }

    .posfoto2{
        position: absolute;
        left:auto;
        float: none;
        top:0px;
    }

    .posfoto3{
        position: absolute;
        right:auto;
        float: none;
        top:0px;
    }

    .posfoto4{
        position: absolute;
        right:auto;
        float: none;
        top:0px;
    }

    .menuLinks{
        font-size: 30px;
        line-height: 35px;
        text-align: center;
        margin-left: 0px;
        margin-right: 0px;
        display: block;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .menuLinksOver{
        font-size: 30px;
        line-height: 35px;
        text-align: center;
        margin-left: 0px;
        margin-right: 0px;
        display: block;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .project{
        width: 100%;
        height: 80vw;
    }

    .projectIcon{
       height: calc(80vw - 50px);
       
    }

    .tittle{
        font-size: 26px;
    }
    
    .generalText{
        font-size: 18px;
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
        line-height: 22px;
    }
    
    .subtittle{
        font-size: 26px;
    }

    .processDiv1{
        width: 70%;
        padding-bottom: 30px;
    }

    .processDiv2{
        width: 30%;
        padding-bottom: 30px;
    }

    .processDiv3{
        width: 70%;
    }
    
    .processDivEnd{
        width: 30%;
    }
    
    .number{
        font-size: 36px;
    }
    
    .numerals{
        font-size: 14px;
    }

    .reconocimientos{
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }

    .column1{
        width: 100%;
        font-size: 14px;
    }
    
    .column2{
        width: 100%;
        font-size: 14px;
    }

    .normalText{
        font-size: 18px;
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }

    .contactData{
        font-size: 27px;
    }
    .contactData2{
        font-size: 18px;
    }
    
    .contactData3{
        font-size: 18px;
    }
    
    .socialIcon{
        width: 25px;
        margin-left: 7px;
        margin-right: 7px;
    }

    #bottom{
       font-size: 10px;
    }

    #upIcon{
        bottom:20px;
        left: 20px;
    }

    .line2{
        display: none;
    }

    .projectImage{
        width: 100%;
        height: 80vw;
    }

    .projectName{
        display: none;
        font-size: 14px;
    }
    
    .projectCategories{
        display: none;
        font-size: 14px; 
    }

    #projectNameCategories{
        display: inherit;
    }

    .projectNameOnly{
        font-size: 16px; 
        font-family: 'arcon';
        color:#fff;
        margin: 0px;
        padding: 0px;
        line-height: 20px;
        font-weight: 100;
    }

    .projectCategoriesOnly{
        font-size: 16px; 
        font-family: 'arcon';
        color:#fff;
        margin: 0px;
        padding: 0px;
        margin-bottom: 10px;
        font-weight: 100;
    }

    #closeProjectIcon{
        top: 20px;
        left: 20px;
    }
    
    #plusProjectIcon{
        top:20px;
    }

    #projectTopContent{
        height: 64px;
    }

    .button{
        font-size: 18px;
        padding: 4px 38px 4px 38px;
        border-radius: 30px;
        margin-top: 20px;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }

    #projectContent{
        width: 100%;
        font-size: 14px;
        box-sizing: border-box;
        padding-left: 20px;
        padding-right: 20px;
    }

    .concentCenter{
       width: 100%;
       font-size: 14px;
    }

    .concentCenter a{
        font-size: 14px;
    }

    #anterior{
        font-size: 14px;
        left: 20px;
        padding-left: 20px;
        background-position: left 4px;
        background-size: 16px 12px;
    }
    
    #siguiente{
        font-size: 14px;
        right: 20px;
        padding-right: 20px;
        background-position: right 4px;
        background-size: 16px 12px;
    }
    

}