/**
Breakpoint Variables - Define these as LESS variables for media queries
**/
/**
@media only screen and (max-width: @tablet) {
}

@media only screen and (max-width: @mobile) {
}

mobile fonts
D60px
font-size: 48px;
D24px 
font-size: 21px;
font-size: 18px;
font-size: 16px;
***/
#bs-hero {
  background: var(--afp-orange);
  width: 100%;
  float: left;
  margin: 0px 0px -30px 0px;
  padding: 50px 0px 50px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
#bs-hero.paged {
  height: auto;
}
#bs-hero.paged .stage h1 {
  width: 100%;
  max-width: none;
  font-size: 48px;
  line-height: 48px;
}
#bs-hero.paged .stage h2 {
  display: none;
}
#bs-hero:not(.All) .stage h1 {
  font-size: 48px;
  line-height: 48px;
}
#bs-hero:not(.All) .stage h2 {
  display: none;
}
#bs-hero .bg-shape {
  background-color: var(--afp-orange);
  width: 55%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  pointer-events: none;
  z-index: 0;
}
#bs-hero .bg-shape::after {
  content: "";
  background: url(../elements/images/business-solutions-hero-edge-afp-orange.svg) right top no-repeat;
  background-size: 100% 100%;
  width: 10%;
  height: 100%;
  position: absolute;
  right: -9.9%;
  top: 0px;
  pointer-events: none;
  z-index: 0;
}
#bs-hero .stage {
  width: calc(100% - 160px);
  max-width: var(--stage-max-width);
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  z-index: 1;
}
#bs-hero .stage .content {
  width: 100%;
}
#bs-hero .stage h1 {
  width: 100%;
  position: relative;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 20px 0px;
  color: var(--white);
  font-size: 72px;
  line-height: 1;
  font-weight: var(--font-bold);
  overflow-wrap: normal !important;
  text-align: center;
}
#bs-hero .stage h2 {
  width: 100%;
  position: relative;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 20px 0px;
  color: var(--white);
  font-size: 36px;
  line-height: 36px;
  line-height: 1;
  font-weight: var(--font-bold);
}
.left-col {
  display: flex;
  flex-direction: column;
  flex: 1 50%;
}
.left-col .subtitle h4 {
  text-align: center;
  font-size: 36px;
  color: var(--afp-teal);
  padding-top: 20px;
}
.featured {
  padding-bottom: 70px;
  width: calc(100% - 160px);
  max-width: var(--stage-max-width);
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  z-index: 1;
  margin: 0 auto;
}
.featured .content {
  padding: 0 50px 0 100px;
  flex: 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: -3vw;
}
.featured .content .container {
  padding: 0;
  max-width: 600px;
}
.featured .content h3 {
  font-size: 55px;
  color: var(--afp-teal);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-transform: capitalize;
  text-align: left;
}
.featured .content p {
  color: var(--text-gray);
  font-size: 30px;
}
.featured .content .button {
  margin-top: 20px;
}
@media (max-width: 1100px) {
  .featured {
    flex-direction: column;
    width: 100%;
    padding: 0 20px 50px 20px;
  }
  .featured .left-col #bs-featured {
    height: 350px;
  }
  .featured .left-col #bs-featured img {
    object-fit: cover;
  }
  .featured .content {
    margin-top: 30px;
    padding: 0;
    align-items: center;
  }
  .featured .content h3,
  .featured .content p {
    text-align: center;
  }
  .featured .content .section-heading {
    width: 100%;
  }
  .featured .content .section-heading .container {
    width: 100%;
  }
  .featured .content .section-heading .container h3 {
    justify-content: center;
    align-items: center;
  }
}
#bs-featured {
  max-width: 840px;
  height: 530px;
  max-height: 560px;
  position: relative;
  margin: 0px 0px 0px 0px;
  padding: 40px 50px 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  border-top-left-radius: 50px;
  overflow: hidden;
  cursor: pointer;
}
#bs-featured.video::before {
  content: "";
  background: var(--white) url("../elements/images/play-arrow-afp-orange.svg") left 27px center no-repeat;
  background-size: 30px;
  width: 80px;
  height: 80px;
  left: calc(50% - 40px);
  top: calc(50% - 40px);
  position: absolute;
  pointer-events: none;
  transition: var(--transitionAll);
  z-index: 100;
  border-radius: 100px;
}
#bs-featured.video::after {
  content: "";
  background: url("../elements/images/search-dots-afp-yellow.svg") center center no-repeat;
  background-size: contain;
  width: 100px;
  height: 100px;
  left: calc(50% - 50px);
  top: calc(50% - 50px);
  position: absolute;
  transform: rotate(0deg);
  pointer-events: none;
  transition: var(--transitionAll);
  z-index: 99;
}
#bs-featured.video:hover::after {
  transform: rotate(-90deg);
}
#bs-featured a.category {
  max-width: 60%;
  background-color: var(--afp-teal-light);
  color: var(--afp-teal);
  font-size: 28px;
  font-weight: var(--font-bold);
  line-height: 36px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0px 0px 15px 0px;
  padding: 15px 30px;
  display: block;
  z-index: 2;
  transition: var(--transitionAll);
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  text-transform: uppercase;
}
#bs-featured a.category:hover {
  background-color: var(--afp-orange);
  color: var(--afp-yellow);
}
@media (max-width: 1100px) {
  #bs-featured a.category {
    font-size: 21px;
    padding: 10px 20px;
  }
}
#bs-featured a.title {
  width: 70%;
  margin: 0px 0px 40px 0px;
  color: var(--white);
  font-weight: var(--font-bold);
  font-size: 60px;
  line-height: 60px;
  z-index: 1;
  text-shadow: var(--text-shadow);
}
#bs-featured a.cta {
  background: var(--afp-yellow);
  height: 50px;
  float: left;
  position: relative;
  margin: 0px 0px 0px 0px;
  padding: 0px 35px 0px 35px;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  display: block;
  line-height: 50px;
  font-size: 16px;
  color: var(--afp-new-logo-teal);
  font-weight: var(--font-demi);
  transition: var(--transitionAll);
  z-index: 1;
}
#bs-featured a.cta:hover {
  background: var(--afp-orange);
  color: var(--afp-yellow);
}
#bs-featured img {
  width: 100%;
  height: 100%;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  position: absolute;
  display: block;
  left: 0px;
  top: 0px;
  object-fit: cover;
  z-index: 0;
}
body.alert-bar-open #bs-nav.scrolled {
  top: 180px;
}
#bs-nav {
  width: 100%;
  position: relative;
  padding: 0px 0px 70px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: var(--transitionAll);
}
#bs-nav.scrolled {
  position: fixed;
  top: 90px;
  z-index: 500;
  padding: 0;
}
#bs-nav.tasty-style-recipes #bs-recipe {
  display: none;
}
#bs-nav.tasty-style-recipes .quick-serve {
  display: flex !important;
}
#bs-nav #bs-tax-nav-mobile {
  display: none;
}
#bs-nav ul#bs-tax-nav {
  height: 75px;
  float: left;
  position: relative;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  display: block;
}
#bs-nav ul#bs-tax-nav li {
  height: 75px;
  float: left;
  position: relative;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  display: block;
  border: 3px solid var(--afp-bright-teal);
  border-right: 0px;
  transition: var(--transitionAll);
  background-color: var(--white);
}
#bs-nav ul#bs-tax-nav li:last-of-type {
  border-right: 3px solid var(--afp-bright-teal);
}
#bs-nav ul#bs-tax-nav li a {
  height: 75px;
  float: left;
  position: relative;
  margin: 0px 0px 0px 0px;
  padding: 0px 40px 0px 40px;
  display: block;
  font-weight: var(--font-bold);
  color: var(--afp-teal);
  font-size: 22px;
  line-height: 73px;
  transition: var(--transitionAll);
}
#bs-nav ul#bs-tax-nav li a:hover {
  color: var(--afp-orange);
}
#bs-nav ul#bs-tax-nav li.current-cat {
  background-color: var(--afp-bright-teal);
}
#bs-nav ul#bs-tax-nav li.current-cat a {
  color: var(--white);
}
#bs-nav .active-cat {
  background: #fff;
  border-radius: 25px;
}
#bs-nav .active-cat a {
  color: #73e3d3;
}
#bs-nav .bs-recipe li:hover {
  background: #f4e554;
  border-radius: 25px;
}
#bs-nav .bs-recipe li:hover a {
  color: #f87036;
}
@media (max-width: 1200px) {
  #bs-nav.scrolled {
    position: relative;
  }
}
@media (max-width: 1340px) {
  #bs-nav.scrolled {
    top: 50px !important;
  }
}
.featured-posts {
  background-color: var(--afp-teal-light);
  padding: 50px 20px 0 20px;
  margin-bottom: 50px;
}
.featured-posts .stage {
  max-width: 1500px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  z-index: 1;
  margin: 0 auto;
}
.featured-posts .stage .posts {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.featured-posts .stage .posts .post {
  flex: 1 33.333333%;
  margin-bottom: 50px;
}
.featured-posts .stage .posts .post .image {
  width: 370px;
  height: 240px;
  position: relative;
}
.featured-posts .stage .posts .post .image img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.featured-posts .stage .posts .post .image.yt-thumb {
  overflow: hidden;
  margin-bottom: -36px;
}
.featured-posts .stage .posts .post .image.yt-thumb img {
  margin-top: -36px;
}
.featured-posts .stage .posts .post .title {
  max-width: 400px;
  margin-top: 10px;
}
.featured-posts .stage .posts .post .title * {
  font-size: 36px;
  text-align: left;
  color: var(--afp-teal);
  transition: var(--transitionAllFast);
}
.featured-posts .stage .posts .post:first-child .image img {
  border-top-left-radius: 25px;
}
.featured-posts .stage .posts .post:first-child .image.yt-thumb {
  border-top-left-radius: 25px;
}
.featured-posts .stage .posts .post.video .image::before {
  content: "";
  background: #ffffff url(../elements/images/play-arrow-afp-orange.svg) left 27px center no-repeat;
  background-size: 30px;
  width: 80px;
  height: 80px;
  left: calc(50% - 40px);
  top: calc(50% - 40px);
  position: absolute;
  pointer-events: none;
  transition: all 175ms cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 100;
  border-radius: 100px;
}
.featured-posts .stage .posts .post.video .image::after {
  content: "";
  background: url(../elements/images/search-dots-afp-yellow.svg) center center no-repeat;
  background-size: contain;
  width: 100px;
  height: 100px;
  left: calc(50% - 50px);
  top: calc(50% - 50px);
  position: absolute;
  transform: rotate(0deg);
  pointer-events: none;
  transition: all 175ms cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 99;
}
.featured-posts .stage .posts .post.video .image:hover::after {
  transform: rotate(-90deg);
}
.featured-posts .stage .posts .post:hover .title * {
  color: var(--afp-orange);
}
.featured-posts .stage .see-more {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex: 0 17%;
}
.featured-posts .stage .see-more a {
  margin-top: 100px;
  position: relative;
}
@media (max-width: 968px) {
  .featured-posts {
    padding: 50px 20px;
  }
  .featured-posts .stage {
    flex-direction: column;
    align-items: center;
  }
  .featured-posts .stage .posts {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .featured-posts .stage .posts .post .title h3 {
    text-align: center;
  }
  .featured-posts .stage .see-more a {
    margin-top: 0;
  }
}
@media (max-width: 500px) {
  .featured-posts .stage .posts .post.video {
    width: 100%;
  }
  .featured-posts .stage .posts .post.video .yt-thumb {
    height: 165px;
  }
  .featured-posts .stage .posts .post.video .yt-thumb::before {
    background: #ffffff url(../elements/images/play-arrow-afp-orange.svg) left 20px center no-repeat;
    background-size: 28px;
    left: calc(50% - 40px);
    top: calc(50% - 40px);
    width: 60px;
    height: 60px;
  }
  .featured-posts .stage .posts .post.video .yt-thumb::after {
    width: 80px;
    height: 80px;
  }
  .featured-posts .stage .posts .post .image {
    width: 100%;
  }
  .featured-posts .stage .posts .post .title h3 {
    font-size: 28px;
  }
  .featured-posts .stage .posts .post .image img {
    position: relative;
  }
}
#business-solutions-posts {
  width: 100%;
  float: left;
  position: relative;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 100px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#business-solutions-posts .category {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 50px;
  padding: 0 50px;
}
#business-solutions-posts .category:last-child {
  margin-bottom: 0;
}
#business-solutions-posts .category .wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
#business-solutions-posts .category .wrapper .cat-title {
  color: var(--afp-teal);
  margin-bottom: 50px;
}
#business-solutions-posts .category .wrapper .cat-title::after {
  content: "";
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 8'%3E%3Ccircle cx='8' cy='4' r='4'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 8'%3E%3Ccircle cx='8' cy='4' r='4'/%3E%3C/svg%3E");
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-mask-position: left center;
  mask-position: left center;
  -webkit-mask-size: 16px 8px;
  mask-size: 16px 8px;
  background-color: var(--afp-orange);
  display: block;
  height: 8px;
  width: 100%;
  max-width: 85%;
}
#business-solutions-posts .category .wrapper .posts-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
#business-solutions-posts .category .wrapper .posts-wrapper .cta {
  padding-top: 100px;
  position: relative;
}
#business-solutions-posts .category .wrapper .posts {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 1 80%;
}
#business-solutions-posts .category .wrapper .posts .post {
  flex: 1 29%;
  margin-bottom: 50px;
}
#business-solutions-posts .category .wrapper .posts .post .image {
  position: relative;
  width: 370px;
  height: 240px;
}
#business-solutions-posts .category .wrapper .posts .post .image img {
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  object-fit: cover;
  object-position: top;
}
#business-solutions-posts .category .wrapper .posts .post .image.yt-thumb {
  overflow: hidden;
  margin-bottom: -36px;
}
#business-solutions-posts .category .wrapper .posts .post .image.yt-thumb img {
  margin-top: -36px;
}
#business-solutions-posts .category .wrapper .posts .post:first-child .image img {
  border-top-left-radius: 25px;
}
#business-solutions-posts .category .wrapper .posts .post:first-child .image.yt-thumb {
  border-top-left-radius: 25px;
}
#business-solutions-posts .category .wrapper .posts .post .content {
  max-width: 400px;
}
#business-solutions-posts .category .wrapper .posts .post .content p {
  margin-top: 20px;
  color: var(--afp-teal);
  transition: var(--transitionAllFast);
  font-size: 36px;
  line-height: 1.25;
}
#business-solutions-posts .category .wrapper .posts .post.video .image::before {
  content: "";
  background: #ffffff url(../elements/images/play-arrow-afp-orange.svg) left 27px center no-repeat;
  background-size: 30px;
  width: 80px;
  height: 80px;
  left: calc(50% - 40px);
  top: calc(50% - 40px);
  position: absolute;
  pointer-events: none;
  transition: all 175ms cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 100;
  border-radius: 100px;
}
#business-solutions-posts .category .wrapper .posts .post.video .image::after {
  content: "";
  background: url(../elements/images/search-dots-afp-yellow.svg) center center no-repeat;
  background-size: contain;
  width: 100px;
  height: 100px;
  left: calc(50% - 50px);
  top: calc(50% - 50px);
  position: absolute;
  transform: rotate(0deg);
  pointer-events: none;
  transition: all 175ms cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 99;
}
#business-solutions-posts .category .wrapper .posts .post.video .image:hover::after {
  transform: rotate(-90deg);
}
@media (max-width: 1400px) {
  #business-solutions-posts .category .wrapper .posts-wrapper {
    flex-direction: column;
  }
  #business-solutions-posts .category .wrapper .posts-wrapper .cta {
    padding-top: 0;
  }
}
@media (max-width: 968px) {
  #business-solutions-posts .category {
    margin-bottom: 100px;
  }
  #business-solutions-posts .category .wrapper {
    justify-content: center;
    align-items: center;
  }
  #business-solutions-posts .category .wrapper .cat-title {
    text-align: center;
    line-height: 1;
  }
  #business-solutions-posts .category .wrapper .cat-title::after {
    margin: 20px auto 0 auto;
  }
  #business-solutions-posts .category .wrapper .posts-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
  }
  #business-solutions-posts .category .wrapper .posts-wrapper .posts {
    flex-direction: column;
    flex: 1 100%;
  }
  #business-solutions-posts .category .wrapper .posts-wrapper .posts .post {
    flex: 1 100%;
  }
  #business-solutions-posts .category .wrapper .posts-wrapper .posts .post .content p {
    text-align: center;
  }
  #business-solutions-posts .category .wrapper .posts-wrapper .cta {
    padding-top: 0;
  }
}
@media (max-width: 500px) {
  #business-solutions-posts .category {
    padding: 0 20px;
  }
  #business-solutions-posts .category .wrapper .posts-wrapper .posts .post {
    width: 100%;
  }
  #business-solutions-posts .category .wrapper .posts-wrapper .posts .post.video .yt-thumb {
    height: 165px;
  }
  #business-solutions-posts .category .wrapper .posts-wrapper .posts .post.video .yt-thumb::before {
    background: #ffffff url("../elements/images/play-arrow-afp-orange.svg") left 20px center no-repeat;
    background-size: 28px;
    left: calc(50% - 40px);
    top: calc(50% - 40px);
    width: 60px;
    height: 60px;
  }
  #business-solutions-posts .category .wrapper .posts-wrapper .posts .post.video .yt-thumb::after {
    width: 80px;
    height: 80px;
  }
  #business-solutions-posts .category .wrapper .posts-wrapper .posts .post .image {
    width: 100%;
  }
  #business-solutions-posts .category .wrapper .posts-wrapper .posts .post .image img {
    position: relative;
  }
  #business-solutions-posts .category .wrapper .posts-wrapper .posts .post .content p {
    font-size: 28px;
  }
}
#business-solutions-posts ul#bs-post-list {
  width: calc(100% - 40px);
  max-width: 1720px;
  float: left;
  position: relative;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
#business-solutions-posts ul#bs-post-list li.bs-post {
  width: calc(25% - 40px);
  float: left;
  position: relative;
  margin: 0px 20px 60px 20px;
  padding: 0px 0px 0px 0px;
  display: block;
  overflow: hidden;
  cursor: pointer;
}
#business-solutions-posts ul#bs-post-list li.bs-post:first-of-type .img.yt-thumb {
  border-top-left-radius: 25px;
}
#business-solutions-posts ul#bs-post-list li.bs-post:first-of-type img {
  border-top-left-radius: 50px;
}
#business-solutions-posts ul#bs-post-list li.bs-post:last-of-type img {
  border-bottom-right-radius: 50px;
}
#business-solutions-posts ul#bs-post-list li.bs-post .img {
  width: 100%;
  min-height: 11vw;
  height: auto;
  float: left;
  position: relative;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  display: block;
}
#business-solutions-posts ul#bs-post-list li.bs-post .img img {
  width: 100%;
  border: 1px solid rgba(204, 211, 211, 0.5);
  height: 100%;
  object-fit: cover;
  float: left;
  position: absolute;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  display: block;
  clear: both;
  z-index: 0;
}
@media (max-width: 1200px) {
  #business-solutions-posts ul#bs-post-list li.bs-post .img {
    min-height: 17vw;
  }
}
@media (max-width: 840px) {
  #business-solutions-posts ul#bs-post-list li.bs-post .img {
    min-height: 22vw;
  }
}
@media (max-width: 560px) {
  #business-solutions-posts ul#bs-post-list li.bs-post .img {
    min-height: 50vw;
  }
}
@media (max-width: 480px) {
  #business-solutions-posts ul#bs-post-list li.bs-post .img img {
    height: auto;
  }
}
#business-solutions-posts ul#bs-post-list li.bs-post.video .img::before {
  content: "";
  background: var(--white) url("../elements/images/play-arrow-afp-orange.svg") left 27px center no-repeat;
  background-size: 30px;
  width: 80px;
  height: 80px;
  left: calc(50% - 40px);
  top: calc(50% - 40px);
  position: absolute;
  pointer-events: none;
  transition: var(--transitionAll);
  z-index: 100;
  border-radius: 100px;
}
#business-solutions-posts ul#bs-post-list li.bs-post.video .img::after {
  content: "";
  background: url("../elements/images/search-dots-afp-yellow.svg") center center no-repeat;
  background-size: contain;
  width: 100px;
  height: 100px;
  left: calc(50% - 50px);
  top: calc(50% - 50px);
  position: absolute;
  transform: rotate(0deg);
  pointer-events: none;
  transition: var(--transitionAll);
  z-index: 99;
}
#business-solutions-posts ul#bs-post-list li.bs-post.video .img:hover::after {
  transform: rotate(-90deg);
}
#business-solutions-posts ul#bs-post-list li.bs-post.video .img.yt-thumb {
  overflow: hidden;
}
#business-solutions-posts ul#bs-post-list li.bs-post.video .img.yt-thumb img {
  transform: scale(1.3);
}
#business-solutions-posts ul#bs-post-list li.bs-post a.cat {
  float: left;
  position: relative;
  margin: 15px 0px 5px 0px;
  padding: 0px 0px 0px 0px;
  display: block;
  clear: both;
  font-size: 21px;
  line-height: 21px;
  color: var(--afp-orange) !important;
  font-weight: var(--font-bold);
  font-family: var(--Futura-Bold);
  transition: var(--transitionAll);
}
#business-solutions-posts ul#bs-post-list li.bs-post a.cat:hover {
  color: var(--afp-orange) !important;
}
#business-solutions-posts ul#bs-post-list li.bs-post a.title {
  width: 100%;
  float: left;
  position: relative;
  margin: 5px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  display: block;
  clear: both;
  font-size: 36px;
  line-height: 42px;
  color: var(--afp-teal);
  font-weight: var(--font-bold);
  font-family: var(--Futura-Bold);
  transition: var(--transitionAll);
}
#business-solutions-posts ul#bs-post-list li.bs-post p {
  width: 100%;
  float: left;
  position: relative;
  margin: 5px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  display: block;
  clear: both;
}
#business-solutions-posts ul#bs-post-list li.bs-post p.title {
  font-size: 36px;
  line-height: 42px;
  color: var(--afp-teal);
  font-weight: var(--font-bold);
  font-family: var(--Futura-Bold);
}
#business-solutions-posts ul#bs-post-list li.bs-post p.excerpt {
  font-size: 22px;
  line-height: 33px;
  font-weight: var(--font-light);
  color: var(--text-gray);
  font-family: var(--Futura-Book);
}
#business-solutions-posts ul#bs-post-list li.bs-post:hover a.title {
  color: var(--afp-orange);
}
#business-solutions-posts ul#bs-post-list li.bs-post:hover a.cat {
  color: var(--afp-teal) !important;
}
#business-solutions-posts ul#bs-post-list li.bs-post:hover a.cat:hover {
  color: var(--afp-orange) !important;
}
.bs-post-stage {
  width: calc(100% - 40px);
  max-width: 840px;
  float: left;
  position: relative;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}
#bs-post-header {
  width: 100%;
  float: left;
  position: relative;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
#bs-post-header #bs-post-heading {
  background: var(--afp-bright-teal);
  width: 100%;
  float: left;
  position: relative;
  margin: 0px 0px 0px 0px;
  padding: 50px 0px 20px 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
#bs-post-header #bs-post-heading .bs-post-stage {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
#bs-post-header #bs-post-heading::after {
  content: "";
  background: url("../elements/images/business-solutions-hero-edge-afp-bright-teal.svg") left top no-repeat;
  background-size: 100%, 100%;
  width: 100%;
  height: 130px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  margin-bottom: -130px;
  z-index: 0;
  pointer-events: none;
}
#bs-post-header #bs-post-heading ul.breadcrumbs {
  float: left;
  position: relative;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  display: block;
}
#bs-post-header #bs-post-heading ul.breadcrumbs li {
  float: left;
  position: relative;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  display: block;
}
#bs-post-header #bs-post-heading ul.breadcrumbs li a {
  float: left;
  position: relative;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  display: block;
  color: var(--white);
  font-size: 20px;
  line-height: 20px;
  transition: var(--transitionAll);
}
#bs-post-header #bs-post-heading ul.breadcrumbs li a::after {
  content: "";
  width: 0%;
  position: absolute;
  left: 0px;
  bottom: -10px;
  border-bottom: 4px dotted var(--afp-yellow);
  transition: var(--transitionAll);
}
#bs-post-header #bs-post-heading ul.breadcrumbs li a:hover {
  color: var(--afp-orange);
}
#bs-post-header #bs-post-heading ul.breadcrumbs li a:hover::after {
  width: 100%;
}
#bs-post-header #bs-post-heading ul.breadcrumbs li.parent {
  padding-right: 20px;
  margin-right: 20px;
}
#bs-post-header #bs-post-heading ul.breadcrumbs li.parent::after {
  content: "";
  background: url("../elements/images/caret-down-afp-yellow.svg") center center no-repeat;
  background-size: contain;
  height: 9px;
  width: 14px;
  position: absolute;
  right: -7px;
  top: 5px;
  transform: rotate(-90deg);
}
#bs-post-header #bs-post-heading ul.breadcrumbs li.parent a {
  font-weight: var(--font-medium);
}
#bs-post-header #bs-post-heading ul.breadcrumbs li.term a {
  font-weight: var(--font-bold);
}
#bs-post-header #bs-post-heading h1 {
  width: 100%;
  float: left;
  position: relative;
  margin: 20px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  display: block;
  text-align: center;
  color: var(--white);
  font-size: 60px;
  line-height: 75px;
  font-weight: var(--font-bold);
}
#bs-post-header #bs-post-heading h2 {
  width: 100%;
  float: left;
  position: relative;
  margin: 10px 0px 20px 0px;
  padding: 0px 0px 0px 0px;
  display: block;
  text-align: center;
  color: var(--afp-yellow);
  font-size: 21px;
  line-height: 24px;
  font-weight: var(--font-bold);
}
#bs-post-header .featured-content {
  width: 100%;
  height: auto;
  float: left;
  position: relative;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
#bs-post-header .featured-content .bs-post-stage {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
#bs-post-header .featured-content .feature {
  width: 100%;
  height: auto;
  float: left;
  position: relative;
  margin: 0px 0px 50px 0px;
  padding: 0px 0px 0px 0px;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
#bs-post-header .featured-content .feature img {
  width: 100%;
  height: auto;
  float: left;
  position: relative;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  display: block;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
#bs-post-header .featured-content .feature a.cta {
  background: var(--afp-yellow);
  height: 50px;
  float: left;
  position: relative;
  margin: 30px 0px 0px 0px;
  padding: 0px 35px 0px 35px;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  display: block;
  line-height: 50px;
  font-size: 16px;
  color: var(--afp-new-logo-teal);
  font-weight: var(--font-demi);
  transition: var(--transitionAll);
}
#bs-post-header .featured-content .feature a.cta:hover {
  background: var(--afp-orange);
  color: var(--afp-yellow);
}
#bs-post-content {
  width: 100%;
  position: relative;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
#bs-post-content.has-chef .bs-post-stage p {
  font-weight: bold;
}
#bs-post-content a.cta {
  background: var(--afp-yellow);
  height: 50px;
  float: left;
  position: relative;
  margin: 30px 0px 0px 0px;
  padding: 0px 35px 0px 35px;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  display: block;
  line-height: 50px;
  font-size: 16px;
  color: var(--afp-orange);
  font-weight: var(--font-demi);
  transition: var(--transitionAll);
}
#bs-post-content a.cta:hover {
  background: var(--afp-orange);
  color: var(--afp-yellow);
}
#bs-post-content p {
  font-size: 24px;
  line-height: 42px;
  color: var(--text-gray);
  font-family: var(--Futura-Book);
  margin: 25px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}
#bs-post-content p:first-of-type {
  margin-top: 0px;
}
@media (max-width: 450px) {
  #bs-post-content p {
    font-size: 21px;
  }
}
#bs-post-content i {
  font-style: italic;
}
#bs-post-content .bs-post-stage.image p,
#bs-post-content .bs-post-stage.aside p,
#bs-post-content .bs-post-stage.video p {
  text-align: center;
}
.chef-section {
  clear: both;
  padding: 0px 20px 50px 20px;
  max-width: 1600px;
  margin: 0 auto;
}
.chef-section::before {
  content: "";
  display: block;
  width: 100%;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 8'%3E%3Ccircle cx='8' cy='4' r='4'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 8'%3E%3Ccircle cx='8' cy='4' r='4'/%3E%3C/svg%3E");
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-mask-position: left center;
  mask-position: left center;
  -webkit-mask-size: 16px 8px;
  mask-size: 16px 8px;
  background-color: var(--afp-orange);
  height: 8px;
  margin: 50px 0;
}
.chef-section .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.chef-section .wrapper .image {
  position: relative;
  width: 250px;
  height: 250px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50'%3E%3Cpath d='M22.98839,47.9538a2.06477,2.06477,0,0,1,2.04942-2.06226h0a2.06533,2.06533,0,0,1,2.05784,2.05423h0A2.0527,2.0527,0,0,1,25.04622,50h-.00841A2.051,2.051,0,0,1,22.98839,47.9538Zm-5.64834.91236a2.05666,2.05666,0,0,1-1.369-2.56377h0a2.05268,2.05268,0,0,1,2.55778-1.36414h0A2.06012,2.06012,0,0,1,19.89783,47.502h0a2.05114,2.05114,0,0,1-1.96737,1.45441h0A1.85124,1.85124,0,0,1,17.34005,48.86616ZM30.1858,47.47755a2.04755,2.04755,0,0,1,1.35294-2.56377h0a2.04969,2.04969,0,0,1,2.56579,1.35571h0a2.05607,2.05607,0,0,1-1.35254,2.5718h0a2.25152,2.25152,0,0,1-.60683.09027h0A2.0492,2.0492,0,0,1,30.1858,47.47755ZM10.29835,45.43937h0A2.05058,2.05058,0,0,1,9.8064,42.5799h0a2.046,2.046,0,0,1,2.85279-.50112h0a2.0687,2.0687,0,0,1,.50035,2.8679h0a2.053,2.053,0,0,1-1.68077.871h0A2.0356,2.0356,0,0,1,10.29835,45.43937Zm26.61814-.542A2.05739,2.05739,0,0,1,37.4,42.02943h0a2.04721,2.04721,0,0,1,2.8608.48507h0a2.0743,2.0743,0,0,1-.48354,2.8675h0a2.06045,2.06045,0,0,1-1.18883.37794h0A2.062,2.062,0,0,1,36.91649,44.89733ZM4.72406,39.88493h0A2.05739,2.05739,0,0,1,5.2076,37.017h0a2.03805,2.03805,0,0,1,2.85279.48507h0a2.0577,2.0577,0,0,1-.47553,2.86749h0a2.05928,2.05928,0,0,1-1.18843.37795h0A2.0611,2.0611,0,0,1,4.72406,39.88493Zm37.7503.40282a2.04853,2.04853,0,0,1-.49194-2.85987h0a2.04427,2.04427,0,0,1,2.85278-.49269h0a2.05058,2.05058,0,0,1,.492,2.85947h0a2.05173,2.05173,0,0,1-1.68038.871h0A2.014,2.014,0,0,1,42.47436,40.28775ZM1.27286,32.8512h0A2.05591,2.05591,0,0,1,2.6254,30.27941h0a2.04485,2.04485,0,0,1,2.56579,1.34768h0a2.05624,2.05624,0,0,1-1.35254,2.5718h0a1.91471,1.91471,0,0,1-.60683.0987h0A2.05133,2.05133,0,0,1,1.27286,32.8512Zm44.91488,1.25742a2.05552,2.05552,0,0,1-1.36054-2.56378h0A2.05712,2.05712,0,0,1,47.393,30.18071h0a2.04766,2.04766,0,0,1,1.35255,2.56377h0a2.04872,2.04872,0,0,1-1.95937,1.45441h0A1.90143,1.90143,0,0,1,46.18774,34.10862ZM.002,25.22609a2.05534,2.05534,0,0,1,1.95937-2.14491h0a2.05937,2.05937,0,0,1,2.13148,1.97238h0a2.04747,2.04747,0,0,1-1.95936,2.13608H2.0434A2.04369,2.04369,0,0,1,.002,25.22609Zm45.89918-.18095a2.05932,2.05932,0,0,1,2.04942-2.06226h0A2.05245,2.05245,0,0,1,50,25.03711h0a2.0527,2.0527,0,0,1-2.04943,2.05423h0A2.04559,2.04559,0,0,1,45.90115,25.04514ZM2.51052,19.98339A2.06353,2.06353,0,0,1,1.1824,17.39514h0a2.05229,2.05229,0,0,1,2.5822-1.32281h0a2.04753,2.04753,0,0,1,1.32012,2.58022h0a2.05212,2.05212,0,0,1-1.95136,1.42954h0A2.05152,2.05152,0,0,1,2.51052,19.98339Zm42.36591-1.41308a2.05892,2.05892,0,0,1,1.31972-2.58825h0a2.048,2.048,0,0,1,2.5822,1.31438h0a2.05288,2.05288,0,0,1-1.31972,2.58865h0a1.85675,1.85675,0,0,1-.63124.10673h0A2.05866,2.05866,0,0,1,44.87643,18.57031ZM5.17478,13.27024a2.05451,2.05451,0,0,1-.45912-2.8675h0a2.044,2.044,0,0,1,2.86119-.46019h0A2.05406,2.05406,0,0,1,8.036,12.81h0a2.042,2.042,0,0,1-1.66436.84657h0A2.05274,2.05274,0,0,1,5.17478,13.27024Zm36.734-.534a2.05294,2.05294,0,0,1,.44271-2.8675h0a2.0531,2.0531,0,0,1,2.8692.45177h0a2.06136,2.06136,0,0,1-.45111,2.8675h0a2.06764,2.06764,0,0,1-1.20484.39479h0A2.03863,2.03863,0,0,1,41.90876,12.73622ZM9.782,7.71579a2.0551,2.0551,0,0,1,.44271-2.87592h0a2.04125,2.04125,0,0,1,2.86079.44375h0a2.05109,2.05109,0,0,1-.4343,2.86749h0a2.047,2.047,0,0,1-1.21325.40283h0A2.06448,2.06448,0,0,1,9.782,7.71579Zm27.49515.386h0A2.053,2.053,0,0,1,36.826,5.23427h0a2.04284,2.04284,0,0,1,2.8612-.45217h0A2.05339,2.05339,0,0,1,40.13793,7.65h0a2.04916,2.04916,0,0,1-1.65595.84617h0A1.99511,1.99511,0,0,1,37.27714,8.10176ZM15.87263,3.84566A2.05294,2.05294,0,0,1,17.17634,1.249h0v.00842h0a2.04832,2.04832,0,0,1,2.5902,1.30636h0A2.05479,2.05479,0,0,1,18.45523,5.152h0a1.93848,1.93848,0,0,1-.63965.10672h0A2.0452,2.0452,0,0,1,15.87263,3.84566ZM31.45668,5.12755h0A2.056,2.056,0,0,1,30.137,2.5389h0a2.05927,2.05927,0,0,1,2.5822-1.32281h0a2.07156,2.07156,0,0,1,1.31972,2.59667h0a2.0626,2.0626,0,0,1-1.951,1.41308h0A2.07633,2.07633,0,0,1,31.45668,5.12755Zm-8.60759-3.0649A2.05793,2.05793,0,0,1,24.89011,0H24.997a2.0527,2.0527,0,0,1,2.04943,2.05423h0A2.0527,2.0527,0,0,1,24.997,4.10846h-.09846A2.05579,2.05579,0,0,1,22.84909,2.06265Z' style='&%2310; fill: var%28--afp-yellow%29;'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 230px;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.chef-section .wrapper .image img {
  width: 73%;
  height: 73%;
  position: absolute;
  object-fit: cover;
  border-radius: 150px;
}
.chef-section .wrapper .title {
  flex: 0 13.5%;
  margin-left: 20px;
}
.chef-section .wrapper .title p {
  font-size: 36px;
  color: var(--afp-teal);
  font-weight: bold;
}
.chef-section .wrapper .copy {
  flex: 0 55%;
  margin-left: 50px;
}
.chef-section .wrapper .copy p {
  font-weight: 400;
  font-size: 24px;
}
.chef-section .wrapper .copy a {
  color: var(--afp-teal);
  font-weight: bold;
  text-decoration: underline;
  transition: var(--transitionAllFast);
}
.chef-section .wrapper .copy a:hover {
  color: var(--afp-orange);
}
.chef-section .wrapper .copy em {
  font-style: italic;
}
.chef-section .wrapper .copy strong {
  font-weight: bold;
}
@media (max-width: 1100px) {
  .chef-section .wrapper {
    flex-direction: column;
  }
  .chef-section .wrapper .copy {
    margin: 0;
  }
  .chef-section .wrapper .copy * {
    text-align: center;
  }
}
#bs-post-recipe {
  width: 100%;
  float: left;
  position: relative;
  margin: 0px 0px 20px 0px;
  padding: 0px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
#bs-post-recipe .bs-post-stage {
  max-width: 1420px;
}
#bs-post-recipe .bs-post-stage .recipe-part {
  width: 100%;
  margin: 100px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
#bs-post-recipe .bs-post-stage .recipe-part:first-of-type {
  margin-top: 50px;
}
#bs-post-recipe .bs-post-stage .recipe-part .ingredients {
  width: 44%;
  margin: 0px 0px 0px 0px;
  padding: 0px 75px 0px 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
#bs-post-recipe .bs-post-stage .recipe-part .ingredients h3 {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 20px 0px;
  position: relative;
  color: var(--afp-teal-darkest);
  font-size: 40px;
  line-height: 40px;
}
#bs-post-recipe .bs-post-stage .recipe-part .ingredients h3::after {
  content: "";
  width: 70%;
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  border-bottom: 7px dotted var(--afp-orange);
}
#bs-post-recipe .bs-post-stage .recipe-part .ingredients p.yield {
  width: 100%;
  margin: 50px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 24px;
  color: var(--afp-orange);
  font-family: var(--Futura-Bold);
  font-weight: var(--font-bold);
}
#bs-post-recipe .bs-post-stage .recipe-part .ingredients ul.ingredient-list {
  width: 100%;
  margin: 30px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  position: relative;
  display: block;
}
#bs-post-recipe .bs-post-stage .recipe-part .ingredients ul.ingredient-list li.ingredient {
  width: 100%;
  margin: 0px 0px 30px 0px;
  padding: 0px 0px 0px 0px;
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
#bs-post-recipe .bs-post-stage .recipe-part .ingredients ul.ingredient-list li.ingredient.last-of-type {
  margin-bottom: 0px;
}
#bs-post-recipe .bs-post-stage .recipe-part .ingredients ul.ingredient-list li.ingredient p {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 24px;
}
#bs-post-recipe .bs-post-stage .recipe-part .ingredients ul.ingredient-list li.ingredient p.amount {
  width: 30%;
  padding-right: 15px;
  font-family: var(--Futura-Bold);
  font-weight: var(--font-bold);
  color: #008d9c;
}
#bs-post-recipe .bs-post-stage .recipe-part .ingredients ul.ingredient-list li.ingredient p.label {
  width: 70%;
  font-family: var(--Futura-Book);
  font-weight: var(--font-light);
  color: var(--text-gray);
}
#bs-post-recipe .bs-post-stage .recipe-part .ingredients ul.ingredient-list li.ingredient p.label::first-letter {
  text-transform: uppercase;
}
#bs-post-recipe .bs-post-stage .recipe-part .ingredients ul.ingredient-list li.ingredient p.label.product {
  font-weight: var(--font-bold);
  color: #008d9c;
}
#bs-post-recipe .bs-post-stage .recipe-part .directions {
  width: 56%;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
#bs-post-recipe .bs-post-stage .recipe-part .directions h3 {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 20px 0px;
  position: relative;
  color: var(--afp-teal-darkest);
  font-size: 40px;
  line-height: 40px;
}
#bs-post-recipe .bs-post-stage .recipe-part .directions h3::after {
  content: "";
  width: 70%;
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  border-bottom: 7px dotted var(--afp-orange);
}
#bs-post-recipe .bs-post-stage .recipe-part .directions ol.direction-list {
  width: 100%;
  margin: 47px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  float: left;
  position: relative;
  display: block;
  list-style-type: decimal;
  list-style-position: inside;
}
#bs-post-recipe .bs-post-stage .recipe-part .directions ol.direction-list li.step {
  width: 100%;
  margin: 0px 0px 30px 0px;
  padding: 0px 0px 0px 0px;
  float: left;
  position: relative;
  display: list-item;
  color: var(--afp-orange);
  font-family: var(--Futura-Bold);
  font-weight: var(--font-bold);
  font-size: 24px;
  line-height: 30px;
}
#bs-post-recipe .bs-post-stage .recipe-part .directions ol.direction-list li.step p {
  width: calc(100% - 50px);
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  float: right;
  position: relative;
  font-family: var(--Futura-Book);
  font-weight: var(--font-light);
  font-size: 24px;
  line-height: 30px;
  color: var(--text-gray);
}
#bs-post-recipe .bs-post-stage .recipe-part .directions ol.direction-list li.step p a {
  color: var(--afp-orange);
  font-weight: bold;
  text-decoration: underline;
}
#bs-post-recipe .bs-post-stage .recipe-part .directions ol.direction-list li.step p strong {
  font-weight: var(--font-bold);
  color: #008d9c;
}
.contact-bar {
  width: 100%;
  float: left;
  position: relative;
  margin: 50px 0px 0px 0px;
}
#bs-nav .bs-recipe {
  background-color: #73e3d3;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 40px 10px 40px;
  border-top-left-radius: 28px;
  border-bottom-right-radius: 28px;
  margin-top: -3px;
  flex-wrap: wrap;
}
#bs-nav .bs-recipe a {
  font-size: 16px;
  color: #fff;
  line-height: 40px;
}
#bs-nav .bs-recipe .active-cat a {
  color: var(--afp-teal);
}
#bs-nav .bs-recipe li {
  padding: 4px 24px;
  margin: 0 5px;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  #bs-nav .bs-recipe li {
    padding: 4px 16px;
  }
}
@media screen and (max-width: 1600px) {
  #bs-hero .stage {
    width: calc(100% - 80px);
  }
  #business-solutions-posts ul#bs-post-list li.bs-post {
    width: calc(25% - 30px);
    margin: 0px 15px 40px 15px;
  }
  #business-solutions-posts ul#bs-post-list li.bs-post a.title {
    font-size: 30px;
    line-height: 36px;
  }
  #bs-post-recipe .bs-post-stage {
    width: calc(100% - 160px);
  }
  #bs-post-recipe .bs-post-stage .recipe-part .ingredients h3,
  #bs-post-recipe .bs-post-stage .recipe-part .directions h3 {
    font-size: 30px;
    line-height: 30px;
    padding-bottom: 15px;
  }
  #bs-post-recipe .bs-post-stage .recipe-part .ingredients h3::after,
  #bs-post-recipe .bs-post-stage .recipe-part .directions h3::after {
    border-bottom-width: 5px;
  }
  #bs-post-recipe .bs-post-stage .recipe-part:first-of-type {
    margin-top: 0px;
  }
}
@media screen and (max-width: 1400px) {
  #bs-hero .stage h2 {
    font-size: 30px;
    line-height: 30px;
  }
  #bs-hero .stage #bs-featured {
    width: 55%;
    padding: 30px 40px 30px 40px;
  }
  #bs-hero .stage #bs-featured a.category {
    font-size: 24px;
    line-height: 24px;
    left: 40px;
    top: 30px;
    padding: 0px 0px 10px 0px;
  }
  #bs-hero .stage #bs-featured a.title {
    margin-bottom: 20px;
    font-size: 48px;
    line-height: 48px;
  }
  #bs-nav {
    padding: 30px 0px 30px 0px;
  }
  #bs-nav.scrolled {
    top: 60px;
  }
  #bs-nav ul#bs-tax-nav {
    height: 50px;
  }
  #bs-nav ul#bs-tax-nav li {
    height: 50px;
  }
  #bs-nav ul#bs-tax-nav li a {
    height: 50px;
    line-height: 48px;
    font-size: 19px;
  }
  #business-solutions-posts ul#bs-post-list li.bs-post a.title {
    font-size: 27px;
    line-height: 32px;
  }
  #business-solutions-posts ul#bs-post-list li.bs-post p.excerpt {
    font-size: 19px;
    line-height: 25px;
  }
  #bs-post-header #bs-post-heading h1 {
    font-size: 48px;
    line-height: 54px;
  }
  #bs-post-recipe .bs-post-stage .recipe-part .directions ol.direction-list li.step p,
  #bs-post-recipe .bs-post-stage .recipe-part .ingredients ul.ingredient-list li.ingredient p.amount,
  #bs-post-recipe .bs-post-stage .recipe-part .ingredients ul.ingredient-list li.ingredient p.label {
    font-size: 21px;
    line-height: 27px;
  }
  #bs-post-content .bs-post-stage p {
    font-size: 21px;
    line-height: 27px;
  }
}
@media screen and (max-width: 1200px) {
  #bs-hero .stage h1 {
    font-size: 72px;
    line-height: 72px;
  }
  #bs-hero .stage h2 {
    font-size: 24px;
    line-height: 24px;
  }
  #bs-hero .stage #bs-featured {
    width: 55%;
    padding: 25px 25px 25px 25px;
  }
  #bs-hero .stage #bs-featured a.category {
    font-size: 18px;
    line-height: 18px;
    left: 25px;
    top: 35px;
    padding: 0px 0px 10px 0px;
  }
  #bs-hero .stage #bs-featured a.title {
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 36px;
  }
  #bs-hero .stage #bs-featured.video::before {
    background-size: 25px;
    background-position: left 20px center;
    width: 60px;
    height: 60px;
    left: calc(50% - 30px);
    top: calc(50% - 30px);
  }
  #bs-hero .stage #bs-featured.video::after {
    width: 80px;
    height: 80px;
    left: calc(50% - 40px);
    top: calc(50% - 40px);
  }
  #bs-post-recipe .bs-post-stage {
    width: calc(100% - 80px);
  }
  #bs-post-recipe .bs-post-stage .recipe-part .ingredients {
    padding-right: 30px;
  }
}
@media screen and (max-width: 1200px) {
  #bs-hero {
    padding: 25px 0px 25px 0px;
  }
  #bs-hero .stage h1 {
    font-size: 60px;
    line-height: 60px;
  }
  #bs-hero .stage #bs-featured {
    width: 60%;
  }
  #bs-nav ul#bs-tax-nav li a {
    padding: 0px 15px 0px 15px;
    font-size: 17px;
    line-height: 46px;
  }
  #business-solutions-posts ul#bs-post-list li.bs-post {
    width: calc(33.333% - 30px);
  }
  #business-solutions-posts ul#bs-post-list li.bs-post a.title {
    font-size: 24px;
    line-height: 27px;
  }
  #business-solutions-posts ul#bs-post-list li.bs-post a.cat {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 0px;
  }
  #bs-post-header #bs-post-heading h1 {
    font-size: 42px;
    line-height: 48px;
  }
  #bs-post-header #bs-post-heading ul.breadcrumbs li a {
    font-size: 18px;
    line-height: 18px;
    text-align: center;
  }
  #bs-post-header #bs-post-heading h2 {
    font-size: 18px;
    line-height: 21px;
  }
  #bs-post-header .featured-content .feature {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 960px) {
  #bs-post-recipe .bs-post-stage .recipe-part {
    flex-direction: column;
  }
  #bs-post-recipe .bs-post-stage .recipe-part .ingredients {
    width: 100%;
    padding: 0px 0px 50px 0px;
  }
  #bs-post-recipe .bs-post-stage .recipe-part .directions {
    width: 100%;
  }
  #bs-post-header .featured-content .feature {
    width: 720px;
    height: 480px;
  }
  #bs-post-header #bs-post-heading ul.breadcrumbs li a {
    font-size: 16px;
    line-height: 16px;
  }
}
@media screen and (max-width: 840px) {
  #bs-hero.All:not(.paged) {
    height: auto;
  }
  #bs-hero .stage {
    flex-direction: column;
  }
  #bs-hero .stage .content {
    max-width: 100%;
    width: 100%;
  }
  #bs-hero .stage h1 {
    max-width: none;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
  }
  #bs-hero .stage h1 a {
    text-align: center;
  }
  #bs-hero .stage h2 {
    text-align: center;
  }
  #bs-hero .stage #bs-featured {
    margin-top: 25px;
    width: 500px;
    height: 283px;
  }
  #bs-hero .bg-shape {
    width: 100%;
    height: 60%;
  }
  #bs-hero .bg-shape::after {
    width: 100%;
    height: 40px;
    right: 0px;
    top: 100%;
  }
  #bs-nav ul#bs-tax-nav {
    width: calc(100% - 40px);
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
  }
  #bs-nav ul#bs-tax-nav li {
    width: calc(33.333% - 4px);
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  #bs-nav ul#bs-tax-nav li a {
    height: auto;
    padding: 10px 10px 10px 10px !important;
    font-size: 17px;
    line-height: 17px;
    padding: 0px;
    text-align: center;
  }
  #business-solutions-posts ul#bs-post-list li.bs-post {
    width: calc(50% - 30px);
  }
  #bs-post-header #bs-post-heading ul.breadcrumbs {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  #bs-post-header .featured-content .feature iframe {
    width: 100%;
  }
}
@media screen and (max-width: 760px) {
  #bs-post-header .featured-content .feature {
    width: 100%;
    max-width: 480px;
    height: 320px;
  }
}
@media screen and (max-width: 560px) {
  #bs-hero .stage {
    width: calc(100% - 40px);
  }
  #bs-hero .stage #bs-featured {
    width: calc(100% - 0px);
  }
  #bs-hero .stage #bs-featured.video::before,
  #bs-hero .stage #bs-featured.video::after {
    display: none;
  }
  #business-solutions-posts ul#bs-post-list li.bs-post {
    width: calc(100% - 30px);
  }
  #bs-nav ul#bs-tax-nav {
    flex-wrap: wrap;
    background: var(--afp-bright-teal);
    border: 3px solid var(--afp-bright-teal);
  }
  #bs-nav ul#bs-tax-nav li {
    background: var(--white);
    width: 50%;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    border: 0px;
    border: 3px solid var(--afp-bright-teal);
  }
  #bs-nav ul#bs-tax-nav li:first-of-type {
    width: 100%;
  }
  #bs-nav ul#bs-tax-nav li a {
    width: 100%;
    height: 100%;
    padding: 10px 10px 10px 10px !important;
    font-size: 17px;
    line-height: 17px;
    padding: 0px;
    text-align: center;
  }
}
