body {
  padding: 0;
  margin: 0;
  background: #000000;
  text-rendering: geometricPrecision;
  box-sizing: border-box;
}

h1, h2, h3, h4, p, img, ul, li {
  padding: 0;
  margin: 0;
  font-weight: unset;
}

ul, li {
  list-style: none;
}

.heading {
  color: #D1D1D1;
  text-rendering: geometricPrecision;
  padding: 0;
  margin-top: 0;
}
.heading--one {
  color: #FFFFFF;
  font-family: "n27bold";
  font-size: 48px;
  line-height: 60px;
  margin-bottom: 40px;
}
.heading--two {
  font-family: "n27bold";
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 20px;
  letter-spacing: 0.6px;
}
.heading--stroke {
  border-bottom: 1px solid #393737;
}

.text {
  color: #D1D1D1;
  text-rendering: geometricPrecision;
  padding: 0;
  margin-top: 0;
  font-family: "n27regular";
}
.text--default {
  font-size: 16px;
  line-height: 22px;
}
.text--small {
  font-size: 14px;
  line-height: 17px;
}
.text--number {
  font-size: 12px;
  line-height: 22px;
}
.text--margin-b {
  margin-bottom: 15px;
}
.text--margin-r {
  margin-right: 15px;
}

.wrapper {
  padding: 60px;
}

.section {
  margin-bottom: 100px;
}
.section--hero {
  margin-bottom: 40px;
}
.section--footer {
  border-top: 1px solid #393737;
  margin-bottom: 0;
}

.tag-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  background-color: #252525;
  border: 1px solid #393737;
  border-radius: 6px;
  line-height: 1;
  white-space: nowrap;
}

.box {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #393737;
  border-radius: 32px;
  display: flex;
  flex-direction: row;
  padding: 40px 10px;
  justify-content: space-evenly;
}

.card {
  border-right: 1px solid #393737;
  flex: 1;
  padding: 0 30px;
  color: white;
  max-width: 350px;
}
.card:last-child {
  border-right: none;
}

.project {
  display: flex;
  padding-bottom: 40px;
}

.left {
  width: 40%;
}

.right {
  border: 1px solid #393737;
  border-radius: 8px;
  width: 60%;
  height: auto;
}

.img-wrapper {
  display: flex;
  padding: 12px;
  box-sizing: border-box;
  width: 100%;
}

.img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.footer-group {
  padding: 15px;
}

.figure {
  margin: 12px;
}
.figure__img {
  width: 100%;
  max-width: 860px;
  height: auto;
}
.figure__caption {
  width: 100%;
  max-width: 860px;
}
.figure__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

@media only screen and (max-width: 1010px) {
  .wrapper {
    padding: 40px;
  }
  .box {
    padding: 40px 0px;
    flex-direction: column;
  }
  .card {
    border-right: none;
    border-bottom: 1px solid #393737;
    padding: 30px;
    max-width: none;
  }
  .card:last-child {
    border-bottom: none;
  }
}
@media only screen and (max-width: 780px) {
  .project {
    flex-direction: column;
  }
  .left, .right {
    width: 100%;
  }
  .heading--stroke {
    border: none;
  }
  .card {
    border-right: none;
    border-bottom: 1px solid #393737;
    padding: 30px;
    max-width: none;
  }
  .card:last-child {
    border-bottom: none;
  }
  .wrapper {
    padding: 20px;
  }
  .img-wrapper {
    padding: 10px;
  }
  .box {
    padding: 10px 0px;
    flex-direction: column;
  }
  .section--hero {
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
