.tilesWrap {
    padding: 0;
    margin: 50px auto;
    list-style: none;
    text-align: center;
}

.tilesWrap li {
    display: inline-block;
    width: 20%;
    height: 262px;
    min-width: 200px;
    max-width: 230px;
    padding: 80px 20px 40px;
    position: relative;
    vertical-align: top;
    margin: 25px;
    font-family: 'helvetica', san-serif;
    min-height: 25vh;
    background: white;
    border: 1px solid #006BB6;
    text-align: left;
    box-shadow: 0px 0 30px rgb(34 34 34 / 14%);
}

.tilesWrap li h2 {
    font-size: 100px;
    margin: 0;
    position: absolute;
    opacity: 0.2;
    top: 50px;
    right: 10px;
    transition: all 0.3s ease-in-out;
}

.tilesWrap li h3 {
    font-size: 14px;
    color: black;
    margin-bottom: 15px;
}

.tilesWrap li p {
    font-size: 16px;
    line-height: 18px;
    color: black;
    margin-top: 5px;
}

.tilesWrap li button {
    background: transparent;
    border: 1px solid #b7b7b7;
    padding: 10px 20px;
    color: #b7b7b7;
    border-radius: 3px;
    position: relative;
    transition: all 0.3s ease-in-out;
    transform: translateY(-40px);
    opacity: 0;
    cursor: pointer;
    overflow: hidden;
}

.tilesWrap li button:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 120%;
    background: #b7b7b7;
    top: 0;
    opacity: 0;
    left: -140px;
    border-radius: 0 20px 20px 0;
    z-index: -1;
    transition: all 0.3s ease-in-out;

}

.tilesWrap li:hover button {
    transform: translateY(5px);
    opacity: 1;
}

.tilesWrap li button:hover {
    color: #262a2b;
}

.tilesWrap li button:hover:before {
    left: 0;
    opacity: 1;
}

.tilesWrap li:hover h2 {
    top: 0px;
    opacity: 0.6;
}

.tilesWrap li:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    background: #fff;
    transform: skew(2deg, 2deg);
}

.tilesWrap li:after {
    content: '';
    position: absolute;
    width: 40%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.02);
}

.tilesWrap li:nth-child(1):before {
    background: #006BB6;
    background: -webkit-linear-gradient(to right, #006BB6, #f1f6fe);
    background: linear-gradient(to right, #006BB6, #f1f6fe);
}

.tilesWrap li:nth-child(2):before {
    background: #006BB6;
    background: -webkit-linear-gradient(to right, #006BB6, #f1f6fe);
    background: linear-gradient(to right, #006BB6, #f1f6fe);
}

.tilesWrap li:nth-child(3):before {
    background: #006BB6;
    background: -webkit-linear-gradient(to right, #006BB6, #f1f6fe);
    background: linear-gradient(to right, #006BB6, #f1f6fe);
}

.tilesWrap li:nth-child(4):before {
    background: #006BB6;
    background: -webkit-linear-gradient(to right, #006BB6, #f1f6fe);
    background: linear-gradient(to right, #006BB6, #f1f6fe);
}