.parts {
    position: relative;
}

.parts-header {

}

.parts-container {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.part {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.part-name {
    width: 20%;
    font-weight: 700;
    line-height: 1.5;
}

.part-image {
    width: 20%;
    height: 5rem;
}

.part-image > img {
    height: 100%;
    width: 100%;
}

.part-text {
    font-weight: 300;
    width: 50%;
}

.part:hover > .part-name,
.part:hover > .part-text
 {
    color: var(--color-dark);
}

.parts-hand {
    transform: rotate(120deg);
    right: 0;
    bottom: 1rem;
    z-index: -1;
}

@media (max-width: 935px) {
    .parts {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .part-name {
        width: 25%;
    }

    .part-image {
        display: none;
    }

    .part-text {
        width: 70%;
    }
}

@media (max-width: 720px) {
    .parts {
        width: 60%;
    }

    .part-name {
        width: 58%;
    }

    .part-image {
        display: block;
        width: 40%;
    }

    .part-text {
        display: none;
    }
}

@media (max-width: 540px) {
    .parts {
        width: 70%;
    }
}

@media (max-width: 540px) {
    .part-name {
        width: 100%;
    }

    .part-image {
        display: none;
    }
}