section {
  padding: 100px;
  min-height: 100vh;
}
.title {
    width: 100%;
    text-align: center;
  }
  .title h2 {
    position: relative;
    color: #00bcd4;
    font-size: 1.8em;
    font-weight: 500;
    letter-spacing: 1px;
  }
  .title p {
    max-width: 700px;
    display: inline-block;
  }
  .title h2::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: #000;
  }
  .title.white h2,
  .title.white p{
    color: #fff;
  }
  .title.white h2::before {
    background: #fff;
  }
    /* ----------Responsive -----------*/
@media (max-width: 991px) {
  section {
    padding: 40px;
    height: 100%;
  }
}