.project-area {
    max-width: 1264px;
    margin: 32px auto;
}
.project-search-result {
    margin: 50px auto;
    text-align: center;
    line-height: 30px;
}
.project-grid {
    display:flex;
    flex-wrap:wrap;
    max-width: 1366px;
}
.project-item {
    /*width: calc(100% / 3 - 20px);*/
    width: 100%;
    margin: 10px 5px 20px;
    padding: 10px 15px;
    background: linear-gradient(350deg, #e7e3d400 0%, #e7e3d4 100%);
    background: linear-gradient(350deg, #e7e3d400 0%, #f3f7fa 100%);
    background: #ffffff;
}
.project-header {
    display: flex;
    border-top: solid 1px #b23850;
    padding: 10px 0px 10px;
}
.project-image {
    width: 120px;
    min-height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.project-title {
    width: 100%;
    min-height: 29px;
}
.project-title a {
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    color: #232C77;
}
.project-short-description {
	font-size: 14px;
	line-height: 20px;
  	font-weight: 400; 
    padding: 0px 10px;
}
.project-customer {
	font-size: 14px;
	line-height: 20px;
  	font-weight: 400; 
    padding: 0px 10px;
	text-align: right;
}
.project-item-cats {
	display: flex;
	gap: 20px;
	align-items: center;
	margin-top: 16px;
}
.project-item-cat-item {
	display: flex;
	align-items: center;
}
.project-item-cat-icon{
    width:16px;
    height:16px;
	margin-right: 8px;
    border-radius:50px;
    font-size:20px;
    line-height:100px;
    text-align:center;
}
.project-item-cat-name{
    font-family: "Open Sans", serif;
	font-size: 14px;
	line-height: 21px;
  	font-weight: 400; 
	color: #3C3C3C;
}

  @media only screen and (max-width: 1200px) {
	.project-item {
 	   width: calc(100% / 2) !important;
	}
	.project-item .project-image {
        width: calc(100% - 20px) !important;
    }
}

  @media only screen and (max-width: 768px) {
    .project-item {
        width:calc(100% / 2) !important;
    }
    .project-image {
        width: 100%;
        height: 230px;
    }
    .project-title a {
        font-size: 16px;
        line-height: 18px;
    }
    .project-item-cat-name {
        font-size: 12px;
        line-height: 18px;
    }

}
@media only screen and (max-width: 480px) {
	.project-item {
 	   width: 100% !important;
	}
	.project-item .project-image {
        width: 100% !important;
    }
}


/* HTML: <div class="loader"></div> */
.loader {
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #b23850;
    --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
    margin: 90px auto;
  }
  @keyframes l3 {to{transform: rotate(1turn)}}