/* ==== SCOPED TESTIMONIALS MODULE - NO CONFLICTS ==== */
   
    .bx-testimonials-section {
      padding: 80px 0;
      background: #fff;
      overflow: hidden;
      font-family: 'Montserrat', sans-serif;
      color: #333;
      font-weight: 400;
	 
	 
    }
	
	
	/* Prevent text selection during swipe/drag */
	.bx-testimonials-carousel,
	.bx-testimonials-carousel .bx-testimonials-card {
	  -webkit-user-select: none;
	  -moz-user-select: none;
	  -ms-user-select: none;
	  user-select: none;
	}

	/* Optionally allow text selection inside quotes only */
	.bx-testimonials-text {
	  -webkit-user-select: text;
	  -moz-user-select: text;
	  -ms-user-select: text;
	  user-select: text;
	}
   
    .bx-testimonials-section * {
      box-sizing: border-box;
    }
   
    .bx-testimonials-headline {
      font-size: 2.8rem;
      font-weight: 400;
      letter-spacing: 2.5px;
      color: #222;
      text-transform: uppercase;
      margin: 0 0 3.5rem;
      text-align: center;
    }
   
    .bx-testimonials-card {
      background: #fff;
      border-radius: 20px;
      padding: 32px 28px;
      box-shadow: 0 0px 20px rgba(0,0,0,0.1);
      transition: all 0.4s ease;
      text-align: center;
      border: 1px solid rgba(121,190,88,0.15);
      height: 480px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      max-width: 520px;
      margin: 0 auto;
    }
   
    .bx-testimonials-card:hover {
      box-shadow: 0 16px 40px rgba(121,190,88,0.2);
      border-color: #79be58;
    }
   
    .bx-testimonials-card-img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #79be58;
      margin: 0 auto 16px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
   
    .bx-testimonials-card-name {
      font-weight: 600;
      color: #222;
      margin-bottom: 4px;
      font-size: 1.2rem;
    }
   
    .bx-testimonials-card-title {
      font-size: 0.9rem;
      color: #79be58;
      font-weight: 500;
      margin-bottom: 16px;
      display: block;
    }
   
    .bx-testimonials-text {
      font-size: 1rem;
      line-height: 1.75;
      color: #444;
      position: relative;
      padding: 0 10px;
      flex-grow: 1;
    }
   
    .bx-testimonials-text i {
      color: #79be58;
      font-size: 1.4rem;
      opacity: 0.7;
      position: relative;
      margin-right: 6px;
    }
   
    .bx-testimonials-carousel .carousel-control-prev,
    .bx-testimonials-carousel .carousel-control-next {
      width: 50px;
      height: 50px;
      background: #79be58;
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      opacity: 0.9;
      transition: all 0.3s ease;
    }
   
    .bx-testimonials-carousel .carousel-control-prev:hover,
    .bx-testimonials-carousel .carousel-control-next:hover {
      opacity: 1;
      background: #6aa34a;
      transform: translateY(-50%) scale(1.1);
    }
   
    .bx-testimonials-carousel .carousel-control-prev {
      left: 10px;
    }
   
    .bx-testimonials-carousel .carousel-control-next {
      right: 10px;
    }
   
    .bx-testimonials-carousel .carousel-control-prev-icon,
    .bx-testimonials-carousel .carousel-control-next-icon {
      background-image: none;
      color: #fff;
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      font-size: 1.6rem;
    }
   
    .bx-testimonials-nav-btns {
      margin-top: 30px;
      display: flex;
      justify-content: center;
      gap: 16px;
    }
   
    .bx-testimonials-nav-btns .bx-testimonials-btn {
      background: #fff;
      color: #000000;
      font-weight: 400;
      padding: 0.1rem 0.1rem;
      border-radius: 50px;
      border: 1px solid #79be58;
      font-size: 2.55rem;
      transition: all 0.3s ease;
      min-width: 70px;
      cursor: pointer;
    }
   
    .bx-testimonials-nav-btns .bx-testimonials-btn:hover {
      background: #6aa34a;
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(121,190,88,0.3);
    }
   
    .bx-testimonials-carousel .carousel-inner {
      cursor: grab;
    }
   
    .bx-testimonials-carousel .carousel-inner:active {
      cursor: grabbing;
    }
   
    .bx-testimonials-mobile-slider {
      display: none;
      position: relative;
    }
   
    /* MOBILE ONLY */
    @media (max-width: 768px) {
      .bx-testimonials-section {
        padding: 25px 0;
		
      }
     
      .bx-testimonials-headline {
        font-size: 2rem;
        letter-spacing: 1.8px;
		
		margin-bottom: 3px;
      }
     
      .bx-testimonials-nav-btns {
        display: none !important;
      }
     
      .bx-testimonials-card {
        height: auto;
        min-height: 300px;
        padding: 20px 18px;
        border-radius: 16px;
      }
     
      .bx-testimonials-card-img {
        width: 85px;
        height: 85px;
        margin-bottom: 12px;
      }
     
      .bx-testimonials-card-name {
        font-size: 1.1rem;
        margin-bottom: 6px;
      }
     
      .bx-testimonials-card-title {
        font-size: 0.85rem;
        margin-bottom: 12px;
      }
     
      .bx-testimonials-text {
        font-size: 0.6rem;
        line-height: 1.65;
        padding: 0 8px;
        padding-left: 12px !important;
      }
     
      .bx-testimonials-text i {
        font-size: 1.2rem;
      }
     
      .bx-testimonials-carousel {
        display: none;
      }
     
      .bx-testimonials-mobile-slider {
        display: block;
      }
     
      .bx-testimonials-mobile-track {
        display: flex;
        gap: 18px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 8px 12px 20px 12px;
        -ms-overflow-style: none;
        scrollbar-width: none;
      }
     
      .bx-testimonials-mobile-track::-webkit-scrollbar {
        display: none;
      }
     
      .bx-testimonials-mobile-slide {
        flex: 0 0 calc(94%);
        scroll-snap-align: start;
        display: flex;
        justify-content: center;
      }
     
      .bx-testimonials-mobile-slide .bx-testimonials-card {
        width: 100%;
        max-width: none;
        margin: 0;
      }
     
      .bx-testimonials-mobile-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #79be58;
        border: none;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        
        z-index: 10;
        font-size: 1.4rem;
        cursor: pointer;
      }
     
      .bx-testimonials-mobile-arrow:active {
        transform: translateY(-50%) scale(0.95);
      }
     
      .bx-testimonials-mobile-prev {
        left: 8px;
      }
     
      .bx-testimonials-mobile-next {
        right: 8px;
      }
     
      .bx-testimonials-mobile-arrow[disabled] {
        opacity: 0.4;
        pointer-events: none;
      }
    }
   
    @media (max-width: 480px) {
      .bx-testimonials-headline {
        font-size: 1.7rem;
      }
     
      .bx-testimonials-card {
        min-height: 200px;
        padding: 22px 18px;
      }
     
      .bx-testimonials-card-img {
        width: 80px;
        height: 80px;
      }
     
      .bx-testimonials-text {
        font-size: 0.89rem;
      }
    }
	
	
	/* MOBILE-ONLY PROGRESS BAR - Clean & Premium */
.bx-testimonials-mobile-progress-wrapper {
  display: none; /* hidden on desktop */
  padding: 0 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .bx-testimonials-mobile-progress-wrapper {
    display: block;
  }

  .bx-testimonials-mobile-progress-container {
    width: 100%;
    max-width: 100%;
  }

  .bx-testimonials-mobile-progress-bg {
    height: 2px;
    background: rgba(121,190,88,0.2);
    border-radius: 4px;
    overflow: hidden;
  }

  .bx-testimonials-mobile-progress-fill {
    height: 100%;
    width: 0%;
    background: #000000;
    border-radius: 4px;
    transition: width 0.4s ease;
  }
}

.exhibitors-module * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
	  padding-left: 10px;
	  padding-right: 10px;
    }
    .exhibitors-module,
    .exhibitors-module body {
      font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
      background: #ffffff;
      line-height: 1.7;
      font-weight: 400;
    }
    .exhibitors-module .exhibitors-section {
      padding: 2rem 0 3rem;
      background: #ffffff;
    }
    .exhibitors-module .exhibitors-section .ex-container {
      padding: 0 2.5rem;
      background: #ffffff;
    }
    .exhibitors-module .ex-section-headline {
      text-align: center;
      margin-bottom: 2.5rem;
      margin-top: -2.5rem;
    }
    .exhibitors-module .ex-headline1 {
      font-size: 2.4rem;
      font-weight: 400;
      letter-spacing: 2px;
      color: #222;
      text-transform: uppercase;
      display: inline-block;
      padding-bottom: 8px;
    }
    .exhibitors-module .ex-exhibitor-card {
      background: #fff;
      border-radius: 24px;
      overflow: hidden;
      transition: all .35s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
      border: 1px solid #eee;
      padding: 1.5rem;
      margin-top: -20px;
    }
    .exhibitors-module .ex-exhibitor-card:hover {
      box-shadow: 0 15px 20px rgba(0, 0, 0, .18);
    }
    .exhibitors-module .ex-card-header {
      color: #79be58 !important;
      text-align: center;
      padding: 1.5rem 1rem;
      font-weight: 700;
      font-size: 1.2rem;
      letter-spacing: 1.5px;
      min-height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: normal;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }
    .exhibitors-module .ex-card-body {
      flex: 1;
      padding: 1rem 1rem 1rem;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .exhibitors-module .ex-card-body img {
      width: 280px;
      height: 100px;
      object-fit: cover;
      border-radius: 14px;
      margin-bottom: 1.25rem;
      margin-top: -2rem;
    }
    .exhibitors-module .ex-card-desc {
      font-size: 1.05rem;
      line-height: 1.8;
      color: #444;
      flex-grow: 1;
      font-weight: 400;
    }
    .exhibitors-module .ex-card-footer {
      text-align: center;
      padding: 1rem 1rem 1rem;
    }
    .exhibitors-module .ex-card-footer a {
      display: inline-block;
      background: #79be58;
      color: #fff;
      padding: 0.875rem 2.375rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.05rem;
      text-decoration: none;
      transition: all .3s ease;
    }
    .exhibitors-module .ex-card-footer a:hover {
      background: #79be58;
      transform: translateY(-4px);
    }
    .exhibitors-module .ex-exhibitor-card.ex-small .ex-card-header {
      font-size: 1.35rem;
      padding: 1.25rem 0.875rem;
      min-height: 60px;
      background: #fff !important;
    }
    .exhibitors-module .ex-exhibitor-card.ex-small .ex-card-body {
      padding: 1.25rem 1.25rem 0.75rem;
    }
    .exhibitors-module .ex-exhibitor-card.ex-small .ex-card-desc {
      font-size: 0.98rem;
    }
    .exhibitors-module .ex-exhibitor-card.ex-small .ex-card-footer a {
      padding: 0.75rem 2rem;
      font-size: 0.98rem;
    }

    /* Carousel base styles */
    .exhibitors-module .ex-exhibitor-row {
      display: flex;
      gap: 1rem;
      flex-wrap: nowrap;
      overflow-x: auto;
      padding: 0 1rem 2rem;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      scroll-behavior: smooth;
    }
    .exhibitors-module .ex-exhibitor-row::-webkit-scrollbar {
      display: none;
    }

    /* Default (mobile): show partial next card */
    .exhibitors-module .ex-card-wrapper {
      flex: 0 0 88%;
      max-width: 88%;
      scroll-snap-align: center;
    }

    /* Tablet */
    @media (min-width: 577px) and (max-width: 992px) {
      .exhibitors-module .ex-card-wrapper {
        flex: 0 0 65%;
        max-width: 65%;
      }
    }

    /* Desktop: show ~3 cards with partial 4th visible */
    @media (min-width: 993px) {
      .exhibitors-module .ex-card-wrapper {
        flex: 0 0 30%;
        max-width: 30%;
      }
    }

    /* Mobile tweaks */
    @media (max-width: 576px) {
      .exhibitors-module .ex-headline1 {
        font-size: 1.4rem;
        margin-bottom: -20px;
      }
      .exhibitors-module .ex-section-headline {
        margin-bottom: 1.5rem !important;
      }
      .exhibitors-module .exhibitors-section .ex-container {
        padding: 0;
      }
      .exhibitors-module .ex-exhibitor-card {
        padding: 0.1rem;
        margin-top: 0;
      }
      .exhibitors-module .ex-card-header {
        font-size: 1.05rem;
        padding: 0.7rem 0.5rem;
        min-height: auto;
        line-height: 1.3;
      }
      .exhibitors-module .ex-card-body {
        padding: 0.8rem 0.8rem 0.6rem;
      }
      .exhibitors-module .ex-card-body img {
        width: 100%;
        height: 85px;
        object-fit: contain;
        background: #fff;
        padding: 8px;
        margin-top: -1.2rem;
        margin-bottom: 0.8rem;
      }
      .exhibitors-module .ex-card-desc {
        font-size: 0.92rem;
        line-height: 1.55;
      }
      .exhibitors-module .ex-card-footer {
        padding: 0.6rem 0.8rem 0.8rem;
      }
      .exhibitors-module .ex-card-footer a {
        padding: 0.6rem 1.6rem;
        font-size: 0.92rem;
      }
    }
	
	/* =====================================================
       FULLY CONFLICT-PROOF STYLES (SCOPED TO #exhi-module)
       ===================================================== */
    #exhi-module,
    #exhi-module * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Montserrat', sans-serif;
    }
    #exhi-module {
      --logo-size: 220px;
      --gap: 32px;
      --speed: 200s;
      --primary: #79be58;
      background: #fff;
      padding: 20px 0;
      overflow: hidden;
    }
    #exhi-module .ex-container {
      max-width: 100%;
      padding: 0 20px;
      text-align: center;
    }
    #exhi-module .ex-headline {
      font-size: 2.2rem;
      font-weight: 400;
      color: #222;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 12px;
      display: inline-block;
    }
    #exhi-module .ex-headline::after { content: none; }
    /* Carousel */
    #exhi-module .ex-carousel {
      overflow-x: auto;
      overflow-y: hidden;
      cursor: grab;
      user-select: none;
      border-radius: 6px;
      -webkit-overflow-scrolling: touch;
      -ms-overflow-style: none;
      scrollbar-width: none;
      position: relative;
    }
    #exhi-module .ex-carousel::-webkit-scrollbar {
      display: none !important;
    }
    #exhi-module .ex-carousel:active {
      cursor: grabbing;
    }
    #exhi-module .ex-track {
      display: inline-flex;
      gap: var(--gap);
      align-items: center;
      animation: exhiScroll var(--speed) linear infinite;
    }
    #exhi-module .ex-track:hover {
      animation-play-state: paused;
    }
    /* Card */
    #exhi-module .ex-item {
      flex: 0 0 var(--logo-size);
      height: calc(var(--logo-size) * 0.41);
      background: #fff;
     
      border: 1px solid rgba(121,190,88,0.18);
      transition: transform .35s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      overflow: hidden;
    }
   
    #exhi-module .ex-item img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      user-drag: none;
      pointer-events: none;
      filter: grayscale(20%);
      transition: .3s ease;
    }
    #exhi-module .ex-item:hover img {
      filter: grayscale(0%);
    }
    @keyframes exhiScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    /* Breakpoints */
    @media (max-width: 1400px) { #exhi-module { --logo-size: 200px; --gap: 28px; } }
    @media (max-width: 1200px) { #exhi-module { --logo-size: 180px; --gap: 24px; } }
    @media (max-width: 992px) { #exhi-module { --logo-size: 160px; --gap: 20px; } }
    /* Mobile */
    @media (max-width: 576px) {
      #exhi-module { padding: 12px 0; --logo-size: 150px; --gap: 14px; }
      #exhi-module .ex-headline {
        font-size: 1.2rem;
        margin-bottom: 8px;
      }
      #exhi-module .ex-item {
        flex: 0 0 auto;
        width: var(--logo-size);
        height: auto;
        padding: 0;
      }
      #exhi-module .ex-item img {
        height: auto;
        max-height: none;
        object-fit: contain;
      }
    }
	
	
	/* ==== ORIGINAL STYLES (unchanged) ==== */
    .bx-partners-section{padding:80px 0 60px;background:#fff;font-family:'Montserrat',sans-serif;color:#333;line-height:1.6;font-weight:400;}
    .bx-partners-section *{box-sizing:border-box;}
    .bx-partners-container{max-width:1400px;margin:0 auto;padding:0 15px;}
    .bx-partners-header{text-align:center;margin-bottom:50px;}
    .bx-partners-headline{font-size:2.1rem;font-weight:400;letter-spacing:2.5px;color:#222;text-transform:uppercase;margin:0;position:relative;display:inline-block;padding-bottom:.5rem;}
    .bx-partners-headline::after{display:none;}
    .bx-partners-group{margin-bottom:28px;text-align:left;}
    .bx-partners-group-title{font-size:1.25rem;font-weight:400;color:#79be58;text-transform:uppercase;margin-bottom:14px;letter-spacing:.5px;display:inline-block;padding-bottom:6px;border-bottom:none !important;}
    .bx-partners-logo-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(170px,1fr));gap:16px;justify-content:start;padding:0 8px;}
    .bx-partners-logo-card{background:#fff;border-radius:14px;overflow:hidden;box-shadow:0 5px 16px rgba(0,0,0,.1);width:100%;max-width:150px;border:1px solid rgba(121,190,88,.15);padding:2px;display:flex;flex-direction:column;justify-content:center;align-items:center;text-decoration:none;}
    .bx-partners-logo-card:hover{box-shadow:0 10px 24px rgba(121,190,88,.25);border-color:#79be58;text-decoration:none;}
    .bx-partners-logo-card img{width:100%;max-width:160px;height:100px;object-fit:contain;border-radius:6px;}
    .bx-partners-side-row{display:flex;flex-wrap:wrap;margin-left:0;margin-right:0;gap:0;}
    .bx-partners-side-col{flex:0 0 33.333333%;max-width:33.333333%;padding-left:0!important;padding-right:0!important;}
    .bx-partners-side-col:first-child{padding-right:8px!important;}
    .bx-partners-side-col:last-child{padding-left:8px!important;}
    .bx-partners-full-width-group{margin-top:2.5rem!important;}
    /* RESPONSIVE */
    @media (max-width:1200px){.bx-partners-logo-grid{grid-template-columns:repeat(5,1fr);}}
    @media (max-width:992px){
      .bx-partners-logo-grid{grid-template-columns:repeat(4,1fr);}
      .bx-partners-side-col{flex:0 0 100%;max-width:100%;padding:0 0 1.5rem 0!important;}
    }
    @media (max-width:768px){
      .bx-partners-logo-grid{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;gap:14px;padding:8px 4px 20px 4px;scrollbar-width:none;-ms-overflow-style:none;}
      .bx-partners-logo-grid::-webkit-scrollbar{display:none;}
      .bx-partners-logo-card{flex:0 0 calc(85% - 7px);max-width:calc(85% - 7px);scroll-snap-align:start;padding:4px!important;}
      .bx-partners-logo-card img{height:85px;object-fit:contain;}
      .bx-partners-group{text-align:center!important;}
      .bx-partners-group-title{display:block;width:fit-content;margin:0 auto 14px auto;}
    }
    @media (max-width:576px){
      .bx-partners-logo-card{flex: 0 0 calc(90% - 7px);max-width:calc(90% - 7px);}
      .bx-partners-headline{font-size:1.2rem;font-weight:400;}
      .bx-partners-group-title{font-size:1.1rem;}
    }
    @media (max-width:400px){
      .bx-partners-logo-card{flex: 0 0 calc(92% - 7px);max-width:calc(92% - 7px);margin:0;}
    }
    @media (max-width:576px){
      .bx-partners-section{padding:40px 0!important;}
      .bx-partners-header{margin-bottom:25px!important;}
      .bx-partners-headline{margin:0!important;}
    }
    /* ───── MOBILE-ONLY: Final perfect version ───── */
    @media (max-width: 768px) {
      /* Default width for scrollable groups (3+ cards) */
      .bx-partners-logo-card {
        flex: 0 0 48% !important;
        max-width: 48% !important;
        padding: 0 !important;
      }
      .bx-partners-logo-card img {
        width: 100%;
        max-width: none !important;
        height: 85px;
        padding: 0;
      }
      /* CENTER + SLIGHTLY NARROWER for groups with 1 or 2 logos only */
      .bx-partners-logo-grid:has(.bx-partners-logo-card:nth-last-child(-n+2):first-child) {
        justify-content: center !important;
        overflow-x: hidden;
      }
      .bx-partners-logo-grid:has(.bx-partners-logo-card:nth-last-child(-n+2):first-child) .bx-partners-logo-card {
        flex: 0 0 44% !important;
        max-width: 44% !important;
      }
      /* SCROLL + PEEK: Only groups with 3+ logos */
      .bx-partners-logo-grid:not(:has(.bx-partners-logo-card:nth-last-child(-n+2):first-child)) {
        padding-right: 70px !important;
      }
      /* Tight spacing */
      .bx-partners-full-width-group,
      .bx-partners-side-row {margin-top: 0.8rem !important;}
      .bx-partners-group {margin-bottom: 1rem !important;}
      .bx-partners-group-title {margin-bottom: 10px !important;}
      .bx-partners-logo-grid {padding-bottom: 8px !important;}
      .bx-partners-section {padding-bottom: 40px !important;}
    }
    @media (max-width: 576px) {
      .bx-partners-logo-card img {height: 75px;}
      .bx-partners-logo-grid:has(.bx-partners-logo-card:nth-last-child(-n+2):first-child) .bx-partners-logo-card {
        flex: 0 0 48% !important;
        max-width: 48% !important;
      }
      .bx-partners-logo-grid:not(:has(.bx-partners-logo-card:nth-last-child(-n+2):first-child)) {
        padding-right: 60px !important;
      }
      .bx-partners-section {padding-bottom: 30px !important;}
    }

    /* NEW: Separate mobile auto-scroll (no effect on desktop) */
    .desktop-version { display: block; }
    .mobile-version { display: none; }

    @media (max-width: 768px) {
      .desktop-version { display: none; }
      .mobile-version { display: block; }

      .mobile-auto-scroll {
		  touch-action: pan-x;
		  cursor: grab;
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 14px;
        padding: 8px 4px 20px 4px;
      }
	  .mobile-auto-scroll:active {
    cursor: grabbing;
  }
  
  .mobile-auto-scroll:active .mobile-auto-inner,
  .mobile-auto-scroll:focus-within .mobile-auto-inner {
    animation-play-state: paused !important;
  }

  /* Smooth scrolling */
  .mobile-auto-scroll {
    scroll-behavior: smooth;
  }
      .mobile-auto-scroll::-webkit-scrollbar { display: none; }

      .mobile-auto-inner {
        display: flex;
        gap: 14px;
        width: max-content;
        animation: mobileScroll 30s linear infinite;
      }

      .mobile-auto-scroll:hover .mobile-auto-inner {
        animation-play-state: paused;
      }

      @keyframes mobileScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
      }
    }
	
	/* DESKTOP FIX: Make Supporting & Information Partners horizontal */
@media (min-width: 769px) {
  .bx-partners-full-width-group .bx-partners-logo-grid.desktop-version {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    justify-content: flex-start;
  }

  .bx-partners-full-width-group .bx-partners-logo-card {
    flex: 0 0 auto;
  }
}

/* MOBILE FULL-WIDTH AUTO SCROLL */
@media (max-width: 768px) {
  .bx-partners-logo-grid.mobile-version {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .mobile-auto-scroll {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 12px;
    padding-right: 12px;
  }
}


/* FIX: Smooth & proper auto-scroll for mobile Supporting + Information Partners */
@media (max-width: 768px) {

  /* Auto-scroll cards must be fixed width */
  .mobile-version .bx-partners-logo-card {
    flex: 0 0 160px !important;
    max-width: 160px !important;
    padding: 6px !important;
  }

  .mobile-version .bx-partners-logo-card img {
    height: 80px;
    width: 100%;
    object-fit: contain;
  }

  /* Slower, smoother infinite scroll */
  .mobile-version .mobile-auto-inner {
    animation: mobileScroll 18s linear infinite;
  }
}


.expo-header-2025 * { margin: 0; padding: 0; box-sizing: border-box; }
        .expo-header-2025 {
            position: relative;
            overflow: hidden;
            isolation: isolate;
            font-family: 'Montserrat', sans-serif;
            background: #000;
            color: #fff;
            z-index: 9999;
        }
        .expo-header-2025 + * { margin-top: 152px !important; }
        @media (max-width: 768px) { .expo-header-2025 + * { margin-top: 90px !important; } }

        /* ==================== FIXED VIDEO BACKGROUND ==================== */
        .expo-header-2025 .video-wrapper {
            position: relative;
            width: 100vw;
            height: 110vh;
            overflow: hidden;
            margin-top: -90px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1;
        }

        .expo-header-2025 .local-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .expo-header-2025 .local-video video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .expo-header-2025 .desktop-video { display: block; }
        .expo-header-2025 .mobile-video  { display: none; }

        @media (max-width: 768px) {
            .expo-header-2025 .video-wrapper {
                height: 90vh !important;
                margin-top: 0 !important;
            }
            .expo-header-2025 .desktop-video { display: none !important; }
            .expo-header-2025 .mobile-video  { display: block !important; }
        }

        .expo-header-2025 .bottom-center-buttons {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 50px;
            z-index: 99;
        }
        .expo-header-2025 .btn-explore {
            padding: 10px 32px;
            background: #fff;
            color: #000;
            border-radius: 50px;
            font-weight: 450;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1.9px;
            font-size: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
        }
        @media(max-width: 768px){
            .expo-header-2025 .bottom-center-buttons { bottom: 30px; }
            .expo-header-2025 .btn-explore {
                padding: 12px 36px !important;
                font-size: 13.5px !important;
                letter-spacing: 1.7px !important;
            }
        }
        .expo-header-2025 .header-container {
            position: fixed;
            top: 0; left: 0;
            width: 100%;
            z-index: 9999;
            transition: transform 0.35s ease;
        }
        .expo-header-2025 .header-container > * { pointer-events: auto; }
        @media (max-width: 768px) {
            .expo-header-2025 .header-container.hide { transform: translateY(-100%); }
        }
        .expo-header-2025 .top-strip {
            background: rgba(0,0,0,0.88);
            backdrop-filter: blur(8px);
            padding: 6px 30px !important;
            font-size: 12.5px !important;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #fff;
            min-height: 40px;
            height: 40px;
        }
        .expo-header-2025 .top-left, .expo-header-2025 .top-right {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        .expo-header-2025 .top-right a {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: #fff;
            font-weight: 500;
            font-size: 12.5px;
        }
        .expo-header-2025 .top-right a:nth-child(1) i { color: #25D366; }
        /* Google Translate Desktop */
        .expo-header-2025 #google_translate_element { display: inline-block; }
        .expo-header-2025 .goog-te-gadget-simple {
            background: transparent !important;
            border: 1.4px solid rgba(255,255,255,0.3) !important;
            border-radius: 20px !important;
            padding: 5px 12px !important;
            font-size: 12px !important;
            color: #fff !important;
            font-weight: 500 !important;
            cursor: pointer;
            transition: 0.3s;
        }
        .expo-header-2025 .goog-te-gadget-simple:hover {
            background: rgba(255,255,255,0.1) !important;
            border-color: #79be58 !important;
        }
        .expo-header-2025 .goog-te-gadget-simple img { display: none !important; }
        .goog-te-gadget-simple,
        .goog-te-gadget-simple *,
        .goog-te-menu-value,
        .goog-te-menu-value span,
        .goog-te-menu-value span:first-child + span,
        .goog-te-menu-value * {
            color: #ffffff !important;
            font-weight: 500 !important;
        }
        .goog-te-menu-value span:first-child { display: none !important; }
        .goog-te-menu-value::before {
            content: "Translate" !important;
            color: #ffffff !important;
        }
        .expo-header-2025 .navbar {
            background: rgba(255,255,255,0.09);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255,255,255,0.15);
            padding: 8px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 45px;
            border-radius: 0 0 10px 10px;
            transition: all 0.4s ease;
        }
        @media (max-width: 768px) {
            .expo-header-2025 .navbar {
                padding: 10px 20px !important;
                height: 70px !important;
                justify-content: center;
                border-radius: 0 !important;
                background: transparent !important;
                backdrop-filter: none !important;
                box-shadow: none !important;
                border-bottom: none !important;
            }
            .expo-header-2025 .navbar.scrolled { background: #ffffff !important; }
            .expo-header-2025 .navbar.scrolled .mobile-left i,
            .expo-header-2025 .navbar.scrolled .mobile-right i { color: #000 !important; }
        }
        @media(min-width: 769px) {
            .expo-header-2025 .navbar.scrolled {
                background: #ffffff !important;
                backdrop-filter: none !important;
            }
            .expo-header-2025 .navbar.scrolled a,
            .expo-header-2025 .navbar.scrolled span,
            .expo-header-2025 .navbar.scrolled i { color: #000 !important; }
        }
        .expo-header-2025 .desktop-logo img { height: 22px; width: auto; }
        .expo-header-2025 .search-box {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            margin-right: 24px;
        }
        .expo-header-2025 .search-box i { font-size: 18px; }
        @media(max-width: 768px){
            .expo-header-2025 .top-strip, .expo-header-2025 .desktop-row { display: none !important; }
            .expo-header-2025 .mobile-row {
                display: flex !important;
                align-items: center;
                justify-content: space-between;
                width: 100%;
                max-width: 500px;
                position: relative;
            }
            .expo-header-2025 .mobile-left { display: flex; align-items: center; gap: 20px; }
            .expo-header-2025 .mobile-left i {
                font-size: 24px;
                color: #fff;
                cursor: pointer;
            }
            .expo-header-2025 .mobile-logo {
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                font-size: 26px !important;
                font-weight: 700;
                color: #fff;
                letter-spacing: 1px;
            }
            .expo-header-2025 .mobile-logo img { height: 16px; width: auto; display: block; }
            .expo-header-2025 .mobile-right { display: flex; align-items: center; gap: 18px; }
            .expo-header-2025 .mobile-right a i {
                font-size: 22px;
                color: #fff;
            }
        }
        @media(min-width: 769px){ .expo-header-2025 .mobile-row { display: none !important; } }
        /* === DESKTOP: SEPARATE DROPDOWN SETTINGS (HOVER) === */
        @media(min-width: 769px) {
            .expo-header-2025 .nav-links {
                display: flex;
                align-items: center;
                gap: 38px;
            }
            .expo-header-2025 .nav-links > a,
            .expo-header-2025 .nav-links .desktop-dropdown > a {
                color: #fff;
                font-size: 13.5px;
                font-weight: 500;
                text-transform: uppercase;
                letter-spacing: 1.5px;
                text-decoration: none !important;
            }
            .expo-header-2025 .desktop-dropdown {
                position: relative;
            }
            .expo-header-2025 .desktop-dropdown > a::after {
                content: " ▼";
                font-size: 9px;
                margin-left: 6px;
                opacity: 0.8;
                transition: transform 0.3s ease;
            }
            .expo-header-2025 .desktop-dropdown:hover > a::after {
                transform: rotate(180deg);
            }
            .expo-header-2025 .desktop-dropdown-menu {
                position: absolute;
                top: 100%;
                left: 50%;
                transform: translateX(-50%);
                background: #fff;
                min-width: 260px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.2);
                border-radius: 8px;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 9999;
                padding: 16px 0;
                text-align: center;
                pointer-events: none;
            }
            .expo-header-2025 .desktop-dropdown:hover .desktop-dropdown-menu {
                opacity: 1;
                visibility: visible;
                transform: translateX(-50%) translateY(8px);
                pointer-events: auto;
            }
            .expo-header-2025 .desktop-dropdown::after {
                content: "";
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                height: 20px;
                background: transparent;
            }
            .expo-header-2025 .desktop-dropdown-item {
                display: block;
                padding: 12px 20px;
                color: #000 !important;
                font-size: 13.5px;
                font-weight: 500;
                text-transform: none;
                letter-spacing: 0.5px;
                text-decoration: none;
                transition: all 0.3s;
            }
            .expo-header-2025 .desktop-dropdown-item:hover {
                background: #79be58;
                color: #fff !important;
            }
        }
        /* Mobile Menu */
        .expo-header-2025 .mobile-menu-overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.85);
            opacity: 0; visibility: hidden;
            transition: all 0.4s ease;
            z-index: 9998;
        }
        .expo-header-2025 .mobile-menu-overlay.active { opacity: 1; visibility: visible; }
        .expo-header-2025 .mobile-menu {
            position: fixed;
            top: 0; right: -100%;
            width: 100vw; height: 100vh;
            background: #fff;
            z-index: 9999;
            transition: right 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }
        .expo-header-2025 .mobile-menu.active { right: 0; }
        .expo-header-2025 .mobile-menu-header {
            padding: 28px 24px 20px !important;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            border-bottom: 1px solid #eee;
            position: relative;
            height: auto;
            min-height: 80px;
        }
        .expo-header-2025 .mobile-menu-header span {
            margin-top: 12px;
            font-size: 18px;
            font-weight: 700;
            color: #000;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .expo-header-2025 .close-menu {
            position: absolute;
            top: 34px !important;
            right: 20px;
            font-size: 28px !important;
            cursor: pointer;
            color: #333;
        }
        .expo-header-2025 .mobile-menu-links { padding: 30px 20px; flex-grow: 1; }
        .expo-header-2025 .mobile-menu-links > a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            font-size: 16px;
            font-weight: 500;
            color: #000;
            text-decoration: none;
            border-bottom: 1px solid #eee;
        }
        .expo-header-2025 .mobile-menu-links > a:last-child { border-bottom: none; }
        .mobile-dropdown { border-bottom: 1px solid #eee; }
        .mobile-dropdown-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            font-size: 16px;
            font-weight: 500;
            color: #000;
            cursor: pointer;
        }
        .mobile-dropdown-title::after { content: "+"; font-size: 22px; transition: transform 0.3s; }
        .mobile-dropdown.active .mobile-dropdown-title::after { content: "−"; }
        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            background: #f8f8f8;
        }
        .mobile-submenu a {
            display: block;
            padding: 14px 20px;
            font-size: 15px;
            color: #333;
            text-decoration: none;
        }
        .mobile-submenu a:hover { background: #79be58; color: #fff; }
        .expo-header-2025 .mobile-menu-contact {
            padding: 0 20px 30px;
            border-top: 1px solid #eee;
        }
        .expo-header-2025 .mobile-menu-contact a {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 14px 0px;
            color: #000;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            min-width: 140px;
            justify-content: space-between;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .expo-header-2025 .mobile-menu-contact a i {
            font-size: 20px;
            margin-left: auto;
        }
        .expo-header-2025 .mobile-menu-contact .fab.fa-whatsapp {
            color: #25D366;
        }
        .expo-header-2025 .mobile-menu-contact i { font-size: 18px; width: 24px; }
        .expo-header-2025 .mobile-menu-contact .fab.fa-whatsapp { color: #25D366; }
        .expo-header-2025 .schedule-btn {
            background: #79be58 !important;
            color: #fff !important;
            padding: 16px 20px !important;
            border-radius: 50px;
            margin-top: 15px;
            justify-content: center !important;
            font-weight: 600;
            display: flex;
            gap: 10px;
        }
        #google_translate_element_mobile .goog-te-gadget-simple {
            background: transparent !important;
            border: 1.8px solid #79be58 !important;
            border-radius: 25px !important;
            padding: 8px 16px !important;
            font-size: 14px !important;
            color: #000 !important;
            font-weight: 600 !important;
        }
        #google_translate_element_mobile .goog-te-gadget-simple:hover {
            background: #79be58 !important;
            color: #fff !important;
        }
        #google_translate_element_mobile img,
        #google_translate_element_mobile .goog-te-menu-value span:first-child { display: none !important; }
        #google_translate_element_mobile .goog-te-menu-value::before { content: "Language" !important; }
        /* FORCE-HIDE ALL BUNNY.NET (mediadelivery.net) PLAYER CONTROLS & OVERLAYS */
        .local-video iframe {
            pointer-events: none !important;
        }
        iframe[src*="mediadelivery.net"] {
            pointer-events: none !important;
        }
        iframe[src*="mediadelivery.net"] + * {
            display: none !important;
        }
        .cld-video-player .vjs-big-play-button,
        .cld-video-player .vjs-control-bar,
        .cld-video-player .vjs-play-progress,
        .cld-video-player .vjs-overlay,
        .cld-video-player * [class*="vjs-"] {
            display: none !important;
            opacity: 0 !important;
            visibility: hidden !important;
            pointer-events: none !important;
        }
        iframe[src*="mediadelivery.net"]::after,
        iframe[src*="mediadelivery.net"] ~ * {
            display: none !important;
        }
        /* video loading indicator */
        .expo-header-2025 .video-loading-indicator {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            z-index: 10;
            pointer-events: none;
            transition: opacity 0.8s ease;
        }
        .expo-header-2025 .video-loading-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 500;
            color: #fff;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 0 2px 10px rgba(0,0,0,0.6);
        }
        @media (max-width: 768px) {
            .expo-header-2025 .video-loading-text {
                font-size: 20px;
                letter-spacing: 1.8px;
            }
        }
        /* rotating partial ring spinner */
        .expo-header-2025 .ring-spinner {
            width: 60px;
            height: 60px;
            border: 6px solid rgba(121, 190, 88, 0.2);
            border-top-color: #79be58;
            border-radius: 50%;
            animation: ringSpin 1.2s linear infinite;
        }
        @media (max-width: 768px) {
            .expo-header-2025 .ring-spinner {
                width: 50px;
                height: 50px;
                border-width: 5px;
            }
        }
        @keyframes ringSpin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Loading spinner fade when video plays */
        .local-video.loaded .video-loading-indicator {
            opacity: 0;
            transition: opacity 0.6s ease;
            pointer-events: none;
        }
		
		
		.local-video.loaded .video-loading-indicator {
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.local-video .video-loading-indicator {
    opacity: 1;
    transition: opacity 0.6s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Montserrat', sans-serif;
      background: #ffffff;
      color: #1a1a1a;
      line-height: 1.7;
      overflow-x: hidden;
    }
    .buildexpo-hero-module {
      position: relative;
      width: 100%;
      height: 80vh;
      min-height: 435px;
      max-height: 435px;
      overflow: hidden;
    }
    .buildexpo-hero-module::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.45);
      z-index: 1;
    }
    .buildexpo-hero-bg {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
    }
    .buildexpo-hero-content {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .buildexpo-hero-container {
      max-width: 1400px;
      width: 100%;
      padding: 0 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 160px;
      align-items: center;
    }
    .buildexpo-hero-text p {
      font-size: 2.8rem;
      line-height: 1.4;
      margin-left: 340px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.95);
    }
    .buildexpo-hero-text .highlight {
      color: #79be58;
      font-weight: 700;
      font-size: 2.8rem;
    }
    .buildexpo-hero-logo img {
      max-width: 550px;
      width: 100%;
      margin-top: -120px;
      filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
    }
    @keyframes slideInLeft { from {opacity:0; transform:translateX(-60px);} to {opacity:1; transform:translateX(0);} }
    @keyframes slideInRight { from {opacity:0; transform:translateX(60px);} to {opacity:1; transform:translateX(0);} }
    .buildexpo-hero-text { opacity:0; animation: slideInLeft 1s ease forwards 0.3s; }
    .buildexpo-hero-logo { opacity:0; animation: slideInRight 1s ease forwards 0.5s; }

    .buildexpo-about-module {
      padding: 100px 20px 60px;
      background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    }
    .buildexpo-about-wrapper { max-width: 1400px; margin: 0 auto; }
    .buildexpo-about-heading {
      font-size: 2.8rem;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 50px;
      margin-top: -50px;
    }
    .buildexpo-about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .buildexpo-about-text {
      font-size: 1.05rem;
      color: #444;
    }
    .buildexpo-about-text strong { color: #79be58; font-weight: 700; }
    .buildexpo-about-text p { margin-bottom: 20px; }
    .buildexpo-about-text p:last-child { margin-bottom: 0; }
    .buildexpo-about-video {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }
    .buildexpo-video-wrapper {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
    }
    .buildexpo-video-wrapper iframe {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      border: none;
    }

    @media (max-width: 1200px) {
      .buildexpo-hero-container { gap: 100px; }
      .buildexpo-hero-text p { margin-left: 200px; }
    }
    @media (max-width: 992px) {
      .buildexpo-hero-container { gap: 60px; padding: 0 30px; }
      .buildexpo-hero-text p { margin-left: 80px; font-size: 2.4rem; }
      .buildexpo-hero-text .highlight { font-size: 2.4rem; }
      .buildexpo-hero-logo img { max-width: 460px; margin-top: -90px; }
      .buildexpo-about-grid { grid-template-columns: 1fr; gap: 60px; }
      .buildexpo-about-heading { font-size: 2.5rem; }
    }
    @media (max-width: 768px) {
      .buildexpo-hero-module { height: 16vh; min-height: 120px; max-height: none; margin-bottom: -60px; }
      .buildexpo-hero-bg { object-fit: cover; object-position: center center; }
      .buildexpo-hero-container { grid-template-columns: 1fr 1fr; gap: 20px; padding: 0 20px; }
      .buildexpo-hero-text p { margin-left: 20px; font-size: 0.5rem; line-height: 1; }
      .buildexpo-hero-text .highlight { font-size: 0.2rem; }
      .buildexpo-hero-logo img { max-width: 420px; max-height: 420px; margin-top: -60px; }
      .buildexpo-about-module { padding: 90px 20px 0px; }
      .buildexpo-about-heading { font-size: 30px; }
    }
    @media (max-width: 480px) {
      .buildexpo-hero-module { min-height: 40px; }
      .buildexpo-hero-text p { margin-left: 10px; font-size: 1.2rem; }
      .buildexpo-hero-module .buildexpo-hero-bg { min-height: 40px; }
      .buildexpo-hero-text .highlight { font-size: 1rem; }
      .buildexpo-hero-logo img { max-width: 360px; max-height: 760px; margin-top: -30px; padding-right: 15px; }
      .buildexpo-hero-container { gap: 10px; padding: 0 0px; }
      .buildexpo-about-heading { font-size: 1.4rem; margin-bottom: 14px; font-weight: 400; }
      .buildexpo-about-text { font-size: 0.9rem; }
      .buildexpo-about-video { margin-top: -34px; margin-bottom: 18px; }
    }
	
	.expo-collab-module {
            background-color: #ffffff;
            color: #000000;
            font-family: 'Montserrat', sans-serif;
            margin: 0 !important;
            padding: 0 !important;
        }
        .expo-collab-module .main-heading {
            font-size: 2.4rem;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            text-align: center;
            margin: 0 0 1rem 0;
            padding-top: 6rem;
            line-height: 1;
            color: #000;
        }
        .expo-collab-module .sub-heading {
            font-size: 1.8rem;
            font-weight: 300;
            text-align: center;
            max-width: 1400px;
            margin: 0 auto 3rem auto;
            opacity: 0.9;
            line-height: 1.6;
            color: #333;
        }
        .expo-collab-module .logo-fullwidth {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            background: #ffffff;
            padding: 0 2vw 1rem;
            margin-top: 0 !important;
            overflow: hidden; /* Hide overflow for infinite effect */
        }
        .expo-collab-module .logo-container {
            width: 100vw;
            display: flex;
            gap: 0.8vw;
            overflow-x: auto;
            scrollbar-width: none;
            padding: 0rem 2rem;
            -webkit-overflow-scrolling: touch;
        }
        .expo-collab-module .logo-container::-webkit-scrollbar { display: none; }
        .expo-collab-module .logo-item img {
            height: 90px;
            width: auto;
            object-fit: contain;
            flex-shrink: 0;
        }

        /* Desktop - unchanged */
        @media (min-width: 769px) {
            .expo-collab-module .sub-heading { margin-bottom: 1rem !important; }
            .expo-collab-module .logo-fullwidth { padding-top: 0.5rem !important; }
        }

        /* MOBILE ONLY - FULL WIDTH + 2/4 LINES + ZERO SPACE AROUND LOGOS */
        @media (max-width: 768px) {
            .expo-collab-module .container {
                padding: 0 20px !important;
            }
            .expo-collab-module .main-heading {
                font-size: 1.2rem !important;
                padding-top: 2rem;
                padding-bottom: 1rem;
                line-height: 1.15;
                margin: 0 auto;
                width: 100%;
                max-width: none !important;
            }
            .expo-collab-module .sub-heading {
                font-size: 1rem;
                line-height: 1;
                padding: 0 1vw;
                margin: 0 auto 1rem auto;
                margin-bottom: -70px;
                width: 100%;
                max-width: none !important;
                display: -webkit-box;
                -webkit-line-clamp: 4;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
                height: calc(1rem * 1.55 * 4);
            }

            .expo-collab-module .logo-fullwidth {
                margin-top: -2rem !important;
                padding: 0 1vw 0 !important;
            }
            .expo-collab-module .logo-container {
                padding: 0 !important;
                gap: 2vw;
            }

            .expo-collab-module .logo-item img {
                height: 75px !important;
            }
        }
        @media (max-width: 576px) {
            .expo-collab-module .logo-item img { height: 52px !important; }
        }
        
        @media (min-width: 769px) {
            .expo-collab-module .logo-container {
                user-select: none;
                -webkit-user-select: none;
                -ms-user-select: none;
                cursor: grab;
            }
            .expo-collab-module .logo-container.dragging {
                cursor: grabbing;
            }
            .expo-collab-module .logo-item img {
                pointer-events: none;
            }
        }
		
.buildexpo-options-module * { margin: 0; padding:0; box-sizing:border-box; }
    .buildexpo-options-module {
      font-family:'Montserrat',sans-serif;
      background:#fff;
      color:#222;
      line-height:1.6;
      padding:90px 20px 120px;
      text-align:center;
    }
    .buildexpo-options-module .module-container { max-width:1300px; margin:0 auto; position:relative; }
    .buildexpo-options-module .module-title {
      font-size:2.4rem;
      font-weight:400;
      text-transform:uppercase;
      letter-spacing:3px;
      color:#000;
      margin-bottom:50px;
    }
    .buildexpo-options-module .cards-wrapper { overflow:hidden; }

    /* Desktop */
    .buildexpo-options-module .cards-grid {
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:30px;
      padding:20px 0;
    }
    .buildexpo-options-module .option-card {
      background:#ffffff;
      border:2px solid transparent;
      border-radius:16px;
      padding:35px 25px;
      transition:border-color .4s ease;
      display:flex;
      flex-direction:column;
      align-items:center;
    }
    .buildexpo-options-module .option-card:hover { border-color:#79be58; } /* ← changed */
    .buildexpo-options-module .card-title {
      font-size:1.55rem;
      font-weight:700;
      color:#000;
      margin-bottom:28px;
    }
    .buildexpo-options-module .links-list {
      list-style:none;
      width:100%;
      display:flex;
      flex-direction:column;
      gap:15px;
	  margin-left: -20px;
    }
    .buildexpo-options-module .links-list li a {
      color:#333;
      text-decoration:none;
      font-size:1.02rem;
      font-weight:500;
      padding:10px 15px;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:12px;
      transition:all .35s ease;
    }
    .buildexpo-options-module .links-list li a i {
      font-size:1.1rem;
      color:#79be58;           /* ← changed */
      opacity:0;
      transform:translateX(-8px);
      transition:all .35s ease;
    }
    .buildexpo-options-module .links-list li a:hover { 
      color:#79be58;            /* ← changed */
      font-weight:600; 
    }
    .buildexpo-options-module .links-list li a:hover i { opacity:1; transform:translateX(0); }

    /* MOBILE ONLY CHANGES */
    @media (max-width:768px) {
      .buildexpo-options-module { padding:70px 0px 100px; margin-top:-70px;}
      .cards-grid { padding-left:35px!important; padding-right:35px!important; margin-top:-20px;}
      .buildexpo-options-module .module-title {
        font-size:1.2rem;
        letter-spacing:2px;
        margin-bottom:45px;
		margin-top: 60px;
      }
      .cards-grid {
        display:flex;
        overflow-x:auto;
        scroll-snap-type:x mandatory;
        gap:20px;
        padding:10px 0px 50px 20px;
        -webkit-overflow-scrolling:touch;
        scrollbar-width:none;
        scroll-padding:20px;
      }
      .cards-grid::-webkit-scrollbar { display:none; }
      .option-card {
        flex:0 0 72%;
        max-width:350px;
        min-width:270px;
        scroll-snap-align:start;
        height:460px;
        padding:45px 30px;
        background:#fff;
        border-radius:20px;
        box-shadow:0 10px 30px rgba(0,0,0,0.1);
        border:2px solid transparent;
        transition:all .4s ease;
        justify-content:center;
        align-items:center;
        text-align:center;
      }
      .option-card:hover { border-color:#79be58; } /* ← changed */
      .card-title { font-size:1.6rem; margin-bottom:36px; }
      .links-list {
        gap:19px;
        width:88%;
        max-width:320px;
        margin-left: -15px !important; /* your previous fix kept */
      }
      .links-list li a {
        font-size:1.07rem;
        padding:15px 22px;
        border-radius:12px;
        justify-content:flex-start;
        gap:14px;
      }
      .links-list li a:hover {
        background:#e6f4e6;     /* light green tint instead of yellow */
        color:#79be58;          /* ← changed */
      }
      .dots-indicator { display:flex; justify-content:center; gap:12px; margin-top:10px; }
      .dot { width:10px; height:10px; border-radius:50%; background:#ccc; transition:all .3s ease; }
      .dot.active { 
        background:#79be58;     /* ← changed */
        transform:scale(1.4); 
      }
    }
    @media (max-width:480px) {
      .option-card { flex:0 0 76%; height:480px; padding:40px 25px; }
      .card-title { font-size:1.5rem; margin-bottom:32px; }
      .links-list { gap:17px; width:90%; }
    }
	
	
	/* ← REDUCE BOTTOM SPACE AFTER CARDS – DESKTOP ONLY → */
@media (min-width: 769px) {
  .buildexpo-options-module {
    padding-bottom: 80px !important;   /* ← original was 120px → now much tighter */
  }
  
  /* Alternative (even tighter – choose one you prefer) */
  /* padding-bottom: 40px !important; */
  
  /* If you still see too much gap, force the wrapper too */
  .buildexpo-options-module .cards-wrapper {
    margin-bottom: -20px !important;
  }
}

.expo-stats-module { --gold: #79be58; } /* ← CHANGED HERE ONLY */
  .expo-stats-module * { margin:0; padding:0; box-sizing:border-box; }
  .expo-stats-module { font-family:'Montserrat',sans-serif; }
  .expo-stats-module .stats-section {
    min-height:85vh;
    background:#ffffff;
    display:flex; align-items:flex-start; justify-content:center;
    padding-top: 0 !important;
    min-height: unset !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  .expo-stats-module .content { max-width:1400px; margin:0 auto; text-align:center; padding:0 0px; }
  .expo-stats-module .headline { font-size:3.5rem; font-weight:300; letter-spacing:6px; color:#000; text-transform:uppercase; margin:0 0 0.5rem; display:inline-block; }
  .expo-stats-module .simple-underline-btn { display:inline-block; margin-top:12px; padding-top:10px; font-weight:400; font-size:0.8rem; letter-spacing:2px; text-transform:uppercase; color:#000; text-decoration:none; border-bottom:1px solid #000; transition:all 0.3s ease; }
  .expo-stats-module .simple-underline-btn:hover { color:var(--gold); border-bottom-color:var(--gold); }
  .expo-stats-module .stats-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2.5rem; max-width:1400px; margin:2.5rem auto 0; justify-items:center; }
  .expo-stats-module .stats-grid > :nth-child(4) { grid-row:2; grid-column:1/3; }
  .expo-stats-module .stats-grid > :nth-child(5) { grid-row:2; grid-column:2/4; }
  .expo-stats-module .stat-item { background:rgba(255,255,255,0.95); border-radius:18px; padding:2.8rem 1.5rem; height:240px; width:100%; max-width:320px; display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; }
  .expo-stats-module .bi-icon { font-size:4rem; color:var(--gold); margin-bottom:0.5rem; margin-left:-10px; }
  .expo-stats-module .stat-item h2 { font-size:2.4rem; font-weight:600; color:#000; margin:0.5rem 0; letter-spacing:1px; }
  .expo-stats-module .stat-item p { font-size:1rem; color:#444; font-weight:400; }
  @media (max-width:768px){
    .expo-stats-module .stats-section { padding-top:5px; }
    .expo-stats-module .headline { font-size:1.8rem; line-height:1.2; margin-bottom:0.5rem;  }
   
    /* ← ONLY THIS LINE CHANGED – reduced gap on mobile */
    .expo-stats-module .simple-underline-btn { margin-top:3px; margin-bottom:1rem; font-size:0.7rem; }
   
    .expo-stats-module .stats-grid { grid-template-columns:1fr 1fr; gap:1rem; max-width:95%; margin:0 auto; padding:0 10px; transform: none !important;
    
    /* Better centering + breathing room */
    margin: 1.5rem auto 1rem !important;
    padding: 0 12px;               /* symmetric small padding */
    max-width: 100%;               /* use full width */
    width: 100%;
    box-sizing: border-box;
    
    /* Slightly smaller gap so items don't feel too squeezed */
    gap: 1.1rem 0.9rem;
    
    /* Optional: make sure it respects container padding if any */
    justify-items: center; }
    .expo-stats-module .stats-grid > :nth-child(4),
    .expo-stats-module .stats-grid > :nth-child(5) { grid-row:auto; grid-column:auto; }
    .expo-stats-module .stats-grid > :nth-child(5) { grid-column:1/-1; }
    .expo-stats-module .stat-item { height:auto; padding:1.4rem 1rem; max-width:280px; }
    .expo-stats-module .bi-icon { font-size:2.2rem; margin-bottom:0.2rem; }
    .expo-stats-module .stat-item h2 { font-size:1.2rem; margin-bottom:0.3rem; }
    .expo-stats-module .stat-item p { font-size:0.9rem; }
  }
  @media (max-width:576px){
    .expo-stats-module .stats-section { padding-top:15px; }
    .expo-stats-module .headline { font-size:1.8rem; margin-bottom:0.4rem; }
    .expo-stats-module .stats-grid { gap:0.8rem; transform: none !important;
    
    /* Better centering + breathing room */
    margin: 1.5rem auto 1rem !important;
    padding: 0 12px;               /* symmetric small padding */
    max-width: 100%;               /* use full width */
    width: 100%;
    box-sizing: border-box;
    
    /* Slightly smaller gap so items don't feel too squeezed */
    gap: 1.1rem 0.9rem;
    
    /* Optional: make sure it respects container padding if any */
    justify-items: center; }
  }
 
  @media (max-width: 768px) {
  .card-title {
    text-align: center !important;
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .links-list {
    margin: 0 auto; /* centers the entire list */
    width: 88%;
  }
  .links-list li {
    width: 100%;
    display: flex;
    justify-content: center; /* centers each link box */
  }
  .links-list li a {
    width: 100%;
    justify-content: flex-start; /* keeps icon + text left-aligned */
  }
}
@media (max-width: 768px) {
  .card-title {
    text-align: center;
  }
  .card-title {
    text-align: center !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}


@media (max-width: 768px) {
  /* ← ADD THESE LINES ONLY → */
  .expo-stats-module .stats-section {
    padding-top: 5px !important;   /* was 10px → now almost no gap */
    margin-top: -50px !important;  /* pulls the whole section up on mobile */
  }
  
  .expo-stats-module .headline {
    margin-top: 0 !important;
    padding-top: 8px;              /* tiny breathing room after pulling up */
  }
}



/* Force button directly under heading – perfect on both desktop & mobile */
.expo-stats-module .content > .simple-underline-btn {
  margin-top: -30px;
  display: block;
}
@media (max-width:768px) {
  .expo-stats-module .content > .simple-underline-btn {
    
    margin-bottom: 1rem !important;
	margin-top: -20px;
    font-size: 0.5rem;
  }
}


/* CLEAN VERSION – ONLY ONE short underline under DISCOVER EXPO */
.expo-stats-module .simple-underline-btn {
  display: inline-block;
  position: relative;
  color: #000;
  text-decoration: none;
  padding-bottom: 6px;                 /* space for the line */
  border-bottom: none !important;      /* removes the old full underline */
}

/* This is the ONLY underline you will see */
.expo-stats-module .simple-underline-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 15%;                         /* ← change this % to make it shorter/longer */
  height: 1.6px;
  background: #000;
  transform: translateX(-50%);
  transition: all 0.35s ease;
}

/* Hover – gold & slightly longer line */
.expo-stats-module .simple-underline-btn:hover {
  color: var(--gold);
}
.expo-stats-module .simple-underline-btn:hover::after {
  width: 15%;                          /* grows a bit on hover */
  background: var(--gold);
}




@media (max-width: 768px) {
  /* Wider + thinner underline ONLY on mobile */
  .expo-stats-module .simple-underline-btn::after {
    width: 28% !important;   /* ← increase this % to make it wider (original was 15%) */
    height: 1px !important; /* ← thinner line (original was 1.6px) */
    background: #000 !important;
  }

  /* Hover state – same width & thin on mobile */
  .expo-stats-module .simple-underline-btn:hover::after {
    width: 28% !important;   /* keeps the same wider length on hover */
    background: var(--gold) !important;
  }
}

/* ==== RESET & FULL BLEED ==== */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html, body {
            margin: 0; padding: 0; width: 100%; overflow-x: hidden;
        }

        /* ==== MAIN MODULE ==== */
        .expo-myhome-module {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            background: #fff;
            padding: 80px 0 120px;
            width: 100vw;
            position: relative;
            margin-left: 50%;
            transform: translateX(-50%);
        }
        .container { 
            max-width: 1400px; 
            margin: 0 auto; 
            padding: 0 20px; 
            text-align: center; 
        }
    
        .expo-myhome-module h1 {
            font-size: 40px;
            font-weight: 400;
            letter-spacing: 8px;
            text-transform: uppercase;
            color: #0a1f3a;
            margin-bottom: 45px;
            margin-top: -45px;
        }
        .properties-title {
            font-size: 38px;
            font-weight: 400;
            letter-spacing: 7px;
            text-transform: uppercase;
            color: #0a1f3a;
            margin-bottom: 70px;
            text-align: center;
        }

        /* Testimonials */
        .testimonials {
            display: grid; 
            grid-template-columns: repeat(3,1fr); 
            gap: 40px;
            max-width: 1400px; 
            margin: 0 auto;
        }
        .card {
            border-radius: 8px; 
            overflow: hidden; 
            position: relative;
            
        }
        .card-img { 
            width: 100%; 
            height: 620px; 
            object-fit: cover; 
            display: block; 
        }
        .card-content {
            position: absolute; 
            bottom: 0; 
            left: 0; 
            right: 0;
            padding: 15px 20px 10px;
            background: linear-gradient(180deg, transparent, rgba(0,0,0,.75));
            color: #fff; 
            text-align: left;
        }
        .card-content h3 { font-size: 20px; font-weight: 600; margin-bottom: 6px; }
        .card-content p { font-size: 15px; line-height: 1.4; }

        /* Properties Section */
        .properties-section { 
            margin-top: -20px; 
            position: relative;
			margin-bottom: -30px;
			
			
        }
        .properties-container {
            display: flex;
            gap: 26px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding: 40px 0 12px 20px;
            scrollbar-width: none;
            user-select: none;
			margin-top: -40px;
        }
        .properties-container::-webkit-scrollbar { display: none; }
        .property-card {
            flex: 0 0 380px; 
            max-width: 400px;
			max-height: 550px;
            scroll-snap-align: start; 
            border-radius: 10px; 
            overflow: hidden;
            position: relative; 
            
        }
        .property-card img { 
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
        }
        .property-overlay {
            position: absolute; 
            bottom: 0; 
            left: 0; 
            right: 0;
            padding: 44px 32px 32px;
            background: linear-gradient(180deg, transparent 0%, rgba(10,31,58,.96) 60%);
            color: #fff; 
            text-align: left;
        }

        /* Controls */
        .controls-wrapper {
            display: flex; 
            align-items: center; 
            justify-content: space-between;
            gap: 40px; 
            padding: 0 20px; 
            max-width: 1400px; 
            margin: 0 auto;
        }
        .progress-container { flex: 1; }
        .progress-bg { 
            height: 2px; 
            background: rgba(10,31,58,.12); 
            border-radius: 3px; 
            overflow: hidden; 
        }
        .progress-fill { 
            height: 100%; 
            width: 0%; 
            background: #0a1f3a; 
            transition: width .6s ease; 
        }
        .scroll-btn {
            width: 64px; 
            height: 64px; 
            border: 2.5px solid #0a1f3a;
            background: transparent; 
            color: #0a1f3a; 
            border-radius: 50%;
            font-size: 26px; 
            cursor: pointer; 
            transition: all .3s;
        }
        .scroll-btn:hover:not(:disabled) { background: #0a1f3a; color: #fff; }
        .scroll-btn:disabled { opacity: .3; cursor: not-allowed; }

        /* View More Card */
        .view-more-card {
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .view-more-card img { display: none; }
        .view-more-content {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 640px;
            width: 100%;
        }
        .view-more-btn {
            padding: 18px 48px;
            background: transparent;
            border: 2.5px solid #0a1f3a;
            color: #0a1f3a;
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .view-more-btn:hover {
            background: #0a1f3a;
            color: #fff;
        }

        /* ==== MOBILE RESPONSIVE ==== */
        @media (max-width: 768px) {
            .expo-myhome-module { padding-top: 120px; }
            .expo-myhome-module h1 {
                font-size: 28px !important;
                letter-spacing: 5px !important;
                margin-bottom: 35px !important;
            }
            .card-content h3 {font-size: 15px !important;margin-bottom: 4px !important;}
            .card-content p {font-size: 12px !important;line-height: 1.35 !important;}
            .properties-title {
                font-size: 40px !important;
                letter-spacing: 5px !important;
                margin-bottom: 30px !important;
				margin-top: -150px;
            }
            .testimonials {
                display: flex !important; 
                gap: 16px; 
                overflow-x: auto;
                padding: 20px 16px; 
                margin: 0 -16px; 
                scroll-snap-type: x proximity;
            }
            .testimonials::-webkit-scrollbar { display: none; }
            .card { flex: 0 0 64vw !important; max-width: 64vw !important; scroll-snap-align: center; }
            .card-img { height: 400px !important; }
            .testimonials .card:first-child { height: 370px !important; }
            .testimonials .card:first-child .card-img { height: 100% !important; }
            .properties-container {
                gap: 16px;
                padding: 30px 0 8px 20px !important;
                scroll-snap-type: x proximity;
            }
            .property-card {
                flex: 0 0 80vw !important;
                max-width: 80vw !important;
                scroll-snap-align: center;
            }
            .property-card img { height: 460px !important; border-radius: 12px; }
            .scroll-btn { display: none !important; }
            .controls-wrapper { margin-top: 28px !important; }
            .properties-section { margin-top: 40px !important; }
            .view-more-content { height: 460px !important; }
            .view-more-btn {
                padding: 14px 36px;
                font-size: 14px;
                letter-spacing: 1.5px;
            }
        }
        @media (max-width: 480px) {
            .expo-myhome-module h1 { font-size: 26px !important; letter-spacing: 4px !important; }
            .properties-title { font-size: 30px !important; }
        }

        /* Mobile-only Progress Bar for Testimonials */
        .testimonials-progress-wrapper {
            display: none;
            max-width: 1400px;
            margin: 10px auto 0;
            padding: 0 20px;
        }
        @media (max-width: 768px) {
            .testimonials-progress-wrapper { display: block !important; }
            .testimonials-progress-wrapper .progress-bg {
                height: 2px;
                background: rgba(10,31,58,.15);
                border-radius: 3px;
                overflow: hidden;
				margin-left: 10px;
				
            }
            .testimonials-progress-wrapper .progress-fill {
                height: 100%;
                width: 0%;
                background: #0a1f3a;
                transition: width 0.6s ease;
            }
        }

        /* PERMANENT LEFT WHITE SPACE — DESKTOP ONLY */
        @media (min-width: 769px) {
            .properties-section {
                position: relative;
                overflow: hidden;
				
            }
            .properties-container {
                margin-left: 160px;
                padding-left: 0 !important;
                width: calc(100% - 140px);
            }
            .properties-container::before {
                content: "";
                position: absolute;
                left: 0;
                top: 0;
                bottom: 0;
                width: 140px;
                background: #fff;
                z-index: 2;
                pointer-events: none;
            }
        }
		
        /* ==== DESKTOP ONLY: Smaller testimonial cards + reduced gap ==== */
        @media (min-width: 769px) {
            .testimonials {
                display: grid !important;
                grid-template-columns: 340px 340px 340px;
                gap: 8px !important;
                max-width: 1120px;                 
                justify-content: center;          
                margin: 0 auto;
            }

            .testimonials .card {
                max-width: 320px;
                width: 100%;
            }

            .testimonials .card-img {
                height: 500px !important;
                object-fit: cover;
            }

            .testimonials .card-content {
                padding: 20px 24px 16px;
            }
            .testimonials .card-content h3 {
                font-size: 18px;
                margin-bottom: 8px;
            }
            .testimonials .card-content p {
                font-size: 14px;
            }
        }
		
		.view-more-btn {
			text-decoration: none !important;
		}
		
		
		/* ==== FIX: Remove excessive space below progress bar on mobile only ==== */
	@media (max-width: 768px) {
		.controls-wrapper {
			margin-top: 10px !important;    /* reduced from 28px */
			margin-bottom: 0 !important;
			padding-bottom: 0 !important;
		}
		
		.expo-myhome-module {
			padding-bottom: 60px !important;  /* reduced from 120px */
		}
		
		.properties-section {
			margin-bottom: 0 !important;      /* was -30px, now neutral */
			padding-bottom: 0 !important;
		}
		
		/* Optional: tighten up the bottom of the whole module even more */
		.properties-container {
			padding-bottom: 20px !important;
			margin-bottom: 0 !important;
		}
	}
		