.project-icon{
    padding: 20px;
    box-shadow: var(--primary-shadow);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.project-icon img{
    width: 40px;
    height: 40px;
}
.post-img{
    width: 100%;
    height: 50%;
}
.post-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: var(--svg-shadow);
}

.info{
    display: flex;
    justify-content: space-between;
    width: 65%;
    margin: 0 auto;
    margin-bottom: 62px;
}
.info-item{
    text-align: center;
}
.info h4{
    font-size: 18px;
    margin-bottom: 4px;
}
.info p{
    font-size: 14px;
}

.pf{
    width: 65%;
    margin: 0 auto;
    margin-bottom: 62px;
}
.pf p{
    line-height: 25px;
}
.pf h3{
    width: 100%;
    display: block;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 12px;
}

.gal-2{
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 20px;
   margin-bottom: 62px;
}
.gal-2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: var(--svg-shadow);
}

.img-full{
    width: 100%;
    height: 50%;
    border-radius: 20px;
    box-shadow: var(--svg-shadow);
    margin-bottom: 62px;
    object-fit: cover;
    object-position: center;
}

.testi{
    background-color: #F2F2F2;
    padding: 50px 0;
}
.testi p{
    font-size: 28px;
  font-weight: 500;
  color: #717171;
  text-align: center;
  width: 800px;
  margin: 0 auto;
  line-height: 50px;
  margin-bottom: 20px;
}
.testi p strong{
    color: #050505;
  font-weight: 500;
}
.testi .from{
    display: block;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
}




@media (max-width: 900px) {
    .info{
        width: 80%;
    }
    .pf{
        width: 80%;
    }
    .testi p{
        width: 100%;
        padding: 0 30px;
    }
}

@media (max-width: 700px) {
    .gal-2{
        grid-template-columns: 1fr;
    }
    .testi p{
        font-size: 20px;
        line-height: 34px;
    }
    .info{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        width: 100%;
    }
    .pf{
        width: 100%;
    }
    .info h4{
        font-size: 15px;
        font-weight: 600;
    }
    
}
@media (max-width: 500px) {
    .img-full, .post-img img{
        height: 70%;
    }
}