.sec_about_2 {
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-weight: 400;
    color: white;
    width: 100vw;
    background-image: linear-gradient(rgba(0, 180, 174, 0.5),rgba(0, 180, 174, 0.3));
}

.container {
    padding-right: 10% !important;
    padding-left: 10% !important;
    padding-top: 0;
    padding-bottom: 5%;
    margin: 0 auto;
    width: 100vw !important;
    max-width: 100vw !important;
}

.top-section {
    text-align: center;
    padding: 4rem 0;
    max-width: 600px;
    margin: 0 auto;
}
.top-section h1 {
    text-transform: uppercase;
    transform: translateY(10%);
}

.timeline {
    position: relative;
    min-height: 150px;
}

.line {
     position: absolute;
    z-index: 2;
    left: calc(50% - 1px);
    width: 2px;
    top: -50px;
    bottom: -50px;
    background-color: #000;
    display: none;
}

.line:before,
.line:after {
    position: absolute;
    display: block;
    content: '';
    height: 1rem;
    width: 1rem;
    border-radius: 50%;
    background-color: #000;
    left: 50%;
    transform: translateX(-50%);
}

.line:after {
    bottom: 0;
}

.section {
    display: flex;
    opacity: 0;
    transform: translateX(-10%);
    transition: opacity 0.5s, transform 0.5s;
    position: relative;
    z-index: 1;
    margin: 50px 0;
    padding: 1rem;
    border-radius: 1rem;
    align-items: center;
    min-height: 300px;
}

.section:nth-child(odd) {
    flex-direction: row-reverse;
    opacity: 0;
    transform: translateX(10%);
    transition: opacity 0.5s, transform 0.5s;

}

.bead {
    position: absolute;
    display: block;
    height: 1rem;
    width: 1rem;
    border-radius: 50%;
    background-color: #000;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
}

.content {
    width: calc(50% - 2rem);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.content p{
    font-size: 30px;
    color: var(--second-leading-color) !important;
}

.content h1 {
    transform: translateY(10%);
}

.show-me:nth-child(n) {
    transform: none;
    opacity: 1;
}

.show-me:nth-child(odd) {
    transform: none;
    opacity: 1;
}

@media screen and (max-width: 768px){
    .container {
        display: none;
    }
    .header {
        background-color: #ffffff !important;
    }
}