/* Homepage solutions: adapted from the supplied Landor index-5 service composition. */
.falcon-home-services {
  position: relative;
  padding: 86px 0 90px;
  background:
    radial-gradient(circle at 10% 90%, rgba(var(--falcon-secondary-rgb), 0.16), transparent 28%),
    var(--tp-gray-color);
  scroll-margin-top: 130px;
  isolation: isolate;
}

.falcon-home-services__map {
  position: absolute;
  top: 105px;
  right: -60px;
  z-index: -1;
  width: min(66vw, 900px);
  height: auto;
  opacity: 0.075;
  pointer-events: none;
}

.falcon-home-services__heading {
  max-width: 880px;
  margin: 0 auto 44px;
}

.falcon-home-services__heading .tp-section-title {
  font-size: clamp(40px, 5.3vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.falcon-home-services__heading .tp-section-title span {
  color: var(--tp-theme-color);
  font-family: var(--tp-theme-font);
  font-style: normal;
  font-weight: 700;
}

.falcon-home-services__heading > p {
  max-width: 720px;
  margin: 18px auto 0;
  color: #46516a;
  font-size: 18px;
  line-height: 1.65;
}

.falcon-home-services__heading > p strong {
  color: var(--tp-theme-color);
  font-weight: 700;
}

.falcon-home-services__layout > [class*="col-"] {
  display: flex;
}

.falcon-home-services__spotlight {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: flex-start;
  min-height: 0;
  padding: 42px 38px 0;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(var(--falcon-secondary-rgb), 0.1), transparent 44%),
    var(--tp-theme-color);
  color: var(--tp-white-color);
  box-shadow: 0 22px 50px rgba(var(--falcon-primary-rgb), 0.16);
}

.falcon-home-services__spotlight::before,
.falcon-home-services__spotlight::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.falcon-home-services__spotlight::before {
  top: -88px;
  right: -72px;
  width: 240px;
  height: 240px;
}

.falcon-home-services__spotlight::after {
  top: -36px;
  right: -26px;
  width: 145px;
  height: 145px;
  background: rgba(var(--falcon-secondary-rgb), 0.08);
}

.falcon-home-services__spotlight-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--tp-secoundery-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.falcon-home-services__spotlight-label i {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.falcon-home-services__spotlight h3 {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0 0 20px;
  color: var(--tp-white-color);
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.falcon-home-services__spotlight > p {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.72;
}

.falcon-home-services__actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.falcon-home-services__actions .tp-btn {
  flex: 0 0 auto;
}

.falcon-home-services__text-link {
  color: var(--tp-white-color);
  font-size: 14px;
  font-weight: 600;
}

.falcon-home-services__text-link span {
  display: inline-block;
  margin-left: 4px;
  color: var(--tp-secoundery-color);
  transition: transform 0.25s ease;
}

.falcon-home-services__text-link:hover {
  color: var(--tp-secoundery-color);
}

.falcon-home-services__text-link:hover span {
  transform: translate(3px, -3px);
}

.falcon-home-services__facts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 32px -38px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.falcon-home-services__facts > div {
  min-width: 0;
  padding: 24px 16px 26px;
  text-align: center;
}

.falcon-home-services__facts > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.falcon-home-services__facts dt {
  margin-bottom: 5px;
  color: var(--tp-white-color);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.falcon-home-services__facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.falcon-home-services__list {
  display: grid;
  flex: 1 1 auto;
  gap: 14px;
}

.falcon-home-services .falcon-home-service {
  min-height: 154px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(var(--falcon-primary-rgb), 0.075);
  border-radius: 16px;
  background: var(--tp-white-color);
  box-shadow: 0 12px 34px rgba(var(--falcon-primary-rgb), 0.055);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.falcon-home-services .falcon-home-service__main {
  position: relative;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  min-height: 154px;
  padding: 20px 170px 20px 22px;
}

.falcon-home-services .falcon-home-service__icon {
  width: 66px;
  height: 66px;
  margin: 0;
  background: var(--tp-gray-color);
  color: var(--tp-theme-color);
  font-size: 23px;
}

.falcon-home-service__content {
  min-width: 0;
}

.falcon-home-services .falcon-home-service .tpserv__title {
  position: relative;
  z-index: 2;
  margin: 0 0 6px;
  color: var(--tp-theme-color);
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.falcon-home-services .falcon-home-service .tpserv__title a {
  color: inherit;
}

.falcon-home-service__content > p {
  position: relative;
  z-index: 2;
  max-width: 490px;
  margin: 0 0 10px;
  color: #596379;
  font-size: 13px;
  line-height: 1.52;
}

.falcon-home-service__highlights {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.falcon-home-service__highlights li {
  display: flex;
  align-items: flex-start;
  justify-self: start;
  min-width: 0;
  gap: 7px;
  color: #42506a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.falcon-home-service__highlights li::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  margin-top: 0.55em;
  border-radius: 50%;
  background: var(--tp-secoundery-color);
  box-shadow: 0 0 0 2px rgba(var(--falcon-secondary-rgb), 0.17);
}

.falcon-home-services .falcon-home-service__link {
  position: absolute;
  right: 17px;
  bottom: 16px;
  z-index: 3;
  padding: 0;
  opacity: 1;
  visibility: visible;
}

.falcon-home-services .falcon-home-service__link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1px solid rgba(var(--falcon-primary-rgb), 0.13);
  background: rgba(255, 255, 255, 0.84);
  color: var(--tp-theme-color);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.falcon-home-services .falcon-home-service__link a span {
  color: var(--tp-secoundery-color);
}

.falcon-home-services .falcon-home-service__shape {
  top: 0;
  right: 0;
  bottom: auto;
  z-index: 0;
  width: 170px;
  height: 100%;
  overflow: hidden;
  opacity: 0.92;
  pointer-events: none;
}

.falcon-home-services .falcon-home-service__shape::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, var(--tp-white-color) 0%, rgba(255, 255, 255, 0.12) 54%, transparent 100%);
}

.falcon-home-services .falcon-home-service__shape img {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.falcon-home-services .falcon-home-service:hover {
  border-color: rgba(var(--falcon-secondary-rgb), 0.55);
  background: var(--tp-white-color);
  box-shadow: 0 18px 40px rgba(var(--falcon-primary-rgb), 0.11);
  transform: translateY(-3px);
}

.falcon-home-services .falcon-home-service:hover .falcon-home-service__icon {
  background: var(--tp-theme-color);
  color: var(--tp-secoundery-color);
}

.falcon-home-services .falcon-home-service:hover .tpserv__title {
  color: var(--tp-theme-color);
}

.falcon-home-services .falcon-home-service:hover .falcon-home-service__shape img {
  transform: scale(1.06);
}

.falcon-home-services a:focus-visible {
  outline: 3px solid var(--tp-secoundery-color);
  outline-offset: 4px;
  border-radius: 4px;
}

@media (max-width: 1199.98px) {
  .falcon-home-services {
    padding: 76px 0 80px;
  }

  .falcon-home-services__spotlight {
    padding-right: 30px;
    padding-left: 30px;
  }

  .falcon-home-services__facts {
    margin-right: -30px;
    margin-left: -30px;
  }

  .falcon-home-services .falcon-home-service__main {
    padding-right: 132px;
  }

  .falcon-home-services .falcon-home-service__shape {
    width: 132px;
  }

  .falcon-home-service__content > p {
    font-size: 12px;
  }

  .falcon-home-services .falcon-home-service__link {
    right: 12px;
  }

  .falcon-home-services .falcon-home-service__link a {
    padding: 7px 9px;
    font-size: 10px;
  }
}

@media (max-width: 991.98px) {
  .falcon-home-services__layout > [class*="col-"] {
    display: block;
  }

  .falcon-home-services__list {
    padding-top: 0;
  }

  .falcon-home-services .falcon-home-service__main {
    padding-right: 190px;
  }

  .falcon-home-services .falcon-home-service__shape {
    width: 190px;
  }
}

@media (max-width: 767.98px) {
  .falcon-home-services {
    padding: 62px 0 66px;
    border-radius: 14px;
    scroll-margin-top: 108px;
  }

  .falcon-home-services__heading {
    margin-bottom: 32px;
  }

  .falcon-home-services__heading .tp-section-title {
    font-size: clamp(36px, 10vw, 54px);
  }

  .falcon-home-services__heading > p {
    margin-top: 14px;
    font-size: 16px;
  }

  .falcon-home-services__spotlight {
    min-height: 0;
    padding: 32px 28px 0;
  }

  .falcon-home-services__facts {
    margin-right: -28px;
    margin-left: -28px;
  }

  .falcon-home-services__list {
    gap: 12px;
  }

  /* Keep the artwork beside the introduction and the highlights full width. */
  .falcon-home-services .falcon-home-service {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(84px, 24vw, 112px);
    gap: 8px 12px;
    min-height: 0;
    padding: 14px;
  }

  .falcon-home-services .falcon-home-service__main,
  .falcon-home-service__content {
    display: contents;
  }

  .falcon-home-services .falcon-home-service__icon {
    grid-area: 1 / 1;
    align-self: center;
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .falcon-home-services .falcon-home-service .tpserv__title {
    grid-area: 1 / 1;
    align-self: center;
    margin: 0;
    padding-left: 40px;
    font-size: clamp(17px, 4.2vw, 19px);
    line-height: 1.2;
  }

  .falcon-home-service__content > p {
    grid-area: 2 / 1;
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
  }

  .falcon-home-service__highlights {
    grid-area: 3 / 1 / 4 / -1;
    gap: 4px 12px;
  }

  .falcon-home-service__highlights li {
    gap: 6px;
    font-size: 12px;
    line-height: 1.4;
  }

  .falcon-home-services .falcon-home-service__link {
    position: static;
    grid-area: 4 / 1 / 5 / -1;
    justify-self: start;
    margin-top: 2px;
  }

  .falcon-home-services .falcon-home-service__link a {
    min-height: 32px;
    padding: 7px 11px;
    font-size: 11px;
  }

  .falcon-home-services .falcon-home-service__shape {
    position: relative;
    grid-area: 1 / 2 / 3 / 3;
    align-self: start;
    display: block;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 100%;
    max-height: 126px;
    border-radius: 10px;
    opacity: 1;
  }

  .falcon-home-services .falcon-home-service__shape::before {
    display: none;
  }

  .falcon-home-services .falcon-home-service__shape img {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 574.98px) {
  .falcon-home-services {
    padding: 52px 0 56px;
  }

  .falcon-home-services__map {
    top: 28%;
    right: -48%;
    width: 150vw;
  }

  .falcon-home-services__heading .tp-section-title {
    font-size: clamp(34px, 11vw, 46px);
  }

  .falcon-home-services__heading > p {
    font-size: 15px;
    line-height: 1.55;
  }

  .falcon-home-services__spotlight {
    padding: 27px 22px 0;
  }

  .falcon-home-services__spotlight-label {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .falcon-home-services__spotlight h3 {
    font-size: clamp(30px, 9.5vw, 40px);
  }

  .falcon-home-services__spotlight > p {
    font-size: 14px;
    line-height: 1.62;
  }

  .falcon-home-services__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
  }

  .falcon-home-services__facts {
    margin-right: -22px;
    margin-left: -22px;
  }

  .falcon-home-services__facts > div {
    padding: 20px 7px 22px;
  }

  .falcon-home-services__facts dt {
    font-size: 22px;
  }

  .falcon-home-services__facts dd {
    font-size: 8px;
    letter-spacing: 0.015em;
  }

  .falcon-home-services .falcon-home-service {
    gap: 6px 10px;
    padding: 12px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .falcon-home-service__highlights {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
    grid-auto-flow: row;
  }
}

@media (prefers-reduced-motion: reduce) {
  .falcon-home-services .falcon-home-service,
  .falcon-home-services .falcon-home-service__icon,
  .falcon-home-services .falcon-home-service__shape img,
  .falcon-home-services__text-link span {
    transition: none;
  }
}
