body {
    background-color: #f5f5f5;
}

/*=============== HOME ===============*/
#home {
    padding: 6rem 0 0rem !important;
}

.home__container {
    position: relative;
    row-gap: 0rem;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.home__about {
    background: linear-gradient(0deg,#F5F5F5,#F5F5F5 250px,#f0f0f0 0,#f0f0f0);
}

.header {
    background: #f0f0f0 !important;
}

.home__data {
    text-align: center;
    padding-right: 0;
}

.home__education {
    font-size: .813rem;
    font-weight: 500;
}

.home__education {
    color: var(--text-color);
    margin-bottom: 2.5rem;
}

.home__name {
    font-size: 22px;
    font-weight: 500;
    max-width: 900px;
    line-height: 1.5em;
    margin: 0 auto 70px;
    text-align: center;
    color: var(--text-color);
}

.home__video {
    width: 100% !important;
}

.selfie {
    position: absolute;
    right: -20px;
    top: 350px;
    height: 400px;
}

.home__handle {
    justify-self: center;
    width: 830px;
    height: 450px;
    background: #c3c3c3;
    border-radius: 22px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

/*=============== TIMELINE ===============*/
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 100px auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 100%;
    background: #fff;
    top: 0;
    left: 50%;
    margin-left: -3px;
    z-index: -1;
    animation: moveline 4.1s linear forwards;
}

@keyframes moveline {
    0%{
        height: 0;
    }
    100%{
        height: 100%;
    }
}

.timeline .container {
    padding: 10px 50px;
    position: relative;
    width: 50%;
    animation: movedown 1s linear forwards;
    opacity: 0;
}

@keyframes movedown {
    0% {
        opacity: 1;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.timeline .container:nth-child(1) {
    animation-delay: 0s;
}

.timeline .container:nth-child(2) {
    animation-delay: 1s;
}

.timeline .container:nth-child(3) {
    animation-delay: 2s;
}

.timeline .container:nth-child(4) {
    animation-delay: 3s;
}

.timeline .container:nth-child(5) {
    animation-delay: 4s;
}

.timeline .container:nth-child(6) {
    animation-delay: 5s;
}

.timeline .container.left-container {
    margin-left: 0;
}

.timeline .container.right-container {
    margin-left: 50%;
}

.timeline .container .text-box {
    padding: 20px 30px;
    background: #fff;
    position: relative;
    border-radius: 6px;
    font-size: 15px;
}

.timeline .container .text-box h2 {
    font-weight: 600;
}

.timeline .container .text-box small {
    display: inline-block;
    margin-bottom: 15px;
}

.timeline .container .text-box .left-container-arrow {
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #fff;
    right: -15px;
}

.timeline .container .text-box .right-container-arrow {
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #fff;
    left: -15px;
}

.timeline .container img {
    position: absolute;
    width: 40px;
    border-radius: 50%;
    padding: 5px;
    background: #fff;
    right: -20px;
    top: 32px;
    z-index: 10;
}

.timeline .container.right-container img {
   left: -20px; 
}

@media screen and (max-width: 600px){
    .timeline {
        margin: 50px auto;
    }
    
    .timeline::after {
        left: 31px;
    }

    .timeline .container.left-container {
        left: 0;
    }

    .timeline .container {
        width: 100%;
        padding-left: 80px;
        padding-right: 25px;
    }
    
    .timeline .container .text-box {
        font-size: 13px;
    }

    .timeline .container .text-box small {
        margin-bottom: 0;
    }

    .timeline .container.right-container {
        margin-left: 0;
    }

    .timeline .container.left-container img, .timeline .container.right-container img {
        left: 10px;
    }
    
    .timeline .container .text-box .left-container-arrow, .timeline .container .text-box .right-container-arrow {
        border-right: 15px solid #fff;
        border-left: 0;
        left: -15px;
    }
}