.page-container {
    height: auto;
    min-height: 0;
}


/** PARCOURS **/

.content-career {
    color: white;
    position: sticky;
    margin-left: 50px;
    margin-top: 60px;
    animation: fadein 1.5s;
    margin-bottom: 100px;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.timeline {
    height: 640px;
    width: 2px;
    background-color: white;
    position: absolute;
    margin-left: 21px;
    top: 15px;
}

.timeline.second {
    top: 10px;
    margin-left: 70px;
}

.block-career {
    display: grid;
    position: relative;
    margin-left: 50px;
    margin-top: 35px;
    background-color: #ffffff12;
    padding: 10px;
    border: #71fff8 1px solid;
    /* cursor: pointer; */
    border-radius: 3px;
}

.block-career.second {
    margin-left: 100px;
}

.block-career:hover {
    background-color: transparent;
    border-color: white;
    transition: 0.5s ease-out;
}

.position {
    width: 14px;
    height: 14px;
    border-radius: 14px;
    background-color: #e8e8e8;
    position: absolute;
    margin-left: -36px;
    top: 9px;
    box-shadow: 0px 0px 5px #71fff8;
}

.time-position {
    position: absolute;
    margin-left: -100px;
    top: 7px;
    color: #d9d9d9;
    font-style: italic;
}

.position.second {
    margin-left: -37px;
}

.time-position.second {
    margin-left: -100px;
}

.career-element {
    display: inline-grid;
    padding-bottom: 15px;
    padding-left: 15px;
}

.career-title {
    font-size: 25px;
    font-family: "Roboto-Medium";
}

.career-date {
    font-size: 17px;
    font-family: "Roboto-Light";
    font-style: italic;
}

.career-details {
    font-size: 14px;
    font-family: "Roboto-Light";
}


/** EXPERIENCE */

.content-exp {
    color: white;
    margin-bottom: 130px;
    display: flex;
    animation: fadein 1.5s;
}

.block-exp {
    width: 100%;
    text-align: center;
}

.exp-circle {
    height: 150px;
    width: 150px;
    border-radius: 150px;
    background-color: white;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    position: relative;
    box-shadow: 0px 0px 10px #71fff8;
}

.exp-circle:hover {
    box-shadow: none;
    transition: 0.5s;
}

.exp-title {
    position: relative;
    top: 35px;
    font-size: 20px;
}

.exp-title a {
    text-decoration: none;
    color: #71fff8;
}


/* MEDIA QUERIES */

@media screen and (min-width: 451px) and (max-width: 970px) {
    .content-career {
        margin-left: 10px;
    }
    .exp-circle {
        height: 100px;
        width: 100px;
    }
    .exp-circle i {
        top: 35px !important;
    }
    .exp-title {
        font-size: 15px;
    }
}

@media screen and (min-width: 200px) and (max-width: 450px) {
    .content-career {
        margin-left: 10px;
    }
    .exp-circle {
        height: 100px;
        width: 100px;
    }
    .exp-circle i {
        top: 35px !important;
    }
    .exp-title {
        font-size: 10px;
    }
}