.space-m {
  display: block;
  height: 65px
}
@media screen and (max-width:1744px) and (min-width:1025px) {
  .space-m {
    height: calc(65 / 1744 * 100vw)
  }
}
@media screen and (max-width:1024px) {
  .space-m {
    height: calc(65 / 1024 * 100vw)
  }
}
@media screen and (max-width:750px) {
  .space-m {
    height: calc(80 / 750 * 100vw)
  }
}