/*body {*/
/*  background-color: #292b2a;*/
/*}*/

section {
  padding: 25px;
}

h1 {
  color: #ccc;
}

.item {
  width: 100%;

}
.item img {
  display: none;
}

.development{
  /* background-color: #2255b3; */
  font-size: 12px;
  font-weight: 500;
  background: none;
  color: black;
}


/***** Global Slide *****/
/* .slide-right, .slide-left {
  width: 100%;
} */

.slide-left {
  animation: 3s slide-left;
}
@keyframes slide-left {
  from {
    margin-left: 100%;
  }
  to {
    margin-left: 0%;
  }
}
/***** Slide Right *****/
.slide-right {
  animation: 3s slide-right;
}
@keyframes slide-right {
  from {
    margin-left: -100%;
  }
  to {
    margin-left: 0%;
  }
}