section.services {
    position: relative;
}
section.services::before,
section.services::after {
    content: '';
    position: absolute;
    top: 30%;
    width: 20%;
    height: 533px;
    background-size: cover;
    z-index: -1;
}
section.services::before {
    left: -5%;
    background-image: url('../images/tree-left.png');
}
section.services::after {
    right: -5%;
    background-image: url('../images/tree-right.png');
}
section.services .row .service {
    background-color: var(--white);
    padding: 38px 10px;
    text-align: center;
    border-radius: 20px;
}
section.services .row .service .icon img {
    max-height: 158px;
    max-width: 158px;
    padding: 25px;
    border-radius: 100%;
    background: var(--light-green);
}
section.services .row .service .title {
    color: var(--primary);
    text-align: center;
    font-family: Poppins;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
section.services .row .service .details {
    color: var(--black);
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}
section.services .row .service a {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}