/*---------------------*/
/*Vue A propos*/
/*---------------------*/
/*Element globale*/
.AproposDeMoi{
    width: 100vw;
    background-color: var(--color-blanc);
    padding-bottom: 50px;
}
.AproposDeMoi_Content{
    width: 100%;
    height: 100%;			
}
.AproposDeMoi_Texte_Content{
    display: flex;
    align-items: center;
    justify-content: space-between;	
    gap: 50px;
    width: 85%;		
    margin: 75px auto;	
}
.AproposDeMoi_Texte{
    min-height: 100%;
    width: clamp(10%, 50%, 750px);
    z-index: 2;
}
.AproposDeMoi_Content:after{
    content: '';
    width: 400px;
    height: 400px;
    background-color: var(--color-second);
    opacity: 0.3;
    position: absolute;
    left: 0%;
    bottom: -10%;
    border-radius: 50%;
}
.AproposDeMoi_Texte>h4{
    font-size: 22px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;	
    color: var(--color-main);						
}
.AproposDeMoi_Texte>p{
    margin: 10px auto;
    text-align: justify;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;	
    color: var(--color-main);
    z-index: 1;			
}
.AproposDeMoi_Texte>p>a{
    color: var(--color-third);
    font-weight: 600;
    text-decoration: none;
}
.AproposDeMoi_Texte_Content>img{
    border-radius: 3px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

@media screen and (min-width: 0px) and (max-width: 1200px) {
    .AproposDeMoi_Texte_Content{
        flex-direction: column;
        justify-content: center;
    }
    .AproposDeMoi_Texte{
        width: 95%;
    }
}