.services-section{
    /* line-height: ; */
    margin-top: 20vh;
    padding: 0 5% 2% 5%;
    
}
.services-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 2%;
}

.services-card{
    font-family: 'Raleway', Arial, sans-serif;
    position: relative;
    overflow: hidden;
    margin: 10px;
    min-width: 220px;
    /* max-width: 310px; */
    /* max-height: 310px; */
    width: 100%;
    background: #000000;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    font-size: 16px;
}

.services-card *{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
}

.services-card img{
    width: 100%;
    position: relative;
    opacity: 0.9;
}

.services-card-content{
    position: absolute;
    top: 45%;
    left: 7%;
    right: 7%;
    bottom: 45%;
    border: 1px solid white;
    border-width: 1px 1px 0;
}

.services-card-heading{
    overflow: hidden;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    position: absolute;
    bottom: 0;
    width: 100%;
}

.services-card h2{
    display: table;
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
    text-align: center;
    width: auto;
    text-transform: uppercase;
    font-weight: 400;
}

.services-card h2 span{
    font-weight: 800;
}

.services-card h2:before, .services-card h2:after{
    position: absolute;
    display: block;
    width: 1000%;
    height: 1px;
    content: '';
    background: white;
    top: 50%;
}

.services-card h2:before {
    left: -1000%;
}

.services-card h2:after {
    right: -1000%;
}

.services-card p{
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    width: 100%;
    padding: 0 20px;
    margin: 0;
    opacity: 0;
    line-height: 1.6em;
    font-size: 0.9em;
}

.services-card a{
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    z-index: 1;
}

.services-card:hover img, .services-card.hover img{
    opacity: 0.25;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.services-card:hover .services-card-content, .services-card.hover .services-card-content{
    top: 7%;
    bottom: 7%;
}

.services-card:hover p, .card.hover p{
    opacity: 1;
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
}