.experiences h1 {
    color: #082e63;
}
.experiences{
    overflow: auto;
    height: 100%;
    margin: 0 auto;
}
.experiences ul li{
    list-style: square;
}
.page-content {
    padding: 1em 2em;
}
.p_no_marge{
    margin: 0.5em 0 0.2em 0;
}
.experiences article{
    padding: 1.5em 0;
    width: 100%;
}
.experiences article ul{
    font-size: 1em;
}
.experiences article p{
    text-align: justify;
}
.experiences section{
    display: flex;
}
.box_exp{
    padding-left: 0.5em;
    display: flex;
    align-items: center;
    color: #09b1ea;
}
.experiences h5{
    margin: 0;
}
.timeline .timeline__item .info {
    display: grid;
    grid-template-columns: repeat(3, auto) 1fr;
    align-items: center;
    gap: 0.3rem;
}
.timeline .timeline__item .info h6 {
    margin: 0;
}
.timeline .timeline__item .info a {
    text-decoration: none;
    color: #171717;
}
.timeline .timeline__item .info .dot {
    position: relative;
    width: 16px;
    height: 16px;
    background: #171717;
    border-radius: 50%;
}
.timeline .timeline__item .info .dot::before {
    position: absolute;
    content: "";
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: white;
}
.timeline .timeline__item .info .time {
    margin-right: 8px;
}
.timeline .timeline__item .content {
    margin: 1rem 0 0 3.9rem;
    line-height: 1.5;
}
.experiences .title_exp{
    margin-left: 2em;
}
.timeline {
    margin: 0 auto;
    position: relative;
    display: grid;
    gap: 40px;
    padding: 0;
    max-width: 85%;
    font-size: 0.75rem;
    line-height: 1;
    color: white;
    list-style-type: none;
    clip-path: inset(0 0 100% 0);
    animation: expand 5s forwards linear;
}

/*section 1*/
.experiences article:nth-of-type(1) .timeline, .experiences article:nth-of-type(1) .title_exp{
    color: #171717;
}
.experiences article:nth-of-type(1) .timeline .timeline__line {
    position: absolute;
    top: 0;
    left: 6px;
    width: 4px;
    height: 100%;
    background: #171717;
}
.experiences article:nth-of-type(1) .timeline .timeline__item .info .dot::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 1em;
    height: 1em;
    border: 4px solid #171717;
    border-radius: inherit;
}
/*section 2*/
.experiences article:nth-of-type(2) .timeline, .experiences article:nth-of-type(2) .title_exp{
    color: #082e63;
}
.experiences article:nth-of-type(2) .timeline .timeline__line {
    position: absolute;
    top: 0;
    left: 6px;
    width: 4px;
    height: 100%;
    background: #082e63;
}
.experiences article:nth-of-type(2) .timeline .timeline__item .info .dot::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 1em;
    height: 1em;
    border: 4px solid #082e63;
    border-radius: inherit;
}

@keyframes expand {
    to {
        clip-path: inset(0 0 0 0);
    }
}

@media (max-width: 900px) {
    .experiences section, .box_exp, .box_exp .time {
        display: block;
    }
    .box_exp .time{
        padding: 1em 0;
    }
    .box_exp h6 {
        font-size: 1em;
    }
}