:root {
  --white: white;
  --black: black;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  min-height: 100%;
  font-family: Lato, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  color: #6f8da5;
  text-transform: lowercase;
  margin-top: 0;
  margin-bottom: 30px;
  font-family: Qoagricola, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Woodchuck, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}

h4 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  color: #d44145;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

p {
  margin-bottom: 20px;
  font-family: Lato, sans-serif;
}

.track {
  height: 400vw;
  display: block;
}

.track.modified {
  background-color: #ece8e8;
}

.camera {
  width: 100vw;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.camera.short-camera {
  height: 300px;
}

.frame {
  display: flex;
}

.item {
  flex: none;
  width: 100vw;
  height: 100vh;
  padding: 100px;
}

.item.vertical-item {
  width: 50vw;
}

.item.more-padding {
  padding: 8vw;
}

.item.short-item {
  height: 400px;
}

.image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.image.half-img {
  object-fit: contain;
  width: 45%;
}

.navbar {
  z-index: 900;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background-color: #ffffff73;
  border-bottom: 2px solid #293345;
  position: fixed;
  inset: 0% 0% auto;
}

.navlink {
  text-transform: lowercase;
  font-family: Typwrng, sans-serif;
  line-height: 16px;
}

.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 8vw;
}

.container.full-height {
  min-height: 100vh;
}

.padded-section {
  padding-bottom: 8vw;
  padding-left: 8vw;
  padding-right: 8vw;
}

.padded-section.editorial {
  min-height: 100vh;
  padding-top: 8vw;
}

.padded-section.contact {
  background-color: #c5cbd9;
}

.padded-section.green-bk {
  color: #c5cbd9;
  background-color: #293345;
}

._6-img-gallery {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: 50% 50%;
  grid-template-columns: 1fr 1fr 1fr;
  height: 100vh;
  overflow: hidden;
}

.gallery-img {
  overflow: hidden;
}

.gallery-sq {
  object-fit: cover;
  background-color: #dfdfdf;
  overflow: hidden;
}

.gallery-row {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  justify-content: center;
  height: 25vw;
  margin-bottom: 20px;
  display: flex;
}

.image-2 {
  object-fit: cover;
  width: 25vw;
  height: 25vw;
  overflow: hidden;
}

.hero {
  background-color: #6c7765;
  height: 80vh;
}

.about-wrapper {
  background-color: #d1d5d8;
  width: 100vw;
  min-height: 100vh;
  padding: 8vw;
}

.about-container {
  flex-direction: row;
  justify-content: space-around;
  display: flex;
}

.body {
  height: 100%;
}

.col {
  flex: 1;
  order: 1;
}

.scroll-caption-container {
  background-color: #d1d5d8;
  justify-content: space-between;
  height: 100vh;
  display: flex;
}

.caption-wrapper {
  background-color: #bfa39a;
  align-self: flex-end;
  width: 38%;
  padding: 40px 40px 40px 8vw;
}

.caption-wrapper.full-height {
  flex-direction: row;
  justify-content: flex-end;
  align-self: stretch;
  align-items: flex-end;
  display: flex;
}

.caption {
  padding-bottom: 20px;
  padding-left: 20px;
  font-size: 13px;
  line-height: 18px;
  position: absolute;
  bottom: 0;
}

.caption-img {
  background-image: url('../images/exotic-jar_large.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 62%;
}

.heading {
  text-transform: none;
}

.brand2 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-custm-container {
  justify-content: space-between;
  width: 100vw;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
}

.subwrapper {
  align-self: flex-end;
  position: relative;
  bottom: 8px;
}

.event {
  margin-bottom: 10px;
}

.text-block {
  letter-spacing: normal;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 24px;
}

.heading-2 {
  letter-spacing: 2px;
}

.big-text {
  font-size: 56px;
  line-height: 60px;
}

.left-editorial {
  float: left;
  clear: none;
  width: 40%;
  display: inline-block;
}

.right-editorial {
  clear: right;
  width: 60%;
  height: 100%;
  min-height: 90%;
  display: inline-block;
}

.full-hero {
  text-align: center;
  background-color: #d1d5d8;
  width: 100vw;
  height: 100vh;
  padding: 10vw;
}

.tagline {
  margin-bottom: 15px;
  font-size: 40px;
  line-height: 44px;
}

.short-scroll {
  height: 300px;
}

.two-images {
  grid-column-gap: 10%;
  grid-row-gap: 0%;
  justify-content: space-between;
  display: flex;
}

.two-images.alt-way {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  align-items: center;
}

.img-half {
  object-fit: contain;
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 50%;
  display: flex;
  overflow: hidden;
}

.half-size-img {
  object-fit: contain;
  align-self: center;
  display: block;
}

.text-link {
  color: #d44145;
  font-size: 16px;
  font-weight: 700;
}

.text-link:visited {
  color: #731214;
}

.inline-link {
  color: #c5cbd9;
}

.inline-link:hover {
  color: #6b7866;
}

.inline-link:visited {
  color: #731214;
}

.placeholder-page {
  background-color: #293345;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
}

.placeholder-page.bottom-right {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 5vw;
  padding-right: 5vw;
}

.placeholder-msg {
  color: #6f8da5;
  text-align: center;
  width: 50vw;
  margin-left: auto;
  margin-right: auto;
}

.placeholder-msg.right-version {
  text-align: right;
  align-self: flex-end;
  position: absolute;
}

.coming-soon {
  color: #c5cbd9;
  text-transform: lowercase;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
}

.track-j {
  height: 500vw;
}

.camera-j {
  width: 100vw;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.frame-j {
  height: 100%;
  display: flex;
}

.item-j {
  flex: none;
  width: 100vw;
  height: 100vh;
  padding: 120px 60px 80px;
}

.item-j.half-size {
  width: 50vw;
}

.image-3 {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.horizontal-section {
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  padding: 60px 60px 30px;
  display: flex;
}

.heading-3 {
  letter-spacing: 1px;
}

.artwork-caption {
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 16px;
}

.art-photo {
  background-image: url('../images/crab-box_1200x1600.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex: 1;
  margin-bottom: 10px;
}

.art-photo.heading-2 {
  background-image: url('../images/lidded-jars_1800.jpg');
  background-position: 50%;
  background-size: cover;
}

.panel2 {
  background-color: #0000;
  background-image: url('../images/crab-box_1200x1600.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex: none;
  width: 60vw;
  height: 100%;
}

.track-flex {
  justify-content: flex-start;
  align-items: stretch;
  margin-right: -100vw;
  display: flex;
}

.panel1 {
  background-image: url('../images/nature-bowls_IMG_3742-auto-color.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  flex: none;
  justify-content: flex-end;
  width: 820px;
  height: 100%;
  display: block;
}

.panel3 {
  background-image: url('../images/maltese-falcon_1200px.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex: none;
  width: 80vh;
  height: 100%;
}

.sticky-element {
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: 100vh;
  margin-bottom: -100vh;
  display: flex;
  position: sticky;
  top: 0;
  overflow: scroll;
}

.sticky-element.disable-overflow {
  overflow: hidden;
}

.section-wrapper {
  width: 100%;
  padding-bottom: 100vh;
}

.track-2 {
  flex: none;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
  position: relative;
  transform: translate(0%);
}

.panel4 {
  background-image: url('../images/tiny-pots_012023_with-coin.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex: none;
  width: 130vh;
  height: 100%;
}

.panel5 {
  background-image: url('../images/exotic-jar_788x1080.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex: none;
  width: 50vw;
  height: 100%;
}

.section-height {
  width: 100%;
  height: 500vw;
}

.black-caption {
  color: #fff;
  background-color: #000;
  padding: 10px 20px 10px 10px;
  display: inline-block;
  position: relative;
  inset: 90vh 0% 0%;
}

.herringbone-block {
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.grid-animation {
  color: #444f55;
  margin-top: 0;
  font-size: 16px;
  font-weight: 600;
}

.herringbone-grid {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: .5fr .5fr .5fr .5fr .5fr .5fr .5fr .5fr .5fr .5fr .5fr;
  width: 100%;
  height: 90vh;
  min-height: 880px;
  transform: rotate(0);
}

.grid-img {
  position: absolute;
  inset: 0;
}

.grid-img._1 {
  background-image: url('../images/tiny-pots_012023_with-coin.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.grid-img._2 {
  background-image: url('../images/horseshoe-crab_1200px-sq.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.grid-img._7 {
  background-image: url('../images/lidded-jars_1800.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.grid-img._5 {
  background-image: url('../images/mushroom-group_1200px.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.grid-img._4 {
  background-image: url('../images/amusing-lolli-planter_800px.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.grid-img._6 {
  background-image: url('../images/crabbox_square_1200px.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.grid-img._3 {
  background-image: url('../images/nature-bowls_IMG_3742-auto-color.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.container-2 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
}

.mb-0 {
  margin-bottom: 0;
}

.grid-img-wrapper {
  z-index: 1;
  padding: 16px;
  position: absolute;
  inset: 0;
}

.section {
  padding: 100px 5vw;
  overflow: hidden;
}

.art-in-center {
  flex-direction: row;
  justify-content: center;
  min-height: 100vh;
  display: flex;
}

.gallery-side {
  text-align: right;
  width: 50%;
}

.img-background-hero {
  background-image: linear-gradient(#0000 62%, #fff), url('../images/tiny-pots_wider-2000px.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100vw;
  height: 100vh;
  padding: 5vw;
  display: flex;
}

.home-hero-text {
  width: 20vw;
  font-size: 16px;
  line-height: 22px;
}

.jpj-hero {
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 30px;
}

.style-container {
  width: 100vw;
  min-width: 940px;
  margin-left: auto;
  margin-right: auto;
  padding: 100px;
}

.style-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: space-between;
  align-items: stretch;
  height: 80vh;
}

.style-caption {
  width: 20%;
}

.style-photos {
  align-self: stretch;
}

.narrative-text {
  margin-bottom: 22px;
  font-size: 22px;
  line-height: 28px;
}

.heading-4 {
  text-transform: lowercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Qoagricola raw, sans-serif;
  font-weight: 400;
}

.content-holder {
  flex-direction: row;
  display: flex;
}

.grid {
  grid-template-rows: 1fr 2fr;
  grid-template-columns: 4fr 7fr;
}

.narrative-content {
  height: 90vh;
  overflow: hidden;
}

.narrative-big-text {
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 36px;
}

.flex-block {
  flex-direction: column;
  align-items: stretch;
  height: 100%;
}

.feature-container {
  border-top: 4px #6d5252;
  justify-content: space-around;
  width: 100vw;
  height: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.feature-container.with-outline-fixed {
  border: 4px solid #000;
  overflow: scroll;
}

.feature-text-side {
  flex-direction: column;
  justify-content: center;
  width: 40%;
  height: auto;
  min-height: 100%;
  padding: 0 60px 40px;
  display: block;
}

.feature-text-side.left-side {
  order: 1;
}

.feature-gallery-side {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60%;
  padding: 80px 40px;
  display: flex;
}

.feature-large-txt {
  padding-top: 40px;
  padding-bottom: 40px;
  font-family: Lato, sans-serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 44px;
}

.feature-large-txt.hero-text {
  color: #fff;
  font-family: Qoagricola rough, sans-serif;
  font-size: 40px;
  line-height: 50px;
}

.feature-large-txt.hero-text.fish-hero-text {
  color: #374a5b;
  width: 40%;
  font-size: 38px;
  line-height: 44px;
  position: relative;
}

.feature-large-txt.sans-serif {
  font-family: Lato, sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 32px;
}

.number {
  opacity: .19;
  font-size: 60px;
  line-height: 72px;
}

.feature-left-content {
  height: auto;
  margin-top: 40px;
  position: sticky;
  top: 40px;
  bottom: 40px;
}

.narrative-photo {
  margin-bottom: 40px;
}

.narrative-photo.smaller {
  width: 80%;
}

.new-hero {
  background-color: #c5cbd9;
  background-image: linear-gradient(#293345bd, #293345bd), url('../images/horseshoe-crab_blue.png');
  background-position: 0 0, 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, auto;
  background-attachment: scroll, fixed;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20vh;
  display: flex;
}

.new-hero.optoin2 {
  background-color: #293345;
  background-image: linear-gradient(#29334594, #29334594), url('../images/lidded-jars_1800.jpg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat;
  background-size: auto, auto;
  background-attachment: scroll, fixed;
  display: block;
}

.new-hero.fishbowl-hero {
  background-image: url('../images/dark-blue-fishbowl-side_hero-right-B_1920px.jpg');
  background-position: 0%;
  background-repeat: repeat;
  background-size: cover;
  background-attachment: scroll;
  justify-content: flex-start;
  align-items: center;
  padding-left: 10vh;
  padding-right: 10vh;
}

.center-narrative {
  color: #fff;
  text-align: center;
  background-color: #293345;
}

.center-narrative.bottom-text {
  padding-top: 100px;
  padding-bottom: 100px;
}

.hero-text-alt {
  color: #d6d6d6;
  font-family: Qoagricola, sans-serif;
  font-size: 28px;
  line-height: 36px;
}

.alt-hero-box {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  background-color: #293345;
  border: 0 solid #d8d8d8;
  flex-direction: column;
  align-items: center;
  width: 70vw;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  display: flex;
}

.break-up-image {
  background-image: url('../images/nature-bowls_IMG_3742-auto-color.jpg');
  background-position: 50%;
  background-size: cover;
  background-attachment: fixed;
  width: 100vw;
  height: 25vh;
}

.pink-text-link {
  color: #d44145;
  text-decoration: none;
}

.pink-text-link:hover {
  border-bottom: 2px solid #d44145;
}

.callout-section {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #374a5b;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  line-height: 22px;
}

.text-block-3 {
  text-transform: uppercase;
}

.sold-block {
  align-self: stretch;
}

.shop-hero {
  background-image: url('../images/horseshoe-crab_blue.png');
  background-position: 50%;
  background-size: contain;
  align-items: flex-end;
  width: 100vw;
  height: 60vh;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
}

.product-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  margin-bottom: 40px;
  display: flex;
}

.product-card {
  color: #000;
  flex: 1;
  align-self: stretch;
  max-height: 100vh;
  text-decoration: none;
}

.productname {
  text-transform: lowercase;
  margin: 10px 5px 5px;
  font-family: Qoagricola, sans-serif;
  font-size: 22px;
  font-weight: 400;
}

.utility-page-wrap {
  background-color: #374a5b;
  background-image: linear-gradient(#374a5bb0, #374a5bb0), url('../images/horseshoe-crab_blue.png');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, auto;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  color: #fff;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 40vw;
  display: flex;
}

@media screen and (max-width: 991px) {
  .track {
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .camera {
    width: auto;
    height: auto;
    overflow: visible;
  }

  .frame {
    flex-direction: column;
  }

  .item {
    height: 50vh;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .item.vertical-item {
    width: 100vw;
  }

  .navbar-custm-container {
    padding-left: 10px;
    padding-right: 0;
  }

  .panel5 {
    width: 120vw;
  }

  .feature-large-txt.hero-text.fish-hero-text {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .new-hero.fishbowl-hero {
    background-image: linear-gradient(#fff0 41%, #c5cbd9 68%), url('../images/dark-blue-fishbowl-side_improved_1920px.jpg');
    background-position: 0 0, 50% 0;
    background-repeat: repeat, no-repeat;
    background-size: auto, contain;
    background-attachment: scroll, scroll;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 10vh;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 32px;
  }

  h5 {
    font-size: 16px;
    line-height: 20px;
  }

  .track, .item {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .navbar {
    border-bottom-width: 2px;
    border-bottom-color: #293345;
    height: 62px;
  }

  .navlink {
    color: #293345;
    font-size: 18px;
    line-height: 24px;
    text-decoration: underline;
  }

  .navlink:focus {
    color: #4e5a40;
    text-align: left;
  }

  .container {
    padding-top: 60px;
  }

  .container.container-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .padded-section {
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .gallery-row {
    flex-direction: column;
    width: 45vw;
    height: auto;
  }

  .image-2 {
    width: 100%;
    height: auto;
  }

  .gallery-wrapper {
    flex-direction: row;
    justify-content: space-between;
    display: flex;
  }

  .brand2 {
    height: 62px;
  }

  .navmenu {
    background-color: #c5cbd9;
    border: 2px solid #293345;
    border-style: solid none;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .menu-btn.w--open {
    background-color: #8a99a6;
    border: 2px #293345;
  }

  .navbar-custm-container {
    padding-left: 5px;
  }

  .text-block {
    font-size: 14px;
    line-height: 20px;
  }

  .big-text {
    font-size: 42px;
    line-height: 48px;
  }

  .tagline {
    font-size: 32px;
    line-height: 36px;
  }

  .text-link {
    font-size: 14px;
    line-height: 18px;
  }

  .placeholder-msg {
    width: 80vw;
  }

  .horizontal-section {
    padding: 20px;
  }

  .heading-3 {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 20px;
  }

  .artwork-caption {
    margin-bottom: 3px;
  }

  .herringbone-grid {
    min-height: 640px;
  }

  .container-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .section {
    padding: 60px 20px;
  }

  .img-background-hero {
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-hero-text {
    width: 100%;
  }

  .text-block-2 {
    font-size: 15px;
    line-height: 21px;
  }

  .feature-container {
    border: 1px #000;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .feature-text-side {
    padding: 20px;
  }

  .feature-text-side.left-side {
    order: -1;
  }

  .feature-gallery-side {
    padding: 20px;
  }

  .feature-large-txt {
    padding: 20px;
    font-size: 22px;
    line-height: 28px;
  }

  .feature-large-txt.hero-text {
    font-size: 22px;
    line-height: 30px;
  }

  .feature-large-txt.hero-text.fish-hero-text {
    font-size: 32px;
    line-height: 36px;
  }

  .feature-left-content {
    margin-top: 0;
  }

  .narrative-photo {
    margin-bottom: 10px;
  }

  .new-hero {
    background-position: 100% 100%;
    background-size: contain;
    padding: 60px;
  }

  .new-hero.fishbowl-hero, .center-narrative {
    padding: 20px;
  }

  .productname {
    font-size: 20px;
    line-height: 22px;
  }

  .utility-page-wrap {
    background-image: linear-gradient(#374a5bc9, #374a5bc9), url('../images/horseshoe-crab_blue.png');
    background-position: 0 0, 50%;
    background-size: auto, contain;
  }

  .utility-page-content {
    width: 260px;
  }
}

@media screen and (max-width: 479px) {
  .item {
    padding: 10px 20px;
  }

  .herringbone-grid {
    height: auto;
  }

  .grid-img._7 {
    background-position: 50% 0;
    background-size: contain;
  }

  .img-background-hero {
    background-image: linear-gradient(#0000 34%, #fff 51%), url('../images/tiny-pots_square-1400px.jpg');
    background-position: 0 0, 50% 0;
    background-size: auto, contain;
    padding-bottom: 30px;
  }

  .feature-container {
    flex-direction: column;
    padding: 20px 0;
  }

  .feature-text-side {
    background-color: #fff;
    width: auto;
    height: auto;
    min-height: auto;
  }

  .feature-text-side.left-side {
    order: -1;
    min-height: auto;
    padding-bottom: 10px;
  }

  .feature-gallery-side {
    width: auto;
    height: auto;
    padding: 0 20px;
  }

  .feature-large-txt {
    border-top: 2px solid #000;
    padding-top: 15px;
    padding-left: 0;
    padding-right: 0;
    font-size: 20px;
    line-height: 26px;
  }

  .feature-large-txt.hero-text {
    border-top-style: none;
  }

  .feature-large-txt.hero-text.fish-hero-text {
    font-size: 26px;
    line-height: 32px;
  }

  .feature-large-txt.on-narrative {
    border-top-style: none;
    padding-top: 20px;
  }

  .number {
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 38px;
  }

  .feature-left-content {
    position: static;
    top: 50px;
    bottom: 220px;
  }

  .narrative-photo.smaller {
    width: 100%;
  }

  .new-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .new-hero.fishbowl-hero {
    background-image: url('../images/lg-dark-blue-fishbowl_mvert_B.jpg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    padding-bottom: 10vh;
  }

  .center-narrative.bottom-text {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .callout-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
  }
}

#w-node-_35544a39-31b0-c175-9cde-206dd0489656-46b50a7c {
  grid-area: 1 / 1 / 4 / 6;
}

#w-node-_35544a39-31b0-c175-9cde-206dd0489659-46b50a7c {
  grid-area: 1 / 6 / 4 / 9;
}

#w-node-_35544a39-31b0-c175-9cde-206dd048965c-46b50a7c {
  grid-area: 4 / 1 / 10 / 4;
}

#w-node-_35544a39-31b0-c175-9cde-206dd048965f-46b50a7c {
  grid-area: 4 / 4 / 7 / 9;
}

#w-node-_35544a39-31b0-c175-9cde-206dd0489662-46b50a7c {
  grid-area: 1 / 9 / 7 / 12;
}

#w-node-_35544a39-31b0-c175-9cde-206dd0489665-46b50a7c {
  grid-area: 7 / 4 / 10 / 7;
}

#w-node-_35544a39-31b0-c175-9cde-206dd0489668-46b50a7c {
  grid-area: 7 / 7 / 10 / 12;
}

@media screen and (max-width: 991px) {
  #w-node-_35544a39-31b0-c175-9cde-206dd0489656-46b50a7c {
    grid-area: 1 / 1 / 3 / 8;
  }

  #w-node-_35544a39-31b0-c175-9cde-206dd0489659-46b50a7c {
    grid-area: 1 / 8 / 3 / 12;
  }

  #w-node-_35544a39-31b0-c175-9cde-206dd048965c-46b50a7c {
    grid-area: 5 / 1 / 10 / 4;
  }

  #w-node-_35544a39-31b0-c175-9cde-206dd048965f-46b50a7c {
    grid-area: 3 / 1 / 5 / 9;
  }

  #w-node-_35544a39-31b0-c175-9cde-206dd0489662-46b50a7c {
    grid-area: 3 / 9 / 7 / 12;
  }

  #w-node-_35544a39-31b0-c175-9cde-206dd0489665-46b50a7c {
    grid-area: 5 / 4 / 7 / 9;
  }

  #w-node-_35544a39-31b0-c175-9cde-206dd0489668-46b50a7c {
    grid-area: 7 / 4 / 10 / 12;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_35544a39-31b0-c175-9cde-206dd0489656-46b50a7c {
    grid-area: 1 / 1 / 3 / 8;
  }

  #w-node-_35544a39-31b0-c175-9cde-206dd0489659-46b50a7c {
    grid-area: 1 / 8 / 3 / 12;
  }

  #w-node-_35544a39-31b0-c175-9cde-206dd048965c-46b50a7c {
    grid-area: 5 / 8 / 7 / 12;
  }

  #w-node-_35544a39-31b0-c175-9cde-206dd048965f-46b50a7c {
    grid-area: 3 / 5 / 5 / 12;
  }

  #w-node-_35544a39-31b0-c175-9cde-206dd0489662-46b50a7c {
    grid-area: 3 / 1 / 5 / 5;
  }

  #w-node-_35544a39-31b0-c175-9cde-206dd0489665-46b50a7c {
    grid-area: 5 / 1 / 7 / 8;
  }

  #w-node-_35544a39-31b0-c175-9cde-206dd0489668-46b50a7c {
    grid-area: 7 / 1 / 10 / 12;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_35544a39-31b0-c175-9cde-206dd048965c-46b50a7c {
    grid-area: 5 / 8 / 7 / 12;
  }
}


@font-face {
  font-family: 'Woodchuck';
  src: url('../fonts/Woodchuck-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Woodchuck';
  src: url('../fonts/Woodchuck-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Woodchuck';
  src: url('../fonts/Woodchuck-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Woodchuck';
  src: url('../fonts/Woodchuck-Heavy.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pier Sans';
  src: url('../fonts/PierSansBlack.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pier Sans';
  src: url('../fonts/PierSansBlackItalic.woff') format('woff');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Pier Sans';
  src: url('../fonts/PierSans-BoldItalic.woff') format('woff');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Pier Sans';
  src: url('../fonts/PierSans-Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Pier Sans';
  src: url('../fonts/PierSans-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pier Sans';
  src: url('../fonts/PierSansMediumItalic.woff') format('woff');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Pier Sans';
  src: url('../fonts/PierSans-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pier Sans';
  src: url('../fonts/PierSansLightItalic.woff') format('woff');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Pier Sans';
  src: url('../fonts/PierSansMedium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pier Sans';
  src: url('../fonts/PierSansLight.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Typwrng';
  src: url('../fonts/typwrng.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Qoagricola rough';
  src: url('../fonts/QOAgricola-Rough.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Qoagricola';
  src: url('../fonts/QOAgricola.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Qoagricola';
  src: url('../fonts/QOAgricola-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Qoagricola raw';
  src: url('../fonts/QOAgricola-Raw.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ciderhouse';
  src: url('../fonts/Ciderhouse-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}