/* variables for text */
/* Main Color Palet */
/*
Green Dark: #5bbd80, rgb(91 189 128)
Green light: #c0d72f, rgb(192 215 47)

*/
/* variables for bg */
/* variables for fonts */
/* ================================ Global Mixins =========================== */
/*
** Transition use **
    .foo {
        @include transition(all 0.35s ease-in-out);
    }
*/
/*
** Position use **
    .foo {
        @include position(both);
    }
*/
/*
**clearfix use **
    .foo {
        @include clearfix;
    }
*/
/*
** center-auto **
    .foo {
        @include center-auto;
    }
*/
/*
** placeholder use **
    input,
    textarea {
        @include input-placeholder {
            color: $grey;
        }
    }
*/
/*
** pseudo use **
    div::after {
        @include pseudo;
        top: -1rem; left: -1rem;
        width: 1rem; height: 1rem;
    }
*/
/*
** prefix use **
    div {
       @include css3-prefix(transform, scale3d(2.5, 2, 1.5));
    }
}*/
/* Animation use
**
    @include keyframes(fade-out) {
        0% { opacity: 1; }
        90% { opacity: 0; }
    }
*/
.blog-tag a, .blog-tag span {
  display: inline-block;
  font-family: "Figtree", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  color: #888888;
  border: 1px solid #c0d72f;
  border-radius: 100px;
  line-height: 1.5;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  font-size: 16px;
  padding: 5px 12px;
  margin-right: 10px;
  margin-top: 10px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .blog-tag a, .blog-tag span {
    font-size: 1.067vw;
    padding: 0.333vw 0.8vw;
    margin-right: 0.667vw;
    margin-top: 0.667vw;
  }
}
.blog-tag span {
  margin: 0 !important;
}
.blog-tag a:hover {
  border-color: #c0d72f;
  color: #5bbd80;
}