/*
* TOC
*
* Custom Properties
* Base
* - Typography
* - Links & Buttons
* - Main
* Helpers & Accessibility
* - Helpers
* - Accessilibilty
* Header & Navigation
* - Mobile Top Nav
* -- Mobile Hamburger Menu
* -- Mobile Main Nav
* -- Mobile Utility Nav
* - Desktop Top Nav
* -- Desktop Utility Nav
* -- Desktop Main Nav
* -- Desktop Main Nav Dropdown
* Footer
* - Mobile Footer
* - Desktop Footer
* Pages
* - Repeated Page Patterns
* -- Full width background color
* - Homepage
* -- Homepage Hero
* -- Homepage Affiliates
* -- Homepage Unique Products
* -- Homepage Break Bread with Family
* -- Homepage About H&S
* -- Homepage Broader Variety
* -- Homepage Distribution
* -- About Us Page
* -- Products Page
* -- Sustainability Page
* -- In The Community Page
* -- Distribution Page
* -- Careers
* -- Contact
* -- Landing Pages
* -- Landing Page - Break Bread
* -- Landing Page - Unique Products
* -- Landing Page - Single Source
* -- Policies Page
* -- 404 and Thank You Pages
*/

/* 
*> Custom Properties
*/
:root {
  --primary-red: #AB231C;
  --secondary-red: #4C0B0B;
  --blue: #2A5ADA;
  --yellow: #FFC57F;
  --main-padding-lr: 1.9rem;
  --max-width: 100%;
  --block-margin-bottom: 4rem;
}
@media (min-width: 768px) {
  :root {
    --max-width: 66rem;
    --main-padding-lr: 2.3rem;
    --block-margin-bottom: 5rem;
  }
}

@media (min-width: 800px) {
  :root {
    --main-padding-lr: 3rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --main-padding-lr: 4rem;
    --block-margin-bottom: 6rem;
  }
}

  .primary-red {color: #AB231C !important;}
  .secondary-red {color: #4C0B0B !important;}

/* 
*> Base
*/
html {
  font-size: 16px;
  overflow-x: hidden;
}

@media (min-width: 1400px) {
  html {
    font-size: calc(100% + .2vw);
  }
}

body {
  background-color: white;
  margin: 0 auto;
  overflow-x: hidden;
  -webkit-text-size-adjust: none;
}


/* 
*>> Typography
*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

h1 {
  font-size: 2.25rem;
  line-height: 1.2;
  color: var(--secondary-red, #4C0B0B);
  margin-bottom: 1rem;
}

h2 {
  color: var(--primary-red, #AB231C);
  font-size: 1.9rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 span,
h2 span {
  color: var(--secondary-red, #4C0B0B); 
  margin-bottom: 1rem;
}

h1.invert-colors, h2.invert-colors, .invert-colors {color: var(--secondary-red, #4C0B0B); }
h2.invert-colors span, p.tag.invert-colors { color: var(--primary-red, #AB231C); }

h3 {
  font-size: 1.25rem;
  line-height: 1.35;
  color: var(--primary-red, #AB231C);
}

p,
ul li {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: .5rem;
  letter-spacing: .05rem;
  color: #222222;
}

.padding-2 {padding:2rem;}

p.tag {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    color: var(--secondary-red, #4C0B0B);
    font-size: 1.25rem;
    margin-bottom: 4px;
}

p a:hover {
  text-decoration: underline;
}

.small {
  font-size: 0.6875rem;
}

/* 
*>> Links & Buttons
*/
p a:link,
p a:visited,
p a:active {
  color: var(--primary-red, #4C0B0B);
  text-decoration: none;
}

.button:link,
.button:active,
.button:visited,
button {
  background-color: var(--yellow, #FFC57F);
  border-radius: 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.12rem;
  display: inline-block;
  width: auto;
  margin: 1rem auto;
  text-align: center;
  text-decoration: none;
  color: var(--primary-red, #4C0B0B);
  padding: .4rem 1.5rem .48rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1rem;
  transition: .2s all;
  line-height: 120%;
}
@media (max-width: 767px) {
  body.distribution #main article button {width: 100%;}
}
.button:hover,
button:hover {
  color: white;
  cursor: pointer;
  background-color: var(--primary-red, #4C0B0B);
}

.button.white-bkgrnd:link,
.button.white-bkgrnd:active,
.button.white-bkgrnd:visited,
button.white-bkgrnd {
  background-color: white;
}

.button.white-bkgrnd:hover,
button.white-bkgrnd {
  color: white;
  background-color: var(--primary-red, #4C0B0B);
}

button.a11y-modal__close-btn:hover {
  background-color: transparent;
  color: var(--primary-red, #4C0B0B);
}

/* 
*>> Main
*/
#main {
  padding: 0 var(--main-padding-lr, 2.3rem);
  max-width: var(--max-width, 66rem);
  margin: -4rem auto 0;
}

@media (min-width: 768px) {
  #main {
    padding: var(--main-padding-lr, 2.3rem);
    padding-bottom: 0;
  }
}


/* 
*> Helpers & Accessibility
*/
/* 
*>> Helpers
*/


input,
textarea,
option {
    font-size: 0.8125rem;
}
input[type=text],
input[type=password],
textarea {
    border: 1px solid #DBDBDB;
    padding: .6rem 1rem;
    margin: .2rem 0;
    width: 100%;
    font-size: .8rem;
    transition: background-color .2s;
    -moz-transition: background-color .2s;
    -webkit-transition: background-color .2s;
    -o-transition: background-color .2s;
    border-radius: 2rem;
    -moz-border-radius: 2rem;
    -webkit-border-radius: 2rem;
    -moz-box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
}
input:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 2px 4px #ddd;
    background-color: #fffdf3;
    transition: background-color .5s;
    -moz-transition: background-color .5s;
    -webkit-transition: background-color .5s;
    -o-transition: background-color .5s;
}

.field.required {
    position: relative;
}
.field.required:before {
    content: "•";
    color: #AB231C;
    display: block;
    position: absolute;
    top: -.3rem;
}
span.required {
border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.form_fields li label {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.9375rem;
    text-align: left;
    margin: 0 0.625rem 0.3125rem 0;
    line-height: 1.0625rem;
    color: #333;
    padding-left: .7rem;
}

.position-relative {
  position: relative;
}

@media (max-width: 767px) {
.mobile-full-width{
    margin: 0 -2rem;
    max-width: none;
    width: 120%;
  }
}

.text-center {text-align: center;}
.text-left {text-align: left;}

.full-width-ingore-padding {
  position: relative;
  width: calc(var(--main-padding-lr, 2.3rem) + var(--main-padding-lr, 2.3rem) + 100%);
  right: var(--main-padding-lr, 2.3rem);
  margin-bottom: 2rem;
  max-width: none;
}

@media (min-width: 568px) {
  .full-width-ingore-padding-mobile-only {
    width: 100%;
    right: initial;
    margin-bottom: 0;
    max-width: 100%;
  }  
}

.block-margin-bottom {
  margin-bottom: var(--block-margin-bottom, 5rem);
}

.flex-stack-reverse {
  display: flex;
  flex-direction: column-reverse;
}

.two-col-column {
  margin: .5rem 0;
}


  .desktop-only {display: none !important;}

@media (min-width: 768px) {
  .two-col {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .two-col-column {
    flex: 1;
  }

  .two-col-column + .two-col-column {
    margin-left: 2.5rem;
  }

  #main {margin: -6.75rem auto 0;}
  .desktop-only {display: inline-block !important;}
  .mobile-only {display: none !important;}
  .row-reverse-desktop {flex-direction: row-reverse;}
  .row-reverse-desktop .two-col-column + .two-col-column {
    margin-left: 0;
    margin-right: 2.5rem;
}
}

@media (min-width: 1028px) {
  .two-col-column.one-third {
    flex: 3;
  }

  .two-col-column.two-thirds {
    flex: 5;
  }

  .two-col-column + .two-col-column {
    margin-left: 4rem;
  }
}

/* 
*>> Accessilibilty
*/
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.skip-link {
  position: absolute;
  top: -3.4rem;
  left: 0;
  z-index: 400000;
  margin: 0 !important;
}

.skip-link:focus {
  top: 0;
  margin: 0 !important;
}

/* 
*> Header & Navigation
*/
.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--main-padding-lr, 2.3rem);
  height: 8.125rem;
  max-width: var(--max-width, 66rem);
  position: relative;
  z-index: 100000;
}

.header-logo {
    z-index: 100;
    width: 130px;
    margin-top: 3rem;
}

@media (min-width: 768px) {
  .header {
    height: 6.35rem;
    align-items: flex-end;
    margin: 0 auto;
  }

  .header-logo {
    align-self: center;
  }

}
/* 
*>> Mobile Top Nav
*/
.utility-main-nav-wrapper {
  display: none;
}

.utility-main-nav-wrapper.active {
  display: block;
  background-color: rgba(255, 255, 255, 1.0);
  flex-direction: column-reverse;
  width: 100%;
  height: calc(100vh - 128px);
  position: absolute;
  top: 129px;
  justify-content: flex-end;
  align-items: center;
  z-index: 100;
  left: 0;
  right: 0;
  z-index: 50;
  overflow: scroll;
}

.mainMenu-trigger--wrap {
  background-color: transparent;
  width: 40px;
  height: 40px;
  padding: 0;
  display: block;
  border-width: 0;
  border-color: transparent;
  z-index: 1000;
  margin: 0;
  position: relative;
}

.mainMenu-trigger--wrap:hover {
  background-color: transparent;
}


/* 
*>>> Mobile Hamburger Menu
*/
.mainMenu-trigger--wrap span {
  border: 2px solid #AF221D;
  width: 100%; 
  display: block;
  position: relative;
  width: 24px;
  cursor: pointer;
  border-radius: 2px;
  margin: 0 auto;
}

.mainMenu-trigger--wrap span.line-two {
  margin: 5px auto;
}

.mainMenu-trigger--wrap.active span.line-one, 
.mainMenu-trigger--wrap.active span.line-three {
  border-color: var(--primary-red, #4C0B0B);
  width: 30px;
}
.mainMenu-trigger--wrap.active span.line-one {
  transform: rotate(45deg);
}

.mainMenu-trigger--wrap.active span.line-two {
  display: none;
}

.mainMenu-trigger--wrap.active span.line-three {
  transform: rotate(-45deg);
  top: -4px;
}

.mainMenu-trigger--wrap .menu-text {
  font-size: 8px;
  color: #555249;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

/* 
*>>> Mobile Main Nav
*/

.utility-main-nav-wrapper .main-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.main-nav-dropdown {
  display: none;
}

.utility-main-nav-wrapper .main-nav-li {
  margin-bottom: .5rem;
}

.utility-main-nav-wrapper .main-nav a:link,
.utility-main-nav-wrapper .main-nav a:visited,
.utility-main-nav-wrapper .main-nav a:active {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--secondary-red, #4C0B0B);
  text-decoration: none;
  text-align: center;
  font-size: 1.85rem;
  margin-bottom: 0;
}

.active-nav-item {
  border-bottom: 1px solid var(--primary-red, #4C0B0B);
}

/*.main-nav-about-us, .main-nav-distribution {
  display: none;
}
*/
@media (max-width: 370px) {
  .utility-main-nav-wrapper .main-nav a:link,
  .utility-main-nav-wrapper .main-nav a:visited,
  .utility-main-nav-wrapper .main-nav a:active {
    font-size: 1.6rem;
  }
}

/* 
*>>> Mobile Utility Nav
*/
.utility-main-nav-wrapper .utility-nav {
  margin: 1rem 0 0 0;
  display: flex;
  flex-direction: column-reverse;
}

.utility-main-nav-wrapper .utility-nav a:link,
.utility-main-nav-wrapper .utility-nav a:visited,
.utility-main-nav-wrapper .utility-nav a:active {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: .9rem;
  text-decoration: none;
  text-align: center;
  color: #584B40;
  margin-bottom: .7rem;
}

.utility-nav-phone span {
  color: #0F7EFF;
}

@media (max-width: 370px) {
  .utility-main-nav-wrapper .utility-nav a:link,
  .utility-main-nav-wrapper .utility-nav a:visited,
  .utility-main-nav-wrapper .utility-nav a:active {
    font-size: .75rem;
    margin-bottom: .4rem;
  }
}

/* 
*>> Desktop Top Nav
*/
@media (min-width: 768px) {
  .mainMenu-trigger--wrap {
    display: none;
  }
  .utility-main-nav-wrapper {
    display: block;
  }
  .utility-nav-phone span {
    color: #584B40;
  }

/* 
*>>> Desktop Utility Nav
*/ 
  .utility-main-nav-wrapper .utility-nav {
    flex-direction: row;
    position: absolute;
    top: 0;
    margin: 0;
    right: 2.4rem;
    justify-content: center;
  }

  .utility-main-nav-wrapper .utility-nav a:link,
  .utility-main-nav-wrapper .utility-nav a:visited,
  .utility-main-nav-wrapper .utility-nav a:active {
    font-size: .7rem;
    background-color: #F8F8F8;
    padding: .4rem 1.2rem;
  }

  .utility-main-nav-wrapper .utility-nav .utility-nav-phone {
    border-bottom-left-radius: 1rem;
    margin-right: .2rem;
  }
  .utility-main-nav-wrapper .utility-nav .utility-nav-login {
    border-bottom-right-radius: 1rem;
  }


/* 
*>>> Desktop Main Nav
*/
  .utility-main-nav-wrapper .main-nav {
    flex-direction: row;
    position: relative;
  }

  .main-nav-mobile-only {
    display: none;
  }

  .utility-main-nav-wrapper .main-nav a:link,
  .utility-main-nav-wrapper .main-nav a:visited,
  .utility-main-nav-wrapper .main-nav a:active {
    font-size: .88rem;
    margin: 0;
  }

  .utility-main-nav-wrapper .main-nav a:hover {
    border-bottom: 1px solid var(--primary-red, #4C0B0B);
  }

  .main-nav-about-us, .main-nav-distribution {
    display: block;
  }

  .main-nav-our-story,
  .main-nav-sustainability,
  .main-nav-in-the-community {
    display: none;
  }

/* 
*>>> Desktop Main Nav Dropdown
*/
  .utility-main-nav-wrapper .main-nav-li {
    padding: 1rem;
    cursor: pointer;
    margin: 0 0 .6rem 0;
  }
  
  .utility-main-nav-wrapper .main-nav-about-us:focus-within .main-nav-dropdown,
  .utility-main-nav-wrapper .main-nav-about-us:hover .main-nav-dropdown {
    display: block;
    position: absolute;
    z-index: 220;
    left: -2.2rem;
    top: 3.6rem;
  }

  .utility-main-nav-wrapper .main-nav-distribution:focus-within .main-nav-dropdown,
  .utility-main-nav-wrapper .main-nav-distribution:hover .main-nav-dropdown {
    display: block;
    position: absolute;
    z-index: 220;
    left: 9rem;
    top: 3.6rem;
  }

  .utility-main-nav-wrapper .main-nav-dropdown .main-nav-li {
    padding: 0;
    margin: 0;
  }

  .utility-main-nav-wrapper .main-nav-dropdown .main-nav-li a {
    display: block;
    background-color: white;
    text-align: center;
    padding: .75rem 1rem;
    font-size: 0.875rem;
    color: #222222;
    font-weight: 500;
    transition: .2s color;
  }

  .utility-main-nav-wrapper .main-nav-dropdown .main-nav-li a.active-nav-item {
    border: none;
  }

  .utility-main-nav-wrapper .main-nav-dropdown .main-nav-li a:hover {
    border: none;
    color: var(--primary-red, #4C0B0B);
    text-decoration: underline;
  }
}


@media (min-width: 1024px) {
  .utility-main-nav-wrapper .utility-nav {
    right: 2.8rem;
  }
}
/* 
*> Footer
*/
/* 
*>> Mobile Footer
*/

.extra-links {
    display: flex;
    width: 210px;
    margin: 1rem auto 4rem;
    justify-content: space-between;
}

.footer-wrap-content {
    background-image: url(/static/images/footer-bg-mobile.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}

.footer-back-top {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  color: #555249;
  text-decoration: none;
  margin-bottom: 1rem;
  grid-area: back-top;
}

.footer-nav-a:link, .footer-nav-a:visited, .footer-nav-a:active {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    margin: .55rem auto;
    color: var(--primary-red, #4C0B0B);
    letter-spacing: .02rem;
    display: block;
}

.footer-nav-a:hover {
  text-decoration: underline;
  text-decoration-color: var(--primary-red, #4C0B0B);
}

.footer-nav-our-story {
  grid-area: footer-nav-story;
}
.footer-nav-sustain {
  grid-area: footer-nav-sustain;
}
.footer-nav-in-comm {
  grid-area: footer-nav-comm;
}
.footer-nav-products {
  grid-area: footer-nav-products;
}
.footer-nav-distribution {
  grid-area: footer-nav-distrib;
}
.footer-nav-careers {
  grid-area: footer-nav-careers;
}
.footer-nav-contact {
  grid-area: footer-nav-contact;
}
.footer-nav-policies {
  grid-area: footer-nav-policies;
}

.footer-logo {
    width: 150px;
    margin: 0 auto 1rem;
    grid-area: logo;
    display: block;
}

.footer-address {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: .75rem;
  color: #555249;
  grid-area: address;
}

.footer-tel:link,
.footer-tel:visited,
.footer-tel:active {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #555249;
  text-decoration: none;
  margin: 1.5rem 0 .5rem 0;
  display: block;
  grid-area: phone;
  letter-spacing: .065rem;
}

.footer-tel:hover {
  text-decoration: underline;
}

.footer-wrap-content {
  padding: var(--main-padding-lr, 2.3rem);

}

@media (min-width: 600px) {
.footer-wrap-content {background-image: url(/static/images/footer-bg.jpg);}
}

@media (min-width: 768px) {
  .footer-tel:link,
  .footer-tel:visited,
  .footer-tel:active,
  .footer-address {
    margin: 0;
  }
  .footer-address {
    margin-top: 2rem;
  }
}

.footer-policies:link,
.footer-policies:visited,
.footer-policies:active {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: #555249;
  text-decoration: none;
  grid-area: policies;
  text-align: right;
  align-self: end;
}

.footer-policies:hover {
  text-decoration: underline;
}

.footer-copyright {
  font-size: .5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #555249;
  letter-spacing: .05rem;
  grid-area: copyright;
  margin-top: 2rem;
  display: block;
}

/* 
*>> Desktop Footer
*/
@media (min-width: 768px) {
  .footer-wrap-content {
    padding-top: 3.125rem;
    padding-bottom: 1.625rem;
  }

  .footer-nav-a {
    margin: 0 0 1rem 1rem;
  }

  .footer-back-top {
    display: none;
  }

  .footer-logo {
    margin: 0;
    width: 11.5rem;
  }
  
  .footer-nav {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-address br {
    display: none;
  }

  .footer-copyright {
    align-self: end;
    margin-bottom: .2rem;
  }
}


/* 
*> Pages
*/
/* 
*>> Repeated Page Patterns
*/
.page-title-no-hero-img {
  margin-top: 4.8rem;
  font-size: 1.875rem;
}


@media (min-width: 768px) {
  .page-title-no-hero-img {
    margin-top: 3rem;
    font-size: 2.8125rem;
  }

  .header-knockout {
    margin-top: calc(var(--main-padding-lr, 2.3rem) * -1);
    margin-bottom: 4rem;
  }
  .homepage-hero.header-knockout{margin-bottom: 0rem;}

  .footer-wrap-content {
    background-image: none;
    max-width: var(--max-width, 66rem);
    margin: 0 auto;
  }

  footer {
      background-image: url(/static/images/footer-bg.jpg);
      background-size: cover;
      background-position: top;
      background-repeat: no-repeat;
  }

}

@media (min-width: 1024px) {
  .header-knockout {
    margin-bottom: 5rem;
  }
}

.full-width-ingore-padding h1.header-knockout-center-heading {
    position: absolute;
    top: 16%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: var(--secondary-red, #4C0B0B);
    text-align: center;
    width: 100%;
}


@media (min-width: 768px) {
  .full-width-ingore-padding h1.header-knockout-center-heading {
    text-align: left;
    left: 0;
    transform: translate(0, -50%);
  }
}

@media (min-width: 1024px) {
  .page-title-no-hero-img {
    margin-top: 3rem;
    font-size: 3.1875rem;
  }
}

/* 
*>>> Full width background color
*/
.full-bkgrnd-block-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin: 0 -50vw var(--block-margin-bottom, 5rem) -50vw;
}

.full-bkgrnd-block-content {
  padding: 0 var(--main-padding-lr, 2.3rem);
  width: 100%;
  max-width: var(--max-width, 66rem);
  margin: 0 auto;
}

.full-bkgrnd-block-content-img {
  position: relative;
  top: -4rem;
  margin-top: 3rem;
  margin-bottom: -1rem;
}

.rounded-corners {border-radius: 20px;}

@media (min-width: 768px) {
  .rounded-corners-desktop {border-radius: 20px;}
  .full-bkgrnd-block-content-img {
    top: 0;
  }

  .full-bkgrnd-block-content .two-col-column {
    margin-top: 0;
    margin-bottom: 0;
    flex: 6;
    align-self: flex-start;
  }

  .full-bkgrnd-block-content .two-col-column.full-bkgrnd-block-content-img {
    flex: 5;
  }
}


/* 
*>> Homepage
*/
/* 
*>>> Homepage Hero
*/

img.home-header-bkgrnd-img {
    max-width: none;
    width: 600px;
    margin: 0 auto;
    display: block;
    position: relative;
    left: 50%;
    margin-left: -270px;
}

.homepage-hero {
  position: relative;
}
.home-header-fresh-type {
    position: absolute;
    left: 1.7rem;
    top: 450px;
    max-width: 425px;
}

.home-header-fresh-type img {
  width: 52%;
}

.home-header-fresh-type .home-header-fresh-type-paragraph {
  color: #555249;
  font-weight: 500;
  width: 79%;
  font-size: .88rem;
  line-height: 1.8;
  margin-top: .8rem;
}

@media (min-width: 568px) {
  .home-header-fresh-type {
    top: 28%;
    text-align: left;
    width: 57%;
  }

  .home-header-fresh-type .home-header-fresh-type-paragraph {
    line-height: 1.6;
    font-size: .8rem;
  }

  img.home-header-bkgrnd-img {
    width: 120%;
    left: initial;
    margin: 0;
  }
}

@media (min-width: 768px) {
  .home-header-fresh-type {
    top: 32%;
  }
  img.home-header-bkgrnd-img {width: 100%;}
  .home-header-fresh-type .home-header-fresh-type-paragraph {margin-bottom: 0;}
}

@media (min-width: 1024px) {
  .home-header-fresh-type .home-header-fresh-type-paragraph {
    font-size: 1.12rem;
    margin: 1.12rem 0 .5rem;
    width: 81%;
  }
}

@media (min-width: 66rem) {
  img.home-header-bkgrnd-img, 
  img.about-header-bkgrnd-img,
  img.services-header-bkgrnd-img {
    width: 75rem;
    max-width: 75rem;
    position: relative;
    left: -7%;
    top: -6.35rem;
    margin-bottom: -6.35rem;
  }
  img.about-header-bkgrnd-img,
  img.services-header-bkgrnd-img {top: -5.35rem;}
  .home-header-fresh-type {
    top: 29%;
  }
}

/* 
*>>> Homepage Affiliates
*/
.affiliate-companies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  align-items: center;
  margin-bottom: 3rem;
  margin-top: 2.5rem;
}

.affiliate-companies h2 {
  text-transform: uppercase;
  font-size: .9rem;
  color: #584B40;
  font-weight: 400;
  text-align: center;
  grid-column: 1/3;
  margin-bottom: 1rem;
  letter-spacing: .25rem;
}

.affiliate-companies a {
  width: 55%;
  margin: 1.5rem 0;
  max-width: 9rem;
}

@media (min-width: 568px) {
	.affiliate-companies {
    grid-template-columns: 1fr 1fr;
    max-width: 25rem;
    margin: 0rem auto 3rem;
  }
  .affiliate-companies h2 {
    grid-column: 1/5;
  }

}



@media (min-width: 1024px) {

  .affiliate-companies a img {
    transition: .2s transform;
    max-width: 9rem;
  }

  .affiliate-companies a img:hover {
    transform: scale(1.3);
  }

	.affiliate-companies {
	    max-width: 40%;
	    margin-left: 46%;
	    margin-bottom: 3rem;
	}

	.affiliate-companies a {
	    width: 100%;
	}
}

/* 
*>>> Homepage Unique Products
*/
.home-unique-products-wrap {
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
  margin-bottom: -3rem;
  padding-bottom: 8rem;
}

@media (min-width: 768px) {
  .home-unique-products-wrap {
    margin-bottom: 0;
    padding-bottom: 6rem;
  }
}

.home-ideation {
    background-image: url(/static/images/section-2-bg.jpg);
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    background-size: 100% 100%;
    background-position: right top;
    background-repeat: no-repeat;
    padding-top: 9rem;
}

@media (min-width: 768px) {
  .home-ideation {
    padding-top: 14rem;
    padding-bottom: 12rem;
    margin-bottom: 2.5rem;
    margin-top: -6rem;
  }
}
/* 
*>>> Homepage Break Bread with Family
*/
@media (min-width: 768px) {
  .home-break-bread-family {
    margin-top: -9rem;
    padding-top: 2.5rem;
    padding-bottom: 4rem;
  }
}


@media (min-width: 1024px) {
  .home-break-bread-family {
    padding-bottom: 0;
    padding-top: 1.5rem;
    margin-bottom: 5rem;
    margin-top: -5rem;
  }
  .home-break-bread-family-img {
    bottom: -3rem;
    position: relative;
  }
  .home-break-bread-family h2 {
    font-size: 2.5rem;
}
}

@media (min-width: 66rem) {
	.affiliate-companies{
	    margin-top: -9.5rem;
	}
}

/* 
*>>> Homepage About H&S
*/
.home-about-hs {
  position: relative;
  margin-bottom: 1.5rem;
  grid-area: home-about-main;
  background-image: url(/static/images/home/about-home-block-workers-mobile.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 0;
  padding: 0 var(--main-padding-lr, 2.3rem) 120% var(--main-padding-lr, 2.3rem);
}


.home-about-hs .home-about-hs-get-story,
.home-about-hs .learn-more-text {
  color: #B8E986;
  text-transform: uppercase;
  font-size: .75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: .1rem;
  margin: 0;
}

.home-about-hs .home-about-hs-get-story {
  position: relative;
  top: 1.5rem;
  margin-bottom: 52%;
}

.home-about-hs .home-about-hs-title {
  color: white;
  font-size: 2.81rem;
  margin: 0 ;
}

.home-about-hs p {
  color: white;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .07rem;
  width: 75%;
  max-width: 19rem;
}

@media (max-width: 370px) {
  .home-about-hs .home-about-hs-get-story {
    margin-bottom: 45%;
  }
  
  .home-about-hs p {
    width: auto;
  }
}

.home-about-hs .learn-more-text {
  color: #E6CD82;
  position: absolute;
  bottom: 5%;
  transition: .2s color;
}

.home-about-hs .learn-more-text:hover {
  color: #CB9700;
}

.home-about-hs-in-comm,
.home-about-hs-growing-team {
  width: 105%;
  margin: 0 auto 0 -2.5%;
  padding: 0 3rem 0 1.5rem;
  height: 18.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-about-hs-in-comm {
  background-color: #FFF5D8;
  grid-area: home-about-in-comm;
}

.home-about-hs-growing-team {
  background-color: #EAF5D3;
  grid-area: home-about-growing-team;
  margin-top: 1rem;
}

.home-about-hs-in-comm h2 span,
.home-about-hs-growing-team h2 span {
  color: #696969;
  text-transform: uppercase;
  display: block;
  font-weight: 700;
  font-size: .75rem;
  margin-bottom: 0.3rem;
}

.home-about-hs-in-comm h2,
.home-about-hs-growing-team h2 {
  font-weight: 700;
  font-size: 1.7rem;
}

.home-about-hs-in-comm h2 {
  color: #B38600;
}

.home-about-hs-growing-team h2 {
  color: #4C0B0B;
}

.home-about-hs-in-comm .learn-more-text,
.home-about-hs-growing-team .learn-more-text {
  color: #6B6B6B;
  text-transform: uppercase;
  font-size: .75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: .1rem;
  transition: .2s color;
}

.home-about-hs-in-comm .learn-more-text:hover,
.home-about-hs-growing-team .learn-more-text:hover {
  color: #444444;
}

@media (min-width: 568px) {
  .home-about-hs-sections-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "home-about-main home-about-main"
      "home-about-in-comm home-about-growing-team";
    margin-bottom: 4rem;
  }
  .home-about-hs-growing-team {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .home-about-hs-sections-wrap {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-template-areas:
      "home-about-main home-about-in-comm"
      "home-about-main home-about-growing-team";
    margin-bottom: 5rem;
    margin-top: 5rem;
    grid-auto-rows: 18rem;
  }

  .home-about-hs { 
    margin: 0;
    background-image: url(/static/images/home/about-home-block-workers-desktop.jpg);
    height: 100%;
    width: 100%;
    right: 0;
    padding-bottom: 100%;
  }

  .home-about-hs-copy {
    margin-top: 14.5rem;
  }

  .home-about-hs .home-about-hs-get-story {
    position: static;
    margin-bottom: 0;
  }

  .home-about-hs p {
    width: auto;
  }

  .home-about-hs .learn-more-text {
    position: static;
  }

  .home-about-hs-in-comm,
  .home-about-hs-growing-team {
    width: auto;
    margin: 0;
    padding: 0 1rem;
    height: auto;
  }
}

@media (min-width: 968px) {
  .home-about-hs-sections-wrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-auto-rows: 18.75rem;
    margin-top: 9rem;
    margin-bottom: 4rem;
  }

  .home-about-hs { 
    padding-bottom: calc(18.75rem * 2);
  }
  .home-about-hs-in-comm,
  .home-about-hs-growing-team {
    padding: 0 3rem 0 1.5rem;
  }
}

/* 
*>>> Homepage Broader Variety
*/
.home-broader-variety-wrap {
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .home-broader-variety-wrap {
    margin-top: 0;
    margin-bottom: 3rem; 
  }
}

@media (min-width: 1024px) {
  .home-broader-variety-wrap .two-col-column.one-third {
    flex: 4;
  }
}

/* 
*>>> Homepage Distribution
*/
.home-distribution-bkgrnd {
  background-image: linear-gradient(#F1EFF4, #FFFFFF);
  background-size: 100% 30%;
  background-repeat: no-repeat;
  background-position: center top;
  margin-bottom: 3rem;
}

.home-distribution {
    padding: 5rem 2.3rem 2.3rem;
}

@media (min-width: 768px) {
  .home-larger-desktop-heading {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .home-distribution-bkgrnd {
    margin-bottom: 1rem;
  }

  .home-larger-desktop-heading {
    font-size: 2.5rem;
        max-width: 24rem;
  }
}


@media (max-width: 567px) {
	.affiliate-companies {
    	margin-top: -50px;
	}
}
.affiliate-companies {
    z-index: 10;
    position: relative;
}

.affiliate-companies a {
    width: 75%;
    margin: 0.5rem 0;
}

.affiliate-companies a:last-child {
    margin-right: 3.25rem;
}

.home-unique-products-wrap {
    padding-top: 4rem;
}

/* 
*>>> About Us Page
*/
.reshaping-baking {
  margin-top: -5.4rem;
  position: relative;
}


@media (min-width: 768px) {
  .reshaping-baking {
    margin: 3rem 0 0 0;
  }
  .reshaping-baking img {
    margin: 0;
    width: auto;
  }
}

.about-we-succeed-wrap {
  background-color: #FFF5D8;
  margin-top: 6rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .about-we-succeed-wrap {
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
  }

  .about-we-succeed-wrap .full-bkgrnd-block-content .two-col-column.full-bkgrnd-block-content-img {
    position: static;
  }
}

@media (min-width: 1028px) {
  .about-we-succeed-wrap {
    padding-bottom: 0;
    padding-top: 0;
  }

  .about-we-succeed-wrap .full-bkgrnd-block-content .two-col-column.full-bkgrnd-block-content-img {
    position: relative;
  }
}

.core-beliefs-slider-section {
  margin-bottom: 8rem;
}
.core-beliefs-section-headline {
  text-align: center;
  color: #4A4A4A;
  font-weight: 700;
  font-size: 1.5625rem;
}

.core-beliefs-slider .slick-dots {
  bottom: -2.5rem;
}

.core-beliefs-slider .core-beliefs-slide {
  width: 100%;
  flex: 0 0 auto;
  min-height: 29.25rem;
  margin: 0 .4rem;
  transition: .2s all;
  -webkit-box-shadow: 0 0.125rem 0.5rem 0 rgba(0,0,0,0.12);
  -moz-box-shadow: 0 0.125rem 0.5rem 0 rgba(0,0,0,0.12);
  box-shadow: 0 0.125rem 0.5rem 0 rgba(0,0,0,0.12);
}

.core-beliefs-slider .core-beliefs-slide:not(.slick-active) {
  opacity: 0.4;
  transform: scale(.95);
}

.core-beliefs-slider-mission,
.core-beliefs-slider-learning {
  border-bottom: 0.875rem solid #C6A673;
}

.core-beliefs-slider-mission .core-beliefs-slider-title-wrap,
.core-beliefs-slider-learning .core-beliefs-slider-title-wrap {
  background-color: #93E083;
  background-image: linear-gradient(#D5BE8E, #C6A673);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.core-beliefs-slider-be-well,
.core-beliefs-slider-right-thing {
  border-bottom: 0.875rem solid #DDB84F;
}

.core-beliefs-slider-be-well .core-beliefs-slider-title-wrap,
.core-beliefs-slider-right-thing .core-beliefs-slider-title-wrap {
  background-color: #93E083;
  background-image: linear-gradient(#E6CE62, #DDB84F);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.core-beliefs-slider-experience {
  border-bottom: 0.875rem solid #58BA65;
}

.core-beliefs-slider-experience .core-beliefs-slider-title-wrap {
  background-color: #93E083;
}

.core-beliefs-slider-experience .core-beliefs-slider-title-wrap,
.core-beliefs-slider-our-vision {
  background-color: #93E083;
  background-image: linear-gradient(#93E083, #58BA65);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.core-beliefs-slider-our-vision ul.core-beliefs-slider-list {
  background-color: transparent;
  list-style: none;
}

.core-beliefs-slider-our-vision ul.core-beliefs-slider-list li {
  padding-left: 0;
  text-indent: 0;
}

.core-beliefs-slider-our-vision ul.core-beliefs-slider-list li:before {
  display: none;
}

.core-beliefs-slider-wheat {
  opacity: 0.4;
}

.core-beliefs-slider-our-vision ul.core-beliefs-slider-list h3 {
  color: white;
  font-size: 1.8125rem;
}

.core-beliefs-slider-title-wrap {
  padding: calc(var(--main-padding-lr, 2.3rem)/2.5) calc(var(--main-padding-lr, 2.3rem)/1.75);
}

.core-beliefs-slider-subtitle {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  color: white;
  font-size: .75rem;
  letter-spacing: .2rem;
  text-transform: uppercase;
}

.core-beliefs-slider-title {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0;
}

ul.core-beliefs-slider-list {
  background-color: white;
  list-style-type: none;
  padding: calc(var(--main-padding-lr, 2.3rem)/2);
}

ul.core-beliefs-slider-list li {
  font-size: .9rem;
  font-weight: 300;
  margin-bottom: 0.7rem;
  position: relative;
  padding-left: 1rem;
}

ul.core-beliefs-slider-list li:before {
  content: '•';
  position: absolute;
  left: 0;
  font-size: .5rem;
  top: .3rem;
}

.core-beliefs-slider .slick-prev:before,
.core-beliefs-slider .slick-next:before {
  display: block;
  width: 0.625rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.core-beliefs-slider .slick-prev:before {
  content:url('../images/global/left-arrow.svg');
  left: -.15rem;
}

.core-beliefs-slider .slick-next:before {
  content:url('../images/global/right-arrow.svg');
  right: -.15rem;
}

.core-beliefs-slider .slick-prev,
.core-beliefs-slider .slick-next {
  width: 0.75rem;
  z-index: 1001;
  border-radius: 0;
  height: 100%;
  margin: 0;
  width: 2.5rem;
}

.core-beliefs-slider .slick-prev {
  left: .6rem;
  left: 0;
}

.core-beliefs-slider .slick-next {
  right: .6rem;
  right: 0;
}

@media (min-width: 568px) {
  .core-beliefs-slider-list li {
    font-size: .8rem;
  }

  .core-beliefs-slider-section {
    margin-bottom: 7rem;
    max-width: 100%;
    right: 0;
  }

  .core-beliefs-slider .core-beliefs-slide {
    margin: 0 .75rem;
  }

  .core-beliefs-slider .core-beliefs-slide:not(.slick-active) {
    opacity: 1;
    transform: none;
  }

  .core-beliefs-slider .slick-prev,
  .core-beliefs-slider .slick-next {
    width: 3rem;
  }

  .core-beliefs-slider .slick-prev:before {
    left: -2.25rem;
  }

  .core-beliefs-slider .slick-next:before {
    right: -2.25rem;
  }

  .core-beliefs-slider .core-beliefs-slide {
    min-height: 30rem;
  }

  /*.core-beliefs-slider .slick-prev {
    background-image: linear-gradient(to right, white , rgba(256, 256, 256, 0));
    background-size: 100%;
  }

  .core-beliefs-slider .slick-next {
    background-image: linear-gradient(to left, white , rgba(256, 256, 256, 0));
    background-size: 100%;
  }*/

  .slick-dots li button:before {
    font-size: 0.5rem;
  }

  .core-beliefs-slider .slick-dots {
    bottom: -3rem;
  }
}
@media (min-width: 1024px) {
  .core-beliefs-slider-section {
    max-width: none;
    right: var(--main-padding-lr, 2.3rem);
  }

  .core-beliefs-section-headline {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .core-beliefs-slider .core-beliefs-slide:not(.slick-center) {
    transform: scale(.95);
  }

  .core-beliefs-slider .core-beliefs-slide {
    min-height: 32rem;
  }

  .core-beliefs-slider .slick-prev,
  .core-beliefs-slider .slick-next {
    background-color: white;
  }

  .core-beliefs-slider .slick-prev,
  .core-beliefs-slider .slick-next {
    width: 3%;
  }

  .core-beliefs-slider .slick-prev:before,
  .core-beliefs-slider .slick-next:before {
    width: .75rem;
    margin: 0;
  }
    
  .core-beliefs-slider .slick-prev:before {
    left: 1.4rem;
  }

  .core-beliefs-slider .slick-next:before {
    right: 0rem;
  }
}



.family-leadership-heading {
  margin-top: 2.2rem;
}

@media (min-width: 768px) {
  .family-leadership-wrap {
    margin: 7rem 0 10rem 0;
  }
}

@media (min-width: 1024px) {
  .family-leadership-wrap {
    margin-top: 8.5rem;
  }
}

/* 
*>>> Products Page
*/
.products-block {
  text-align: center;
  margin: 1.2rem auto 4rem auto;
}

.products-block h2 {
  margin-bottom: 1.4rem;
}

#product-modal {
  background-color: #FFF5D8;
}

@media (min-width: 768px) {
  #product-modal {
    max-width: 55rem;
    padding: var(--main-padding-lr, 2.3rem) calc(2*var(--main-padding-lr, 2.3rem));
    z-index: 3000;
  }
}

.js [data-modal], 
.a11y-modal {
  border: none;
}

/* Modal Close Button */
.is-icon-btn {
  margin: 0;
  color: black;
}

.product-modal-heading {
  font-size: 2.25rem;
  margin-top: 1.3rem;
  margin-bottom: 0.4rem;
  text-align: center;
}

.product-modal-paragraph {
  text-align: center;
  margin-bottom: 0.7rem;
}

.modal-disclaimer {
  text-align: center;
}

@media (min-width: 768px) {
  .products #main .page-title-no-hero-img {
    margin-top: 0;
  }

  .products-block h2 {
    font-size: 3.1875rem;
  }

  .products-block p {
    width: 70%;
    margin: 0 auto .25rem auto;
  }

  .products-block img {
    width: 100%;
    margin: 0 auto 2rem auto;
    right: 0;
  }
}

/* 
*>>> Sustainability Page
*/
.recycling-logo {
  position: absolute;
  width: 39%;
  right: 6%;
  top: 79%;
  max-width: 14rem;
}

.sustainability-committed-green {
  margin-top: 7rem;
}

.sustainability-committed-green h2 {
  width: 70%;
}

@media (min-width: 568px) {
  .sustainability-committed-green h2 {
    width: 50%;
  }
}

ul.sustainability-check-list {
  margin-top: 1.5rem;
}

.sustainability-check-list li {
  position: relative;
  padding-left: 2rem;
  margin: 0;
}

.sustainability-check-list li:before {
  content: '';  /* placeholder for the SVG */
  position: absolute;
  left: 0;  /* place the SVG at the start of the padding */
  width: 1.25rem;
  height: 1.25rem;
  top: .15rem;
  /*background: url("data:image/svg+xml;charset=utf8,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg width='21px' height='21px' viewBox='0 0 21 21' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3C!-- Generator: Sketch 63.1 (92452) - https://sketch.com --%3E%3Ctitle%3EGroup%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cg id='Site-Pages' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Sustainability' transform='translate(-127.000000, -720.000000)' fill-rule='nonzero'%3E%3Cg id='Group' transform='translate(128.000000, 722.000000)'%3E%3Cellipse id='Oval-5' stroke='%23584B40' cx='8.5' cy='9' rx='8.5' ry='9'%3E%3C/ellipse%3E%3Cpolyline id='Path-2' stroke='%234C0B0B' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' points='5 7.63636364 8 12 18 0'%3E%3C/polyline%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");*/
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='17px' height='17px' viewBox='0 0 17 17' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EGroup 8 Copy 5%3C/title%3E%3Cdefs%3E%3Cpolygon id='path-1' points='0 0 15 0 15 14 0 14'%3E%3C/polygon%3E%3C/defs%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='About-Us---Mobile' transform='translate(-33.000000, -2724.000000)'%3E%3Cg id='Group-8-Copy-5' transform='translate(33.000000, 2724.000000)'%3E%3Cpath d='M7.5,14.8222661 C4.64649098,14.8222661 2.33328636,12.6632751 2.33328636,10 C2.33328636,7.33672492 4.64649098,5.17773393 7.5,5.17773393 C10.353509,5.17773393 12.6667136,7.33672492 12.6667136,10 C12.6667136,12.6632751 10.353509,14.8222661 7.5,14.8222661 M7.5,3 C3.35787768,3 0,6.13401917 0,10 C0,13.8659808 3.35787768,17 7.5,17 C11.6421223,17 15,13.8659808 15,10 C15,6.13401917 11.6421223,3 7.5,3' id='Fill-1' fill='%232F7A21'%3E%3C/path%3E%3Cpath d='M7.13396741,13 C6.70618882,13 6.29549695,12.8385585 5.97735823,12.545464 L3.57158672,10.328195 C2.86289408,9.67513801 2.80532805,8.55337986 3.44302939,7.82762212 C3.77052513,7.45516092 4.23898643,7.24143318 4.72860273,7.24143318 C5.15617792,7.24143318 5.56666637,7.4028747 5.88480509,7.69576086 L6.97916974,8.70440579 L12.962578,1.61306114 C13.2914976,1.22351838 13.7685023,1 14.2713404,1 C14.6861006,1 15.0874354,1.15310905 15.4015059,1.43099677 C15.7507668,1.74013124 15.9617067,2.17029476 15.9952699,2.6419123 C16.0290365,3.11373815 15.8811549,3.57056557 15.5792893,3.92844495 L8.44232307,12.3871472 C8.14045743,12.7446099 7.7031184,12.9668785 7.24238681,12.9964587 C7.20597579,12.9989584 7.1699716,13 7.13396741,13' id='Fill-3' fill='%232F7A21'%3E%3C/path%3E%3Cg id='Group-7' transform='translate(2.000000, 0.000000)'%3E%3Cmask id='mask-2' fill='white'%3E%3Cuse xlink:href='%23path-1'%3E%3C/use%3E%3C/mask%3E%3Cg id='Clip-6'%3E%3C/g%3E%3Cpath d='M12.6070405,0 L12.6070405,0 C11.9104015,0 11.2496829,0.310609207 10.7944728,0.851771396 L4.75395921,8.03268057 L3.99549346,7.33162956 C3.55465156,6.92419257 2.98601994,6.70012459 2.39387676,6.70012459 C1.71595989,6.70012459 1.06699708,6.99709293 0.613528601,7.5143277 C-0.269679086,8.52263361 -0.189783296,10.0810465 0.791606956,10.9884995 L3.36634132,13.368495 C3.80696551,13.775932 4.37581483,14 4.96817572,14 C5.01781125,14 5.06766448,13.9984347 5.11751771,13.9950803 C5.75646634,13.9539341 6.36210691,13.6453375 6.78030803,13.1482286 L14.418302,4.06810849 C15.2816991,3.04191292 15.1711076,1.48551257 14.1720837,0.598632719 C13.7371197,0.212663323 13.1813323,0 12.6070405,0 M12.6070405,1.1181037 C12.9096431,1.1181037 13.2135519,1.22544165 13.4604234,1.44458998 C14.0061965,1.92917612 14.0664993,2.7764751 13.5947441,3.33709229 L5.95653236,12.417436 C5.72707688,12.6902533 5.40030963,12.8566272 5.05003081,12.8792129 C5.02281834,12.8810018 4.99538818,12.8818963 4.96817572,12.8818963 C4.64641556,12.8818963 4.33488729,12.7597994 4.09432912,12.5375204 L1.51981246,10.1573012 C0.983400393,9.66153404 0.940078152,8.81311695 1.42271839,8.26233907 C1.68069254,7.96805418 2.03663155,7.81822828 2.39387676,7.81822828 C2.70540503,7.81822828 3.0175864,7.93182762 3.26728796,8.16260422 L4.85127098,9.62687282 L11.6180308,1.58278759 C11.8764403,1.27575632 12.2406519,1.1181037 12.6070405,1.1181037' id='Fill-5' fill='%23FFFFFF' mask='url(%23mask-2)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.sustainability-check-list li h3 {
    color: #4C0B0B;
    font-weight: 700;
    font-size: 1.125rem;
    font-family: 'Nunito Sans', sans-serif;
}

@media (min-width: 668px) {
  .sustainability-committed-green {
    width: 66%;
  }
  
  .sustainability-check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 2rem;
  }
}

@media (min-width: 768px) {
  .sustainability-committed-green {
      margin-top: inherit;
      margin-bottom: 4.5rem;
  }

  .sustainability-committed-green h2 {
    width: auto;
  }

  .recycling-logo {
    top: 83%;
  }
}

@media (min-width: 1024px) {
  .recycling-logo {
    width: 50%;
    max-width: 16rem;
  }
}
/* 
*>>> In The Community Page
*/
.in-the-community .full-width-ingore-padding h1.header-knockout-center-heading {
  text-align: left;
}

.giving-back-inset-img-mobile {
  position: absolute;
  right: 5%;
  width: 36%;
  top: 89%;
}

.giving-back-inset-img-desktop {
    display: none;
}

.in-the-comm-first-block h2 {
  margin-top: 4rem;
  width: 50%;
}

.in-the-comm-better-balt {
  margin-top: 8rem;
}

#charitable-organizations p strong {
  font-size: 90%;
}

article#charitable-organizations ul {
    list-style-type: none;
    padding: 0;
}

article#charitable-organizations ul li {margin-bottom: 0;}

@media (min-width: 400px) {
  .in-the-comm-first-block h2 {
    margin-top: 6rem;
    width: 9.375rem;
  }
}

@media (min-width: 568px) {
  .in-the-comm-first-block {
    width: 100%;
  }

  .in-the-comm-first-block h2 {
    margin-top: auto;
    width: 100%;
  }

  .giving-back-inset-img-mobile {
    display: none;
  }

  .giving-back-inset-img-desktop {
    display: block;
    margin: 0 auto;
    max-width: 17rem;
  }
  
  .in-the-comm-better-balt {
    background-color: #F5F4F7;
    padding-bottom: 2rem;
  }
}

@media (min-width: 768px) {
  .in-the-comm-better-balt {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
    margin-top: 0;
  }

  .in-the-comm-better-balt .full-bkgrnd-block-content .two-col-column.full-bkgrnd-block-content-img {
    position: static;
  }
}

@media (min-width: 1028px) {
.in-the-comm-better-balt .full-bkgrnd-block-content .two-col-column.full-bkgrnd-block-content-img {
    position: relative;
  }
}

/* 
*>>> Distribution Page
*/
.distribution-map-img {
  margin-bottom: 1rem;
}
/* 
*>>> Careers
*/
.careers .careers-block > .two-col-column {
  margin-top: 0;
}

.careers .button {
  padding-left: 2rem;
  padding-right: 2rem;
}

.careers-disclaimer {
  margin: 4rem 0 3rem 0;
}

.careers-disclaimer p {
  line-height: 1.15;
  width: 95%;
}

@media (min-width: 568px) {
  .careers-block {
    flex-direction: row-reverse;
  }
  .careers-image {
    position: static;
    width: 100%;
    margin: 0;
    max-width: 100%;
  }
  .careers-block .two-col-column + .two-col-column {
    margin: 0 var(--main-padding-lr, 2.3rem) 0 0;
  }
  .careers-disclaimer p {
    max-width: 90%;
    width: auto;
  }
  .careers-disclaimer {
    margin: 1rem 0 3rem 0;
  }
}

@media (min-width: 768px) {
  .careers .careers-block > .two-col-column {
    margin-top: 0.5rem;
  }
  .careers .button {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .careers-disclaimer {
    margin: 0 0 3rem 0;
  }
}

/* 
*>>> Contact
*/
.contact-wrap {
  margin-top: 9rem;
}


/* 
*>>> Landing Pages
*/
.landing-page-short-form {
  background-color: #FFF5D8;
  text-align: center;
  padding: var(--main-padding-lr, 2.3rem);
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
  margin-top: 5rem;
}

.landing-page-short-form-heading {
  margin: 1rem 0;
  font-size: 1.375rem;
}

.landing-page-short-form-intro {
  margin:1rem 0 2rem 0;
}

.landing-page-short-form .full-bkgrnd-block-content {
  right: 0;
}

.landing-page #main h1 {
  font-size: 1.875rem;
}

.landing-page #main .two-col.flex-stack-reverse .two-col-column,
.thank-you #main .two-col .two-col-column {
  margin-top: 0;
}

@media (min-width: 768px) {
  .landing-page #main {
    margin-top: 2rem;
  }

  .landing-page #main h1 {
    font-size: 2.1875rem;
  }
  .landing-page-short-form-heading {
    font-size: 1.875rem;
  }

  .landing-page-short-form-intro {
    margin:1rem auto 3rem auto;
    width: 75%;
  }
}

@media (min-width: 1028px) {
  .landing-page #main h1 {
    font-size: 3.1875rem;
  }
}


/* 
*>>> Landing Page - Break Bread
*/
.lp-break-bread .lp-strong-family p {
  margin-bottom: 0;
}

/* 
*>>> Landing Page - Unique Products
*/
.lp-unique-products-wrap {
  background-image: linear-gradient(#FFFFFF, #F1EFF4);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
  margin-bottom: -3rem;
  padding-bottom: 6rem;
}

.lp-unique-products-text-column {
  margin-top: -2rem;
}

@media (min-width: 768px) {
  .lp-unique-products-wrap {
    background-image: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .unique-products-every-stage {
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .lp-unique-products-wrap {
    margin-bottom: 4rem;
  }

  .unique-products-every-stage {
    margin-bottom: 5rem;
  }
}
/* 
*>>> Landing Page - Single Source
*/
.lp-single-source-first-block {
  margin-top: 4rem;
}

.single-source-cycle-img {
  margin: 4rem 0 5.5rem 0;
}

.multiple-partner-img {
  display: none;
  margin-bottom: 2.7rem;
}

.multiple-partner-body-copy {
  margin: 2rem 0 5.5rem 0;
}

@media (min-width: 768px) {
  .lp-single-source-first-block {
    margin-top: -2rem;
    margin-bottom: 0;
  }

  .single-source-cycle-img {
    margin: 4rem auto 5.5rem auto;
    width: 86%;
  }
  
  .multiple-partner-img,
  .multiple-partner-body-copy {
    margin: 0;
    display: block;
  }
}

@media (min-width: 1024px) {
  .lp-single-source-first-block {
    margin-top: -4rem;
    margin-bottom: 1rem;
  }
}
/* 
*>>> Policies Page
*/
body.policies #main h2 {
    font-size: 1.25rem;
    margin: 1.5rem 0 .5rem;
}

body.policies ul li {
  margin-bottom: 0.2rem;
}

body.policies #main {
    margin-bottom: 3rem;
    margin-top: 0;
}

/* 
*>>> 404 and Thank You Pages
*/
body.error #main {
  margin: 3rem auto 5rem auto;
}

body.thank-you #main {
  margin: 0 auto 5rem auto;
}


/** Family logo **/
img.hs-family-logo {
    max-width: 8rem;
    margin: 0 auto 1rem;
}

.hs-family p {
    font-size: .6rem;
    color: #363533;
	margin: 0 auto;
    max-width: 33rem;
}

.hs-family {
    margin: 0;
    padding: 1rem 1.5rem;
    text-align: center;
    max-width: 60.5rem;
}

body.distribution main a.button {
    width: 100%;
    max-width: 24rem;
}

body.distribution main a.button:first-of-type {
    margin-right: 40px;
}

    @-webkit-keyframes fade {
      0%   { opacity: 0; }
      100% { opacity: 1; }
    }
    @-moz-keyframes fade {
      0%   { opacity: 0; }
      100% { opacity: 1; }
    }
    @-o-keyframes fade {
      0%   { opacity: 0; }
      100% { opacity: 1; }
    }
    @keyframes fade {
      0%   { opacity: 0; }
      100% { opacity: 1; }
    }

.sticky-logo {display:none;}

  div#header-wrapper.sticky header .header-logo {
      z-index: 100;
      width: 70px;
      margin-top: 0rem;
  }

@media (max-width: 767px) {
  div#header-wrapper.sticky header {
    position: fixed;
    top: 0;
    width: 100%;
      -webkit-animation: fade .25s; /* Safari 4+ */
      -moz-animation:    fade .25s; /* Fx 5+ */
      -o-animation:      fade .25s; /* Opera 12+ */
      animation:         fade .25s;
      box-shadow: 0px 5px 25px rgba(0,0,0,.05);
      background-color: #ffffff;
  }



  img.full-logo {
      max-height: 3rem;
  }

  header#nav-header {
      height: 4rem;
  }

  .utility-main-nav-wrapper.active {
    top: 0rem;
    height: 100vh;
    padding-top: 9rem;
  }

  .utility-main-nav-wrapper .main-nav a:link, .utility-main-nav-wrapper .main-nav a:visited, .utility-main-nav-wrapper .main-nav a:active {
      font-size: 2rem;
  }
}
@media (min-width: 768px) {
/* STICKY NAV */

    .sticky-logo {display:none;}
    #header-wrapper.sticky .header .sticky-logo {display:block;height: 3rem;}
    #header-wrapper.sticky .header .full-logo,
    #header-wrapper.sticky .header .utility-nav {display:none;}

    #header-wrapper.sticky .header .utility-main-nav-wrapper .main-nav-li {
        margin: 0;
    }
    #header-wrapper.sticky {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 999999;
      -webkit-animation: fade .25s; /* Safari 4+ */
      -moz-animation:    fade .25s; /* Fx 5+ */
      -o-animation:      fade .25s; /* Opera 12+ */
      animation:         fade .25s;
    }
    #header-wrapper.sticky .header {
      height: 4rem;
      background-color: #ffffff;
    }
.home-header-fresh-type {
    max-width: 360px;
    left: 3rem;
}
  .hs-family {
      background-color: #ffffff;
      width: 90%;
      margin: 0 auto;
  }
  .nav-wrapper {
    display: flex;
    justify-content: space-between;
}

.footer-nav-a:link, .footer-nav-a:visited, .footer-nav-a:active {
    display: inline-block;
    margin-right: 1.25rem;
}

.nav-items {
    text-align: left;
}

.extra-links {
    display: inline-block;
    margin-top: 0;
}

a.footer-policies {
    margin-right: 1.25rem;
}

.address {
    text-align: right;
}

p.footer-address {
    margin-top: 1rem;
}

.footer-logo {
    width: 9rem;
    margin-bottom: 2rem;
}
  }


@media (min-width: 1024px) {
  .homepage-hero.header-knockout h1 {font-size: 3rem;}
  .home-header-fresh-type {
      max-width: 470px;
      left: 4rem;
  }
 
  img.home-header-bkgrnd-img {top: 0;}


  ul.form_fields.text-left {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 1rem;
    grid-row-gap: .9rem;
    grid-template-areas:
        "firstName firstName firstName"
        "lastName lastName lastName"
        "phone phone phone"
        "email email email"
        "zipcode companyName companyName";
}

ul.form_fields .field.firstName {
    grid-area: firstName; 
}
ul.form_fields .field.lastName {
    grid-area: lastName; 
}
ul.form_fields .field.zipcode {
    grid-area: zipcode; 
}
ul.form_fields .field.phone {
    grid-area: phone; 
}
ul.form_fields .field.email {
    grid-area: email; 
}
ul.form_fields .field.companyName {
    grid-area: companyName; 
}



  ul.form_fields li {
      margin-bottom: 15px;
  }
}


/* ABOUT STYLES */
small {
    font-size: 12px;
}
/*.column-wrapper.two-col,
.reshaping-baking {padding: 0 var(--main-padding-lr, 2.3rem);}*/

.column-wrapper.two-col.hide-text, .distribution.hide-text {
    max-height: 440px;
    overflow: hidden;
    position: relative;
}

.column-wrapper.two-col.hide-text:after, .distribution.hide-text:after {
  content  : "";
  position : absolute;
  z-index  : 1;
  bottom   : 0;
  left     : 0;
  pointer-events   : none;
  background-image : linear-gradient(to bottom, 
                    rgba(255,255,255, 0), 
                    rgba(255,255,255, 1) 90%);
  width    : 100%;
  height   : 4em;
}

a.read-more {
    font-family: 'Nunito Sans', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    color: #AB231C;
    font-size: 11px;
    letter-spacing: 2px;
    display: block;
    text-align: right;
    padding: 1rem 2rem;
    cursor: pointer;
}

article.full-width-ingore-padding.two-col.block-margin-bottom.flex-stack-reverse.reshaping-baking {
    background-image: linear-gradient(180deg, #FFF0D1 0%, #FFFFFF 100%);
    clip-path: polygon( 0% 10%, 120% 0%, 100% 100%, 0 100% );
    margin-top: 0rem;
    padding-top: 7rem;
}

.about-us h1,
.services h1 {font-size: 2.75rem;}
.about-us h2,
.services h2 {font-size: 2.25rem;}

img.slash.full-width-ingore-padding {
  clip-path: polygon( 0 calc(100% - 85vw), 100% 0, 100% calc(100% - 16vw), 0 100% );
      top: -40px;
}

.about-we-succeed-wrap p b {
    color: #2F7A21;
    font-size: 1.12rem;
}

.about-we-succeed-wrap {
background-image: linear-gradient(180deg, #FFF0D1 0%, #FFFFFF 100%);
    margin-bottom: 0rem;
}

a.button.button-bg-green {background-color: #CBDEA0;}


/* Services Styles */


  .distribution-section .two-col-column {margin: 1rem 0;}
.services .full-width-ingore-padding h1.header-knockout-center-heading {top: 33%;}
.services article.full-width-ingore-padding.two-col.block-margin-bottom.flex-stack-reverse.reshaping-baking {
    background-image: none;
    clip-path: none;
    padding-top: 0rem;
}

.services-highlights {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.services-highlights div {margin: 2rem 0;}

.services-highlights img {
    margin: 0 auto;
    max-height: 5rem;
}

.services-highlights h3 {
    max-width: 100%;
    margin-top: 20px;
    font-size: 1.12rem;
}

.services .full-bkgrnd-block-content-img {
    position: relative;
    top: -4rem;
    margin-top: 3rem;
    margin-bottom: -4rem;
}

.services .about-we-succeed-wrap {
    background-image: none;
    background-color: transparent;
    margin-bottom: 4rem;
}

.services .about-we-succeed-wrap:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #FFF4DE;
    clip-path: polygon( 0% 20%, 100% 0%, 100% 94%, 0% 100% );
    z-index: -10;
    top: 2rem;
    left: 0;
}


/* Contact Us*/
fieldset, button#submit_button {
    border: none;
}


@media (min-width: 768px) {
  .utility-main-nav-wrapper .main-nav a:link, .utility-main-nav-wrapper .main-nav a:visited, .utility-main-nav-wrapper .main-nav a:active {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--primary-red, #4C0B0B);
  }

  h1.header-knockout-center-heading {
      transform: none;
      margin-left: 3rem;
      margin-top: 1rem;
  }

  .column-wrapper.two-col.hide-text, .distribution.hide-text {
    align-items: flex-start;
    overflow: visible;
    max-height: none;
}

.column-wrapper.two-col.hide-text:after,
.distribution.hide-text:after {
    display: none;
}

a.read-more {
    display: none;
}

article.full-width-ingore-padding.two-col.block-margin-bottom.flex-stack-reverse.reshaping-baking.row-reverse-desktop:after,
.about-we-succeed-wrap:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: linear-gradient(180deg, #FFF0D1 0%, #FFFFFF 100%);
    clip-path: polygon( 0% 20%, 100% 0%, 100% 100%, 0 100% );
    z-index: -10;
    top: 2rem;
    left: 0;
}


article.full-width-ingore-padding.two-col.block-margin-bottom.flex-stack-reverse.reshaping-baking {
    background-image: none;
    clip-path: none;
}
  .reshaping-baking img {
    margin: 0px;
    width: auto;
    margin-top: -5rem;
}

.about-we-succeed-wrap .two-col.block-margin-bottom.full-bkgrnd-block-content {flex-flow: column;}

img.slash.full-width-ingore-padding {
    clip-path: polygon( 0 calc(100% - 35vw), 100% 0, 100% calc(100% - 16vw), 0 100% );
    top: -3rem;
}
.about-we-succeed-wrap {
    background-image: none;
    margin-bottom: 0rem;
    background-color: transparent;
}
.recycling-logo {top: 23%;}

a.button.block-desktop {
    display: block;
    max-width: 26rem;
}


  /* Services Styles */
  .services .reshaping-baking img {margin: 0 auto;}
  .services article.full-width-ingore-padding.two-col.block-margin-bottom.flex-stack-reverse.reshaping-baking.text-center {padding: 0 4rem;}
  .services-highlights {flex-direction: row;}
  .services img.slash.full-width-ingore-padding {
      clip-path: none;
      border-radius: 30px;
  }

  .services .about-we-succeed-wrap .two-col.block-margin-bottom.full-bkgrnd-block-content {flex-flow: row-reverse;}

  .services img.slash.full-width-ingore-padding {
      width: 100%;
      max-width: 100%;
      margin-left: 2rem;
  }

  .services .about-we-succeed-wrap:after {
      top: -4rem;
      background-image: none;
      clip-path: polygon( 0% 20%, 100% 0%, 100% 81%, 0% 100% );
  }

  .services .about-we-succeed-wrap {
      padding-top: 12rem;
      padding-bottom: 10rem;
  }

  article.distribution-section.two-col.block-margin-bottom.flex-stack-reverse.row-reverse-desktop {align-items: flex-start;}

  .services-highlights div {
      max-width: 33%;
  }

  .services-highlights {justify-content: space-between;max-width: 52rem;margin-left: 6rem;margin-top: 2rem;}


/* Contact Us */
/* Main Contact Us Form Grid */
#form_11053bc4-b0cd-439a-9fa3-8ef6cca350ba .field.firstName {
    grid-area: firstName; 
}
#form_11053bc4-b0cd-439a-9fa3-8ef6cca350ba .field.lastName {
    grid-area: lastName; 
}
#form_11053bc4-b0cd-439a-9fa3-8ef6cca350ba .field.street {
    grid-area: street; 
}
#form_11053bc4-b0cd-439a-9fa3-8ef6cca350ba .field.city {
    grid-area: city; 
}
#form_11053bc4-b0cd-439a-9fa3-8ef6cca350ba .field.state {
    grid-area: state; 
}
#form_11053bc4-b0cd-439a-9fa3-8ef6cca350ba .field.zipcode {
    grid-area: zipcode; 
}
#form_11053bc4-b0cd-439a-9fa3-8ef6cca350ba .field.phone {
    grid-area: phone; 
}
#form_11053bc4-b0cd-439a-9fa3-8ef6cca350ba .field.email {
    grid-area: email; 
}
#form_11053bc4-b0cd-439a-9fa3-8ef6cca350ba .field.companyName {
    grid-area: companyName; 
}
#form_11053bc4-b0cd-439a-9fa3-8ef6cca350ba .field.reason_for_inquiry_5e849b47a8546 {
    grid-area: reason_for_inquiry; 
}
#form_11053bc4-b0cd-439a-9fa3-8ef6cca350ba .field.textarea {
    grid-area: message; 
}

select {
    max-width: none;
    width: 100%;
    height: 2rem;
    padding: 0.125rem;
    font-size: 0.875rem;
    font-family: 'Nunito Sans', sans-serif;
    margin: .2rem 0;
}

@media (min-width: 568px) {
    #form_11053bc4-b0cd-439a-9fa3-8ef6cca350ba .form_fields {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-column-gap: 3rem;
        grid-row-gap: .25rem;
        grid-template-areas:
          "firstName firstName companyName companyName"
          "lastName lastName reason_for_inquiry reason_for_inquiry"
          "street street email email"
          "city city message message"
          "state zipcode message message"
          "phone phone message message";
    }
}

}



@media (min-width: 1024px){
  .home-unique-products-wrap {padding-top: 16rem;padding-bottom: 9rem;}
  .header-knockout .column-wrapper.two-col.hide-text {
      max-width: 58rem;
      margin: 0 auto;
  }
  .header-knockout b {font-size: 1.5rem;}
.recycling-logo {
    top: 23%;
}

 .about-us img.slash.full-width-ingore-padding {
    clip-path: polygon( 0 22%, 100% 0, 100% 75%, 0 100% );
    top: -3rem;
  }
article.about-we-succeed-wrap.full-bkgrnd-block-wrap {
    margin-bottom: 4rem;
    padding: 12rem 4rem 6rem;
}
  .extra-links {
    display: inline-block;
    margin-top: 0;
    width: 270px;
  }
  .full-width-ingore-padding h1.header-knockout-center-heading {
      text-align: left;
      left: 1rem;
      transform: translate(0, -50%);
      top: 11rem;
      z-index: 10;
  }

  article.full-width-ingore-padding.two-col.block-margin-bottom.flex-stack-reverse.reshaping-baking {
    margin-top: 0;
    padding: 4rem;
  }

    article.full-width-ingore-padding.two-col.block-margin-bottom.flex-stack-reverse.reshaping-baking.row-reverse-desktop:after {
    width: 75rem;
    max-width: 75rem;
    left: -7%;
    top: -6.35rem;
    margin-bottom: -6.35rem;
    clip-path: polygon( 0% 30%, 100% 0%, 100% 100%, 0 100% );
  }
article.full-width-ingore-padding.two-col.block-margin-bottom.flex-stack-reverse.reshaping-baking h2,
.distribution-section h2 {font-size: 3.25rem;}
.about-we-succeed-wrap h2 {
    font-size: 2.5rem;
}
.about-we-succeed-wrap p b {font-size: 1.5rem;}
  .about-we-succeed-wrap .two-col.block-margin-bottom.full-bkgrnd-block-content {max-width: 100%;}

  /* Services Styles */
  h1.header-knockout-center-heading {font-size: 3.5rem;}
  .services .full-width-ingore-padding h1.header-knockout-center-heading {top: 23%;}
  .services article.full-width-ingore-padding.two-col.block-margin-bottom.flex-stack-reverse.reshaping-baking.text-center h2 {
    font-size: 3.5rem;
    max-width: 32rem;
    margin: 0 auto 1rem;
    line-height: 100%;
  }
  .services article.full-width-ingore-padding.two-col.block-margin-bottom.flex-stack-reverse.reshaping-baking.text-center p {
      max-width: 46rem;
      margin: 0 auto;
  }
  .highlights-wrapper {width: 100%;}

  .services img.slash.full-width-ingore-padding {
      margin-left: 4rem;
      margin-top: 3rem;
  }
  .services .about-we-succeed-wrap {padding-bottom: 6rem;}

  .services .header-knockout {margin-bottom: 0rem;}

  .about-we-succeed-wrap:after {clip-path: polygon( 0% 8%, 100% 0%, 100% 100%, 0 100% );}
.about-us img.slash.full-width-ingore-padding {
    clip-path: polygon( 0 22%, 100% 0, 100% 75%, 0 100% );
    top: -12rem;
}
  .about-us article.about-we-succeed-wrap.full-bkgrnd-block-wrap .two-col-column.two-thirds {
    margin-top: -9rem;
}
article#careers {
    margin-bottom: 2rem;
}

.recycling-logo {
    top: 33%;
    right:26%;
}

.sustainability-text {
    margin-top: -9rem;
    max-width: 55rem;
    margin-bottom: 6rem;
}

.about-us article.about-we-succeed-wrap.full-bkgrnd-block-wrap {
    max-width: 75rem;
    margin: 0;
    right: initial;
    padding: 0;
    width: 75rem;
    left: -15%;
    margin-top: 15rem;
}

.about-us article.full-width-ingore-padding.two-col.block-margin-bottom.flex-stack-reverse.reshaping-baking.row-reverse-desktop:after {
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    background-image: linear-gradient(
180deg
, #FFF0D1 0%, #FFFFFF 100%);
    clip-path: polygon( 0% 20%, 100% 0%, 100% 100%, 0 100% );
    z-index: -10;
    top: -3rem;
    max-width: none;
    left: 50%;
    transform: translateX(-50%);
}

.services .about-we-succeed-wrap .two-col.block-margin-bottom.full-bkgrnd-block-content {
    max-width: 65rem;
    margin-bottom: 6rem;
}

}