#main-img-block {
  background-color: white;
  display: flex;
  flex-direction: column;
  margin-right: 20px;
}

@media (max-width: 992px) {
  #main-img-block {
    align-items: center;
    margin-bottom: 15px;
    margin-right: 0;
  }
}

.main-img-pair {
  display: flex;
}

@media (max-width: 992px) {
  .main-img-pair {
    max-width: 75%;
    max-height: 75%;
  }
}

.main-img-block-element {
  max-width: 50%;
}

@media (max-width: 375px) {
  .main-img-pair {
    flex-direction: column;
    align-items: center;
  }

  .main-img-block-element {
    max-width: 100%;
  }
}

.flex-neighbours {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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


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

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

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

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

