.work {
  position: relative;
  clear: both;
  height: auto;
  margin-bottom: 5em;
  width: 80%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto; }
  @media screen and (orientation: portrait) {
    .work {
      width: 100%; } }
  .work .image {
    width: 100%;
    float: none;
    margin: 0.5em 0;
    box-shadow: 0px 0px 15px -5px rgba(0, 0, 0, 0.2); }
    .work .image img {
      width: 100%; }
  .work video {
    width: 100%; }
  .work .title {
    /* 		position: absolute; */
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 15px -5px rgba(0, 0, 0, 0.2);
    padding: 1em;
    width: 100%;
    z-index: 2;
    /* 		background: $cloud; */
    /* 		opacity: 0.7; */
    /* 		padding: 1em; */ }
    .work .title h2 {
      font-family: 'Lato', 'Segoe UI Light', 'Helvetica';
      font-size: 2em;
      color: white;
      font-weight: 300; }
    .work .title h2 {
      margin: 0; }
  .work .description {
    background: #ecf0f1;
    color: #2c3e50;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 15px -5px rgba(0, 0, 0, 0.2);
    color: white;
    padding: 1em;
    z-index: 3;
    /* 		a{ */
    /* 			color: #9b59b6; */
    /* 		} */
    width: 100%;
    float: none; }
    .work .description p {
      margin: 0;
      -webkit-column-count: 1;
      -moz-column-count: 1;
      columns-count: 1;
      /*     		@media screen and (max-width: 1000px) and (min-width: 600px){ */
      /* 			-webkit-column-count: 2; */
      /*     		-moz-column-count: 2; */
      /*     		columns-count: 2; */
      /* 			} */
      /* 			@media screen and (max-width: 1599px) and (min-width: 1001px){ */
      /* 			-webkit-column-count: 2; */
      /*     		-moz-column-count: 2; */
      /*     		columns-count: 2; */
      /* 			} */
      /* 			@media screen and (min-width: 1600px){ */
      /* 			-webkit-column-count: 3; */
      /*     		-moz-column-count: 3; */
      /*     		columns-count: 3; */
      /* 			} */ }
    .work .description h3 {
      font-family: 'Lato', 'Segoe UI Light', 'Helvetica';
      font-size: 1.5em;
      color: white;
      font-weight: 300; }
    .work .description ul .team {
      margin: 0; }

/* Loader */
#loader {
  top: 50%;
  width: 100%;
  height: 100px;
  position: fixed;
  left: 0;
  text-align: center;
  font-family: 'Lato', 'Segoe UI Light', 'Helvetica';
  font-size: 3em;
  font-weight: 300; }

.loader1,
.loader3,
.loader2,
.loader4 {
  bottom: 0;
  width: 30px;
  height: 30px;
  position: absolute;
  background-color: #ccc;
  border-radius: 50%; }

.loader1 {
  background-color: #2ecc71;
  animation: move 2s infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
  -webkit-animation: move 2s infinite cubic-bezier(0.2, 0.64, 0.81, 0.23); }

.loader2 {
  background-color: #1abc9c;
  animation: move 2s 150ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
  -webkit-animation: move 2s 150ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23); }

.loader3 {
  background-color: #3498db;
  animation: move 2s 300ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
  -webkit-animation: move 2s 300ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23); }

.loader4 {
  background-color: #9b59b6;
  animation: move 2s 450ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
  -webkit-animation: move 2s 450ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23); }

@keyframes move {
  0% {
    left: 0%; }

  100% {
    left: 100%; } }

@-webkit-keyframes move {
  0% {
    left: 0%; }

  100% {
    left: 100%; } }
