.img {
  width: calc(var(--img-block-width) - var(--standart-margin));
}

:root {
  --img-block-width: 180px;
}

@media (max-width: 992px) {
  :root {
    --img-block-width: 180px;
  }
}

@media (max-width: 768px) {
  :root {
    --img-block-width: 170px;
  }
}

@media (max-width: 450px) {
  :root {
    --img-block-width: 140px;
  }
}

@media (max-width: 320px) {
  :root {
    --img-block-width: 120px;
  }
}
