@charset 'UTF-8';

html,
html * {
  box-sizing: content-box;
  margin: 0;
  padding: 0;
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
  font-size: 24px;
  word-spacing: normal;
  
}

.breadcrumb { 
    list-style: none; 
    overflow: hidden; 
    font: 18px Sans-Serif;
   margin: 10px 10px 10px 40px;
   
   filter: drop-shadow(5px 5px 5px rgba(45, 45, 45, 0.4));
	overflow-x: hidden;
  }

  .breadcrumb li { 
    float: left; 
    padding: 0px;
  }
  .breadcrumb li a {
    color: black;
    text-decoration: none; 
    padding: 10px 0 10px 65px;


    background: brown; /* fallback color */
    background: rgb(178, 208, 159); 
    position: relative; 
    display: block;
    float: left;
  }

  .breadcrumb li a::after { 
    content: " "; 
    display: block; 
    width: 0; 
    height: 0;
    border-top: 50px solid transparent; /* Go big on the size, and let overflow hide */
    border-bottom: 50px solid transparent;
    border-left: 30px solid rgb(178, 208, 159);
    position: absolute;
    top: 50%;
    margin-top: -50px; 
    left: 100%;
    z-index: 2; 
  }

  .breadcrumb li a::before { 
    content: " "; 
    display: block; 
    width: 0; 
    height: 0;
    border-top: 50px solid transparent;       
    border-bottom: 50px solid transparent;
    border-left: 30px solid white;
    position: absolute;
    top: 50%;
    margin-top: -50px; 
    margin-left: 1px;
    left: 100%;
    z-index: 1; 
  }

  .breadcrumb li:first-child a {
    padding-left: 10px;
  }
  .breadcrumb li:nth-child(2) a       { background:        rgba(110, 168, 209, 1); }
  .breadcrumb li:nth-child(2) a:after { border-left-color: rgba(110, 168, 209, 1); }
  .breadcrumb li:nth-child(3) a       { background:        hsla(34,85%,55%,1); }
  .breadcrumb li:nth-child(3) a:after { border-left-color: hsla(34,85%,55%,1); }
  .breadcrumb li:nth-child(4) a       { background:        hsla(34,85%,65%,1); }
  .breadcrumb li:nth-child(4) a:after { border-left-color: hsla(34,85%,65%,1); }
  .breadcrumb li:nth-child(5) a       { background:        hsla(34,85%,75%,1); }
  .breadcrumb li:nth-child(5) a:after { border-left-color: hsla(34,85%,75%,1); }
  .breadcrumb li:last-child a {
    background: white !important;
   border-right-style: solid;
   border-color: white;
    color: black;
    pointer-events: inherit;
    cursor: default;
  }
  .breadcrumb li:last-child a::after { 
    border: 0; 
  }

  .breadcrumb li a:hover { 
    /*background: hsla(34, 85%, 25%, 1); */
    background-color: brightness(70%);
    filter: brightness(70%);
    z-index: 100;
    
  }
  .breadcrumb li a:hover:after { 
    /*border-left-color: hsla(34, 85%, 25%, 1) !important; */
    background-color: brightness(70%);
    filter: brightness(70%);
    z-index: 100;
  }