/* font style */
*,
body {
  font-size: 18px;
}

.page-padding {
  padding: 0 7vw 0 7vw;
}



.fs-hero {
  font-size: calc(13px + 5vw);
  font-weight: 300;
}

.svg-image path {
  fill: #fff;
}

.svg-image {
  transform: rotate(180deg);
}


.footer {
  /* min-height: 600px; */
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f6f6f6 !important;
}

.testimonial {
  /* min-height: 600px; */
  background-image: url(../images/map.png);
  background-repeat: no-repeat;
  background-size: cover;

}



/* hero */
.hero-section {
  /* background-color: #E6EEF6; */
  background: #e8effa;
  background: linear-gradient(90deg, rgba(232, 239, 250, 1) 0%, rgba(255, 255, 255, 1) 100%);
}



img.hero-img {
  -webkit-animation: mover 2s infinite alternate;
  animation: mover 2s infinite alternate;
}


@keyframes mover {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-20px);
  }
}

/* social-media */
.social-media i {
  font-size: 25px;
}

.social-media i:hover {
  transform: scale(1.2);
}

.social-media a {
  text-decoration: none;
  display: inline-block;
  color: black;
  padding: 5px 12px;
  cursor: pointer;
}


.service .card-text {
  font-size: 16px;
}


/* loading screen */

#loading-screen {
  height: 100%;
  width: 100%;
  background-color: #57D4AF;
  position: fixed;
  top: 0;
  z-index: 10000;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.loader {
  width: 65px;
  aspect-ratio: 1;
  position: relative;
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  border-radius: 50px;
  box-shadow: 0 0 0 3px inset #fff;
  animation: l4 2.5s infinite;
}

.loader:after {
  animation-delay: -1.25s;
}

@keyframes l4 {
  0% {
    inset: 0 35px 35px 0;
  }

  12.5% {
    inset: 0 35px 0 0;
  }

  25% {
    inset: 35px 35px 0 0;
  }

  37.5% {
    inset: 35px 0 0 0;
  }

  50% {
    inset: 35px 0 0 35px;
  }

  62.5% {
    inset: 0 0 0 35px;
  }

  75% {
    inset: 0 0 35px 35px;
  }

  87.5% {
    inset: 0 0 35px 0;
  }

  100% {
    inset: 0 35px 35px 0;
  }
}