.items {
    margin: 3.75rem 0;
    display: flex;
    flex-wrap: wrap;
    grid-gap: 1.25rem;
}
.items .item {
    width: calc((100% - 1.25rem) / 2);
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    transition: all .3s ease;
    background: #fff;
}
@media (any-hover: hover) {
    .items .item:hover {
        background-color: #216D36;
        border-color: #216D36;
    }
}
.items .item a {
    display: block;
    height: 100%;
    padding: 1.5rem 6.25rem;
    position: relative;
}
.items .item a:before {
    content: '';
    width: 2rem;
    height: 2rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/icon-4-1.png);
    position: absolute;
    left: 2.5rem;
    top: calc(50% - 1rem);
    transition: all .3s ease;
}
@media (any-hover: hover) {
    .items .item:hover a:before {
        background-image: url(../img/icon-4-2.png);
    }
}
.items .item .tit {
    padding-left: 2rem;
    border-left: 1px solid #e8e8e8;
    font-size: max(16px, 1.125rem);
    color: #333333;
    transition: color .3s ease;
}
@media (any-hover: hover) {
    .items .item:hover .tit {
        color: #fff;
    }
}
.items .item a:after {
    content: '';
    width: 1.7rem;
    height: 1.7rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/icon-5-1.png);
    position: absolute;
    right: 2.5rem;
    top: calc(50% - 0.625rem);
    transition: all .3s ease;
}
@media (any-hover: hover) {
    .items .item:hover a:after {
        background-image: url(../img/icon-5-2.png);
    }
}
@media screen and (max-width: 767px) {
    .items .item {
        width: 100%;
    }
    .items .item a {
        padding: 1.5rem 5rem;
    }
    .items .item a:before {
        left: 2rem;
    }
    .items .item .tit {
        font-size: 14px;
    }
    .items .item a:after {
        right: 2rem;
    }
}




















