a {
    text-decoration: none;
    color: #070157;
    transition: 0.5s ease;
}
.clear {
    clear: both;
}
.alignright {
    float: right;
    margin-left: 15px;
    margin-bottom: 10px;
}
.alignleft {
    float: left;
    margin-right: 15px;
    margin-bottom: 10px;
}
strong{
    font-weight: 400;
}
body {
    font-family: 'Roboto', sans-serif;
    height: 100%;
    width: 100%;
}
.wrapper {
    margin: 0 auto;
    padding: 100px 0 0;
    text-align: center;
    width: 60%;
}
.logo {
    position: absolute;
    width: 180px;
    top: 6%;
    left: 3%;
    z-index: 10;
}
.logo img {
    width: 100%;
}
.services {
}
.services ul li {
    background: #fff none repeat scroll 0 0;
    border: 5px solid #af2024;
    display: inline-block;
    margin: 0 35px 0 0;
    width: 44%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}
.img-container{
    overflow: hidden;
}
.services ul li img {
    transform: scale(1, 1);
    transition-duration: 500ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
    width: 100%;
}
.services ul li:hover img {
    transform: scale(1.1, 1.1);
    transition-duration: 500ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.services ul li h1 {
    background: rgba(51,51,51,0.8);
    font-size: 20px;
    padding: 15px 0;
    color: #fff;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-transform: uppercase;
}
.services ul li:last-child{
    margin-right: 0;
}
.services ul li a{
    text-decoration: none;
 }
 .services ul li:hover{
    
 }
.hlanding ul li{
    width: 50%;
    float: left;
    height: 100vh;
    background: url("../images/products2.jpg")no-repeat;
    background-size: cover;
    position: relative;
}
.hlanding ul li:nth-child(2n){
    background: url("../images/services2.jpg")no-repeat;
    background-size: cover;
}
.hlanding ul li:hover .desc{
    opacity: 1;
}
.desc{
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: 0.5s ease;
    opacity: 0;
}
.hlanding ul li img{
    width: 100%;
}
.hlanding ul li h1{
    position: absolute;
    bottom: 20px;
    text-align: center;
    left: 0;
    right: 0;
    color: #fff;
    font-size: 4em;
    background: rgba(0 ,0,0,0.5);
    width: 50%;
    margin: 0 auto;
    padding: 20px;
    z-index: 10;
    transition: 0.5s ease;
}
.hlanding ul li:hover h1{
    background: #af2024;
}