
.wrap-career-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -40px;
}

.wrap-career-list .card-career-list {
    width: calc(50% - 40px);
    margin-left: 40px;
}

.card-career-list {
    border: 1px solid #ECECEC;
    border-radius: 16px;
    padding: 30px 30px 28px 30px;
    background: #fff;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.card-career-list .inner {
    flex-shrink: 0;
}

.card-career-list .title {
font-size: 20px;
font-weight: 600;
line-height: 28px;
margin-bottom: 10px;
}

.card-career-list ul {
    display: flex;
    align-items: center;
    gap: 10px 20px;
    flex-wrap: wrap;
}

.card-career-list ul li {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 300;
    line-height: 19.6px;
    color: #5C5E61;
    gap: 6px;
}

.card-career-list ul li.salary i {
    color: #000000;
}

.card-career-list ul li.salary span {
    color: var(--theme-primary-color);
}

.card-career-list ul li i {
    font-size: 18px;
}

.card-career-list a {
    border: 1px solid var(--theme-primary-color);
    color: var(--theme-primary-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    padding: 10px 19px;
    border-radius: 12px;
    display: inline-block;
}

.card-career-list a:hover {
    background: var(--theme-primary-color);
    color: #fff;
}

/* list services */

.wrap-services-list .card-services-list {
    position: relative;
}

.wrap-services-list .card-services-list:first-child .title {
    border-top: 1px solid #000;
}

.wrap-services-list .card-services-list .title {
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    color: #2C2E33;   
    padding: 29px 0; 
    display: block;
    border-bottom: 1px solid #000000;
}

.wrap-services-list .card-services-list .title span {
font-size: 24px;
font-weight: 400;
line-height: 30px;
color: #A8ABAE;
margin-right: 19px;
}

.wrap-services-list .card-services-list .title:hover,
.wrap-services-list .card-services-list.active .title,
.wrap-services-list .card-services-list .title:hover span,
.wrap-services-list .card-services-list.active .title span {
    color: var(--theme-primary-color) !important;
}

.wrap-services-list .card-services-list .thumbnail {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 34px;
    opacity: 0;
    transform: rotate(4deg) scale(.8) translateY(calc(-50% + 14px));
    transition: opacity .35s, transform .5s ease-out;
}

.wrap-services-list .card-services-list .thumbnail .inner {
    -webkit-animation: to-top 7s infinite linear;
    animation: to-top 7s infinite linear;
}

@keyframes to-top {
    0%, 100% {
        transform: translateY(0px);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    50% {
        transform: translateY(-15px);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
}

.wrap-services-list .card-services-list .thumbnail img {
    width: 337.71px;
    height: 215.61px;
    border-radius: 16px;
    transform: rotate(-10deg);
}

.wrap-services-list .card-services-list.active .thumbnail {
    transform: rotate(0) scale(1) translateY(-50%);
    opacity: 1;
}

@media only screen and (max-width: 1200px) {
    .wrap-services-list .card-services-list .thumbnail img {
        width: 200px;
        height: 100px;
    }
    .wrap-services-list .card-services-list .title,
    .wrap-services-list .card-services-list .title span {
        font-size: 20px;
    }
    .wrap-services-list .card-services-list .thumbnail {
        right: 0px;
    }
}

@media only screen and (max-width: 991px) {
    .card-career-list {
        flex-direction: column;
    }
}

@media only screen and (max-width: 767px) {
    .wrap-career-list .card-career-list {
        width: calc(100% - 40px);
    }
    .wrap-services-list .card-services-list .thumbnail img {
        width: 100px;
        height: 60px;
    }
}