#section-usps-inner {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

.section-usps-item {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
}

.section-usps-item:not(:last-of-type){
    margin-bottom: 150px;
}

.section-usps-item:nth-of-type(even) .section-usps-item-image {
    order: 2;
}

.section-usps-item-image {
    width: 35%;
    position: relative;
    padding: 0 20px;
}

.section-usps-item-image img {
    width: 100%;
    height: auto;
    min-width: 100px;
    max-width: 440px;
    margin: 0 auto;
    display: block;
}

.section-usps-item-content {
    width: 65%;
}

.section-usps-item-content-title {
    font-size: 25px;
    line-height: 32px;
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.section-usps-item-content-subtitle {
    font-size: 60px;
    line-height: 70px;
    font-family: var(--font-heading);
    margin-bottom: 40px;
}

.section-usps-item-content-text {
    max-width: 520px;
    font-size: 16px;
    line-height: 30px;
}

@media only screen and (max-width: 1280px) {
    .section-usps-item-content-title {
        font-size: 20px;
        line-height: 26px;
    }
    .section-usps-item-content-subtitle {
        font-size: 40px;
        line-height: 50px;
    }
}

@media only screen and (max-width: 800px) {
    .section-usps-item-content-title {
        font-size: 18px;
        line-height: 24px;
    }
    .section-usps-item-content-subtitle {
        font-size: 35px;
        line-height: 45px;
    }

    .section-usps-item-image {
        padding: 0 30px;
        width: 35%;
    }
    .section-usps-item-content {
        width: 65%;
    }
}

@media only screen and (max-width: 600px) {
    .section-usps-item:not(:last-of-type){
        margin-bottom: 50px;
    }
    .section-usps-item-content-title {
        text-align: center;
    }
    .section-usps-item-content-subtitle {
        font-size: 35px;
        line-height: 45px;
        text-align: center;
        margin-bottom: 20px;
    }
    .section-usps-item {
        flex-direction: column;
    }
    .section-usps-item-image {
        width: 100%;
    }
    .section-usps-item-content {
        width: 100%;
    }

    .section-usps-item:nth-of-type(odd) .section-usps-item-image,
    .section-usps-item:nth-of-type(even) .section-usps-item-image {
        order: 0;
    }

    .section-usps-item-image img {
        max-width: 200px;
    }
}