@charset "utf-8";

.header {
  background: #fff;
  box-shadow: 0px 5px 10px rgba(100, 121, 247, 0.1);

  ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .wrapper {
    display: flex;
    align-items: flex-start;
  }
  .header-logo a {
    display: block;
    margin-top: 20px;
  }
  .header-navigation {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    margin-left: 66px;
  }
  .list-navbar {
    display: flex;
    align-items: center;
    a {
      display: block;
      font-size: 16px;
      color: #1B1B1B;
      line-height: 2.2;
      margin-right: 30px;
      transition: color .15s;
      @media (min-width: 1200px) {
        margin-right: 49px;
      }
      &:hover {
        color: #3045FF;
      }
    }
    &.is-right {
      .is-blue {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 188px;
        height: 48px;
        font-weight: 600;
        font-size: 16px;
        background: #3045FF;
        border-radius: 5px;
        color: #fff;
        margin: 0;
      }
    }
  }
}

@media (max-width: 1023px) {
  header.header {
    position: relative;
    padding: 0;
    .header-logo a {
      margin: 26px 0;
    }
    .button-menu {
      position: absolute;
      right: 17px;
      top: 22px;
    }
    .header-navigation {
      display: block;
      transform: translateX(100%);
      width: 80%;
      position: fixed;
      top: 0;
      right: 0;
      z-index: 99;
      min-height: 100vh;
      background: #fff;
      margin: 0;
      padding: 69px 0 0;
      transition: all .3s;
      background: #34405D;
    }
    &.is-active {
      .header-navigation {
        transform: translateX(0);
        transition: all .3s;
      }
    }
    .list-navbar.is-left,
    .list-navbar.is-right {
      display: block;
      text-align: center;
      li {
        padding: 0 20px;
      }
      a {
        font-size: 18px;
        margin: 0 auto;
        text-align: left;
        padding: 11px 14px;
        color: #fff;
        border-bottom: 1px solid #465373;
      }
      .is-blue,
      .is-login {
        display: inline-flex;
        width: 240px;
        height: 48px;
        border-radius: 5px;
        border: 1px solid #fff;
        font-size: 16px;
        font-weight: 600;
        justify-content: center;
        align-items: center;
        margin: 10px auto;
        text-transform: uppercase;
        padding: 0;
      }
      .is-login {
        margin-top: 24px;
      }
    }
  }
}