/*!**************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/sass/components/_about.sass ***!
  \**************************************************************************************************************************/
.header {
  background-color: var(--color5);
}

.about {
  padding: var(--body-outer-padding);
  box-sizing: border-box;
}
.about__title {
  color: var(--color1);
  margin: auto;
  text-transform: uppercase;
  font-size: var(--fs-xxxxl);
  font-weight: 800;
  font-family: var(--ff1);
  font-style: normal;
  line-height: var(--fs-xxxxl);
  letter-spacing: calc(var(--fs-xxxxl) * -0.03);
}
.about__breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2vw 0;
}
.about__breadcrumb {
  margin: 0;
  font-size: var(--fs-regular);
  font-weight: 700;
  font-family: var(--ff1);
  font-style: normal;
  line-height: var(--fs-regular);
  letter-spacing: calc(var(--fs-regular) * -0.03);
  text-transform: uppercase;
}
.about__breadcrumb--place {
  color: var(--color2);
}
.about__breadcrumb--year {
  color: var(--color1);
}
.about__thumbnail {
  display: block;
  width: 100%;
}
.about__subtitle {
  color: var(--color1);
  margin: 4vw auto;
  font-size: var(--fs-xxxl);
  font-weight: 700;
  font-family: var(--ff1);
  font-style: normal;
  line-height: var(--fs-xxxl);
  letter-spacing: calc(var(--fs-xxxl) * -0.03);
}
.about__body {
  margin: auto;
}
.about__image {
  display: block;
}
.about__text {
  box-sizing: border-box;
}
.about__text h1, .about__text h2, .about__text h3, .about__text h4, .about__text h5, .about__text h6 {
  margin: 0;
  font-size: var(--fs-xl);
  font-weight: 700;
  font-family: var(--ff2);
  font-style: normal;
  line-height: var(--fs-xl);
  letter-spacing: calc(var(--fs-xl) * -0.03);
}
.about__text p, .about__text a, .about__text li, .about__text span {
  font-size: var(--fs-regular);
  font-weight: 400;
  font-family: var(--ff2);
  font-style: normal;
  line-height: var(--fs-regular);
  letter-spacing: calc(var(--fs-regular) * -0.03);
  line-height: var(--fs-mid);
}
.about__text p strong, .about__text a strong, .about__text li strong, .about__text span strong {
  font-weight: 700;
}
.about__phrase {
  color: var(--color2);
  margin: 4vw auto;
  font-size: var(--fs-xxxl);
  font-weight: 400;
  font-family: var(--ff2);
  font-style: italic;
  line-height: var(--fs-xxxl);
  letter-spacing: calc(var(--fs-xxxl) * -0.03);
}

@media all and (orientation: landscape) {
  .about__body {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    width: 90%;
  }
  .about__image {
    width: 40%;
  }
  .about__text {
    width: 55%;
    padding: 0 5vw 0 7vw;
  }
}
@media all and (orientation: portrait) {
  .about__image {
    width: 100%;
  }
  .about__text {
    padding: 10vw 2vw 0 2vw;
    box-sizing: border-box;
  }
}
