/*---------------------
  Breadcrumb
-----------------------*/
.breadcrumb-option {
    padding: 70px 0 60px;

    &.contact-breadcrumb {
        padding: 70px 0 260px;

        h2 {
            margin-bottom: 0;
        }
    }
}

.breadcrumb__text {

    h2 {
        color: $white-color;
        font-weight: 700;
        font-size: 46px;
        margin-bottom: 6px;
    }
}

.breadcrumb__links {

    a {
        font-size: 15px;
        color: $white-color;
        margin-right: 18px;
        display: inline-block;
        position: relative;

        &:after {
            position: absolute;
            right: -15px;
            top: 0;
            content: '\f105';
            font-family: "FontAwesome";
        }

        i {
            color: $primary-color;
            margin-right: 5px;
        }
    }

    span {
        font-size: 15px;
        color: #727171;
        display: inline-block;
    }
}