/*********************HEADER*********************/
.header{
  position: fixed;
  top: 0; 
  z-index:2; 
  width: 100%;
}
.header:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.header__body{
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 100px;
  align-items: center;
  position: -webkit-sticky;
  top: 0;
  z-index: 100;
  max-width: 1297px;
  margin: auto;
}
.header__logo{
  position: relative;
  z-index: 3;
}
.header__logo img{
width: 225px
}
.header__menu{
margin-right: 50px;
}
.header__list{
display: flex;
position: relative;
z-index: 3;
margin-top: 14px;
padding-left: 0;
}
.header__list li{
  list-style: none;
  margin: 0 25px 0 0;
  font-weight: 100;
}
.header__list a{
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  text-decoration: none;
  text-align: left;
  color: #384d41;
  cursor: pointer;
  font-weight: 400;
}
.header__list a:after {
background-color: #c05025; /* Цвет линии при наведении на нее курсора мыши */
  display: block;
  content: "";
  height: 2px; /* Высота линии */
  width: 0%;
  -webkit-transition: width .3s ease-in-out;
  -moz--transition: width .3s ease-in-out;
  transition: width .3s ease-in-out;
}
.header__list a:hover {
  color: #c05025;
  transition: all .3s linear;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
}
.header__list a:hover:after,
.header__list a:focus:after {
  width: 100%;
}
.header__link {
  scroll-margin-top: 1em;
}

.fake__bg {
  background: #fff;
  transition: all .1s ease-out .1s;
}
.fake__bg:after {
  transition: all .1s ease-out .1s;
}


/*********************HEADER*********************/

/*********************BURGER*********************/
.burger-checkbox {
  position: absolute;
  visibility: hidden;
}
.burger {
  cursor: pointer;
  display: block;
  position: relative;
  border: none;
  background: transparent;
  width: 40px;
  height: 26px;
  margin: 30px auto;
  z-index: 4;
  left: 5%;
}
.burger::before,
.burger::after {
  content: '';
  left: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 10px;
  background: #c05025;
}
.burger::before {
  top: 0;
  box-shadow: 0 11px 0 #c05025;
  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{
  display: none;
}
.menu-item{
 text-transform: uppercase;
 font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

/*********************BURGER*********************/

@media screen and (max-width: 1920px){
.burger{
  display: none;
}
@media screen and (max-width: 1680px){
.burger{
  display: none;
}
@media screen and (max-width: 992px){
h2{    
.burger{
  display: none;
}
}
@media screen and (max-width: 863px){
  .burger__bg{
  background: #384d41;
  height: 70px;
  width: 100%;   
  position: fixed;
  z-index: ;
}
  .fake_bg{
  display: none;
}
.header__body{
  display:none;
}
  .header__logo_mobil img{
    position: fixed;
    width: 145px;
    margin: 17px 0px 0px 15px;
}
}
  .header__logo img{
display: none;
}
  #button_1{
    display: none;
  }
.header__list{
  display: none;
}
.burger{
  display: block;
  position: fixed;
  top: -8px;
  right: -79%;;
}
.menu-list {
  top: 0px;
  right: 0px;
  position: absolute;
  display: grid;
  gap: 18px;
  padding: 55px 0;
  margin: 0;
  background: #384d41;
  list-style-type: none;
  transform: translateX(100%);
  transition: .3s;
  width: 100%;
  z-index: 3;
}
.menu-item {
  display: block;
  padding: 8px;
  color: white;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  font-weight: 200;
}
.menu-item:hover {
  background: rgba(255,255,255,.2);
  color: #c05025;
}
.burger-checkbox:checked ~ .menu-list {
  transform: translateX(0);
}
}