.breadcumb-menu {
    max-width: 100%;
    padding: 0;
    list-style-type: none;
    position: relative;
    margin: 24px 0 -0.5em;
    li {
        display: inline-block;
        padding-right: 3px;
        list-style: none;
        position: relative;
        &:after {
            content: "/";
            position: relative;
            margin-left: 7px;
            font-weight: 400;
            font-size: 16px;
            color: $white-color;
        }

        &:last-child {
            padding-right: 0;
            margin-right: 0;

            &:after {
                display: none;
            }
        }
    }

    li,
    a,
    span {
        white-space: normal;
        color: inherit;
        word-break: break-word;
        font-weight: 500;
        font-size: 16px;
        font-family: $body-font;
        color: $white-color;
    }
    a:hover {
        color: $white-color;
        text-shadow: -0.3px -0.3px 0 $white-color, 0.3px 0.3px $white-color;
    }
    @include sm {
        margin-top: 25px;
    }
}

.breadcumb-title {
    color: $title-color;
    margin: -0.1em 0 -0.2em 0;
	line-height: 1.1;
    font-size: 60px;
    font-weight: 600;
    color: $white-color;
    z-index: 1;
    position: relative;
    @include ml {
        font-size: 48px;
    }
    @include lg {
        font-size: 44px;
    }
    @include sm {
        font-size: 40px;
    }
}

.breadcumb-wrapper {
    background-size: cover;
    padding: 220px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-color: rgba(11, 11, 11, 0.3); 
    &:after {
        content: '';
        position: absolute;
        inset: 0;
        border: 60px solid rgba(11, 11, 11, 0.3); 
        z-index: -1;
    }
    @include ml {
        padding: 150px 0;
        &:after {
            border: 30px solid rgba(11, 11, 11, 0.3); 
        }
    }
}
@include md {
    .breadcumb-wrapper {
        padding: 120px 0;
    }
}
@include xs {
    .breadcumb-title {
        font-size: 40px;
    }
    .breadcumb-menu {
        text-align: center;
        margin: 22px 0 -0.45em 0;
    }
    .breadcumb-menu li, .breadcumb-menu a, .breadcumb-menu span {
        font-size: 14px;
    }
    .breadcumb-wrapper {
        padding: 100px 0;
    }
}