/* Universal breakpoints */
@keyframes from-right {
  0% {
    opacity: 0;
    transform: translateX(40rem); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

.simple-text-hero {
  position: relative;
  max-width: 1440px;
  box-sizing: border-box;
  margin: auto;
  height: 600px;
  display: flex;
  align-items: center;
  padding-left: 10%; }
  @media (max-width: 767px) {
    .simple-text-hero {
      align-items: flex-end;
      padding: 40px 16px;
      height: 400px; } }
  .simple-text-hero .image-and-gradient-positioning {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0; }
  .simple-text-hero .gradient {
    background: linear-gradient(80deg, #3b3d49 0%, rgba(59, 61, 73, 0) 100%);
    z-index: 1; }
  .simple-text-hero img {
    -o-object-fit: cover;
    object-fit: cover; }
  .simple-text-hero .text {
    position: relative;
    z-index: 2;
    color: white; }
    @media (min-width: 768px) {
      .simple-text-hero .text {
        max-width: 585px; } }
  .simple-text-hero h1 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 64px;
    line-height: 76px; }
    @media (max-width: 991px) {
      .simple-text-hero h1 {
        font-size: 52px;
        line-height: 64px; } }
    @media (max-width: 767px) {
      .simple-text-hero h1 {
        font-size: 42px;
        line-height: 52px; } }
