.gallery .item {
  display: inline-flex;
  width: calc((100vw - 34px) / 8);
  height: calc((100vw - 34px) / 8);
  transition: transform 0.15s ease;
  -o-transition: -o-transform 0.15s ease;
  -ms-transition: -ms-transform 0.15s ease;
  -moz-transition: -moz-transform 0.15s ease;
  -webkit-transition: -webkit-transform 0.15s ease;
}
.gallery .item img,
.gallery .item video {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.gallery .item.play:before {
  background-image: url("../images/play-button.png");
  background-size: 30%;
  background-position: center center;
  background-repeat: no-repeat;
}

.tcc-link {
  cursor: pointer;
  margin: 1rem auto;
  transition: transform 0.15s ease;
  -o-transition: -o-transform 0.15s ease;
  -ms-transition: -ms-transform 0.15s ease;
  -moz-transition: -moz-transform 0.15s ease;
  -webkit-transition: -webkit-transform 0.15s ease;
}

.tcc-link img {
  width: 350px;
}

.tcc-link:hover,
.gallery .item:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  z-index: 99;
}

.bg-red {
  background-color: #fa1d1d;
}
.bg-green {
  background-color: #33cc66;
}
.bg-blue {
  background-color: #0076f3;
}
.bg-yellow {
  background-color: #faaa1d;
}
.bg-orange {
  background-color: #ff5e00;
}
.bg-black {
  background-color: black;
}
.bg-white {
  background-color: white;
}

#callus {
  padding-bottom: 30px;
}

.item .client-info {
  width: 20%;
  float: left;
}

.item .client-info p {
  padding: 10px;
  font-weight: bold;
}

.item .quote {
  width: 80%;
  padding: 25px 50px;
  text-align: justify;
  display: inline-block;
}

i.mdi {
  font-size: 140%;
}
