
  .Frequencies .card .card-header {
    background: linear-gradient( var(--to-end) , var(--primary-color), #BF5154);
    color: white;
    padding: 1.5rem 1rem !important;
    margin: 0;
  }
  .Frequencies .card-text-link {
    color: var(--secondary-color);
    font-weight: 800;
    font-family: var(--font-family);
    font-size: 1rem;
  }
  
  .video-frame {
    width: 100%;
    height: auto;
  }
  
  .social-media .w-25,
  .social-media .w-50 {
    display: flex;
    align-items: stretch;
  }
  
  .social-media .w-25 .bg-dark {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  
  .social-media img {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  .screen {
    background-color: var(--bg-color);
  }
  .screen .card {
    background: transparent !important;
    border: 1px solid white;
  }
  .screen .card-header {
    background: transparent !important;
    color: white;
    border-bottom: 0.5px solid white !important;
  }
  .screen .card img {
    aspect-ratio: 16/9;
    height: 50px;
  }
  .card-header,
  .card-body {
    border-bottom: 1px solid white;
  }
  .screen .card .btn-link {
    color: white;
    text-decoration: none !important;
  }
  
  @media (max-width: 991.98px) {
    .social-media .w-25,
    .social-media .w-50 {
      flex: 1 1 100%;
    }
  }
  
  @media (max-width: 767.98px) {
    .social-media .w-25,
    .social-media .w-50 {
      flex: 1 1 100%;
    }
    .social-media .w-25 .bg-dark {
      height: auto;
    }
    .social-media img {
      height: auto;
    }
  }

  .grid-middle-bigger{
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 2fr) minmax(0, .8fr);
    column-gap: 1rem;
    row-gap: 1rem;
  }
  @media (max-width: 991.98px) {
    .grid-middle-bigger{
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-rows: auto auto;
    }
    .grid-middle-bigger  > :nth-child(2){
        order: -1;
        grid-column: span 2;
    }
  }
  
  @media (max-width: 767.98px) {
    .grid-middle-bigger
    {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto;
    }

    .grid-middle-bigger  > :nth-child(2){
        order: -1;
        grid-column: unset;
    }
  }

  .gradient-dark-bottom{
    background: linear-gradient(to bottom, #343434, #5d5d5d);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .gradient-dark-bottom .icon{
    background: #fff;
    width: 60px;
    border-radius: 5px;
    padding: 10px;
    margin: 5px auto 10px;
  }

  .follow-tvs-intro-brief{
    width: 80%;
  }
  .screen .accordion-content{
    display: none;
  }