.breadcrumb-container{
  margin-bottom: 20px;
}

#breadcrumbs{
  font-size: 4.2vw;
  color: #051236;
  font-weight: 500;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}

#breadcrumbs strong{
  font-weight: 700;
}

#breadcrumbs a{
  color: inherit;
  padding: 4px;
}

#breadcrumbs>span{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 12px;
  flex-wrap: wrap;
}

#breadcrumbs .custom-seperator{
  width: 6px;
  height: 10px;
  display: inline-flex;
}

#breadcrumbs .custom-seperator:last-child{
  display: none;
}
#breadcrumbs .breadcrumb_last{
  display: inline-flex;
  align-items: center;
  max-width: 100%;
}
#breadcrumbs strong{
  display: inline-block;
  width: 100%;
  /* Allow text to overflow */
  overflow: hidden;
  /* Add ellipsis at the end of the string */
  text-overflow: ellipsis;
  /* Ensure the text wraps onto the next line if necessary */
  white-space: nowrap;

}

@media only screen and (min-width:768px){
  .breadcrumb-container{
    margin-bottom: 40px;
  }
  #breadcrumbs{
    font-size: 16px;
  }
}
