.item-career {
    border-radius: 15px;
    background: #fff;
    box-shadow: 0px 16px 40px 0px rgba(18, 92, 88, 0.08);

    .title {
        border-radius: 15px 15px 0px 0px;
        background: #69C4BF;
        color: #fff;
        font-size: 18px;
        font-family: "Gotham Rounded";
        padding: 9.26px 24px;
    }
    .title:hover{
        background: var(--COLORS-SECONDARY);
        color: var(--FONTS-WHITE);
    }
    .excerpt {
        padding: 20px 24px 0;
    }
    .car-det {
        border-radius: 10px;
        border: 1px solid #E9ECEF;
        background: #F9FAFC;
        padding: 15px 6px 15px 17px;
        margin: 25px 24px 22px;
    }
    .cd-item .lbl {
        font-family: "Gotham Rounded", sans-serif;
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
    .cd-item .val {
        font-family: "Gotham Rounded", sans-serif;
        font-size: 13px;
        font-style: normal;
        font-weight: 350;
        line-height: 22px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
    .cd-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
    }
    .cd-item:last-child {
        margin-bottom: 0;
    }
    .more-link {
            color: var(--COLORS-PRIMARY);
            font-family: "Gotham Rounded";
            font-size: 13px;
            font-weight: 700;
            line-height: 1.923;
            letter-spacing: 0.13px;
            text-transform: uppercase;
            position: relative;
            display: block;
            width: fit-content;
            padding: 10px 30px;
            border-radius: 500px;
            overflow: hidden;
            &:before {
                content: '';
                display: inline-block;
                width: 45px;
                height: 45px;
                border-radius: 500px;
                background: #F3F4F6;
                position: absolute;
                left: 0;
                top: 50%;
                translate: 0 -50%;
                transition: width 0.5s ease , background 0.3s ease;
                pointer-events: none;
            }
            span {
                position: relative;
                z-index: 1;
            }
            
        }
    .link-container {
        padding: 0 24px 25px;
    }

    &:hover .more-link {
        color: #fff;
    }
    &:hover .more-link:before {
        width: 100%;
        background: var(--COLORS-PRIMARY);
    }


}


@media(max-width: 767px){
    .item-career {

        .title {
            padding: 9px 15px;
        }
        .excerpt {
            padding: 20px 15px 0;
        }
        .car-det {
            margin: 20px 15px;
        }
        .cd-item {
            display: flex;
            flex-direction: column;
            align-items: start;
        }
        
    }
    
}