.header_3_header_block {
  width: 100%;
  height: 80px;
  background-color: #1a160e;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.header_3_header_block.fix_me {
  background-color: #1a160e;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
}
.header_3_header_block section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.header_3_logo a {
  display: inline-block;
  width: 130px;
  height: 70px;
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: contain;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.header_3_main_nav {
  font-size: 0;
}
.header_3_main_nav li {
  margin: 0 40px 0 0;
  display: inline-block;
  position: relative;
}
.header_3_main_nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  font-size: 16px;
  line-height: 1.18;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.header_3_main_nav a::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0);
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.header_3_main_nav a:hover {
  color: #fff;
}
.header_3_main_nav a:hover::before {
  width: 100%;
}

.header_3_head_link a {
  display: inline-block;
  padding: 10px 24px;
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
  font-weight: 600;
  color: #F0C808;
  background-color: rgba(240, 200, 8, 0.2);
  border-radius: 0;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.header_3_head_link a:hover {
  color: #fff;
  background-color: #06AED5;
}

/* Mobile begin */
.header_3_toggler {
  display: none;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 16px;
  top: calc(50% - 20px);
  border-radius: 4px;
  z-index: 3;
}
.header_3_toggler em {
  display: block;
  width: 32px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: calc(50% - 16px);
  top: calc(50% - 1px);
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.header_3_toggler em + em {
  top: calc(50% - 8px);
}
.header_3_toggler em + em + em {
  top: auto;
  bottom: calc(50% - 8px);
}
.header_3_toggler.active em:first-child {
  width: 0;
  left: calc(50% - 0);
}
.header_3_toggler.active em:first-child + em {
  top: calc(50% - 1px);
  transform: rotate(45deg);
}
.header_3_toggler.active em:first-child + em + em {
  bottom: calc(50% - 1px);
  transform: rotate(135deg);
}
.header_3_toggler.active_second em:first-child + em {
  transform: rotate(45deg);
}
.header_3_toggler.active_second em:first-child + em + em {
  transform: rotate(135deg);
}

.header_3_mobile_aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: calc(100% - 0);
  padding: 80px 0 24px;
  background-color: #08254D;
  position: fixed;
  left: 100%;
  top: 0;
  transform: scale(0.9);
  z-index: 2;
  transition: 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.header_3_mobile_aside.show_me {
  left: 0;
  transform: scale(1);
}
.header_3_mobile_aside .head_link_3 {
  display: block;
  padding: 0 20px;
  text-align: center;
}

.header_3_mobile_item {
  display: block;
  height: auto;
  padding: 10px 24px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.01);
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.09);
  position: relative;
  transition: 0.15s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media (min-width: 240px) and (max-width: 1023px) {
  .header_3_main_nav {
    display: none;
    width: 100%;
    background-color: #08254c;
    position: absolute;
    left: 0;
    top: 100%;
  }
  .header_3_main_nav li {
    display: block;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
  .header_3_main_nav a {
    padding: 12px 20px;
  }
  .header_3_main_nav a::before {
    display: none;
  }
  .header_3_main_nav.show_me {
    display: block;
  }
  .header_3_toggler {
    display: block;
  }
  .header_3_head_link {
    display: none;
    padding: 0 48px 0 0;
  }
}
