#workExperiences {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#educations {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.work-experience-header {
    font-size: 32px;
    color: white;
    font-weight: 700;
}

.professionCard {
    color: white;
    background-color: #0f3654;
    padding: 12px 12px 12px 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    height: 112px;
    justify-content: center;
}

.professionCard-education {
    color: white;
    background-color: #0f3654;
    padding: 12px 12px 12px 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    height: 112px;
    justify-content: center;
}

@media(max-width:1030px) {
    .professionCard-education {
        height: clamp(112px, calc(361.6px - 13vw), 216px);
    }
}

.company-name {
    font-size: 18px;
    font-weight: 700;
}

.edu-pos {
    font-size: 14px;
}