

.services {
    margin: 20px 0;
}

.service {
    /*margin-top: 20px;*/
    width: 100%;
    height: 320px;
    /*margin: 80px 0;*/
    text-align: center;
    border: 1px solid #BBB;
    box-shadow: 3px 3px 20px rgba(0,0,0,0.2);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .service .icon-holder {
        position: relative;
        top: 100px;
        display: inline-block;
        margin-bottom: 40px;
        padding: 10px;
        /*background: white;*/
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .service .heading {
        color: #1d82c5;
        position: relative;
        top: 80px;
        -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
        transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .service .icon-holder > img.icon {
        width: 60px;
    }

    .service:hover {        
        box-shadow: 0 0 40px rgba(74, 195, 243, 0.6);
        -webkit-box-shadow: 0 0 40px rgba(74, 195, 243, 0.6);
    }

        .service:hover .icon-holder {
            top: -30px;
        }

        .service:hover .heading {
            top: -30px;
        }

    .service .description {
        width: 80%;
        margin: 0 auto;
        opacity: 0;
        -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
        transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }

    .service:hover .description {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
