
/* Airnow/Append Template overrides */



:root { 
  --accent-color: #4d4e93; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --nav-color: #3a3939;  /* The default color of the main navmenu links */
}

:root {
  --nav-color: #3a3939;  /* The default color of the main navmenu links */
  --nav-hover-color: #4d4e93; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #3a3939; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #4d4e93; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
    text-decoration: none !important;
}


/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --nav-hover-color: #4d4e93 important;
}


a:hover {
  text-decoration: none !important;
}

a {
  text-decoration: none !important;
}



.clients .client-logo img {
  padding: 20px 20px;
  max-width: 95%;
  transition: 0.3s;
  opacity: 1;
  filter: none;
}

.map-container iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

/* =============== simple pre-loader =============== */
#preloader {
  position: fixed;
  inset: 0;                            /* full-screen */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #0d0d0d;                 /* dark backdrop */
  color: #ffffff;                      /* label colour */
  z-index: 9999;                       /* on top of everything */
  transition: opacity 0.4s ease;       /* fade-out */
}
#preloader.hide {                      /* toggled by JS */
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 5px solid #ffffff40;         /* 25 % opacity ring */
  border-top-color: #ffffff;           /* bright arc */
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loader-label {
  font: 500 1rem/1 "Open Sans", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.85;
}
/* =============== /pre-loader ===================== */