/* Self-hosted fonts for independence */
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("/static/fonts/NunitoSans.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito Sans";
  font-style: italic;
  font-weight: 200 1000;
  font-display: swap;
  src: url("/static/fonts/NunitoSans-Italic.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/static/fonts/Montserrat.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("/static/fonts/Montserrat-Italic.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/static/fonts/CormorantGaramond.woff2") format("woff2");
}
body {
  background-color: #1c160f;
  margin: 0;
}

nav,
div,
footer,
section,
main,
header,
a {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
}

a {
  text-decoration: none;
}

.text-input {
  margin: 6px;
  flex: 1;
}
.text-input__label {
  font-size: 16px;
}
.text-input__input {
  background-color: #fff;
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 8px 12px;
  outline: none;
  resize: none;
  width: 100%;
  box-sizing: border-box;
}
.text-input textarea.text-input__input {
  display: block;
  min-height: 180px;
  resize: vertical;
}

.button {
  background-color: #c96b00;
  border: none;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  text-transform: uppercase;
  padding: 12px 24px;
  font-weight: 500;
  letter-spacing: 1.5px;
  border-radius: 12px;
  outline: none;
  margin: 6px;
  cursor: pointer;
  text-decoration: none;
}
.button:hover {
  background-color: #f38f1d;
}

.logo {
  width: 100px;
  height: 75px;
  position: relative;
}
.logo__mk {
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  color: #fff;
  position: absolute;
  top: 18px;
  right: 10px;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.logo__screw {
  background-color: #fff;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  position: absolute;
  top: 1px;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.logo__screw:first-child {
  left: 1px;
}
.logo__screw:nth-child(2) {
  right: 1px;
}
.logo__screw--bottom {
  top: auto;
  bottom: 1px;
}
.logo__vertical {
  width: 10px;
  height: 75px;
  position: absolute;
  left: 20px;
}
.logo__vertical__top {
  width: 10px;
  height: 45px;
  border: 1px solid #fff;
  border-bottom: none;
  position: absolute;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.logo__vertical__top__left {
  background-color: #fff;
  width: 1px;
  height: 10px;
  position: absolute;
  left: -4.5px;
  bottom: -2px;
  transform: rotate(45deg);
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
  z-index: -1;
}
.logo__vertical__top__left::before {
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 0 6px 6px;
  border-color: transparent transparent transparent transparent;
  transform: rotate(-45deg);
  left: -2px;
  position: absolute;
  bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.logo__vertical__bottom {
  width: 10px;
  height: 15px;
  border: 1px solid #fff;
  border-top: none;
  position: absolute;
  bottom: 0;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.logo__vertical__bottom__right {
  background-color: #fff;
  width: 1px;
  height: 10px;
  position: absolute;
  right: -4.5px;
  top: -2px;
  transform: rotate(45deg);
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
  z-index: -1;
}
.logo__vertical__bottom__right::before {
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 0 6px 6px;
  border-color: transparent transparent transparent transparent;
  transform: rotate(135deg);
  left: -3px;
  position: absolute;
  top: 2px;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.logo__horizontal {
  width: 100px;
  height: 15px;
  position: absolute;
  top: 45px;
  border: 1px solid #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 8px;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.logo--black .logo__mk {
  color: #000;
}
.logo--black .logo__screw {
  background-color: #000;
}
.logo--black .logo__vertical__top, .logo--black .logo__vertical__bottom {
  border-color: #000;
}
.logo--black .logo__vertical__top__left, .logo--black .logo__vertical__top__right, .logo--black .logo__vertical__bottom__left, .logo--black .logo__vertical__bottom__right {
  background-color: #000;
}
.logo--black .logo__horizontal {
  border-color: #000;
  color: #000;
}
.logo--full .logo__mk {
  color: #000;
}
.logo--full .logo__screw {
  background-color: #000;
}
.logo--full .logo__vertical__top, .logo--full .logo__vertical__bottom {
  background-color: #c6af94;
  border-color: #000;
}
.logo--full .logo__vertical__top__left, .logo--full .logo__vertical__top__right, .logo--full .logo__vertical__bottom__left, .logo--full .logo__vertical__bottom__right {
  background-color: #000;
}
.logo--full .logo__vertical__top__left::before, .logo--full .logo__vertical__top__right::before, .logo--full .logo__vertical__bottom__left::before, .logo--full .logo__vertical__bottom__right::before {
  border-color: transparent transparent #af8e68 transparent;
}
.logo--full .logo__horizontal {
  background-color: #c6af94;
  border-color: #000;
  color: #000;
}

.nav--scrolled .logo__mk {
  color: #000;
}
.nav--scrolled .logo__screw {
  background-color: #000;
}
.nav--scrolled .logo__vertical__top, .nav--scrolled .logo__vertical__bottom {
  background-color: #c6af94;
  border-color: #000;
}
.nav--scrolled .logo__vertical__top__left, .nav--scrolled .logo__vertical__top__right, .nav--scrolled .logo__vertical__bottom__left, .nav--scrolled .logo__vertical__bottom__right {
  background-color: #000;
}
.nav--scrolled .logo__vertical__top__left::before, .nav--scrolled .logo__vertical__top__right::before, .nav--scrolled .logo__vertical__bottom__left::before, .nav--scrolled .logo__vertical__bottom__right::before {
  border-color: transparent transparent #af8e68 transparent;
}
.nav--scrolled .logo__horizontal {
  background-color: #c6af94;
  border-color: #000;
  color: #000;
}

.nav {
  width: 100%;
  height: 100px;
  justify-content: center;
  flex-direction: row;
  position: fixed;
  top: 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}
.nav__container {
  width: 1000px;
  flex-direction: row;
}
.nav__logo {
  flex: 1;
  padding: 10px 20px;
}
.nav__tabs {
  flex-direction: row;
  height: 100%;
  align-items: center;
  justify-content: space-around;
}
.nav__tabs__tab {
  height: 60px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 20px;
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  font-weight: 400;
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 5px 20px 0 20px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.nav--scrolled {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.nav--scrolled .nav__tabs__tab {
  color: #000;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0);
}
.nav__hamburger {
  display: none;
  height: 100%;
  justify-content: center;
  align-items: center;
  margin-right: 24px;
}
.nav__hamburger__line {
  background-color: #fff;
  width: 36px;
  height: 3px;
  margin: 3px 0;
  border-radius: 1.5px;
  transition: background-color 0.3s ease;
}
.nav--scrolled .nav__hamburger__line {
  background-color: #000;
}
.nav__overlay {
  background-color: #fff;
  width: 100vw;
  height: 100vh;
  position: absolute;
  transition: top 0.3s ease;
  z-index: -1;
  top: -100vh;
  justify-content: center;
  align-items: center;
}
.nav__overlay__tab {
  height: 60px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 20px;
  color: #000;
  text-decoration: none;
  font-weight: 400;
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 5px 20px 0 20px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.nav__overlay--open {
  top: 0;
}

@media (max-width: 900px) {
  .nav__tabs {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
}
.footer {
  background-color: #1c160f;
  width: 100%;
  color: #fff;
  font-family: "Nunito Sans", sans-serif;
  padding: 40px 20px;
}
.footer__columns {
  width: 1000px;
  max-width: 100%;
  flex-direction: row;
  margin: auto;
}
.footer__column {
  flex: 1;
  margin: 20px;
}
.footer__column__title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}
.footer__column__text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}
.footer__link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 2px;
}
.footer__link--selected {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 800px) {
  .footer__columns {
    flex-direction: column;
  }
  .footer__column {
    margin: 20px 0;
  }
}
.hero {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 400px;
  justify-content: center;
  align-items: center;
  z-index: 0;
  position: relative;
}
.hero::before {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
}
.hero--home {
  height: 700px;
  padding: 60px 0;
}
.hero__title {
  font-size: 50px;
  font-family: "Nunito Sans", sans-serif;
  color: #fff;
  z-index: 1;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 4px;
  margin-top: 20px;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}
.hero__text {
  width: 800px;
  max-width: 100%;
  padding: 0 20px;
  color: #fff;
  font-size: 24px;
  font-family: "Nunito Sans", sans-serif;
  z-index: 1;
  margin: 40px;
  line-height: 1.5;
  text-align: center;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  margin-top: 60px;
}
.hero__buttons {
  flex-direction: row;
}
.hero__button {
  z-index: 1;
  background-color: transparent;
  border: 2px solid #fff;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  text-transform: uppercase;
  padding: 16px 32px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  margin: 0 20px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, text-shadow 0.3s ease;
}
.hero__button:hover {
  background-color: #fff;
  color: #000;
  cursor: pointer;
  text-shadow: none;
}
.hero__button--white {
  background-color: #fff;
  color: #000;
  text-shadow: none;
  border: none;
  padding-top: 18px;
}
.hero__button--white:hover {
  background-color: #af8e68;
  color: #fff;
}

@media (max-width: 500px) {
  .hero {
    height: 300px;
  }
  .hero--home {
    height: auto;
  }
  .hero__title {
    font-size: 36px;
  }
  .hero__text {
    font-size: 18px;
  }
}
.home__testimonials {
  max-width: 1000px;
  padding: 80px 0;
  font-size: 20px;
  margin: auto;
  font-family: "Nunito Sans", sans-serif;
}
.home__testimonials__text {
  padding: 0 10px;
}
.home__testimonials__row {
  flex-direction: row;
  margin-top: 40px;
}
.home__testimonials__button {
  background-color: #af8e68;
  margin: 20px auto 0 auto;
  color: #fff;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  padding: 16px 32px;
  font-weight: 500;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
}
.home__testimonial {
  background-color: #fff;
  width: 300px;
  font-size: 16px;
  margin: 10px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px 0 rgba(40, 31, 21, 0.15);
}
.home__testimonial__text {
  margin: 20px 20px 0 20px;
  flex: 1;
  justify-content: center;
}
.home__testimonial__author {
  margin: 20px;
  font-weight: 500;
}
.home__instagram {
  flex-direction: row;
  flex-wrap: wrap;
}
.home__instagram__post {
  min-width: 300px;
  flex: 1;
  aspect-ratio: 1;
  background-position: center;
  background-size: cover;
  margin: 8px;
  border-radius: 12px;
  overflow: hidden;
}
.home__instagram__post__date {
  font-weight: 600;
  color: #fff;
  font-size: 14px;
}
.home__instagram__post__caption {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  widfg: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.7);
  justify-content: flex-end;
  font-size: 14px;
  padding: 12px;
}

@media (max-width: 900px) {
  .home__testimonials__row {
    flex-direction: column;
    align-items: center;
  }
  .home__testimonial {
    width: 100%;
  }
}
.services__item {
  flex-direction: row;
  margin: 20px 10px;
}
.services__item__image {
  background-size: cover;
  background-position: center;
  width: 300px;
  height: 200px;
  border-radius: 12px;
  margin-right: 20px;
}
.services__item__right {
  flex: 1;
  padding: 12px 0;
}
.services__item__name {
  font-size: 20px;
  margin: 2px 0;
  font-weight: 600;
}
.services__item__description {
  font-size: 18px;
  margin: 2px 0;
  font-size: 16px;
}

@media (max-width: 700px) {
  .services__item {
    flex-direction: column;
  }
  .services__item__image {
    width: 100%;
    margin-right: 0;
  }
}
.process__title {
  font-size: 36px;
  margin: 20px auto;
  font-weight: 700;
}
.process__step {
  margin: 10px;
  flex-direction: row;
}
.process__step__number {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}
.process__step__right {
  flex: 1;
  margin-left: 12px;
}
.process__step__name {
  font-size: 20px;
  margin: 2px 0;
  font-weight: 600;
}
.process__step__description {
  font-size: 18px;
  margin: 2px 0;
  font-size: 16px;
}

.references {
  background-color: #fff;
  font-family: "Nunito Sans", sans-serif;
}
.references__content {
  width: 1000px;
  max-width: 100%;
  margin: auto;
  padding: 40px 0;
}
.references__grid {
  flex-direction: row;
  flex-wrap: wrap;
}
.references__grid-buffer {
  flex: 1;
  min-width: 300px;
  height: 0;
  margin: 0 8px;
}

.reference {
  flex-direction: row;
  margin: 10px;
}
.reference__image {
  position: relative;
  width: 300px;
  height: 200px;
  align-items: flex-end;
  border-radius: 10px;
  margin: 10px 0;
  overflow: hidden;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.reference__image:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.reference__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.reference--flex {
  flex: 1;
  min-width: 300px;
  margin: 8px;
}
.reference--flex .reference__image {
  width: 100%;
  height: 200px;
  margin: 0;
}
.reference__price {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background-color: #fff;
  padding: 4px 8px;
  color: #000;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
}
.reference__right {
  padding: 10px 20px;
  flex: 1;
}
.reference__date {
  margin: 3px 0;
  font-weight: 700;
  font-size: 14px;
}
.reference__description {
  margin: 3px 0;
  font-size: 16px;
}
.reference__feedback {
  margin: 3px 0;
  font-size: 16px;
}
.reference__feedback__name {
  margin: 8px 0 3px 0;
  font-weight: 700;
  font-size: 14px;
}

@media (max-width: 800px) {
  .reference {
    flex-direction: column;
  }
  .reference__image {
    width: 100%;
    height: 300px;
  }
  .reference__right {
    padding: 10px 0;
  }
  .reference--flex .reference__image {
    height: 300px;
  }
}
.calculator {
  background-color: #fff;
  font-family: "Nunito Sans", sans-serif;
  flex-direction: row;
}
.calculator__content {
  width: 1000px;
  max-width: 100%;
  margin: auto;
  padding: 40px 10px;
  flex-direction: row;
  align-items: flex-start;
}
.calculator__left {
  flex: 1;
  margin: 6px;
}
.calculator__fields {
  flex-direction: row;
}
.calculator__materials {
  flex-direction: row;
  flex-wrap: wrap;
}
.calculator__material {
  margin: 6px;
  flex: 1;
  min-width: 200px;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
}
.calculator__material--selected {
  border: 2px solid #c96b00;
  padding: 11px;
}
.calculator__material__image {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 140px;
}
.calculator__material__name {
  font-size: 18px;
  font-weight: 600;
}
.calculator__material__price {
  font-size: 16px;
  font-weight: 500;
  margin: 6px 0;
}
.calculator__material__widths {
  font-size: 14px;
  color: #555;
}
.calculator__right {
  width: 280px;
}
.calculator__right__button {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.calculator__right__button--visible {
  opacity: 1;
}
.calculator__estimate {
  background-color: #f3eee9;
  padding: 18px;
  border-radius: 12px;
  margin: 6px;
}
.calculator__estimate__content {
  transition: opacity 0.5s ease;
}
.calculator__estimate__content--calculating {
  opacity: 0;
}
.calculator__estimate__total {
  text-align: right;
  font-size: 24px;
  flex-direction: row;
  justify-content: flex-end;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  margin-bottom: 8px;
}
.calculator__estimate__total b {
  margin-left: 8px;
}
.calculator__estimate__row {
  flex-direction: row;
  margin-top: 2px;
}
.calculator__estimate__row__left {
  flex: 1;
}
.calculator__estimate__row__right {
  font-weight: 700;
}

@media (max-width: 1000px) {
  .calculator {
    flex-direction: column;
  }
  .calculator__right {
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 700px) {
  .calculator__fields {
    flex-direction: column;
  }
}
.section {
  background-color: #fff;
  width: 100%;
  font-family: "Nunito Sans", sans-serif;
  font-size: 20px;
  padding: 40px 0;
}
.section--beige {
  background-color: #f3eee9;
}
.section__title {
  margin: 20px auto;
}
.section__content {
  width: 1000px;
  max-width: 100%;
  margin: auto;
  padding: 20px 10px;
}
.section__row {
  flex-direction: row;
}

@media (max-width: 700px) {
  .section__row {
    flex-direction: column;
  }
}
.friendship__row {
  flex-direction: row;
}
.friendship__left {
  flex: 1;
}
.friendship__title {
  margin: 10px;
}
.friendship__cell {
  flex: 1;
  font-size: 16px;
  margin: 10px;
}
.friendship__photo {
  width: 300px;
  max-height: 100%;
  overflow: auto;
  background-position: center;
  background-size: cover;
  margin: 10px;
  border-radius: 8px;
}

@media (max-width: 800px) {
  .friendship__row {
    flex-direction: column;
  }
  .friendship__photo {
    width: calc(100% - 20px);
    aspect-ratio: 3/2;
  }
}
.contact__team {
  flex-direction: row;
}
.contact__team__member {
  flex: 1;
  margin: 8px;
  text-align: center;
}
.contact__team__member__photo {
  background-color: #ccc;
  width: 100%;
  aspect-ratio: 1/1;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
}
.contact__team__member__name {
  font-size: 18px;
  font-weight: 700;
  margin: 12px 0 2px 0;
}
.contact__team__member__phone {
  font-size: 16px;
  margin: 2px 0;
}
.contact__invoicing {
  flex-direction: row;
}
.contact__invoicing__column {
  margin: 10px;
  flex: 1;
}

@media (max-width: 700px) {
  .contact__team {
    flex-direction: column;
  }
  .contact__invoicing {
    flex-direction: column;
  }
}
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: pointer;
  animation: lightbox-fade-in 0.2s ease-out;
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 10px;
  transition: background-color 0.2s;
  z-index: 1001;
  display: block;
}
.lightbox__close svg {
  display: block;
  width: 100%;
  height: 100%;
  stroke: #fff;
}
.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 12px;
  transition: background-color 0.2s;
  z-index: 1001;
  display: block;
}
.lightbox__nav svg {
  display: block;
  width: 100%;
  height: 100%;
  stroke: #fff;
}
.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.2);
}
.lightbox__nav--prev {
  left: 20px;
}
.lightbox__nav--next {
  right: 20px;
}
.lightbox__content {
  max-width: 90vw;
  max-height: 90vh;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox__content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.lightbox__counter {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-top: 12px;
  font-family: "Nunito Sans", sans-serif;
}

@media (max-width: 600px) {
  .lightbox__nav {
    width: 40px;
    height: 40px;
    padding: 10px;
  }
  .lightbox__nav--prev {
    left: 10px;
  }
  .lightbox__nav--next {
    right: 10px;
  }
}
.materials-info {
  font-family: "Nunito Sans", sans-serif;
}
.materials-info__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 20px 0;
}
.materials-info__intro {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 30px 0;
  color: #333;
}
.materials-info__list {
  flex-direction: column;
  gap: 30px;
}
.materials-info__item {
  flex-direction: row;
  gap: 24px;
}
.materials-info__item__image {
  width: 200px;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  border-radius: 8px;
}
.materials-info__item__content {
  flex: 1;
}
.materials-info__item__name {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 12px 0;
}
.materials-info__item__description {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 12px 0;
  color: #333;
}
.materials-info__item__widths {
  font-size: 14px;
  margin: 0;
  color: #555;
}

@media (max-width: 700px) {
  .materials-info__item {
    flex-direction: column;
  }
  .materials-info__item__image {
    width: 100%;
    height: 180px;
  }
}
@keyframes lightbox-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
