.equ-inner {
    margin: 0 auto;
    max-width: 1000px;
}
h2 {
    font-size: 25px;
    color: #be9461;
    border-left: 3px solid;
    line-height: 1em;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: 0.1em;
}
h2 span {
    background: white;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}
h2::after {
    content: "";
    width: 100%;
    height: 2px;
    background: #be9461;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.equ-list {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}
.equ-list li {
    width: 25%;
    padding: 10px;
}
.equ-list li p {
    font-size: 14px;
    text-align: center;
}
@media (max-width: 767px) {
    h2 {
        font-size: 20px;
    }
    .equ-list li {
        width: 50%;
    }
    .equ-list li p {
        font-size: 12px;
    }
}