/*** USP Band ***/

.usp_band {
    background-color: var(--tint-light-blue);
}

.usp_band .usp_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 45px;
    padding-bottom: 45px;
}

.usp_band .usp_section {
    border-right: 1px solid #C3CBE6;
    padding: 10px 30px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.usp_band .usp_section img {
    margin-right: 15px;
    height: 40px;
    width: auto;
}

.usp_band .usp_section p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 22px;
}

@media(max-width: 1199.98px) {
    .usp_band .usp_section {
        padding: 5px 20px;
    }

    .usp_band .usp_flex {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .usp_band .usp_section img {
        height: 20px;
        margin-right: 10px;
        margin-top: -2px;
    }

    .usp_band .usp_section p {
        margin-bottom: 0;
        font-size: 13px;
        line-height: 18px;
    }
}

@media(min-width:768px) {
    .usp_band .usp_section:last-of-type {
        border-right: none!important;
    }
}

@media(max-width: 767.98px) {
    .usp_band .usp_flex {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .usp_band .usp_section p {
        font-size: 12px;
        line-height: 15px;
        margin-top: 2px;
    }

    .usp_band .usp_section img {
        margin-top: 0px;
    }
    .usp_band .usp_section {
        border-right: none;
    }
}