.usp,
.the_usps {
    display: flex;
    gap: var(--gap-l);
    align-items: center;
    justify-content: center;
}

.usp  .icon {
    min-width: 50px;
    height: 50px;
    border-radius: 50px;
    background: var(--colour-orange) no-repeat center / 24px;
}

.usp:nth-child(2)  .icon {
    background-size: 14px;
}
@media (max-width: 1024px) {
    .the_usps {
        display: grid;
        grid-template-columns: 1fr;
    }

    .the_usps > * {
        grid-area: 1 / 1;
        text-align: center;
        opacity: 0;
        transition: .3s;
    }
    .the_usps *.active {
        opacity: 1;
    }


}


@media (max-width: 640px) {
    .usp {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}
