.sl-theme-light {
  --hero-color-top: var(--sl-color-gray-50);
  --hero-color-bottom: var(--sl-color-gray-50);
}

.sl-theme-dark {
  --hero-color-top: var(--sl-color-primary-100);
  --hero-color-bottom: var(--sl-color-primary-50);
}

body {
  margin: 0;
  padding: 0;
}

@keyframes pan {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}

.hero {
  height: 35vh;
}

.hero-container {
  background: linear-gradient(var(--hero-color-top), var(--hero-color-bottom));
  height: 100%;  
  overflow: hidden;
  position: relative;
}

.hero-pattern {
  background-image: url("/assets/svg/code.svg");
  background-size: 3%;  
  position: absolute;
  left: 50%;
  top: 0px;
  translate: -50% 0%;
  z-index: 1;
  height: 100%;
  width: 100%;
  min-width: 1200px;
  opacity: 0.05;
  animation: pan 180s linear infinite;
  will-change: background-position;
}

.hero-gradient-overlay {
  background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,.3));
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  z-index: 2;
}

.hero-content {
  height: 100%;
  position: relative;
  z-index: 3;
}

.hero-content-logo {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content-logo-ack {
  max-width: 300px;
}

.cross-cut-container {
  position: relative;
  min-height: 20px;
  margin-top: -19px;
  z-index: 3;
  background-color: var(--sl-background-color);
  clip-path: polygon(
    0% 47%, 1.25% 0%, 2.5% 47%, 
    3.75% 0%, 5% 47%, 6.25% 0%, 
    7.5% 47%, 8.75% 0%, 10% 47%, 
    11.25% 0%, 12.5% 47%, 13.75% 0%, 
    15% 47%, 16.25% 0%, 17.5% 47%, 
    18.75% 0%, 20% 47%, 21.25% 0%, 
    22.5% 47%, 23.75% 0%, 25% 47%, 
    26.25% 0%, 27.5% 47%, 28.75% 0%, 
    30% 47%, 31.25% 0%, 32.5% 47%, 
    33.75% 0%, 35% 47%, 36.25% 0%, 
    37.5% 47%, 38.75% 0%, 40% 47%, 
    41.25% 0%, 42.5% 47%, 43.75% 0%, 
    45% 47%, 46.25% 0%, 47.5% 47%, 
    48.75% 0%, 50% 47%, 51.25% 0%, 
    52.5% 47%, 53.75% 0%, 55% 47%, 
    56.25% 0%, 57.5% 47%, 58.75% 0%, 
    60% 47%, 61.25% 0%, 62.5% 47%, 
    63.75% 0%, 65% 47%, 66.25% 0%, 
    67.5% 47%, 68.75% 0%, 70% 47%, 
    71.25% 0%, 72.5% 47%, 73.75% 0%, 
    75% 47%, 76.25% 0%, 77.5% 47%, 
    78.75% 0%, 80% 47%, 81.25% 0%, 
    82.5% 47%, 83.75% 0%, 85% 47%, 
    86.25% 0%, 87.5% 47%, 88.75% 0%, 
    90% 47%, 91.25% 0%, 92.5% 47%, 
    93.75% 0%, 95% 47%, 96.25% 0%, 
    97.5% 47%, 98.75% 0%, 100% 47%, 
    100% 100%, 0% 100%
  );
}

@media(max-width: 600px) {
  .cross-cut-container {
    clip-path: polygon(
      0% 47%, 3.75% 0%,
      7.5% 47%, 11.25% 0%,
      15% 47%, 18.75% 0%,
      22.5% 47%, 26.25% 0%,
      30% 47%, 33.75% 0%,
      37.5% 47%, 41.25% 0%,
      45% 47%, 48.75% 0%,
      52.5% 47%, 56.25% 0%,
      60% 47%, 63.75% 0%,
      67.5% 47%, 71.25% 0%,
      75% 47%, 78.75% 0%,
      82.5% 47%, 86.25% 0%,
      90% 47%, 93.75% 0%,
      97.5% 47%, 101.25% 0%,
      100% 100%, 0% 100%
    );
  }
}

.toggler-top-right {
  position: fixed;
  top: 10px;
  right: 5px;
  padding: 0 5px;
  z-index: 4;
}

.toggler-top-right-flex {
  display: flex;
  height: 2em;
}

.block-content-left-title {
  grid-area: block-content-left-title;
  padding: .5em;
  padding-bottom: 1em;
  font-size: 2.5em;
}

.block-content-left-text {
  grid-area: block-content-left-text;
  padding: 0px 20px;
  font-size: 1.5em;
}

.block-content-left-image {
  grid-area: block-content-left-image;
  padding: 20px;
  text-align: center;
}

.block-content-left-image img {
  width: 100%;
}

.icon-svg {
  width: 100%;
  fill: var(--local-color-neutral-1000, #888);
  stroke: var(--local-color-neutral-1000, #888);
  paint-order: fill stroke;
}

.block-content-left {
  display: grid;
  align-items: center;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto;
  grid-template-areas: 
    "block-content-left-title block-content-left-image"
    "block-content-left-text block-content-left-image";
}

@media(max-width: 900px) {
  .block-content-left {
    grid-template-columns: 3fr 2fr;
    grid-template-rows: auto;
    grid-template-areas: 
      "block-content-left-title block-content-left-image"
      "block-content-left-text block-content-left-text";
  }
}

@media(max-width: 600px) {
  .block-content-left {
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
    grid-template-areas: 
      "block-content-left-image"
      "block-content-left-title"
      "block-content-left-text";
  }

  .block-content-left-image img {
    width: 50%;
  }
}