#main, #about-us{
    margin-top: 20vh;
    padding: 0 10vw;
}

#main h2, #about-us h2{
    font-family: 'Lexend', sans-serif;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 10vh;
    color: var(--primary-color);
    text-align: center;
}

#main .timeline{
    display: flex;
    margin-bottom: 10vh;
    justify-content: center;
}

#main .timeline img{
    width: 35vw;
    height: 100%;
}

#main .timeline .container{
    width: 45vw;
    padding-left: calc(5vw - 15px);
}

#main .timeline .container .row{
    display: flex;
    gap: calc(5vw - 15px);
}

#main .timeline .container .row:last-child{
    height: 100%;
}

#main .timeline .container .row .line{
    position: relative;
    height: auto;
    display: flex;
    justify-content: center;
}

#main .timeline .container .row .paragraph-pointer{
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin-top: 2px;
}

#main .timeline .container .row .paragraph-line{
    content: "";
    width: 10px;
    height: 100%;
    background-color: var(--primary-color);
    position: absolute;
    top: 15px;
}

#main .timeline:last-child .container .row:last-child .paragraph-line{
    top: calc(-100% + 17px);
}

#main .timeline .container .row .text{
    width: 35vw;
}

#main .timeline .container .row h3{
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 3vh;
    font-weight: 600;
}

#main .timeline .container .row p{
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5vh;
    text-align: justify;
    font-weight: 400;
}

#main .timeline .container .row:last-child p:last-child{
    margin-bottom: 0;
}

@media screen and (min-width:769px) {
    
    #main .timeline:nth-child(odd){
        flex-direction: row-reverse;
    }

    #main .timeline:nth-child(odd) .container{
        padding-right: calc(5vw - 15px);
        padding-left: 0;
    }

    #main .timeline:nth-child(odd) .row{
        flex-direction: row-reverse;
    }
}

@media screen and (max-width:1000px) and (min-width:769px) {
    
    #main .timeline .container .row h3{
        font-size: 18px;
    }

    #main .timeline .container .row p{
        font-size: 14px;
    }
}

@media screen and (max-width:768px) {

    #main{
        margin-top: 10vh;
    }
    
    #main .timeline{
        flex-direction: column;
        gap: 5vh;
    }

    #main .timeline img{
        width: 50vw;
        margin: 0 auto;
    }

    #main .timeline .container{
        padding: 0;
        width: 100%;
    }

    #main .timeline .container .row .text{
        width: 100%;
    }

    .split-left{
        transform: translateX(100%) !important;
    }

    .split-left.animated{
        transform: translateX(0) !important;
    }

    #main .timeline .container .row:last-child .paragraph-line{
        height: calc(100% + 10vh + 80vw);
    }

    #main .timeline:last-child .container .row:last-child .paragraph-line{
        top: calc(-100% - 10vh - 80vw + 17px);
    }

    #main .timeline:last-child .container .row:last-child .line{
        z-index: 9999;
        background-color: #fff;
    }
}

@media screen and (max-width:500px){

    #main .timeline .container .row{
        gap: 15px;
    }
    
    #main .timeline .container .row h3{
        font-size: 18px;
    }

    #main .timeline .container .row p{
        font-size: 14px;
    }

    #main .timeline .container .row .paragraph-pointer{
        width: 20px;
        height: 20px;
    }

    #main .timeline .container .row .paragraph-line{
        width: 8px;
    }
}

@media screen and (max-width:360px){
    
    #main .timeline .container .row h3{
        font-size: 16px;
    }

    #main .timeline .container .row p{
        font-size: 12px;
    }
}

/* ABOUT US */

#about-us{
    display: flex;
    flex-direction: column;
    gap: 5vh;
}

#about-us .container{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#about-us .container h3{
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 3vh;
    font-weight: 600;
}

#about-us .container p{
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    color: #000;
    text-align: justify;
    font-weight: 400;
}

/* WORTH */

#worth{
    margin: 15vh 0;
    padding: 0 15vw;
    display: flex;
    gap: 5%;
}

#worth .container{
    width: 30%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

#worth .container h3{
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
}

#worth .container p{
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    color: #000;
    text-align: center;
}

@media screen and (max-width:768px) {

    #worth{
        flex-direction: column;
        gap: 10vh;
    }

    #worth .container{
        width: 100%;
    }
}

@media screen and (max-width:1000px) and (min-width:769px){

    #about-us .container h3, #worth .container h3{
        font-size: 18px;
    }

    #about-us .container p, #worth .container p{
        font-size: 14px;
    }
}

@media screen and (max-width:500px){

    #about-us .container h3, #worth .container h3{
        font-size: 18px;
    }

    #about-us .container p, #worth .container p{
        font-size: 14px;
    }
}