/*
####################################################
M E D I A  Q U E R I E S
####################################################
*/
 
/*
::::::::::::::::::::::::::::::::::::::::::::::::::::
Bootstrap 4 breakpoints
*/
 
/* 
Extra small devices (portrait phones, less than 576px) 
No media query since this is the default in Bootstrap because it is "mobile first"
*/
 
 
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) { 

  #logo > a >img{
      width:60%;
      height:auto;
      margin:0 auto;
  }

  /* top-bar ##################################*/
  .top-links{
      overflow:scroll;
  }
  #top-bar .top-links ul{
    display:inline-flex;
    flex-basis:200px;
    flex-direction:row-reverse;
    
  }
  #top-bar .top-links ul li{
    display:flex;
    flex-direction:row;
    width:max-content;
  }
  /* ################################## top-bar*/

  /* tab-caracteristicas ######################*/
  .sirus-list li{
      width:calc(100%/2);
  }

  .sirus-list.sirusl-c1 li{ width:calc(100%/2) !important;}
  .sirus-list.sirusl-c2 li{ width:calc(100%/2) !important;}
  .sirus-list.sirusl-c3 li{ width:calc(100%/2) !important;}
  .sirus-list.sirusl-c4 li{ width:calc(100%/2) !important;}
  .sirus-list.sirusl-c5 li{ width:calc(100%/2) !important;}
  .sirus-list.sirusl-c6 li{ width:calc(100%/2) !important;}
  /* ###################### tab-caracteristicas */
} /*@media (max-width: 575.98px) { */

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {  }

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {  }

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {  }

/*  */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {  }

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {  }

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {  }

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {  }