.breadcrumb {
    font-weight: 500;
    font-size: calc(24px * .75);
    line-height: calc(29px * .75);
    color: #2E2828;
    width: 100%;
    display: flex;
    align-items: center;
    position: fixed;
    top: 8.17vw;
    text-transform: uppercase;
}

.breadcrumb-title {
    width: 8.25vw;
}

.breadcrumb-line {
    width: 13.02vw;
    height: 1px;
    background: #3C3838;
    margin-left: 1.56vw;
}

.breadcrumb-child {
    font-size: calc(22px * .75);
    line-height: calc(26px * .75);
    letter-spacing: calc(.04em * .75);
    color: #2E2828;
    text-transform: capitalize;
    margin-left: 2.23vw;
}

.mobile-child-breadcrumb {
    width: calc(100vw - 10.38vw);
    margin-left: -5.19vw;
    padding: 7.2vw 5.19vw 2.43vw 5.19vw;
    background-color: #f4f4f4;
    display: none;
}

.category-arrow {
    width: 10px;
    height: 18px;
    background-color: #f4f4f4;
    color: #707070;
    font-size: 18px;
    line-height: 18px;
    position: absolute;
    top: 0px;
    right: -2px;
    z-index: 300;
    text-align: center;
}

.mobile-child-breadcrumb ul {
    width: 100%;
    padding-left: 0;
    display: flex;
    overflow-x: auto;
}

.mobile-child-breadcrumb ul::-webkit-scrollbar {
    width: 0px;
}

.mobile-child-breadcrumb ul li {
    min-width: 60px;
    margin-right: 10vw;
    display: block;
    list-style-type: none;
    text-align: center;
}

.mobile-child-breadcrumb li a {
    font-size: 12px;
    line-height: 14px;
    color: #707070;
}

.mobile-child-breadcrumb li .active-child-menu {
    color: #D2A460;
}

@media only screen and (max-width: 349px) {
    .breadcrumb {
        font-size: 18px;
        line-height: 22px;
        top: 20vw;
    }

    .breadcrumb-title {
        width: 30vw;
    }

    .breadcrumb-line {
        width: calc(100vw - 24.67vw - 10.38vw);
    }

    .breadcrumb-child {
        display: none;
    }

    .mobile-child-breadcrumb {
        display: block;
    }
}

@media only screen and (min-width: 350px) and (max-width: 565px) {
    .breadcrumb {
        font-size: 18px;
        line-height: 22px;
        top: 20vw;
    }

    .breadcrumb-title {
        width: 29.67vw;
    }

    .breadcrumb-line {
        width: calc(100vw - 29.67vw - 10.38vw);
    }

    .breadcrumb-child {
        display: none;
    }

    .mobile-child-breadcrumb {
        display: block;
    }
}

@media only screen and (min-width: 566px) and (max-width: 767px) {
    .breadcrumb-title {
        width: 20vw;
    }

    .breadcrumb-line {
        width: 30.78vw;
    }

    .mobile-child-breadcrumb {
        width: calc(100vw - 10.38vw - 20.65vw);
        display: block;
    }
} 

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .breadcrumb-title {
        width: 14.67vw;
    }

    .breadcrumb-line {
        width: 30.78vw;
    }

    .mobile-child-breadcrumb {
        width: calc(100vw - 10.38vw - 20.65vw);
        display: block;
    }
} 

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .breadcrumb-title {
        width: 10.67vw;
    }

    .breadcrumb-line {
        width: 30.78vw;
    }
} 

@media only screen and (min-width: 1600px) {
    .breadcrumb {
        font-size: calc(24px * 1);
        line-height: calc(29px * 1);
    }

    .breadcrumb-child {
        font-size: calc(22px * 1);
        line-height: calc(26px * 1);
        letter-spacing: calc(.04em * 1);
    }
}