.i51homegrid {
    margin: 0 auto;
    max-width: 100%;
    position: relative;
    text-align: center;
    display: flex;
    -webkit-clip-path: url(#wave);
    clip-path: url(#wave);
}

.i51homegrid > div {
    flex-basis: 50%;
}

.gridleft {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
}

.gridleftinner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: rgb(5, 5, 7);
    background-color: rgba(5, 5, 7, 0.4);
    position: relative;
    background-position: 30%, center;
    background-repeat: no-repeat;
    background-size: 20% auto;
}

.gridrightinner {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
}

.i51homegrid .griditem {
    background: #65855C;
    border: 0 none;
    box-shadow: none;
    box-sizing: border-box;
    cursor: pointer;
    height: auto;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    text-align: center;
    vertical-align: top;
    width: auto;
    z-index: auto;
    flex-basis: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gridinner {
    color: #FFFFFF;
    padding: 5px;
}

.gridleft h2 {
    font-size: 34px;
    line-height: 1.2;
    color: white;
    font-family: Open Sans;
    transition: all .2s ease-in-out;
}

.gridleft:hover h2 {
	font-size: 36px;
}

.gridright h3 {
    text-transform: capitalize;
    color: white;
    font-weight: 300;
    margin-bottom: 10px !important;
    font-family: Open Sans;
    font-size: 20px;
}

.gridlink {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    font-size: 0;
}

.i51homegrid .griditem img {
    -webkit-transition: all 0.35s ease 0s;
    -ms-transition: all 0.35s ease 0s;
    -o-transition: all 0.35s ease 0s;
    transition: all 0.35s ease 0s;
    margin: 15px;
    max-width: 100px;
}

.i51homegrid .griditem:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

@media (max-width: 767px){
    .i51homegrid {
    	flex-wrap: wrap;
    }
    
    .i51homegrid > div {
    	flex-basis: 100%;
    }
    
.gridleft {
	min-height: 300px;
}
}
