.contact-grid-card .posts-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -40px -25px;
}
.contact-grid-card .posts-list > * {
    width: calc(100% / 3);
    padding: 40px 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.contact-grid-card .posts-list > *:not(:last-child) {
    border-right: 1px solid rgba(0,0,0,0.1);
}
.contact-post-card {
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.contact-post-card .post-card__image {
    width: 60px;
    height: 60px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}
.contact-post-card .post-card__image img {
    width: 100% !important;
    height: 100% !important;
    -o-object-fit: cover;
       object-fit: cover;
}
.contact-post-card .post-card__title h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 0;
    
}
.contact-post-card .post-card__description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(34,34,34,0.8)
    margin-top: 7px;
}

@media (max-width: 1199px) {
    .contact-grid-card .posts-list {
        margin: -15px;
    }
    .contact-grid-card .posts-list > * {
        padding: 15px;
    }
 
}

@media (max-width: 991px) {
  .contact-grid-card .posts-list {
        margin: -25px -15px;
    }
    .contact-grid-card .posts-list > * {
        padding: 25px 15px;
    }
   .contact-grid-card .posts-list > * {
        width: calc(100% / 3);
    }
 
    .contact-post-card .post-card__title h3 {
      font-size: 20px;
      line-height: 1.3;
    }
}
@media (max-width: 767px) {
    .contact-grid-card .posts-list > * {
        width: calc(100% / 2);
    }
  .contact-form-box form {
    padding: 30px 20px;
  }
  
}
@media (max-width: 481px) {
    .contact-grid-card .posts-list > * {
        width: 100%;
    }
}