* {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

.page {
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page__wrapper {
    max-width: 1300px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* 

NEW START

*/

.service__wrapper {
    width: max(100% / 3, 300px);
    min-height: 490px;
}

.service__content {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    padding: 15px;
    position: relative;
    margin: 5px;
}

.service__content.lf {
    background: linear-gradient(45deg, #8bc34a, #558b2f);
}

.service__content > * {
    margin-bottom: 10px;
}

.service__title{
    color: #fff;
    font-size: 180%;
}

.service__image {
    overflow: hidden;
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid #fff;
}

.service__image img {
    width: 100%;
}

.service__content.lf .service__image img {
    background-color: #fff;
}

.service__content.rd .service__image img {
    background: linear-gradient(45deg, #FF9800, #FF5722);
}


.service__description {
    color: #fff;
    font-size: 20px;
}

.service__link {
    background-color: #fff;
    padding: 10px 20px;
    text-align: center;
    font-size: 20px;
    position: absolute;
    right: 15px;
    bottom: 15px;
    left: 15px;
    color: #7f7f7f;
    text-transform: uppercase;
}

.service__link:hover {
    background-color: #f5f5f5;
}

/* 

NEW END

*/

.service {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 5px #ccc;
}

.service:hover {
    box-shadow: 0 0 0 #ccc;
}

.service .name {
    text-shadow: 0 0 2px #6b6b6b
}

.lf {
    background: linear-gradient(45deg, #8bc34a, #558b2f);
    border: 1px solid #33691e;
}

.lf .name {
   color: #fff;
   font-weight: bold;
   font-size: 16px;
}

.rd {
    background: linear-gradient(45deg, #FF9800, #FF5722);
    border: 1px solid #ad2a00;
}

.rd .name {
   color: #fff;
   font-weight: bold;
   font-size: 16px;
}