*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)!important;
}
.center{
    display: flex;
    justify-content: center;
    align-items: center;
}
:root{
    --color1: #ff00cc;
    --color2: #333399;
    --colorMedio: #7123A8;
    --textoClaro: #ffffff;
    --textoOscuro: #000000;
    --title: 'Arima Madurai', cursive;
}
[class^="cont"]{
    flex-direction: column;
    width: 100%;
}
body{
    width: 100%;
    height: 100vh;
    font-size: 16px;
    background: rgb(41, 41, 51);
    overflow: hidden;
}
.section.hoja{
    position: relative;

    display: flex;
    justify-content: space-between;

    width: 98%;
    max-width: 1000px;
    height: 98vh;
    padding: 10px;
    background: linear-gradient(to top,var(--color1), var(--color2));
}
/* >>>>> -->>>>> ----- descargar ----- <<<<<-- <<<<< */
.pdf {
    position: absolute;
    z-index: 90;
    width: 150px;
    background: rgba(0,0,0,0.3);
    text-align: center;
    padding: 5px 0;
    border-radius: 15px;
    right: 0;
    transition: all 0.5s linear;
}
.pdf:hover {
    background: rgba(0,0,0,0.6);
}
.pdf a{
    color: white;
    text-decoration: none;
}
/* >>>>> -->>>>> ----- aside ----- <<<<<-- <<<<< */

.aside{
    position: relative;
    z-index: 20;
    width: calc(40% - 10px);
    border-radius: 5px;
    color: var(--textoClaro);
    background: rgba(255,255,255,0.3);
    overflow-y: auto;
}
.title__aside{
    font-size: 2em;
    color: rgba(255,255,255,0.7);
    padding: 30px 30px 0 30px;
    line-height: 30px;
    font-family: var(--title);
}
.title__aside span{
    color: var(--textoClaro);
}
.subtitle__profesion{
    color: rgba(255,255,255,0.7);
    padding: 0 30px 30px 30px;
}
.about{
    position: relative;

    width: 100%;
    min-height: 100px;
    background: rgba(255,255,255,0.2);
    border: solid 3px rgba(255,255,255,0.5);
    border-radius: 5px;
    padding: 80px 30px 30px 30px;
    margin: 65px 0 50px 0;
}
.about h3{
    font-size: 1.2em;
    font-family: var(--title);
    font-weight: 700;
}
.imagen__perfil{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);

    width: 150px;
    height: 150px;
    border: solid 3px #fff;
    border-radius: 50%;
    overflow: hidden;
}
.img__perfil{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about h3{
    margin-bottom: 20px;
}  
.btn{
    width: 80%;
    margin-bottom: 30px;
}
.link__btn{
    display: block;

    text-align: left;
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.2);
    width: 100%;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.2s linear;
}
.link__btn i{
    margin-right: 15px;
}
.link__btn:hover{
    color: var(--textoClaro);
    box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}
.link__btn:active{
    box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0);
    transform: translateY(0px);
    transition: all 0.1s linear;
}
.cont__redesSociales{
    flex-direction: row;
    margin-bottom: 30px;
}
.link__redesSociales{
    color: rgba(255,255,255,0.7);
    font-size: 2em;
    margin-right: 15px;
    transition: all 0.2s linear;
}
.link__redesSociales:hover{
    color: var(--textoClaro);
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}
/* >>>>> -->>>>> ----- curriculum ----- <<<<<-- <<<<< */
.curriculum{
    position: relative;
    z-index: 10;

    width: 60%;
    padding: 30px;
    color: rgba(0, 0, 0, 0.9);
    border-radius: 5px;
    background: #fff;
    overflow-y: auto;
}
.section__curriculum{
    width: 100%;
    margin-bottom: 30px;
}
.title__section{
    position: relative;

    width: 100%;
    justify-content: flex-start!important;
    margin-bottom: 20px;
}
.title{
    color: var(--textoClaro);
    background: var(--colorMedio);
    padding: 5px 20px;
    border-radius: 50px;
    overflow: hidden;
    font-family: var(--title);
    line-height: 25px;
}
.text__min {
    font-size: 0.7em;
}
.title__section hr{
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 3px;
    border: none;
    background: var(--colorMedio);
}
.subTitulo{
    width: 100%;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 0.9em;
}
.skills > .subTitulo {
    grid-column: 1 / -1;
    text-align: center;
}
.cont__lista{
    width: calc(100% - 40px);
    margin: auto;
    padding-left: 20px;
}
.cont__lista li{
    position: relative;
    list-style: none;
    margin-bottom: 5px;
}
.cont__lista li .icon__empire {
    position: absolute;
    transform: translateX(calc(-100% - 10px));
}
/* >>>>> -->>>>> ----- skills ----- <<<<<-- <<<<< */
.skills{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.skills .title__section {
    grid-column: 1 / -1;
}
.cont__circle{
    position: relative;

    display: block;

    width: 70px;
    height: 70px;
    margin: 15px 50px 50px 50px;
    pointer-events: none;
}
.cont__circle .interior{
    position: absolute;
    z-index: 6;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 50px;
    height: 50px;
    /* margin: -40px 0 0 -40px; */
    padding: 10px;
    background: #dde6f0;
    border-radius: 100%;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
    background-size: contain;
}
.interior .img__icon{
    width: 100%;
    height: 100%;
    object-fit: contain;
    overflow: hidden;
    border-radius: 100%;
    opacity: 0.5;
}
.cont__circle .num{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 50;

    color: #999;
    font-size: 1.5em;
    animation: num 8s linear both;
}
@keyframes num{
    100%{
        color: var(--colorMedio);
    }
}
.cont__circle .num span{
    font-size: 20px;
}
.cont__circle .bar{
    position: absolute;

    width: 100%;
    height: 100%;
    background: #ccc;
    border-radius: 100%;
    clip: rect(0px, 70px, 70px, 35px)
}
 .circle .bar .progress{
    position: absolute;

    width: 100%;
    height: 100%;
    border-radius: 100%;
    clip: rect(0px, 35px, 70px, 0px);
    background: var(--colorMedio);
}
.circle .left .progress{
    z-index: 1;
    animation: left 4s linear both;
}
.cont__circle .text{
    position: absolute;
    width: 100%;
    bottom: 0;
    transform: translateY(calc(100% + 5px));
    text-align: center;
}
@keyframes left{
    100%{
        transform: rotate(180deg);
    }
}
.circle .right{
    z-index: 3;
    transform: rotate(180deg);

}
.circle .right .progress{
    transition: all 4s linear;

}
@media screen and (max-width:480px){
    .section.hoja{
        flex-wrap: wrap;
        overflow-y: scroll;
        padding-bottom: 50px;
    }
    .aside{
        width: 100%;
        margin-bottom: 10px;
    }
    .about{
        margin-bottom: 10px;
    }
    .cont__contacto{
        position: fixed;
        left: 0;
        bottom: 0;
        z-index: 1000;

        flex-direction: row;
        width: 100%;
        border: solid 3px var(--colorMedio);
    }
    .btn{
        width: 33.3%;
        margin-bottom: 0px;
    }
    .link__btn{
        display: flex;
        justify-content: center;
        align-items: center;

        width: 100%;
        height: 50px;
        color: var(--colorMedio);
        background: rgba(255,255,255,0.7);
        padding: 0;
        border-radius: 0;
        overflow: hidden;
    }
    .link__btn i{
        margin-left: 8.5px;
        font-size: 1.7em;
    }
    .link__text{
        display: none;
    }
    .cont__redesSociales{
        margin-bottom: 15px;
    }
    .curriculum{
        width: 100%;
        padding: 5px;
        margin-bottom: 10px;
        font-size: 1.3em;
    }
    .cont__circle{
        margin: 15px auto 50px auto;
    }
    .cont__circle .text{
        width: 100%;
        font-size: 0.5em;
    }
}