/* HEADER START */
header {
  position: relative;
  background-color: var(--header-bg-color);
  -webkit-box-shadow: 1px 1px 9px 2px rgba(34, 60, 80, 0.38);
  -moz-box-shadow: 1px 1px 9px 2px rgba(34, 60, 80, 0.38);
  box-shadow: 1px 1px 9px 2px rgba(34, 60, 80, 0.38);
  z-index: 10;
}

.header_block {
  max-width: 1216px;
  margin: 0 auto;
  padding: 11px 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.nav_link {
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}
.nav_link:hover {
  color: var(--bg-primary-hover);
}

.header_nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.header_contacts {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

#mobile_menu {
  width: 300px;
  background-color: var(--header-bg-color);
  padding: 15px 24px 24px 24px;
  position: absolute;
  top: 0;
  z-index: 0;
  -webkit-box-shadow: 24px 29px 29px 18px rgba(34, 60, 80, 0.34);
  -moz-box-shadow: 24px 29px 29px 18px rgba(34, 60, 80, 0.34);
  box-shadow: 24px 29px 29px 18px rgba(34, 60, 80, 0.34);
  border-bottom-right-radius: 12px;
}
.mobile_navigation {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-left: 10px;
}

.hidden {
  display: none;
  visibility: hidden;
}
/* HEADER END */
