.tl-cover-wrap {
  height: 200px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
 .tlc-ovl, .tlc-float {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.tlc-ovl {
  background: #000;
  opacity: .05;
  z-index: 99;
}
.tlc-float {
  z-index: 90;
}
.tlc-img {
  width: 100%;
  height: auto;
  transition: all .1s ease-in-out;
}
.tlc-cont {
  text-align: center;
}
.tlc-title {
  font-family: 'Lato', sans-serif;
  color: var(--accent-main);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .tl-cover-wrap {
    height: 40vh;
  }
  .tlc-img {
    width: 100%;
    height: auto;
  }
  .tlc-title {
    font-size: 42px;
  }
}
@media only screen and (min-width: 992px) {
  .tl-cover-wrap {
    height: 25vh;
  }
}
@media only screen and (min-width: 1200px) {
  .tl-cover-wrap {
    height: 30vh;
  }
  .tlc-title {
    font-size: 64px;
  }
}