/*!******************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/projects.scss ***!
  \******************************************************************************************************************************************************************************************************************************************************/
.content {
  padding-top: 96px;
}

h1 {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.filterBox {
  font-size: 0;
  margin-bottom: 24px;
}
.filterBox span {
  font-size: 11px;
  padding: 13px 16px;
  line-height: 1;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  color: #000;
  transition: all 0.4s ease;
}
.filterBox span:hover {
  border-color: #000;
}
.filterBox span.is_filtered {
  background: rgba(0, 0, 0, 0.1);
  border-color: #000;
}
.filterBox span[data-cat=award-winning] {
  border-color: #FFD95E;
}
.filterBox span[data-cat=award-winning]:hover, .filterBox span[data-cat=award-winning].is_filtered {
  background: #FFD95E;
}
@media screen and (max-width: 1080px) {
  .filterBox {
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .filterBox span {
    letter-spacing: 0.5px;
  }
}

.posts {
  display: grid;
  gap: 16px;
  padding-bottom: 195px;
}
@media screen and (max-width: 767px) {
  .posts {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 768px) {
  .posts {
    grid-template-columns: repeat(2, 1fr);
  }
  .posts.col4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1081px) {
  .posts {
    padding-bottom: 261px;
  }
  .posts.col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .posts.col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .posts.col4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.post-item {
  text-decoration: none;
  display: block;
  transition: all 0.4s ease;
}
.post-item figure {
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
}
.post-item figure img {
  margin: 0 auto;
}
.post-item figure .project-logo {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 100px;
}
.post-item figure .project-logo img {
  margin: 0 0 0 auto;
}
.post-item figure .award {
  position: absolute;
  left: 0;
  top: 0;
  background: #FFD95E;
  padding: 16px;
  line-height: 1;
  width: 106px;
}
.post-item figure .award svg {
  margin: 0 auto;
}
.post-item figure .rewards {
  position: absolute;
  left: 20px;
  top: 20px;
}
.post-item figure .rewards .project-reward {
  display: block;
  width: 70px;
  margin-bottom: 8px;
}
.post-item figure .status {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
  line-height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
}
.post-item .info time {
  font-size: 14px;
  font-weight: 500;
  color: #808080;
  display: block;
  padding-bottom: 8px;
}
.post-item .info h3 {
  font-size: 20px;
  font-weight: 400;
  padding-bottom: 6px;
}
.post-item .info p {
  color: rgba(0, 0, 0, 0.8);
}
.post-item .info .cats {
  color: #808080;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.post-item .info .external {
  color: #808080;
  font-size: 15px;
  position: relative;
  display: block;
}
.post-item .info .external:before {
  content: "\e908";
  font-family: "icomoon";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  font-size: 24px;
}
.post-item.publication-item figure {
  border: 1px solid #D4D2D0;
}
.post-item.has-gallery {
  cursor: pointer;
}
@media screen and (min-width: 1081px) {
  .post-item figure > img {
    transform: scale(1);
    transition: all 0.4s ease;
  }
  .post-item:hover figure > img {
    transform: scale(1.05);
  }
}

.load_more_holder {
  text-align: center;
  position: absolute;
  bottom: 100px;
  left: 0;
  right: 0;
}
@media screen and (min-width: 1081px) {
  .load_more_holder {
    bottom: 146px;
  }
}

.preloader {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 50%;
  bottom: 113px;
  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.is_loading {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 1081px) {
  .preloader {
    bottom: 160px;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.project-info {
  background: rgba(0, 0, 0, 0.65);
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 99999;
  padding: 40px;
}
.project-info h2 {
  color: #fff;
}
.project-info .popup-details {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1080px) {
  .project-info .popup-details {
    display: none;
  }
}
@media screen and (min-width: 1600px) {
  .project-info .popup-details {
    grid-template-columns: repeat(4, 1fr);
  }
}
.project-info .popup-details > div {
  font-size: 14px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}
.project-info .popup-details > div strong {
  margin-bottom: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: block;
}
.project-info .popup-details > div .value-result {
  display: flex;
  justify-content: flex-start;
}
.project-info .popup-details > div .value-result figure {
  width: 120px;
  margin-right: 13px;
}
.project-info .popup-details > div .value-result .desc {
  flex: 1;
}
.project-info .close-info {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: color 0.2s ease;
}
.project-info .close-info:hover {
  color: rgb(255, 255, 255);
}

.custom-fancybox-loader {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border: 4px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: fancybox-spin 0.8s linear infinite;
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

@keyframes fancybox-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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