.header__logotype {
  transition: all 0.4s;
  max-width: 150px;
  height: 47px;
  width: 100%;
  display: flex;
}

.header__logotype:hover {
  opacity: 0.6;
}
.header__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px 20px 40px;
}
.header__container--right {
  display: flex;
  flex-direction: row;
  gap: 34px;
  align-items: center;
}

.header__menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
}
.header__menu a {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  color: black;
  transition: all 0.4s;
}
.header__menu a:hover {
  color: #6d653b;
}
.signin_button {
  font-size: 14px;
  padding: 14px 40px;
  border: 1px solid #434b36;
  display: inline-flex;
  width: 130px;
  align-items: center;
  gap: 20px;
  font-style: normal;
  font-weight: 500;
  color: #434b36;
  transition: all 0.4s;
}

.signin_button:hover {
  background-color: #c3cdb2;
  color: #434b36;
  border: 1px solid #c3cdb2;
  fill: white;
}
.humburger__button {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 47px;
  width: 47px;
  background-color: #434b36;
  color: white;
  cursor: pointer;
  transition: all 0.4s;
  display: none;
}


.humburger {
  height: 100vh;
  width: 100%;
  position: absolute;
  display: flex;
  margin-top: -10000px;
  transition: all 0.5s;
}
.humburger--nav li a {
  font-size: 16px !important;
}
.humburger__background--right__menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.humburger__background--left {
  background: rgba(109, 101, 59, 0.46);
  height: 100%;
  width: 50%;
}
.humburger__background--right {
  background-color: white;
  width: 50%;
  height: 100%;
}
.humburger__background--right nav {
  padding-left: 40px;
  padding-top: 40px;
}
.humburger__background--right ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.humburger__background--right ul a {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  color: black;
  transition: all 0.4s;
}
.humburger__background--right ul a:hover {
  color: #6d653b;
}

@media screen and (max-width: 1208px) {
  .header__logotype {
    width: 147px;
  }
}
@media screen and (max-width: 1120px) {
  .header__menu {
    display: none;
  }
  .humburger__button {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .header__container {
    padding: 20px 20px;
  }
  .humburger__background--right nav {
    padding-left: 20px;
  }
}
@media screen and (max-width: 576px) {
  .toogler {
    display: none;
  }
  .humburger__background--left {
    width: 0%;
  }
  .humburger__background--right {
    width: 100%;
  }
  .humburger__background--right__menu ul li a {
    font-size: 16px;
  }
}
