#career-path-thumbnail div[class^="col-"] {
    margin-bottom: 14px;
    min-height: 270px;
}

#career-path-thumbnail .box {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: pointer;
}

    #career-path-thumbnail .box > h2 {
        position: absolute;
        bottom: 1px;
        left: 50%;
        transform: translate(-50%, 0%);
        width: 98%;
        color: #ffffff;
        font-size: 20px;
        font-style: normal;
        font-weight: 900;
        line-height: 22px;
        margin: 0 auto;
        padding: 10px 8px 9px 8px;
        z-index: 1;
        display: block;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    #career-path-thumbnail .box img {
        display: block;
        position: relative;
        -webkit-transition: all 0.4s ease-in;
        transition: all 0.4s ease-in;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #career-path-thumbnail .box:hover img {
        -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2);
    }

    #career-path-thumbnail .box .overlay {
        width: 100%;
        height: 100%;
        position: absolute;
        overflow: hidden;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 0;
        background: var(--komatsu-blue-gradient);
    }

        #career-path-thumbnail .box .overlay:hover {
            background: var(--komatsu-blue-rgb);
            z-index: 2;
        }

        #career-path-thumbnail .box .overlay h2 {
            color: var(--komatsu-yellow);
            text-align: center;
            font-size: 20px;
            font-style: normal;
            font-weight: 900;
            line-height: 25px;
            letter-spacing: 1px;
        }

        #career-path-thumbnail .box .overlay .info {
            display: inline-block;
            text-decoration: none;
            padding: 25px;
            background-color: transparent;
            -webkit-transform: scale(0.7);
            -ms-transform: scale(0.7);
            transform: scale(0.7);
            -webkit-transition: all 0.2s ease-in;
            transition: all 0.2s ease-in;
            opacity: 0;
            filter: alpha(opacity=0);
            color: #fff;
            font-size: 15px;
            font-weight: 400;
            line-height: 20px;
        }

    #career-path-thumbnail .box:hover .overlay .info {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }



    /* State Selected */
    #career-path-thumbnail .box.clicked:hover img {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    #career-path-thumbnail .box.clicked > h2 {
        z-index: 3;
    }

    #career-path-thumbnail .box.clicked .overlay {
        background: initial;
    }

        #career-path-thumbnail .box.clicked .overlay,
        #career-path-thumbnail .box.clicked .overlay:hover {
            background-color: rgba(0,0,0,0.3);
        }

            #career-path-thumbnail .box.clicked .overlay .info {
                opacity: 0;
            }

    #career-path-thumbnail .box.clicked img {
        filter: grayscale(100%);
    }
