/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 07 2026 | 06:14:55 */
#lintel-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f5f1; /* match your site background */
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
}

#lintel-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.lintel-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  animation: lintel-pop 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lintel-loader__logo {
  height: 96px;
  width: auto;
  animation: lintel-float 1.8s ease-in-out infinite;
}

@media (min-width: 768px) {
  .lintel-loader__logo { height: 112px; }
}

.lintel-loader__bar {
  position: relative;
  height: 1px;
  width: 160px;
  background: rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.lintel-loader__bar span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 33%;
  background: #b08a5b; /* your gold/primary accent */
  animation: lintel-slide 1.4s ease-in-out infinite;
}

@keyframes lintel-pop {
  from { opacity: 0; transform: translateY(10px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes lintel-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

@keyframes lintel-slide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}

/* Lock scroll while loader is visible */
body.lintel-loading {
  overflow: hidden;
}


.get-in-touch {
	color:#b08a4a;
	font-size:24px;
}