 * {
     box-sizing: border-box;
 }

 body {
     background: transparent;
     min-height: 100vh;
     padding: 0;
     margin: 0;

     font-size: 18px;
     line-height: 1.5;
     font-weight: 400;
     -moz-osx-font-smoothing: grayscale;
     word-break: break-word;
     -webkit-font-smoothing: antialiased;
     font-family: "Plus Jakarta Sans", sans-serif;
     font-optical-sizing: auto;
     font-weight: 400;
     font-style: normal;
     font-variant-ligatures: no-common-ligatures;
 }

 body::-webkit-scrollbar {
     width: 0;
 }

 body::-webkit-scrollbar-track {
     background: transparent
 }

 body::-webkit-scrollbar-thumb {
     background-color: #888;
     border-radius: 10px;
     border: none;
 }

 body::-webkit-scrollbar-thumb:hover {
     background: #555;
 }

 .gallery {
     position: absolute;
     width: 100%;
     height: 100vh;
     overflow: hidden;
 }

 .cards {
     position: absolute;
     width: 100%;
     max-width: 700px;
     height: 100%;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
 }

 .cards li {
     position: absolute;
     top: 0;
     left: 0;
     list-style: none;
     width: 100%;
     padding: 0 30px !important;
 }

 .project-card {
     /* max-width: 700px; */
     display: flex;
     background-color: #fff;
     padding: 20px;
     border-radius: 4px;
     gap: 20px;
     font-size: 16px;
 }

 .project-card .img-block {
     width: 30%;
     display: flex;
     align-items: start;
     justify-content: center;
     padding: 20px;
 }

 .project-card img {
     width: 100%;
 }

 .project-card .text-block {
     width: 60%;
 }

 .project-card .text {
     display: flex;
     align-items: center;
     margin-bottom: 12px;
     gap: 8px;
     flex-wrap: wrap;
 }

 .project-card .text h4 {
     font-size: 22px;
     margin: 0;
 }

 .project-card .link {
     text-decoration: none;
     color: #111;
     padding-bottom: 2px;
     border-bottom: 1px solid rgba(0, 0, 0, 0.25);
 }

 .project-card .link:hover {

     border-bottom-color: rgba(0, 0, 0, 1);
 }

 .project-card .price {
     color: #27971D;
 }

 .project-card .link-status {
     margin-left: 4px;
     color: rgba(17, 17, 17, 0.6);
 }

 .project-card .lifespan {
     color: rgba(17, 17, 17, 0.6);
 }

 @media screen and (max-width:600px) {
     .project-card {
         flex-direction: column;
     }

     .project-card .img-block {
         width: 100%;
     }

     .project-card .img-block img {
         max-width: 70%;
     }

     .project-card .text-block {
         width: 100%;
     }
 }

 .actions {
     position: absolute;
     top: 40%;
     right: 16px;
     transform: translateY(-50%);
     visibility: hidden;
 }

 .drag-proxy {
     visibility: hidden;
     position: absolute;
 }