@import '../../scss/variables.scss';

.resume-section-list {
    ul {
        list-style: none;
        margin: 0;
        padding-right: 16px;

        li {
            align-items: center;
            display: flex;
            justify-content: space-between;
            padding-left: 16px;
            padding-bottom: 30px;
            position: relative;

            &:not(:last-child):before {
                content: '';
                position: absolute;
                left: 0px;
                top: 8px;
                width: 1px;
                height: 100%;
                background-color: $color-secondary;
            }

            &:after {
                content: '';
                position: absolute;
                left: -5px;
                top: 8px;
                width: 12px;
                height: 12px;
                border: 1px solid $color-secondary;
                border-radius: 100%;
                background-color: #ffffff;
            }

            a {
                margin-left: 10px;
            }

            .portfolio-info {
                img {
                    height: 100px;
                    object-fit: cover;
                    width: 100px;
                }
            }
        }
    }
}



