.timeLine {
    padding: 1.5rem 0px;
}

.line {
    content: "\f102";
    font-family: FontAwesome;
    width: 3px;
    position: absolute;
    top: 35vh;
    bottom: 90vh;
    left: 50%;
    border-radius: 50px;
    background-color: var(--vert-pale);
}

.point {
    color: var(--vert-pale);
}

.haut {
    position: relative;
    justify-content: center;
}

.bas {
    position: relative;
    top: 15rem;
    justify-content: center;
} 


.caption {
    background: var(--ivoire);
    position: relative;
    color: var(--vert-fonce);
    border: 1px solid #aaa;
    box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.5);
}

.caption .star {
    padding: 0rem 0.4rem;
    /* font-weight: bold; */
    position: absolute;
    z-index: 9;
    top: -15px;
    left: 20px;
    background-color: var(--vert-fonce);
    color: var(--ivoire);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.5);
    text-shadow: 0 0 black;
}

.caption .star:before {
    border-right: 10px solid var(--vert);
    content: '';
    position: absolute;
    top: 0px;
    left: -15px;
    z-index: 2;
    border-right: 15px solid var(--vert);
    border-bottom: 0px solid transparent;
    border-top: 15px solid transparent;
}

.caption .star span {
    display: inline-block;
}

.caption .image {
    position: relative;
}

.caption .image img {
    width: 100%;
}


.caption .image .title {
    background-color: var(--vert-fonce);
    padding: 0px 1rem;
    position: absolute;
    z-index: 9;
    left: -10px;
    bottom: 10px;
    display: inline-block;
    color: var(--ivoire);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.5);
    font-size: 1.3rem;
}

.textContent {
    padding: 1rem 0.8rem;
}

.textContent p {
    text-align: left;
    font-size: 1.2rem;
    color: var(--vert-fonce);
    font-weight: 300;
}

.grid3 {
    display: grid;
    grid-template-columns: 5fr 1fr 5fr;
    row-gap: 3rem;
}

.espace {
    height: 5rem;
}

.caption {
    opacity: 0;
    transform: translateY(40px) rotate(-45deg);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.caption.show {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

.card {
    opacity: 0;
    transform: translateY(60px) rotate(90deg);
    transition:
        opacity 0.6s ease,
        transform 0.8s ease;
    transform-origin: center;
}

.card.show {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

 .span3{
    font-size: 2rem;
} 

.caption h2{
    font-weight: unset;
    text-shadow: 0 0 black;
}
.portrait{
    max-width: 50vw;
}