.c-widget-career {
    margin-top: 200px;
}

.c-widget-career .career-content {
    display: flex;
    align-items: center;
    gap: 70px;
}

.c-widget-career .career-content > div {
    flex: 0 0 calc(50% - 35px);
    max-width: calc(50% - 35px);
}

.c-widget-career .career-text .rubix-title-h2 {
    margin-bottom: 10px;
}

.c-widget-career .career-text .career-desc {
    margin-bottom: 30px;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
}

.c-widget-career .more-career {
    color: #915CE5;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
}

.c-widget-career .career-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.c-widget-career .career-item {
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 5px 17px;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 192%;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .c-widget-career {
        margin-top: 150px;
    }
    .c-widget-career .career-content .career-image {
        display: none;
    }

    .c-widget-career .career-content > div {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}