.headerTextComponent {
  background-color: #ffffff;
  padding: 10rem 0 3rem;
  position: relative;
  overflow: hidden;
  z-index: 20;
}

.headerTextComponent .text h2 {
  font-size: 3rem;
  font-weight: 500;
  position: relative;
}

@media (max-width: 767px) {
  .headerTextComponent .text h2 {
    font-size: 2rem;
  }
}

.headerTextComponent .text h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 48%;
  right: 48%;
  height: 2px;
  width: 3rem;
  border-bottom: 1px solid #7e313e;
}

.headerTextComponent .text p {
  font-size: 2rem;
}

@media (min-width: 768px) {
  .headerTextComponent .text.columns2 > div {
    text-align: justify;
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }
}

