/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tilt+Warp&display=swap'); */
* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  list-style: none;
  box-sizing: border-box;
}

:root {
  --whitepink-bg: #fff1f2;
  --textColor: #585858;
  --titleColor: #231f20;
  --red: #e31937;
  --red80: rgb(227 25 55 / 80%);
  --red50: rgb(227 25 55 / 50%);
  --red20: rgb(227 25 55 / 20%);
  --red16: rgb(227 25 55 / 16%);
  --red12: rgb(227 25 55 / 12%);
  --red10: rgb(227 25 55 / 10%);
  --red6: rgb(227 25 55 / 6%);
  --poppin: "Poppins", sans-serif;
  --opensans: "Open Sans", sans-serif;
  --tiltwrap: "Tilt Warp", sans-serif;
  --roboto: "Roboto", sans-serif;
  --black: #000;
  --black2: #191919;
  --black3: #231f20;
  --textBlack: #1a1a1a;
  --white: #fff;
  --gray: #d7d7d7;
  --gray2: #313131;
  --cream: #fde7c7;
  --green: #36a148;
  --darkGreen: #3d6043;
  --greenText: #75b362;
  --fernGreen: #6bb27a;
  --fernGreen30: rgb(107 178 122 / 30%);
}

/* DroidSans (Text) */
@font-face {
  font-family: "DroidSans";
  src: url("../fonts/DroidSans.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DroidSans";
  src: url("../fonts/DroidSans-Bold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* MrEavesXLSanOT (Headings & Buttons) */
@font-face {
  font-family: "MrEavesXLSanOT";
  src: url("../fonts/MrEavesXL-Bold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Apply fonts */
body,
p,
li,
label,
.content {
  font-family: "DroidSans", sans-serif;
  font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
span,
.heading-class {
  font-family: "MrEavesXLSanOT", sans-serif;
  font-weight: 800;
}

button,
.btn,
.bnr-btn,
.view-btn,
.explore-btn,
.login-btn {
  font-family: "MrEavesXLSanOT", sans-serif !important;
  font-weight: normal !important;
  font-size: 18px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

a {
  text-decoration: none;
}

/* body{
    font-family: var(--opensans);
    font-family: var(--roboto);
    font-weight: 400;
    background-color: var(--white);
} */
#header {
  padding: 30px 0;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.06);
  /* position: relative; */
  position: absolute;
  z-index: 3;
  transition: all ease-in-out 350ms;
  top: 0;
  left: 0;
  width: 100%;
}
#header.header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#header.header-transparent.fixed,
#header.fixed {
  position: fixed;
  width: 100%;
  inset: 0 0 auto 0;
  padding: 15px 0;
  background: var(--white);
}
#header.header-transparent.fixed .white-logo {
  display: none;
}
#header.header-transparent.fixed .color-logo {
  display: block !important;
}
.blog-hero {
  /* background: #ED3853 url(../images/peeled-raw-chickpeas-img.jpg) no-repeat center right; */
  min-height: 450px;
  background-size: cover !important;
  padding: 50px 0;
  height: 68.8vh;
}
.blog-hero h1 {
  font-size: 48px;
  /* font-weight: 800; */
  display: inline-block;
  /* font-family: var(--opensans); */
  font-family: var(--tiltwrap);
}
.blog-hero h1 .box-in-txt {
  background: var(--red);
  border-radius: 2px;
  line-height: 1.168;
  padding: 0px 15px;
  margin-bottom: 10px;
}
.banner-content {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
}
.blog-listing-top {
  background-color: var(--white);
  padding: 40px 0 6px;
}
.blog-cat-menu ul {
  padding-left: 0 !important;
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  overflow: auto;
  margin-bottom: 0;
}
.blog-cat-menu ul li a {
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-size: 18px;
  font-weight: 600;
  color: var(--red);
  background: var(--white);
  padding: 7px 24px;
  border-radius: 8px;
  line-height: 1.5;
  display: block;
  min-width: 68px;
  border: 1px solid var(--red);
  height: 45px;
}
.blog-cat-menu ul li a.active {
  background: var(--red);
  color: #fff;
}
.blog-cat-menu ul::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.blog-cat-menu ul::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}
.blog-cat-menu ul::-webkit-scrollbar-thumb {
  background-color: rgba(237, 56, 83, 0.5) !important;
  outline: 0px solid rgba(237, 56, 83, 0.5);
  height: 4px;
  border-radius: 5px;
}
.blog-cat-menu .all-cat {
  order: -2;
}
.blog-cat-menu li.active {
  order: -1;
}

.featured img {
  border-radius: 10px;
}
.blog-main-article .featured {
  margin-bottom: 20px;
  position: relative;
}
.blog-main-article .blog-title {
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
}
.blog-main-article .summary {
  color: var(--white);
  font-size: 13.4px;
  line-height: 1.5;
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-weight: 400;
  margin-bottom: 25px;
}
.blog-article .blog-title {
  color: var(--titleColor);
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}
.blog-top-sidebar .blog-article .blog-title {
  /* white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; */
}
.blog-article-content {
  width: 100%;
}
.blog-article .summary {
  color: var(--textColor);
  font-size: 12px;
  line-height: 1.5;
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-weight: 400;
}
.author-name {
  color: var(--red80);
  line-height: 1.2;
  font-weight: 600;
  /* font-family: var(--poppin); */
  /*font-family: var(--roboto);*/
  font-size: 14px;
}
.blog-articles-top .author-name {
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-size: 10px;
  color: var(--red);
  font-weight: 700;
}
.blog-articles-top .blog-main-article .author-name {
  color: rgba(255, 255, 255, 0.8);
}
.read-time {
  color: var(--black);
  font-size: 10px;
  line-height: 1.5;
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-weight: 400;
  /* font-style: italic; */
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.timer-icon img {
  width: 13px;
}
.blog-main-article {
  padding: 28px;
  background: var(--red);
  border-radius: 8px;
  /* min-height: calc(100% - 12px); */
  /* padding-bottom: 12px; */
}
.blog-article {
  padding: 12px 0;
}
.blog-filterbar {
  margin-bottom: 15px;
}
.blog-content-area {
  padding-left: 28px;
}
.author-box a {
  display: flex;
  align-items: center;
  gap: 3px;
}
.author-avatar .author-img {
  width: 20px;
  height: 20px;
  display: flex;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  border: 1px solid #e5e5e5;
}
.featured-img {
  width: 100%;
  padding-top: 56%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  margin-bottom: 13px;
  background-color: #f5f5f5;
}
.blog-aritcle-grid {
  padding: 16px 0;
  background-color: var(--white);
}
.row.article-row {
  margin-left: -20px;
  margin-right: -20px;
}
.article-col {
  padding: 10px 20px !important;
}
.blog-article-content .summary {
  height: 35px;
  margin-bottom: 5px;
}
.big-article {
  padding-bottom: 12px;
}
.big-article .blog-article-content .summary {
  height: 45px;
  margin-bottom: 8px;
}
.article-col .blog-article .blog-title {
  color: var(--black3);
}
.article-col .author-name {
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-size: 14px;
}
.blog-aritcle-grid .blog-article-content .summary {
  margin-bottom: 15px;
}

.newsletter-cta-section {
  background-color: var(--fernGreen);
  background-image:
    url(../images/vegetables.png), url(../images/vegetables2.png);
  background-position:
    bottom left,
    bottom right;
  background-repeat: no-repeat;
  background-size:
    308px auto,
    337px auto;
  padding: 30px 0;
  min-height: 213px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter-cta-section h3 {
  font-size: 28px;
  color: var(--white);
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-weight: 700;
  margin: 0px auto 24px;
  max-width: 900px;
}
.subscribe-form {
  max-width: 540px;
  display: block;
  margin: auto;
}
.subscribe-form input.form-control {
  height: 48px;
  border: solid 1px #e3193733;
  padding: 10px 20px;
  color: #6c757d;
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-weight: 300;
  border-radius: 7px 0 0 7px;
}
.subscribe-form button {
  width: 105px;
  padding: 0;
  border-radius: 0 7px 7px 0;
  background: var(--red);
  height: 48px;
  line-height: 1.25;
  font-size: 14px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.subscribe-form button span.wpcf7-spinner {
  position: absolute;
  right: 0;
}
.subscribe-form button input,
.subscribe-form button:hover input {
  background: var(--red);
  color: var(--white);
  border-radius: 0 7px 7px 0;
  font-size: 14px;
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-weight: 600;
  padding: 10px 15px;
  line-height: 1.25;
  height: 48px;
  width: 100%;
}
.subscribe-form .input-group {
  flex-wrap: nowrap;
  justify-content: center;
}
.site-form input {
  border: 1px solid var(--gray);
  border-radius: 8px;
  padding: 5px 50px 6px 20px;
  height: 40px;
  /* background: #fff url('../images/search-icon.png') no-repeat 96% center; */
  font-size: 18px;
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
}
.site-form button[type="submit"] {
  position: absolute;
  right: 0;
  top: -20px;
  width: 50px;
  height: 40px;
  background: transparent;
}
input::placeholder {
  color: #6c757dcc;
}
.category-title-section {
  border-bottom: 1px solid var(--red);
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.category-title-section h2 {
  color: var(--red);
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-size: 30px;
  font-weight: 600;
  line-height: 1.25;
}
.breadcrumbs ul {
  display: flex;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.breadcrumbs {
  padding: 15px 0 5px;
}
.breadcrumbs ul li a {
  font-size: 14px;
  color: var(--textColor);
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  line-height: 1.5;
  position: relative;
  padding: 5px 15px 5px 5px;
  display: block;
}
.breadcrumbs ul li.active a {
  color: var(--red);
}
.breadcrumbs ul li:not(:last-child) a:after {
  content: ">";
  margin-left: 5px;
  line-height: 24px;
  display: inline-block;
  top: 5px;
  right: 0;
  position: absolute;
}
.breadcrumbs ul li:not(:last-child) {
  margin-right: 5px;
}
#footer {
  padding: 27px 0;
  /* box-shadow: 0px -2px 4px 0px rgba(131, 111, 111, 0.04); */
  border-top: 1px solid #cfcfcf;
  border-bottom: 1px solid #cfcfcf;
  background: var(--white);
}
.copyright p {
  color: var(--textBlack);
  margin: 10px 0;
  /* font-family: var(--poppin); */
  /*font-family: var(--roboto);*/
  font-weight: 400;
  font-size: 18px;
}
a.privacy-policy {
  color: var(--textBlack);
}
.single-blog {
  padding: 24px 0;
}
.post-signle-content p img {
  width: 100%;
}
.single-blog-data h1.blog-title {
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-size: 32px;
  font-weight: 600;
  color: var(--black3);
  line-height: 1.35;
}
.single-blog-data .blog-article-content .summary {
  height: auto;
}
.blog-main-article .read-time {
  /* font-size: 14px; */
  color: var(--white);
}
.read-time .timer-icon img {
  width: 13px;
}
.published-date img {
  width: 16px;
}
.published-date {
  font-size: 14px;
  /* font-style: italic; */
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  line-height: 1.5;
  display: flex;
  gap: 3px;
}
.single-blog-content p {
  font-size: 18px;
  line-height: 1.6;
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  color: var(--gray2);
}
.single-blog-content h1,
.single-blog-content h2,
.single-blog-content h3,
.single-blog-content h4,
.single-blog-content h4,
.single-blog-content h6 {
  color: var(--black3);
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-weight: 600;
  line-height: 1.5;
}
.single-blog-content h1,
.single-blog-content h2 {
  font-size: 24px;
}
.single-blog-content h3,
.single-blog-content h4 {
  font-size: 20px;
}
.single-blog-content h5,
.single-blog-content h6 {
  font-size: 18px;
}
.related-blog-post {
  padding: 30px 0 30px 0;
  background: rgb(255 255 255 / 30%);
}
.related-blog-post h2,
.explore-section h2 {
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-size: 30px;
  font-weight: 600;
  color: var(--textBlack);
  margin-bottom: 20px;
}
#related-blog .owl-dots {
  display: flex;
  /* background: #d9d9d9; */
  border-radius: 5px;
  text-align: center;
  justify-content: center;
}
#related-blog .owl-dots button.owl-dot {
  width: 20px;
  height: 20px;
  margin: 0px 8px;
  border-radius: 10px;
  border: 5px solid transparent;
}
#related-blog .owl-dots button.owl-dot span {
  background: #d9d9d9;
  display: block;
  height: 10px;
  width: 10px;
  border-radius: 10px;
}
#related-blog .owl-dots button.owl-dot.active {
  border-color: var(--red16);
}
#related-blog .owl-dots button.owl-dot.active span {
  background: var(--red);
}
#related-blog .owl-stage {
  margin-bottom: 10px;
}
#related-blog .owl-nav button {
  width: 36px;
  height: 146px;
  border-radius: 8px;
  background-color: transparent;
  position: absolute;
  top: 12px;
  transition: all ease-in-out 200ms;
}
#related-blog button.owl-next {
  right: 0;
}
#related-blog .owl-nav button.owl-prev {
  left: -40px;
}
#related-blog .owl-nav button.owl-next {
  right: -40px;
}
#related-blog .owl-nav button:hover {
  background: rgba(88, 88, 88, 0.12);
}
#related-blog .owl-nav button span {
  font-size: 52px;
  color: var(--red);
  font-weight: 300;
}
#related-blog .blog-article .blog-title {
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  color: var(--textColor);
}
#related-blog .article-col {
  padding: 0 !important;
}
.hr-line {
  border-radius: 5px;
  background-color: var(--red);
  width: 100%;
  height: 9px;
}
.post-breadcrumb {
  padding-top: 10px;
  padding-bottom: 10px;
}
.cat-list,
.tag-list {
  margin-left: -8px;
  max-width: 500px;
  font-size: 0;
}
.cat-list span,
.tag-list span {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: var(--red);
  display: inline-block;
  padding: 3px 8px;
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
}
.share-post h5,
.blog-cat h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: var(--black3);
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
}
.breadcrums-list ul {
  padding-left: 0;
  list-style: none;
  margin-top: 45px;
}
.breadcrums-list ul li {
  display: inline-block;
  position: relative;
}
.breadcrums-list ul li:not(:last-child) {
  padding-right: 16px;
}
.breadcrums-list ul li:not(:last-child):after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-top: 2px solid #bbb;
  border-right: 2px solid #bbb;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 5px;
  transform: rotate(45deg);
}
.breadcrums-list ul li a {
  color: #b6b6b6;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.breadcrums-list ul li span {
  color: #4d948b;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.post-breadcrumb .breadcrumbs ul li a {
  font-weight: 500;
}
.explore-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.explore-column {
  width: 32%;
  background: var(--red);
  border-radius: 5px;
  padding: 15px;
}
.explore-column-in {
  display: flex;
  gap: 10px;
  align-items: center;
}
.explore-column-in .explore-img img {
  max-height: 64px;
}
.explore-column:nth-child(3) .explore-column-in .explore-img img {
  max-height: 63px;
}
.explore-column-in .explore-title {
  font-size: 24px;
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  line-height: 1.1;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.post-signle-content ol,
.post-signle-content ul {
  padding-left: 0;
}
.post-signle-content ol li,
.post-signle-content ul li {
  font-size: 18px;
  color: var(--gray2);
  margin-bottom: 5px;
  display: inline-block;
  width: 100%;
  position: relative;
  padding: 2px 5px 2px 12px;
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
}
.post-signle-content ol li:before,
.post-signle-content ul li:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--gray2);
  border-radius: 10px;
  left: 0;
  top: 11px;
}
.menu-toggle {
  width: 41px;
  height: 30px;
  margin-top: 6px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  cursor: pointer;
}
.menu-toggle .toggle-iconbar {
  width: 100%;
  height: 3px;
  background: var(--red);
  display: block;
  border-radius: 5px !important;
}
#header .menu-toggle img {
  height: 30px;
}

#header img.white {
  display: none;
}

@media (min-width: 768px) {
  .header-transparent .menu-toggle .toggle-iconbar {
    background: var(--white);
  }
  .header-transparent.fixed .menu-toggle .toggle-iconbar {
    background: var(--red);
  }
  #header.header-transparent img.white {
    display: block;
  }
  #header.header-transparent img.red {
    display: none;
  }
  #header.header-transparent.fixed img.red {
    display: block;
  }
  #header.header-transparent.fixed img.white {
    display: none;
  }
}
.menu-toggle .toggle-iconbar + .toggle-iconbar {
  margin-top: 7px;
}
.menu-toggle .toggle-iconbar:nth-child(2) {
  width: 79%;
}
.sidebar-menu {
  position: fixed;
  right: 0;
  top: 0;
  background: var(--red);
  width: 450px;
  height: 100%;
  padding: 84px 0px 25px;
  transform: translate(100%, 0);
  transition: all ease-out 0.5s;
}
.sidebar-menu ul {
  padding-left: 0;
}
.sidebar-menu ul li {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.sidebar-menu ul li a {
  color: var(--white);
  /* font-family: var(--poppin); */
  /*font-family: var(--roboto);*/
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  padding: 20px;
  display: block;
  text-align: center;
}
.sidebar-menu ul li a.active,
.sidebar-menu ul li a:hover {
  background: var(--white);
  color: var(--red);
  font-weight: 700;
}
input#menu-toggle-input {
  opacity: 0;
  visibility: hidden;
  width: 0;
}
input#menu-toggle-input:checked ~ .sidebar-menu {
  transform: translate(0px, 0px);
}
.menu-close {
  color: #fff;
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-size: 30px;
  font-weight: 700;
  width: 50px;
  text-align: center;
  padding: 5px;
  position: absolute;
  right: 6px;
  top: 3px;
  cursor: pointer;
}
.explore-section {
  padding: 25px 0 15px 0;
}
.login-btn {
  border: 1px solid var(--red);
  border-radius: 7px;
  color: var(--red);
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  padding: 8px 20px;
  min-width: 110px;
  text-align: center;
  margin-right: 55px;
}
@media (min-width: 768px) {
  .header-transparent .login-btn {
    border-color: var(--white);
    color: var(--white);
  }
  .header-transparent.fixed .login-btn {
    border-color: var(--red);
    color: var(--red);
  }
}
.single-blog-data .blog-main-article {
  background: transparent;
  padding: 0;
}
.single-blog-content h1,
.single-blog-content h2,
.single-blog-content h3,
.single-blog-content h4 {
  margin-top: 10px;
}
.single-blog-content ul h3 {
  margin-top: 0px;
}

.recipe-section {
  padding: 40px 0 20px;
}
/* .recipe-grid-list > .row{
    margin-left: -10px;
    margin-right: -10px;
} */
.recipe-grid-list > .row {
  margin-left: -20px;
  margin-right: -20px;
}
.recipe-article-box {
  padding: 20px 20px;
}
.recipe-card-featured {
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1/0.56;
  position: relative;
  margin-bottom: 10px;
}
.recipe-card-featured .recipe-featured {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.protein-badge {
  position: absolute;
  bottom: 12px;
  left: 0px;
  background-image: linear-gradient(
    to right,
    #36a148,
    #3dbc53 25%,
    #36a148 50%,
    rgba(54, 161, 72, 0.8) 80%,
    rgba(54, 161, 72, 0)
  );
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  padding: 6px 35px 6px 17px;
  min-width: 180px;
}
.protein-badge strong {
  font-weight: 700;
}
.protein-badge img {
  margin-right: 1px;
  width: 27px;
  border-radius: 0px;
}
.protein-badge.badge-x2 img {
  margin-right: 10px;
  width: 45px;
}
.protein-badge.badge-x2 {
  font-size: 22px;
  line-height: 1.25;
  min-width: 250px;
  padding: 10px 65px 10px 17px;
}
.recipe-category ul {
  padding-left: 0px;
  margin-bottom: 0;
}
.recipe-category ul {
  font-size: 0;
}
.recipe-category ul li {
  display: inline-block;
  padding: 3px 12px;
  position: relative;
}
.recipe-category ul li:before {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--darkGreen);
  border-radius: 10px;
  top: 8px;
}
.recipe-category ul li a {
  color: var(--darkGreen);
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  display: block;
}
.recipe-category._2x ul li a {
  font-size: clamp(12px, 2vw, 18px);
  color: var(--darkGreen);
}
.recipe-card-title h3 {
  color: var(--titleColor);
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 5px;
}
.recipe-card-featured a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
.protein-cta {
  padding-bottom: 40px;
}
.protein-cta-card {
  background: url("../images/peeled-raw-chickpeas.png") no-repeat center;
  background-size: cover;
  padding: 35px 35px 35px 23.5%;
  border-radius: 10px;
  min-height: 140px;
}
.pg-wrapper {
  min-height: calc(100vh - 248px);
}
.recipe-detail-top {
  padding: 12px 0 5px;
}
.recipe--featured-cell {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  position: relative;
}
.recipe-featured-summary {
  padding: 15px 0;
  width: 100%;
}
.recipe-title h1 {
  color: var(--textBlack);
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-size: clamp(1.75rem, 5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.3;
}
.summary-text p {
  color: var(--textBlack);
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  opacity: 0.6;
}
.dish-info {
  background: var(--red);
  border-radius: 8px;
  padding: 20px 20px;
}
.dish-info--cellin {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.dish-info--cellin span.icon {
  min-width: 30px !important;
  max-width: 30px;
  display: inline-block;
}
.dish-info--cellin span.text {
  color: var(--white);
  font-size: clamp(14px, 1.5vw, 18px);
  white-space: nowrap;
}
.dish-info-cell:nth-child(2) {
  text-align: center;
}
.dish-info-cell:nth-child(3) {
  text-align: end;
}
.recipe-top-summary,
.recipe-right-column {
  padding-left: 6%;
}
.share-icons ul {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  gap: 8px;
}
p.disclaimer-text {
  font-size: 12px;
}
.print-btn {
  display: inline-flex;
  border-radius: 8px;
  color: #fff;
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-size: 12px;
  padding: 6px 10px;
  min-width: 30px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.share-n-print {
  margin: 25px 0 35px;
}
.summary-text {
  width: 100%;
  margin-bottom: 40px;
}
.ingredients-card {
  background: var(--fernGreen30);
  border-radius: 8px;
  padding: 15px 15px;
  width: calc(100% - 65px);
}
.ingredient-social-area-outer {
  position: sticky;
  top: 80px;
}
.ingredients-card h3 {
  font-size: 28px;
  color: var(--darkGreen);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 300;
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
}
.ingredient-name-detail {
  display: inline-block;
  width: 100%;
  padding: 10px 0 10px 0px;
  color: var(--darkGreen);
}
.ingredient-name-detail .name {
  position: relative;
  font-size: 18px;
  line-height: 1.35;
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-weight: 600;
  display: inline-block;
  padding: 5px 0;
}
.ingredient-name-detail .name:before {
  content: "";
  /*position: absolute;
    width: 5px;
    height: 5px;
    background: var(--darkGreen);
    left: -15px;
    border-radius: 10px;
    top: 16px;*/
}
.ingredient-name-detail .detail {
  font-size: 18px;
  color: var(--darkGreen);
  line-height: 1.35;
  /* opacity: 0.8; */
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-weight: 500;
}
.check-ingredient-btn {
  background: var(--white);
  color: var(--red);
  border-radius: 10px;
  font-size: 18px;
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-weight: 500;
  line-height: 1.35;
  display: inline-block;
  padding: 14px 15px;
}
.cooking-recipe-section {
  padding: 40px 0 60px;
}
.step-number {
  font-size: 60px;
  color: var(--darkGreen);
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 5px;
}
.step-content p {
  font-size: 18px;
  color: var(--textBlack);
  font-weight: 400;
  /* font-family: var(--opensans);  */
  /*font-family: var(--roboto);*/
  opacity: 0.7;
  line-height: 1.5;
}
.step-content {
  margin-bottom: 10px;
  display: inline-block;
  width: 100%;
}
.step-feautured {
  width: 100%;
  display: inline-block;
  margin-bottom: 25px;
}
.recipe-right-column h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--textBlack);
  line-height: 1.25;
  margin-bottom: 15px;
}

.single-blog #ez-toc-container label.ez-toc-cssicon-toggle-label {
  border: none !important;
}
.single-blog #ez-toc-container label.ez-toc-cssicon-toggle-label > span svg {
  display: none;
}
.single-blog #ez-toc-container .ez-toc-icon-toggle-span:before {
  content: "\002B";
  font-size: 35px;
  color: var(--white);
}
.single-blog #ez-toc-container .ez-toc-icon-toggle-span.active:before {
  content: "\2212";
}
.single-blog span.ez-toc-cssicon,
.single-blog #ez-toc-container .ez-toc-js-icon-con,
.single-blog #ez-toc-container .ez-toc-toggle label {
  border: none !important;
  height: 40px;
  min-width: 40px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center !important;
}
.single-blog label.ez-toc-cssicon-toggle-label {
  position: absolute !important;
  right: 20px;
  top: 10px;
}
p.ez-toc-title {
  background-color: var(--red) !important;
  display: block !important;
  margin: 0 !important;
  min-width: 100%;
  width: auto;
  padding: 16px 24px !important;
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-size: 20px;
  font-weight: 600 !important;
  border-radius: 8px 8px 0 0;
  color: #fff !important;
}
.single-blog p {
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #313131;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
}
.single-blog #ez-toc-container {
  padding: 0 !important;
  border-radius: 8px !important;
  overflow: hidden;
  width: 100%;
}
.single-blog span.ez-toc-title-toggle {
  position: absolute;
  right: 20px;
  top: 13px;
}
.ez-toc-title-container {
  position: relative;
}
ul.ez-toc-list {
  padding: 20px !important;
}
ul.ez-toc-list li:before {
  display: none !important;
}
.social-share-btns ul {
  padding-left: 0;
  margin-bottom: 0;
}
.social-share-btns .heateor_sss_sharing_ul {
  text-align: right !important;
  display: inline-block;
  min-width: 170px;
}
button.socialshare-btn {
  background: transparent;
}
.share-popup div.heateor_sss_follow_ul a,
.share-popup div.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a {
  float: left;
  padding: 0 !important;
  list-style: none !important;
  border: none !important;
  margin: 6px 6px;
}
.share-popup {
  position: relative;
}
.share-popup ul {
  border-radius: 30px;
  position: absolute;
  background: #fff;
  padding: 6px;
  top: -8px;
  right: 0px;
  width: 252px;
  border-radius: 70px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.25);
  background-color: #fff;
  z-index: 1;
}
.share-popup:before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(49, 49, 49, 0.16);
  left: 0;
  top: 0;
  z-index: 1;
}
.social-share-btns {
  position: relative;
  min-height: 40px;
}
.social-share-btns ul li {
  display: inline-block;
  padding: 6px;
}
.social-share-btns ul li a {
  display: block;
}
.social-share-btns ul li a img {
  max-width: 30px;
  width: 100%;
}
.share-popup .heateor_sss_sharing_container {
  display: inline-flex;
  vertical-align: middle;
}
.blog-top-sidebar .blog-article:first-child {
  padding-top: 0;
}
.social-share-btns .heateor_sss_sharing_ul a {
  margin: 2px 5px !important;
}
.heateor_sss_sharing_ul a {
  margin: 2px 5px !important;
}

.videoWrapper {
  position: relative;
  height: calc(100vh - 205px);
  overflow: hidden;
  min-height: 400px;
  width: 100%;
}
.videoWrapper video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-width: 100%;
  width: 100%;
  min-height: 100%;
  height: 100%;
  object-fit: cover;
  /* transform: scale(1.25); */
}
.blog-hero .container {
  position: relative;
  z-index: 1;
}

.animate-bg {
  position: relative;
  display: inline-block;
}
.animate-bg:before {
  content: "";
  position: absolute;
  background: #e31937;
  animation: slide-toggle 10s linear infinite;
  z-index: 0;
  top: -2px;
  bottom: -5px;
}
.animate-bg span {
  position: relative;
  padding: 0 5px;
}
@keyframes slide-toggle {
  0% {
    left: 0;
    width: 0;
  }
  25% {
    right: 0;
    width: 100%;
  }
  50% {
    right: 0;
    width: 0%;
    left: inherit;
  }
  75% {
    right: 0;
    width: 100%;
  }
  100% {
    left: 0;
    width: 0%;
    right: inherit;
  }
}
/*
.recipe-card-featured a:after {
    content: '';
    position: absolute;
    inset: 0;
    border: 5px solid transparent;
    border-radius: 12px;
    -webkit-transition: all ease-in-out 450ms;
    -moz-transition: all ease-in-out 450ms;
    -ms-transition: all ease-in-out 450ms;
    -o-transition: all ease-in-out 450ms;
    transition: all ease-in-out 450ms;
    visibility: hidden;
    opacity: 0;
    background: var(--red10);
}
.recipe-card-featured a:hover:after {
    border-color: var(--red);
    visibility: visible;
    opacity: 1;
}*/
.protein-badge,
.lets-cook {
  -webkit-transition: all ease-in-out 450ms;
  -moz-transition: all ease-in-out 450ms;
  -ms-transition: all ease-in-out 450ms;
  -o-transition: all ease-in-out 450ms;
  transition: all ease-in-out 450ms;
}
/*
.recipe-card-featured a:hover ~ .protein-badge {
    transform: translate(0px, -100%);
}*/
.lets-cook {
  text-align: center;
  transition: all ease-in-out 450ms;
}
/*
.recipe-card-featured a:hover ~ .lets-cook {
    transform: translate(0px, -100%);
}*/
.lets-cook .text {
  background: var(--red);
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-size: 18px;
  color: var(--white);
  padding: 6px 18px 6px 18px;
  display: inline-block;
  border-radius: 8px 8px 0 0;
}
.print-btn a span.text {
  color: white;
}
.youtube-button {
  cursor: pointer;
}
/* BEGIN YOUTUBE LIGHTBOX STYLES */
.lbb {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 2;
}
.lb-ext {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
  padding: 0 10%;
  height: auto;
  max-width: 1200px;
  border-radius: 2px;
}
.lb-int {
  height: auto;
  background-color: black;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 0 70px 30px rgba(0, 0, 0, 0.3);
}
.lb-info-block {
  margin: 0 0 20px;
}
.multi-author {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.multi-author .author-box:not(:last-child) {
  margin-right: 0px;
}
.author-box {
  position: relative;
  padding: 3px 0;
}
.author-box:not(:last-child):after {
  content: "";
  height: 15px;
  width: 1px;
  background-color: #747474;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -5px;
  position: absolute;
}
.ingredient-name-detail .detail ul {
  display: inline-block;
  width: 100%;
}
.ingredient-name-detail .detail ul li {
  list-style: disc;
  margin-bottom: 20px;
}
.step-featured img {
  max-width: 250px;
}
.subscribe-form .input-group p {
  margin-bottom: 0;
}
.blog-cat-top-articles {
  padding-top: 40px;
}
p.ez-toc-title {
  background: var(--fernGreen) !important;
}
div#ez-toc-container {
  background: rgb(107 178 122 / 12%) !important;
  border-color: rgb(107 178 122 / 12%) !important;
}
div#ez-toc-container ul.ez-toc-list a {
  color: var(--fernGreen) !important;
  font-size: 16px !important;
}
.single-blog-data .blog-article-content .summary p {
  color: var(--textColor);
}
.social-share-btns span.heateor_sss_svg,
.share-social span.heateor_sss_svg {
  background-color: transparent !important;
}
.social-share-btns span.heateor_sss_svg svg,
.share-social span.heateor_sss_svg svg {
  display: none !important;
}
.social-share-btns .heateor_sss_sharing_ul a.heateor_sss_facebook,
.share-social .heateor_sss_sharing_ul a.heateor_sss_facebook {
  background: url("../images/fb.svg") no-repeat center !important;
  background-size: contain;
}
.social-share-btns .heateor_sss_sharing_ul a.heateor_sss_button_x,
.share-social .heateor_sss_sharing_ul a.heateor_sss_button_x {
  background: url("../images/twitter-x.svg") no-repeat center !important;
  background-size: contain;
}
.social-share-btns .heateor_sss_sharing_ul a.heateor_sss_button_linkedin,
.share-social .heateor_sss_sharing_ul a.heateor_sss_button_linkedin {
  background: url("../images/linkedin.svg") no-repeat center !important;
  background-size: contain;
}
.social-share-btns .heateor_sss_sharing_ul a.heateor_sss_whatsapp,
.share-social .heateor_sss_sharing_ul a.heateor_sss_whatsapp {
  background: url("../images/whatsapp.svg") no-repeat center !important;
  background-size: contain;
}
.share-icons {
  width: 65px;
  padding-right: 15px;
}
.share-icons .heateor_sss_sharing_ul {
  display: inline-block;
}
.share-icons .heateor_sss_sharing_ul a {
  margin: 6px !important;
}
.summary.ellipsis-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-top-sidebar .featured {
  aspect-ratio: 1/0.56;
  overflow: hidden;
  position: relative;
}
.blog-top-sidebar .featured a {
  width: 100%;
  height: 100%;
}
.blog-top-sidebar .featured .recipe-featured {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recipe-article-card .bloginfo {
  margin-top: 15px;
}
.recipe-card-content .summary {
  font-size: 12px;
  color: var(--textColor);
  /* font-style: italic; */
  font-weight: 400;
  line-height: 1.5;
}
.big-article .recipe-category ul {
  padding-left: 0;
}
.big-article .recipe-category ul li::before {
  background: var(--white);
}
.blog-top-sidebar .recipe-category ul {
  padding-left: 0;
}
.related-recipes h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--textBlack);
}
.related-recipes .recipe-category ul {
  padding-left: 0;
}
.related-recipes .recipe-card-title h3 {
  /* font-size: 18px; */
  /* font-weight: 700; */
  margin-bottom: 5;
  /* margin-top: 8px; */
}

/* Add dropdown search */
.suggestions-dropdown {
  position: absolute;
  background: white;
  z-index: 1000;
  border-radius: 12px;
  width: 100%;
  top: 52px;
  left: 0;
}
.suggestions-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border: solid 1px rgba(215, 215, 215, 0.8);
  border-radius: 12px;
  max-height: 250px;
  overflow-y: auto;
}
.suggestions-dropdown li {
  padding: 0px;
  border-bottom: 1px solid #eee;
}
.suggestions-dropdown li a {
  text-decoration: none;
  text-align: left !important;
  width: 100%;
  display: block;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: left;
  color: var(--black3);
  padding: 15px 30px;
}
.suggestions-dropdown li:hover {
  background: var(--red);
}
.suggestions-dropdown li:hover a {
  color: var(--white);
}
.site-form {
  position: relative;
}
.big-article .featured {
  aspect-ratio: 1 / 0.6;
}
.big-article .featured > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.custom-pagination {
  text-align: center;
}

.custom-pagination ul li a,
.custom-pagination ul li .page-numbers {
  /* font-family: var(--poppin); */
  /*font-family: var(--roboto);*/
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
  color: #6f6f6f;
}
.custom-pagination ul li span.active.current a,
.custom-pagination ul li span.active a,
.custom-pagination ul li .page-numbers.current {
  color: var(--red) !important;
}
.custom-pagination ul {
  padding-left: 0 !important;
}
.custom-pagination ul li {
  display: inline-block;
  padding: 2px;
  vertical-align: middle;
}
.custom-pagination ul li a,
.custom-pagination ul li .page-numbers {
  display: block;
  min-width: 28px;
  height: 28px;
  padding: 0;
  text-align: center;
  line-height: 28px;
  position: relative;
}
.custom-pagination ul li a span.prev {
  background: url("../images/red-chevron-arrow.svg") no-repeat center;
  background-size: auto;
  width: 100%;
  height: 100%;
  display: block;
}
.custom-pagination ul li a span.next {
  background: url("../images/red-chevron-arrow.svg") no-repeat center;
  background-size: auto;
  width: 100%;
  height: 100%;
  display: block;
  transform: rotate(180deg);
}

.bloginfo .row.align-items-center {
  display: flex;
  flex-direction: row;
  flex-wrap: inherit;
  justify-content: space-between;
}
.author-info {
  display: flex;
  gap: 11px;
  position: relative;
  flex-wrap: wrap;
}
.author-info .multi-author {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  column-gap: 10px;
}
.author-box {
  display: flex;
  gap: 5px;
  position: relative;
  align-items: center;
}
.timer-icon {
  min-width: 17px;
  display: flex;
  align-items: center;
}
.blog-article .row {
  margin-left: -8px;
  margin-right: -8px;
}
.blog-article .row > * {
  padding-left: 8px;
  padding-right: 8px;
}
/* .single-blog .blog-main-article .read-time, */
.author-info {
  width: auto;
}
.bloginfo .read-time {
  width: auto;
}
.single-blog .author-info {
  width: 58.33333333%;
}
.bloginfo {
  overflow: hidden;
}

.search-result-item {
  padding: 6px 12px;
}
.search-result-item h2 {
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 15px;
}
.search-result-item p {
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-size: 18px;
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: normal;
  color: rgba(26, 26, 26, 0.8);
}
.search-result-item-in {
  background: #fff;
  border-radius: 12px;
  padding: 24px 16px;
  transition: all ease-in-out 350ms;
}
.search-result-item-in:hover {
  background: var(--red12);
  box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.1);
}
.search-result-item-in .search-content p {
  margin-bottom: 0px;
}
.search-results-section {
  padding: 160px 0 40px 0;
}
.search-input-text h1 {
  /* font-family: var(--opensans); */
  /*font-family: var(--roboto);*/
  font-size: 30px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 5px;
}
.search-details-wrapper {
  padding: 16px 0;
  border-top: solid 1px rgba(26, 26, 26, 0.2);
  border-bottom: solid 1px rgba(26, 26, 26, 0.2);
  margin-bottom: 40px;
}
.search-count {
  font-size: 18px;
  font-weight: normal;
  color: #1a1a1a;
}
.search-top-filter {
  margin-bottom: 25px;
}
.single-blog .blog-main-article .read-time {
  font-size: 14px;
  color: #000;
}
.calendar-icon {
  display: inline-flex;
  align-items: center;
}
.novalue,
.suggestions-dropdown p {
  background: var(--red);
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px 15px;
}

.icon-container {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

.search-icon,
.clear-icon {
  background: none;
  border: none;
  cursor: pointer;
}

.clear-icon {
  font-size: 18px;
  display: none;
  color: #e31937;
}
input::-webkit-search-cancel-button {
  display: none;
}
.share-social {
  margin-top: 0px;
}

#return-to-top {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;
}
.footer-menu {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  padding: 14px 0;
  left: 0;
  z-index: 99;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}
.footer-menu a {
  text-decoration: none;
  text-align: center;
}
.footer-menu a .icon {
  height: 25px;
  width: 25px;
  display: block;
  margin: 0 auto 3px auto;
}
.footer-menu a img {
  margin: auto;
  display: block;
}
.footer-menu a p {
  font-size: 10px;
  line-height: 12px;
  color: #e31937;
  font-weight: 700;
  margin: 0;
}
.footer-menu a .f-img2 {
  display: none;
}
.footer-menu a.active .f-img2 {
  display: block;
}
.footer-menu a.active .f-img1 {
  display: none;
}
.recipe-top-summary {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: space-between;
}
.blog-top-sidebar {
  padding-left: 38px;
}
.blog-top-sidebar .blog-article-content .summary {
  overflow: hidden;
  height: 54px;
}

.article-col .blog-article .blog-title {
  min-height: 48px;
}
.blog-top-sidebar .blog-article:not(:last-child) {
  border-bottom: 1px solid hsl(0deg 0% 85.1% / 55%);
}
.single {
  padding-top: 122px;
}

.single-blog-content table thead {
  background: #4d948b;
  color: #fff;
}
.vr-writing,
.single-blog-content table tbody tr > td:first-child,
.single-blog-content table tbody tr > th:first-child {
  background: #b0d3cf !important;
  width: 120px;
}

/* .vr-writing,
.single-blog-content table tbody tr:not(:first-child) > td:first-child,
.single-blog-content table tbody tr:not(:first-child) > th:first-child {
    background: #b0d3cf !important;
    width: 120px;
} */

/*.vr-writing span,
.single-blog-content table tbody tr:not(:first-child) > td:first-child span,
.single-blog-content table tbody tr:not(:first-child) > th:first-child span,
.single-blog-content table tbody tr:not(:first-child) > td:first-child >*,
.single-blog-content table tbody tr:not(:first-child) > th:first-child >*  */
.vr-writing span,
.single-blog-content table tbody tr:not(:first-child) > th:first-child span,
.single-blog-content table tbody tr:not(:first-child) > th:first-child > * {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  color: #4d948b;
  display: block;
  text-transform: uppercase;
  /*writing-mode: tb;
    transform: rotate(180deg); */
}
.single-blog-content table tbody tr td {
  background: #d4e5e3;
}
.single-blog-content table {
  border-color: rgb(99 191 180 / 80%);
  margin-bottom: 0;
  vertical-align: top;
}
.single-blog-content table > tbody {
  vertical-align: inherit;
}
.single-blog-content table thead tr td {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
  vertical-align: middle;
}
.single-blog-content table thead tr th {
  padding: 5px 25px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  min-height: 53px;
  vertical-align: middle;
}
.single-blog-content table tbody tr td {
  padding: 12px 24px;
  font-size: 18px;
}

.single-blog-content table > :not(caption) > * {
  border-width: 1px 0;
}

.single-blog-content table tbody tr td ul {
  padding-left: 0;
  margin-bottom: 0;
}

.blog-category-pg .breadcrumbs {
  padding-top: 48px;
}
.privacy-policy h1.blog-title.aos-init.aos-animate {
  padding-top: 40px;
}

.privacy-policy .blog-main-article {
  margin-top: 50px !important;
}
.img-col {
  display: flex;
}
.img-col .featured {
  display: flex;
  width: 100%;
}
.blog-article .img-col a {
  width: 100%;
}
.img-col .featured img {
  object-fit: cover;
  object-position: center;
  height: 100%;
}
.blog-category-pg {
  padding-top: 120px;
}
.protein-footer-menu ul {
  padding-left: 0;
  margin-bottom: 0;
}
.protein-footer-menu ul li {
  display: inline-block;
  /* padding: 5px 22px; */
  padding: 5px 15px;
}
.protein-footer-menu ul li a {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.2;
  color: #1a1a1a;
  padding: 2px;
  font-family: "Poppins", sans-serif;
}
.copyright {
  display: inline-block;
  width: 100%;
}
.copyright p {
  opacity: 0.5;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.25;
  color: #1a1a1a;
  padding: 9px 0;
}
.protein-footer-menu ul li:first-child {
  padding-left: 0;
}
.protein-footer-menu ul li:last-child {
  padding-right: 0;
}
a.close-ss-popup {
  position: relative;
}
a.close-ss-popup:after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
}

.ingredients-card-in table {
  border-radius: 6px;
  vertical-align: middle;
}
.ingredients-card-in table[class*="border-"] {
  border-color: #3d6043 !important;
}
.ingredients-card-in table th {
  font-family: var(--opensans);
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: -0.44px;
  color: #3d6043;
  text-align: center;
  padding: 20px 15px;
  vertical-align: middle;
}
.ingredients-card-in table td {
  font-family: var(--opensans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: normal;
  color: #3d6043;
  padding: 10px 15px;
  vertical-align: middle;
}
.ingredients-card-in table .td-caption td {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  color: #3d6043;
  padding: 13px 15px;
}
.ingredients-card-in table td .quantity {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: normal;
  color: #3d6043;
}
.ingredients-card-in table td .ingredient-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: normal;
  color: #3d6043;
}
.ingredient-note {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: normal;
  color: #3d6043;
}

.explore-section2 {
  padding-top: 15px;
  padding-bottom: 50px;
}
.explore-section2 h2 {
  font-family: "Tilt Warp", sans-serif;
  font-size: 36px;
  font-weight: normal;
  line-height: 1.24;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.explore-column2 {
  padding-top: 10px;
  padding-bottom: 10px;
}
.explore-column-in2 .explore-img {
  min-height: 175px;
  display: flex;
}
.explore-column-in2 .explore-img img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.explore-btn {
  background-color: #fff;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: center;
  color: #e31937;
  /* border-radius: 8px;
    font-size: 18px;
    line-height: 1.67;
    padding: 6px 25px; */

  border-radius: 6px;
  font-size: 14px;
  line-height: 22px;
  padding: 6px 12px;
}
.explore-tile-content {
  position: absolute;
  top: 0;
  left: 0;
  /* padding: 30px 25px 25px; */
  padding: 25px 20px 20px;
  width: 100%;
  display: flex;
  height: 100%;
  flex-wrap: wrap;
  align-content: space-between;
}
.explore-tile-content .explore-title {
  width: 100%;
}
.explore-tile-content .explore-title h4 {
  font-family: "Tilt Warp", sans-serif;
  /* font-size: 25px; */
  font-size: 20px;
  font-weight: normal;
  line-height: 1.2;
  color: #fff;
}
.explore-column-in2 {
  position: relative;
}

@media (max-width: 767px) {
  .explore-btn {
    padding: 6px 20px;
  }
}

.footer-nav {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.footer-nav li {
  margin: 0 10px;
}
.footer-nav a {
  text-decoration: none;
  color: inherit;
}

/****************************/
/** Mythbuster slider **/
/****************************/
/* SLIDE */
.slide {
  position: relative;
  min-height: 520px;
  display: flex;
  height: 100%;
}

.pomp-slider-item {
  gap: 10px 30px;
  padding-right: 8%;
}

/* IMAGE */
.image-wrap {
  position: relative;
  left: 0;
  bottom: 0;
  width: 700px;
  height: 700px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0px 0px -200px -200px;
  /* background-color: #fff; */
  flex-shrink: 0;
}

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

.pomp-slider-content {
  width: 100%;
  padding-bottom: 70px;
}

/* IMAGE ROTATION */
.rotate-next img {
  animation: rotF 1.8s ease forwards;
}

.rotate-prev img {
  animation: rotB 1.8s ease forwards;
}

@keyframes rotF {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotB {
  to {
    transform: rotate(-360deg);
  }
}

/* TEXT CARD */
.text-card {
  overflow: hidden;
}

.text {
  transform: translateY(100%);
}

.info-callout-content-in .text p {
  color: rgba(26, 26, 26, 0.5);
  font-size: 16px;
}

.info-callout-content-in .text p:last-child {
  margin-bottom: 0;
}

.info-callout-content-in .text p strong {
  color: rgba(26, 26, 26, 0.6);
}

.info-callout-content-in .text h4 {
  font-family: "DroidSans", sans-serif;
  font-weight: bold;
  letter-spacing: 0.72px;
  font-size: 24px;
}

.info-callout-content-blue .text h4 {
  color: #8aabd5;
}

.info-callout-content-green .text h4 {
  color: #b6c045;
}

/* IN */
.from-bottom {
  animation: fromBottom 1.2s ease forwards;
}

.from-top {
  animation: fromTop 1.2s ease forwards;
}

/* OUT */
.to-top {
  animation: toTop 1.2s ease forwards;
}

.to-bottom {
  animation: toBottom 1.2s ease forwards;
}

@keyframes fromBottom {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes fromTop {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes toTop {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-100%);
  }
}

@keyframes toBottom {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(100%);
  }
}

@keyframes rotF {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotB {
  to {
    transform: rotate(-360deg);
  }
}

/* NAV WRAPPER */
.pomp-slider .slider-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  position: absolute;
  bottom: 10px;
  padding: 0 30%;
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ARROWS */
.pomp-slider .custom-nav {
  position: static !important;
  width: 44px;
  height: 44px;
  border: solid 1px #3d6043;
  border-radius: 50%;
  color: #5f7f63;
  flex-shrink: 0;
}

.pomp-slider .custom-nav::after {
  font-size: 14px;
  font-weight: bold;
}

/* PAGINATION */
.pomp-slider .custom-pagination {
  display: flex;
  align-items: end;
  gap: 10px;
  position: relative;
}

/* NUMBER */
.pomp-slider .custom-pagination .swiper-pagination-bullet {
  width: auto;
  height: auto;
  background: none;
  opacity: 0.35;
  font-size: 16px;
  color: rgba(26, 26, 26, 0.15);
  font-weight: 500;
  color: #7a7a7a;
  margin: 0;
  cursor: pointer;
  font-family: "DroidSans", sans-serif;
  /* transition: all ease-in-out 1250ms; */
  transition:
    font-size 1.2s ease,
    opacity 1.2s ease;
}

/* ACTIVE */
.pomp-slider .custom-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  font-weight: 700;
  color: #2f4f2f;
  -webkit-text-stroke: 0.5px #bbb;
  font-family: DroidSans;
  font-size: 32px;
  font-weight: normal;
  line-height: 1;
  letter-spacing: normal;
  color: #bbb;
}

.pomp-slider {
  min-height: calc(100vh - 222px);
  padding-top: 135px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.myth-swiper .swiper-slide {
  background: #fff;
  height: auto;
  display: flex;
  flex-wrap: wrap;
}

.pomp-slider .myth-swiper {
  background-color: #fff;
}

.info-callout-card {
  display: flex;
  align-items: center;
  padding: 25px 0;
}

.info-callout-content {
  border-style: solid;
  border-width: 1.7px 1.7px 1.7px 0;
  width: 100%;
  min-height: 152px;
  border-radius: 0 15px 15px 0;
  overflow: hidden;
  margin-left: -40px;
  position: relative;
  display: flex;
}

.info-callout-content.info-callout-content-green {
  min-height: 180px;
}

.info-callout-content-blue {
  border-color: #8aabd5;
  background-color: rgba(138, 171, 213, 0.1);
}

.info-callout-content-green {
  border-color: #b6c045;
  background-color: rgba(182, 192, 69, 0.1);
}

.info-callout-content:before {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 120px;
  left: -61px;
  border-radius: 50%;
  border-style: solid;
  border-width: 1px;
  background: #fff;
}

.info-callout-content-blue:before {
  border-color: #8aabd5;
}

.info-callout-content-green:before {
  border-color: #b6c045;
}

.info-callout-content-in {
  padding: 10px 25px 10px 80px;
  display: flex;
  align-items: center;
}

.info-callout-img {
  position: relative;
  z-index: 1;
  margin-top: 7px;
}

.icc-box1 {
  margin: 0 20% 0 -80px;
}

.swiper-slide .image-wrap {
  opacity: 0 !important;
  transition-duration: 1500ms !important;
}

.swiper-slide.swiper-slide-active .image-wrap {
  opacity: 1 !important;
}

.pomp-slider .slider-nav .swiper-pagination {
  width: auto;
}

.pomp-slider .heading-block h1 {
  font-family: "MrEavesXLSanOT", sans-serif;
  font-size: 46px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: -0.46px;
  color: rgba(26, 26, 26, 0.8);
}

@media (max-width: 1366px) {
  .icc-box1 .info-callout-img img {
    width: 120px;
  }

  .icc-box2 .info-callout-img img {
    width: 150px;
  }

  .pomp-slider-item {
    gap: 10px 20px;
    padding-right: 4%;
  }

  .info-callout-content {
    min-height: 120px;
  }

  .info-callout-content.info-callout-content-green {
    min-height: 150px;
  }

  .image-wrap {
    width: 600px;
    height: 600px;
    margin: 0px 0px -175px -175px;
  }
}

@media (max-width: 1199px) {
  .image-wrap {
    width: 450px;
    height: 450px;
    margin: 0px 0px -100px -125px;
  }

  .icc-box1 .info-callout-img img {
    width: 90px;
  }

  .icc-box2 .info-callout-img img {
    width: 120px;
  }

  .info-callout-content-in {
    padding: 10px 15px 10px 70px;
  }

  .info-callout-content {
    min-height: 100px;
  }

  .info-callout-content.info-callout-content-green {
    min-height: 130px;
  }

  .info-callout-content:before {
    width: 85px;
    left: -38px;
  }

  .info-callout-content-in .text p {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .pomp-slider-item {
    padding-right: 20px;
  }

  .image-wrap {
    width: 300px;
    height: 300px;
    margin: 0px 0px -50px -75px;
  }

  .info-callout-card {
    padding: 15px 0;
  }

  .pomp-slider .slider-nav {
    gap: 15px;
  }

  .pomp-slider .custom-pagination .swiper-pagination-bullet {
    font-size: 14px;
  }

  .pomp-slider .custom-pagination .swiper-pagination-bullet-active {
    font-size: 24px;
  }

  .pomp-slider .custom-pagination {
    gap: 5px;
  }
}

@media (max-width: 767px) {
  .pomp-slider-item {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    justify-content: space-between;
  }

  .icc-box1 {
    margin: 0;
  }

  .image-wrap-outer {
    justify-content: center;
    margin-top: 40px;
  }

  .image-wrap {
    width: 400px;
    height: 400px;
    margin: 0px 0px -150px 0px;
  }

  .pomp-slider {
    padding-top: 77px;
  }

  .pomp-slider .heading-block h1 {
    font-size: 25px;
  }

  .pomp-slider-content {
    width: 100%;
    padding: 5px 10px;
    border-radius: 8px;
    box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.05);
    border: solid 1px rgba(0, 0, 0, 0.05);
    background-color: #fff;
  }

  .icc-box1 .info-callout-img img,
  .icc-box2 .info-callout-img img {
    width: 43px;
  }

  .info-callout-content:before {
    display: none;
  }

  .info-callout-content {
    min-height: 80px;
    border-radius: 10px 10px;
    border-width: 1px;
    margin-left: 0;
  }

  .info-callout-img {
    display: none;
  }

  .info-callout-card {
    padding: 5px 0;
  }

  .info-callout-content-in {
    padding: 10px 15px 10px 10px;
  }

  .pomp-slider {
    min-height: 700px;
  }

  .pomp-slider .slider-nav {
    gap: 18px;
    bottom: 250px;
    padding: 0px 10px;
  }

  .pomp-slider .custom-nav {
    width: 24px;
    height: 24px;
  }

  .pomp-slider .custom-nav::after {
    font-size: 8px;
  }

  .pomp-slider .custom-pagination .swiper-pagination-bullet {
    font-size: 12px;
  }

  .pomp-slider .custom-pagination .swiper-pagination-bullet-active {
    font-size: 16px;
    font-weight: normal;
  }

  .pomp-slider-item {
    padding-right: 0px;
  }

  .info-callout-content-in .text h4 {
    font-size: 16px;
  }

  .myth-heading,
  .fact-heading {
    padding: 10px 0px 10px 45px;
    margin-bottom: 3px;
  }
  .myth-heading {
    background: url("../images/mythbuster/wrong-icon.png") no-repeat center left;
    background-size: 38px;
  }
  .fact-heading {
    background: url("../images/mythbuster/right-icon.png") no-repeat center left;
    background-size: 38px;
  }
  .myth-heading h4,
  .fact-heading h4 {
    margin-bottom: 0px;
  }
}

@media (max-width: 575px) {
  .image-wrap-outer {
    margin: 40px -25px 0px -25px;
  }

  .image-wrap {
    width: 330px;
    height: 330px;
  }

  .pomp-slider .slider-nav {
    gap: 15px;
    bottom: 175px;
  }
}
/*****************************/
.pomp-slider .slider-nav .swiper-pagination {
  width: auto;
  height: 44px;
  padding: 8px 0;
}
.pagination-dots {
  font-size: 18px;
  opacity: 0.4;
  padding: 0 6px;
  pointer-events: none;
}
input#menu-toggle-input:checked ~ .sidebar-menu .menu-close:before {
  content: "";
  width: calc(1000%);
  background: rgba(0, 0, 0, 0.25);
  height: 100%;
  right: 450px !important;
  position: fixed !important;
  top: 0 !important;
  display: block;
}

@media (max-width: 767px) {
  input#menu-toggle-input:checked ~ .sidebar-menu .menu-close:before {
    display: none;
  }
}
