/*Suggestion Posts Element*/
.suggestion-posts{
	display: flex;
	padding-top: 50px;
	flex-wrap: wrap;
}
.suggestion-posts-item{
	display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2) !important;
	width: calc(16.66% - 26px);
    padding: 10px;
    margin: 0 13px;
}
.suggestion-posts-item img{
	border-radius: 30% 70% 33% 67% / 65% 33% 67% 35% !important;
	margin-top: -50px;
	transition-duration: 0.3s;
}
.suggestion-posts-item:hover>img{
	border-radius: 10px !important;
}
.suggestion-posts-item span{
    font-weight: 300;
    font-size: 16px;
    padding-top: 10px;
    text-align: center;
	margin-top: 20px;
}

@media only screen and (max-width: 360px)
{
  .suggestion-posts-item{
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (max-width: 450px)
{
    .suggestion-posts-item{
        width: calc(45% - 26px);
      }
}
@media screen and (max-width:800px){
    .suggestion-posts-item{
        width: 46%;
        margin-bottom: 60px;
      }
}