.brands {
  color: #313437;
  /*background-color: #fff;*/
}

/* Logo Slider */

.logo-slider {
  cursor: url('../img/favicon-32x32.png'), auto;
  background: rgba(255, 255, 255, 0);
  -webkit-box-shadow: 0 0px 0px 0px rgba(0, 0, 0, 0.02);
  box-shadow: 0 0px 0px 0px rgba(0, 0, 0, 0.01);
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-slider::before, .logo-slider::after {
  cursor: url('../img/favicon-32x32.png'), auto;
 content: "";
  height: 175px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.logo-slider::after {
  cursor: url('../img/favicon-32x32.png'), auto;
  right: 0;
  top: 0;
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}

.logo-slider::before {
  cursor: url('../img/favicon-32x32.png'), auto;
  left: 0;
  top: 0;
}

.logo-slider .logo-slide-track {
  cursor: url('../img/favicon-32x32.png'), auto;
  -webkit-animation: logo-scroll 60s linear infinite;
  animation: logo-scroll 60s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(250px * 14);
  animation-duration: 30s;
  animation-iteration-count: infinite;
}

.logo-slider .slide {
  width: 220px;
  padding: 20px;
}

@-webkit-keyframes logo-scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-250px * 7));
    transform: translateX(calc(-250px * 7));
  }
}

@keyframes logo-scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-250px * 7));
    transform: translateX(calc(-250px * 7));
  }
}




/* Bu jang slideshow */
.jantbizimisimiz {
  cursor: url('../img/favicon-32x32.png'), auto;
  height: 100vh;
}

.img
{
  cursor: url('../img/favicon-32x32.png'), auto;
  position: relative;
  height: 100%;
  /* attr data-type doesn't work anywhere for the moment :( */
  /* Even in chrome canary */
  /* So we do it the JS way */
  background-image: attr(data-img url); /* Keep it anyway */
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  border-bottom: 3px solid white;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: -2px;
  color: rgba(255,255,255,0.85);
  text-stroke: 1.5px rgba(0,0,0,0.7);
}
.img:last-of-type
{
  border-bottom: none;
}
.img:before
{
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.multiline
{
  display: inline-block;
}
.max
{
  cursor: url('../img/favicon-32x32.png'), auto;
  display: block;
  font-size: 60px;
  letter-spacing: 1px;
}
.img .permalink
{
  position: absolute;
  right: 0;
  top: 0;
  width: 16px;
  height: 16px;
  cursor: url('../img/favicon-32x32.png'), auto;
  background: url(https://i.imgur.com/wdQCy4F.png) center no-repeat;
  opacity: .2;
  transition: opacity .5s;
}
.img .permalink:hover
{
  cursor: url('../img/favicon-32x32.png'), auto;
  opacity: 1;
}