@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300&display=swap');


:root {
    --r-heading-font: 'IBM Plex Mono', monospace;
    --r-main-font:'IBM Plex Sans', monospace;
    --r-heading-text-transform: none;
}

html {background-color: inherit;}


.footer-img {
    height: 49px;
    margin-right: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
   font-size: 0.5em;
   height: 40px;

}

.bold {
  font-weight: 500;
}

.slides p.left {
  text-align: left;
}

.slides .attn {
  color: #3498db;
}
  

.slides p {
  text-align: center;
}

.slides .small { 
    font-size: 0.5em;
}

.slides .tiny { 
  font-size: 0.4em;
}

.slides .medium { 
    font-size: 0.7em;
}

.slides table tr td:last-child {
  text-align: right;
}
.slides table tr th:last-child {
  text-align: right;
}


.footnotes-fixed{

    position:fixed;
    left: 10px;
    bottom:80px;
    right: 10px;
    text-align: left;
    font-size: 0.5em;
}

.footnotes{

    position:relative;
    text-align: left;
    left: 10px;
    right: 10px;
    font-size: 0.5em;
  }


.footer-text {
    margin-right: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 0.5em;
    height: 40px;
    text-align: center;
}

.footer-link {
    color: #b2d1f5;
    margin-left: 10px;
    margin-right: 10px;
}

.footer{
  position:fixed;
  left: 10px;
  bottom: 0px;
  right: 10px;
  width: 100vw;

}
.pull-left {
    float: left !important;
  }
  
  .footer-img {
    height: 49px;
    margin-right: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
   font-size: 0.5em;
   height: 40px;

}

  .footnotes ol {
    padding-left: 20px;
  }
  sup {
    font-size: 0.6em;
    vertical-align: super;
  }

  .well {
    background-color: #2c3e50;
    border: 1px solid #34495e;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
    margin-bottom: 20px;
    min-height: 20px;
    padding: 19px;
  }
  .callout {
    background-color: #1c2833;
    border: 1px solid #2c3e50;
    border-left-color: #3498db;
    border-left-width: 5px;
    border-radius: 3px;
    margin: 20px 0;
    padding: 20px;
    color: #ecf0f1;
  }
  .callout h2 {
    color: #3498db;
    margin-top: 0;
    margin-bottom: 5px;
  }
  .callout p:last-child {
    margin-bottom: 0;
  }

  .slides .video-cover {
    background-color: rgba(0,0,0,0.8);
    padding:20px;
  }
  
  .grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 100%;
    width: 100%;
  }
  .grid-container-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    align-items: start;

  }

  .column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .column svg {
    max-width: 100%;
    height: auto;
  }


.project-timeline {
    color: #fff;
}
.project-timeline__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    border-radius: 8px;
}
.project-timeline__track {
    position: relative;
    height: 120px;
    margin: 60px 0;
}
.project-timeline__base-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 12px;
    background-color: #333;
    transform: translateY(-50%);
}
.project-timeline__progress-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 65%; /* Adjust this to change progress */
    height: 12px;
    background: linear-gradient(to right, #FFF, #1BBC9B);
    transform: translateY(-50%);
}
.project-timeline__milestone {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.project-timeline__milestone-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #111;
    border: 4px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.project-timeline__milestone-label {
    position: absolute;
    width: 250px;
    font-size: 0.7em;
    color: #fff;
    top: -5em;
}
.project-timeline__milestone:nth-child(3) .project-timeline__milestone-label {
    text-align: left;
    left: 0;
}
.project-timeline__milestone:nth-child(4) .project-timeline__milestone-label {
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
}
.project-timeline__milestone:nth-child(5) .project-timeline__milestone-label {
    text-align: right;
    right: 0;
}

.tech-spec-container {
  color: #1BBC9B;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 0.5em;
}

.tech-spec-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #4fd1c5;
}

.tech-spec-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.tech-spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.tech-spec-label {
  font-weight: 600;
  margin-right: 10rem;
}

.tech-spec-value-10 {
  background-color: #2d3748;
  color: #FF69B4;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.tech-spec-value {
  background-color: #2d3748;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}