@charset "UTF-8";
.header {
  padding: 25px 0;
  background-color: #6F2205;
}

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

.header_ul {
  display: flex;
  justify-content: center;
  gap: 50px;
  align-items: center;
}

.header_li_a {
  color: white;
  font-weight: 500;
  transition-duration: 0.2s;
}

.header_li_a:hover {
  color: #DCC08E;
  transition-duration: 0.2s;
}

.header_li_a_service {
  font-weight: 500;
  cursor: default;
}

.header_service_arrow {
  content: url("/source/img/icons/arrow_service_bottom.svg");
  width: 12px;
  height: 6.84px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  margin-top: 4px;
}

.header_service_arrow_container {
  display: flex;
  align-items: center;
}

.header_nav_contacts {
  display: flex;
  gap: 50px;
}

.header_logo {
  font-family: Noto Sans, "sans-serif";
  font-size: 26px;
  color: #EACC97;
}

.header_nav_contact {
  color: white;
}

.header_number {
  display: flex;
  align-items: center;
  font-size: 16px;
}

.header_nav_time {
  display: flex;
  align-items: center;
  font-size: 16px;
}

.header_number::before {
  content: url("/source/img/icons/phone.svg");
  margin-right: 10px;
  display: flex;
}

.header_nav_time::before {
  content: url("/source/img/icons/time.svg");
  margin-right: 10px;
  display: flex;
}

.header_menu {
  position: absolute;
  display: none;
}

.header_menu_nav {
  padding: 20px;
  border-radius: 5px;
  background-color: white;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  display: inline-block;
  margin-top: 10px;
  font-weight: 500;
  margin-left: -25px;
}

.header_menu_ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

li.header_menu_li {
  line-height: normal;
}

a.header_menu_a {
  color: #202020;
  line-height: normal;
  transition-duration: 0.2s;
}

a.header_menu_a:hover {
  color: #DCC08E;
  transition-duration: 0.2s;
}

.navbar {
  display: none;
}

.burger-menu {
  display: none;
}

.header_line {
  display: none;
  margin-bottom: 35px;
}

.header_nav_contacts_adaptive {
  display: none;
}

@media (max-width: 1160px) {
  .header_ul {
    display: none;
  }
  .header {
    padding: 35px 0;
  }
  .navbar {
    display: flex;
    justify-content: space-between;
    color: #fff;
  }
  .burger-menu {
    display: block;
  }
  .burger {
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
  }
  .menu {
    margin-top: 100px;
    list-style: none;
    position: fixed;
    top: 0;
    right: -50%; /* изменено для анимации */
    background-color: #A36C22;
    width: 100%;
    transition: 0.5s; /* изменено для анимации */
    z-index: 1;
    visibility: hidden; /* добавлено для плавного появления */
    opacity: 0; /* добавлено для плавного появления */
    height: 100vh;
    overflow-y: scroll;
  }
  ul.menu_ul_services {
    background: linear-gradient(42.1deg, rgba(234, 204, 151, 0.2) 10.416%, rgba(255, 255, 255, 0) 92.692%), linear-gradient(139.36deg, rgba(255, 255, 255, 0.8) 24.077%, rgba(255, 255, 255, 0) 136.16%), rgb(255, 255, 255);
    text-align: center;
    padding: 110px 0 60px 0;
  }
  .ul_menu_other {
    padding-top: 110px;
    text-align: center;
  }
  .menu.active {
    right: 0;
    visibility: visible;
    opacity: 1;
  }
  .hide {
    overflow: hidden;
  }
  .menu li {
    margin-bottom: 50px;
  }
  .menu_a {
    color: #202020;
    text-decoration: none;
    font-weight: 700;
    font-size: 40px;
  }
  .menu_a_other {
    font-weight: 500;
    font-size: 40px;
    color: white;
  }
  .burger-menu {
    position: relative;
    width: 35px;
    height: 30px;
    cursor: pointer;
    top: -2px;
  }
  .burger-menu span {
    display: block;
    position: absolute;
    background-color: white;
    width: 100%;
    height: 4px;
    transition: all 0.3s ease;
    border-radius: 5px;
  }
  .burger-menu span:first-child {
    top: 5px;
  }
  .burger-menu span:nth-child(2) {
    top: 15px;
  }
  .burger-menu span:last-child {
    top: 25px;
  }
  .rmSecond {
    opacity: 0;
  }
  .centerizing {
    top: 15px !important;
    background-color: #EACC97 !important;
  }
  .rotF {
    transform: rotate(45deg);
  }
  .rotL {
    transform: rotate(-45deg);
  }
}
@media (max-width: 768px) {
  .header {
    padding: 35px 0;
  }
  .header_nav_contacts {
    display: none;
  }
  .header_nav_contacts_adaptive {
    display: flex;
    gap: 25px;
  }
  .menu_a {
    color: #202020;
    text-decoration: none;
    font-weight: 700;
    font-size: 35px;
  }
  .menu_a_other {
    font-size: 35px;
  }
  .header_line {
    display: block;
  }
  .header_nav {
    margin-bottom: 35px;
  }
}
@media (max-width: 480px) {
  .header_logo {
    font-size: 20px;
  }
  .header {
    padding: 20px 0;
  }
  .menu {
    margin-top: 70px;
  }
  .header_nav_contacts_adaptive {
    display: flex;
    gap: 5px;
  }
  .header_line {
    margin-bottom: 20px;
  }
  .menu_a {
    color: #202020;
    text-decoration: none;
    font-weight: 700;
    font-size: 22px;
  }
  .menu_a_other {
    font-size: 20px;
  }
  ul.menu_ul_services {
    padding: 60px 0 25px 0;
  }
  .menu li {
    margin-bottom: 35px;
  }
  .ul_menu_other {
    padding-top: 60px;
  }
  .header_nav {
    margin-bottom: 20px;
  }
}

/*# sourceMappingURL=style.css.map */
