.header {
  height: 150px;
  display: flex;
}
.header .header-img {
  width: 180px;
  height: 130px;
  transform: translate(0, 25px);
}
.header .header-menu {
  flex: 1;
  position: relative;
}
.header .header-menu .menu-top {
  position: absolute;
  transform: skewX(-45deg) translateX(15px);
  top: 40px;
  width: 98%;
  height: 30px;
  border-radius: 5px 0 0 0;
  background-color: #663333;
  border-top: 3px solid black;
  border-left: 3px solid black;
  border-right: 3px solid black;
}
.header .header-menu .menu-content {
  position: absolute;
  top: 70px;
  background-color: #663333;
  border: 3px solid black;
  border-radius: 0px 0 5px 5px;
  height: 55px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}
.header .header-menu .menu-content .menu1 .dropdown-menu,
.header .header-menu .menu-content .menu5 .dropdown-menu {
  display: none;
}
.header .header-menu .menu-content .menu1 .dropdown button::after,
.header .header-menu .menu-content .menu5 .dropdown button::after {
  display: none;
}
.header .header-menu .menu-content::after {
  content: '';
  background-color: #663333;
  top: -33px;
  right: -3px;
  display: block;
  height: 30px;
  width: 50px;
  border-top: 3px solid black;
  border-left: none;
  border-right: 3px solid black;
  position: absolute;
}
.header .header-menu .menu-content > div > img {
  position: absolute;
  top: -59px;
}
.header .header-menu .menu-content .dropdown .btn {
  background-color: transparent;
  font-size: 30px;
  border: 0;
}
.header .header-menu .menu-content .dropdown .btn:focus {
  color: none;
  box-shadow: none;
}
