/*---------------------*/
/*Vue compétences*/
/*---------------------*/
/*Element globale*/
.Competences{
    width: 100vw;
    background-color: var(--color-blanc);
    position: relative;
    display: flex;
    justify-items: center;
    justify-content: space-between;
    align-content: center;
    flex-wrap: wrap;
}

/*Content compétences*/
.Competences_Content{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/*Content animation*/
.Content_animation{
    width: 50vw;
    height: 50vw;
    border-radius: 25vw;  
    display: flex;
    align-items: center;
    justify-content: center;       
    z-index: 10;   
    margin-top: 150px;    
}
.Content_animation_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25vw;
    background: linear-gradient(90deg, var(--color-second), var(--color-third));
    opacity: 0.35;
}
.Content_animation_bg::before{
    content: " ";
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    border-radius: 25vw;
    background: linear-gradient(90deg, var(--color-second), var(--color-third));
    filter: blur(30px); 
}

/*------------------------*/
/*       Animation        */
/*------------------------*/
/*Conteneur des animations*/	
#animation{    
    width: 45vw;
    height: 45vw;
    perspective: 1200px;/*mettre a 1200px du point de fuite*/
    -webkit-perspective: 1200px;/*adapter pour cverrain navigauteur*/
    -moz-perspective: 1200px;  
}
/*Element rotation*/
.AnimationElement{
    position: absolute;
    margin-left: 320px;
    margin-top: 320px;
    transform-style: preserve-3d;			
    -webkit-transform-style: preserve-3d; 
    -moz-transform-style: preserve-3d;
    transform: rotateX(-25deg) rotateY(-35deg);
    -webkit-transform: rotateX(-25deg) rotateY(-35deg);		
    -moz-transform: rotateX(-25deg) rotateY(-35deg);
    transition: 1s;
    animation: rotateElement 12s infinite linear;
    -webkit-animation: rotateElement 12s infinite linear;
    -moz-animation: rotateElement 12s infinite linear;		
}
.AnimationElement:hover{
    color: silver;
    transition: 2s;
    animation: rotateElement 2s infinite linear;
    -webkit-animation: rotateElement 2s infinite linear;
    -moz-animation: rotateElement 2s infinite linear;
}		
/*Faces des élements*/
.AnimationElement div{
    position: absolute;
    width: 100%;
    height: 100%;
}
.AnimationElement h2{
    text-align: center;
    position: absolute;				
    font-family: 'Roboto Condensed', sans-serif;
    margin-top: -55px;
    font-size: 40px;
    font-weight: bold;
    height: 60px;
    line-height: 60px;
    width: 100%;
    transform: rotateY(45deg);
    -webkit-transform: rotateY(45deg);
    -moz-transform:rotateY(45deg);
    animation: rotateElementInverse 12s infinite linear ease-in-out;
    -webkit-animation: rotateElementInverse 12s infinite linear ease-in-out;
    -moz-animation: rotateElementInverse 12s infinite linear ease-in-out; 
}
/*Animation de rotation*/
@keyframes rotateElement{
    0%{
        transform: translateZ(-100px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: translateZ(-100px) rotateX(0deg) rotateY(0deg);
        -moz-transform: translateZ(-100px) rotateX(0deg) rotateY(0deg);
    }				
    100%{
        transform: translateZ(-100px) rotateX(0deg) rotateY(360deg);
        -webkit-transform: translateZ(-100px) rotateX(0deg) rotateY(360deg);
        -moz-transform: translateZ(-100px) rotateX(0deg) rotateY(360deg);
    }
}
@keyframes rotateElementInverse{
    0%{
        transform: translateZ(50px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: translateZ(50px) rotateX(0deg) rotateY(0deg);
        -moz-transform: translateZ(50px) rotateX(0deg) rotateY(0deg);
    }				
    100%{
        transform: translateZ(50px) rotateX(0deg) rotateY(-360deg);
        -webkit-transform: translateZ(50px) rotateX(0deg) rotateY(-360deg);
        -moz-transform: translateZ(50px) rotateX(0deg) rotateY(-360deg);
    }
}
/*Pour chaque face*/
.face, .dos{            
    background-position: left top; 
    background-size: 200% 100%;
    background-repeat: no-repeat;
}
.droite,.gauche{			
    background-position: right top; 
    background-size: 200% 100%;
    background-repeat: no-repeat;        
}
.haut,.bas{            
    background-size: 2% 2%;
    background-repeat: repeat;    
    background-position: left bottom;      
}

/*Widget double colonne */
.wg_2column{
    width: 90%;
    margin: 150px 0px;						
    height: auto;
}
/*Widget le titre */
.wg_2column_content_titre{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;						
}
/*Partie des colonnes */
.wg_2column_content_columns{
    display: block;
    align-items: top;
    justify-content: space-between;		    
}
.wg_2column_content_column{
    flex-basis: 100%;		
    width: 100%;
}
/*Titre de la colonne */
.wg_2column_titre{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0px;
}
/*Liste dans une colonne */
.wg_2column_liste{
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: top;		    
}
.wg_2column_liste_element{
    display: flex;
    align-items: center;
    justify-content: space-between;	
    padding: 15px 0px;						
}
.wg_2column_liste_element_image{
    min-width: 65px;
    min-height: 65px;						
    fill: var(--color-main);
    color: var(--color-main);						
}
.wg_2column_liste_element_image svg{
    width: 65px;
    height: 65px;
    transform: translateY(10px);
}
.wg_2column_liste_element_englobe{
    display: flex;
    flex-direction: column;
    align-items: left;
    flex-grow: 1;
    justify-content: space-between;
    padding: 0px 15px;					
}
.wg_2column_liste_element_titre{
    width: 100%;
    font-size: 19px;
    font-family: 'Poppins';
    font-weight: 600;	
    color: var(--color-main);					
}
.wg_2column_liste_element_content{
    width: 100%;
    font-size: 17px;
    font-family: 'Poppins';
    font-weight: 400;							
    color: var(--color-main);
}

/*Partie des animations des compétences*/
.container{										
    display: flex;
    align-items: baseline;
    justify-content: space-evenly;	
    flex-wrap: wrap;    
    width: 50%;
    gap: 30px;
    overflow: hidden;	
    padding: 20px 0;
    width: 100%;

}
.container .card{
    width: 220px;
    height: 250px;
    background-color: var(--color-box);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 3px 3px 15px var(--color-ombre);		
    border-radius: 30px;																
}
.container .card .percent{
    width: 150px;
    height: 150px;
}
.container .card .percent svg{
    width: 150px;
    height: 150px;
    transform: rotate(270deg);
}
.container .card .percent svg circle{
    width: 100%;
    height: 100%;
    fill: transparent;
    stroke-width: 2;
    stroke: var(--color-main);	
    transform: translate(5px,5px);
}
.container .card .percent svg circle:nth-child(2){
    stroke:  var(--clr);
    stroke-dasharray: 440;
    stroke-dashoffset: calc(440 - (440 * var(--num))/100);
    opacity: 0;
    animation: fadeIn 1s linear forwards;
    animation-delay: 1.5s;
}
@keyframes fadeIn {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.dot{
    position: absolute;
    inset: 5px;
    z-index: 10;
    animation: animatDot 1.5s linear forwards;
    -webkit-animation: animatDot 1.5s linear forwards;
    -moz-animation: animatDot 1.5s linear forwards;
    transform: rotate(calc(3.6deg * var(--num)));
    -webkit-transform: rotate(calc(3.6deg * var(--num)));
    -moz-transform: rotate(calc(3.6deg * var(--num)));
}
@keyframes animatDot {
    0%{
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
    }100%{
        transform: rotate(calc(3.6deg * --num));
        -webkit-transform: rotate(calc(3.6deg * --num));
        -moz-transform: rotate(calc(3.6deg * --num));
    }
}
.dot::before{
    content: "";
    position: absolute;
    width: 10px;
    top: -5px;
    left: 50%;
    height: 10px;
    transform: translateX(-50%);
    background-color: var(--clr);
    border-radius: 50%;
    background-color: var(--clr);
    box-shadow: 0 0 10px var(--clr);
}
.number{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: fadeIn 1s linear forwards;
    animation-delay: 1.5s;
}
.number h2{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-main);	
    font-weight: 700;
    font-size: 1.5em;
}
.number h2 span{
    font-weight: 300;
    color: var(--color-main);	
    font-size: 0.5em;
}
.number p{
    font-weight: 300;
    color: var(--color-main);	
    font-size: 0.75em;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.blob_bleu{
    fill: var(--color-box);		
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 500px;
}

/*Selection des compétences*/
.englobeLesCompetences{
    width: 100%;
    display: flex;
    align-items: flex-start;    
    justify-content: space-between;		
    gap: 60px;		
    min-height: 100vh; 
}

/*Element pour les compétences */			
.itemsSelectCompetences{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.listeSelectionBlocCompetences{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;    
}
.listeSelectionBlocCompetences > .element{
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: .3s ease all;
    cursor: pointer;
    border-bottom: 1px solid #111;
}
.listeSelectionBlocCompetences > .element:nth-last-child(){
    border-bottom: none;
}
.listeSelectionBlocCompetences > .element:hover{
    transition: .3s ease all;
    transform: scale(1.1);
}
.listeSelectionBlocCompetences > .element > .title{					
    font-size: 2.3rem;
    font-weight: 900;
    color: #111;
    font-family: "Poppins";
}
.listeSelectionBlocCompetences > .element.selected {
    padding-left: 3rem;
}
.listeSelectionBlocCompetences > .element.selected::before{
    content: '>';
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: 900;
    color: #111;
    transition: 0.3s ease all;
}
.listeSelectionBlocCompetences > .element > .nbCompetences{
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    font-family: "Poppins";
    position: absolute;
    bottom: 10px;
    right: 10px;
}
.listeSelectionBlocCompetences > .element > .nbCompetences>span{
    font-size: 0.6rem;
    font-weight: 500;
    font-family: "Roboto";
}


/*La légende en bas*/
.texte_precisions{
    display: flex;    
    flex-direction: column;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}
.texte_precisions .ligne{
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;    
}
.texte_precisions .ligne:nth-child(odd){
    background-color: #eef;
}
.texte_precisions .ligne>span:nth-child(1){
    width: 150px;
    font-weight: 600;
    padding-left: 10px;
    font-family: "Roboto";
}
.texte_precisions .ligne>span:nth-child(2){
    padding-right: 10px;
}

/*Tools, technical*/
.cardSpecial{
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--color-noir);
    font-family: "Poppins";
    text-transform: uppercase;
    width: 45%;
}
.wg_2column_content_column h4{
    font-size: 1rem;
    font-weight: 400;
    text-decoration: 1px underline;
    color: var(--color-noir);
    font-family: "Open sans";
    margin-top: 25px;
}

@media screen and (min-width: 0px) and (max-width: 1200px) {	
    .englobeLesCompetences{
        flex-direction: column;        
        align-items: center;
        justify-content: flex-start;		
        gap: 0px;			
        row-gap: 50px;
    }
    .englobeLesCompetences{
        width: 100%;
    }
    .itemsSelectCompetences > .wg_2column_content_column{
        width: 100%;
    }
    .listeSelectionBlocCompetences > .element:hover{
        transform: scale(1.05);
    }
}