
body {
  font-family: 'Poppins', sans-serif;
  color: #555555;
}
.no-margin {
  margin: 0;
}

/*------/ Bg Image /------*/

.bg-image {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
}

/*------/ Overlay /------*/

.overlay-a {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 27%, rgba(0, 0, 0, 0.65) 90%);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0px;
  padding: 0;
  height: 100%;
  width: 100%;
}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: #000000;
  color: #fff;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 1;
  font-size: 13px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

/* Prelaoder */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  /* top: calc(50% - 30px); */
  /* left: calc(50% - 30px); */
  /* border: 6px solid #f2f2f2; */
  /* border-top: 6px solid #1b619b; */
  /* border-radius: 50%; */
  /* width: 60px; */
  /* height: 60px; */
  /* -webkit-animation: animate-preloader 1s linear infinite; */
  /* animation: animate-preloader 1s linear infinite; */
}

/* @-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
} */