.item_shock {
  width: calc(33.3% - 16px);
  position: relative;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: calc(25% - 16px);
  margin: 8px;
  cursor: pointer;

  &.active {
    .img {
      border: 2px solid #004225;
      border-radius: 10px;
    }
  }
}
.img {
  width: 100%;
  transition: all 0.4s;
  padding: 5px;
  border: 2px solid transparent;
  border-radius: 50%;

  img {
    width: 100%;
    object-fit: contain;
  }
}

.title {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #434343;
  margin: 5px 0;
}

@media (max-width: 1024px) {
  .item_shock {
    width: 80px;
  }
}
