/* reset */

/*
@media (min-width: $media-md) {
}
@media (min-width: $media-lg) {
}
@media (min-width: $media-xl) {
}
@media (min-width: $media-x2l) {
}
@media (min-width: $media-x3l) {
}
*/

.section-title {
  border-top: 1px solid #2c2c2c;
  border-bottom: 1px solid #2c2c2c;
  padding: 15px 0;
  background-color: #121212;
  position: relative;
}

.section-title:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  background: #2c2c2c;
}

.section-title__h1 {
  text-transform: uppercase;
  font-size: 26px;
  color: #2d2d2d;
  line-height: 1.2em;
  font-weight: 300;
  max-width: 50%;
}

.section-title--nice:before {
  display: none;
}

.section-title--nice .section-title__h1 {
  font-family: "Apoc Hairline", Helvetica, Arial, Lucida, sans-serif;
  color: #ededed;
  font-weight: 400;
  max-width: 100%;
}

.section-title-large {
  border-bottom: 1px solid #2c2c2c;
  position: relative;
  z-index: 2;
}

.section-title-large__bg {
  opacity: 0;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 1100px;
  height: auto;
}

@media (min-width: 768px) {
  .section-title {
    padding: 23px 0;
  }

  .section-title__h1 {
    font-size: 36px;
  }

  .section-title-large {
    padding-bottom: 50px;
    padding-top: 50px;
  }

  .section-title-large__bg {
    opacity: 1;
  }

  .section-title--nice .section-title__h1 {
    text-align: center;
  }
}

@media (min-width: 992px) {
  .section-title-large {
    position: relative;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section-title-large:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(25% - 0.5px);
    width: 1px;
    background: #2c2c2c;
  }

  .section-title-large:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(75% - 0.5px);
    width: 1px;
    background: #2c2c2c;
  }
}

@media (min-width: 1200px) {
  .section-title__h1 {
    font-size: 42px;
  }
}