.contacts__item {
	width: 100%;
}

.contacts__content {
  display: flex;
}

.contacts__list {
  flex-shrink: 0;
  margin-right: 15px;
}

.contacts-gallery {
  display: flex;
  flex-wrap: wrap;
}

.contacts-gallery__item {
 width: calc((100% / 3) - 20px);
  margin: 10px 5px;
  padding: 5px 5px 15px 5px;
  overflow: hidden;
}


.contacts-gallery__item-img {
  position: relative;
  display: block;
  height: 200px;
  width: 100%;
  max-width: 300px;
  margin-bottom: 10px;
}

.contacts-gallery__item-img > img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: top;

}

.contacts-gallery__item-title {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 16px;
}
@media (min-width: 1024px) {
	.contacts__item {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        width: 50% !important;
        padding: 0 15px;
    }
	.contacts__list {
		width: 100%;
	}
}

@media screen and (max-width: 1024px) {
  .contacts__content{
      flex-direction: column;
  }
  .contacts__list{
      margin-right: 0;
  }
  @media screen and (max-width: 640px) {
      .contacts-gallery__item{
          width: calc((100% / 2) - 20px);
      }
  }
}