:root {
  --line-width-crossline: 40px;
}

body {
  padding-top: 0;
}

.main_container_coming_soon {
  padding-inline: 2rem;
  padding-bottom: 2rem;
  min-height: 100vh;
}

.grid-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;


  .cta-tertiary {
    grid-column: 1 / span 4;
    grid-row: 3;
    align-self: end;
    padding-top: 3rem;
    padding-bottom: 3rem;
  
    text-decoration: none;
  
  }
  
  button.tertiary-button {
    width: 100%;
    background: white;
    position: relative;
    z-index: 99;
  }
}

.coming {
  padding-top: 8rem;
  grid-column: 2 / span 2;
  text-align: center;
}

.crossline {
  grid-column: 4;
  width: 50%;
  height: 100vh;
  position: relative;
  grid-row: -1 / span 4;
  justify-self: end;
}

.crossline-animated-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    black 0,
    black var(--line-width-crossline),
    transparent var(--line-width-crossline),
    transparent 50%
  );
  background-size: 100px 100px;
  animation: scroll 8s linear infinite;
  z-index: 0;
}

.soon-big-svg {
  grid-column: 2 / span 2;
  display: flex;
  justify-content: center;
  align-items: center;

  img {
    width: 60%;
  }
}

@keyframes scroll {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100px -100px;
  }
}

@media (min-width: 768px) {
  .grid-inner {
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: auto 1.5rem 3rem 1.5rem auto 4.5rem auto;
    width: 100%;

    .cta-tertiary {
      grid-column: 3 / span 4;
      grid-row: 7;
    }
  }
  .main_container_coming_soon {
    padding-top: 11rem;
    padding-inline: 0;
    display: flex;
    align-items: center;
  }

  .crossline.is-horizontal {
    grid-column: 1 / -1;
    grid-row: 3;
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .crossline.is-horizontal .crossline-animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
      135deg,
      #000 0,
      #000 40px,
      transparent 40px,
      transparent 80px
    );
    background-size: 113px 113px;
    animation: scroll-horizontal 2s linear infinite;
  }

  .coming {
    padding-top: 0;
    grid-column: 3 / span 4;
    grid-row: 1;
  }

  .soon-big-svg {
    grid-column: 1 / span 8;
    grid-row: 5;
    padding-inline: 2.5rem;
    img {
      width: 100%;
    }
  }

  

  @keyframes scroll-horizontal {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 113px 0;
    }
  }
}
@media (min-width: 1024px) {
  .grid-inner {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto 1.5rem 3rem 1.5rem auto 3.5rem auto;
    height: 100%;

    .cta-tertiary {
      grid-column: 5 / span 4;
      padding-top: 0;
      align-self: start;
      padding-bottom: 3rem;
    }
  }

  .main_container_coming_soon {
    padding-top: 10rem;
    padding-inline: 0;
  }

  .coming {
    padding-top: 0;
    grid-column: 5 / span 4;
    align-content: center;
  }

  

  .soon-big-svg {
    grid-column: 3 / span 8;
  }

}
