/* STYLES */

body {
  background: #fdfefd;
  color: #a28c8b;
  text-align: center;
  font-family: 'Lekton', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
}
header {
  width: 300px;
  margin: 60px auto;
}
h1 {
  margin-bottom: 40px;
}
h1 img {
  width: 140px;
  height: auto;
}
span {
  padding-bottom: 5px;
  font-family: 'Ubuntu', sans-serif;
  text-transform: uppercase;
  font-size: 30px;
  letter-spacing: 0;
  border-bottom: 2px solid #aeb898;
}
header p {
  margin: 8px 0 0 0;
}
.clients {
  background: #aeb898;
  padding: 50px 0;
}
.container {
  max-width: 80%;
}
.inside {
  margin-top: 10px;
  margin-bottom: 10px;
}
.content {
  padding: 12px 3px;
}
.content img {
  max-height: 60px;
  max-width: 100%;
}
.content img.mw70 {
  max-width: 70%;
}
.content img.mw50 {
  max-width: 50%;
}
footer {
  padding: 50px 0;
}
footer p {
    margin: 0;
}

/* COL & ROW */

.row-height {
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%;
}
.col-height {
  display: table-cell;
  float: none;
  height: 100%;
}
.col-middle {
  vertical-align: middle;
}

@media (min-width: 768px) {
  .row-sm-height {
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
  }
  .col-sm-height {
    display: table-cell;
    float: none;
    height: 100%;
  }
  .col-sm-middle {
    vertical-align: middle;
  }
}

@media (max-width: 768px) {
  .inside {
    margin: 0;
    //display: flex;
    //height: 100%;
    //justify-content: center;
    //align-items: center;
    height: 100%;
    position: relative;
  }
  .content {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
  }
  .col-sm-4 {
    width:33.33333333%;
    height: 100px;
  }
}

@media (max-width: 450px) {
  .col-sm-4 {
    width:50%;
    height: 80px;
  }
}
