@import url('section-cta.css');
@import url('banner.css');
@import url('why-choose-us.css');
@media (min-width: 1199px) {
  section {
    padding: 80px 0;
  }
}

section.global-banner {
  a {
    transition: .3s;
    text-decoration: none;
  }

  span.light,
  .breadcrumbs a {
    color: rgba(255, 255, 255, 0.6);
  }

  .breadcrumbs a:hover {
    color: #fff;
  }
}

.services-what-we-do {
  .services-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(5, 1fr);
  }

  .service-tile {
    text-decoration: none;
    border: 1px solid hsl(var(--border));
    border-radius: 8px;
    padding: 20px;
    transition: .25s ease;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    display: flex;
    flex-direction: column;
    min-height: 190px;

    .icon svg {
      color: hsl(var(--gold));
      width: 40px;
      height: 40px;
      margin: 0 !important;
    }

    &:hover {
      border-color: hsl(var(--gold));
      box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);

      .learn-more {
        gap: 12px;
      }
    }

    .learn-more {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: auto;
      font-weight: 600;

      svg {
        width: 16px;
      }
    }

  }
}

/* Difference section */
section.services-difference {
  svg {
    width: 40px;
    height: 40px;
    margin: 0 0 16px !important;
    color: hsl(var(--gold));
  }
}

/* Pills */
section.service-area-communities {
  .header_content {
    max-width: 768px;
  }

  .community-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 9999px;
    border: 1px solid hsl(var(--border));
    background: #fff;
    color: hsl(var(--foreground));
    text-decoration: none;
    transition: .2s ease;

    &:hover {
      border-color: hsl(var(--cta));
      color: hsl(var(--cta));
    }
  }

  .view-all-areas {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
  }
}

/* Responsive */
@media (max-width: 1199px) {
  .services-what-we-do {
    .services-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .services-difference {
    .difference-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
}

@media (max-width: 767px) {
  .services-what-we-do {
    .services-grid {
      grid-template-columns: 1fr;
    }
  }

  .services-difference {
    .difference-grid {
      grid-template-columns: 1fr;
    }
  }

}