.grid-wrap{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: auto;
	grid-gap:20px;
}
.talking-pt{
    
}
.talking-pt img{
    max-width: 100%;
    height: auto;
}
@media all and (max-width:480px){
    .grid-wrap{
        grid-template-columns: repeat(3, 1fr);
    }
}
@media all and (min-width:720px) and (max-width:899px){
    .grid-wrap{
        grid-template-columns: repeat(4, 1fr);
    }
}
@media all and (min-width:900px) and (max-width:1199px){
    .grid-wrap{
        grid-template-columns: repeat(4, 1fr);
    }
}
