div.service {
    background-color: #0d1019;
    height: 400px;
    padding: 0 15px;
    margin-top: 25px;
    margin-left: 25px;
    border-radius: 7px;
    position: relative;

    -webkit-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.6);
    -moz-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.6);
    box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.6);
}

div.service img {
    display: block;
    margin: auto;
}

div.service div.information {
    position: absolute;
    width: calc(100% - 30px);
    bottom: 15px;
}

div.service div.information span.title {
    display: block;
    margin-top: 20px;
    text-align: center;
    color: #1f273d;
    line-height: 20px;
    font-weight: 700;
    font-size: 30px
}

div.service div.information span.info {
    display: block;
    text-align: center;
    color: #1f273d;
}

div.service div.information span.description {
    display: block;
    text-align: center;
    color: #1f273d;
}

div.service div.information button {
    display: block;
    width: 100%;
    border: none;
    outline: none;
    height: 50px;
    margin: auto;
    background-color: #191f31;
    transition: color 0.3s, background-color 0.3s;
    color: #2a3553;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 5px;
}

div.service div.information button:hover {
    background-color: #1d253a;
    color: #2c385a;
    transition: 0.3s;
}

div.row {
    width: 100%;
}

h3.title {
    text-align: center;
    margin-top: 20px;
    text-transform: uppercase;
    font-weight: 700;
}