

.cc-featured-projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
/*-gap: 0px 0px;*/
    grid-template-areas:
"top top"
"left right"!important;
    gap: 30px;
    justify-items: center;
}
.cc-projects-grid {

    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
"elem elem"
}



.cc-projects-grid .item{

    position: relative;
    background:#EBEBEB;
    width:100%;
    border-radius:32px;
    overflow:hidden;

}

.cc-projects-grid .item img{

    margin:0!important;
    width:100%!important;
    height:100%!important;

    -webkit-transition: -webkit-transform .4s ease-in;
    transition: -webkit-transform .4s ease-in;
    transition: transform .4s ease-in;
    transition: transform .4s ease-in,-webkit-transform .4s ease-in;
}

.cc-featured-projects-grid .item img:hover{

    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.cc-projects-grid .item .item-categories {
    position: absolute;
    bottom: 0;
    margin-left: 1rem;
    margin-bottom: 1.5rem;
}
.cc-projects-grid .item .item-categories span{

    background:white;
    color:black;
    border-radius:30px;
    padding: 12px 20px;
    margin-right:10px;
    font-size: 18px;
    font-weight: 400;

}

.cc-projects-grid .elem {

    grid-area: elem;

}


.cc-featured-projects-grid .top {

    grid-area: top;

}
.cc-featured-projects-grid .left {

    grid-area: left;


}
.cc-featured-projects-grid .right {

    grid-area: right;

}

.ce-project-item {
    display: grid;
    align-content: space-between;
    width: 100%;
}


@media only screen and (min-width: 851px) and (max-width: 1000px) {

}

@media only screen and (min-width: 1001px) and (max-width: 1099px) {

}

@media only screen and (min-width: 1100px) {

}




