*{
    margin:0;
    padding: 0
    box-sizing: border-box;
    list-style: none;
  text-decoration: none!important;
  transition: all ease .5s
}
.services {
    position: relative;
    overflow: hidden;
    z-index: 10;
    height: 100vh;
    background-color: rgba(0,0,0,.9);
}
.services__title img{
    width:300px;
}
.services__item__image--bg {
    z-index: -3;
    opacity: 0;
    width: 100vw;
}
.services__item__image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background-position: center;
    background-size: cover;
    z-index: -2;
    pointer-events: none;
    transition: opacity .5s;
    width: 300%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.services__item {
    padding: 2.4rem;
    justify-content: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-right: 1px solid transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}
.services__title {
    font-size: 24px;
    line-height: 2.8rem;
    color: #fff;
    transition: .3s ease-in-out;
    text-align:center;
    line-height:44px;
}
.services .col-md-3 {
    position: relative;
    overflow: hidden;
    height:100vh;
}
@media(max-width: 900px){
    .services .col-md-3 {
        height:30vh;
    }
}
.services .col-md-3:nth-child(3) .services__item__image {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.services .col-md-3:nth-child(5) .services__item__image {
    background-position: right;
    right: 0;
    left: auto;
}

.services .col-md-3:hover>.services__item .services__title {
    opacity: 1;
    font-size: 3rem;
}

@media (max-width: 900px) {
    .services .col-md-3 {
        height: 25vh;
    }
}