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