body {
  margin: 0;
  padding: 0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logotype {
  font-family: sans-serif;
  font-size: 24px;
  color: #ffffff;
}

nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 200em) {
  nav nav {
    display: inline;
  }
}

.menu__box {
  display: flex;
  flex-direction: row;
  list-style-type: none;
}
@media screen and (max-width: 200em) {
  .menu__box {
    position: fixed;
    visibility: hidden;
    top: 0;
    left: 0;
    width: 100%;
    margin: -600px 0 0 0;
    padding: 0.6em 0;
    text-align: center;
    background-color: rgba(110, 85, 60, 0.8);
    box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
    z-index: 5;
    transition-duration: 0.5s;
  }
}

.red {
  color: #f06c64;
}

.menu__item {
  flex-direction: column;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
}
@media screen and (max-width: 200em) {
  .menu__item {
    display: block;
    color: #ffffff;
    font-size: 18px;
    transition-duration: 0.5s;
  }
}
.menu__item img {
    max-width: 100px;
  height: auto;
}
#menu__toggle {
  opacity: 0;
}
#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
  background: #f06c64;
}
#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
  background: #f06c64;
}
#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  left: 0;
  margin: 0;
}
.menu__box {
  display: flex;
    flex-wrap: wrap;
}
.menu__box li {
    width: calc(100% / 3);
    box-sizing: border-box;
  padding: 5px;
  max-height: 150px;
    text-align: center;
}
.menu__box li a {
background-image: url(../images/menu/bg.png);
  background-repeat: repeat-x;
}
.menu1 {
    width: 100%!important;
}
.menu__btn {
  transition-duration: 0.25s;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
  bottom: 2px;
  width: 40px;
  height: 26px;
  cursor: pointer;
  z-index: 6;
}
.menu__btn span {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #000;
}
.menu__btn span::before {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #000;
  content: "";
  top: -8px;
  transition-duration: 0.25s;
}
.menu__btn span::after {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #000;
  content: "";
  top: 8px;
  transition-duration: 0.25s;
}
@media screen and (min-width: 200em) {
  .menu__btn {
    display: none;
  }
}