


/* Select Demo
-------------------------------------------------------*/

.animated-bg {
  -webkit-animation: animate-bg 600s linear infinite;
  -o-animation: animate-bg 600s 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: 700px;
}

.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;
  }
}

@media (max-width: 400px) {
  .work-item.col-xs-6 {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .call-to-action .cta-text {
    margin-bottom: 15px;
  }
}

.work-item {
  position: relative;
  overflow: hidden;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  margin-bottom: 20px;
}

.work-item > a {
  display: block;
  position: relative;
}

.work-item img {
  max-width: 100%;
  width: 100%;
  height: auto;
  overflow: hidden;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  backface-visibility: hidden;
  position: relative;
}

.work-description {
  position: relative;
  bottom: auto;
}


.work-item .work-description h2 {
  margin: 10px 0;
  font-size: 14px;
}

.work-item .work-description a {
  color: inherit;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.work-item .work-description a:hover {
  color: #7c7c7c;
}

.work-img {
  position: relative;
  overflow: hidden;
}

.work-item:hover .work-img img {
  opacity: 0.8;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.label-new {
  position: absolute;
  top: 10px;
  left: 5px;
  z-index: 2;
  background-color: #2cb8a5;
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 12px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Call to Action
-------------------------------------------------------*/

.call-to-action {
  padding: 70px 0;
  background-color: #fff;
}

.call-to-action.style-2 h2 {
  font-size: 36px;
  margin-top: 4px;
}

@media (max-width: 767px) {
  .call-to-action.style-2 h2 {
    font-size: 24px;
  }
}


/* Footer
-------------------------------------------------------*/

.footer-type-2 .footer-widgets {
  padding: 80px 0;
}