.services-container {
  margin: 100px auto;
}
.services-container [class*=col-md-] {
  display: flex;
  align-items: stretch;
  margin: 20px 0;
}

.service-card {
  display: block;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: 0px 0px 10px -1px rgba(0, 0, 0, 0.48);
  -moz-box-shadow: 0px 0px 10px -1px rgba(0, 0, 0, 0.48);
  box-shadow: 0px 0px 10px -1px rgba(0, 0, 0, 0.48);
}

.service-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  position: relative;
}
.service-img svg {
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  fill: #fff;
  filter: drop-shadow(0 0 2rem #000);
}

.service-info {
  padding: 10px;
  text-align: center;
}
.service-info h1 {
  font-size: 30px;
  font-weight: 300;
  position: relative;
  margin-bottom: 20px;
}
.service-info h1:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 70px;
  transform: translateX(-50%);
  border-bottom: 1px solid #212529;
}
.service-info p {
  font-weight: 400;
}

.extras {
  margin: 50px auto 0 auto;
  padding: 10px;
}

@media screen and (max-width: 991px) {
  .service-info {
    min-height: 240px;
  }
  .service-info h1 {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .service-info {
    min-height: 200px;
  }

  .service-card {
    transform: scale(1);
  }
}

/*# sourceMappingURL=services.css.map */
