#list-links .links-wrap {
  max-width: 500px; 
  overflow: hidden; 
  margin:0 auto;
  height: 40px;  
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, [col-start] 1fr);
  gap: 1.5rem;
}
#list-links .links-wrap a,
#list-links .links-wrap button{
  padding: 3px 10px;
  border: 2px solid #fff;
  border-radius: 8px;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
   line-height: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.3s ease color;
  transition: 0.3s ease color;
  white-space: nowrap;
  text-decoration: none;
  outline: 0;
  background: transparent;
}
#list-links .links-wrap > *.active,
#list-links .links-wrap > *.bg-green{
  background-color: #44d62c; 
  color: #000;
  border-radius: 5px;
  border-color: #44d62c;
}
@media (min-width: 768px) {
  #list-links { margin-top: -70px; margin-bottom:30px}
}
@media (max-width: 767px) {
  #list-links { margin-top: 2rem; padding: 0 1rem;}
      #list-links .links-wrap { grid-template-columns: repeat(1, [col-start] 1fr); gap: 1rem; height: auto; max-width: 280px;}
  #list-links .links-wrap > * {font-size: 15px; line-height:24px; border-width: 1px;}
}
 @media screen and (max-width:767px){} @media screen and (-webkit-max-device-pixel-ratio: 1) and (min-width: 1200px), screen and (min-width: 768px) and (max-width: 1200px){} @media screen and (-webkit-min-device-pixel-ratio: 1) and (min-width: 1200px){} @media screen and (-webkit-min-device-pixel-ratio: 1.5) and (min-width: 1200px){}