.header{
  width: 100%;
  height: 90px;

   background-color: white;
   position: fixed;
   top: 0;
   left: 0;
  z-index: 3;
  margin: 0 auto;
  border-bottom: solid 1px #d71212;
}
.whreper{
 padding-top: 10px;
 max-width: max-content;
 margin: 0 auto;
}
.header_menu{
 
  display: flex;
  flex-wrap: wrap;
  align-items: center;
 

}
.burger{
  padding: 0;
  background: none;
  border: 0;
  display: none;
  margin-left: auto;
  padding-right: 30px;
}
.hamburger .line{
  width: 50px;
  height: 5px;
  background-color: #ecf0f1;
  display: block;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/*
.hamburger:hover{
  cursor: pointer;
}
#hamburger-1.is-active .line:nth-child(2){
  opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1){
  -webkit-transform: translateY(13px) rotate(45deg);
  -ms-transform: translateY(13px) rotate(45deg);
  -o-transform: translateY(13px) rotate(45deg);
  transform: translateY(13px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3){
  -webkit-transform: translateY(-13px) rotate(-45deg);
  -ms-transform: translateY(-13px) rotate(-45deg);
  -o-transform: translateY(-13px) rotate(-45deg);
  transform: translateY(-13px) rotate(-45deg);
}
*/




#menuToggle
{
  display: none;
  position: absolute;
  top: 35px;
  right: 50px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #f7d85b;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 350px;
  margin: -100px 0 0 0;
  height: 800px;
  padding: 50px;
  padding-top: 125px;
  right: -100px;
  
  background: #fff6d9;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

/*
 * And let's fade it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
  opacity: 1;
  display: block;
}



.header_list{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.header_item {
  margin-right: 30px;
}
.header_item a:hover{
  border-bottom: solid 1px #d71212;
}
.logo_header{
  margin-right: 20px;
  padding: 10px;
  max-width: 140px;
  width: 140px;
  height: auto;
}
.basket_header{
  padding: 10px;
  max-width: 50px;
  width: 50px;
  height: auto;
}
.intro{
  margin: 0 auto;
  max-width: 1920px;
}
.header_menu a{
  color: #000000;
  text-decoration: none;
}
.heder_item_we{
 display: flex;
 gap: 5px;
  flex-direction: column;
}


@media (max-width: 875px) {
  .header_menu {
    margin-right: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .header_item {
    display: none;
  }
  /*
  .burger {
     padding: 0; 
    background: none;
    border: 0;
    display: block;
    margin-left: auto;
    padding-right: 0px;
    padding-left: 70px;
  }
  */
  #menuToggle
  {
    display: block;
    
  }
}
@media screen and (max-width: 768px) {
  #menu {
    display: none;
    transform: none;
    opacity: 0;

    transition: opacity 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  }

}

