/* ==========================================================================
   ComfortKeepers Canada – Plain CSS utilities + theme tweaks
   ========================================================================== */

/* --- Base --- */
body { font-family: 'Raleway', sans-serif; font-weight: 600;color: #222; font-feature-settings: "lnum" on;
    /* vendor prefixes for older browsers */
    -webkit-font-feature-settings: "lnum" on;
    -moz-font-feature-settings: "lnum" on;
    -ms-font-feature-settings: "lnum" on;}
html { scroll-behavior: smooth; }
img { height: auto; max-width: 100%; }
.ck-container { max-width: 1200px; margin-inline: auto; padding-inline: 1rem; }
.container {
  max-width: 1400px !important;
}
.ck-shadow-card { box-shadow: 0 6px 24px rgba(0,0,0,.06); }
#menu-top-bar-nav a:hover {
  opacity: .8;
}
/* Buttons (inline brand colors; no :root needed) */
.btn-ck {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 50px;
  padding: .625rem 1.5rem;
  background: #06638D;   /* ck-blue-5 */
  color: #fff !important;
  font-size: 18px;
  text-decoration: none !important;
}
.btn-ck:hover { background: #2386B3; /* ck-blue-6 */ }
.btn-ck:hover a {
  color: white !important;
}
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 50px;
  padding: .625rem 1.5rem;
  background: #db3412;   /* ck-blue-5 */
  color: #fff !important;
  font-size: 18px;
  text-decoration: none !important;
}
.btn-red:hover { background: #bb280a; /* ck-blue-6 */ }
.btn-red:hover a {
  color: white !important;
}

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 50px;
  padding: .625rem 1.5rem;
  background: #bed52f;   /* ck-blue-5 */
  color: #222 !important;
  font-size: 18px;
  text-decoration: none !important;
}
.btn-green:hover { background: #a7bc1b; /* ck-blue-6 */ }
.btn-green:hover a {
  color: #222 !important;
}
.btn-ck-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 50px;
  padding: .625rem 1.5rem;
  background: #fff;   /* ck-blue-5 */
  color: #055B81 !important;
  font-size: 18px;
  border:2px solid #055B81;
  text-decoration: none !important;
}
.btn-ck-outline:hover { background: #055B81; color:#fff !important; /* ck-blue-6 */ }
.btn-ck-outline:hover a {
  color: #fff !important;
}

.btn-ck-lightblue {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: .75rem;
  padding: .625rem 1.5rem;
  background: #2386B3;   /* ck-blue-5 */
  color: #fff;
  font-size: 18px;
}
.btn-ck-lightblue:hover { background: white;color: #055B81;}

.videoWrapper iframe {
  -webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
overflow: hidden;
}
/* Responsive iframes in content areas */
.prose-ck iframe {
    width: 100% !important;
    aspect-ratio: 16 / 9;
    height: auto !important;
    -webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================================================
   ComfortKeepers Canada - Brand Color Utilities (Plain CSS)
   Includes: bg-, text-, border-, and gradient helpers
   ========================================================================== */

/* ----- ck-red ----- */
.bg-ck-red-1 { background-color: #db3412; }
.bg-ck-red-2 { background-color: #f26532; }
.text-ck-red-1 { color: #db3412; }
.text-ck-red-2 { color: #f26532; }
.border-ck-red-1 { border-color: #db3412; }
.border-ck-red-2 { border-color: #f26532; }

/* ----- ck-orange ----- */
.bg-ck-orange-1 { background-color: #fcb034; }
.text-ck-orange-1 { color: #fcb034; }
.border-ck-orange-1 { border-color: #fcb034; }

/* ----- ck-yellow ----- */
.bg-ck-yellow-1 { background-color: #FCB61A; }
.bg-ck-yellow-2 { background-color: #FDB71B; }
.bg-ck-yellow-3 { background-color: #F0CE96; }
.bg-ck-yellow-4 { background-color: #E2DCCB; }
.text-ck-yellow-1 { color: #FCB61A; }
.text-ck-yellow-2 { color: #FDB71B; }
.text-ck-yellow-3 { color: #F0CE96; }
.text-ck-yellow-4 { color: #E2DCCB; }
.border-ck-yellow-1 { border-color: #FCB61A; }
.border-ck-yellow-2 { border-color: #FDB71B; }
.border-ck-yellow-3 { border-color: #F0CE96; }
.border-ck-yellow-4 { border-color: #E2DCCB; }

/* ----- ck-green ----- */
.bg-ck-green-1 { background-color: #bed52f; }
.text-ck-green-1 { color: #bed52f; }
.border-ck-green-1 { border-color: #bed52f; }

/* ----- ck-blue ----- */
.bg-ck-blue-1 { background-color: #4eadd3; }
.bg-ck-blue-2 { background-color: #06638D; }
.bg-ck-blue-3 { background-color: #2085b2; }
.bg-ck-blue-4 { background-color: #38b4e7; }
.bg-ck-blue-5 { background-color: #055B81; }
.bg-ck-blue-6 { background-color: #2386B3; }
.bg-ck-blue-7 { background-color: #48acd3; }
.bg-ck-blue-8 { background-color: #1ca4fc; }
.bg-ck-blue-9 { background-color: #D3E7F0; }
.bg-ck-blue-10 { background-color: #E5F3F9; }
.bg-ck-blue-11 { background-color: #51A3C2; }
.bg-ck-blue-12 { background-color: #E7F4F9;}

.text-ck-blue-1 { color: #4eadd3; }
.text-ck-blue-2 { color: #06638D; }
.text-ck-blue-3 { color: #2085b2; }
.text-ck-blue-4 { color: #38b4e7; }
.text-ck-blue-5 { color: #055B81; }
.text-ck-blue-6 { color: #2386B3; }
.text-ck-blue-7 { color: #48acd3; }
.text-ck-blue-8 { color: #1ca4fc; }
.text-ck-blue-9 { color: #D3E7F0; }
.text-ck-blue-10 { color: #E5F3F9; }
.text-ck-blue-11 { color: #51A3C2; }

.border-ck-blue-1 { border-color: #4eadd3; }
.border-ck-blue-2 { border-color: #06638D; }
.border-ck-blue-3 { border-color: #2085b2; }
.border-ck-blue-4 { border-color: #38b4e7; }
.border-ck-blue-5 { border-color: #055B81; }

.ring-ck-blue-5 { outline-color: #38b4e7; }
.ring-ck-blue-5:focus {     outline-color: #38b4e7 !important;
    border-color: #38b4e7 !important;
    --tw-ring-color: #38b4e7;
    /* border: 2px solid; */
    border: 0px;
    outline-offset: 0px !important;
    box-shadow: none !important;
    outline-width: 3px !important;}

/* ----- ck-purple ----- */
.bg-ck-purple-1 { background-color: #9d85be; }
.text-ck-purple-1 { color: #9d85be; }
.border-ck-purple-1 { border-color: #9d85be; }

/* ----- ck-gray ----- */
.bg-ck-gray-1 { background-color: #f3f1ef; }
.bg-ck-gray-2 { background-color: #dcd9d2; }
.bg-ck-gray-3 { background-color: #444444; }
.bg-ck-gray-4 { background-color: #575757; }
.bg-ck-gray-5 { background-color: #F7F7F7; }
.bg-ck-gray-6 { background-color: #ECECEC; }
.bg-ck-gray-7 { background-color: #E5E5E5; }
.bg-ck-gray-8 { background-color: #444444; }
.bg-ck-gray-9 { background-color: #222222; }
.bg-ck-gray-10 { background-color: #E9E9E9; }

.text-ck-gray-1 { color: #f3f1ef; }
.text-ck-gray-2 { color: #dcd9d2; }
.text-ck-gray-3 { color: #444444; }
.text-ck-gray-4 { color: #575757; }
.text-ck-gray-5 { color: #F7F7F7; }
.text-ck-gray-6 { color: #ECECEC; }
.text-ck-gray-7 { color: #E5E5E5; }
.text-ck-gray-8 { color: #444444; }
.text-ck-gray-9 { color: #222222; }
.text-ck-gray-10 { color: #E9E9E9; }

.border-ck-gray-1 { border-color: #f3f1ef; }
.border-ck-gray-2 { border-color: #dcd9d2; }
.border-ck-gray-3 { border-color: #444444; }
.border-ck-gray-4 { border-color: #575757; }
.border-ck-gray-5 { border-color: #F7F7F7; }
.border-ck-gray-6 { border-color: #ECECEC; }
.border-ck-gray-7 { border-color: #E5E5E5; }
.border-ck-gray-8 { border-color: #444444; }
.border-ck-gray-9 { border-color: #222222; }
.border-ck-gray-10 { border-color: #E9E9E9; }

/* ----- ck-brown ----- */
.bg-ck-brown-1 { background-color: #3D3935; }
.text-ck-brown-1 { color: #3D3935; }
.border-ck-brown-1 { border-color: #3D3935; }

/* ----- Gradient Utility (ck-green-1 → ck-blue-1) ----- */
.bg-gradient-ck {
  background: linear-gradient(135deg, #4eadd3 0%, #bed52f 100%);
}

.primary-nav a:hover {
  color: #06638D;
}
img.size-full {
  width: auto !important;
}
.ck-contact-form {
      padding: 20px 40px 60px 40px;
    background: #E7F4F9;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 60px;
        max-width: 820px;
}
.ck-contact-form input[type="text"],
.ck-contact-form input[type="email"],
.ck-contact-form input[type="url"],
.ck-contact-form input[type="tel"] {
  -webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
border: 0;
width: 100%;
background: #fff;
margin-bottom: 15px;
}
.ck-contact-form textarea {
  height: 90px;
    width: 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 0;
}
.ck-contact-form select {
  -webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
border: 0;
width: 100%;
background: #fff;
margin-bottom: 15px;
}

.prose-ck iframe,
.videoWrapper iframe {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden; /* Prevents scrollbars */
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ck-contact-capcha p {
  display: flex;
    width: 340px;
    gap: 10px;
    align-items: center;
}
.ck-contact-form span.required {
  position: relative;
  top: 8px;
  font-size: 30px;
  display: inline-block;
}

.prose-ck .ck-contact-form p {
  margin-bottom:0;
}

.cta-bar_blue {
  background-color:  #06638D;
  color: #fff !important;
}
.cta-bar_green {
  background-color:  #bed52f;
  color: #222 !important;
}
.cta-bar_purple {
  background-color:  #9d85be;
  color: #222 !important;
}
.cta-bar_blue_green_gradient {
  background: linear-gradient(135deg, #4eadd3 0%, #bed52f 100%);
  color: #fff !important;
}
.cta-bar_blue_green_gradient h2,
.cta-bar_blue_green_gradient h3,
.cta-bar_blue_green_gradient h4,
.cta-bar_blue_green_gradient p {
  color: #fff !important;
  text-shadow: 2px 2px 5px rgba(0,0,0, 0.2);
}
.cta-bar_purple_blue_gradient h2,
.cta-bar_purple_blue_gradient h3,
.cta-bar_purple_blue_gradient h4,
.cta-bar_purple_blue_gradient p {
  color: #fff !important;
  text-shadow: 2px 2px 5px rgba(0,0,0, 0.2);
}
.cta-bar_purple h2,
.cta-bar_purple h3,
.cta-bar_purple h4,
.cta-bar_purple p {
  color: #fff !important;
  text-shadow: 2px 2px 5px rgba(0,0,0, 0.2);
}
.cta-bar_blue h2,
.cta-bar_blue h3,
.cta-bar_blue h4,
.cta-bar_blue p {
  color: #fff !important;
  text-shadow: 2px 2px 5px rgba(0,0,0, 0.2);
}

.cta-bar_purple_blue_gradient {
  background: linear-gradient(135deg, #4eadd3 0%, #9d85be 100%);
  color: #fff !important;
}


/* ==========================================================================
   Nav tweaks (unchanged from your file)
   ========================================================================== */
.primary-nav > li > a {
  display: inline-block;
}


/* Focus visibility (optional) */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #055B81; /* ck-blue-5 */
  outline-offset: 2px;
}
/* Ensure the overlay sits above page content and looks elevated */
#megaPanel {
  /* Tailwind covers most of this; these are just safety nets */
  z-index: 50;              /* above sticky header content (z-40) */
  box-shadow: 0 24px 48px rgba(2, 8, 23, 0.14); /* stronger shadow */
}
/* ===============================
   Logo Hover Swap
   =============================== */
header a.group {
    position: relative;
    display: inline-flex;
    align-items: center;
    top: 32px;
    z-index: 60;
    width: 128px;
}

header a.group img {
  display: block;
}

header a.group img + img {
  position: absolute;
  left: 0;
  top: 0;
}

/* ===============================
   Canada Flag Icon for Top Nav
   =============================== */
li.ca-flag {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

li.ca-flag a::after {
  content: "";
  display: inline-block;
  width: 30px;
    height: 17px;
  background-image: url("../images/ca-flag.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 2px;
  margin-left: 8px;
  transform: translateY(3px);
}

/* Footer menu layout + links */
.footer-menu { list-style: none; margin: 0; padding: 0; }
.footer-menu li a {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  padding: 0;
}
.footer-menu li a:hover { text-decoration: underline; }

/* Footer logo hover swap (position the second img) */
footer a.group { position: relative; display: inline-flex; align-items: center; }
footer a.group img + img { position: absolute; left: 0; top: 0; }

/* ===============================
   Social Links (Footer) - White Icons / Blue Circles
   =============================== */
.social-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-links li {
  display: inline-flex;
}

.social-links .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background-color: #055B81; /* ComfortKeepers Blue */
  transition: all 0.3s ease;
  overflow: hidden;
}

.social-links .social-icon:hover {
  background-color: #2386B3; /* Lighter hover blue */
  transform: translateY(-2px);
}

.social-links .social-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* make icons pure white */
  transition: transform 0.3s ease;
}

.social-links .social-icon:hover img {
  transform: scale(1.1); /* gentle grow on hover */
}

.flip-flop {
   
      margin-bottom: 90px;
}

/* =======================================
   Awards & Recognitions - Continuous Scroll
   ======================================= */
.awards-section {
  position: relative;
  width: 100%;
}

.awards-track-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  padding: 40px 0;
}

.awards-track {
  display: flex;
  align-items: center;
  gap: 50px;
  animation: scrollAwards 30s linear infinite;
}

.award-badge {
  max-width: 115px;
  max-height: 105px;
  height: auto;
  object-fit: contain;
  width: auto;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.award-badge:hover {
  transform: scale(1.05);
}

/* Continuous scroll animation */
@keyframes scrollAwards {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


/* ==========================================
   Mega Menu Slide Animation
========================================== */
#megaPanel {
  transition: height .35s ease, opacity .25s ease;
  opacity: 1;
}
#megaPanel.hidden {
  opacity: 0;
}

/* Left column image refinement */
#megaLeft img {
  width: 100%;
  height: auto;
  border-radius: .5rem;
}

/* Ensure columns behave well */
.mega-inner > div {
  min-width: 0;
}

/* HAMBURGER → X ANIMATION -------------------------- */

.burger-line {
  position: absolute;
  width: 22px;
  height: 2px;
  background: #055B81;
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    top 0.25s ease;
}

/* default line positions */
.burger-line.top    { top: 10px; }
.burger-line.middle { top: 18px; }
.burger-line.bottom { top: 26px; }

/* ACTIVE (X) STATE – added when menu opens */
.burger.active .burger-line.top {
  transform: rotate(45deg);
  top: 18px;
}

.burger.active .burger-line.middle {
  opacity: 0;
}

.burger.active .burger-line.bottom {
  transform: rotate(-45deg);
  top: 18px;
}


/* ============================================
   CUSTOM TYPOGRAPHY WRAPPER — .prose-ck
   Applies styles ONLY to child content
   ============================================ */

.prose-ck {
  /* Base text */
  font-size: 1rem;
  line-height: 1.7;
  color: #222;
}

/* ===========================
   HEADINGS
   =========================== */
.prose-ck h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1.2em 0 0.5em;
  color: #055B81; /* ck-blue-5 */
}

.prose-ck h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 1.2em 0 0.5em;
  color: #222;
      line-height: 40px;
  margin-top: 0;
}

.prose-ck h2.wp-block-heading {
  margin-top: 30px;
}

.prose-ck h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1em 0 0.5em;
  color: #055B81;
      margin-top: 30px;
    margin-bottom: 5px;
        line-height: 32px;
}

.prose-ck h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1em 0 0.5em;
  color: #055B81;
}

/* ===========================
   PARAGRAPHS
   =========================== */
.prose-ck p {
  margin-bottom: 1rem;
  color: #444;
  font-weight: 500;
}

/* Remove last paragraph margin */
.prose-ck p:last-child {
  margin-bottom: 0;
}

/* ===========================
   LINKS
   =========================== */
.prose-ck a {
  color: #06638D; /* ck-blue-2 */
  text-decoration: underline;
  transition: color .2s ease;
}

.prose-ck a:hover {
  color: #055B81; /* ck-blue-5 */
}
.prose-ck a.no-underline {
  text-decoration: none;
}

.prose-ck-territories a {
  color: #444;
  text-decoration: none;
}
.prose-ck-territories a:hover {
  color: #055B81;
  text-decoration: underline;
}
.prose-ck.prose-ck-territories ul {
  margin: 0;
  padding: 0;
  padding-bottom: 22px;
}
.prose-ck-territories ul li {
  list-style: none;
  margin-bottom: 2px;
}
.prose-ck-territories h3 {
  margin-top: 0;
}

/* ===========================
   IMAGES
   =========================== */
.prose-ck img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: auto;
}
.prose-ck img.alignleft {
  float: left;
  margin: 15px;
}
.prose-ck img.alignright {
  float: right;
  margin: 15px;
}
.prose-ck img.rounded-none {
  border-radius: 0;
}

/* ===========================
   LISTS
   =========================== */
.prose-ck ul,
.prose-ck ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.prose-ck ul {
  list-style: disc;
}

.prose-ck ol {
  list-style: decimal;
}

.prose-ck li {
  margin-bottom: 0.4rem;
}

/* ===========================
   BLOCKQUOTE
   =========================== */
.prose-ck blockquote {
  border-left: 5px solid #2085b2;
  padding-left: 1rem;
  padding-right: 1rem;
  background: #e4f4fa;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #222;
  font-style: italic;
  margin: 1.5rem 0;
  -webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}

blockquote {
   border-left: 5px solid #2085b2;
  padding-left: 1rem;
  padding-right: 1rem;
  background: #e4f4fa;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #222;
  font-style: italic;
  margin: 1.5rem 0;
  -webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.prose-ck blockquote h4 {
  margin-top: 0 !important;
}

/* ===========================
   TABLES
   =========================== */
.prose-ck table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  -webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}

.prose-ck th,
.prose-ck td {
  padding: 10px 15px;
}

.prose-ck tr {
  background: #fff;
  border-bottom: 1px solid gainsboro
}


.prose-ck th {
  background: #F3F7FA;
  font-weight: 600;
}
.prose-ck thead tr {
  border: 0;
}

/* ===========================
   HR
   =========================== */
.prose-ck hr {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 2rem 0;
}

.hero_subpage {
  position: relative;
  z-index: 2;
  height: 100%;
  background-size: cover;
  background-position: center right;
  background-color: #eee;
  min-height: 370px;
}

.hero_subpage-bg-noimg {
    width: 100%;
    clip-path: none;
}
.hero_subpage-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.hero_subpage-content {
  max-width: 50%;
}

/* ===========================
   FLOATING MAPLE LEAVES
   =========================== */

.floating-leaf {
  width: 200px;
  opacity: 0.55;
  transform: translateY(120%);
  animation: leafFloat linear infinite;
}

/* LEAF VARIATIONS (positions + speeds) */
.leaf-1 {
  right: 20px;
  top: 0%;
  animation-duration: 16s;
}

.leaf-2 {
  right: 300px;
  top: 25%;
  width: 150px;
  animation-duration: 22s;
  opacity: 0.45;
}

.leaf-3 {
  right: 120px;
  top: 70%;
  width: 100px;
  animation-duration: 19s;
  opacity: 0.35;
}
.breadcrumb {


  bottom: 20px;
}
.breadcrumb-links a {
    text-decoration: underline;
}

.accordion-title {
  border-radius: 50px;
    background: #48ACD3;
    color: #fff;
    /* display: block; */
    width: 100%;
    display: flex;
    padding: 11px 20px;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 24px;
}
@media only screen and (max-width: 800px) {
  .accordion-title {
    border-radius: 15px;
  }
}
.accordion-title h3 {
  font-size: 20px;
  color: #fff;
  margin: 0 0 8px 0;
}
.accordion_content {
  height: auto;
    transition: height 0.25s;
    padding: 20px 30px;
    margin-bottom: 30px;
}

/* FLOAT UP + RESTART ANIMATION */
/* FLOAT UP + FADE IN/OUT + RESTART */
@keyframes leafFloat {
  0% {
    transform: translateY(120%) scale(1) rotate(0deg);
    opacity: 0;
  }
  15% {
    opacity: 0.6; /* fully faded in */
  }
  50% {
    transform: translateY(20%) scale(1.05) rotate(6deg);
    opacity: 0.55;
  }
  85% {
    opacity: 0.5; /* start fading */
  }
  100% {
    transform: translateY(-120%) scale(1) rotate(-4deg);
    opacity: 0;
  }
}


@media only screen and (max-width: 1023px) {
  .breadcrumb {
    position: relative;
    left: 0;
    bottom: 20px;
  }
}



/* Dropdown indicator arrow for DESKTOP parent items (≥768px) */
@media (min-width: 768px) {
  .primary-nav > li.menu-item-has-children > a {
    position: relative;
    padding-right: .8rem; /* room for arrow */
  }
  .primary-nav > li.menu-item-has-children > a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 0.4rem;
    height: 0.4rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-40%) rotate(45deg);
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.7;
  }
  /* Rotate arrow when active (JS adds .text-brand-700 to the active LI) */
  .primary-nav > li.text-brand-700 > a::after {
    transform: translateY(-14%) rotate(-135deg);
    opacity: 1;
  }
  .primary-nav .sub-menu { display: none !important; }
    
}


/* Mobile (<768px): collapsed accordion behavior by default */
@media (max-width: 767.98px) {
  .mobile-nav .menu-item-has-children > a {
    display: block;
    font-weight: 600;
    position: relative;
    padding-right: 1.25rem;
  }
  .mobile-nav .menu-item-has-children > a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 0.45rem;
    height: 0.45rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
    transition: transform .2s ease, opacity .2s ease;
    opacity: .75;
  }
  .mobile-nav .sub-menu {
    display: none;
    margin-top: .25rem;
    padding-left: 1rem;
  }
  .mobile-nav li.is-open > .sub-menu { display: block; }
  .mobile-nav li.is-open > a::after {
    transform: translateY(-50%) rotate(-135deg);
    opacity: 1;
  }
  .mobile-nav .sub-menu a {
    font-weight: 400;
    color: #334155; /* slate-700-ish */
    padding: .3rem 0;
    display: block;
  }
  header a.group {
      position: relative;
      display: inline-flex;
      align-items: center;
      top: 18px;
        z-index: 60;
        width: 106px;
  }
  .hero_subpage-bg {
    width: 100%;
    padding: 100px 70px 100px 50px;

    clip-path: none;
  }
  .hero_subpage-content {
    max-width: 100%;
  }
}

.asl-cont .select7-container {
  display: none !important;
}
.asl-sort-list .row {
      justify-content: center;
}
.asl-sort-list .row .col-md-6 {
  display: none;
}
.asl-cont .asl-list-cont li.sl-item {
  width: 30.3333%;
  margin-bottom: 0 !important;
  padding: 0 !important;
  overflow: hidden;
}
.asl-cont ul.sl-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.asl-cont .asl-list-cont li.sl-item .sl-item-top {
      flex-direction: column;
          align-items: center;
}
.asl-cont .asl-list-cont li.sl-item .sl-item-top .sl-item-top-left {
      flex-direction: column;
}
.asl-cont.asl-bg-3 .asl-list-cont li.sl-item .sl-item-top .sl-item-top-left .asl-item-box {
  padding: 15px !important;
}
.asl-cont .asl-list-cont li.sl-item .sl-item-top .sl-item-top-left .asl-logo-box {
  max-width: 100% !important;
}
.addr-loc ul li {
  color: #222 !important;
  font-size: 16px;
}
.addr-loc ul li:first-of-type {
  margin-bottom: 15px !important;
}
.sl-pagination {
  margin-top: 40px !important;
}

.asl-cont .asl-list-cont li.sl-item .sl-item-top .sl-item-top-left .asl-logo-box,
.asl-cont .asl-list-cont li.sl-item .sl-item-top .sl-item-top-left .asl-logo-box img {
  -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
}
.asl-cont .asl-list-cont li.sl-item .sl-item-top .sl-item-top-left .asl-logo-box img {
      width: 100% !important;
          object-fit: cover;
}
.sl-item .action-icons {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
        margin-bottom: 20px;
        gap: 7px;
}

.sl-item .action-icons li {
    margin: 0;
    padding: 0;
}

.sl-item .action-icons li a {
    display: inline-flex;
    text-decoration: none;
}

.sl-item .action-icons .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, opacity .2s ease;
    color: #fff;
}

.sl-item .action-icons li a:hover .icon-circle {
    transform: scale(1.05);
    opacity: 0.95;
}

.sl-item .action-icons svg {
    width: 24px;
    height: 22px;
    display: block;
    fill: currentColor;
}

.sl-item .action-icons .website .icon-circle {
    background: #005f8f;
}

.sl-item .action-icons .phone .icon-circle {
    background: #2d97c8;
}

.sl-item .action-icons .email .icon-circle {
    background: #9b86c8;
}

.sl-item .action-icons .jobs .icon-circle {
    background: #b7d11b;
}
.asl-logo-box a img {
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.asl-logo-box a:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}
.asl-cont.asl-bg-3 .asl-search-cont .asl-search-inner .form-group .form-control {
    background-color: #fff;
    border: 0  !important;
    color: #495057;
    -webkit-border-radius: 50px !important;
    -moz-border-radius: 50px !important;
    border-radius: 50px !important;
    font-size: 19px;
    height: 60px;
    padding: 0 26px;
    -webkit-box-shadow: 0px 0px 9px 0px rgb(83 179 222 / 27%);
    -moz-box-shadow: 0px 0px 9px 0px rgb(83 179 222 / 27%);
    box-shadow: 0px 0px 9px 0px rgb(83 179 222 / 27%);
    font-weight: 500;
    margin-bottom: 60px;
}
.asl-cont .asl-search-cont .asl-search-inner .form-group .sl-geo-btn {
  height: 45px  !important;
    width: 45px  !important;
    right: 10px  !important;
    border-radius: 23px !important;
}
.asl-cont .asl-search-cont .asl-sort-list .asl-sort-right .form-control {
      border-radius: 20.25rem !important;
    height: 42px !important;
}
.gm-err-autocomplete {
      background-position: 8px 22px !important;
}
.asl-sort-list {
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .asl-cont .asl-list-cont li.sl-item {
    width: 100%;
  }
}
@media (max-width: 575px) {
    .asl-panel-inner .asl-cont .asl-list-cont li.sl-item {
        padding: 0 !important;
    }
}
.asl-cont .asl-clear-btn {
  right: 65px !important;
}
.asl-cont ul li.sl-no-item {
  width: 100% !important;
}
.ck-locator-search-wrap .container {
  padding: 0;
}
.ck-locator-search-wrap .asl-search .asl-search-cont {
 padding: 0;
 background: transparent;
 margin-top: 15px;
}
.ck-locator-search-wrap .asl-search .asl-search-cont h3 {
  display: none;
}
.ck-locator-search-wrap .asl-search-widget {
    background: white;
    -webkit-border-radius: 65px !important;
    -moz-border-radius: 65px !important;
    border-radius: 65px !important;
    border: 3px solid white;
    max-width: 600px !important;
}

.ck-locator-search-wrap .asl-cont.asl-search .btn-primary{
  background: #07638d;
    -webkit-border-radius: 65px !important;
    -moz-border-radius: 65px !important;
    border-radius: 65px !important;
    font-weight: 600;
    font-size: 18px;
}
.ck-locator-search-wrap .asl-search-cntrl {
background: white;
    -webkit-border-radius: 65px !important;
    -moz-border-radius: 65px !important;
    border-radius: 65px !important;
    border: 0 !important;
    box-shadow: none;
    font-size: 18px !important;
    font-weight: 500 !important;
}
.ck-locator-search-wrap .asl-cont .col-md-10 {
  max-width: 70% !important;
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 768px) {
  .ck-locator-search-wrap .asl-cont .row {
        flex-wrap: nowrap;
  }
  .ck-locator-search-wrap .asl-cont .asl-search-widget > div {
      margin-bottom: 0 !important;
              width: 30%;
  }
  .ck-locator-search-wrap .asl-cont .col-md-10 {
    width: 110% !important;
  }
}


.footer-menu a:hover,
.footer-utility a:hover {
    text-decoration: underline;
}
.gravity-theme form {
  padding: 40px;
  background: #E7F4F9;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.gravity-theme form input,
.gravity-theme form textarea,
.gravity-theme form select {
  -webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
padding: 8px;
border: 0;
}
.gravity-theme form .gform_button.button,
.gform_next_button {
  background-color: #2085b2;
  padding: 8px 15px !important;
  color: #fff;
}
.gravity-theme form .gform_button.button:hover,
.gform_next_button:hover {
background-color: #055B81;
cursor: pointer;
}
.gform_wrapper.gravity-theme .gf_progressbar {
  background: #fff;
}
.gform_wrapper.gravity-theme .gf_progressbar_title {
  color: #06638d;
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 4.8px 0;
}
.gfield_checkbox div {
  margin-bottom: 5px;
}
[type='checkbox']:checked, [type='radio']:checked {
  background-color: #bed52f !important;
}
.gform_wrapper.gravity-theme .gfield-choice-input {
  border-radius: 18px;
    padding: 11px;
    margin-right: 8px;
}
.testimonial-quote {
	position: relative;
  padding-top: 30px;
}

.testimonial-quote::before {
	content: “\201C”;
  font-size: 110px;
  line-height: 1;
  position: absolute;
  font-style: normal;
  color: #bed52f;
  top: -10px;
  left: 0;
}
.testimonial-video {
	position: relative;
	aspect-ratio: 16 / 9;
}

.testimonial-video iframe {
	width: 100%;
	height: 100%;
	display: block;
}
.testimonial-video-frame {
	width: 100%;
	max-width: 720px; /* 👈 controls overall size */
	margin: 0 auto;
	border-radius: 16px;
	overflow: hidden;
	background: #000;
}

/* enforce proper video ratio */
.testimonial-video-frame iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	display: block;
	border: 0;
}
.homepage-form .gravity-theme form {
  padding: 0;
  background: #fff;
}
.homepage-form .gform_wrapper.gravity-theme input[type=text],
.homepage-form .gform_wrapper.gravity-theme input[type=email],
.homepage-form .gform_wrapper.gravity-theme input[type=tel],
.homepage-form .gform_wrapper.gravity-theme textarea,
.homepage-form .gform_wrapper.gravity-theme select {
  border: 1px solid #DEDEDE;
  background: #FAFAFA;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  padding: 10px 15px;
}
.homepage-form .gform_wrapper.gravity-theme textarea {
  border-radius: 15px;
  height: 60px;
}
.homepage-form .gform-field-label--type-sub,
.homepage-form .gform_wrapper.gravity-theme .ginput_complex label {
  display: none;
}
.homepage-form .gform_wrapper.gravity-theme .gform_footer {
  padding: 0;
  margin: 0;
}
.homepage-form .gravity-theme form .gform_button.button {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  padding: 10px 26px !important;
}
.homepage-form .gform_wrapper.gravity-theme .gfield_label {
        font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}
.homepage-form .gform-theme form {
  padding: 0;
  background: #fff;
}
.homepage-form .gform_wrapper.gform-theme input[type=text],
.homepage-form .gform_wrapper.gform-theme input[type=email],
.homepage-form .gform_wrapper.gform-theme input[type=tel] {
  border: 1px solid #DEDEDE;
  background: #FAFAFA;
  border-radius: 50px;
  padding: 10px 15px;
}
.homepage-form .gform_wrapper.gform-theme select {
  border: 1px solid #DEDEDE;
  background: #FAFAFA;
  border-radius: 50px;
  padding: 0 15px;
  height: 44px;
  line-height: 44px;
}
.homepage-form .gform_wrapper.gform-theme .gform-field-label--type-sub,
.homepage-form .gform_wrapper.gform-theme .ginput_complex label {
  display: none;
}
.homepage-form .gform_wrapper.gform-theme .gform_footer {
  padding: 0;
  margin: 0;
}
.homepage-form .gform-theme form .gform_button.button {
  border-radius: 50px;
  padding: 10px 26px !important;
}
.homepage-form .gform_wrapper.gform-theme .gfield_label {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
.homepage-form .gform-theme--orbital .gform-theme--foundation .gform_fields {
  row-gap: 20px;
}
.homepage-form .gform-theme--orbital .ginput_container.ginput_container_checkbox {
      margin-bottom: 20px;
      margin-top: 10px;
}
.homepage-form .gform-theme--foundation .gform_fields {
  row-gap: 12px;
}
.homepage-form .gform-footer input[type=submit] {
  background-color: #06638D !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 10px 26px !important;
  font-size: 18px !important;
  border: none !important;
  cursor: pointer !important;
}
.homepage-form .gform-footer input[type=submit]:hover {
  background-color: #2386B3 !important;
}
/* Hero Form — styled to match gravity-theme contact form */
.hero-form_wrapper {
  background: #E7F4F9;
  border-radius: 16px;
  padding: 30px;
}

.hero-form_wrapper.gform-theme form {
  padding: 0;
  background: transparent;
}

.hero-form_wrapper .gfield_label {
  font-weight: 700;
  color: #112337;
  font-size: 16px;
}

.hero-form_wrapper .gfield_required {
  color: #c0392b;
  font-style: italic;
  font-weight: 400;
}

.hero-form_wrapper.gform_wrapper.gform-theme input[type=text],
.hero-form_wrapper.gform_wrapper.gform-theme input[type=email],
.hero-form_wrapper.gform_wrapper.gform-theme input[type=tel],
.hero-form_wrapper.gform_wrapper.gform-theme textarea {
  border: none !important;
  background: #fff !important;
  border-radius: 10px !important;
  padding: 14px 16px !important;
  font-size: 16px !important;
  box-shadow: none !important;
}

.hero-form_wrapper.gform_wrapper.gform-theme select {
  border: none !important;
  background: #fff !important;
  border-radius: 10px !important;
  padding: 0 16px !important;
}

.hero-form_wrapper.gform-theme--foundation .gform_fields { row-gap: 12px; }

.hero-form_wrapper .gform-footer { margin-top: 8px; }

.hero-form_wrapper .gform-footer input[type=submit] {
  background-color: #06638D !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 12px 26px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border: none !important;
  cursor: pointer !important;
}

.hero-form_wrapper .gform-footer input[type=submit]:hover {
  background-color: #2386B3 !important;
}
.hero-form_wrapper .gform-field-label--type-sub {
  display: none !important;
}
.homepage-form .gform_wrapper {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
.homepage-form .gform_wrapper.gform-theme input[type=text],
.homepage-form .gform_wrapper.gform-theme input[type=email],
.homepage-form .gform_wrapper.gform-theme input[type=tel] {
  border: 1px solid #DEDEDE !important;
  background: #FAFAFA;
  border-radius: 50px;
  padding: 10px 15px;
}

.homepage-form .gform_wrapper.gform-theme select {
  border: 1px solid #DEDEDE !important;
  background: #FAFAFA;
  border-radius: 50px;
  padding: 0 15px;
  height: 44px;
  line-height: 44px;
}
/* Survey Form — Orbital overrides to match contact form style */
.survey_wrapper {
  background: #E7F4F9;
  border-radius: 16px;
  padding: 30px;
}

.survey_wrapper.gform-theme form {
  padding: 0;
  background: transparent;
}

.survey_wrapper .gfield_label {
  font-weight: 700;
  color: #112337;
  font-size: 16px;
}

.survey_wrapper .gfield_required {
  color: #c0392b;
  font-style: italic;
  font-weight: 400;
}

.survey_wrapper.gform_wrapper.gform-theme input[type=text],
.survey_wrapper.gform_wrapper.gform-theme input[type=email],
.survey_wrapper.gform_wrapper.gform-theme input[type=tel],
.survey_wrapper.gform_wrapper.gform-theme textarea {
  border: none !important;
  background: #fff !important;
  border-radius: 10px !important;
  padding: 14px 16px !important;
  font-size: 16px !important;
}

.survey_wrapper.gform-theme--foundation .gform_fields { row-gap: 12px; }

/* Next / Previous buttons */
.survey_wrapper .gform-page-footer .gform_next_button,
.survey_wrapper .gform-page-footer input[type=submit] {
  background-color: #06638D !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 12px 26px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border: none !important;
  cursor: pointer !important;
}

.survey_wrapper .gform-page-footer .gform_next_button:hover,
.survey_wrapper .gform-page-footer input[type=submit]:hover {
  background-color: #2386B3 !important;
}

/* Previous button — outlined secondary style */
.survey_wrapper .gform-page-footer .gform_previous_button {
  background-color: transparent !important;
  color: #06638D !important;
  border: 2px solid #06638D !important;
  border-radius: 8px !important;
  padding: 12px 26px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
}

.survey_wrapper .gform-page-footer .gform_previous_button:hover {
  background-color: #06638D !important;
  color: #fff !important;
}

/* Progress bar */
.survey_wrapper .gf_progressbar_percentage {
  background-color: #06638D !important;
}
/* Hide auto-injected Table of Contents plugin */
.mgd-toc { display: none !important; }

article #frequently-asked-questions,
article details {
  display: none !important;
}