/* CONTENT ELEMENTS */
.brandstory {
  background-color: var(--c-green-dark);
  border-bottom: var(--sp-large) solid var(--c-gray-light);
}
.brandstory__content {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  padding: var(--sp-large) 0 calc(var(--sp-x-large) * 1.5);
}
.brandstory__icon {
  margin-bottom: var(--sp-medium);
}
.brandstory__icon img {
  height: var(--sp-x-large);
  width: auto;
}
.brandstory__text, .brandstory__title {
  text-align: center;
}
.brandstory__title {
  font-family: "Centra", sans-serif;
  font-weight: 500;
  line-height: 0.8;
  font-size: 3.5rem;
  color: var(--c-green-lighter);
  margin-bottom: var(--sp-small);
}
@media (min-width: 768px) {
  .brandstory__title {
    font-size: 5rem;
  }
}
@media (min-width: 992px) {
  .brandstory__title {
    font-size: 6rem;
  }
}
@media (min-width: 1200px) {
  .brandstory__title {
    font-size: 7.5rem;
  }
}
.brandstory__title h1, .brandstory__title h2, .brandstory__title h3, .brandstory__title h4, .brandstory__title h5, .brandstory__title h6, .brandstory__title p {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
}
.brandstory__title h1, .brandstory__title h2, .brandstory__title h3, .brandstory__title h4, .brandstory__title h5, .brandstory__title h6, .brandstory__title p {
  margin: 0;
  padding: 0;
}
.brandstory__text {
  font-family: "Sectra", serif;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.25;
  color: var(--c-gray-light);
}
@media (min-width: 768px) {
  .brandstory__text {
    font-size: 1.25rem;
  }
}
@media (min-width: 768px) {
  .brandstory__text {
    font-size: 1.5rem;
  }
}
.brandstory__text h1, .brandstory__text h2, .brandstory__text h3, .brandstory__text h4, .brandstory__text h5, .brandstory__text h6, .brandstory__text p {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
}
.brandstory__text h1, .brandstory__text h2, .brandstory__text h3, .brandstory__text h4, .brandstory__text h5, .brandstory__text h6, .brandstory__text p {
  margin: 0;
  padding: 0;
}
.brandstory__image {
  position: absolute;
  bottom: 0;
  right: 0;
  height: calc(2 * var(--sp-x-large));
  width: calc(2 * var(--sp-x-large));
  margin-bottom: calc(-1 * var(--sp-large) / 2);
}
.brandstory__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  object-fit: contain;
}