.box_project:nth-child(1)::before,
.box_project:nth-child(2)::before,
.box_project:nth-child(3)::before {
  content: "New";
  width: 42px;
  height: 18px;
  background-color: #f7008b;
  color: white;
  position: absolute;
  padding: 6px 9px 4px 9px;
  border-radius: 4px;
  right: 10px;
  top: 10px;
  box-shadow: 0px 0px 20px var(--shodocolor);
  font-weight: bold;
  letter-spacing: 1px;
  z-index: 1;
  display: none !important;
}
.blurred-img::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: pulse 2.5s infinite;
    background-color: white;
}

@keyframes pulse {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.1;
    }

    100% {
        opacity: 0;
    }
}

.blurred-img {
    filter: blur(5px);
    width: 100%;
    height: 312px;
    overflow: hidden;
    border-radius: 9px;
}

.blurred-img.loaded {
    filter: blur(0px);

}

.blurred-img.loaded::before {
    animation: none;
    content: none;
}

.blurred-img img {
    opacity: 0;
    transition: opacity 250ms ease-in-out;
    width: 100%;
    height: 100%;
}

.blurred-img.loaded img {
    opacity: 1;
}
@media (max-width: 559px) {
  .box_project {
    width: 14rem !important;
    height: auto !important;
  }
  .box_project .blurred-img {
    width: 100% !important;
    height: 261px !important;
  }
  .box_project img {
    height: 261px !important;
  }
}
@media (max-width: 495px) {
  .box_project {
    width: 11.8rem !important;
    height: auto !important;
    margin: 7px !important;
  }
  .box_project .blurred-img {
    width: 100% !important;
    height: 229px !important;
  }
  .box_project img {
    height: 229px !important;
  }
}
@media (max-width: 425px) {
  .box_project {
    width: 100% !important;
    max-width: 11rem;
    height: auto !important;
    margin: 7px !important;
  }
  .box_project .blurred-img {
    width: 100% !important;
    height: 202px !important;
  }
  .box_project img {
    height: auto !important;
  }
}
 @media (max-width:379px) {
   .box_project .blurred-img {
      width: 100% !important;
      height: 160px !important;
    }
}
