  :root {
      --red: #dc3545;
      --dark: #111;
      --mid: #444;
      --light: #888;
      --border: #e5e5e5;
      --bg: #f7f7f7;
      --white: #fff;
      --navy: #000046;
    }
.fa-solid {
    --fa-style: 900;
    color:var(--red);
}
    body {
      font-family: 'Roboto', sans-serif;
      background: var(--white);
      color: var(--dark);
      font-size: 15px;
      line-height: 1.5;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      display: block;
      width: 100%;
      object-fit: cover;
    }

    /* HEADER */
    .site-header {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 12px 0;
    }

    .site-header .logo {
      width: 200px;
      height: auto;
    }

    .subscribe-btn {
      border-radius: 4px;
      background: var(--red);
      color: #fff;
      padding: 8px 18px;
      font-family: 'Roboto', sans-serif;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      border: none;
      display: inline-block;
    }

    .subscribe-btn:hover {
      background: var(--red);
      color: #fff;
    }

    /* MASTHEAD */

        /* menu */
        .mobile-menu-bar {
                background: var(--navy);
                border-top: 1px solid rgba(255, 255, 255, .14);
                border-bottom: 1px solid rgba(255, 255, 255, .14);
                justify-content: center;
                align-items: center;
                gap: 12px;
                padding: 12px 16px;
                color: #fff;
                font-weight: 900;
                text-transform: uppercase;
                letter-spacing: 1px;
        }
        span.menu-box {
            background-color: var(--red);
            padding: 4px;
            border-radius: 2px;
        }
        .menu-box .fa-solid {
            color: white !important ;
            --fa-style: 900;
        }
   /* menu */


    .section-masthead {
      background: var(--navy);
      padding: 22px 0 0;
      text-align: center;
    }

    .section-masthead h1 {
      font-family: 'Roboto', sans-serif;
      font-weight: 900;
      font-size: clamp(28px, 5vw, 48px);
      color: var(--white);
      letter-spacing: 4px;
      text-transform: uppercase;
      margin-bottom: 0;
    }

    .section-masthead .tagline {
      color: rgba(255,255,255,0.65);
      font-size: 13px;
      margin-top: 4px;
      font-style: italic;
      letter-spacing: 0.5px;
    }

    /* TOPIC NAV */
    .topic-nav {
      background: var(--navy);
      margin-top: 16px;
      border-top: 1px solid rgba(255,255,255,0.12);
    }

    .topic-nav .nav-link {
      padding: 12px 18px;
      font-family: 'Roboto Slab', serif;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: rgba(255,255,255,0.75);
      border-bottom: 3px solid transparent;
      transition: color 0.2s;
    }

    .topic-nav .nav-link:hover,
    .topic-nav .nav-link.active {
      color: var(--white);
    }

    .topic-nav .nav-link.active {
      border-bottom-color: var(--red);
    }

    /* MAIN LAYOUT */
    .page-wrap {
      padding: 30px 0;
    }

    /* FILTER BAR */
    .filter-bar {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }

    .filter-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--light);
      margin-right: 4px;
    }

    .filter-chip {
      display: inline-block;
      padding: 5px 12px;
      border: 1px solid var(--border);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      cursor: pointer;
      background: transparent;
      transition: all 0.15s;
      color: var(--mid);
    }

    .filter-chip:hover,
    .filter-chip.active {
      background: var(--red);
      border-color: var(--red);
      color: var(--white);
    }

    /* SECTION LABEL */
    .section-label {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
      padding-bottom: 10px;
      border-bottom: 3px solid var(--red);
      flex-wrap: wrap;
    }

    .section-label span {
          font-family: 'Roboto', sans-serif;
      font-weight: 900;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--red);
    }

    .section-label .count {
      font-size: 12px;
      color: var(--light);
      font-weight: 400;
      letter-spacing: 0;
      font-family: 'Roboto', sans-serif;
    }

    /* HERO ARTICLE */
    .hero-article {
      margin-bottom: 36px;
      padding-bottom: 32px;
      border-bottom: 1px solid var(--border);
    }

    .hero-article .img-wrap,
    .article-card .img-wrap {
      position: relative;
      overflow: hidden;
      display: block;
    }

    .hero-article .img-wrap img {
      height: 300px;
      transition: transform 0.4s ease;
    }

    .hero-article:hover .img-wrap img {
      transform: scale(1.03);
    }

    .cat-badge {
      position: absolute;
      bottom: 0;
      left: 0;
      background: var(--red);
      color: var(--white);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 5px 10px;
    }

    .hero-article .content {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero-article .content .cat {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--red);
      margin-bottom: 10px;
    }

    .hero-article .content h2 {
          font-family: 'Roboto', sans-serif;
      font-weight: 900;
      font-size: clamp(22px, 3vw, 30px);
      line-height: 1.15;
      margin-bottom: 12px;
    }

    .hero-article .content h2 a:hover {
      color: var(--red);
    }

    .hero-article .content .excerpt {
      font-size: 14px;
      color: var(--mid);
      line-height: 1.6;
      margin-bottom: 14px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .meta {
      font-size: 12px;
      color: var(--light);
      display: flex;
      gap: 8px;
      align-items: center;
      flex-wrap: wrap;
    }

    .meta .author {
      font-weight: 700;
      color: var(--dark);
    }

    .meta .sep {
      color: var(--border);
    }

    /* ARTICLE CARD */
    .article-card {
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .article-card .img-wrap {
      margin-bottom: 12px;
    }

    .article-card .img-wrap img {
      height: 200px;
      transition: transform 0.4s ease;
    }

    .article-card:hover .img-wrap img {
      transform: scale(1.04);
    }

    .article-card h3 {
          font-family: 'Roboto', sans-serif;
      font-weight: 900;
      font-size: 18px;
      line-height: 1.2;
      margin-bottom: 8px;
    }

    .article-card h3 a:hover {
      color: var(--red);
    }

    .article-card .meta {
      margin-top: auto;
      padding-top: 8px;
    }

    /* LOAD MORE */
    .load-more-wrap {
      margin-top: 36px;
      text-align: center;
      border-top: 1px solid var(--border);
      padding-top: 28px;
    }

    .btn-load-more {
      display: inline-block;
      padding: 12px 36px;
      border: 2px solid var(--red);
      color: var(--red);
          font-family: 'Roboto', sans-serif;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      cursor: pointer;
      background: transparent;
      transition: background 0.2s, color 0.2s;
    }

    .btn-load-more:hover {
      background: var(--red);
      color: var(--white);
    }

    /* SIDEBAR */
    .sidebar-sticky {
      position: sticky;
      top: 20px;
    }

    .sidebar-widget + .sidebar-widget {
      margin-top: 28px;
    }

    .widget-title {
          font-family: 'Roboto', sans-serif;
      font-weight: 900;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--dark);
      padding-bottom: 8px;
      border-bottom: 3px solid var(--red);
      margin-bottom: 14px;
    }

    .ad-slot {
      background: var(--bg);
      border: 1px dashed #ccc;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 6px;
      color: var(--light);
      font-size: 11px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .ad-slot.leaderboard {
      height: 250px;
    }

    .ad-slot.medium {
      height: 300px;
    }

    .ad-slot span.ad-label {
      font-size: 9px;
      letter-spacing: 2px;
    }

    .about-section {
      background: var(--navy);
      color: rgba(255,255,255,0.85);
      padding: 20px;
    }

    .about-title {
          font-family: 'Roboto', sans-serif;
      font-weight: 900;
      font-size: 14px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 10px;
    }

    .about-section p {
      font-size: 12.5px;
      line-height: 1.6;
      margin-bottom: 0;
    }

    .topic-links a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
      font-size: 13px;
      font-weight: 700;
      transition: color 0.2s;
    }

    .topic-links a:hover {
      color: var(--red);
    }

    .topic-links a::before {
      content: '';
      width: 3px;
      height: 14px;
      background: var(--red);
      flex-shrink: 0;
    }

    .magazine-widget {
      border: 1px solid var(--border);
    }

    .magazine-header {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 12px;
      border-bottom: 1px solid var(--border);
    }

    .magazine-header .widget-title {
      font-size: 13px;
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .mag-play {
      font-size: 10px;
      color: var(--red);
    }

    .mag-cover-link {
      display: block;
    }

    .mag-cover-link img {
      transition: opacity 0.2s;
    }

    .mag-cover-link:hover img {
      opacity: 0.92;
    }

    .mag-subscribe-btn {
      display: block;
      width: 100%;
      background: var(--red);
      color: var(--white);
      text-align: center;
      padding: 12px;
          font-family: 'Roboto', sans-serif;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: background 0.2s;
    }

    .mag-subscribe-btn:hover {
      background: #b02030;
      color: #fff;
    }

    .mag-articles {
      padding: 10px 12px 12px;
    }

    .mag-article-link {
      display: block;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.4;
      padding: 9px 0;
      border-bottom: 1px solid var(--border);
      color: var(--dark);
      transition: color 0.15s;
    }

    .mag-article-link:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .mag-article-link:hover {
      color: var(--red);
    }

    @media (max-width: 991.98px) {
      .sidebar-sticky {
        position: static;
      }
    }

    @media (max-width: 767.98px) {
        /* menu */
        .topic-nav {
            display: none;
            background: var(--navy);
            margin-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
        }
        li.nav-item {
            width: 100%;
        }
        nav.topic-nav.active {
            display: block;
        }
        /* menu */
      .hero-article .img-wrap img {
        height: 220px;
      }

      .article-card .img-wrap img {
        height: 180px;
      }

      .topic-nav .nav-link {
        padding: 10px 10px;
        font-size: 10px;
      }

        .ra-video-main-title {
            font-size: 21px !important;
        }
    }
    .video-widget-front {
      border: 1px solid var(--border);
      background: var(--white);
      overflow: hidden;
    }

.video-widget-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.video-widget-header .widget-title {
      font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.video-play {
  font-size: 10px;
  color: var(--red);
  font-style: normal;
}

.video-main-link {
  display: block;
  border-bottom: 1px solid var(--border);
}

.video-main-thumb {
  position: relative;
  overflow: hidden;
  background: #000;
}

.video-main-thumb img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.video-main-link:hover .video-main-thumb img {
  transform: scale(1.03);
}

.video-main-play {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #dc3545;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.video-main-play::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
  margin-left: 3px;
}

.video-main-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: #dc3545;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  z-index: 2;
}

.video-main-content {
  padding: 16px;
}

.video-main-content h3 {
      font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 10px;
  color: var(--dark);
}

.video-main-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--mid);
  margin-bottom: 0;
}

.video-bottom-list {
  padding: 0;
}

.video-bottom-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.video-bottom-item:last-child {
  border-bottom: none;
}

.video-bottom-thumb {
  position: relative;
  width: 110px;
  min-width: 110px;
  height: 72px;
  overflow: hidden;
  background: #ddd;
}

.video-bottom-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-bottom-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: 0.2s ease;
}

.video-bottom-play::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #fff;
  margin-left: 2px;
}

.video-bottom-time {
  position: absolute;
  right: 6px;
  bottom: 6px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 5px;
  z-index: 3;
}

.video-bottom-text {
  flex: 1;
}

.video-bottom-text h4 {
      font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 0;
  color: var(--dark);
  transition: color 0.2s ease;
}

.video-bottom-item:hover .video-bottom-text h4 {
  color: var(--red);
}

.video-bottom-item:hover .video-bottom-play {
  background: var(--red);
}

@media (max-width: 767.98px) {
  .video-main-thumb img {
    height: 220px;
  }

  .video-main-content h3 {
    font-size: 19px;
  }

  .video-bottom-thumb {
    width: 95px;
    min-width: 95px;
    height: 64px;
  }

  .video-bottom-text h4 {
    font-size: 13px;
  }
}
  /* VIDEO WIDGET */
  .ra-video-widget{
    margin-bottom:38px;
    border:1px solid var(--ra-border);
    overflow:hidden;
  }

  .ra-section-heading{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    flex-wrap:wrap;
    border-bottom:3px solid var(--ra-red);
    padding:18px 20px 12px;
    margin-bottom:0;
  }

.ra-section-heading h2 {
    text-transform: uppercase;
    margin-left: 0;
    font-weight: 900;
    font-size: 22px !important;
    color: black;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    /* line-height: 1; */
    margin-top: 0;
    margin-bottom: 26px;
    /* border-bottom: 0 px solid var(--td_header_color, var(--td_black, #222)); */
    /* font-family: 'Roboto', sans-serif; */
    /* font-weight: 900; */
    margin: 0;
    /* font-size: 28px; */
    color: var(--ra-navy);
  }

  .ra-section-heading span{
    font-size:13px;
    color:var(--red);
  }

  .ra-video-main-wrap{
    position:relative;
    height:100%;
  }

  .ra-video-main{
    position:relative;
    display:block;
    background:#000;
    height:100%;
    min-height:440px;
    overflow:hidden;
  }
  .ra-video-main .cat{
    bottom: 0;
    left: 0;
    background: var(--red);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 10px;
  }
  span.cat-time {
    border-radius: 4px;
    border: solid 1px #dc3545;
    padding: 2px;
}

  .ra-video-main img{
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.88;
    transition:transform .45s ease;
  }

  .ra-video-main:hover img{
    transform:scale(1.04);
  }

  .ra-video-main-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.68) 100%);
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:24px;
  }

  .ra-video-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:var(--ra-red);
    color:#fff;
    font-size:11px;
    font-weight:700;
    letter-spacing:1.3px;
    text-transform:uppercase;
    padding:8px 10px;
    width:max-content;
    margin-bottom:14px;
  }

.ra-video-main-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 8px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 10px;
}

  .ra-video-main-desc {
      font-family: 'Roboto', sans-serif;
      font-size: 18px;
      line-height: 1.2;
      margin-bottom: 8px;
      color: rgba(255, 255, 255, .86);
  }

  .ra-video-meta{
    color:rgba(255,255,255,.75);
    font-size:13px;
    display:flex;
    gap:8px;
    flex-wrap:wrap;
  }

  /* MAIN PLAY BUTTON */
  .ra-play-btn{
    position:absolute;
    top:22px;
    left:22px;
    width:62px;
    height:62px;
    border-radius:50%;
    background:rgba(255,255,255,.14);
    backdrop-filter:blur(6px);
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.25);
    z-index:3;
    transition:all .25s ease;
  }

  .ra-play-btn::before{
    content:"";
    display:block;
    width:0;
    height:0;
    border-top:12px solid transparent;
    border-bottom:12px solid transparent;
    border-left:18px solid #fff;
    margin-left:4px;
  }

  .ra-video-main:hover .ra-play-btn{
    transform:scale(1.08);
    background:rgba(176, 42, 55, .9);
  }

  /* NAV BUTTONS */
  .ra-video-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    background:rgba(10, 16, 28, 0.68);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:5;
    transition:all .25s ease;
  }

  .ra-video-nav span{
    font-size:22px;
    line-height:1;
  }

  .ra-video-nav:hover{
    background:var(--ra-red);
    transform:translateY(-50%) scale(1.08);
  }

  .ra-video-nav-prev{
    left:16px;
  }

  .ra-video-nav-next{
    right:16px;
  }

  .ra-video-side{
    padding: 0px 5px 0px 5px;
    background:var(--ra-bg);
    height:100%;
  }
  .ra-video-thumb:first-child{
      padding: 0 0;
  }

  .ra-video-thumb{
    display:flex;
    gap:14px;
    padding:5px 0;
    border-bottom:1px solid var(--ra-border);
    text-decoration:none;
    color:inherit;
    transition:all .25s ease;
  }

  .ra-video-thumb:hover{
    transform:translateX(4px);
  }

  .ra-video-thumb:last-child{
    border-bottom:none;
    padding-bottom:0;
  }

  .ra-video-thumb-image{
    width:120px;
    min-width:120px;
    height:78px;
    overflow:hidden;
    position:relative;
    background:#ddd;
    border-radius:4px;
  }

  .ra-video-thumb-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .35s ease;
  }

  .ra-video-thumb:hover .ra-video-thumb-image img{
    transform:scale(1.06);
  }

  /* SMALL PLAY BUTTON */
  .ra-video-thumb-play{
    position:absolute;
    left:8px;
    top:8px;
    width:28px;
    height:28px;
    border-radius:50%;
    background:var(--red);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:2;
    transition:all .25s ease;
  }

  .ra-video-thumb-play::before{
    content:"";
    display:block;
    width:0;
    height:0;
    border-top:6px solid transparent;
    border-bottom:6px solid transparent;
    border-left:9px solid #fff;
    margin-left:2px;
  }

  .ra-video-thumb:hover .ra-video-thumb-play{
    background:var(--ra-red);
    transform:scale(1.08);
  }

  .ra-video-thumb-time{
    position:absolute;
    right:6px;
    bottom:6px;
    background:rgba(0,0,0,.8);
    color:#fff;
    font-size:10px;
    font-weight:700;
    padding:3px 6px;
    border-radius:3px;
    z-index:2;
  }

  .ra-video-thumb-content{
    flex:1;
  }

  .ra-video-thumb-content h4{
     font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 8px;
    transition:color .25s ease;
  }

  .ra-video-thumb:hover .ra-video-thumb-content h4{
    color:var(--red);
  }

  .ra-video-thumb-content p{
    font-size:12px;
    color:var(--ra-muted);
    margin:0;
  }

  /* MOBILE */
  @media (max-width: 991.98px){
    .ra-video-main{
      min-height:360px;
    }

    .ra-video-side{
      padding:14px 16px 18px;
    }

    .ra-video-nav{
      width:40px;
      height:40px;
    }

    .ra-video-nav-prev{
      left:10px;
    }

    .ra-video-nav-next{
      right:10px;
    }
  }

  @media (max-width: 767.98px){
    .ra-section-heading{
      padding:16px 16px 10px;
    }

    .ra-section-heading h2{
      font-size:22px;
    }

    .ra-video-main{
      min-height:300px;
    }

    .ra-video-main-overlay{
      padding:18px;
    }

    .ra-play-btn{
      width:52px;
      height:52px;
      top:16px;
      left:16px;
    }

    .ra-play-btn::before{
      border-top:10px solid transparent;
      border-bottom:10px solid transparent;
      border-left:15px solid #fff;
    }

    .ra-video-main-desc{
      max-width:100%;
      font-size:13px;
    }

    .ra-video-thumb{
      gap:12px;
    }

    .ra-video-thumb-image{
      width:110px;
      min-width:110px;
      height:74px;
    }

    .ra-video-thumb-content h4{
      font-size:14px;
    }
  }

  @media (max-width: 575.98px){
    .ra-video-nav{
      width:36px;
      height:36px;
    }

    .ra-video-nav span{
      font-size:18px;
    }

    .ra-video-thumb-image{
      width:96px;
      min-width:96px;
      height:68px;
    }

    .ra-video-thumb-play{
      width:24px;
      height:24px;
    }

    .ra-video-thumb-play::before{
      border-top:5px solid transparent;
      border-bottom:5px solid transparent;
      border-left:8px solid #fff;
    }
  }
  .ra-section-heading{
      padding: 0;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      border-bottom:3px solid var(--red);
      margin-bottom:26px;
    }
           /* NEWSLETTER */
    .ra-newsletter-box{
      margin-top:38px;
      background:linear-gradient(135deg, #000046 0%, #000046 100%);
      color:#fff;
      padding:28px;
      margin-bottom:38px;
      border-left:4px solid var(--ra-red-soft);
    }

    .ra-newsletter-box h3{
          font-family: 'Roboto', sans-serif;
      font-weight: 900;
      font-size: 30px;
      line-height: 1.1;
      margin-bottom: 10px;
      color: #fff;
    }

    .ra-newsletter-box p{
      color:rgba(255,255,255,.82);
      font-size:14px;
      margin-bottom:18px;
      max-width:760px;
    }

    .ra-newsletter-form .form-control{
      min-height:52px;
      border:none;
      border-radius:0;
      box-shadow:none;
    }

    .ra-newsletter-form .btn{
      min-height:52px;
      border:none;
      border-radius:0;
      background:var(--red);
      color:#fff;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:1.2px;
      padding-inline:24px;
    }

    .ra-newsletter-form .btn:hover{
      background:#842828;
    }
    .desktop-logo {
    display: block;
}

.mobile-header-wrap {
    display: none;
}

.logo {
    max-height: 50px;
    width: auto;
    display: block;
}

.menu-icon {
    font-size: 24px;
    color: #000;
    text-decoration: none;
    line-height: 1;
}

.mobile-side-menu,
.mobile-menu-overlay {
    display: none;
}

@media (max-width: 767.98px) {
    .desktop-logo {
        display: none;
    }

    .mobile-header-wrap {
        display: flex;
        align-items: center;
        gap: 12px;
        justify-content: flex-start;
    }

    .mobile-menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(255,255,255,0.92);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 9998;
    }

    .mobile-side-menu {
        display: block;
        position: fixed;
        top: -20px;
        left: -100%;
        width: 88%;
        max-width: 420px;
        height: 100vh;
        background: #f5f5f5;
        z-index: 9999;
        padding: 30px 30px 40px;
        transition: all 0.35s ease;
        overflow-y: auto;
        box-shadow: 0 0 18px rgba(0,0,0,0.12);
    }

    .mobile-side-menu.active {
        left: 0;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .close-mobile-menu {
        position: absolute;
        top: 26px;
        right: 26px;
        font-size: 34px;
        color: #000;
        text-decoration: none;
    }

    .mobile-side-menu ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-side-menu ul li {
        margin-bottom: 34px;
    }

    .mobile-side-menu ul li a {
        font-size: 27px;
        font-weight: 700;
        color: #000;
        text-decoration: none;
        line-height: 1.2;
    }
    .site-header .logo {
        margin-left: 45%;
    }
    .site-header .fa-solid {
    --fa-style: 900;
    color: black;
}
}

@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --ff-vietnam: "Be Vietnam Pro", serif;
}
.footer {
  background: #000;
  padding-bottom: 60px;
}
.footer-logo {
  width: 300px;
}
.footer-container {
    padding-right: 10% !important;
    padding-left: 10% !important;
    padding-left: 12px;
    padding-right: 12px;
    margin-left: auto;
    margin-right: auto;
}
.footer h5 {
  color: #fff;
  font-family: var(--ff-vietnam);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 12px;
}
.info-text {
  font-weight: 800;
  font-size: 19px;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-family: var(--ff-vietnam);
}
.footer ul li a:hover {
  color: #6d9af8;
}

.footer-header {
  padding-top: 32px;
  padding-bottom: 35px;
}
.social-icons {
  display: flex;
  gap: 25px;
}
.social-icons svg:hover path {
  fill: #6d9af8;
}
.social-icons a:not([aria-label="YouTube"]) svg:hover path {
  fill: #6d9af8;
}

.end-row h5 {
  font-family: var(--ff-vietnam);
  font-size: 14px;
  text-transform: none;
  font-weight: 700;
  margin-top: 6px;
  line-height: 22px;
}
.end-row h5:hover {
  color: #6d9af8;
}

.end-row ul li a {
  font-family: var(--ff-vietnam);
  font-size: 14px;
  font-weight: 700;
  margin-top: 12px;
}
.end-row ul li a:hover {
  color: #6d9af8;
}

.end-row ul li {
  padding-bottom: 8px;
}

.border-gray {
  border-color: #9191a1 !important;
}


@media (min-width: 768px) {
  .restoring-america-logo {
    width: 300px;
    margin-left: 104px;
  }
  .examiner-logo {
    width: 200px;
  }
  .slide {
    height: 620px !important;
  }
  .custom-arrows {
    bottom: 30px;
  }
  .border-md-end{
    border-right: 1px solid ;
  }
  .card {
    height: 318px;
  }
}
@media (min-width: 992px) {
  .max-w-527 {
    max-width: 527px;
    margin-left: auto;
  }
  .footer-logo {
    width: 400px;
  }
}

@media (min-width:1400px) {
  .slide {
    height: 720px !important;
  }
}
