.categorySectionContainer{
    gap:20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:40px 0px 10px 0px;
}

.catItem{
    cursor: pointer;
    color:#000000;
    font-size: 20px;
    font-weight: 600;
    transition: 0.5s all;
    text-decoration: none;
}

.catItem:hover{
    color:#345090;
}

.activeCat{
    color:#345090;
}

.noProject{
    gap:10px;
    display: flex;
    font-size: 18px;
    color:#515151;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-transform: capitalize;
}

.noProject i{
    font-size: 40px;
}

.allCardsContainer{
    gap:40px;
    display: flex;
    flex-wrap: wrap;
    padding:40px 20px;
    align-items: start;
    justify-content: center;
}

.cardContainer{
    width:300px;
    height:300px;
    display: flex;
    overflow: hidden;
    align-items: start;
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 0px 5px #000000;
}

.cardContainer:hover{
    transition: 0.5s all;
    transform: scale(1.05);
    box-shadow: 0px 0px 10px #000000;
}

.cardContainer:hover .viewMoreIcon,
.cardContainer.active .viewMoreIcon{
    display: flex;
}

.cardImageContainer{
    width:100%;
    height:100%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

.cardImageContainer img{
    width:100%;
    height:100%;
    border-radius: 10px;
}

.viewMoreIcon,
.badges{
    position: absolute;
}

.viewMoreIcon{
    top:0;
    left:0;
    right:0;
    bottom:0;
    display: none;
    color:#ffffff;
    padding: 5px 10px;
    align-items: center;
    border-radius: 10px;
    justify-content: center;
    animation: cardAnimation 0.5s linear;
    box-shadow: 0px 0px 5px #000000;
    background-color:rgba(0,0,0,0.7);
}

@keyframes cardAnimation {
    0%{
        opacity: 0;
        transform: translateY(150px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

.viewMoreIcon span{
    padding:10px;
    border-radius: 10px;
    background-color: #345090;
}

.viewMoreIcon span:hover{
    padding:10px;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.5s all;
    background-color: #6b9ee0;
}

.badges{
    gap:10px;
    top:10px;
    left:10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badgesAr{
    left:unset;
    right:10px;
}

.badge{
    padding:8px;
    display: flex;
    color:#ffffff;
    font-size: 15px;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 5px #000000;
}

.margin2{
    margin-right: 10px;
}

.hvacBadge{
    background-color: #345090;
}

.fireBadge{
    background-color: #990000;
}

.plumbingBadge{
    background-color: #bcb900;
}

.gasBadge{
    background-color: #005f1c;
}

.cardContentsContainer{
    bottom:0;
    width:100%;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.8);
}

.cardContents{
    width:100%;
    display: flex;
    padding: 10px 10px;
    align-items: center;
    justify-content: space-between;
}

.cardTitle{
    width:85%;
    color:#ffffff;
    font-size: 18px;
    font-weight: 600;
}

.cardDescription{
    font-size: 15px;
    color:#515151;
    font-weight: 500;
}

.projectInfo,
.projectInfoLoc{
    gap:10px;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: start;
}

.projectInfoLoc{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.projectInfo div{
    width:95%;
    font-size: 16px;
    font-weight: 500;
}

.projectInfo span{
    font-size: 16px;
    color:#345090;
    font-weight: 600;
}

.cardTitleLocation{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.projectLocation{
    display: flex;
    align-items: center;
    justify-content: center;
}

.projectLocationIcon{
    width:30px;
    height:30px;
    font-size:15px;
    display: flex;
    color:#ffffff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: #345090;
}

@media screen and (max-width: 1024px) {
    .badge{
        padding:8px;
        font-size: 13px;
    }
}

@media screen and (max-width: 768px) {
    .catItem{
        font-size: 18px;
    }
}

@media screen and (max-width: 426px) {
    .projectLocation{
        display: none;
    }
    .cardTitle{
        width:100%;
    }
    .categorySectionContainer{
        width:300px;
        overflow-x: auto;
        justify-content: start;
    }
    .noProject{
        font-size: 16px;
    }
    
    .noProject i{
        font-size: 30px;
    }
}