/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 20 2026 | 11:19:19 */
.site-footer{
  background: var(--bg);
  color:#fff;
}

.footer-top{
  padding:26px 0 34px;
}

.footer-container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 18px;
}

.footer-logos{
  margin-bottom:18px;
}

.slider{
  overflow:hidden;
  position:relative;
  padding:10px 0;
  --marquee-duration: 32s;
  --marquee-shift: 0px;
}

.slider::before,
.slider::after{
  content:none;
}

.slider .slide-track{
  display:flex;
  align-items:center;
  gap:20px;
  width:max-content;
  will-change:transform;
  transform:translate3d(0,0,0);
  animation: footer-scroll var(--marquee-duration) linear infinite;
}

@keyframes footer-scroll{
  0%{ transform: translate3d(0,0,0); }
  100%{ transform: translate3d(calc(-1 * var(--marquee-shift)), 0, 0); }
}

.slider .slide{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
}

.slider .slide img{
  width:auto;
  height:auto;
  max-height:28px;
  max-width:90px;
  object-fit:contain;
  display:block;
  opacity:0.9;
}

.slider .slide img:hover{
  opacity:1;
}

.footer-disclaimer{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,0.12);
}

.age-badge{
  flex:0 0 auto;
  width:56px;
  height:56px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#111;
  color:#fff;
  font-weight:900;
  font-size:18px;
  line-height:1;
}

.footer-text-wrap{
  min-width:0;
}

.footer-text{
  margin:0;
  color:rgba(255,255,255,0.78);
  font-size:14px;
  line-height:1.45;
  max-width:980px;
}

.footer-copy{
  margin:10px 0 0;
  color:rgba(255,255,255,0.92);
  font-size:14px;
  font-weight:700;
}

@media (max-width: 768px){
  .footer-disclaimer{
    flex-direction:column;
    gap:10px;
  }

  .age-badge{
    width:52px;
    height:52px;
    border-radius:12px;
  }

  .slider{
    --marquee-duration: 26s;
  }

  .slider .slide-track{
    gap:16px;
  }

  .slider .slide img{
    max-height:22px;
    max-width:80px;
  }
}
