  .nav_list {
      position: fixed;
      left: 0;
      top: 0;
      z-index: 100;
      width: 100%;
      height: 70px;
      background: rgba(231, 234, 244, 0.5);
    }

    .nav_list .nav_list_line {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 100%;
    }

    .nav_list .logo img {
      max-width: 112px;
    }

    /* PC nav */
    .nav_list .nav {
      display: flex;
    }

    .nav_list .nav a {
      margin-left: 60px;
      padding-bottom: 16px;
      font-size: 16px;
      font-weight: 700;
      color: #000;
      border-bottom: 2px solid transparent;
      transition: all 0.5s;
      text-decoration: none;
    }

    .nav_list .nav a.active {
      color: #3183e7 !important;
      opacity: 0.9;
      border-bottom: 2px solid #3183e7;
    }

    .nav_list .nav a:hover {
      color: #3183e7;
      opacity: 0.9;
    }

    /* mobile nav */
    .nav_list .position_mobile_nav {
      display: none;
      flex-direction: column;
      position: absolute;
      left: 0;
      bottom: 0;
      transform: translateY(100%);
      width: 100%;
      max-height: 0;
      background-color: rgba(231, 234, 244, 0.8);
      overflow: hidden;
      transition: max-height 0.3s, transform 0.3s;
    }

    .nav_list .position_mobile_nav a {
      font-size: 20px;
      font-weight: 700;
      line-height: 3;
      text-align: center;
      color: #000;
      text-decoration: none;
    }

    .nav_list .position_mobile_nav a.active {
      color: #3183e7;
      opacity: 0.9;
    }

    .nav_list .position_mobile_nav.active {
      max-height: 300px;
    }

    /* menu icon */
    .nav_list .elementor-menu-toggle {
      display: none;
      align-items: center;
      background-color: rgba(0, 0, 0, 0.05);
      border: 2px solid;
      font-size: 22px;
      border-radius: 3px;
      color: #3183e7;
      cursor: pointer;
      justify-content: center;
      padding: 0.25em;
    }

    /* responsive */
    @media screen and (max-width: 800px) {
      .nav_list .position_mobile_nav {
        display: flex;
      }
      .nav_list .elementor-menu-toggle {
        display: flex;
      }
      .nav_list .nav {
        display: none;
      }
    }

    /* home-header */
    .home-header {
      background: rgba(0, 0, 0, 0.5) !important;
    }

    .home-header .nav_list_line .nav a {
      color: #fff;
    }

    .home-header .position_mobile_nav {
      background-color: rgba(0, 0, 0, 0.5);
    }

    .home-header .position_mobile_nav a {
      color: #fff;
    }

    .home-header .elementor-menu-toggle {
      color: #f5f5f5;
    }