html {
  font-size: 16px;
}

body {
  font-family: "Inter", sans-serif;
  color: #121924;
  margin: 0;
}

p,
li {
  font-size: 16px;
  line-height: 24px;
}

ul {
  padding: 0;
  margin-left: 32px;
}

li {
  margin-bottom: 8px;
  line-height: 24px;
}

.navigation li {
  list-style-type: none;
}

h1 {
  font-size: 2rem;
}

h1,
h2 {
  font-weight: 700;
}
h1 a,
h2 a {
  text-decoration: underline;
}

h2 {
  font-size: 1.5rem;
}

section {
  margin-bottom: 64px;
}

.secondary {
  color: #6b778c;
}

a {
  color: #121924;
}

p a {
  font-weight: 700;
  text-decoration: underline;
}

.quote {
  font-style: italic;
  width: 90%;
  margin: auto;
}
.quote li {
  list-style-type: none;
}

a:hover {
  text-decoration: underline;
  color: #00cca6;
}

.active {
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 4px solid #00cca6;
}

h3 {
  font-size: 1.25rem;
}

img {
  max-width: 100%;
}

iframe {
  border: 0;
}

.pageContainer {
  max-width: 100%;
  margin: auto;
  padding: 24px 24px 0;
}
@media (min-width: 768px) {
  .pageContainer {
    max-width: 1280px;
    padding: 32px 32px 0;
  }
}

.fixed-width {
  margin-left: auto;
  margin-right: auto;
  max-width: 736px;
}

.full-width {
  background-color: #414148;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  margin-top: 32px;
  margin-bottom: 32px;
  padding: 24px 24px;
  border-radius: 16px;
}
.full-width .secondary {
  color: #f6f6f7;
}
@media (min-width: 768px) {
  .full-width {
    padding: 32px 32px;
  }
}

.site-content {
  flex: 1 1;
}

.logo {
  margin-right: 32px;
}

.header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.header a {
  text-decoration: none;
}
.header a:hover {
  color: #6b778c;
}

.navigation {
  display: flex;
  align-items: baseline;
  font-size: 16px;
  color: #121924;
  font-weight: 700;
  margin: 0;
}
.navigation li {
  padding: 16px;
}

.logo-subtitle {
  font-size: 16px;
  color: #6b778c;
  top: -16px;
  position: relative;
}

.l-margin-bottom {
  margin-bottom: 32px;
}

.xxl-margin-bottom {
  margin-bottom: 64px;
}

.project-hero-image {
  object-fit: cover;
  object-position: left;
  width: 100%;
  height: 128px;
  border-radius: 4px;
}

.no-margin {
  margin-top: 0;
}

.footer {
  background-color: #f4f5f7;
  width: 100%;
  padding: 0;
}
.footer ul {
  display: flex;
  margin: auto;
  padding: 16px 32px;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .footer ul {
    flex-direction: row;
  }
}
.footer li {
  list-style-type: none;
  margin-bottom: 0;
}

.content-section {
  margin: 6 4px 0;
}
.content-section img {
  margin: 32px auto;
  display: flex;
}

.side-by-side {
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  max-width: 80%;
  margin: auto;
}

.project-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 0;
  margin-bottom: 32px;
  align-items: baseline;
}

.white {
  background: none;
}

.btn {
  border: none;
  padding: 12px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1em;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 700;
  color: #121924;
}
.btn-primary {
  background-color: #121924;
  color: #fff;
}
.btn-secondary {
  background-color: #f4f5f7;
  color: #121924;
}
.btn-subtle {
  background-color: initial;
  padding: 16px 0;
}
.btn-subtle:hover {
  color: #00cca6;
}
.btn:hover {
  text-decoration: underline;
}

figcaption {
  text-align: center;
}

.small-image {
  max-width: 50%;
  min-width: 300px;
  margin: auto;
}

figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
}

figure img {
  margin: 0 auto 16px;
}

.herospace {
  margin-top: 32px;
  margin-bottom: 32px;
}

.video {
  margin: auto;
  width: 100%;
  width: -moz-available;
  width: -webkit-fill-available;
  width: fill-available;
  height: 100%;
  height: -moz-available;
  height: -webkit-fill-available;
  height: fill-available;
}

.gallery {
  display: flex;
  flex-direction: column;
  align-items: normal;
  row-gap: 64px;
}

.gallery-item {
  text-align: center;
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 1.33 aspect ratio (100 / 1.33 = 75.18, adjusted to your needs) */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.f-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 64px;
  align-items: flex-start;
  justify-content: center;
}

.projectgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .projectgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .projectgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1536px) {
  .projectgrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  box-shadow: 0 4px 8px 0 rgba(63, 66, 82, 0.1);
  border-radius: 4px;
  padding: 24px;
  border: 1px solid rgba(63, 66, 82, 0.1);
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .card {
    padding: 32px;
  }
}
.card:hover {
  box-shadow: 0 8px 2 4px 0 rgba(63, 66, 82, 0.2);
  -webkit-transition: 0.25s;
  transition: 0.25s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

/*# sourceMappingURL=main.css.map */
