.description-about-me {
    width: 900px;
    text-align: justify;
}

.jobs {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
}

.job {
    width: 300px;
    height: 300px;
    overflow: hidden;
    position: relative;
    background-color: var(--white);
    box-shadow: 0 0 20px var(--shadow);
    border-radius: 20px;
    cursor: pointer;
}

.primary-information-job {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.icon-job {
    font-size: 32px;
}

.description-job {
    background-color: var(--white);
    position: absolute;
    top: calc(100% - 20px);
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    color: var(--white);
    font-size: 18px;
    transition: all 0.5s;
}

.job:hover .description-job {
    top: 0;
}

.jobs .job:nth-child(1) .icon-job {
    color: var(--color-one);
}

.jobs .job:nth-child(2) .icon-job {
    color: var(--color-two);
}

.jobs .job:nth-child(3) .icon-job {
    color: var(--color-three);
}

.jobs .job:nth-child(4) .icon-job {
    color: var(--color-four);
}

.jobs .job:nth-child(1) .description-job {
    background-color: var(--color-one);
}

.jobs .job:nth-child(2) .description-job {
    background-color: var(--color-two);
}

.jobs .job:nth-child(3) .description-job {
    background-color: var(--color-three);
}

.jobs .job:nth-child(4) .description-job {
    background-color: var(--color-four);
}

@media (max-width: 1350px) {
    .description-about-me {
        width: calc(100% - 100px);
    }

    .job {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 600px) {
    .description-about-me {
        width: 100%;
    }
}