body {
  background-color: #141414;
}

.header_10_main_header {
  width: 100%;
  height: 80px;
  background-color: #242424;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.header_10_main_header section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1320px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

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

.header_10_main_nav {
  font-size: 0;
}
.header_10_main_nav li {
  margin: 0 0 0 0;
  display: inline-block;
  position: relative;
}
.header_10_main_nav li:last-child {
  margin: 0;
}
.header_10_main_nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  padding: 0 20px;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  transition: 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.header_10_main_nav a:hover {
  color: #f1ea39;
}

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

@media (min-width: 240px) and (max-width: 1023px) {
  .header_10_main_nav {
    width: 100%;
    background-color: #1a1a1a;
    position: absolute;
    left: 0;
    top: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
  }
  .header_10_main_nav li {
    display: block;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .header_10_main_nav a {
    height: auto;
    padding: 12px 20px;
    color: #fff;
  }
  .header_10_main_nav a::before, .header_10_main_nav a::after {
    display: none;
  }
  .header_10_main_nav.show_me {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  .header_10_toggler {
    display: block;
  }
}
