img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; }

    .container {
      width: 85%;
      margin-inline: auto;
    }

    .section { padding: 72px 0; }
    .section-sm { padding: 48px 0; }

    .eyebrow {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--muted);
      margin: 0 0 10px;
    }
    
     h1 {
font-size: 50px;
line-height: 1.12;
font-weight: 400;
margin: 0 0 28px;
letter-spacing: 0.2px;
color:#fff;
}

h2 {
    font-weight: 400;
font-size: 34px;
}

    h1, h2, h3, p { margin-top: 0; }
    .for-brands{
        background: url(https://www.conceptbrands.com.au/wp-content/uploads/image-for-brands.webp);
    }
    .hero {
      overflow: hidden;
      position: relative;
      min-height: 520px;
      display: flex;
      align-items: center;
      font-family: "Nunito Sans", sans-serif;
    }
    
    .cb-sub{
    text-align:center;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 640px);
      padding: 88px 0;
    }


    .hero p {
      max-width: 760px;
      font-size: clamp(1rem, 1.45vw, 1.35rem);
      color: rgba(255,255,255,0.88);
    }

    .section-title {
      margin: 0 auto 30px;
        text-align: center;
        white-space: normal;
        overflow-wrap: break-word;
        word-break: normal;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .feature-card {
      background: #f3f1ee;
      border: 1px solid #ececec;
      border-radius: 10px;
      padding: 34px 28px;
      min-height: 250px;
    }

    .feature-icon {
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      margin-bottom: 24px;
      color: #56565d;
    }

    .feature-card h3 {
      font-size: 20px;
line-height: 1.25;
font-weight: 400;
color: #1d1d1d;
margin: 0 0 12px;
    }

    .portal-wrap {
      padding-top: 8px;
    }

    .portal-card {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      background:#f3f1ee;
      min-height: 360px;
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      align-items: stretch;
    }

    .portal-copy {
      padding: clamp(34px, 4vw, 56px);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .btn {
background: #424242;
color: #fff;
font-size: 14px;
font-family: "Poppins", sans-serif;
padding: 10px 25px;
border-radius: 30px;
text-decoration: none;
width: 33%;
    }

    .arrow {
      font-size: 1.1em;
      line-height: 1;
    }
    
    span {
        font-family: "Nunito Sans", sans-serif;
    }

    .faq-section {
      background: #f2f2f2;
    }

    .faq-wrap {
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-title {
      text-align: center;
      letter-spacing: -0.04em;
      margin-bottom: 34px;
    }

    .faq-list {
      border-top: 1px solid #252525;
    }

    .faq-item {
      border-bottom: 1px solid #252525;
    }

    .faq-question {
      width: 100%;
      background: transparent;
      border: 0;
      padding: 22px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      cursor: pointer;
      text-align: left;
      font-size: clamp(1rem, 1.3vw, 1.25rem);
      font-weight: 500;
      color: #111;
    }

    .faq-question span:last-child {
      font-size: 1.6rem;
      line-height: 1;
      transition: transform 0.2s ease;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.25s ease;
      color: #4a4a51;
    }

    .faq-answer p {
      margin: 0 0 22px;
      max-width: 760px;
    }

    .faq-item.active .faq-question span:last-child {
      transform: rotate(45deg);
    }

    .cta {
      background: #e6e6e6;
      text-align: center;
      padding: 84px 0 88px;
    }
    
    .cta p {
        font-weight: 400;
font-style: normal;
font-size: 20px;
font-family: "Poppins", sans-serif;
line-height: 26px;
    }

    .mobile-nav {
      display: none;
    }

    @media (max-width: 1100px) {
      .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .portal-card {
        grid-template-columns: 1fr;
      }

      .portal-visual {
        min-height: 360px;
      }

      .laptop {
        left: 10%;
      }
    }

    @media (max-width: 900px) {
      .nav,
      .header-actions .divider,
      .header-actions .socials {
        display: none;
      }

      .menu-toggle {
        display: inline-block;
      }

      .header-inner {
        grid-template-columns: auto 1fr auto;
      }

      .mobile-nav {
        display: none;
        border-top: 1px solid rgba(0,0,0,0.08);
        padding: 10px 0 18px;
      }

      .mobile-nav.open {
        display: block;
      }

      .mobile-nav a {
        display: block;
        padding: 14px 0;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
      }

      .hero {
        min-height: 380px;
      }

      .hero::after {
        right: -10px;
        font-size: clamp(10rem, 36vw, 18rem);
      }
    }

    @media (max-width: 640px) {
      .section { padding: 56px 0; }
      .section-sm { padding: 38px 0; }
      .container { width: min(calc(100% - 24px), var(--container)); padding: 0 16px; }

      .hero-grid {
        padding: 72px 0 68px;
      }

      .hero h1 { margin-bottom: 18px; }

      .features-grid {
        grid-template-columns: 1fr;
      }

      .feature-card {
        min-height: auto;
        padding: 28px 22px;
      }

      .portal-copy {
        padding: 28px 24px 12px;
      }

      .portal-copy p {
        margin-bottom: 22px;
      }

      .portal-visual {
        min-height: 280px;
      }

      .laptop {
        left: 4%;
        width: 78%;
        bottom: 20px;
      }

      .jar {
        width: 92px;
        height: 74px;
        right: 24%;
      }

      .jar::after {
        font-size: 0.62rem;
      }

      .bottle {
        width: 72px;
        height: 165px;
        right: 8%;
      }

      .bottle::before {
        left: 20px;
        width: 32px;
      }

      .bottle::after {
        inset: 42px 8px auto;
        font-size: 0.72rem;
      }

      .faq-question {
        padding: 18px 0;
      }

      .btn,
      .btn-light {
        width: 100%;
        justify-content: center;
      }
    }
    
    
.cb_brand {
max-width: 100%;
box-sizing: border-box;
padding: 72px 50px;
justify-content: center;
align-items: center;
display: flex;
width: 100%;
overflow: hidden;
    }
    
    .cb_brand .cb_container{
z-index: 9;
max-width:1500px !Important;
}

.cb_brand_boxss {
    overflow: hidden;
}

.cb_brand_boxss .slick-slider .slick-slide {
    display: none;
    float: left;
    height: 125px;
    min-height: 1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0px 30px;
}

.network{
background:linear-gradient(to top, #f7f5f2, #f4f1ed)
}
.network .feature-card {
    background: #ffffff;
}