body {
  background-color: #080e37;
}

.header_7_main_header {
  width: 100%;
  height: 80px;
  border-bottom: 1px solid rgba(255, 200, 39, 0);
  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_7_main_header.fix_me {
  background-color: #ffffff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 200, 39, 0.1);
}
.header_7_main_header.fix_me .main_nav a {
  height: 60px;
}
.header_7_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_7_logo a {
  display: inline-block;
  width: 200px;
  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_7_main_nav {
  font-size: 0;
}
.header_7_main_nav li {
  margin: 0 40px 0 0;
  display: inline-block;
  position: relative;
}
.header_7_main_nav li:last-child {
  margin: 0;
}
.header_7_main_nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
  color: #000;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.header_7_main_nav a::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #ff0052;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0);
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.header_7_main_nav a:hover::before {
  width: 100%;
  height: 2px;
}

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

@media (min-width: 240px) and (max-width: 1023px) {
  .header_7_main_nav {
    width: 100%;
    background-color: #ff0052;
    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_7_main_nav li {
    display: block;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .header_7_main_nav a {
    height: auto;
    padding: 12px 20px;
    color: #fff;
  }
  .header_7_main_nav a::before {
    display: none;
  }
  .header_7_main_nav.show_me {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  .header_7_toggler {
    display: block;
  }
}
