.usps_section {
    width: 100%;
    background: var(--primary);

    & .container {
        padding-top: 50px;
        padding-bottom: 50px;

        & .section_inner {
            & .usps_outer {
                @media (min-width: 992px) {
                    display: flex;
                    flex-direction: row;
                }

                & .usp {
                    display: flex;
                    flex-direction: column;
                    align-items: center;

                    @media (min-width: 992px) {
                        width: 25%;
                    }

                    & img {
                        width: 8.2rem;
                        max-width: 100%;
                    }

                    & p {
                        width: 100%;
                        text-align: center;
                        font-family: "Aboreto", arial;
                        font-size: 2rem;
                        margin: 2rem 0 0;
                        color: var(--white);
                    }
                }

                & .slick-dots {
                    position: relative;
                    margin: 3rem 0 0;

                    & li {
                        margin: 0 .5rem;

                        & button {
                            background: rgba(255, 255, 255, .25);
                        }

                        &.slick-active {
                            & button {
                                background: var(--white) !important;
                            }
                        }
                    }
                }
            }
        }
    }
}
