.elementor-566 .elementor-element.elementor-element-3975cde{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-bc2be2d *//* =========================================================
   CENTRAL COAST DEV — HEADER
   Desktop navigation + Services dropdown + mobile menu
========================================================= */

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.ccd-header {
  position: relative;
  left: 50%;
  z-index: 9999;

  width: 100vw;
  max-width: 100vw;

  margin: 0 0 0 -50vw;

  background: #111820;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.14);
}

.ccd-header__inner {
  width: min(92%, 1320px);
  min-height: 88px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;
}


/* =========================================================
   LOGO
========================================================= */

.ccd-header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.ccd-header__logo img {
  display: block;

  width: auto;
  height: auto;

  max-width: 270px;
  max-height: 60px;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.ccd-header__nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.ccd-header__nav > a:not(.ccd-header__cta),
.ccd-header__dropdown-trigger {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: #fff;

  font-size: 15px;
  font-weight: 600;
  line-height: 1;

  text-decoration: none;

  transition: color 0.2s ease;
}

.ccd-header__nav > a:not(.ccd-header__cta)::after,
.ccd-header__dropdown-trigger::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -9px;

  width: 0;
  height: 2px;

  background: #3d98c9;

  transition: width 0.25s ease;
}

.ccd-header__nav > a:not(.ccd-header__cta):hover,
.ccd-header__dropdown-trigger:hover,
.ccd-header__dropdown:hover .ccd-header__dropdown-trigger {
  color: #7dc3e6;
}

.ccd-header__nav > a:not(.ccd-header__cta):hover::after,
.ccd-header__dropdown:hover .ccd-header__dropdown-trigger::after,
.ccd-header__dropdown:focus-within .ccd-header__dropdown-trigger::after {
  width: 100%;
}


/* =========================================================
   DESKTOP SERVICES DROPDOWN
========================================================= */

.ccd-header__dropdown {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 88px;
}

.ccd-header__dropdown-arrow {
  width: 7px;
  height: 7px;

  margin-top: -3px;

  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;

  transform: rotate(45deg);

  transition: transform 0.22s ease;
}

.ccd-header__dropdown:hover .ccd-header__dropdown-arrow,
.ccd-header__dropdown:focus-within .ccd-header__dropdown-arrow {
  transform: translateY(3px) rotate(225deg);
}

.ccd-header__dropdown-menu {
  position: absolute;

  top: calc(100% - 4px);
  left: 50%;

  width: 370px;

  padding: 10px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;

  background: #18232e;

  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.34);

  opacity: 0;
  visibility: hidden;

  transform: translate(-50%, 12px);

  pointer-events: none;

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.22s ease;
}

/* Keeps hover active while moving from Services into dropdown. */
.ccd-header__dropdown-menu::before {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  top: -16px;

  height: 16px;
}

.ccd-header__dropdown:hover .ccd-header__dropdown-menu,
.ccd-header__dropdown:focus-within .ccd-header__dropdown-menu {
  opacity: 1;
  visibility: visible;

  transform: translate(-50%, 0);

  pointer-events: auto;
}

.ccd-header__dropdown-menu > a {
  display: grid;

  grid-template-columns: 42px 1fr;
  gap: 13px;

  align-items: center;

  padding: 13px 14px;

  border-radius: 8px;

  color: #fff;

  text-decoration: none;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.ccd-header__dropdown-menu > a:hover,
.ccd-header__dropdown-menu > a:focus-visible {
  background: rgba(61, 152, 201, 0.12);

  transform: translateX(3px);
}

.ccd-header__dropdown-icon {
  display: grid;

  width: 40px;
  height: 40px;

  place-items: center;

  border-radius: 9px;

  background: rgba(61, 152, 201, 0.14);

  color: #7dc3e6;

  font-size: 15px;
  font-weight: 800;
}

.ccd-header__dropdown-menu strong,
.ccd-header__dropdown-menu small {
  display: block;
}

.ccd-header__dropdown-menu strong {
  margin-bottom: 4px;

  color: #fff;

  font-size: 14px;
  font-weight: 700;
}

.ccd-header__dropdown-menu small {
  color: rgba(255, 255, 255, 0.57);

  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}


/* VIEW ALL SERVICES */

.ccd-header__dropdown-menu .ccd-header__dropdown-all {
  display: flex;

  grid-template-columns: none;

  align-items: center;
  justify-content: space-between;

  margin-top: 7px;

  padding: 13px 15px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 7px 7px;

  color: #7dc3e6;

  font-size: 13px;
  font-weight: 700;
}

.ccd-header__dropdown-all span {
  font-size: 17px;

  transition: transform 0.2s ease;
}

.ccd-header__dropdown-all:hover span {
  transform: translateX(4px);
}


/* =========================================================
   HEADER CTA
========================================================= */

.ccd-header__cta,
.ccd-mobile-menu__cta {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 46px;

  padding: 0 25px;

  border-radius: 6px;

  background: #2575a7;

  color: #fff !important;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.ccd-header__cta:hover,
.ccd-mobile-menu__cta:hover {
  background: #318fc2;

  transform: translateY(-2px);
}


/* =========================================================
   HAMBURGER BUTTON
========================================================= */

.ccd-header__toggle {
  display: none;

  position: relative;
  z-index: 10002;

  width: 44px;
  height: 44px;

  padding: 10px;

  border: 0;
  border-radius: 5px;

  background: transparent;

  cursor: pointer;

  -webkit-appearance: none;
  appearance: none;
}

.ccd-header__toggle span {
  display: block;

  width: 100%;
  height: 2px;

  margin: 5px 0;

  border-radius: 20px;

  background: #fff;

  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

.ccd-header__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ccd-header__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.ccd-header__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.ccd-mobile-menu {
  display: none;

  position: relative;
  z-index: 10001;

  width: 100%;

  background: #111820;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.22);
}

.ccd-mobile-menu__inner {
  width: min(92%, 1320px);

  margin: 0 auto;
  padding: 12px 0 24px;

  display: flex;
  flex-direction: column;
}

.ccd-mobile-menu__inner > a:not(.ccd-mobile-menu__cta) {
  display: flex;

  align-items: center;

  min-height: 54px;

  padding: 0 4px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  color: #fff;

  font-size: 16px;
  font-weight: 600;

  text-decoration: none;
}


/* =========================================================
   MOBILE SERVICES TOGGLE
========================================================= */

.ccd-mobile-services__toggle {
  width: 100%;
  min-height: 54px;

  padding: 0 4px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  background: transparent;

  color: #fff;

  font-family: inherit;
  font-size: 16px;
  font-weight: 600;

  text-align: left;

  cursor: pointer;

  -webkit-appearance: none;
  appearance: none;
}

.ccd-mobile-services__arrow {
  width: 8px;
  height: 8px;

  margin-right: 7px;

  border-right: 2px solid #7dc3e6;
  border-bottom: 2px solid #7dc3e6;

  transform: rotate(45deg);

  transition: transform 0.25s ease;
}

.ccd-mobile-services__toggle.is-active .ccd-mobile-services__arrow {
  transform: rotate(225deg);
}


/* =========================================================
   MOBILE SERVICE LINKS
========================================================= */

.ccd-mobile-services {
  display: none;

  padding: 8px 0 10px 14px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  background: rgba(255, 255, 255, 0.015);
}

.ccd-mobile-services.is-open {
  display: block;
}

.ccd-mobile-services > a {
  display: grid;

  grid-template-columns: 40px 1fr;
  gap: 12px;

  align-items: center;

  padding: 11px 10px;

  border-radius: 7px;

  color: #fff;

  text-decoration: none;

  transition: background 0.2s ease;
}

.ccd-mobile-services > a:hover,
.ccd-mobile-services > a:focus-visible {
  background: rgba(61, 152, 201, 0.10);
}

.ccd-mobile-services__icon {
  display: grid;

  width: 36px;
  height: 36px;

  place-items: center;

  border-radius: 8px;

  background: rgba(61, 152, 201, 0.13);

  color: #7dc3e6;

  font-size: 13px;
  font-weight: 800;
}

.ccd-mobile-services strong,
.ccd-mobile-services small {
  display: block;
}

.ccd-mobile-services strong {
  margin-bottom: 3px;

  color: #fff;

  font-size: 14px;
}

.ccd-mobile-services small {
  color: rgba(255, 255, 255, 0.53);

  font-size: 12px;
  line-height: 1.35;
}


/* ALL SERVICES MOBILE LINK */

.ccd-mobile-services .ccd-mobile-services__all {
  display: block;

  padding: 10px 10px 12px;

  color: #7dc3e6;

  font-size: 13px;
  font-weight: 700;
}


/* MOBILE CTA */

.ccd-mobile-menu__cta {
  margin-top: 18px;
}


/* =========================================================
   KEYBOARD FOCUS
========================================================= */

.ccd-header a:focus-visible,
.ccd-header button:focus-visible {
  outline: 2px solid #7dc3e6;
  outline-offset: 4px;
}


/* =========================================================
   ELEMENTOR RESET
========================================================= */

.elementor-widget-html:has(.ccd-header),
.elementor-widget-html:has(.ccd-header) .elementor-widget-container,
.e-con:has(.ccd-header) {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 901px) {

  .ccd-header .ccd-header__nav {
    display: flex !important;
  }

  .ccd-header .ccd-header__toggle,
  .ccd-header .ccd-mobile-menu {
    display: none !important;
  }
}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 900px) {

  .ccd-header__inner {
    min-height: 78px;
  }

  .ccd-header__logo img {
    max-width: 235px;
    max-height: 52px;
  }

  .ccd-header .ccd-header__nav {
    display: none !important;
  }

  .ccd-header .ccd-header__toggle {
    display: block !important;
  }

  .ccd-header .ccd-mobile-menu {
    display: none !important;
  }

  .ccd-header .ccd-mobile-menu.is-open {
    display: block !important;
  }

  .ccd-header__dropdown-menu {
    display: none !important;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .ccd-header__inner {
    width: 92%;
    min-height: 70px;
    gap: 18px;
  }

  .ccd-header__logo img {
    max-width: 205px;
    max-height: 46px;
  }

  .ccd-mobile-menu__inner {
    width: 92%;
  }
}


@media (max-width: 380px) {

  .ccd-header__logo img {
    max-width: 180px;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .ccd-header *,
  .ccd-header *::before,
  .ccd-header *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-78a4a3e *//* =========================================================
   CENTRAL COAST DEV — HEADER
   Desktop navigation + Services dropdown + mobile menu
========================================================= */

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.ccd-header {
  position: relative;
  left: 50%;
  z-index: 9999;

  width: 100vw;
  max-width: 100vw;

  margin: 0 0 0 -50vw;

  background: #111820;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.14);
}

.ccd-header__inner {
  width: min(92%, 1320px);
  min-height: 88px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;
}


/* =========================================================
   LOGO
========================================================= */

.ccd-header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.ccd-header__logo img {
  display: block;

  width: auto;
  height: auto;

  max-width: 270px;
  max-height: 60px;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.ccd-header__nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.ccd-header__nav > a:not(.ccd-header__cta),
.ccd-header__dropdown-trigger {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: #fff;

  font-size: 15px;
  font-weight: 600;
  line-height: 1;

  text-decoration: none;

  transition: color 0.2s ease;
}

.ccd-header__nav > a:not(.ccd-header__cta)::after,
.ccd-header__dropdown-trigger::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -9px;

  width: 0;
  height: 2px;

  background: #3d98c9;

  transition: width 0.25s ease;
}

.ccd-header__nav > a:not(.ccd-header__cta):hover,
.ccd-header__dropdown-trigger:hover,
.ccd-header__dropdown:hover .ccd-header__dropdown-trigger {
  color: #7dc3e6;
}

.ccd-header__nav > a:not(.ccd-header__cta):hover::after,
.ccd-header__dropdown:hover .ccd-header__dropdown-trigger::after,
.ccd-header__dropdown:focus-within .ccd-header__dropdown-trigger::after {
  width: 100%;
}


/* =========================================================
   DESKTOP SERVICES DROPDOWN
========================================================= */

.ccd-header__dropdown {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 88px;
}

.ccd-header__dropdown-arrow {
  width: 7px;
  height: 7px;

  margin-top: -3px;

  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;

  transform: rotate(45deg);

  transition: transform 0.22s ease;
}

.ccd-header__dropdown:hover .ccd-header__dropdown-arrow,
.ccd-header__dropdown:focus-within .ccd-header__dropdown-arrow {
  transform: translateY(3px) rotate(225deg);
}

.ccd-header__dropdown-menu {
  position: absolute;

  top: calc(100% - 4px);
  left: 50%;

  width: 370px;

  padding: 10px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;

  background: #18232e;

  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.34);

  opacity: 0;
  visibility: hidden;

  transform: translate(-50%, 12px);

  pointer-events: none;

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.22s ease;
}

/* Keeps hover active while moving from Services into dropdown. */
.ccd-header__dropdown-menu::before {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  top: -16px;

  height: 16px;
}

.ccd-header__dropdown:hover .ccd-header__dropdown-menu,
.ccd-header__dropdown:focus-within .ccd-header__dropdown-menu {
  opacity: 1;
  visibility: visible;

  transform: translate(-50%, 0);

  pointer-events: auto;
}

.ccd-header__dropdown-menu > a {
  display: grid;

  grid-template-columns: 42px 1fr;
  gap: 13px;

  align-items: center;

  padding: 13px 14px;

  border-radius: 8px;

  color: #fff;

  text-decoration: none;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.ccd-header__dropdown-menu > a:hover,
.ccd-header__dropdown-menu > a:focus-visible {
  background: rgba(61, 152, 201, 0.12);

  transform: translateX(3px);
}

.ccd-header__dropdown-icon {
  display: grid;

  width: 40px;
  height: 40px;

  place-items: center;

  border-radius: 9px;

  background: rgba(61, 152, 201, 0.14);

  color: #7dc3e6;

  font-size: 15px;
  font-weight: 800;
}

.ccd-header__dropdown-menu strong,
.ccd-header__dropdown-menu small {
  display: block;
}

.ccd-header__dropdown-menu strong {
  margin-bottom: 4px;

  color: #fff;

  font-size: 14px;
  font-weight: 700;
}

.ccd-header__dropdown-menu small {
  color: rgba(255, 255, 255, 0.57);

  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}


/* VIEW ALL SERVICES */

.ccd-header__dropdown-menu .ccd-header__dropdown-all {
  display: flex;

  grid-template-columns: none;

  align-items: center;
  justify-content: space-between;

  margin-top: 7px;

  padding: 13px 15px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 7px 7px;

  color: #7dc3e6;

  font-size: 13px;
  font-weight: 700;
}

.ccd-header__dropdown-all span {
  font-size: 17px;

  transition: transform 0.2s ease;
}

.ccd-header__dropdown-all:hover span {
  transform: translateX(4px);
}


/* =========================================================
   HEADER CTA
========================================================= */

.ccd-header__cta,
.ccd-mobile-menu__cta {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 46px;

  padding: 0 25px;

  border-radius: 6px;

  background: #2575a7;

  color: #fff !important;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.ccd-header__cta:hover,
.ccd-mobile-menu__cta:hover {
  background: #318fc2;

  transform: translateY(-2px);
}


/* =========================================================
   HAMBURGER BUTTON
========================================================= */

.ccd-header__toggle {
  display: none;

  position: relative;
  z-index: 10002;

  width: 44px;
  height: 44px;

  padding: 10px;

  border: 0;
  border-radius: 5px;

  background: transparent;

  cursor: pointer;

  -webkit-appearance: none;
  appearance: none;
}

.ccd-header__toggle span {
  display: block;

  width: 100%;
  height: 2px;

  margin: 5px 0;

  border-radius: 20px;

  background: #fff;

  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

.ccd-header__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ccd-header__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.ccd-header__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.ccd-mobile-menu {
  display: none;

  position: relative;
  z-index: 10001;

  width: 100%;

  background: #111820;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.22);
}

.ccd-mobile-menu__inner {
  width: min(92%, 1320px);

  margin: 0 auto;
  padding: 12px 0 24px;

  display: flex;
  flex-direction: column;
}

.ccd-mobile-menu__inner > a:not(.ccd-mobile-menu__cta) {
  display: flex;

  align-items: center;

  min-height: 54px;

  padding: 0 4px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  color: #fff;

  font-size: 16px;
  font-weight: 600;

  text-decoration: none;
}


/* =========================================================
   MOBILE SERVICES TOGGLE
========================================================= */

.ccd-mobile-services__toggle {
  width: 100%;
  min-height: 54px;

  padding: 0 4px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  background: transparent;

  color: #fff;

  font-family: inherit;
  font-size: 16px;
  font-weight: 600;

  text-align: left;

  cursor: pointer;

  -webkit-appearance: none;
  appearance: none;
}

.ccd-mobile-services__arrow {
  width: 8px;
  height: 8px;

  margin-right: 7px;

  border-right: 2px solid #7dc3e6;
  border-bottom: 2px solid #7dc3e6;

  transform: rotate(45deg);

  transition: transform 0.25s ease;
}

.ccd-mobile-services__toggle.is-active .ccd-mobile-services__arrow {
  transform: rotate(225deg);
}


/* =========================================================
   MOBILE SERVICE LINKS
========================================================= */

.ccd-mobile-services {
  display: none;

  padding: 8px 0 10px 14px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  background: rgba(255, 255, 255, 0.015);
}

.ccd-mobile-services.is-open {
  display: block;
}

.ccd-mobile-services > a {
  display: grid;

  grid-template-columns: 40px 1fr;
  gap: 12px;

  align-items: center;

  padding: 11px 10px;

  border-radius: 7px;

  color: #fff;

  text-decoration: none;

  transition: background 0.2s ease;
}

.ccd-mobile-services > a:hover,
.ccd-mobile-services > a:focus-visible {
  background: rgba(61, 152, 201, 0.10);
}

.ccd-mobile-services__icon {
  display: grid;

  width: 36px;
  height: 36px;

  place-items: center;

  border-radius: 8px;

  background: rgba(61, 152, 201, 0.13);

  color: #7dc3e6;

  font-size: 13px;
  font-weight: 800;
}

.ccd-mobile-services strong,
.ccd-mobile-services small {
  display: block;
}

.ccd-mobile-services strong {
  margin-bottom: 3px;

  color: #fff;

  font-size: 14px;
}

.ccd-mobile-services small {
  color: rgba(255, 255, 255, 0.53);

  font-size: 12px;
  line-height: 1.35;
}


/* ALL SERVICES MOBILE LINK */

.ccd-mobile-services .ccd-mobile-services__all {
  display: block;

  padding: 10px 10px 12px;

  color: #7dc3e6;

  font-size: 13px;
  font-weight: 700;
}


/* MOBILE CTA */

.ccd-mobile-menu__cta {
  margin-top: 18px;
}


/* =========================================================
   KEYBOARD FOCUS
========================================================= */

.ccd-header a:focus-visible,
.ccd-header button:focus-visible {
  outline: 2px solid #7dc3e6;
  outline-offset: 4px;
}


/* =========================================================
   ELEMENTOR RESET
========================================================= */

.elementor-widget-html:has(.ccd-header),
.elementor-widget-html:has(.ccd-header) .elementor-widget-container,
.e-con:has(.ccd-header) {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 901px) {

  .ccd-header .ccd-header__nav {
    display: flex !important;
  }

  .ccd-header .ccd-header__toggle,
  .ccd-header .ccd-mobile-menu {
    display: none !important;
  }
}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 900px) {

  .ccd-header__inner {
    min-height: 78px;
  }

  .ccd-header__logo img {
    max-width: 235px;
    max-height: 52px;
  }

  .ccd-header .ccd-header__nav {
    display: none !important;
  }

  .ccd-header .ccd-header__toggle {
    display: block !important;
  }

  .ccd-header .ccd-mobile-menu {
    display: none !important;
  }

  .ccd-header .ccd-mobile-menu.is-open {
    display: block !important;
  }

  .ccd-header__dropdown-menu {
    display: none !important;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .ccd-header__inner {
    width: 92%;
    min-height: 70px;
    gap: 18px;
  }

  .ccd-header__logo img {
    max-width: 205px;
    max-height: 46px;
  }

  .ccd-mobile-menu__inner {
    width: 92%;
  }
}


@media (max-width: 380px) {

  .ccd-header__logo img {
    max-width: 180px;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .ccd-header *,
  .ccd-header *::before,
  .ccd-header *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}/* End custom CSS */