<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@CHARSET "UTF-8";

#clients {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  height: 60px;
  width: auto;
  max-width: 1200px;
}
@media only screen and (max-width: 1600px) {
#clients {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  height: 60px;
  max-width: 300px;
}
}


#clients .clients-wrap {
  display: inline-block;
  width: 95%;
  margin: 0 auto;
  overflow: hidden;
  height: 60px;
}
#clients ul {
  display: inline-block;
  list-style: none;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  height: 60px;
}
#clients  li {
  display: inline-block;
  float: left;
  position: relative;
  width: 220px;
  height: 100px;
  line-height: 80px;
  text-align: center;
}
#clients img {
  vertical-align: middle;
  max-width: 90%;
  height: auto;
  max-height: 100px;
  width: auto;
  -webkit-transition: 0 linear left;
  -moz-transition: 0 linear left;
  transition: 0 linear left;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1.0;
  background-color:#ffffff;
  padding:3px;
}
#clients img:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
  filter: alpha(opacity=65);
  opacity: 0.65;
}</pre></body></html>