.projects_content {
    display: flex;
    flex-direction: row;
}

.project_images {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding-top: 100px;
}

.project_image{
    margin-left: 30px;
    margin-bottom: 400px;
    pointer-events: none;
}


.project_descriptions {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding-top: 100px;
    position: relative;
}

.project_description {
    flex: 1;
    margin: 30px 0 400px 50px;
    text-align: justify;
    opacity: 0.2;
    padding: 10px;
    line-height: 1.7rem;
}

.project_description ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.project_description.active {
    opacity: 1;
}

.project_title{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #008286;
    margin-bottom: 0.5rem;
}

.project-link {
    text-decoration: none;
    color:rgb(179 160 93);
}

.project-link:hover {
    text-decoration: none;
    color: #008286;
}


@media (min-width: 1200px) {
    .project_image img {
        max-width: 310px;
        width: 25vw;
        border-radius: 20px;
    }

    .project_description {
        background-color: rgba(255, 255, 255, 0.034);
        padding: 10px;
    }

    .project_descriptions:before{
        content: '';
        width: 1px;
        height: 100%;
        position: absolute;
        background-color: #a0ffea;
    }
    .bullet_point {
        display: inline-block;
        width: 12px;
        height: 12px;
        margin-right: 10px;
        border-radius: 30%;
        background-color: transparent;
        position: absolute;
        left: -65px;
    }

    .bullet_point.active {
        opacity: 1;
        background-color: #008286;
    }

    .bullet_point::after {
        content:'';
        display: block;
        width: 40px;
        height: 2px;
        background-color: #008286;
        position: absolute;
        top: 50%;
        opacity: 1;
        left: 5px;
        transform: translateY(-50%);
    }
}

@media (max-width: 1200px) {
    .projects_content{
        width: 100%;
        display: flex;
        flex-direction: column;

    }

    .project_images, .project_descriptions {
        width: 100%;
        display: contents;
    }

    .project_description, .project_image {
        opacity: 1;
        display: flex;
        flex-direction: column;
        margin: auto;
        width: 100%;
        padding: 0 0 10px 20px;
        border-left: 1px solid #008286;
    }

    .project_image {
        padding-top: 2rem;
    }

    .project_description{
        padding-bottom: 2rem;
    }

    .project_image img {
        max-width:250px;
        width: 100%;
        margin: auto;
    }

    .project_title::before{
        content:'';
        display: block;
        width: 40px;
        height: 1px;
        background-color: #008286;
        opacity: 1;
        transform: translateX(-20px);
    }

    .project_title{
        margin-bottom: 1.5rem;
    }
}

.project_description ol {
    padding-left: 1rem;
}

.project_description ol li{
    margin-top: 5px;
    margin-bottom: 5px;
}

.project_description .skills_list span{
    font-size: 18px;
    color: white;
    background-color: #6553af8d;
    border-radius: 5px;
    padding: 0px 4px 0px 4px;
    white-space: nowrap;
    line-height: 1.7em;
}

.skills_list{
    color:#008286;
    margin-top: 0.5rem;
}