  
  :root {
    --brand-green:        #69BA1E;
    --brand-green-dark:   #4F8F14;
    --brand-green-light:  #8EDB4A;

    --brand-dark:         #161616;
    --brand-dark-soft:    #2A2A2A;
    --brand-gray:         #6c757d;
    --brand-light:        #f6f7f8;
  }
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  body{
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont,'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  }

  h1, h2, h3, h4, h5 {
    font-weight: 600;
    line-height: 1.2;
  }

  p {
    color: var(--brand-dark-soft);
  }
    .btn-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: all .25s ease;
    text-decoration: none;
    white-space: nowrap;
  }

  .btn-brand-primary {
    background: var(--brand-green);
    color: #fff;
    border-color: var(--brand-green);
  }

  .btn-brand-primary:hover {
    background: var(--brand-green-dark);
    border-color: var(--brand-green-dark);
    color: #fff;
  }

  .btn-brand-outline {
    background: transparent;
    color: var(--brand-dark);
    border-color: var(--brand-dark);
  }

  .btn-brand-outline:hover {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: #fff;
  }

  .btn-brand-sm {
    padding: 10px 20px;
    font-size: 14px;
  }

  .btn-brand-lg {
    padding: 16px 36px;
    font-size: 16px;
  }

  /* ===============================
     NAVBAR STYLES
  ================================= */
  .navbar{
    background:#fff;
    border-bottom:1px solid rgba(0,0,0,.06);
    padding: .65rem 0;
  }
  .fixed-navbar{
    position: sticky;
    top: 0;
    z-index: 1050;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
  }
  .brand-logo{ height: 44px; }

  .navbar-nav .nav-link{
    color: #184337 !important;
    font-weight: 500;
    padding: .95rem 1.15rem !important;
    border-radius: .15rem;
    display:flex;
    align-items:center;
    gap:.4rem;
  }
  .navbar-nav .nav-link:hover{
    color:#0e2f27 !important;
  }
  .nav-link{
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-dark);
  }

  .nav-link.active-tab{
    background: var(--brand-green);
  }
  .btn-login{
    background: var(--brand-green);
    border:0;
    font-weight: 700;
    color:#153a31;
    padding:.55rem 1.35rem;
    border-radius:999px;
  }
  .dropdown-menu.ewasa-menu{
    min-width: 320px;
    padding: .75rem 0;
    border:0;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
    margin-top: .55rem;
  }
  .dropdown-menu.ewasa-menu::before{
    content:"";
    display:block;
    height:3px;
    background: var(--brand-green);
    margin-top:-.75rem;
    margin-bottom:.75rem;
  }
  .dropdown-menu.ewasa-menu .dropdown-item{
    padding: .9rem 1.25rem;
    font-weight: 500;
    color:#184337;
  }
  .dropdown-menu.ewasa-menu .dropdown-item:hover{
    background: rgba(207,227,38,.22);
    color:#0e2f27;
  }

  @media (min-width: 992px){
  .navbar .dropdown:hover > .dropdown-menu{
    display: block;
  }
  .navbar .dropdown > .dropdown-toggle{
    pointer-events: auto;
  }
}

  .hero-carousel .carousel-item{
    height: calc(100vh - 86px);
    min-height: 500px;
    position: relative;
    overflow: hidden;
    background:#0c0c0c;
  }
  .hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: center;
    z-index:1;
  }

  .hero-carousel .carousel-item::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.12);
    z-index:2;
    pointer-events:none;
  }
  .hero-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    z-index:3;
  }

  .hero-card{
    margin-left: clamp(1rem, 6vw, 4rem);
    width: min(420px, 92vw);
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(3px);
    padding: 1.6rem;
    border-radius: .2rem;
    box-shadow: 0 10px 28px rgba(0,0,0,.10);
  }
  .hero-card h1{
    color:var(--brand-dark-soft);
    font-size: clamp(1.6rem, 2.4vw, 2.3rem);
    font-weight: 800;
    margin-bottom:.9rem;
    line-height:1.15;
  }
  .hero-card p{
    margin:0;
    color:var(--brand-dark-soft);
    font-weight:500;
    line-height:1.55;
    font-size:1rem;
  }

  .carousel-control-prev,
  .carousel-control-next{
    width:12%;
    opacity:1;
    z-index:5;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon{
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background-color: transparent;
      background-size: 50%;
      box-shadow: 0 8px 18px rgba(0,0,0,.18);
      border: 1px solid rgba(0,0,0,.15);
  }

  .carousel-control-prev-icon{
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15 4 L7 12 L15 20' stroke='%234F8F14' stroke-width='4.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }

  .carousel-control-next-icon{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 4 L17 12 L9 20' stroke='%234F8F14' stroke-width='4.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }


  .hero-carousel .carousel-indicators{
    margin-bottom: 1.25rem; 
    gap: .35rem; z-index: 6; 
    } 
  .hero-carousel .carousel-indicators [data-bs-target]{
    width: 28px; 
    height: 6px; 
    border-radius: 999px; 
    border: 0; opacity: .55; 
    background: var(--brand-green-dark);
    } 
  .hero-carousel .carousel-indicators .active{ 
    opacity: 1; 
    background-color: black; 
    }

  @media (max-width:991px){
    .hero-card{
      margin:0 1rem;
    }
    .carousel-control-prev,
    .carousel-control-next{
      width:12%;
    }
  }
    @media (max-width: 991.98px){
      .social{ display:none !important; }
    }



.about-section {
  padding: 20px 0px;
  background: #c9c5c5;
}

 .video-thumb{
  position: relative;
  cursor: pointer;
  border: 10px solid #fff;
  overflow: hidden;
}

.video-thumb img{
  width: 100%;
  display: block;
}

.video-thumb::after{
  content: "▶";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 50px;
  color: var(--brand-light);
  background: rgba(0,0,0,.35);
  z-index: 2;
}

.video-thumb::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-57%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 8px solid var(--brand-light);
  z-index: 1;
}
.zigzag-divider{
  height: 28px;
  background: #c9c5c5;
  clip-path: polygon(
    0 0, 5% 100%, 10% 0, 15% 100%, 20% 0,
    25% 100%, 30% 0, 35% 100%, 40% 0,
    45% 100%, 50% 0, 55% 100%, 60% 0,
    65% 100%, 70% 0, 75% 100%, 80% 0,
    85% 100%, 90% 0, 95% 100%, 100% 0
  );
}

/* ===============================
   OUR SERVICES SECTION
================================ */
.services-section{
  padding: 90px 0;
  background: #ffffff;
}
.services-header{
  margin-bottom: 60px;
}
.services-tag{
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 10px;
}
.services-title{
  max-width: 760px;
  margin: 0 auto;
}
.service-image-card{
  height: 100%;
  background: #f8fbf6;
  border: 1px solid rgba(79,143,20,.35);
  overflow: hidden;
  border-radius: 6px;
  transition: all .25s ease;
}
.service-image-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
}
.service-image-card img{
  width: 100%;
  height: 220px;
  object-fit: fill;
  display: block;
}
.service-body{
  padding: 28px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 220px);
}
.service-body h5{
  color: var(--brand-green-dark);
  margin-bottom: 12px;
}
.service-body p{
  flex-grow: 1;
  margin-bottom: 22px;
}
.service-body .btn-brand{
  align-self: flex-start;
}



/* work progress */
.bw-process-step{
  background: linear-gradient(to bottom, var(--brand-green-dark), #1f3d2f);
  overflow: hidden;
}

.bw-process-step__title{
  color:#fff;
  font-weight:800;
  letter-spacing:.5px;
}

.bw-process-step__wrap{
  display:flex;
  flex-direction:column;
  gap:18px;
  align-items:center;
}

.bw-step-card{
  background: rgba(246,247,248,.92);
  border-radius: 3px;
  padding: 18px 18px;
  box-shadow: 0 12px 26px rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.25);
  width: 92%;
  max-width: 780px;
  opacity: 0;
  --step-x: 0px;
  --hover-x: 0px; 
  transform: translateX(calc(var(--step-x) + var(--hover-x)));
  animation: slideRightToLeft .8s ease forwards;

  transition: transform .25s ease, box-shadow .25s ease;
}

.bw-step-title{
  margin: 0 0 8px;
  font-weight: 800;
  color: var(--brand-green-dark);
  text-transform: uppercase;
  text-align:center;
  font-size: 13px;
}

.bw-step-card p{
  margin:0;
  color: rgba(22,22,22,.82);
  font-size: 12.5px;
  line-height: 1.6;
  text-align:left;
}

.step-1{ --step-x: 0px; }
.step-2{ --step-x: 40px; }
.step-3{ --step-x: 80px; }
.step-4{ --step-x: 120px; }
.step-5{ --step-x: 160px; }

.step-1{ animation-delay: .10s; }
.step-2{ animation-delay: .25s; }
.step-3{ animation-delay: .40s; }
.step-4{ animation-delay: .55s; }
.step-5{ animation-delay: .70s; }

.bw-step-card:hover{
  --hover-x: -10px;
  box-shadow: 0 18px 42px rgba(0,0,0,.22);
}

@keyframes slideRightToLeft{
  from{
    opacity: 0;
    transform: translateX(calc(var(--step-x) + 80px));
  }
  to{
    opacity: 1;
    transform: translateX(var(--step-x));
  }
}

@media (max-width: 992px){
  .step-2{ --step-x: 28px; }
  .step-3{ --step-x: 56px; }
  .step-4{ --step-x: 84px; }
  .step-5{ --step-x: 112px; }
}

@media (max-width: 768px){
  .step-1,.step-2,.step-3,.step-4,.step-5{
    --step-x: 0px;
  }
  .bw-step-card{
    width: 100%;
  }
  .bw-step-card p{
    font-size: 13px;
  }
}


 /* ===============================
   BRAND LOGOS SECTION
================================ */
  .bw-logos-section{
    padding: 50px 0;
    background: #fff;
  }

  .bw-logos-title{
    text-align:center;
    margin-bottom: 18px;
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: .2px;
  }

  .bw-logos-line{
    width: 80px;
    height: 3px;
    margin: 0 auto 26px;
    background: var(--brand-green);
    border-radius: 99px;
  }

  .bw-tab-nav{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 26px;
  }

  .bw-tab-btn{
    border: 1px solid rgba(0,0,0,.18);
    background: rgba(105,186,30,.28);
    color: var(--brand-dark);
    padding: 18px 20px;
    font-weight: 800;
    font-size: clamp(16px, 1.6vw, 22px);
    border-radius: 8px;
    line-height: 1.1;
    transition: .2s ease;
    cursor: pointer;
  }

  .bw-tab-btn.active{
    background: rgba(105,186,30,.95);
    color: #fff;
    border-color: rgba(0,0,0,.75);
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
  }

  @media (max-width: 768px){
    .bw-tab-nav{ grid-template-columns: 1fr; }
    .bw-tab-btn{ text-align:center; }
  }

  .bw-tab-content{ display:none; }
  .bw-tab-content.active{
    display:block;
    animation: bwFadeUp .35s ease;
  }

  @keyframes bwFadeUp{
    from{ opacity:0; transform: translateY(10px); }
    to{ opacity:1; transform: translateY(0); }
  }

  .bw-logo-slider{
    display:flex;
    align-items:center;
    gap: 14px;
    position: relative;
  }

  .bw-logo-viewport{
    width: 100%;
    overflow: hidden;
  }

  .bw-logo-track{
    display:flex;
    gap: 18px;
    transform: translateX(0);
    transition: transform .38s ease;
    will-change: transform;
  }

  .bw-logo-item{
    flex: 0 0 calc((100% - (18px * 3)) / 4);
  }

  @media (max-width: 992px){
    .bw-logo-item{
      flex: 0 0 calc((100% - (18px * 2)) / 3);
    }
  }

  @media (max-width: 576px){
    .bw-logo-item{
      flex: 0 0 calc((100% - 18px) / 2);
    }
  }

  .bw-logo-box{
    background: #fff;
    height: 92px;
    padding: 14px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius: 6px;
    transition: .22s ease;
  }

  .bw-logo-box:hover{
    transform: translateY(-2px);
    border-color: var(--brand-green-dark);
    box-shadow: 0 14px 26px rgba(0,0,0,.12);
  }

  .bw-logo-box img{
    max-width: 100%;
    max-height: 58px;
    width: auto;
    height: auto;
    object-fit: contain;
    display:block;
  }

  .bw-logo-nav{
    border: 0;
    background: transparent;
    color: var(--brand-green);
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    padding: 0 10px;
    cursor: pointer;
    user-select: none;
    transition: .15s ease;
  }

  .bw-logo-nav:hover{
    color: var(--brand-green-dark);
    transform: scale(1.05);
  }

  .bw-logo-nav:disabled{
    opacity: .35;
    cursor: not-allowed;
    transform: none;
  }

  @media (max-width: 576px){
    .bw-logo-nav{ font-size: 44px; }
  }


  /* news section styles */


  .bw-news{
    padding: 60px 0;
  }
  .bw-news__title{
    text-align:center;
    font-weight: 800;
    color: var(--brand-dark);
    margin: 0 0 8px;
  }
  .bw-news__line{
    width: 80px;
    height: 3px;
    border-radius: 99px;
    background: var(--brand-green);
    margin: 0 auto 28px;
  }

  .bw-news-slider{
    display:flex;
    align-items:center;
    gap: 14px;
  }
  .bw-news-nav{
    border: 0;
    background: transparent;
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    color: var(--brand-green);
    padding: 0 10px;
    cursor: pointer;
    user-select:none;
    transition: .15s ease;
  }
  .bw-news-nav:hover{ color: var(--brand-green-dark); transform: scale(1.05); }
  .bw-news-nav:disabled{ opacity:.35; cursor:not-allowed; transform:none; }

  .bw-news-viewport{
    overflow:hidden;
    width: 100%;
  }
  .bw-news-track{
    display:flex;
    gap: 22px;
    transition: transform .45s ease;
    will-change: transform;
  }

.bw-news-item{
  flex: 0 0 calc((100% - (22px * 2)) / 3);
}
@media (max-width: 991px){
  .bw-news-item{
    flex: 0 0 calc((100% - 22px) / 2); 
  }
}
@media (max-width: 576px){
  .bw-news-item{
    flex: 0 0 100%; 
  }

  .bw-news-nav{
    font-size: 38px;
  }
}


  .bw-news-card{
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    overflow:hidden;
    height: 100%;
    display:flex;
    border-radius: 7px;
    flex-direction: column;
  }


  .bw-news-media{
    width: 100%;
    aspect-ratio: 4/3;
    overflow:hidden;
    background: #e9ecef;
  }
  .bw-news-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display:block;
  }

  .bw-news-body{
    padding: 18px 18px 20px;
    display:flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
  }

  .bw-news-title{
    margin:0;
    color: #184337;
    font-weight: 800;
    font-size: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; 
    overflow: hidden;
  }

  .bw-news-meta{
    font-size: 12px;
    color: var(--brand-gray);
    display:flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .bw-news-text{
    margin: 0;
    color: rgba(22,22,22,.78);
    line-height: 1.6;
    font-size: 14px;
    display:-webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow:hidden;
  }

  /* button */
  .bw-news-btn{
    margin-top: auto;
    width: fit-content;
    display:inline-flex;
    align-items:center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(105,186,30,.22);
    color: var(--brand-dark);
    text-decoration: none;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .6px;
    transition: .2s ease;
  }
  .bw-news-btn:hover{
    background: var(--brand-green);
    color: #fff;
  }

  /* dots */
  .bw-news-dots{
    display:flex;
    justify-content:center;
    gap: 8px;
    margin-top: 18px;
  }
  .bw-news-dot{
    width: 7px;
    height: 7px;
    border-radius: 99px;
    background: rgba(0,0,0,.22);
  }
  .bw-news-dot.active{ background: var(--brand-green); }


  /* ============ TITLE ============ */
.bw-section-title{
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: .2px;
}
.bw-section-line{
  width: 70px;
  height: 3px;
  background: var(--brand-green);
  margin: 10px auto 22px;
  border-radius: 99px;
}
.bw-regulation-intro{
  margin: 0 auto;
  color: var(--brand-gray);
  line-height: 1.8;
  font-size: 15px;
}

/* ============ LIST (BULLETS) ============ */
.bw-regulation-list{
  list-style: none;
  padding: 0;
  margin: 0;
}
.bw-regulation-list li{
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: #2a2a2a;
  font-size: 15px;
}
.bw-regulation-list li::before{
  content: '';
  width: 8px;
  height: 8px;
  background: var(--brand-green);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}

/* separator line in the middle (like screenshot) */
.bw-regulation-midline{
  width: 110px;
  height: 3px;
  background: var(--brand-green);
  border-radius: 99px;
  margin: 28px auto 0;
  opacity: .9;
}

/* ============ LEFT PARAGRAPH (BOTTOM LEFT) ============ */
.bw-regulation-paragraph{
  color: var(--brand-gray);
  line-height: 1.9;
  font-size: 15px;
  margin: 0;
}


.bw-accordion-item{
  background: var(--brand-green-dark); 
  margin-bottom: 14px;
  border-radius: 0;
  overflow: hidden;
}

.bw-accordion-header{
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  padding: 16px 18px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.bw-accordion-header:hover{
  background: rgba(255,255,255,.06);
}

.bw-accordion-body{
  background: var(--brand-green-light);
  color: rgba(255,255,255,.92);
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.bw-accordion-body p{
  margin: 0;
  line-height: 1.7;
  font-size: 14px;
  color:var(--brand-dark);
}

.bw-accordion-item.active .bw-accordion-body{
  max-height: 320px;
  padding: 16px 18px 18px;
}

.bw-accordion-item .icon{
  font-size: 14px;
  color: rgba(255,255,255,.9);
}

.bw-accordion-item.active .icon{
  color: var(--brand-green-light);
}

.bw-link-accent{
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: none;
}


@media (max-width: 991.98px){
  .bw-regulation-midline{ margin-top: 22px; }
}




/* fqa section style */

.bw-faq{
  background: 
    url("/assets/images/fqa.jpg") center center / cover no-repeat;
  position: relative;
}

.bw-faq::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(255,255,255,.92);
}

.bw-faq__inner{
  position: relative;
  z-index: 2;
}

.bw-section-line{
  width:80px;
  height:3px;
  border-radius:99px;
  background: var(--brand-green);
}

.bw-faq__title{
  font-weight: 800;
  color: #184337;
}

.bw-faq__text{
  max-width: 860px;
  color: var(--brand-dark);
  line-height: 1.8;
  font-size: 15.5px;
}
.bw-faq__text p{
  margin-bottom: 8px;
}

.bw-faq__btn{
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .6px;
}

@media (max-width: 768px){
  .bw-faq{
    background-position: top center;
  }
  .bw-faq__text{
    font-size: 15px;
  }
}



#bwLeafletMap{
  width: 100%;
  height: 380px;
  border-radius: 6px;
  box-shadow: 0 16px 34px rgba(0,0,0,.12);
}

.bw-map-title{
  font-weight: 800;
  color: var(--brand-dark);
}

.bw-map-text{
  color: var(--brand-dark-soft);
  line-height: 1.7;
}

.leaflet-popup-content{
  margin: 10px 12px;
}
.bw-map-popup strong{
  color: var(--brand-green-dark);
}






















/* ===============================
   FOOTER STYLES
================================ */
.bw-footer{
  position: relative;
  overflow: hidden;

  background: linear-gradient(135deg, var(--brand-dark) 0%, #0c251a 55%, #0f3626 100%);
  color: rgba(255,255,255,.92);
  padding: 80px 0 0;
}

.bw-footer__art{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(155deg,rgba(0,0,0,0) 62%,rgba(0,0,0,.18) 62% 100%),
    radial-gradient(  260px 180px at 92% 0%,rgba(255,255,255,.04),transparent 72%),
    radial-gradient(180px 140px at 84% 10%,rgba(255,255,255,.03),transparent 74%);
    opacity: 1;
}

.bw-footer__inner{ position: relative; z-index: 2; }

.bw-footer__header{
  padding-bottom: 34px;
}

.bw-footer__headline{
  position: relative;
  display: inline-block;
  margin: 0;
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.05;
  color: rgba(255,255,255,.95);
}

.bw-leaf{
  position: absolute;
  right: -72px;
  top: 58%;
  transform: translateY(-50%) rotate(-8deg);
  width: 54px;
  height: 54px;
  opacity: .95;
}
.bw-leaf svg{
  width: 100%;
  height: 100%;
  fill: var(--brand-green-light);
}

.bw-footer__middle{
  padding: 32px 0 46px;
}

.bw-footer__col{
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bw-brand-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 18px;
  padding: 12px 18px;
  width: 360px;
  max-width: 100%;
  height: 92px;
  box-shadow: 0 14px 34px rgba(0,0,0,.30);
  text-decoration: none;
}

.bw-brand-logo{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center; 
  display: block;
}

@media (max-width: 576px){
  .bw-brand-pill{
    height: 78px;
    border-radius: 16px;
    padding: 10px 14px;
  }
}
.bw-footer__social{
  display:flex;
  gap: 14px;
  margin: 18px 0 26px;
}

.bw-social{
  width: 38px;
  height: 38px;
  display:grid;
  place-items:center;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  text-decoration:none;
  transition: .2s ease;
}
.bw-social svg{
  width: 18px;
  height: 18px;
  fill: var(--brand-green-light);
}
.bw-social:hover{
  background: rgba(105,186,30,.22);
  transform: translateY(-2px);
}

.bw-footer__cta{
  padding: 18px 26px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.bw-links-col{
  display:flex;
  flex-direction: column;
  gap: 16px;
}
.bw-links-col a{
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: .2s;
  font-size: 16px;
}
.bw-links-col a:hover{
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(105,186,30,.65);
}

.bw-footer__tagline{
  font-weight: 800;
  font-size: 26px;
  margin-bottom: 8px;
  color: rgba(255,255,255,.92);
}
.bw-footer__copy{
  color: rgba(255,255,255,.65);
  margin-bottom: 16px;
}
.bw-footer__legal{
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,.42);
  max-width: 100%;
}

.bw-footer__bottom{
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 0;
  text-align:center;
  color: rgba(255,255,255,.55);
  font-size: 14px;
}

@media (max-width: 768px){
  .bw-leaf{
    right: -46px;
    width: 38px;
    height: 38px;
    top: 62%;
  }
}
