.special-header {
  border-bottom: 1px solid #22222220;

  .special-header__container {
    max-width: 1280px;
    padding: 14px 40px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .special-header__logo-wrapper {
    width: 115px;
  }

  .special-header__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .special-header__button {
    padding: 7px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
  }

  @media screen and (max-width: 768px) {
    border-bottom: none;

    .special-header__container {
      justify-content: center;
    }

    .special-header__logo-wrapper {
      width: 72px;
    }

    .special-header__button {
      display: none;
    }
  }
}
