.cv-container {
    position: absolute;
    display: flex;
    top: 360vh;
    min-width: 100%;
    height: 100vh;
    background-color: #000;
    overflow-x: visible;
}

.cv-container:hover {
    cursor: none;
}

.cv-container:hover .cv-cursor {
    opacity: 1;
}

.slide {
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100%;
    overflow: visible;
    transition: 1s ease-in-out;
    transform: translateX(0);
}

.slide:nth-child(1) .line {
    left: calc(20% + 80px);
}

.slide-bg {
    pointer-events: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: blur(10px) grayscale(60%);
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.slide-year {
    pointer-events: none;
    user-select: none;
    position: absolute;
    color: rgba(255, 255, 255, 0.05);
    font-size: 12vw;
    width: 100%;
    text-align: center;
    font-family: 'Montserrat';
    text-shadow: 0px 0px 0px 10px #000;
    filter: drop-shadow(0px 0px 10px #000);
}

.start-point {
    pointer-events: none;
    position: absolute;
    left: 20%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0px 0px 0px 3px #fff;
}

.line {
    pointer-events: none;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
}

.life-point-container {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.life-point {
    pointer-events: none;
    margin: 0px 15vw;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 1);
    overflow: visible;
}

.life-point p {
    position: absolute;
    overflow: visible;
    width: 300px;
    height: 200px;
    color: #fff;
    transform: translate(-50%, 90px);
    line-height: 33px;
    text-align: center;
    font-style: italic;
    font-family: 'Montserrat Alternates';
    font-size: 24px;
}

.life-point::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    transform: translate(10px, 30px);
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.7);
}

.life-point::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    transform: translate(10px, 55px);
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.7);
}

.cv-cursor {
    pointer-events: none;
    position: absolute;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 25px;
    overflow: visible;
    opacity: 0;
    transition: opacity 500ms ease-in-out, transform 500ms ease-in-out;
}

.cv-cursor::before {
    content: '';
    pointer-events: none;
    position: absolute;
    width: 20px;
    height: 2px;
    transform: translate(-2px, 6px) rotate(40deg);
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.7);
}

.cv-cursor::after {
    content: '';
    pointer-events: none;
    position: absolute;
    width: 20px;
    height: 2px;
    transform: translate(-2px, -6px) rotate(-40deg);
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 780px) {
    .life-point p {
        font-size: 14px;
        width: 120px;
    }
    .cv-container {
        overflow-x: scroll;
    }
}
