.bread{	
    background: #fff;
    max-width: 1426px;
    position: relative;
    margin-right: auto;
    margin-left: auto;	
	padding: 110px 5% 10px;
}
.bread ul {
  display:flex;
  align-items:center;
  list-style:none;
  margin:0;
  gap:0;
  font-size:14px;
}

.bread ul li{
  position:relative;
  display:flex;
  align-items:center;
}

.bread ul li:not(:last-child){
  margin-right:28px;  
}

.bread ul li:not(:last-child)::after{
  content:"";
  position:absolute;
  left:100%;          
  top:50%;
  margin-left:6px;    
  width:16px;          
  height:1px;          
  background:#D1D5DB;
  transform:translateY(-50%) rotate(-62deg); 
  transform-origin:center;
  pointer-events:none;
}

.bread ul a{
  display:flex;       
  align-items:center;
  line-height:1; 
  color:#6B7280;
  text-decoration:none;
}

.bread ul a:hover{
  color:#111827;
}

.bread__home-ico{
  display:block;
}

.bread .active{
  display:flex;
  align-items:center;
  line-height:1;
  color:#111827;
  font-weight:600;
}

@media screen and (max-width:860px) {
	.bread ul li:nth-child(n+3) {
        display: none;
    }
}