.main-banner {
  width: 100%;
  height: 4rem;
  padding: 0.5rem var(--padding);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: var(--main-banner-bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  .logo-wrap,
  .btn-wrap {
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .logo-wrap {
    gap: 0.2rem;
    flex: 0 1 auto;
    
    .logo-img {
      width: 3rem;
      height: 3rem;
      border-radius: var(--round);
      background: var(--header__nav-bg);
    }
    
    .logo-text {
      color: var(--logo-text);
      font-size: 1.5rem;
      flex: 0 1 auto;
    }
  }
  
  .btn-wrap {
    gap: 1rem;
    
    .btn {
      width: 3rem;
      height: 3rem;
      padding: 0.5rem;
      background: var(--header__nav-bg);
      
      img {
        width: 2rem;
        height: 2rem;
      }
    }
  }
}
