/* custom style */

/* imported fonts  */

@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@800&family=Poppins:wght@400;500;600;700;800&display=swap");

.font-poppins {
  font-family: "Poppins", sans-serif;
}
.font-garamond {
  font-family: "EB Garamond", serif;
}

.technologyIndex {
  background-image: url(./images/bg-s2-home3.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.buildYourWebsite {
  background-image: url(./images/bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.consultant {
  background-image: url(./images/consultation.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.transitionEase {
  transition: left 0.5s ease;
}

.cursor {
  cursor: arrow !important;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease;
}

.loader {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 100%;
  height: 100%;
  animation: rotate 2s linear infinite;
}

.path {
  stroke: url(#gradient);
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

.loader-logo {
  position: absolute;
  width: 80px;
  height: 80px;
  animation: pulse 2s ease-in-out infinite;
}

.loading-text {
  position: absolute;
  bottom: -40px;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.loading-dots::after {
  content: "";
  animation: dots 1.5s infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}

@keyframes dots {
  0%,
  20% {
    content: ".";
  }
  40% {
    content: "..";
  }
  60% {
    content: "...";
  }
  80%,
  100% {
    content: "";
  }
}

/* Gradient definition */

.preloader-hidden {
  opacity: 0;
  pointer-events: none;
}
