
        .c-breadcrumbs__list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            padding: 1rem 5rem;
            margin: 0;
            font-family: "Open Sans", sans-serif;
        }

        .c-breadcrumbs__item {
            margin-right: 8px;
        }

        .c-breadcrumbs__item::after {
            content: ">";
            margin-left: 8px;
        }

        .c-breadcrumbs__item:last-child::after {
            content: "";
        }

        .c-breadcrumbs__name {
            font-weight: normal;
            font-size: 14px;
            line-height: 20px;
            color: rgb(84, 86, 90);
        }

       .c-breadcrumbs__item a{
            text-decoration: underline;
             color: rgb(84, 86, 90);
        }
        .c-breadcrumbs__item a:hover{
           text-decoration: none;
        }
        .c-breadcrumbs__item:last-child .c-breadcrumbs__name {
            font-weight: bold;
        }
         .c-breadcrumb__item--sep-arrow .c-breadcrumbs__item::after {
            content: ">";
            margin-left: 8px;
        }
         .c-breadcrumb__item--sep-slash .c-breadcrumbs__item::after {
            content: "/";
            margin-left: 8px;
        }
        .c-breadcrumb__item--sep-arrow .c-breadcrumbs__item:last-child::after,
         .c-breadcrumb__item--sep-slash .c-breadcrumbs__item:last-child::after{
            content: "";
        }

        @media (max-width: 767px) {
            .c-breadcrumbs__list {
                   padding: 1rem 1rem;
            }
            }
