.breadcumb-content {
    position: relative;

}

.breadcumb-menu {
    max-width: 100%;
    padding: 0;
    margin: 25px 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: "\f324";
            background-size: 100% 100%;
            top: -1px;
            display: inline-flex;
            position: relative;
            margin-left: 12px;
            font-weight: 700;
            font-size: 12px;
            color: inherit;
            font-family: $icon-font;
        }

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

            &:after {
                display: none;
            }
        }
    }

    li,
    a,
    span {
        white-space: normal;
        word-break: break-word;
        font-family: $body-font;
        font-weight: 400;
        font-size: 20px;
        color: $white-color;
    }
}

.breadcumb-title {
    margin: -0.23em 0 -0.18em 0;
    font-size: 64px;
    font-family: $title-font;
    color: $white-color;
    font-weight: 700;
    text-transform: capitalize;

}

.th-breadcumb-bg {
    position: absolute;
    inset: 0;
}


.breadcumb-wrapper { 
    position: relative;
    background-color: var(--title-color);
    background-position: left top;
    padding: 152px 0;
    overflow: hidden;
    text-align: center;
    background-repeat: repeat-x;
    background-size: cover;

    &::before {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        content: "";
        background: rgba(11, 20, 34, 0.8);
    }
}

@include lg {
    .breadcumb-wrapper {
        padding: 150px 0;
    }

    .breadcumb-title {
        margin: -0.18em 0 -0.18em 0;
        font-size: 54px; 
    }

    .breadcumb-menu {

        li,
        a,
        span {
            font-size: 16px;
            line-height: 26px;
        }
    }
}

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

@include sm {

    .breadcumb-title {
        font-size: 44px;
        line-height: 54px;
    }
}

@include xs {
    .breadcumb-wrapper {
        padding: 130px 0;
    }

    .breadcumb-title {
        font-size: 44px;
        line-height: 54px;
    }
}

@include vxs {
    .breadcumb-wrapper {
        padding: 120px 0;
    }

    .breadcumb-title {
        font-size: 34px;
        line-height: 44px;
    }

    .breadcumb-menu {
        margin: 15px 0 -0.5em 0;
    }
}