.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.skip-link{
    display: none;
}

header{
    background: rgba(255, 255, 255, 0.35);
    height: 100px;
    box-shadow: 0px 4px 35px 0px rgba(0, 0, 0, 0.1);
}
header .container{
    display: flex;
    flex-direction: row;
    column-gap: 50px;
    align-items: center;
    height: 100px;
}
header .custom-logo-link{
    width: 150px;
}
.header-nav-menu{
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    align-items: center;
}
.header-stick{
    width: 1px;
    height: 50px;
    background: #a9a9a9;
    opacity: 0.5;
}
.header-nav-item{
    color: #070707 !important;
    font-size: 20px;
    font-weight: 600;
    line-height: 50px;
    padding: 15px;
    transition: all .35s;
}
.header-nav-item:hover{
    color: grey !important;
    transition: all .35s;
}







footer{
    width: 100%;
    height: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
    background: rgba(220, 220, 220, 0.7);
    box-shadow: 0px 4px 35px 0px rgba(0, 0, 0, 0.06);
    /*position: fixed;*/
    bottom: 0;
}
footer .container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.footer-markets-flex{
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    align-items: center;
}
.footer-market-link{
    color: #070707 !important;
    font-size: 17px;
    font-weight: 400;
    line-height: 40px;
    padding: 5px 10px;
    transition: all .4s;
}
.footer-market-link:hover{
    color: #FFF !important; 
    transition: all .4s;
}
.footer-stick{
    width: 1px;
    height: 30px;
    background: lightgrey;
}
.avtor{
    color: #070707 !important;
    font-size: 16px;
    font-weight: 400;
}




/* БУРГЕР */
.menu{
	display:none;
}

.burger-checkbox {
  position: absolute;
  visibility: hidden;
}
.burger {
  position: relative;
  z-index: 1;
  cursor: pointer;
  display: block;
  position: relative;
  border: none;
  background: transparent;
  width: 40px;
  height: 26px;
}
.burger::before,
.burger::after {
  content: '';
  left: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 10px;
  background: #000;
}
.burger::before {
  top: 0;
  box-shadow: 0 11px 0 #000;
  transition: box-shadow .3s .15s, top .3s .15s, transform .3s;
}
.burger::after {
  bottom: 0;
  transition: bottom .3s .15s, transform .3s;
}
.burger-checkbox:checked + .burger::before {
  top: 11px;
  transform: rotate(45deg);
  box-shadow: 0 6px 0 rgba(0,0,0,0);
  transition: box-shadow .15s, top .3s, transform .3s .15s;
}
.burger-checkbox:checked + .burger::after {
  bottom: 11px;
  transform: rotate(-45deg);
  transition: bottom .3s, transform .3s .15s;
}
.menu-list {
    top: 0;
    left: 0;
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 42px 0;
    margin: 0;
    background: gray;
    list-style-type: none;
    transform: translateX(-100%);
    transition: .3s;
    width: 250px;
    z-index: 30;
    height: 100%;
}
.menu-item {
  display: block;
  padding: 8px;
  color: white;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
}
.menu-item:visited{
	color: white;	
}
.menu-item:hover {
  background: rgba(255,255,255,.2)
}
.burger-checkbox:checked ~ .menu-list {
  transform: translateX(0);
}


/* ХЛЕБНЫЕ КРОШКИ */
#breadcrumbs{
  margin-top: 30px;
}
#breadcrumbs span span a{
  background: #FFF;
  border-radius: 10px;
  padding: 3px 6px;
  color: black !important;
}
#breadcrumbs span span{
  margin-bottom: 10px;
  display: inline-block;
}
