
.Theme_PlanProject {
    position: relative;
    padding: 80px  0 0;
}
.Theme_PlanProject .project-group{
  
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    bottom: 100%;
    right: 0;
}
.Theme_PlanProject .project-group a{
    height: 34px;
    line-height: 32px;
    padding: 0px 14px;
    white-space: nowrap;
    border:1px solid #252f39;
    border-radius:  17px;
    margin:8px 0 8px 8px;
    font-size: 14px;
    transition: all ease-in 300ms;
}
 

.Theme_PlanProject .project-group .icon{
    width: 33px;
    height: 39px;
    background: url("images/group.png");
    margin-right: 10px;
}

.Theme_PlanProject .project-group a::before{
    content: "+";
    margin-right: 5px;
    display: inline-block;
    width: 10px;
    text-align: center;
}
.Theme_PlanProject .project-group a.active{
    background-color: #252f39;
    color: #fff;
}
.Theme_PlanProject .project-group a.active::before{
    content: "-";
}


.Theme_PlanProject .project-main{
    display: flex;
    flex-wrap: wrap;
    margin:0 -15px;
}

.Theme_PlanProject .project-main .project-item{
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    padding: 15px;
}
.Theme_PlanProject .project-main img{
    width: 100%;
}
.Theme_PlanProject .photo{
    position: relative;
}

.Theme_PlanProject .photo .pic{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.Theme_PlanProject .Title{
    position: absolute;
    bottom: 20px;
    left: 25px;
    background-color: #252f39;
    padding: 7px 20px;
    line-height: 34px;
    color: #FFF;
    border-radius: 18px;
    font-size: 18px;
    max-width: calc(100% - 50px);
    line-height: 1.2;
}

.Theme_PlanProject .link{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.6);
    opacity: 0;
    transition: all ease-in 300ms;
}
.Theme_PlanProject .project-item:hover .link{
    opacity: 1;
}
.Theme_PlanProject .link .icon{
    width: 52px;
    height: 52px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -26px 0 0 -26px;
}
.Theme_PlanProject .link .icon::after{
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    left: 0;
    top: 0;
    position: absolute;
    border:2px solid #FFFF;
}
.Theme_PlanProject .link .icon::before{
    content: "";
    width: 25px;
    border-bottom: 2px solid #FFF;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: rotate(45deg);
    transform-origin: right bottom;
}


@media (max-width: 991px){
    .Theme_PlanProject .project-main .project-item{
        flex: 0 0 50%;
        max-width: 50%;
    }
    .Theme_PlanProject{

        padding: 40px 0 0;}
    .Theme_PlanProject .project-group{
        position: static;
    }
}


@media (max-width: 767px){
    .Theme_PlanProject .project-main .project-item{
        flex: 0 0 100%;
        max-width: 100%;
    }
    .Theme_PlanProject .project-group{
        position: static;
    }
}

.personalBarContainer ~ .dng-main .Theme_PlanProject{
    margin-top: 50px;
}