:root {
  --nav-height: 70px;
  --outer: 1440px;
}

@media only screen and (max-width: 1440px) {
  :root {
    --nav-height: 50px;
    --outer: 1024px;
  }
}
@media only screen and (max-width: 1024px) {
  :root {
    --nav-height: 50px;
    --outer: 90%;
  }
}
@media only screen and (max-width: 640px) {
  :root {
    --nav-height: 40px;
  }
}
.brand-value-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: calc(100% - var(--nav-height));
  top: var(--nav-height);
  left: 0;
}
.brand-value-wrap > div {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - 32rem);
  height: 100%;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}
.brand-value-wrap > article {
  width: 32rem;
  max-height: 100%;
  padding: 3% 1.5rem 0 5rem;
}
.brand-value-wrap > article h1 {
  font-size: 1.25rem;
  color: #000;
  letter-spacing: 0.25rem;
  font-weight: normal;
}
@media only screen and (max-width: 480px) {
  .brand-value-wrap > article h1 {
    font-size: 4.5vw;
  }
}
.brand-value-wrap > article p {
  padding: 3rem 0;
  line-height: 225%;
}

.brand-story-wrap {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: calc(100% - var(--nav-height));
  top: var(--nav-height);
  left: 0;
}
.brand-story-wrap > div {
  position: fixed;
  width: 45%;
  height: calc(100% - var(--nav-height) - 35px);
  bottom: 0;
  right: 0;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}
.brand-story-wrap > article {
  width: 55%;
  max-height: 100%;
  padding: 5rem 5% 0 15%;
  text-align: justify;
}
.brand-story-wrap > article h1 {
  font-size: 1.5rem;
  color: #000;
  letter-spacing: 0.25rem;
  font-weight: normal;
  line-height: 150%;
}
@media only screen and (max-width: 480px) {
  .brand-story-wrap > article h1 {
    font-size: 5.5vw;
  }
}
.brand-story-wrap > article div {
  padding: 1.5rem 0;
  line-height: 200%;
}
.brand-story-wrap > article div h2 {
  font-size: 2rem;
  font-weight: normal;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 480px) {
  .brand-story-wrap > article div h2 {
    font-size: 6.75vw;
  }
}

@media only screen and (max-width: 1024px) {
  .brand-value-wrap {
    position: static;
    justify-content: center;
    flex-direction: column;
    height: auto;
  }
  .brand-value-wrap > div {
    position: static;
    width: 100%;
    height: 0;
    padding-top: 60%;
    margin-top: var(--nav-height);
  }
  .brand-value-wrap > article {
    width: auto;
    max-width: 90%;
    padding: 8% 0 10% 0;
    max-height: none;
  }
  .brand-value-wrap > article h1 {
    letter-spacing: 0.5vw;
  }
  .brand-value-wrap > article p {
    padding: 5% 0;
    line-height: 200%;
  }
  .brand-story-wrap {
    position: static;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: auto;
  }
  .brand-story-wrap > div {
    position: static;
    width: 100%;
    height: 0;
    padding-top: 115%;
    margin-top: var(--nav-height);
  }
  .brand-story-wrap > article {
    width: 100%;
    max-height: none;
    padding: 8% 10% 0 10%;
  }
  .brand-story-wrap > article h1 {
    letter-spacing: 0.5vw;
  }
  .brand-story-wrap > article div {
    padding: 5% 0;
  }
  .brand-story-wrap > article div h2 {
    margin-top: 8%;
    margin-bottom: 3%;
  }
}/*# sourceMappingURL=brand.css.map */