/****************************************
Breadcrumbs
****************************************/
.page__breadcrumbs {
    cursor: default;
    margin-bottom: 50px;
    padding-top: 12px;
}
.page__breadcrumbs a,
.page__breadcrumbs a:focus {
    font-family: var(--ff-primary);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #7A7A7A;
    text-decoration: none;
    position: relative;
    display: inline-block;
    margin-right: 30px;
}
.page__breadcrumbs a:hover,
.page__breadcrumbs a:active {
    color: #C61D54;
    text-decoration: none;
}
.page__breadcrumbs a::before {
    content: '';
    position: absolute;
    background-image: url('../../image/icon/breadcrumbs.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 8px 14px;
    width: 8px;
    height: 14px;
    z-index: 1;
    top: 8px;
    right: -20px;
    cursor: default;
    pointer-events: none;
}
.breadcrumb_last {
    font-family: var(--ff-primary);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #7A7A7A;
    cursor: default;
    display: inline-block;
}

@media screen and (max-width: 1201px) {
    
}

@media screen and (max-width: 992px) {
    .page__breadcrumbs {
        margin-bottom: 27px;
        padding-top: 5px;
    }
    .page__breadcrumbs a, 
    .page__breadcrumbs a:focus {
        font-size: 12px;
        line-height: 17px;
        margin-right: 25px;
    }
    .page__breadcrumbs a::before {
        background-size: 5px 10px;
        width: 5px;
        height: 10px;
        top: 4px;
        right: -17px;
    }
    .breadcrumb_last {
        font-size: 12px;
        line-height: 17px;
    }
}

@media screen and (max-width: 768px) {
    
}