﻿@charset "UTF-8";

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
header
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 1000;
}

.header-wrapper {
  /* height: 100%; */
  height: auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 30px;
  background-color: #333;

  position: fixed;
  z-index: 9995;
}

.header-logo .header-link {
  font-size: 1rem;
  padding-inline: 20px;
  line-height: 50px;
}

@media screen and (max-width: 767px) {
  .header-nav {
    display: none;
  }
}

.header-lists {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.header-list {
  display: inline-block;
  height: 100%;
  line-height: 50px;
}

.header-link {
  display: inline-block;
  color: #fff;
  padding-inline: 10px;
  font-size: 12px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header-link:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .header-link {
    font-size: 18px !important;
    font-weight: bold;
  }
  .nav-link {
    font-size: 18px !important;
  }
}
.nav-menu.active {
  z-index: 9994;
}