@charset "utf-8";
/* CSS Document */

.container {width: 100%;max-width: 1600px;margin: 0 auto;}
nav {
  width: 100%;
  max-width: 1600px;
  min-width: 1024px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
#navigation {
  color: #fff;
  width: 100%;
  margin: 0 auto;
}
#navigation ul {
  display: flex;
  flex-flow: row;
  flex-direction: row;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0;
  padding: 6px 3px;
  justify-content: center;
  width: 100%;
}
#navigation li {
  border-right: 1px solid #dbe0e4;
  padding: 0 2px;
  font-size: 12px;
}
#navigation li:last-of-type {
  border-right: none;
}
#navigation li.hamburger {
  align-self: flex-end;
}
#navigation a {
  display: block;
  border-radius: 4px;
  padding: 5px 7px;
  color: #fff;
  text-decoration: none;
  transition: .5s;
}
#navigation li a:hover {
  color: #24843C;
  background-color: #fff;
}
#breadcrumb {
  background: #fff;
}
.breadcrumb {
  display: flex;
  flex: auto;
  list-style: none;
  padding: 0 0 0 10px;
  font-size: .85em;
  margin: 5px auto;
  gap: 4px;
}
.h1 {flex: auto;text-align: right;margin: 5px auto;padding-right: 10px;}
.breadcrumb li {
  display: flex;
  align-items: center;
}
.breadcrumb li:first-child::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 20C20 20.5523 19.5523 21 19 21H5C4.44772 21 4 20.5523 4 20V11L1 11L11.3273 1.6115C11.7087 1.26475 12.2913 1.26475 12.6727 1.6115L23 11L20 11V20ZM11 13V19H13V13H11Z' fill='%23333333'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
  margin-bottom: 2px;
}
.breadcrumb li:not(:last-child)::after {
  display: inline-block;
  width: .3em;
  height: .6em;
  margin-left: 4px;
  background-color: #333;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: '';
  margin-bottom: 3px;
}
.breadcrumb a {
  color: #333;
  text-decoration: none
}
.breadcrumb a:hover {
  text-decoration: underline;
}