.menu {
  height: 82px;
  box-sizing: border-box;
  background: white;
  padding-top: 10px;
}

.menu-logo img {
  padding-left: 20px;
}

.menu-slogan {
  font-size: 18px;
  color: #000;
  font-family: H_Light;
  margin-top: 8px;
}

.menu-phone1 {
  font-size: 16px;
  font-family: H_Light;
  box-sizing: border-box;
  text-align: right;
  padding-right: 5px;
}

.menu-phone2 {
  font-size: 36px;
  font-family: H_Light;
  text-align: right;
  padding-right: 5px;
}

.menu2 {
  background: rgba(255, 255, 255, 0.9);
  height: 42px;
}

.menu2 ul {
  padding: 0;
  margin-top: 0;
  text-align: center;
}

.menu2 ul li a {
  font-family: H_Light;
  color: #000000;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
}

.menu2 ul li a:hover {
  color: #5d5d5d;
}

.menu2 ul li {
  display: inline-block;
  margin: 12px 20px;
}

.menu-btn {
  width: 162px;
  height: 35px;
  display: inline-block;
  cursor: pointer;
  line-height: 35px;
  text-align: center;
  box-sizing: border-box;
  margin-right: 24px;
  background: #ff3131; /* Old browsers */
  background: -moz-linear-gradient(top, #ff3131 0%, #ca0000 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ff3131), color-stop(100%, #ca0000)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #ff3131 0%, #ca0000 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #ff3131 0%, #ca0000 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #ff3131 0%, #ca0000 100%); /* IE10+ */
  background: linear-gradient(to bottom, #ff3131 0%, #ca0000 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff3131', endColorstr='#ca0000',GradientType=0 ); /* IE6-9 */
  border-radius: 4px;
  font-size: 16px;
  font-family: H_Roman;
  color: white;
  margin-top: 14px;
}

.menu-btn:hover {
  opacity: 0.8;
}

.menu3 {
  background: #ffffff;
  height: 87px;
  box-sizing: border-box;
  padding-top: 4px;
  border-bottom: 1px solid #dddddd;
}

.menu-static {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 999;
  border-bottom: 1px solid #dddddd;
}

.phone {
  font-family: H_Bold;
  font-size: 24px;
  margin-right: 5px;
}

.phone-text {
  font-family: H_Thin;
  font-size: 16px;
  margin-right: 15px;
}

.arrow {
  background: url("../img/module-menu/arrow.png");
  width: 84px;
  height: 24px;
  position: absolute;
  left: -10px;
  bottom: -28px;
}

@media (max-width: 960px) {
  .menu {
    display: flex;
    justify-content: center;
  }
  .menu3 {
    height: auto;
  }
  .menu3 > .container-12 {
    max-width: 100%;
    display: flex;
    padding: 10px 20px;
    justify-content: space-between;
    align-items: center;
  }
  .mobule-block {
    display: flex;
    gap: 20px;
  }
  .clear {
    display: none;
  }
  .arrow {
    bottom: -5px;
  }
}

@media (max-width: 600px) {
  .mobule-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
  }
  .arrow {
    display: none;
  }
  .phone-text {
    margin: 0px;
  }
  .menu-btn {
    margin: 0px;
  }
}

@media (max-width: 375px) {
  .menu3 > .container-12 {
    flex-direction: column;
    gap: 5px;
  }
  .mobule-block {
    align-items: center;
    gap: 5px;
  }
  .phone {
    text-align: center;
    margin: 0px;
    display: none;
  }
}

@media (max-width: 850px) {
  .menu2 {
    min-height: 45px;
    transition: all 0.5s;
  }
  .menu-mobile-active {
    min-height: 350px;
  }
  .menu2 ul {
    display: flex;
    flex-direction: column;
  }
  .menu2 > .container-12 {
    padding-top: 25px;
  }

  .burger-mobile {
    display: block;
    margin: 0 auto;
    width: 30px;
    height: 2px;
    background-color: #5d5d5d;
    margin-bottom: 50px;
  }
  .burger-mobile::before,
  .burger-mobile::after {
    content: "";
    width: 30px;
    height: 2px;
    background-color: #5d5d5d;
    position: absolute;
    margin-top: -8px;
    transform: rotate(0deg);
    transition: transform 0.5s;
  }

  .burger-mobile::after {
    margin-top: 8px;
  }

  .burger-mobile-active {
    background-color: rgba(255, 255, 255, 0.9);
  }

  .burger-mobile-active::before,
  .burger-mobile-active::after {
    margin-top: 0px;
  }

  .burger-mobile-active::before {
    transform: rotate(45deg);
  }

  .burger-mobile-active::after {
    transform: rotate(-45deg);
  }
}
