


/*============================================================
	Tablet (Portrait) Design for a width of 768px
==============================================================*/

@media (min-width: 768px) and (max-width: 979px) {


/* works */

.work-item {
  width: 33%;
}
/* fatcs */

#facts {
  background-position: center top !important;
  }
  .counters-item {
    margin-bottom: 30px;
  }
  
  .counters-item i {
    margin: 0 0 15px;
  }
  
  .counters-item strong {
    font-size: 45px;
  }
}


/*============================================================
	Mobile (Portrait) Design for a width of 320px
==============================================================*/

@media only screen and (max-width: 767px) {


/* works */

.work-item {
  left: 5% !important;
  width: 90%;
}

/* facts */

#facts {
  background-position: center top !important;
  }
  
  .counters-item {
    margin-bottom: 30px;
  }
}


/*============================================================
	Mobile (Landscape) Design for a width of 480px
==============================================================*/

@media only screen and (min-width: 480px) and (max-width: 767px) {


/* works */

.work-item {
  left: inherit !important;
  width: 50%;
}

}