/* =========================================
   GROWTH SERVICES
========================================= */

.growth-services {
  position: relative;
  padding: 100px 0 80px;
  background: #f8faed;
  overflow: hidden;
}

/* =========================================
   HEADING
========================================= */

.growth-services__heading {
  margin-bottom: 45px;
}

.growth-services__tagline {
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #9bd000;
}

.growth-services__title {
  margin: 0;
  max-width: 1000px;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -1.5px;
  color: #111111;
}

.growth-services__highlight {
  position: relative;
  display: inline-block;
  color: #9bd000;
}

.growth-services__highlight::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 0;
  bottom: -7px;
  height: 4px;
  border-radius: 50%;
  background: #111111;
  transform: rotate(-3deg);
}

/* =========================================
   GRID
========================================= */

.growth-services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

/* =========================================
   CARD
========================================= */

.growth-service-card {
  position: relative;
  min-height: 460px;
  padding: 24px 24px 22px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(30, 40, 10, 0.04);
  overflow: hidden;

  display: flex;
  flex-direction: column;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;

  animation: growthCardFade 0.7s ease both;
}

.growth-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(30, 40, 10, 0.10);
}

/* =========================================
   NUMBER
========================================= */

.growth-service-card__number {
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #9bd000;
}

/* =========================================
   ICON
========================================= */

.growth-service-card__icon {
  height: 175px;
  margin: 10px 0 5px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 105px;
  color: #9bd000;

  transition:
    transform 0.4s ease,
    color 0.4s ease;
}

.growth-service-card:hover .growth-service-card__icon {
  transform: scale(1.05);
  color: #8fc500;
}

/* =========================================
   CONTENT
========================================= */

.growth-service-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.growth-service-card__title {
  margin: 0;
  max-width: 210px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: #111111;
}

.growth-service-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.growth-service-card__title a:hover {
  color: #9bd000;
}

/* =========================================
   SMALL GREEN LINE
========================================= */

.growth-service-card__line {
  display: block;
  width: 38px;
  height: 3px;
  margin: 12px 0 13px;
  border-radius: 4px;
  background: #9bd000;
}

/* =========================================
   DESCRIPTION
========================================= */

.growth-service-card__text {
  margin: 0;
  max-width: 220px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: #4c4c4c;
}

/* =========================================
   ARROW BUTTON
========================================= */

.growth-service-card__arrow {
  position: absolute;
  right: 18px;
  bottom: 17px;

  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #9bd000;
  color: #111111;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.growth-service-card__arrow i {
  font-size: 17px;
  transform: rotate(180deg);
}

.growth-service-card__arrow:hover {
  transform: scale(1.1);
  background: #111111;
  color: #ffffff;
}

/* =========================================
   BOTTOM LINK
========================================= */

.growth-services__bottom {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.growth-services__explore {
  display: inline-flex;
  align-items: center;
  gap: 16px;

  font-size: 16px;
  font-weight: 600;
  color: #5f7800;

  text-decoration: none;

  transition: color 0.25s ease;
}

.growth-services__explore-arrow {
  font-size: 27px;
  line-height: 1;
  color: #9bd000;

  transition: transform 0.3s ease;
}

.growth-services__explore:hover {
  color: #111111;
}

.growth-services__explore:hover
.growth-services__explore-arrow {
  transform: translateX(6px);
}

/* =========================================
   ANIMATION
========================================= */

@keyframes growthCardFade {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1199px) {

  .growth-services {
    padding: 80px 0 65px;
  }

  .growth-services__title {
    font-size: 42px;
  }

  .growth-services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .growth-service-card {
    min-height: 430px;
  }

}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .growth-services__heading {
    margin-bottom: 35px;
  }

  .growth-services__title {
    font-size: 38px;
  }

  .growth-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

  .growth-services {
    padding: 65px 0 55px;
  }

  .growth-services__tagline {
    font-size: 13px;
  }

  .growth-services__title {
    font-size: 31px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .growth-services__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .growth-service-card {
    min-height: 410px;
    padding: 22px;
  }

  .growth-service-card__icon {
    height: 145px;
    font-size: 90px;
  }

  .growth-service-card__title {
    font-size: 21px;
  }

}