

@media screen 
and (max-width: 713.98px) 
{
  .ShowOnScreen {
    display: none;
  }
 .ShowOnTablet {
    display: none;
  }
  .ShowOnMobile {
    display: initial;
  }
}


@media screen 
and (min-width: 714px) 
and (max-width: 1043.98px) 
{
  .ShowOnTablet {
    display: initial;
  }
  .ShowOnMobile {
    display: none;
  }
 .ShowOnScreen {
    display: none;
  }
}


@media screen 
and (min-width: 1044px) 
and (max-width: 2400px) 
{
  .ShowOnScreen {
    display: initial;
  }
  .ShowOnMobile {
    display: none;
  }
.ShowOnTablet {
    display: none;
  }
}