/* HERO_BREAKPOINT_EDITOR_DATA
{
  "mobile-sm": {
    "title": {
      "x": 10,
      "y": 0,
      "scale": 1.13
    },
    "body": {
      "x": 17,
      "y": -30,
      "scale": 1
    },
    "button": {
      "x": 0,
      "y": 26,
      "scale": 1
    },
    "astronaut": {
      "x": -68,
      "y": -179,
      "scale": 1.2
    }
  },
  "mobile-lg": {
    "title": {
      "x": 13,
      "y": 0,
      "scale": 1.33
    },
    "body": {
      "x": 23,
      "y": 0,
      "scale": 1
    },
    "button": {
      "x": 23,
      "y": 8,
      "scale": 1
    },
    "astronaut": {
      "x": -120,
      "y": 120,
      "scale": 1.51
    }
  },
  "tablet-sm": {
    "title": {
      "x": -145,
      "y": 51,
      "scale": 1.2
    },
    "body": {
      "x": -136,
      "y": 40,
      "scale": 1
    },
    "button": {
      "x": -136,
      "y": 47,
      "scale": 0.94
    },
    "astronaut": {
      "x": -54,
      "y": -46,
      "scale": 1.24
    }
  },
  "tablet-lg": {
    "title": {
      "x": 12,
      "y": 20,
      "scale": 1.28
    },
    "body": {
      "x": 25,
      "y": 16,
      "scale": 1
    },
    "button": {
      "x": 26,
      "y": 26,
      "scale": 0.92
    },
    "astronaut": {
      "x": -14,
      "y": -84,
      "scale": 1.15
    }
  },
  "desktop-sm": {
    "title": {
      "x": 50,
      "y": 58,
      "scale": 1
    },
    "body": {
      "x": 59,
      "y": -13,
      "scale": 1
    },
    "button": {
      "x": 56,
      "y": -7,
      "scale": 0.95
    },
    "astronaut": {
      "x": -20,
      "y": -216,
      "scale": 0.96
    }
  },
  "desktop-md": {
    "title": {
      "x": 21,
      "y": 39,
      "scale": 1.1
    },
    "body": {
      "x": 34,
      "y": -10,
      "scale": 1
    },
    "button": {
      "x": 34,
      "y": -9,
      "scale": 1
    },
    "astronaut": {
      "x": -57,
      "y": -225,
      "scale": 0.96
    }
  },
  "desktop-lg": {
    "title": {
      "x": 1,
      "y": 7,
      "scale": 1.1
    },
    "body": {
      "x": 12,
      "y": -52,
      "scale": 1
    },
    "button": {
      "x": 10,
      "y": -54,
      "scale": 1
    },
    "astronaut": {
      "x": 0,
      "y": 0,
      "scale": 1
    }
  }
}
*/

@media (max-width: 560px) {
  .hero-premium .hero-premium-title {
    transform: translate(10px, 0px) scale(1.13);
    transform-origin: top left;
  }

  .hero-premium .hero-premium-body {
    transform: translate(17px, -30px) scale(1);
    transform-origin: top left;
  }

  .hero-premium .hero-premium-actions {
    transform: translate(0px, 26px) scale(1);
    transform-origin: top left;
  }

  .hero-premium {
    --hero-astronaut-x: -68px;
    --hero-astronaut-y: -179px;
  }

  .hero-premium .hero-premium-astronaut-scale {
    transform: scale(1.2);
    transform-origin: center bottom;
  }
}

@media (max-width: 430px) {
  .hero-premium {
    --hero-astronaut-x: -45px;
    --hero-astronaut-y: -132px;
  }

  .hero-premium .hero-premium-astronaut-scale {
    transform: scale(1.02);
    transform-origin: center bottom;
  }
}

@media (min-width: 561px) and (max-width: 720px) {
  .hero-premium .hero-premium-title {
    transform: translate(13px, 0px) scale(1.33);
    transform-origin: top left;
  }

  .hero-premium .hero-premium-body {
    transform: translate(23px, 0px) scale(1);
    transform-origin: top left;
  }

  .hero-premium .hero-premium-actions {
    transform: translate(23px, 8px) scale(1);
    transform-origin: top left;
  }

  .hero-premium {
    --hero-astronaut-x: -120px;
    --hero-astronaut-y: 120px;
  }

  .hero-premium .hero-premium-astronaut-scale {
    transform: scale(1.51);
    transform-origin: center bottom;
  }
}

@media (min-width: 721px) and (max-width: 860px) {
  .hero-premium .hero-premium-title {
    transform: translate(-145px, 51px) scale(1.2);
    transform-origin: top left;
  }

  .hero-premium .hero-premium-body {
    transform: translate(-136px, 40px) scale(1);
    transform-origin: top left;
  }

  .hero-premium .hero-premium-actions {
    transform: translate(-136px, 47px) scale(0.94);
    transform-origin: top left;
  }

  .hero-premium {
    --hero-astronaut-x: -54px;
    --hero-astronaut-y: -46px;
  }

  .hero-premium .hero-premium-astronaut-scale {
    transform: scale(1.24);
    transform-origin: center bottom;
  }
}

@media (min-width: 861px) and (max-width: 1024px) {
  .hero-premium .hero-premium-title {
    transform: translate(12px, 20px) scale(1.28);
    transform-origin: top left;
  }

  .hero-premium .hero-premium-body {
    transform: translate(25px, 16px) scale(1);
    transform-origin: top left;
  }

  .hero-premium .hero-premium-actions {
    transform: translate(26px, 26px) scale(0.92);
    transform-origin: top left;
  }

  .hero-premium {
    --hero-astronaut-x: -14px;
    --hero-astronaut-y: -84px;
  }

  .hero-premium .hero-premium-astronaut-scale {
    transform: scale(1.15);
    transform-origin: center bottom;
  }
}

@media (min-width: 1025px) and (max-width: 1199px) {
  .hero-premium .hero-premium-title {
    transform: translate(50px, 58px) scale(1);
    transform-origin: top left;
  }

  .hero-premium .hero-premium-body {
    transform: translate(59px, -13px) scale(1);
    transform-origin: top left;
  }

  .hero-premium .hero-premium-actions {
    transform: translate(56px, -7px) scale(0.95);
    transform-origin: top left;
  }

  .hero-premium {
    --hero-astronaut-x: -20px;
    --hero-astronaut-y: -216px;
  }

  .hero-premium .hero-premium-astronaut-scale {
    transform: scale(0.96);
    transform-origin: center bottom;
  }
}

@media (min-width: 1200px) and (max-width: 1279px) {
  .hero-premium .hero-premium-title {
    transform: translate(21px, 39px) scale(1.1);
    transform-origin: top left;
  }

  .hero-premium .hero-premium-body {
    transform: translate(34px, -10px) scale(1);
    transform-origin: top left;
  }

  .hero-premium .hero-premium-actions {
    transform: translate(34px, -9px) scale(1);
    transform-origin: top left;
  }

  .hero-premium {
    --hero-astronaut-x: -57px;
    --hero-astronaut-y: -225px;
  }

  .hero-premium .hero-premium-astronaut-scale {
    transform: scale(0.96);
    transform-origin: center bottom;
  }
}

@media (min-width: 1280px) {
  .hero-premium .hero-premium-title {
    transform: translate(1px, 7px) scale(1.1);
    transform-origin: top left;
  }

  .hero-premium .hero-premium-body {
    transform: translate(12px, -52px) scale(1);
    transform-origin: top left;
  }

  .hero-premium .hero-premium-actions {
    transform: translate(10px, -54px) scale(1);
    transform-origin: top left;
  }

  .hero-premium {
    --hero-astronaut-x: 0px;
    --hero-astronaut-y: 0px;
  }

  .hero-premium .hero-premium-astronaut-scale {
    transform: scale(1);
    transform-origin: center bottom;
  }
}
