.career-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skills-centre > strong {
    color: var(--main-theme-el-color);
}

.skills-centre .tree,
.skills-centre .tree ul {
    margin: 0 0 0 1em;
    /* indentation */
    padding: 0;
    list-style: none;
    color: #666;
    position: relative;
}

.skills-centre .tree ul {
    margin-left: .5em
}

/* (indentation/2) */

.skills-centre .tree:before,
.skills-centre .tree ul:before {
    content: "";
    display: block;
    width: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    border-left: 1px solid;
}

.skills-centre .tree li {
    margin: 0;
    padding: 0 1.5em;
    /* indentation + .5em */
    line-height: 2em;
    /* default list item's `line-height` */
    font-weight: bold;
    position: relative;
}

.skills-centre .tree li:before {
    content: "";
    display: block;
    width: 10px;
    /* same with indentation */
    height: 0;
    border-top: 1px solid;
    margin-top: -1px;
    /* border top width */
    position: absolute;
    top: 1em;
    /* (line-height/2) */
    left: 0;
}

.skills-centre .tree li:last-child:before {
    background: white;
    /* same with body background */
    height: auto;
    top: 1em;
    /* (line-height/2) */
    bottom: 0;
}

.badges-wrapper .badge {
    background-color: var(--main-theme-el-bg);
    color: var(--main-theme-el-color);
}

.cr-input-field, .cr-input-field::placeholder {
    color: #333;
    opacity: 1 !important;
    font-size: 0.9rem;
}
.cr-label {
    color: #333 !important;
}

.msg-specification {
    height: 140px;
    max-height: 200px;
}

@media screen and (max-width: 991px) {
    .carrers-wrapper {
        gap: 1.75rem;
    }

    .cr-container {
        margin-bottom: 0 !important;
    }
}