@charset "utf-8";
/* CSS Document */
.services-section {
  background-color: #f1f1f1;
  padding: 40px 0 10px;
}

.services-section-fullwidth {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.service-box {
  padding: 35px 20px;
  background: transparent;
}

.service-icon-link {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #ea2046;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.service-icon i {
  font-size: 45px;
  line-height: 1;
}

.service-box h2 {
  font-size: 25px;
  line-height: 1.4;
  margin: 0 0 15px;
}

.service-box p {
  margin: 0 0 15px;
}

.service-read-more {
  color: #ea2046;
  text-decoration: none;
  font-weight: 600;
}

.service-read-more:hover,
.service-icon-link:hover h2 {
  color: #ea2046;
}

.service-icon-link:hover .service-icon {
  transform: scale(1.08);
  background: #ea2046;
}