.breadcumb-menu {
    max-width: 100%;
    padding: 0;
    margin: 35px 0 -0.5em 0;
    list-style-type: none;
    position: relative;
    li {
        display: inline-block;
        margin-right: 3px;
        padding-right: 3px;
        list-style: none;
        position: relative;

        &:after {
            content: "\f054";
            position: relative;
            margin-left: 6px;
            font-weight: 500;
            font-size: 15px;
            color: inherit;
            font-family: $icon-font;
        }

        &:last-child {
            padding-right: 0;
            margin-right: 0;
            color: $white-color;

            &:after {
                display: none;
            }
        }

        // &:last-child {
        //   &,
        //   a,
        //   span {
        //     color: $theme-color;
        //   }
        // }
    }

    li,
    a,
    span {
        white-space: normal;
        color: inherit;
        word-break: break-word;
        font-weight: 600;
        font-size: 18px;
        color: $white-color;
    }
}

.breadcumb-title {
    margin: -0.16em 0 -0.2em 0;
	line-height: 1.1;
    font-weight: 700;
    color: $white-color;
}

@media (min-width: 1300px) {
    .breadcumb-title {
        font-size: 56px;
    }
}

.breadcumb-wrapper {
    background-color: $title-color;
    padding: 153px 0 153px 0;
    overflow: hidden;
    text-align: center;
}

@include lg {
    .breadcumb-wrapper {
        padding: 130px 0 130px 0;
    }
	.breadcumb-menu {
        margin: 25px 0 -0.5em 0;
        li,
        a,
        span {
            font-size: 16px;
        }
    }
}

@include md {
    .breadcumb-wrapper {
        padding: 100px 0 100px 0;
    }
}

@include xs {
	.breadcumb-title {
		font-size: 34px;
	}
}