* {
  box-sizing: border-box;
}
:root { font-family: "Inter", sans-serif; }
@supports (font-variation-settings: normal) {
  :root { font-family: "InterVariable", sans-serif; font-optical-sizing: auto; }
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("InterVariable.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("InterVariable-Italic.woff2") format("woff2");
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("Montserrat-VF.woff2") format("woff2");
}
@font-face {
  font-family: Montserrat;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("Montserrat-Italic-VF.woff2") format("woff2");
}

h1, h2, h3, h4, h5, h6{
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variant: small-caps;
  margin: 0 0 1em 0;
  }
h1{
  line-height: 2.5rem;
}

body {
  margin: 0;
  background-color: var(--surface);
  color: var(--on-surface);
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

header{
  min-height: 6rem;
  width: 100%;
  height: unset;
  background-color: var(--primary-fixed);
  color: var(--on-primary-fixed);
  position: fixed;
  z-index: 999;
  padding: 1rem;
  top: 0;
}
header > div{
  max-width: 84rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
}
header img{
    max-width: 50%;
    aspect-ratio: auto 300 / 117;
    object-fit: contain;
    }
footer{
  width: 100%;
  height: unset;
  background-color: var(--surface-container-high);
  color: var(--on-surface);
  z-index: 999;
  padding: 1rem;
}
footer > div{
  max-width: 84rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  flex-wrap: wrap;
}
.screen-reader-text {
    border: 0;
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}
footer ul {
    list-style-type: none;
    padding: 0;
}
footer a{
  color: var(--on-surface);
}
footer a svg{
    fill: currentColor;
}

nav {
    display: flex;
    margin-left: 0;
    margin-right: 0;
    max-width: 50%;
}
nav ul {
    list-style-type: none;
    display: flex;
    flex-wrap:wrap;
    flex-direction: row;
    padding:0;
    justify-content: flex-end;
    margin: 0;
}
nav ul li {
    display: inline-flex;
    margin: 0.3em 1em;
    font-weight: 700;
    align-self: center;
}
nav input[type='checkbox'], nav label {
    display: none;
}
@media (max-width: 768px) {
    nav {
        flex-direction: row-reverse;
        flex-wrap: wrap;
        margin-left: 0;
        margin-right: 0;
        width: min-content;
        position: relative;
    }
    nav ul {
        width: 100%;
        flex-basis: 100%;
    }
    nav ul li {
      display: block;
        margin: 0;
        width: 100%;
        text-align: right;
        padding: 0.5em;
    }
    input[type='checkbox']:not(:checked)+ul {
      display: none;
    }
    nav label {
      text-align: right;
      font-size: 2em;
      display: block;
      padding: 0.5em;
      line-height: 1.6em;
    }
}
nav a{
  color: var(--on-primary-fixed);
  text-decoration: none;
}

section{
  width: 100%;
  padding: 1rem;
  border-radius:.5rem;
  background-color: var(--surface);
  border: light-dark(var(--rust-200), var(--rust-700)) solid .25rem;
}
section:not(:nth-last-child(1)){
  margin-bottom: 2rem;
}
section h2{
  color: var(--on-primary);
  font-size: 3rem;
  color: var(--rust-500);
  font-size: 3rem;
  max-width: max-content;
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}
section > div{
  max-width: 80rem;
  position: relative;
  z-index: 1;
}
.container-img{
  display: flex;
  align-items: center;
}
.surface:has(.content){
  /* container-type: inline-size; */
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -1rem;
  background-color: var(--surface);
}
.container{
  padding: 1rem;
  /* border-radius: 1rem; */
}
.container:not(.high){
  background-color: var(--surface-container);
}
.container.high:not(.hero){
  background-color: var(--surface-container-high);
  border-radius: .5rem;
}
section > div > *:not(:nth-last-child(1)){
  margin-bottom: 1rem;
}
main{
  margin: calc(100px + 1rem) 0 1rem;
}
.content{
  max-width: calc(80rem + 4rem);
  margin: 0 auto;
  /* border-radius: 1.5rem; */
}
.elevated{
  box-shadow: 0 5px 5px 5px var(--shadow);
}
.centered{
  display: block;
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
}
.txt-centered{
  text-align: center;
}

.hero{
  z-index: 100;
  padding: 9rem;
  margin-top: 8rem;
  background-color: var(--surface-container-high);
  font-size: clamp(1rem, 1.5rem, 3vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  /* height: calc(100svh - 3rem); */
  background-image: linear-gradient(to bottom, light-dark(var(--primary-90), var(--primary-20)) 2px, transparent 2px), linear-gradient(to right, light-dark(var(--primary-90), var(--primary-20)) 2px, transparent 2px);
  background-size: 40px 40px;
  background-position: center top;
  overflow: hidden;
  position:relative;
}
.hero::before{
  content: "";
  width: calc(33cqi + 6rem);
  height: calc(33cqi + 6rem);
  background-color: light-dark(var(--primary-10), var(--primary-80));
  border-radius: 100% 0 0 0;
  position:absolute;
  bottom:0;
  right:0;
  mix-blend-mode: overlay;
}
.hero::after{
  content: "";
  width: calc(33cqi + 6rem);
  height: calc(33cqi + 6rem);
  background-color: light-dark(var(--primary-30), var(--primary-80));
  border-radius: 0 0 100% 0;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: overlay;
}

.flex{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex-direction: row;
}
.flex > .flex-split{
  flex-basis: calc(50% - 0.5rem);
  flex-grow: 1;
  flex-shrink: 1;
}
.grid-2col{
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 1rem;
}
.span2{
  grid-column: span 2;
}
.span-all{
  grid-column: 1 / -1;
  flex-basis:100%;
}
.img-fit-center{
  object-fit: contain;
  object-position: center;
width: 100%;
height: 100%;
}

ol {
  list-style-type: none;
  counter-reset: item-counter;
  margin: 0;
  padding: 0;
}
ol > li {
  counter-increment: item-counter;
  position: relative; 
  padding-left: 2em;
}
ol > li::before {
  content: counter(item-counter, decimal-leading-zero) " ";
  position: absolute;
  left: 0;
}

button{
  user-select: none;
  font-family: unset;
  font-size: 1.5em;
  background-color: var(--primary-fixed);
  color: var(--on-primary-fixed);
  border: 2px solid light-dark(oklch(from var(--primary-fixed) calc(l - .2) c h), oklch(from var(--primary-fixed) calc(l + .2) c h));
  border-radius: .25rem;
  padding: 1rem;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 5px light-dark(oklch(from var(--primary-fixed) calc(l - .2) c h), oklch(from var(--primary-fixed) calc(l + .2) c h));
  position:relative;
  overflow:clip;
  -webkit-tap-highlight-color: transparent;
}
button.elevated{
  box-shadow: 0 5px light-dark(oklch(from var(--primary-fixed) calc(l - .2) c h), oklch(from var(--primary-fixed) calc(l + .2) c h)), 0 5px 5px 5px var(--shadow);
}
@media (hover: hover) {
    button:hover::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    background-color: var(--on-primary);
    opacity: .2;
  }
}
button:active{
  transform: translateY(4px);
  box-shadow: 0 1px light-dark(oklch(from var(--primary-fixed) calc(l - .2) c h), oklch(from var(--primary-fixed) calc(l + .2) c h));
}
button.elevated:active{
  transform: translateY(4px);
  box-shadow: 0 1px light-dark(oklch(from var(--primary-fixed) calc(l - .2) c h), oklch(from var(--primary-fixed) calc(l + .2) c h)), 0 2px 2px 2px var(--shadow);
}
button:active::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height:100%;
  background-color: var(--on-primary);
  opacity: .5;
}
.button{
  user-select: none;
  font-family: unset;
  font-size: 1.5em;
  background-color: var(--primary-fixed);
  color: var(--on-primary-fixed);
  border: 2px solid light-dark(oklch(from var(--primary-fixed) calc(l - .2) c h), oklch(from var(--primary-fixed) calc(l + .2) c h));
  border-radius: .25rem;
  padding: 1rem;
  display: block;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 5px light-dark(oklch(from var(--primary-fixed) calc(l - .2) c h), oklch(from var(--primary-fixed) calc(l + .2) c h));
  position:relative;
  overflow:clip;
  -webkit-tap-highlight-color: transparent;
}
.button.elevated{
  box-shadow: 0 5px light-dark(oklch(from var(--primary-fixed) calc(l - .2) c h), oklch(from var(--primary-fixed) calc(l + .2) c h)), 0 5px 5px 5px var(--shadow);
}
@media (hover: hover) {
    .button:hover::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    background-color: var(--on-primary);
    opacity: .2;
  }
}
.button:active{
  transform: translateY(4px);
  box-shadow: 0 1px light-dark(oklch(from var(--primary-fixed) calc(l - .2) c h), oklch(from var(--primary-fixed) calc(l + .2) c h));
}
.button.elevated:active{
  transform: translateY(4px);
  box-shadow: 0 1px light-dark(oklch(from var(--primary-fixed) calc(l - .2) c h), oklch(from var(--primary-fixed) calc(l + .2) c h)), 0 2px 2px 2px var(--shadow);
}
.button:active::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height:100%;
  background-color: var(--on-primary);
  opacity: .5;
}

.grid{
  background-image: linear-gradient(to bottom, light-dark(var(--primary-90), var(--primary-20)) 2px, transparent 2px), linear-gradient(to right, light-dark(var(--primary-90), var(--primary-20)) 2px, transparent 2px);
  background-size: 40px 40px;
  background-color: var(--surface);
  background-position: center top;
}
.dots{
  background-image: radial-gradient( light-dark(var(--rust-500), var(--rust-700)) 1.5px, transparent 2px);
  background-size: 3rem 3rem;
  background-color: var(--surface);
  background-position: calc(50% - 19px) -19px;
}

.card-list{
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  grid-template-rows: auto;
}
.card-list li{
   /* Tracks the width of the container */
   /* Example dynamic width */
   background-color: var(--surface-container-highest);
   border-radius: 1.5rem;
   padding: 1rem;
   display: grid;
   grid-template-rows: subgrid;
   grid-row: span 3;
   row-gap: 1rem;
   gap: 1rem;
}
.card-list li *{
  padding: 0;
  margin: 0;
}
.card-list img{
    object-fit: cover;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: .5rem;
}

@media (prefers-color-scheme: light) {
  .img-line{
  filter:brightness(5%)sepia(1);
  }
}
.img-line{
  mix-blend-mode: hard-light;
}
.logo-shift{
    z-index: 100;
    position: relative;
    width: 150px;
}
.logo-shift:before{
    position: absolute;
    content:'';
    inset:0px;
    background-color: #ad3400;
    mask-image: url(./713-Logo-3.svg);
    mask-repeat: no-repeat;
    z-index:-1;
}
.logo-shift img{
    transition: filter .3s;
    filter: opacity(1);
    @media (prefers-color-scheme: light) {
      filter: opacity(0);
      }
}