/*---------- header ----------------------------------------*/
.logo {
    display: block;
    position: relative;
    margin: 18px 16px;
  }
  
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.2);
    background: linear-gradient(#00000080, #00000080);
    transition: 0.3s ease;
    z-index: 10;
  }
  
  .header.is-sticky {
    background-color: white;
  }
  
  .header-wrapper {
    display: flex;
  }
  
  .header-left {
    display: flex;
    position: relative;
    align-items: center;
    width: 260px;
  }
  
  .header-left::before {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: calc(647px - 50vw);
    width: calc(50vw - 430px);
    height: 100%;
    /* border-width: 0 6px 6px 0;
    border-style: solid;
    border-color: orange; */
    /* background-color: rgba(0, 0, 0, 0.7); */
    content: '';
  }
  
  .logo-img {
    width: 100%;
    max-width: 173px;
    backface-visibility: hidden;
    transition: 0.3s ease;
  }
  
  .header.is-sticky .logo-img {
    max-width: 130px;
  }

  .page-banner img {
    background-size: cover;
  }
  
  @media screen and (min-width: 1325px) {
    .header-left::before {
      left: -15px;
      width: calc(100% + 15px);
    }
  }
  
  @media screen and (min-width: 1199px) {
    .logo-img {
      max-width: 130px;
    }
  }
  
  @media screen and (max-width: 1199px) {
    .logo-img {
      max-width: 150px;
    }
  }
  
  @media screen and (max-width: 767px) {
    .header-left {
      width: 350px;
    }
  
    .logo-img {
      max-width: 115px;
    }

    .header.is-sticky .logo-img {
      max-width: 90px;
  }
  }
  
  .header-right {
    width: 100%;
    transition: 0.3s ease;
  }
  
  @media screen and (max-width: 767px) {
    .header-right {
      height: 83px;
    }
  }
  
  .header-right-inner-top {
    display: flex;
    /* position: relative; */
    justify-content: flex-end;
    height: 39px;
    transition: 0.3s ease;
  }
  
  .header-right-inner-top::before {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    right: calc(647px - 50vw);
    width: calc(50vw + 448px);
    height: initial;
    /* background-color: rgba(0, 0, 0, 0.5); */
    content: '';
  }
  
  @media (min-width: 1299px) {
    .header.is-sticky .header-right-inner-top {
      height: 19px;
      margin-bottom: 0;
       /* overflow: hidden; */
      /* background-color: white; */
    }
  }
  
  @media screen and (min-width: 1325px) {
    .header-right-inner-top::before {
      right: -15px;
      width: calc(100% + 15px);
    }
  }
  
  @media screen and (max-width: 767px) {
    .header.is-sticky .header-right-inner-top {
      overflow: visible;
      transform: translateY(-30px);
    }
  }
  
  @media screen and (max-width: 767px) {
    .header-right-inner-top {
      height: auto;
    }
  
    .header-right-inner-top::before {
      background-color: transparent;
    }
  
    .header.is-sticky .header-right-inner-top {
      transform: none;
    }
  }
  
  .header-dropdown {
    height: 100%;
    padding: 0 10px;
    background-color: grey;
    color: white;
    line-height: 39px;
    z-index: 10;
  }
  
  .header-dropdown .header-dropdown-toggle {
    display: inline-block;
    min-width: 140px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  .header-dropdown .header-dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    border-top: 5px solid orange;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    content: '';
  }
  
  .header-dropdown .header-dropdown-info {
    font-size: 17px;
  }
  
  .header-dropdown .header-dropdown-info-sm {
    margin-right: 5px;
    margin-left: 10px;
  }
  
  .header-dropdown-highlight {
    background-color: white;
  }
  
  .header-dropdown-highlight .header-dropdown-toggle {
    color: orange;
  }
  
  .header-dropdown-highlight .header-dropdown-toggle::after {
    border-top: 6px solid orange;
  }
  
  .header-links {
    position: relative;
    padding-left: 9px;
    line-height: 39px;
  }
  
  .header-links .header-link {
    display: inline-block;
    padding: 0 15px 0 11px;
    border-right: 1px solid lightgrey;
    color: lightgrey;
    font-size: 14px;
    letter-spacing: -0.02em;
    line-height: 1;
  }
  
  .header-links .header-link.highlight {
    border-right: 1px solid orange;
    color: orange;
  }
  
  .header-links .header-link:last-child {
    border-right: 0;
  }
  
  @media screen and (max-width: 767px) {
    .header-links {
      padding-left: 0;
    }
  
    .header-links .header-link {
      padding: 0 2px 0 20px;
    }
  
    .header-links .header-link.highlight {
      border-right: 1px solid lightgrey;
    }
  
    .header-links .header-link:last-child {
      border-right: 0;
    }
  }
  