@import "default.css";
@import "anim.css";
body{
    background-color: #FFFFFF;
}
.header-select{
    z-index: 5;
    position: fixed;
    right: 0;
    display: block;
}
.header-select .two-buttons{
    padding: 15px;
    display: flex;
}
.header-select .two-buttons .langs-contain{
    position: relative;
    display: inline-block;
    margin-right: 20px;
}
.header-select .two-buttons .langs-contain>.language{
    background-color: #111111;
    padding: 5px 10px;
    cursor: pointer;
    transition: all ease .3s;
    border-radius: 10px;
    display: block;
    border: 1px solid #CCCCCC;
}
.header-select .two-buttons .langs-contain>.language span{
    color: #FFFFFF;
}
.header-select .two-buttons .langs-contain .list-lang{
    background-color: #FFFFFF;
    border-radius: 10px;
    margin-top: 10px;
    display: none;
}
.header-select .two-buttons .langs-contain .list-lang .language{
    background-color: #FFFFFF;
    padding: 5px 10px;
    cursor: pointer;
    transition: all ease .3s;
    border-radius: 10px;
    display: block;
}
.header-select .two-buttons .langs-contain .list-lang .language span{
    color: #333333;    
}
.header-select .two-buttons .langs-contain .list-lang .language:hover{
    background-color: #333333;
    transition: all ease .3s;
}
.header-select .two-buttons .langs-contain .list-lang .language:hover span{
    color: #FFFFFF;
}
/**/
body>.profile{
    position: relative;
    display: inline-block;
    padding-top: 75px;
    width: 100%;
    background-color: #111111;
    z-index: 2;
}
body>.profile>.photo{
    position: relative;
    float: left;
    width: 40%;
    padding: 50px 0 50px 10%;
    z-index: 1;
}
body>.profile>.photo img{
    position: relative;
    display: flex;
    width: 100%;
    z-index: 1;
}
body>.profile>.info-title-profile{
    position: relative;
    float: left;
    width: 60%;
    padding: 50px 20% 50px 20px;
    z-index: 1;
}
body>.profile>.info-title-profile .title{
    width: 100%;
}
body>.profile>.info-title-profile .title h3{
    opacity: 0;
    font-size: 40pt;
}
body>.profile>.info-title-profile .profile{
    width: 100%;
}
body>.profile>.info-title-profile .profile p{
    color: #EDEDED;
    opacity: 0;
    font-size: 11pt;
}
body>.profile>.info-title-profile .age{
    width: 100%;
}
body>.profile>.info-title-profile .age span{
    color: #EDEDED;
    opacity: 0;
    font-size: 12pt;
}
body>.profile>.info-title-profile .skills{
    width: 100%;
    overflow-x: hidden;
    white-space: nowrap;
}
body>.profile>.info-title-profile .skills ul{
    display: flex;
}
body>.profile>.info-title-profile .skills ul li{
    opacity: 0;
    padding: 5px;
    align-items: center;
    position: relative;
    display: inline-block;
    margin-right: 10px;
}
body>.profile>.info-title-profile .skills ul li.animate-in {
    animation: enterAnimation 1s ease forwards;
}
body>.profile>.info-title-profile .skills ul li img{
    max-height: 2em;
}
body>.profile>.info-title-profile .skills ul li span{
    color: #EDEDED;
    font-weight: 300;
    max-height: 2em;
}
body>.profile .anim-contain{
    width: 100%;
    height: 100%;
    top: 0px;
    position: absolute;
    display: flex;
    z-index: 0;
    overflow: hidden;
}
body>.profile .anim-contain .square-anim{
    background-color: #00000000;
    position: absolute;
    border: 1px solid;
    opacity: 0;
    animation: expandFade 5s ease-out forwards;
    outline: 1px solid;
    outline-offset: -1px;
}
body>.profile .anim-contain .circle-anim{
    background-color: #00000000;
    border-radius: 100%;
    position: absolute;
    border: 1px solid;
    opacity: 0;
    animation: circleFade 5s ease-out forwards;
    outline: 1px solid;
    outline-offset: -1px;
}
body>.profile .anim-contain .line-anim{
    background-color: #00000000;
    border-radius: 100%;
    position: absolute;
    border: 1px solid;
    opacity: 0;
    animation: expandFade 5s ease-out forwards;
    outline: 1px solid;
    outline-offset: -1px;
}
/**/
body>div.hidden-on-load {
    opacity: 0;
    transform: translateY(-50px);
}
body>div.animated-on-scroll {
    animation: slideFadeDown 2s ease forwards;
}
/**/
body>.projects{
    padding: 50px;
    position: relative;
    display: block;
    width: 100%;
    background-color: #FFFFFF;
    min-height: 100%;
}
body>.projects>h3{
    display: none;
    width: 100%;
    text-align: center;
    font-size: 25pt;
    color: #333333;
}
body>.projects .projects-container{
    width: 95%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 30px;
}
body>.projects .projects-container .project-container{
    display: grid;
    opacity: 0;
    width: 100%;
    padding: 5%;
    border-radius: 20px;
    box-shadow: 0 10px 10px #BBBBBBBB;
    animation-fill-mode: forwards;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}
body>.projects .projects-container .project-container.expanded{
    z-index: 20;
    height: auto; 
}
body>.projects .projects-container .project-container>div{
    max-height: 250px;
    overflow: scroll;
    width: 100%;
}
body>.projects .projects-container .project-container .title-project h4{
    text-align: center;
    color: #555555;
    font-size: 1.5rem;
}
body>.projects .projects-container .project-container .description-project p{
    color: #999999;
    font-size: 1rem;
}
body>.projects .projects-container .project-container .project-details{
    display: block;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, height 0.3s ease;
}
body>.projects .projects-container .project-container.expanded .project-details{
    overflow: scroll;
    opacity: 1;
    height: auto;
}
body>.projects .projects-container .project-container .project-details .demo-project a{
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
    color: #2255cc;
    font-size: 1rem;
    text-decoration: underline;
}
body>.projects .projects-container .project-container .project-details .functions-project ul{
    margin: 10px 0;
}
body>.projects .projects-container .project-container .project-details .functions-project ul li{
    color: #999999;
}
body>.projects .projects-container .project-container .skills-project{
    width: 100%;
    overflow-x: hidden;
    white-space: nowrap;
}
body>.projects .projects-container .project-container .skills-project ul{
    display: flex;
}
body>.projects .projects-container .project-container .skills-project ul li{
    padding: 5px;
    align-items: center;
    position: relative;
    display: inline-block;
    margin-right: 10px;
}
body>.projects .projects-container .project-container .skills-project ul li img{
    max-height: 2em;
}
body>.projects .projects-container .project-container .skills-project ul li span{
    color: #333333;
    font-weight: 300;
    max-height: 2em;
}
/**/
body>.experiences{
    padding: 50px;
    position: relative;
    display: block;
    width: 100%;
    background-color: #FFFFFF;
    min-height: 100%;
}
body>.experiences>h3{
    display: none;
    width: 100%;
    text-align: center;
    font-size: 25pt;
    color: #333333;
}
body>.experiences .experiences-container{
    width: 95%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 30px;
}
body>.experiences .experiences-container .experience-container{
    display: grid;
    opacity: 0;
    width: 100%;
    padding: 5%;
    border-radius: 20px;
    box-shadow: 0 10px 10px #BBBBBBBB;
    animation-fill-mode: forwards;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}
body>.experiences .experiences-container .experience-container.expanded{
    z-index: 20;
    height: auto; 
}
body>.experiences .experiences-container .experience-container>div{
    max-height: 250px;
    overflow: scroll;
    width: 100%;
}
body>.experiences .experiences-container .experience-container .title-experience h4,
body>.experiences .experiences-container .experience-container .title-experience a{
    display: block;
    text-align: center;
    color: #555555;
    font-size: 1.5rem;
}
body>.experiences .experiences-container .experience-container .range-experience{
    display: flex;
}
body>.experiences .experiences-container .experience-container .range-experience .img{
    display: grid;
    flex: 1;
    height: 100%;
    padding: 10px;
    justify-content: center;
    align-items: center;
}
body>.experiences .experiences-container .experience-container .range-experience img{
    width: 100%;
}
body>.experiences .experiences-container .experience-container .range-experience .detail{
    display: grid;
    flex: 4;
    grid-template-columns: repeat(1,1fr);
    height: 100%;
    padding: 10px;
}
body>.experiences .experiences-container .experience-container .range-experience span.care{
    width: 100%;
    color: #777777;
    font-size: 1.2rem;
}
body>.experiences .experiences-container .experience-container .range-experience span{
    width: 100%;
    color: #999999;
    font-size: 0.9rem;
}
body>.experiences .experiences-container .experience-container .experience-details{
    display: block;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, height 0.3s ease;
}
body>.experiences .experiences-container .experience-container.expanded .experience-details {
    overflow: scroll;
    opacity: 1;
    height: auto;
}
body>.experiences .experiences-container .experience-container .experience-details .functions-experience ul{
    margin: 10px 0;
}
body>.experiences .experiences-container .experience-container .experience-details .functions-experience ul li{
    color: #999999;
}
body>.experiences .experiences-container .experience-container .skills-experience{
    width: 100%;
    overflow-x: hidden;
    white-space: nowrap;
}
body>.experiences .experiences-container .experience-container .skills-experience ul{
    display: flex;
}
body>.experiences .experiences-container .experience-container .skills-experience ul li{
    padding: 5px;
    align-items: center;
    position: relative;
    display: inline-block;
    margin-right: 10px;
}
body>.experiences .experiences-container .experience-container .skills-experience ul li img{
    max-height: 2em;
}
body>.experiences .experiences-container .experience-container .skills-experience ul li span{
    color: #333333;
    font-weight: 300;
    max-height: 2em;
}
/**/
.btn-see-more,.btn-see-more-e,.btn-see-projects{
    margin-top: 15px;
    opacity: 0.7;
}
/**/
body>.experience-projects {
    overflow: hidden;
    height: 0;
    transition: height 0.3s ease;
}

body>.experience-projects.expanded {
    height: auto;
}
/**/
body>.experience-projects{
    position: relative;
    display: block;
    width: 100%;
    background-color: #333333;
    min-height: 100%;
}
body>.experience-projects .projects-container{
    width: 85%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 30px;
}
body>.experience-projects .projects-container .project-container{
    display: grid;
    width: 100%;
    padding: 5%;
    border-radius: 20px;
    box-shadow: 0 10px 10px #44444444;
    animation-fill-mode: forwards;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}
body>.experience-projects .projects-container .project-container.expanded{
    z-index: 20;
    height: auto; 
}
body>.experience-projects .projects-container .project-container>div{
    max-height: 250px;
    overflow: scroll;
    width: 100%;
}
body>.experience-projects .projects-container .project-container .title-project h4{
    text-align: center;
    color: #CCCCCC;
    font-size: 1.5rem;
}
body>.experience-projects .projects-container .project-container .description-project p{
    color: #888888;
    font-size: 1rem;
}
body>.experience-projects .projects-container .project-container .project-details{
    display: block;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, height 0.3s ease;
}
body>.experience-projects .projects-container .project-container.expanded .project-details{
    opacity: 1;
    height: auto;
}
body>.experience-projects .projects-container .project-container .project-details .demo-project a{
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
    color: #2255CC;
    font-size: 1rem;
    text-decoration: underline;
}
body>.experience-projects .projects-container .project-container .project-details .functions-project ul{
    margin: 10px 0;
}
body>.experience-projects .projects-container .project-container .project-details .functions-project ul li{
    color: #888888;
}
body>.experience-projects .projects-container .project-container .skills-project{
    width: 100%;
    overflow-x: hidden;
    white-space: nowrap;
}
body>.experience-projects .projects-container .project-container .skills-project ul{
    display: flex;
}
body>.experience-projects .projects-container .project-container .skills-project ul li{
    padding: 5px;
    align-items: center;
    position: relative;
    display: inline-block;
    margin-right: 10px;
}
body>.experience-projects .projects-container .project-container .skills-project ul li img{
    max-height: 2em;
}
body>.experience-projects .projects-container .project-container .skills-project ul li span{
    color: #AAAAAA;
    font-weight: 300;
    max-height: 2em;
}
/**/
body>.degrees{
    padding: 50px;
    position: relative;
    display: block;
    width: 100%;
    background-color: #FFFFFF;
    min-height: 100%;
}
body>.degrees>h3{
    display: none;
    width: 100%;
    text-align: center;
    font-size: 25pt;
    color: #333333;
}
body>.degrees .degrees-container{
    width: 95%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 30px;
}
body>.degrees .degrees-container .degree-container{
    display: grid;
    opacity: 0;
    width: 100%;
    padding: 5%;
    border-radius: 20px;
    box-shadow: 0 10px 10px #BBBBBBBB;
    animation-fill-mode: forwards;
}
body>.degrees .degrees-container .degree-container>div{
    max-height: 250px;
    overflow: scroll;
    width: 100%;
}
body>.degrees .degrees-container .degree-container .title-degree h4,
body>.degrees .degrees-container .degree-container .title-degree a{
    display: block;
    text-align: center;
    color: #555555;
    font-size: 1.5rem;
}
body>.degrees .degrees-container .degree-container .range-degree{
    display: flex;
}
body>.degrees .degrees-container .degree-container .range-degree .img{
    display: grid;
    flex: 1;
    height: 100%;
    padding: 10px;
    justify-content: center;
    align-items: center;
}
body>.degrees .degrees-container .degree-container .range-degree img{
    width: 100%;
}
body>.degrees .degrees-container .degree-container .range-degree .detail{
    display: grid;
    flex: 4;
    grid-template-columns: repeat(1,1fr);
    height: 100%;
    padding: 10px;
}
body>.degrees .degrees-container .degree-container .range-degree span.name{
    width: 100%;
    color: #777777;
    font-size: 1.2rem;
}
body>.degrees .degrees-container .degree-container .range-degree span{
    width: 100%;
    color: #999999;
    font-size: 0.9rem;
}
/**/
body>.certifications{
    padding: 50px;
    position: relative;
    display: block;
    width: 100%;
    background-color: #FFFFFF;
    min-height: 100%;
}
body>.certifications>h3{
    display: none;
    width: 100%;
    text-align: center;
    font-size: 25pt;
    color: #333333;
}
body>.certifications .certifications-container{
    width: 95%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 30px;
}
body>.certifications .certifications-container .certification-container{
    display: grid;
    opacity: 0;
    width: 100%;
    padding: 5%;
    border-radius: 20px;
    box-shadow: 0 10px 10px #BBBBBBBB;
    animation-fill-mode: forwards;
}
body>.certifications .certifications-container .certification-container>div{
    max-height: 250px;
    overflow: scroll;
    width: 100%;
}
body>.certifications .certifications-container .certification-container .title-certification h4,
body>.certifications .certifications-container .certification-container .title-certification a{
    display: block;
    text-align: center;
    color: #555555;
    font-size: 1.5rem;
}
body>.certifications .certifications-container .certification-container .range-certification{
    display: flex;
}
body>.certifications .certifications-container .certification-container .range-certification .img{
    display: grid;
    flex: 1;
    height: 100%;
    padding: 10px;
    justify-content: center;
    align-items: center;
}
body>.certifications .certifications-container .certification-container .range-certification img{
    width: 100%;
}
body>.certifications .certifications-container .certification-container .range-certification .detail{
    display: grid;
    flex: 4;
    grid-template-columns: repeat(1,1fr);
    height: 100%;
    padding: 10px;
}
body>.certifications .certifications-container .certification-container .range-certification span.name{
    width: 100%;
    color: #777777;
    font-size: 1.2rem;
}
body>.certifications .certifications-container .certification-container .range-certification span{
    width: 100%;
    color: #999999;
    font-size: 0.9rem;
}
/**/
body>.contact-form{
    padding: 50px;
    position: relative;
    display: block;
    width: 100%;
    background-color: #333333;
    min-height: 100%;
}
body>.contact-form form{
    width: 80%;
    margin: auto;
}
body>.contact-form form .inputs-top,
body>.contact-form form .message{
    display: flex;
    width: 100%;
}
body>.contact-form form .inputs-top .form-group,
body>.contact-form form .message .form-group{
    flex: 1;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(1,1fr);
}
body>.contact-form form .inputs-top .form-group label,
body>.contact-form form .message .form-group label{
    color: #EDEDED;;
    font-size: 1.2em;
}
body>.contact-form form .inputs-top .form-group input,
body>.contact-form form .message .form-group textarea{
    color: #111111;
    background-color: #EEEEEE;
    padding: 4px;
    border: 1px solid #EEEEEE;
    border-radius: 10px;
    width: 100%;
}
body>.contact-form form .message .form-group textarea{
    border-radius: 10px;
    height: 200px;
}
body>.contact-form form>input{
    display: block;
    margin: auto;
}
/**/
body>footer{
    background-color: #333333;
}
body>footer .margin{
    width: 100%;
    padding: 5px;
    position: relative;
    display: block;
}
body>footer .margin p{
    color: #EDEDED;
    text-align: center;
}
body>footer .margin hr{
    color: #EDEDED;
    margin: 5px;
}
body>footer .margin a p{
    text-align: center;
    color: #4477EE;
    margin: 0;
}

@media (max-width: 960px){
    body>.projects .projects-container{
        grid-template-columns: repeat(2,1fr);
    }
    body>.experiences .experiences-container{
        grid-template-columns: repeat(2,1fr);
    }
    body>.degrees .degrees-container{
        grid-template-columns: repeat(2,1fr);
    }
    body>.certifications .certifications-container{
        grid-template-columns: repeat(2,1fr);
    }
    body>.experience-projects .projects-container{
        grid-template-columns: repeat(2,1fr);
    }
}