*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --c-bg: #0b0c0d;
  --c-header: #0b0c0d;
  --c-btn-dark: #1f2021;
  --c-btn-accent: #bbeb00;
  --c-text: #e8e9ea;
  --c-text-muted: #9a9b9d;
  --c-border: #252628;
  --c-card: #131416;
  --c-card2: #171819;
  --c-green: #bbeb00;
  --c-green-dim: rgba(187, 235, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}
body {
  font-family: "Inter", "Roboto", Arial, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--c-green);
  text-decoration: none;
}
a:hover {
  color: #d4f52a;
}

.x9f2a {
  display: none;
}
.wp-block-group {
  display: block;
}
.entry-content {
  display: block;
}
.elementor-section {
  display: block;
}
.wf-inter-n4-active body {
  font-synthesis: none;
}
.wp-caption {
  max-width: 100%;
}

.g7k3q {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.m2p8r {
  opacity: 0;
}
.m2p8r.a4v1n {
  opacity: 1;
  transition: opacity 0.6s ease;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.h3d-site-header {
  background: var(--c-header);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.h3d-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  height: 68px;
  max-width: 1280px;
  margin: 0 auto;
}

.h3d-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.h3d-logo img {
  height: 60px;
  width: auto;
}

.h3d-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.h3d-nav a {
  color: var(--c-text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
}
.h3d-nav a:hover {
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.06);
}

.h3d-online {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.h3d-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 6px var(--c-green);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.h3d-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
.btn-dark {
  background: var(--c-btn-dark);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.btn-dark:hover {
  background: #282a2b;
  color: var(--c-text);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.btn-accent {
  background: var(--c-btn-accent);
  color: #0b0c0d;
}
.btn-accent:hover {
  background: #ccf000;
  color: #0b0c0d;
  box-shadow: 0 4px 20px rgba(187, 235, 0, 0.4);
}
.btn-lg {
  padding: 14px 34px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

.h3d-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.h3d-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.h3d-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.h3d-burger.open span:nth-child(2) {
  opacity: 0;
}
.h3d-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.h3d-mobile-nav {
  display: none;
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 16px 20px;
  flex-direction: column;
  gap: 8px;
}
.h3d-mobile-nav a {
  color: var(--c-text-muted);
  font-size: 15px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  display: block;
  font-weight: 500;
  transition:
    background var(--transition),
    color var(--transition);
}
.h3d-mobile-nav a:hover {
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.06);
}
.h3d-mobile-nav.open {
  display: flex;
}

.b4r-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.b4r-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/banj.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.b4r-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 12, 13, 0.92) 40%,
    rgba(11, 12, 13, 0.5) 100%
  );
}
.b4r-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 20px;
}
.b4r-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--c-green-dim);
  border: 1px solid rgba(187, 235, 0, 0.3);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 13px;
  color: var(--c-green);
  font-weight: 600;
  margin-bottom: 20px;
}
.b4r-hero h1 {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  max-width: 640px;
  margin-bottom: 18px;
}
.b4r-hero h1 span {
  color: var(--c-green);
}
.b4r-hero-desc {
  font-size: 17px;
  color: var(--c-text-muted);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.b4r-hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.b4r-hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.b4r-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.b4r-stat-val {
  font-size: 26px;
  font-weight: 800;
  color: var(--c-green);
  font-family: "Montserrat", sans-serif;
}
.b4r-stat-lbl {
  font-size: 13px;
  color: var(--c-text-muted);
}

.sec {
  padding: 72px 0;
}
.sec-sm {
  padding: 48px 0;
}
.sec-title {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.sec-sub {
  font-size: 16px;
  color: var(--c-text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}
.sec-head {
  margin-bottom: 40px;
}

.adv-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.adv-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  flex: 1 1 220px;
  transition:
    transform var(--transition),
    border-color var(--transition);
}
.adv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(187, 235, 0, 0.3);
}
.adv-icon {
  width: 48px;
  height: 48px;
  background: var(--c-green-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}
.adv-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.adv-card p {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.mir-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 0;
}
.mir-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.mir-time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-text-muted);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  padding: 5px 14px;
}
.mir-time-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-green);
}
.mir-table-wrap {
  overflow-x: auto;
}
.mir-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.mir-table th {
  background: rgba(187, 235, 0, 0.1);
  color: var(--c-green);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}
.mir-table td {
  padding: 13px 16px;
  font-size: 14px;
  color: var(--c-text);
  border-bottom: 1px solid rgba(37, 38, 40, 0.7);
  vertical-align: middle;
}
.mir-table tr:last-child td {
  border-bottom: none;
}
.mir-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.mir-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-green);
}
.mir-status::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-green);
}
.mir-link {
  color: var(--c-green);
  font-weight: 600;
  font-size: 13px;
  padding: 5px 14px;
  border: 1px solid rgba(187, 235, 0, 0.4);
  border-radius: 50px;
  transition: background var(--transition);
  display: inline-block;
}
.mir-link:hover {
  background: var(--c-green-dim);
  color: var(--c-green);
}

.bon-grid {
  display: flex;
  gap: 20px;
}
.bon-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--transition),
    border-color var(--transition);
}
.bon-card:hover {
  transform: translateY(-5px);
  border-color: rgba(187, 235, 0, 0.3);
}
.bon-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}
.bon-body {
  padding: 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bon-tag {
  display: inline-block;
  background: var(--c-green-dim);
  color: var(--c-green);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.bon-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 8px;
}
.bon-card p {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.6;
  flex: 1;
}
.bon-foot {
  padding: 0 20px 20px;
}
.bon-slider-wrap {
  position: relative;
}
.bon-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.bon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  cursor: pointer;
  transition: background var(--transition);
  border: none;
}
.bon-dot.active {
  background: var(--c-green);
}

.demo-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
}
.demo-top {
  padding: 28px 28px 0;
}
.demo-iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin-top: 20px;
}
.demo-iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.review-block {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--c-border);
}
.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-green-dim);
  border: 2px solid rgba(187, 235, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--c-green);
  flex-shrink: 0;
  font-family: "Montserrat", sans-serif;
}
.review-author-info strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.review-author-info span {
  font-size: 13px;
  color: var(--c-text-muted);
}
.review-author-info a {
  font-size: 13px;
  color: var(--c-green);
}

.review-content h2,
.review-content h3,
.review-content h4 {
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 12px;
  line-height: 1.35;
}
.review-content h2 {
  font-size: 24px;
}
.review-content h3 {
  font-size: 20px;
}
.review-content h4 {
  font-size: 17px;
}
.review-content p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--c-text);
}
.review-content ul,
.review-content ol {
  margin: 0 0 16px 24px;
}
.review-content li {
  margin-bottom: 8px;
  color: var(--c-text);
  line-height: 1.65;
}
.review-content a {
  color: var(--c-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.review-content strong,
.review-content b {
  color: #fff;
  font-weight: 700;
}
.review-content em {
  color: var(--c-text-muted);
  font-style: italic;
}
.review-content blockquote {
  border-left: 3px solid var(--c-green);
  padding: 12px 20px;
  margin: 20px 0;
  background: var(--c-green-dim);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--c-text-muted);
}
.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.review-content table th {
  background: rgba(187, 235, 0, 0.1);
  color: var(--c-green);
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--c-border);
  font-weight: 700;
}
.review-content table td {
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  color: var(--c-text);
}
.review-content img {
  border-radius: var(--radius-sm);
  max-width: 100%;
  height: auto;
  margin: 12px 0;
}
.review-content code {
  background: rgba(255, 255, 255, 0.07);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 13px;
  font-family: "Roboto Mono", monospace;
  color: var(--c-green);
}
.review-content hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 28px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open {
  border-color: rgba(187, 235, 0, 0.3);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-q:hover {
  color: var(--c-green);
}
.faq-q-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--c-green-dim);
  border: 1px solid rgba(187, 235, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform var(--transition),
    background var(--transition);
}
.faq-item.open .faq-q-icon {
  transform: rotate(45deg);
  background: var(--c-green);
}
.faq-q-icon svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: var(--c-green);
  stroke-width: 2.5;
  transition: stroke var(--transition);
}
.faq-item.open .faq-q-icon svg {
  stroke: #0b0c0d;
}
.faq-a {
  display: none;
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  display: block;
}

.ft-main {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 56px 0 28px;
}
.ft-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.ft-top {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.ft-logo-col {
  flex: 0 0 auto;
}
.ft-logo img {
  height: 65px;
  width: auto;
  margin-bottom: 14px;
}
.ft-tagline {
  font-size: 13px;
  color: var(--c-text-muted);
  max-width: 240px;
  line-height: 1.6;
}
.ft-links {
  flex: 1;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.ft-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-text-muted);
  margin-bottom: 14px;
}
.ft-col a {
  display: block;
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.ft-col a:hover {
  color: var(--c-text);
}
.ft-divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin-bottom: 28px;
}
.ft-payments {
  margin-bottom: 20px;
}
.ft-payments h5,
.ft-providers h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--c-text-muted);
  margin-bottom: 12px;
}
.ft-pay-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.ft-pay-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.ft-prov-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.ft-prov-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.ft-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--c-border);
}
.ft-copy {
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.7;
}
.ft-copy a {
  color: var(--c-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ft-legal {
  font-size: 11px;
  color: #4a4b4d;
  margin-top: 10px;
  line-height: 1.7;
}
.ft-license {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-text-muted);
  margin-top: 8px;
}

.w9d-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #0f1011 0%, #131416 100%);
  border-top: 1px solid rgba(187, 235, 0, 0.25);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.w9d-widget-text {
  font-size: 14px;
  color: var(--c-text-muted);
}
.w9d-widget-text strong {
  color: #fff;
}
.w9d-widget-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 4px;
  transition: color var(--transition);
}
.w9d-widget-close:hover {
  color: var(--c-text);
}

body.widget-closed .w9d-widget {
  display: none;
}
body:not(.widget-closed) {
  padding-bottom: 68px;
}

.providers-sec {
  background: var(--c-card2);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.prov-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.prov-scroll::-webkit-scrollbar {
  display: none;
}
.prov-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-muted);
  flex-shrink: 0;
  transition:
    border-color var(--transition),
    color var(--transition);
}
.prov-badge:hover {
  border-color: rgba(187, 235, 0, 0.3);
  color: var(--c-text);
}

.p9g5z {
  background: none;
  border: none;
  display: inline-block;
}
.k2l7b,
.j4m9c,
.r8n3x {
  display: inline-block;
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
  left: -9999px;
}

@media (max-width: 1024px) {
  .h3d-nav {
    display: none;
  }
  .h3d-burger {
    display: flex;
  }
  .bon-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .bon-grid::-webkit-scrollbar {
    display: none;
  }
  .bon-card {
    scroll-snap-align: start;
    min-width: 280px;
  }
  .bon-dots {
    display: flex;
  }
}

@media (max-width: 768px) {
  .b4r-hero {
    min-height: 420px;
  }
  .b4r-hero-content {
    padding: 56px 20px;
  }
  .b4r-hero-stats {
    gap: 20px;
  }
  .sec {
    padding: 48px 0;
  }
  .sec-sm {
    padding: 32px 0;
  }
  .adv-card {
    flex: 1 1 160px;
  }
  .mir-block {
    padding: 20px;
  }
  .review-block {
    padding: 24px 18px;
  }
  .ft-top {
    gap: 28px;
  }
  .ft-links {
    gap: 24px;
  }
  .w9d-widget {
    padding: 10px 46px 10px 16px;
  }
  .w9d-widget-text {
    font-size: 13px;
  }
  .h3d-online {
    display: none;
  }
}

@media (max-width: 480px) {
  .b4r-hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .b4r-hero h1 {
    font-size: 26px;
  }
  .review-author {
    flex-direction: column;
    align-items: flex-start;
  }
  .adv-card {
    flex: 1 1 100%;
  }
  .sec-title {
    font-size: 20px;
  }
}
