:root {
  --lol-primary: #1d9add;
  --lol-primary-dark: #0878b4;
  --lol-secondary: #a6a7a9;
  --lol-ink: #10212d;
  --lol-night: #071926;
  --lol-night-soft: #0b2638;
  --lol-muted: #f4f8fb;
  --lol-line: rgba(16, 33, 45, .12);
  --lol-radius: 24px;
  --lol-shadow: 0 24px 70px rgba(7, 25, 38, .12);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  color: var(--lol-ink);
  overflow-x: hidden;
}

a,
.uk-link {
  text-underline-offset: 3px;
}

:focus-visible {
  outline: 3px solid var(--lol-primary);
  outline-offset: 4px;
}

.tm-header .uk-navbar-container,
.tm-header-mobile .uk-navbar-container {
  background: rgba(7, 25, 38, .94);
  backdrop-filter: blur(16px);
}

.tm-header .uk-navbar-nav > li > a,
.tm-header-mobile .uk-navbar-toggle,
.tm-header .uk-logo,
.tm-header-mobile .uk-logo {
  color: #fff;
}

.tm-header .uk-navbar-nav > li > a:hover,
.tm-header .uk-navbar-nav > li.uk-active > a {
  color: var(--lol-primary);
}

.tm-header .uk-navbar-nav {
  width: 100%;
}

.tm-header .uk-navbar-nav > .lol-menu-brand {
  margin-right: auto;
}

.tm-header .uk-navbar-nav > .lol-menu-brand > a {
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .01em;
  text-transform: none;
}

.lol-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(29, 154, 221, .32), transparent 28rem),
    linear-gradient(135deg, var(--lol-night), var(--lol-night-soft));
}

.lol-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
  content: "";
}

.lol-hero::after {
  position: absolute;
  z-index: -1;
  width: 18rem;
  height: 18rem;
  right: -6rem;
  bottom: -8rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(29, 154, 221, .05), 0 0 0 7rem rgba(29, 154, 221, .03);
  content: "";
}

.lol-hero,
.lol-hero h1,
.lol-hero h2,
.lol-hero h3,
.lol-hero p,
.lol-hero .uk-text-lead {
  color: #fff;
}

.lol-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.lol-hero .uk-text-lead {
  max-width: 44rem;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.lol-kicker,
.lol-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--lol-primary);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lol-kicker::before,
.lol-eyebrow::before {
  width: 1.5rem;
  height: 2px;
  background: currentColor;
  content: "";
}

.lol-button .uk-button,
.uk-button.lol-button,
.lol-contact-form button {
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: none;
}

.uk-button-primary,
.lol-contact-form button {
  border-color: var(--lol-primary);
  background: var(--lol-primary);
}

.uk-button-primary:hover,
.lol-contact-form button:hover {
  border-color: var(--lol-primary-dark);
  background: var(--lol-primary-dark);
}

.lol-dark .uk-button-default,
.lol-hero .uk-button-default {
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
}

.lol-section-title h2 {
  max-width: 18ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -.045em;
}

.lol-card-grid .el-item,
.lol-card {
  height: 100%;
  box-sizing: border-box;
  padding: clamp(1.35rem, 3vw, 2.25rem);
  border: 1px solid var(--lol-line);
  border-radius: var(--lol-radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 25, 38, .05);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.lol-card-grid .el-item:hover,
.lol-card:hover {
  transform: translateY(-6px);
  border-color: rgba(29, 154, 221, .45);
  box-shadow: var(--lol-shadow);
}

.lol-card-grid .el-title,
.lol-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.lol-card-grid .el-meta {
  color: var(--lol-primary);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.lol-muted {
  background: var(--lol-muted);
}

.lol-dark {
  background:
    radial-gradient(circle at 12% 12%, rgba(29, 154, 221, .19), transparent 25rem),
    var(--lol-night);
}

.lol-dark,
.lol-dark h2,
.lol-dark h3,
.lol-dark p,
.lol-dark li,
.lol-dark .el-content {
  color: #fff;
}

.lol-dark .el-content,
.lol-dark p {
  color: rgba(255, 255, 255, .72);
}

.lol-dark .lol-card-grid .el-item {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  box-shadow: none;
}

.lol-dark .lol-card-grid .el-item:hover {
  border-color: rgba(29, 154, 221, .7);
  background: rgba(255, 255, 255, .09);
}

.lol-stat {
  border-left: 2px solid var(--lol-primary);
  padding-left: 1rem;
}

.lol-stat strong {
  display: block;
  margin-bottom: .25rem;
  color: var(--lol-ink);
  font-size: 1.1rem;
}

.lol-process .el-item {
  position: relative;
}

.lol-process .el-meta {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 50%;
  background: var(--lol-primary);
  color: #fff;
}

.lol-accordion .uk-accordion-title {
  padding: 1rem 0;
  color: var(--lol-ink);
  font-weight: 700;
}

.lol-contact-form {
  display: grid;
  gap: 1rem;
}

.lol-contact-form label {
  display: grid;
  gap: .4rem;
  color: var(--lol-ink);
  font-weight: 700;
}

.lol-contact-form input,
.lol-contact-form textarea,
.lol-contact-form select {
  width: 100%;
  min-height: 48px;
  box-sizing: border-box;
  padding: .75rem 1rem;
  border: 1px solid rgba(16, 33, 45, .2);
  border-radius: 12px;
  background: #fff;
  color: var(--lol-ink);
}

.lol-contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.lol-contact-form button {
  justify-self: start;
  border: 0;
  color: #fff;
  cursor: pointer;
}

.lol-notice {
  padding: 1rem 1.2rem;
  border-radius: 12px;
  background: #eaf7fd;
  color: var(--lol-ink);
}

.lol-breadcrumbs {
  border-bottom: 1px solid rgba(16, 33, 45, .08);
}

.lol-site-footer {
  position: relative;
  padding: 72px 24px 28px;
  overflow: hidden;
  background: var(--lol-night);
  color: rgba(255, 255, 255, .7);
}

.lol-site-footer h2,
.lol-site-footer h3,
.lol-site-footer a {
  color: #fff;
}

.lol-site-footer a:hover {
  color: var(--lol-primary);
}

.lol-site-footer__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.lol-site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
}

.lol-site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lol-site-footer li + li {
  margin-top: .55rem;
}

.lol-site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .84rem;
}

.lol-mobile-cta {
  display: none;
}

.lol-reveal {
  opacity: 1;
  transform: none;
}

.lol-reveal.is-visible {
  animation: lol-rise .55s ease both;
}

@keyframes lol-rise {
  from {
    opacity: .25;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1023px) {
  .lol-site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .lol-hero h1 {
    font-size: clamp(2.45rem, 14vw, 4rem);
  }

  .lol-site-footer {
    padding: 56px 20px 88px;
  }

  .lol-site-footer__grid {
    grid-template-columns: 1fr;
  }

  .lol-site-footer__bottom {
    display: block;
  }

  .lol-mobile-cta {
    position: fixed;
    z-index: 999;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 16px;
    background: rgba(7, 25, 38, .94);
    backdrop-filter: blur(16px);
    box-shadow: 0 14px 40px rgba(7, 25, 38, .25);
  }

  .lol-mobile-cta a {
    display: grid;
    min-height: 44px;
    place-items: center;
    border-radius: 10px;
    background: var(--lol-primary);
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
  }

  .lol-mobile-cta a:last-child {
    background: #fff;
    color: var(--lol-night);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .lol-reveal {
    opacity: 1;
    transform: none;
  }
}

/* Visual system v2 - dark technology direction with editorial stock imagery. */
body,
button,
input,
textarea,
select,
.uk-heading-small,
.uk-heading-medium,
.uk-heading-large,
.uk-heading-xlarge,
.uk-h1,
.uk-h2,
.uk-h3,
.uk-h4,
.uk-h5,
.uk-h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
}

body {
  background: #090d10;
  font-size: 16px;
}

.tm-header .uk-navbar-container,
.tm-header-mobile .uk-navbar-container {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(9, 13, 16, .88);
}

.tm-header .uk-navbar-nav > li > a {
  min-height: 72px;
  font-size: .69rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tm-header .uk-navbar-nav > .lol-menu-brand > a {
  color: var(--lol-primary);
  font-size: .82rem;
  letter-spacing: -.01em;
  text-transform: none;
}

.lol-home-hero,
.lol-hero-inner {
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: center;
}

.lol-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(29, 154, 221, .18), transparent 24rem),
    #090d10;
}

.lol-hero::before {
  opacity: .45;
  background-image: repeating-radial-gradient(
    ellipse at 100% 48%,
    transparent 0,
    transparent 20px,
    rgba(255, 255, 255, .11) 21px,
    transparent 22px
  );
  background-size: 58% 120%;
  background-position: right center;
  background-repeat: no-repeat;
  mask-image: none;
}

.lol-hero::after {
  display: none;
}

.lol-hero h1 {
  max-width: 12ch;
  margin: 1.2rem 0;
  font-size: clamp(3.2rem, 6.6vw, 7.8rem);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.072em;
}

.lol-hero-inner h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 5.5vw, 6.5rem);
}

.lol-hero .uk-text-lead {
  max-width: 38rem;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.65;
}

.lol-kicker,
.lol-eyebrow {
  color: #72d2ff;
  font-size: .68rem;
  letter-spacing: .2em;
}

.lol-hero-collage {
  position: relative;
  min-height: 680px;
}

.lol-hero-photo {
  position: absolute;
  inset: 5% 0 4% 8%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 32px 32px 160px 32px;
  box-shadow: 0 40px 110px rgba(0, 0, 0, .52);
}

.lol-hero-photo::after,
.lol-visual-shell::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, transparent 30%, rgba(29, 154, 221, .3));
  content: "";
  pointer-events: none;
}

.lol-hero-photo img,
.lol-visual-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.1);
}

.lol-floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: .3rem;
  max-width: 220px;
  padding: 1.2rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 18px;
  background: rgba(12, 18, 22, .82);
  color: rgba(255, 255, 255, .62);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .32);
}

.lol-floating-card strong {
  color: #fff;
  font-size: .92rem;
  line-height: 1.25;
  letter-spacing: -.01em;
  text-transform: none;
}

.lol-floating-card--top {
  top: 2%;
  right: -3%;
}

.lol-floating-card--bottom {
  bottom: 1%;
  left: 0;
}

.lol-code-fragment {
  position: absolute;
  z-index: 2;
  right: -2%;
  bottom: 18%;
  color: #72d2ff;
  font: 600 .72rem/1.2 Consolas, monospace;
  letter-spacing: .08em;
  transform: rotate(-90deg);
}

.lol-hero-proof {
  display: flex;
  gap: 1.8rem;
  margin-top: 2.5rem;
  color: rgba(255, 255, 255, .58);
  font-size: .72rem;
  text-transform: uppercase;
}

.lol-hero-proof strong {
  margin-right: .4rem;
  color: #72d2ff;
}

.lol-marquee-section {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, .08);
  background: #0d1317;
}

.lol-marquee {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: #fff;
  font-size: clamp(.72rem, 1vw, .9rem);
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.lol-marquee i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lol-primary);
  box-shadow: 0 0 18px var(--lol-primary);
}

.lol-muted,
.uk-section-muted.lol-muted {
  background: #eef3f6;
}

.lol-muted .lol-section-title h2,
.lol-feature-section .lol-section-title h2 {
  color: #0b1115;
}

.lol-section-title h2 {
  max-width: 15ch;
  font-weight: 780;
  line-height: .98;
  letter-spacing: -.06em;
}

.lol-card-grid {
  --lol-card-gap: 18px;
}

.lol-card-grid .el-item,
.lol-card {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(12, 23, 31, .1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(7, 25, 38, .08);
}

.lol-card-grid .el-item > *:not(.el-image),
.lol-card-grid .el-item > .el-title,
.lol-card-grid .el-item > .el-meta,
.lol-card-grid .el-item > .el-content,
.lol-card-grid .el-item > .uk-margin-top {
  margin-right: 1.35rem;
  margin-left: 1.35rem;
}

.lol-card-grid .el-item > .uk-margin-top:last-child {
  margin-bottom: 1.35rem;
}

.lol-card-grid .el-image {
  width: 100%;
  height: 210px;
  margin: 0 !important;
  overflow: hidden;
}

.lol-card-grid .el-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease, filter .55s ease;
}

.lol-card-grid .el-item:hover .el-image img {
  transform: scale(1.045);
  filter: saturate(1.15);
}

.lol-card-grid .el-title,
.lol-card h3 {
  font-weight: 760;
  letter-spacing: -.035em;
}

.lol-card-grid .el-meta {
  color: #087db9;
}

.lol-card-grid .uk-button {
  padding: 0;
  border: 0;
  color: #0b1115;
  background: none;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.lol-card-grid .uk-button::after {
  margin-left: .45rem;
  color: var(--lol-primary);
  content: "→";
}

.lol-feature-section {
  position: relative;
  background: #fff;
}

.lol-feature-image {
  min-height: 560px;
  overflow: hidden;
  border-radius: 24px 120px 24px 24px;
  box-shadow: 0 36px 85px rgba(7, 25, 38, .16);
}

.lol-feature-image img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}

.lol-number-grid .el-item {
  padding: 1.7rem;
  background: #0d1317;
}

.lol-number-grid .el-title {
  color: #fff;
}

.lol-number-grid .el-content {
  color: rgba(255, 255, 255, .64);
}

.lol-dark {
  position: relative;
  background:
    radial-gradient(circle at 95% 10%, rgba(29, 154, 221, .18), transparent 25rem),
    #090d10;
}

.lol-dark::before {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: repeating-linear-gradient(
    118deg,
    transparent,
    transparent 28px,
    rgba(255, 255, 255, .08) 29px,
    transparent 30px
  );
  content: "";
  pointer-events: none;
}

.lol-dark > .uk-container {
  position: relative;
}

.lol-dark .lol-card-grid .el-item {
  border-color: rgba(255, 255, 255, .1);
  background: #121b21;
}

.lol-dark .lol-card-grid .el-image {
  opacity: .78;
}

.lol-dark .lol-card-grid .el-meta,
.lol-dark .lol-card-grid .uk-button {
  color: #72d2ff;
}

.lol-visual-shell {
  position: relative;
  height: clamp(420px, 55vw, 650px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 30px 30px 140px 30px;
  box-shadow: 0 45px 100px rgba(0, 0, 0, .42);
}

.lol-visual-tag {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 24px;
  padding: .7rem .9rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(9, 13, 16, .76);
  color: #fff;
  font-size: .63rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.lol-visual-orbit {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(29, 154, 221, .1), 0 0 0 24px rgba(29, 154, 221, .05);
}

.lol-breadcrumbs {
  border-color: rgba(255, 255, 255, .07);
  background: #090d10;
}

.lol-breadcrumbs a,
.lol-breadcrumbs span {
  color: rgba(255, 255, 255, .55);
}

.lol-accordion .uk-accordion-title {
  color: #0b1115;
  font-size: 1rem;
}

.lol-site-footer {
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: #070a0c;
}

@media (max-width: 959px) {
  .lol-home-hero,
  .lol-hero-inner {
    min-height: auto;
  }

  .lol-hero-collage {
    min-height: 540px;
    margin-top: 2rem;
  }

  .lol-hero h1 {
    max-width: 14ch;
  }

  .lol-marquee {
    justify-content: flex-start;
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  .lol-hero {
    padding-top: 56px;
  }

  .lol-hero h1,
  .lol-hero-inner h1 {
    max-width: 12ch;
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .lol-hero-collage {
    min-height: 420px;
  }

  .lol-hero-photo {
    inset: 4% 0 8%;
    border-radius: 20px 20px 80px 20px;
  }

  .lol-floating-card {
    max-width: 155px;
    padding: .85rem;
  }

  .lol-floating-card--top {
    right: -2%;
  }

  .lol-code-fragment {
    display: none;
  }

  .lol-hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .6rem;
    font-size: .58rem;
  }

  .lol-hero-proof span {
    display: grid;
    gap: .15rem;
  }

  .lol-marquee {
    gap: .8rem;
    font-size: .62rem;
  }

  .lol-marquee span:nth-of-type(n+5),
  .lol-marquee i:nth-of-type(n+5) {
    display: none;
  }

  .lol-card-grid .el-image {
    height: 190px;
  }

  .lol-feature-image,
  .lol-feature-image img {
    min-height: 340px;
  }

  .lol-visual-shell {
    height: 390px;
    margin-top: 1.5rem;
    border-radius: 20px 20px 80px 20px;
  }
}

/* UI refinement: consistent spacing, controls and stable scroll rendering. */
.lol-reveal,
.lol-reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

.lol-home-hero {
  min-height: auto;
  padding-top: 52px !important;
  padding-bottom: 64px !important;
}

.lol-home-hero .uk-grid-margin {
  margin-top: 0 !important;
}

.lol-home-hero .lol-hero-collage {
  min-height: 590px;
}

.lol-hero-inner {
  min-height: auto;
  padding-top: 88px !important;
  padding-bottom: 88px !important;
}

.lol-breadcrumbs {
  min-height: 0;
  padding-top: 7px !important;
  padding-bottom: 7px !important;
}

.lol-breadcrumbs .uk-grid-margin {
  margin-top: 0 !important;
}

.lol-breadcrumbs .uk-breadcrumb {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.lol-breadcrumbs .uk-breadcrumb > * > * {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
}

.lol-card {
  padding: clamp(1.65rem, 3vw, 2.35rem) !important;
}

.lol-card > :first-child {
  margin-top: 0 !important;
}

.lol-card > :last-child {
  margin-bottom: 0 !important;
}

.lol-card-grid .el-item:not(:has(.el-image)) {
  padding: clamp(1.5rem, 2.5vw, 2rem);
}

.lol-card-grid .el-item:not(:has(.el-image)) > * {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.lol-card-grid .el-item:not(:has(.el-image)) > :first-child {
  margin-top: 0 !important;
}

.lol-card-grid .el-item:not(:has(.el-image)) > :last-child {
  margin-bottom: 0 !important;
}

.lol-card-grid .el-item:has(.el-image) {
  padding-bottom: 1.45rem;
}

.lol-card-grid .el-item:has(.el-image) .el-title {
  margin-top: 1.35rem !important;
}

.lol-card-grid .el-item:has(.el-image) > .uk-margin-top:last-child {
  margin-bottom: 0;
}

.lol-card-grid .el-title {
  line-height: 1.18;
}

.lol-card-grid .el-content {
  line-height: 1.65;
}

.lol-button .uk-grid {
  align-items: center;
}

.lol-button .el-item {
  display: flex;
}

.lol-button .uk-button,
.lol-contact-form button,
.lol-mobile-cta a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 48px;
  height: auto;
  padding: 12px 26px !important;
  line-height: 1.2 !important;
  text-align: center;
  white-space: normal;
}

.lol-card-grid .uk-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  box-sizing: border-box;
  padding: 8px 13px !important;
  border: 1px solid rgba(16, 33, 45, .12);
  border-radius: 5px;
  line-height: 1.15 !important;
  text-align: center;
}

.lol-dark .lol-card-grid .uk-button {
  border-color: rgba(114, 210, 255, .18);
  background: rgba(114, 210, 255, .08);
}

.lol-card-grid .uk-button::after {
  flex: 0 0 auto;
}

.lol-contact-form button {
  border-radius: 999px;
}

@media (min-width: 960px) {
  .lol-muted.uk-section-large,
  .lol-feature-section.uk-section-large,
  .lol-dark.uk-section-large,
  .lol-reveal.uk-section-large {
    padding-top: 88px;
    padding-bottom: 88px;
  }
}

@media (max-width: 959px) {
  .lol-home-hero,
  .lol-hero-inner {
    padding-top: 56px !important;
    padding-bottom: 64px !important;
  }
}

@media (max-width: 767px) {
  .lol-home-hero,
  .lol-hero-inner {
    padding-top: 40px !important;
    padding-bottom: 48px !important;
  }

  .lol-home-hero .lol-hero-collage {
    min-height: 410px;
  }

  .lol-breadcrumbs {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }

  .lol-card,
  .lol-card-grid .el-item:not(:has(.el-image)) {
    padding: 1.35rem !important;
  }

  .lol-button .uk-button,
  .lol-contact-form button {
    min-height: 46px;
    padding: 11px 20px !important;
  }
}
