#head
{
  position: relative;
}

header
{
  h1
  {
    padding:50px 0;
    font-size: 32px;
		font-weight: 400;
		line-height: 48px; /* 150% */
		letter-spacing: 1.6px;
  }
  .breadcrumb
  {
    display: flex;
		flex-wrap:wrap;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 26px; /* 162.5% */
		letter-spacing: 0.8px;
		color:#000;
		li
		{
			a
			{
				
				color:#000;
				transition-duration:.5s;
				&:hover
				{
					color:$main-color;
				}
			}
			&::after
			{
				content:'/';
				padding:0 8px;
			}
			&:last-child
			{
				a
				{
					color:$main-color;
					&:hover
					{
						color:#fff;
					}
				}
				&::after
				{
					display: none;
				}
			}
		}
  }
}

