:root {
  --primaryColor: #107658;
  --secondarycolor: #00100B;
  --common-black: #090908;
  --whiteColor: #ffffff;
  --titleColor: #090908;
  --bodyColor: #666666;
}

:root {
  --body-font: "Onest", sans-serif;
  --transition: all 0.5s ease-in-out;
  --transition-sec: all 1.8s ease-in-out;
  --transition-third: all 2.2s ease-in-out;
  /* Color styles */
  --p1: 16, 118, 88;
  --p2: 0, 16, 11;
  --s1: 255, 255, 255;
  --s2: 58, 56, 54;
  --n1: 245, 245, 245;
  --n2: 230, 229, 229;
  --n3: 236, 232, 227;
  --gradient-p1: linear-gradient(90deg, rgba(255, 222, 159, 0.47) 0%, rgba(255, 222, 159, 0.12) 51.11%, rgba(255, 222, 159, 0.00) 100%);
  --box-shadow-p1: 0px 6px 30px 0px rgba(0, 0, 0, 0.08);
}

@keyframes waves {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes fadeIn2nd {
  0% {
    opacity: 0;
    transform: translate3d(-10%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
.blog_pagination_area {
  padding: 20px;
  background-color: #f00;
}
.blog_pagination_area ul {
  padding: 0;
  margin: 0;
}
.blog_pagination_area ul li {
  list-style: none;
}/*# sourceMappingURL=blog.css.map */