.home .block-usps {
    margin-top: 2rem !important;
}

.usps-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
	gap: 4rem;
}

.usps-inner h3 {
    margin: 0 0 0.5rem;
}

.usps-inner p {
    margin: 0;
}
.usp-item {
    display: flex;
    gap: 1.5rem;
}
.usp-item:before {
    content: "";
    width: 2.5rem;
    min-width: 2.5rem;
    height: 2.5rem;
    display: inline-block;
    background: #00442A;
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='12' viewBox='0 0 15 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.17277 4.79976L0.369002 5.35839L0 6.12873L1.28156 7.56457L2.35082 9.11213L3.9141 10.5136L5.24113 12L6.65381 10.8933L7.87164 9.35501L9.21815 7.41641L11.5925 4.67994L12.7836 3.6068L15 0.75253L13.4891 0L11.8093 1.25894L10.4794 3.30482L8.56174 5.10457L6.89129 7.24437L5.4031 8.87856L3.9892 7.51518L2.75676 5.99514L1.17277 4.79976Z' fill='%23FFFFFF'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 100%;
}


/* Desktop small */
@media only screen and (max-width: 1100px) {
  .usp-item {
    flex-direction: column;
}
}

/* Tablet */
@media only screen and (max-width: 700px) {
  .usps-inner {
    grid-template-columns: 1fr;
}

.usp-item {
    flex-direction: row;
}
}


/* Iphone */
@media only screen and (max-width: 450px) {
  
}