/*FONTS:                
font-family: 'Michroma', sans-serif; --> TITULO PRINCIPAL header <--
font-family: 'Montserrat', sans-serif; --> CONTENIDO INICIO <--
font-family: 'Biryani', sans-serif;  --> CONTENIDO <--
font-family: 'Righteous', cursive; --> CONTENIDO SOBRE MI <--
*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Biryani', sans-serif; 
    ;
}

html{
    scroll-behavior:smooth;
}

/*MENU PRINCIPAL*/
.conteiner-header{
    background: rgba(30,35,38,.8);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index:99;
}

.conteiner-header header{
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content:space-between;
    align-items: center;
    padding: 15px 20px;

}

.conteiner-header .logo a{
    font-family: 'Michroma', sans-serif;
    font-size: 2.1em;
    font-weight: bold;
    color: aquamarine;
    text-decoration: none;
}

.conteiner-header header ul{
    display: flex;
    list-style: none;
}

.conteiner-header header nav ul li a{
    font-family: 'Michroma', sans-serif;
    text-align: none;
    color: #ffffff;
    margin: 0 15px;
    padding: 3px;
    transition: .5s;
    text-decoration: none;
    font-size: 1em;
}

.conteiner-header header nav ul li a:hover{
    color: aqua;
}
.nav-responsive{
    font-size: 2em;
    color: #fff;
    padding:5px 10px;
    border-radius: 5px;
    cursor: pointer;
    display: none;

}

/* SECCION INICIO */
.inicio{
    background: linear-gradient(to top
    ,rgba(30,35,38,.8), rgba(30,35,38,1)),
    url(../IMG/fondo.jpg);
    background-size: cover;
    height: 100vh;
    color:#ecd7d7;
    display: flex;
    align-items: center;
}

.inicio .contenedor-banner{
    height:78vh;
    padding: 20px;
    background-color:rgba(30,35,38,1);
    max-width: 350px;
    margin: auto;
    text-align: center;
    border-radius: 40px;
}

.inicio .contenedor-banner img{
    margin-top: 40px;
    border-radius: 200%;
    border: 8px solid rgba(2, 250, 250, 0.938);
    display: block;
    width: 80%;
    margin: auto;
}

.inicio .contenedor-banner h1{
    font-family: 'Montserrat', sans-serif;
    margin-top: 15%;
    font-size:1.5em;
    
}

.inicio .contenedor-banner h2{
    font-size: 1em;
    margin-top: 1%;
    font-weight: normal;
}

.inicio .contenedor-banner .redes a{
    color: #fff;
    display: inline-block;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 100%;
    width: 42px;
    height: 40px;
    line-height: 42px;
    margin: 40px 5px;
    font-size: 20px;
    transition: .3s;
}

.inicio .contenedor-banner .redes a:hover{
    background-color: rgba(2, 250, 250, 0.705);
}

/* SECCION SOBRE MI */

.sobremi{
    background-color: #1e2326;
    color: #fff;
    padding: 50px 20px;
}

.sobremi .contenido-seccion{
    max-width: 1100px;
    margin: auto;
}

.sobremi h2{
    font-size:4em;
    font-family: 'Righteous', cursive;
    text-align: center;
    padding:20px 0;
}

.sobremi p{
    font: 18px;
    line-height: 22px;
    margin-bottom: 20px;
}

.sobremi p span{
    color: rgb(0, 184, 184);
    font-weight: bold;  
}

.sobremi .fila{
    display: flex;
}

.sobremi .fila .col{
    width:50%;

}

.sobremi .fila .col h3{
    font-size:2.5em;
    font-family: 'Righteous', cursive;
    margin: 25px 15px;
}

.sobremi .fila .col ul{
    list-style:none;

}

.sobremi .fila .col ul li{
    margin: 15px 20px;
}

.sobremi .fila .col ul li strong{
    display: inline-block;
    color: rgb(0, 184, 184);
    width: 130px;
}

.sobremi .fila .col ul li span{
    font-size: 1.1em;
    background-color: rgb(0, 184, 184);
    padding: 5px;
    font-weight: bold;
    border-radius: 5px;
}

/* SOBRE MI - INTERESES*/

.sobremi .fila .col .contenedor-intereses{
    display: flex;
    flex-wrap:wrap;
    flex-direction:row;
    margin: 0 50x;

}

.sobremi .fila .col .contenedor-intereses .interes{
    width: 120px;
    height: 120px;
    background-color: #262a2c;
    border-radius: 10px;
    margin:10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.sobremi .fila .col .contenedor-intereses .interes:hover{
    background-color:#14b494;
}

.sobremi .fila .col .contenedor-intereses .interes i{
    font-size: 30px;
    margin-bottom: 10px;
}

.sobremi button{
    cursor: pointer;
    background-color: transparent;
    border: 2px solid #fff;
    width: fit-content;
    display: block;
    margin:45px auto;
    padding: 10px 22px;
    font-size:16px;
    color: #fff;
    position: relative;
    z-index: 10;
}

.sobremi button .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height:100%;
    background-color:rgb(0, 184, 184);
    z-index: -1;
    transition: 1s;
}

.sobremi button:hover .overlay{
    width: 100%;
}

/*SECCION S K I L L */
.skills{
    background-color: #252A2E;
    color: #fff;
    padding: 50px 20px;
}

.skills .contenido-seccion{
    max-width: 1100px;
    margin: auto;
}

.skills h2{
    font-size:4em;
    font-family: 'Righteous', cursive;
    text-align: center;
    padding:20px 0;
    margin:40px;
}

.skills .fila{
    display: flex;
}

.skills .fila .col{
    width: 50%;
    padding: 0 20px;
}

.skills .fila .col h3{
    font-size:2.5em;
    font-family: 'Righteous', cursive;
    margin:30px;
}

.skills .skill > span{
    font-weight: bold;
    display: block;
    margin-bottom: 20px;
}

.skills .skill .barra-skill{
    height: 8px;
    width: 80%;
    background-color: #131517;
    position: relative;
    margin-bottom: 30px;
}

.skills .skill .progreso{
    background-color:#14b494;
    position: absolute;
    top: 0;
    left: 0;
    height: 8px;
}

.skills .skill .barra-skill span{
    position: absolute;
    height: 40px;
    width: 40px;
    background-color:#14b494;
    border-radius: 50px;
    line-height: 40px;
    text-align: center;
    top: -17px;
    right: -15px;
    font-size: 14px;
}


/*Estas clases se agregaran dinamicamente*/
/*TECHNICALS SKILLS*/

/*JAVASCRIPT*/
.skills .skill .javascript{
    width: 0%;
    animation: 2s javascript forwards;

}

@keyframes javascript{
    0%{ width:0%; }
    100% {width:60%;}
}

/*HTML-CSS*/
.skills .skill .htmlcss{
    width: 0%;
    animation: 2s htmlcss forwards;

}

@keyframes htmlcss{
    0%{ width:0%; }
    100% {width:70%;}
}

/*PHOTOSHOP*/
.skills .skill .photoshop{
    width: 0%;
    animation: 2s photoshop forwards;

}

@keyframes photoshop{
    0%{ width:0%; }
    100% {width:80%;}
}

/*WORDPRESS*/
.skills .skill .wordpress{
    width: 0%;
    animation: 2s wordpress forwards;

}

@keyframes wordpress{
    0%{ width:0%; }
    100% {width:75%;}
}

/*DUPRA*/
.skills .skill .drupal{
    width: 0%;
    animation: 2s drupal forwards;

}

@keyframes drupal{
    0%{ width:0%; }
    100% {width:60%;}
}



/*PROFESIONAL SKILLS*/
/*COMUNICACION*/

.skills .skill .comunicacion{
    width: 0%;
    animation: 2s comunicacion forwards;

}

@keyframes comunicacion{
    0%{ width:0%; }
    100% {width:80%;}
}

/*TRABAJO EN EQUIPO*/
.skills .skill .equipo{
    width: 0%;
    animation: 2s equipo forwards;

}

@keyframes equipo{
    0%{ width:0%; }
    100% {width:93%;}
}

/*CREATIVIDAD*/
.skills .skill .creatividad{
    width: 0%;
    animation: 2s creatividad forwards;

}

@keyframes creatividad{
    0%{ width:0%; }
    100% {width:93%;}
}

/*DEDICACION*/
.skills .skill .dedicacion{
    width: 0%;
    animation: 2s dedicacion forwards;

}

@keyframes dedicacion{
    0%{ width:0%; }
    100% {width:95%;}
}

/*PROYECT MANAGEMENT*/
.skills .skill .management{
    width: 0%;
    animation: 2s management forwards;

}

@keyframes management{
    0%{ width:0%; }
    100% {width:90%;}
}

        /*SECCION CURRICULUM*/

.curriculum{
    background-color:#1e2326 ;
    color: #fff;
    padding: 50px 20px;
}

.curriculum .contenido-seccion{
    max-width: 1100px;
    margin: auto;
}

.curriculum h2{
    font-size:4em;
    font-family: 'Righteous', cursive;
    text-align: center;
    padding:20px 0;
    margin:40px;
}

.curriculum .fila{
    display: flex;
    justify-content: space-between;
}

.curriculim .fila .col{
    width: 49%;
    padding: 0 20px;
}

.curriculum .fila .col h3{
    font-size:2.5em;
    font-family: 'Righteous', cursive;
    margin:30px;
}

.curriculum .fila .izquierda{
    margin: 4%;
    
}
.curriculum .fila .derecha{
    margin: 4%;

}

.curriculum .fila .item{
    padding: 25px;
    margin-bottom: 30px;
    background-color: #252A2E;
    position: relative;
}

.curriculum .fila .item h4{
    font-size: 1.5em;
    margin-bottom: 10px;
}

.curriculum .fila .item .casa{
    color: #14b494;
    font-size: 1.2em;
    font-weight: bold;
    display: block;
}

.curriculum .fila .item .fecha{
    display: block;
    color: #14b494;
    margin-bottom: 10px;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

.curriculum .fila .item p{
    line-height: 24px;
}

.curriculum .fila .izq{
    border-right: 2px solid #14b494;
    margin-right: 20px;
}


.curriculum .fila .der{
    border-left: 2px solid #14b494;
    margin-right: 20px;
}

.curriculum .fila .item .conectori{
    height: 2px;
    background-color:#14b494;
    width: 47px;
    position: absolute;
    top: 50%;
    right: -47px;
    z-index: 5;
}

.curriculum .fila .item .conectori .circuloi{
    display: block;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color:#14b494;
    float: right;
    position: relative;
    bottom: 4px;
}

.curriculum .fila .item .conectord{
    height: 2px;
    background-color:#14b494;
    width: 47px;
    position: absolute;
    top: 50%;
    left: -47px;
    z-index: 5;
}

.curriculum .fila .item .conectord .circulod{
    display: block;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color:#14b494;
    float: left;
    position: relative;
    bottom: 4px;
}

/*--- SECCION PORTAFOLIO ---*/

.portafolio{
    background-color:#1e2326 ;
    color: #fff;
    padding: 50px 20px;
}

.portafolio .contenido-seccion{
    max-width: 1100px;
    margin: auto;
}

.portafolio h2{
    font-size:4em;
    font-family: 'Righteous', cursive;
    text-align: center;
    padding:20px 0;
    margin:40px;
}

.portafolio .galeria{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.portafolio .galeria .proyecto{
    position: relative;
    max-width: 340px;
    height: fit-content;
    margin: 10px;
    cursor: pointer ;
}

.portafolio .galeria .proyecto img{
    
    width: 100%;
    display: block;
}

.portafolio .galeria .proyecto .overlay{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;   
    text-align: center;
    background: linear-gradient(rgba(28, 182, 152, .8) , rgba(28,182,152,.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 1s;
    font-size: 18px;
    letter-spacing: 3px;
    opacity: 0;
}

.portafolio .galeria .proyecto .overlay h3{
    margin-bottom: 20px;
    transition: 1s;

}

.portafolio .galeria .proyecto .overlay:hover{
    opacity: 1;
}

.portafolio .galeria .proyecto .overlay:hover h3{
    margin-bottom: 0px;
}

/*-- SECCION CONTAACTO --*/
.contacto{
    background-image: url(../IMG/contact_bg.png);
    background-color: #1e2326;
    color: #fff;
    padding: 50px 0;
}

.contacto .contenido-seccion{
    max-width: 1100px;
    margin: auto;
}

.contacto h2{
    font-size: 4em;
    font-family: 'Righteous', cursive;
    text-align: center;
    padding:20px 0;
    margin:40px;
}

.contacto .fila{
    display: flex;
}

.contacto .col{
    width: 50%;
    padding: 10px;
    position: relative;
}

.contacto .col input, .contacto .col textarea{
    display: block;
    width: 100%;
    padding: 18px;
    border: none;
    margin-bottom: 20px;
    background-color: #252A2E;
    color: #fff;
    font-size: 18px;

}

.contacto button{
    cursor: pointer;
    background-color: transparent;
    border: 2px solid #fff;
    width: fit-content;
    display: block;
    margin:45px auto;
    padding: 10px 22px;
    font-size:16px;
    color: #fff;
    position: relative;
    z-index: 10;

}
.contacto button i{
    margin:5px ;
}

.contacto button .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #1CB698;
    z-index: -1;
    transition: 1s;
}

.contacto button:hover .overlay{
    width: 100%;
}

.contacto .col img{
    width: 134%;
}

.contacto .col .info{
    position: absolute;
    top: 45%;
    background-color: #252A2E;
    padding: 20px;
    min-width: 350px;
    left: 65%;
    transform: translate(-50% , -50%);
}

.contacto .col .info ul{
    list-style: none;
}

.contacto .col .info ul li{
    margin-bottom: 7%;
}

.contacto .col .info ul li i{
    color: #1CB698;
    display: inline-block;
    margin-right: 5%;
}

footer{
    background-color:#252A2E;
    color: #fff;
    padding: 50px 30px 0;
    text-align: center;
    position: relative;
    width: 100%;
}

footer .redes{
    margin-bottom:20px;
}

footer .redes a{
    color: #fff;
    display: inline-block;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    line-height: 55px;
    margin: 50px 5px;
    font-size: 30px;
    transition: .3s;
}

footer .arriba{
    display: block;
    width: 50px;
    height: 50px;
    background-color: #1CB698;
    color: #fff;
    position: absolute;
    left: 50%;
    top: -25px;
    transform:translateX(-50%);
    border-radius: 50%;
    line-height: 50px;
    font-size: 20px;

}

/*SECCION RESPONSIVE*/