section.category {
    position: relative;
}
section.category::before,
section.category::after {
    content: '';
    position: absolute;
    top: -10%;
    width: 20%;
    height: 533px;
    background-size: cover;
    z-index: -1;
}
section.category::before {
    left: -5%;
    background-image: url('../images/tree-left.png');
}
section.category::after {
    right: -5%;
    background-image: url('../images/tree-right.png');
}
section.category .row a .icon img {
    width: 100%;
    height: auto;
    max-height: 170px;
}
section.category .row a .icon {
    border-radius: 10px;
    background-color: var(--light-green);
}
section.category .row a .text {
    color: var(--white);
    font-family: Poppins;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
section.category .row a:focus .text,
section.category .row a:hover .text,
section.category .row a:active .text {
    color: var(--primary)
}
section.category .row a:hover .icon,
section.category .row a:focus .icon,
section.category .row a:active .icon {
    background-color: var(--green)
}