
#our-classes .our-inner {
    margin-top: 10px;
}

.our-inner {
    position: relative;
    background-color: #eaeaea;
    padding-top: 5px;
}

    .our-inner h2 {
        padding: 0 20px;
        position: relative;
        z-index: 10;
    }

        .our-inner h2 a {
            color: #1a1b1d;
            font-weight: bold;
            font-size: 20px;
            display: block;
            -webkit-transition: all 0.3s linear;
            -o-transition: all 0.3s linear;
            transition: all 0.3s linear;
        }
        

    .our-inner p {
        padding: 0px 20px;
        font-weight: 300;
        font-size: 14px;
        color: #888888;
        position: relative;
        margin-top: 5px;
        margin-bottom: 25px;
        z-index: 10;
        -webkit-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
    }

        .our-inner p:after {
            position: absolute;
            height: 1px;
            background-color: #1a1b1d;
            width: 28px;
            display: block;
            bottom: -10px;
            content: '';
            -webkit-transition: all 0.3s linear;
            -o-transition: all 0.3s linear;
            transition: all 0.3s linear;
        }

.our-pic {
        margin-top: 30px;
        overflow: hidden;
    }

.our-pic img {
            width: 100%;
            display: block;
            -webkit-transform: scale(1);
            -ms-transform: scale(1);
            -o-transform: scale(1);
            transform: scale(1);
            -webkit-transition: all 0.3s linear;
            -o-transition: all 0.3s linear;
            transition: all 0.3s linear;
        }

    .our-inner:after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(101,128,146,0.8);
        display: block;
        content: '';
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        -webkit-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
    }

    .our-inner .our-link-group {
        position: absolute;
        width: 100%;
        text-align: center;
        font-size: 0;
        top: 60%;
        z-index: 10;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        -webkit-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
    }

        .our-inner .our-link-group a {
            display: inline-block;
            text-align: center;
            font-size: 12px;
            padding: 5px 15px;
            color: #fff;
            margin: 3px 5px;
            border: 1px solid #fff;
            -webkit-transition: all 0.3s linear;
            -o-transition: all 0.3s linear;
            transition: all 0.3s linear;
        }

            .our-inner .our-link-group a:hover {
                border: 1px solid #ff4647;
            }

    .our-inner:hover h2 a {
        color: #fff !important;
    }
    
    .our-inner:hover p {
        color: #fff;
    }
    .our-inner h2 a:hover{
        -webkit-transform: scale(1.05);
         -ms-transform: scale(1.05);
         -o-transform: scale(1.05);
         transform: scale(1.05); 
    }
    .our-inner:hover::after {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    .our-inner:hover p:after {
        background-color: #fff;
    }

    .our-inner:hover .our-link-group {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    .our-inner:hover .our-pic img {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }
