.elementor-kit-4{--e-global-color-primary:#8D2645;--e-global-color-secondary:#30496B;--e-global-color-text:#494949;--e-global-color-accent:#B6B6B6;--e-global-color-e56623b:#D1A8B5;--e-global-color-9f5897b:#ACB6C4;--e-global-typography-primary-font-family:"Work Sans";--e-global-typography-primary-font-weight:500;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;font-family:"Work Sans", Sans-serif;font-weight:500;}.elementor-kit-4 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header{padding-inline-end:0px;padding-inline-start:0px;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* === Element Name: RRT Tile Categories v2 === */

/* Tile wrapper */
.rrt-tiles-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)); /* updated to 5 tiles */
  gap: 1.5rem;
  perspective: 1200px;
}

/* Clickable tile block */
.rrt-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  text-decoration: none;
  color: inherit;
}

/* The tilt card */
.rrt-tile-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;

  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

  transform-style: preserve-3d;
  transform: rotateX(16deg) rotateY(-16deg) translateY(4px);
  transform-origin: center center;

  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
  transition: transform 220ms ease-out, box-shadow 220ms ease-out;
}

/* Overlay */
.rrt-tile-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.10),
    rgba(0, 0, 0, 0.30)
  );
  pointer-events: none;
}

/* Label */
.rrt-tile-label {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  font-size: .98rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0 8px;
}

/* Hover */
.rrt-tile:hover .rrt-tile-inner {
  transform: rotateX(0deg) rotateY(0deg) translateY(0);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

/* Mobile */
@media (max-width: 1024px) {
  .rrt-tiles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .rrt-tiles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .rrt-tile-label {
    font-size: 0.95rem;
  }
}


/* === Element Name: Roadrunner Logo Animation === */

.rrt-logo-anim {
  max-width: 220px;  /* Adjust this to fit your header/logo area */
  display: block;
  margin: 0 auto;    /* centers the video in Elementor */
}

/* Responsive: shrink slightly on mobile */
@media (max-width: 600px) {
  .rrt-logo-anim {
    max-width: 180px;
  }
}

/* === Element Name: RRT Work Belt Hero v5 (Normalized Images) === */

/* Whole hero clickable */
.rrt-belt-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Outer frame */
.dds-belt {
  width: 100%;
  max-width: 1400px;
  height: 440px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

/* Rotated inner belt */
.dds-belt-inner {
  position: absolute;
  inset: -8%;
  transform: rotate(-3deg) scale(0.86);
  transform-origin: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 1.1rem;
}

/* Row wrapper */
.dds-belt-row {
  display: flex;
  align-items: center;
}

/* Moving track */
.dds-belt-track {
  display: flex;
  gap: 0.9rem;
  flex-wrap: nowrap;
  will-change: transform;
}

/* 🔒 NORMALIZED CARD WINDOW */
.dds-card {
  flex: 0 0 20%;
  aspect-ratio: 4 / 3;      /* 👈 standardizes ALL photos */
  background: #e8f4f4;
  padding: 3px;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.22);
}

/* Image fills the window */
.dds-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* 👈 invisible cropping */
  object-position: center 35%;
  display: block;
}

/* Animations */
.row-top .dds-belt-track {
  animation: dds-belt-left 22s linear infinite;
}

.row-bottom .dds-belt-track {
  animation: dds-belt-right 22s linear infinite;
}

@keyframes dds-belt-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes dds-belt-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Mobile */
@media (max-width: 600px) {
  .dds-belt {
    height: 360px;
  }

  .dds-card {
    flex: 0 0 26%;
    aspect-ratio: 4 / 3;
  }
}


/* === Element Name: RRT 30 Years Counter v2 === */

.rr-30years {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  transform: scale(0.935);
  transform-origin: center;
}

/* Number row */
.rr-30years-number {
  display: flex;
  align-items: baseline;
  justify-content: center;

  font-family: "Abolition", "Oswald", system-ui, -apple-system,
               BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  line-height: 1;

  min-width: 4.5ch;
}

/* Counting digits */
.rr-30years-digits {
  color: #d1a8b5;
  transition: color 0.25s ease;

  display: inline-block;
  min-width: 2.4ch;
  text-align: right;
}

/* The "+" sign */
.rr-30years-plus {
  margin-left: 0.08em;
  font-size: 0.8em;
  font-weight: 800;
  color: #8d2645;
  opacity: 0;
  transform: translateY(-0.08em);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

/* Subtext */
.rr-30years-sub {
  margin-top: 0.4rem;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: #30496b;
  line-height: 1.3;

  font-weight: 540;
  letter-spacing: 0.060em;
}


/* === Element Name: RRT 5000 Projects Counter v2 === */

.rr-5000 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* match 30+ scale feel */
  transform: scale(0.935);
  transform-origin: center;
}

/* Number row */
.rr-5000-number {
  display: flex;
  align-items: baseline;
  justify-content: center;

  font-family: "Abolition", "Oswald", system-ui, -apple-system,
               BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  line-height: 1;

  /* keep the whole block stable horizontally */
  min-width: 5.5ch; /* enough space for "5000+" centered */
}

/* Digits while counting */
.rr-5000-digits {
  color: #d1a8b5;              /* counting color */
  transition: color 0.25s ease;

  display: inline-block;
  min-width: 4ch;              /* width for "5000" */
  text-align: right;
}

/* The + sign – appears only at the end */
.rr-5000-plus {
  margin-left: 0.08em;
  font-size: 0.8em;
  font-weight: 800;
  color: #8d2645;
  opacity: 0;                   /* hidden until finished */
  transform: translateY(-0.08em);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

/* Subtext – matches the 30+ typography feel */
.rr-5000-sub {
  margin-top: 0.4rem;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: #30496b;
  line-height: 1.3;

  font-weight: 540;
  letter-spacing: 0.060em;
}

/* === Element Name: RRT Bowtie Image Trio v1 === */

.rrt-bowtie {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 0;
  overflow: visible;
}

/* Base card */
.rrt-bowtie-card {
  position: relative;
  display: block;
  flex: 1 1 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.rrt-bowtie-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CENTER — perfectly flat */
.rrt-bowtie-card.center {
  z-index: 2;
  transform: none;
}

/* LEFT — flare outward LEFT */
.rrt-bowtie-card.left {
  z-index: 1;
  transform-origin: right center;
  transform: skewY(-6deg) scaleX(1.08);
}

/* RIGHT — flare outward RIGHT */
.rrt-bowtie-card.right {
  z-index: 1;
  transform-origin: left center;
  transform: skewY(6deg) scaleX(1.08);
}

/* Hover polish (optional but nice) */
.rrt-bowtie-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.35);
}

/* Keep bowtie readable on smaller screens */
@media (max-width: 900px) {
  .rrt-bowtie {
    gap: 0.75rem;
  }

  .rrt-bowtie-card.left,
  .rrt-bowtie-card.right {
    transform: skewY(0deg) scaleX(1.02);
  }
}/* End custom CSS */