.header_1_main_header {
  width: 100%;
  height: 80px;
  background-color: #ffffff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.header_1_main_header.fix_me {
  height: 60px;
  background-color: rgba(26, 46, 53, 0.9);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.75);
}
.header_1_main_header.fix_me .main_nav a {
  height: 60px;
}
.header_1_main_header section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

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

.header_1_main_nav {
  font-size: 0;
}
.header_1_main_nav li {
  margin: 0 40px 0 0;
  display: inline-block;
  position: relative;
}
.header_1_main_nav li:last-child {
  margin: 0;
}
.header_1_main_nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  font-size: 16px;
  line-height: 1.18;
  color: #0a1b27;
  text-decoration: underline;
  text-decoration-color: rgba(10, 27, 39, 0);
  text-underline-offset: 6px;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.header_1_main_nav a:hover {
  text-underline-offset: 1px;
  text-decoration-color: #0a1b27;
}

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

@media (min-width: 240px) and (max-width: 1023px) {
  .header_1_main_nav {
    display: none;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    left: 0;
    top: 100%;
  }
  .header_1_main_nav li {
    display: block;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .header_1_main_nav a {
    height: auto;
    padding: 12px 20px;
    color: #fff;
  }
  .header_1_main_nav a::before {
    display: none;
  }
  .header_1_main_nav.show_me {
    display: block;
  }
  .header_1_toggler {
    display: block;
  }
}
