/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

.tlc-home {
  color: #17212b;
  font-family: Inter, Arial, sans-serif;
}

.tlc-hero {
  min-height: 82vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(9, 26, 43, .88), rgba(9, 26, 43, .48)),
    url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=1800&q=80') center/cover;
  color: #fff;
  padding: 88px 24px;
}

.tlc-wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.tlc-hero h1 {
  max-width: 780px;
  margin: 0 0 20px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: .96;
  letter-spacing: 0;
}

.tlc-hero p {
  max-width: 620px;
  margin: 0 0 30px;
  font-size: 19px;
  line-height: 1.65;
}

.tlc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tlc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.tlc-btn.primary {
  background: #22c55e;
  color: #07120b;
}

.tlc-btn.secondary {
  border: 1px solid rgba(255, 255, 255, .68);
  color: #fff;
}

.tlc-section {
  padding: 70px 24px;
}

.tlc-section.alt {
  background: #f4f7f9;
}

.tlc-kicker {
  margin-bottom: 10px;
  color: #0f766e;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

.tlc-section h2 {
  max-width: 720px;
  margin: 0 0 28px;
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: 0;
}

.tlc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tlc-card {
  border: 1px solid #dce4ea;
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  min-height: 172px;
}

.tlc-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.tlc-card p {
  margin: 0;
  color: #566575;
  line-height: 1.6;
}

.tlc-contact {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
}

.tlc-contact-box {
  background: #092235;
  color: #fff;
  border-radius: 8px;
  padding: 28px;
}

.tlc-contact-box p {
  margin: 8px 0;
}


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/

  .tlc-hero {
    min-height: 76vh;
    padding: 64px 18px;
  }

  .tlc-hero p {
    font-size: 16px;
  }

  .tlc-section {
    padding: 46px 18px;
  }

  .tlc-section h2 {
    font-size: 28px;
  }

  .tlc-grid,
  .tlc-contact {
    grid-template-columns: 1fr;
  }

  .tlc-card {
    min-height: auto;
  }

}
