@charset "UTF-8";
:root {
  --font-primary: "Inter Tight", sans-serif;
  --font-secondary: "Cal Sans", sans-serif;
  --font-tertiary: "DM Sans", sans-serif;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  font-weight: normal;
}

.font-primary {
  font-family: var(--font-primary);
}

.font-secondary {
  font-family: var(--font-secondary);
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.light {
  font-weight: 300;
}

.medium {
  font-weight: 500;
}

.normal {
  font-weight: 400;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

header .logo {
  max-width: 211px;
}
@media (width >= 64rem) {
  header .container {
    max-width: 80rem;
  }
}
@media (width >= 80rem) {
  header .container {
    max-width: 90rem;
  }
}
@media (width >= 96rem) {
  header .container {
    max-width: 106rem;
  }
}
header.sticky-header {
  background-color: #262121;
  transition: background-color 0.3s ease;
}
header.sticky-header .container {
  padding-top: 10px;
}
header.sticky-header .logo img {
  width: 170px;
}
header .desktop-nav .hovered > span {
  opacity: 1;
  width: 49px;
}

.row-footer {
  background: url("../../assets/images/footer-bg.svg") 2% 100% no-repeat #FF3675;
  background-size: cover;
}

/*
* HOME PAGE
*/
.row-hero {
  background: url("../../assets/images/page-home/bg-hero.svg") 2% 100% no-repeat #262121;
  background-size: cover;
}

.row-generate-leads .relative .relative:before {
  content: "";
  position: absolute;
  top: 4%;
  left: 37px;
  height: 82%;
  width: 2px;
  background-color: #00CEE2;
  z-index: -1;
}

.firm-wrapper {
  background: url("../../assets/images/page-home/firm-bg.svg") top center no-repeat;
  background-size: cover;
  padding: 20px 0;
}

.logo-slider .slick-track,
.logo-slider .slick-slide,
.logo-slider .slick-slide img {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  image-rendering: -webkit-optimize-contrast;
  /* Chrome/Safari crisp */
  image-rendering: crisp-edges;
  /* Firefox/others */
  shape-rendering: crispEdges;
  /* SVG-specific – keeps paths sharp */
  transform: translateZ(0);
  /* Force hardware layer without blur */
  backface-visibility: hidden;
  will-change: transform;
  /* Hint to browser for better rendering */
}

.logo-slider img {
  max-height: 80px !important;
  /* or 100px – test what fits your layout */
  height: 90px;
  width: auto;
  object-fit: contain;
}

.slick-slide a {
  display: flex;
  justify-content: center;
  justify-items: center;
  padding: 0 20px;
}

/*
* DIGITAL MARKETING PAGE
*/
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.animate-marquee {
  animation: marquee 50s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .animate-marquee {
    animation: none !important;
  }
}
.row-generate-leads-dm {
  background: url("../../assets/images/page-digital-marketing/leads-bg.png") top center no-repeat;
  background-size: cover;
  min-height: 40vh;
  background-color: rgb(11, 10, 10);
}

.outline-text {
  /* adjust as needed */
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: white;
  /* your purple fill – change to any color */
  text-shadow: -1px -1px 0 #b2b2b2, 1px -1px 0 #b2b2b2, -1px 1px 0 #b2b2b2, 1px 1px 0 #b2b2b2;
}

/*
* ESTATE AGENT WEBSITE TEMPLATE
*/
.row-hero-estate-agent {
  background: url("../../assets/images/page-estate-agent/bg-hero.png") 2% 100% no-repeat #262121;
  background-size: cover;
}

/*# sourceMappingURL=app.css.map */
