/*!**************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./style/templates/blog.scss ***!
  \**************************************************************************************************************************************************************************************************************************************************/
.posts {
  gap: 40px 20px;
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .posts {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
  background: #fff;
  border-radius: 0 0 16px 16px;
  color: #000;
}
.post .thumb img {
  border-radius: 16px 16px 0 0;
}
.post .info {
  padding: 20px 24px 36px;
}
.post h3 {
  font-size: 22px;
  padding-bottom: 7px;
  line-height: 1.3;
}
.post .desc {
  color: rgba(18, 18, 18, 0.7);
  font-size: 13px;
}
.post .desc p {
  padding-bottom: 7px;
}
.post .more {
  font-weight: 800;
  color: #000;
  text-decoration-line: underline;
  text-decoration-color: #FAB71A;
  text-decoration-style: wavy;
}

.load_more_holder {
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0;
}
.load_more_holder .button {
  width: 240px;
}

.preloader {
  width: 40px;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
  background-image: url(../images/preloader.svg);
  background-repeat: no-repeat;
  animation: spin 1s ease infinite;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
}
.preloader.button-loader {
  position: absolute;
  left: 50%;
  margin-left: -20px;
  bottom: 2px;
}
.preloader.is_loading {
  opacity: 1;
  visibility: visible;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.content {
  padding-top: 0;
}

.tax-age .top-section {
  color: #fff;
  background-color: var(--block-bg);
}

.top-section {
  position: relative;
  text-align: center;
  margin-bottom: 90px;
  background-color: #F7D3DD;
}
.top-section > svg {
  position: absolute;
  bottom: -37px;
  left: 0;
  right: 0;
  height: 38px;
  width: 100%;
  z-index: -1;
}
.top-section > div {
  position: relative;
  padding: 20px 0;
  z-index: 0;
}
.top-section > div:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/left-circles.svg") 0 0 no-repeat;
  width: 444px;
  height: 382px;
  z-index: -1;
}
.top-section > div:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url("../images/right-circles.svg") 0 0 no-repeat;
  width: 605px;
  height: 357px;
  z-index: -1;
}
.top-section .info {
  padding-top: 38px;
}
.top-section .parent-title {
  display: inline-block;
  padding-bottom: 10px;
}
.top-section h1 {
  padding-bottom: 5px;
}
@media screen and (min-width: 1081px) {
  .top-section > div {
    padding: 20px 0;
  }
}

.age-cats-filter {
  text-align: center;
  gap: 5px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 10px;
}
.age-cats-filter .item {
  display: inline-block;
  padding: 17px;
  border-radius: 16px;
  transition: all 0.4s ease;
  line-height: 1;
  color: #000;
  font-weight: 600;
}
.age-cats-filter .item:hover {
  background: #F5F5F5;
}
.age-cats-filter .item.active {
  background: #FAD5CC;
}
.age-cats-filter svg {
  display: inline-block;
  vertical-align: middle;
  height: 24px;
  margin-right: 14px;
  fill: var(--block-bg);
}
.age-cats-filter .age-title {
  display: inline-block;
  vertical-align: middle;
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .age-cats-filter {
    grid-template-columns: repeat(5, 1fr);
  }
}

.content .container {
  width: 1600px;
}

.blogAjax {
  padding-bottom: 100px;
}

/*# sourceMappingURL=blog_style.css.map*/