/***** Services Header *****/
.text-normalised {
  padding: 0 15%;
  margin-bottom: 75px;
}

/***** Services Images *****/
.label {
  position: absolute;
  top: 0;
  height: 60px;
  width: 30%;
  background-color: #fff;
  border-radius: 0 0 100px 0;
}

.label-text {
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  line-height: 2;
  letter-spacing: 3px;
  font-weight: 700;
}

.services-image {
  width: 100%;
  min-height: 250px;
}

.label-opaque {
  position: absolute;
  text-align: center;
  bottom: 0;
  width: 65%;
  padding: 40px 0;
  border-radius: 200px 0 0 0;
  background-color: rgba(113, 20, 24, .85);
}

.flex-center {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
}

.opaque-text {
  font-size: 24px;
  color: #fff;
  margin: 10px 15px 0;
  letter-spacing: 2px;
  font-family: QuicksandBold;
  white-space: nowrap;
}

.label.left {
  left: 0;
}

.label.right {
  right: 0;
  border-radius: 0 0 0 100px;
}

.label-opaque.right {
  right: 0;
}

.label-opaque.left {
  left: 0;
  border-radius: 0 100px 0 0;
}

@media only screen and (max-width: 599px) {
  .label {
    width: 50%;
    height: 36px;
  }

  .label-text {
    font-size: 18px;
  }

  .label-opaque {
    width: 95%;
    padding: 20px 0 20px 50px;
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
  }

  .label-opaque.left {
    padding: 20px 20px 20px 0px;
  }

  .label-opaque.left .opaque-text {
    margin: 0 0 0 5px;
  }

  .opaque-text {
    font-size: 16px;
    margin: 0 5px 0 0;
  }
}

@media only screen and (min-width: 600px) and (max-width: 1199px) {
  .label-opaque {
    width: 75%;
  }
}