*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
.hero{
    position: relative;
    width: 100%;
    height: 100vh;
    background: #edf2fd;
}

.nav{
    display: flex;

    width: 84%;
    margin: auto;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
}

.logo{
    width: 150px;
    margin-right:  150px; ;
}

.nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

.nav ul li a{
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: bold;
}

.nav ul li a:hover{
    color: rgb(106, 0, 255);
}

.detel{
    margin-left: 8%;
    margin-top: 2%;
}

.detel h1{
    font-size: 50px;
    color: black;
    margin-bottom: 20px;
}

.span{
    color: rgb(128, 0, 255);
}

.detel p{
    color: black;
    line-height: 22px;
}

.detel a{
    background: rgb(255, 252, 252);
    padding: 10px 18px;
    text-decoration: none;
    font-weight: bold;
    color: rgb(106, 0, 255);
    display: inline-block;
    margin: 30px 0;
    border-radius: 5px;
    
}

.image{
    width: 45%;
    height: 80%;
    position: absolute;
    bottom: 0;
    right: 100px;
}

.image img{
    height: 100%;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: bottom 1s, left 1s;
}

.image:hover .fondpapi{
    bottom: 40px;
}

.image:hover .papi1{
    left: 60%;
}

.texte{
    font-size: 20px;
}

.paragraphe{
    font-size: 20px;
}


*{
    margin-top: 0 ;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
body{
    width: 100%;
    min-height: 100vh;
    display: grid;
    place-items: center;
    background:  #edf2fd
}
.row{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 100px;
}
.row .col .skill{
    width: 180px;
    height: 180px;
    position: relative;
    display: grid;
    place-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-top: 60px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5),
                -5px -5px 15px rgba(0, 0, 0, 0.5);
}
.row .col:nth-child(1) .skill{
    background: conic-gradient(rgb(106, 0, 255) 85%, transparent 0);
}
.row .col:nth-child(2) .skill{
    background: conic-gradient(rgb(106, 0, 255) 55%, transparent 0);
}
.row .col:nth-child(3) .skill{
    background: conic-gradient(rgb(106, 0, 255) 75%, transparent 0);
}
.row .col:nth-child(4) .skill{
    background: conic-gradient(rgb(106, 0, 255) 45%, transparent 0);
}
.row .col .skill::before{
    content: '';
    position: absolute;
    width: 85%;
    height: 85%;
    background: rgb(255, 193, 193);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5) inset,
                -5px -5px 15px rgba(0, 0, 0, 0.5) inset;
}
.row .col .skill .content{
    color: #edf2fd;
    position: absolute;
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    user-select: none;
}
.row .col .skill .content span{
    display: block;
    padding: 5px 0;
    letter-spacing: 2px;
}