/* Section spacing */
.section {
  padding: var(--section-space) 0;
}

/* Gradient Section */
.section--gradient {
  background: var(--gradient-section);
}

/* Card */
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-card);
}

/* Button */
.btn {
  display: inline-block;
  padding: 12px 19px;
  background: var(--color-bg-light);
  color: var(--color-text-dark);
  font-weight: var(--fw-medium);
  border-radius: 8px;
  text-decoration: none;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.5%;
}
.btn:hover{
   background: #ffffff;
   color: var(--color-text-dark);
}
@media screen and (max-width: 1399px) {
  .section {
  padding: var(--section-space-1399) 0;
}
}

@media screen and (max-width: 1199px) {
    .section {
  padding: var(--section-space-tab) 0;
}
}
@media screen and (max-width: 991px) {
   .section {
  padding: var(--section-space-mobile) 0;
}
}
@media screen and (max-width: 767px) {
   .section {
    padding: var(--section-space-sm) 0;
	   overflow-x:hidden;
  }
  body.fixed{
    overflow: hidden !important;
    
  }
}

@media screen and (max-width: 767px) {
.btn {
  font-size: 14px;
}
}

/* ===== Loader ===== */
        #loader {
            position: fixed;
            inset: 0;
            background-color: var(--color-body);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }


        /* ===== SVG Loader ===== */
        .ip {
            width: 100px;
        }
        .ip__track {
            stroke: #eee;
        }
        .ip__worm1,
        .ip__worm2 {
            animation: worm1 2s linear infinite;
        }
        .ip__worm2 {
            animation-name: worm2;
        }

        @keyframes worm1 {
            from { stroke-dashoffset: 0; }
            50% {
                animation-timing-function: steps(1);
                stroke-dashoffset: -358;
            }
            50.01% {
                animation-timing-function: linear;
                stroke-dashoffset: 358;
            }
            to { stroke-dashoffset: 0; }
        }
        @keyframes worm2 {
            from { stroke-dashoffset: 358; }
            50% { stroke-dashoffset: 0; }
            to { stroke-dashoffset: -358; }
        }


        


  
.animated-btn  {
  --background: #e6e6e6;
  --text: #08090a;
  --font-size: 15px;
  --duration: .44s;
  --move-hover: -4px;
  --font-shadow: var(--font-size);

  padding: 12px 19px;
  font-weight: 500;
  line-height: var(--font-size);
  border-radius: 8px;
  border: none;
  font-size: var(--font-size);
  letter-spacing: 0.5%;

  background: var(--background);
  color: var(--text);

  transform: translateY(var(--y)) translateZ(0);
  transition: transform var(--duration) ease, box-shadow var(--duration) ease;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  height: 40px;
  align-items: center;
}
.cta-btn.animated-btn {
    padding: 3px 15px;
    height: 32px;
    font-size: 13px;
    line-height: 13px;
    letter-spacing: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
}
.animated-btn div {
  display: flex;
  overflow: hidden;
  text-shadow: 0 var(--font-shadow) 0 var(--text);
  justify-content: center;
}

.animated-btn div span {
  display: block;
  backface-visibility: hidden;
  transition: transform var(--duration) ease;
  transform: translateY(var(--m)) translateZ(0);
}

.animated-btn:hover span {
  --m: calc(var(--font-size) * -1);
} 
.animated-btn:hover{
  background-color: #fff;
}     
/* Primary CTA (brand accent): "Book a Free Call" + header Contact */
.animated-btn--primary,
.cta-btn.animated-btn {
  --background: var(--color-accent-strong);
  --text: #ffffff;
}
.animated-btn--primary:hover,
.cta-btn.animated-btn:hover {
  background-color: var(--color-accent);
}
