


/* Select Demo
-------------------------------------------------------*/

.animated-bg {
  -webkit-animation: animate-bg 600s linear infinite;
  -o-animation: animate-bg 1200s linear infinite;
  animation: animate-bg 600s linear infinite;
  background-repeat: repeat-x;
}

@-webkit-keyframes animate-bg {
  from { 
    background-position: 0 0;
  } 
  to { 
    background-position: -50000px 0;
  }
}
@-moz-keyframes animate-bg {
  from { 
    background-position: 0 0;
  } 
  to { 
    background-position: -50000px 0;
  }
}
@-o-keyframes animate-bg {
  from { 
    background-position: 0 0;
  } 
  to { 
    background-position: -50000px 0;
  }
}
@keyframes animate-bg {
  from { 
    background-position: 0 0;
  } 
  to { 
    background-position: -50000px 0;
  }
}

.title-text h1 {
  font-size: 46px;
}


.page-title .container {
  height:550px;
}

.row-clear .col-xs-6:nth-child(3n + 1) { clear: left; }

@media (max-width: 767px) {

  .row-clear .col-xs-6:nth-child(3n + 1) { clear: none; }
  .row-clear .col-xs-6:nth-child(2n + 1) { clear: left; }

}

@media (min-width: 1600px) {

  .select-demo > .container {
    width: 1400px;
  }
}
