@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #7b8586;
    --text-color: #000000;
}

html {
    font-size: 10px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #eeeeee;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: var(--text-color);
}

.title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2rem;
    text-transform: uppercase;
    z-index: 99;
}

.item_preTitle {
    font-size: 1.4rem;
    color: #eeeeee;
    font-weight: 300;
}

.item_title {
    font-size: 1.6rem;
    color: var(--text-color);
    font-weight: 500;
    margin: 0.8rem 0;
}

.item_subtitle {
    font-size: 1.4rem;
    color: var(--text-color);
    font-weight: 400;
}

.container {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    padding: 5rem;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

@media only screen and (max-width: 768px) {
    .container {
        width: 100%;
        grid-template-columns: 1fr;
        padding: 3rem;
        gap: 7rem;
    }
}

.profile_container {
    position: relative;
    right: 50px;
    bottom: 30px;
}

.profile {
    grid-column: 1/ -2;
    margin-bottom: 1rem;
    position: relative;
    right: 50px;
    bottom: 30px;
}


@media only screen and (max-width: 768px) {
    .profile {
        margin-bottom: 0;
    }

}

.profile_container {
    display: flex;
    gap: 2rem;
}

.profile_profileImg {
    max-width: 250px;
}

.profile_name_firstName {
    color: var(--primary-color);
    font-weight: 700;
    font-size: clamp(2rem, 8vw, 4rem);
    text-transform: uppercase;
    display: block;
    margin-bottom: -0.8rem;
    position: relative;
    bottom: 50px;
    z-index: 99;

}

.profile_name_lastName {
    color: var(--primary-color);
    font-weight: 700;
    font-size: clamp(2rem, 8vw, 4rem);
    text-transform: uppercase;
    display: block;
    margin-bottom: -0.8rem;
    position: relative;
    bottom: 50px;
    z-index: 99;

}

.telechargementbtn {
    display: block;
    text-decoration: underline;
    position: relative;
    top: 60px;
    z-index: 99;
}

.telechargementbtn:hover {
    color: var(--primary-color);
}

@media only screen and (max-width: 768px) {
    .profile_container {
        flex-direction: column;
        z-index: 99;
    }
}

.formation_list {
    margin-top: 10px;
    margin-left: 10px;
    margin-bottom: 10px;
    line-height: 1;
    z-index: 99;
}

.Documents {
    position: relative;
    top: 30px;
    z-index: 99;
}

.compétences {
    margin-top: 1rem;
    margin-left: 1rem;
    line-height: 2;
    z-index: 99;
}

.sous_titre {
    color: var(--primary-color);
}

.Contact {
    margin-top: 1rem;
    margin-left: 1rem;
    line-height: 2;
    z-index: 99;
}


.Centre {
    margin-top: 1rem;
    flex-wrap: wrap;
    color: var(--text-color);
    z-index: 99;
}

.box_grise {
    background-color: #ced5d6;
    height: 800px;
    width: 500px;
    position: absolute;
    left: 0px;
    top: 0px;
    background-size: cover;
}


