.the_usps {
    display: flex;
    background: var(--Red);
    padding: 20px;
    justify-content: center;
}


.the_usps p {
    margin: 0;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;

}

.the_usps > div {
    display: flex;
    align-items: center;

}

.usp {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.usp .icon {
    width: 30px;
    height: 30px;
    background: no-repeat center / contain;
}
.the_usps > div:after {
    content: '';
    height: 35px;
    width: 1px;
    margin: 0 clamp(15px, 2vw, 50px);
    background: #fff;
    position: relative;
    top: -2px;

}

.the_usps > div:last-child:after {
    display: none;
}

@media (max-width: 1300px) {
    .the_usps {
        display: grid;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .the_usps > div:after {
        display: none;
    }

    .the_usps > div {
        grid-area: 1 / 1;
        text-align: center;
        opacity: 0;
        transition: .3s;
    }
    .the_usps >div.active {
        opacity: 1;
    }
    .the_usps > div {
        display: block;
    }
}