.tlc {
  position: relative;
}

.tlc-i-w {
  background-color: #fff7f4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 30px;
  overflow: hidden;
}
.tlc-img {
  width: 100%;
}
.tlc-cont {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  text-align: center;
}
.tlc-title {
  color: var(--text-dark);
  font-size: 28px;
  font-weight: 600;
}

@media only screen and (min-width: 768px) {
  .tlc-img {
    width: 600px;
    margin-top: 20px;
  }
  .tlc-cont {
    top: 60px;
  }
  .tlc-title {
    font-size: 32px;
  }  
}
@media only screen and (min-width: 1200px) {
  .tlc-img {
    width: 800px;
    margin-top: 20px;
  }  
  .tlc-title {
    font-size: 40px;
  }  
  .tlc-cont {
    top: 70px;
  }
}