/* Services — Elementor 3bfdb67c
   Three equal columns; card body padding 30/22; bottom radius 4;
   Card 2: border #FFA722 + text.jpg background */

.services {
  box-sizing: border-box;
  margin: 0;
  padding: 0 var(--gcs-gutter, 15px) var(--gcs-section-y, 90px);
  /* Offset for sticky header when landing on #services */
  scroll-margin-top: var(--gcs-scroll-offset, 120px);
}

.services *,
.services *::before,
.services *::after {
  box-sizing: border-box;
}

.services__inner {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1140px;
  width: 100%;
}

.services__card {
  display: flex;
  flex-direction: column;
  margin: 0 15px;
  min-width: 0;
  width: calc(33.333% - 30px);
}

.services__media {
  line-height: 0;
  margin: 0;
  padding: 0;
}

.services__img {
  display: block;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  width: 100%;
}

.services__body {
  border: 1px solid #e8e8e8;
  border-radius: 0 0 4px 4px;
  flex: 1 1 auto;
  margin: 0;
  padding: 30px 22px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.services__card--featured .services__body {
  background-image: url("../img/text.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #ffa722;
}

.services__title {
  color: #000000;
  font-family: "Heebo", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  margin: 0 0 15px;
  padding: 0;
}

.services__card--featured .services__title {
  color: #ffffff;
}

.services__title--heebo {
  font-family: "Heebo", Sans-serif;
  font-weight: 600;
}

.services__text {
  color: #666666;
  font-family: var(--gcs-font, "Roboto", sans-serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0 0 12px;
  padding: 0;
}

.services__text:last-child {
  margin-bottom: 0;
}

.services__text a {
  color: var(--gcs-orange, #ffa722);
  font-weight: 500;
}

.services__card--featured .services__text {
  color: rgba(255, 255, 255, 0.92);
}

.services__card--featured .services__text a {
  color: #fff;
  text-decoration-color: var(--gcs-orange, #ffa722);
}

.services__card--featured .services__text a:hover,
.services__card--featured .services__text a:focus {
  color: var(--gcs-orange, #ffa722);
}

/* Entrance — Elementor fadeInUp, delay 0.15s */
.services .fadeInUp {
  animation-delay: 0.15s;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: services-fadeInUp;
}

@keyframes services-fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .services .fadeInUp {
    animation: none;
  }
}

/* Tablet — Elementor @media (max-width: 1024px) */
@media (max-width: 1024px) {
  .services {
    padding: 0 var(--gcs-gutter, 15px) var(--gcs-section-y-md, 70px);
  }

  .services__body {
    padding: 20px 15px;
  }
}

/* Mobile — stack columns */
@media (max-width: 767px) {
  .services {
    margin: 0;
    padding: 0 var(--gcs-gutter, 15px) var(--gcs-section-y-sm, 56px);
    scroll-margin-top: var(--gcs-scroll-offset, 120px);
  }

  .services__card {
    margin: 0 0 16px;
    width: 100%;
  }

  .services__card:last-child {
    margin-bottom: 0;
  }

  .services__body {
    padding: 22px 18px;
  }
}
