:root {
  --link-color--link-primary: var(--base-color-brand--blue);
  --border-color--border-primary: var(--base-color-neutral--neutral-lightest);
  --text-color--text-secondary: var(--base-color-neutral--neutral-darker);
  --background-color--background-error: var(--base-color-system--error-red);
  --text-color--text-error: var(--base-color-system--error-red-dark);
  --background-color--background-primary: var(--base-color-neutral--black);
  --text-color--text-alternate: var(--base-color-neutral--white);
  --background-color--background-secondary: var(--base-color-brand--blue);
  --base-color-neutral--white: #fff;
  --base-color-neutral--neutral-light: #aaa;
  --background-color--background-tertiary: var(--base-color-brand--pink);
  --background-color--background-alternate: var(--base-color-neutral--white);
  --background-color--background-success: var(--base-color-system--success-green);
  --background-color--background-warning: var(--base-color-system--warning-yellow);
  --border-color--border-secondary: var(--base-color-brand--blue);
  --border-color--border-alternate: var(--base-color-neutral--neutral-darker);
  --link-color--link-secondary: var(--base-color-neutral--black);
  --link-color--link-alternate: var(--base-color-neutral--white);
  --text-color--text-primary: var(--base-color-neutral--black);
  --text-color--text-success: var(--base-color-system--success-green-dark);
  --text-color--text-warning: var(--base-color-system--warning-yellow-dark);
  --base-color-brand--blue-light: #d9e5ff;
  --base-color-brand--blue: #0870c7;
  --base-color-brand--blue-dark: #080331;
  --base-color-brand--pink-light: #ffaefe;
  --base-color-brand--pink: #dd23bb;
  --base-color-brand--pink-dark: #3c043b;
  --base-color-neutral--black: #000;
  --base-color-neutral--neutral-lightest: #eee;
  --base-color-neutral--neutral-lighter: #ccc;
  --base-color-neutral--neutral: #666;
  --base-color-neutral--neutral-dark: #444;
  --base-color-neutral--neutral-darker: #222;
  --base-color-neutral--neutral-darkest: #111;
  --base-color-system--success-green: #cef5ca;
  --base-color-system--success-green-dark: #114e0b;
  --base-color-system--warning-yellow: #fcf8d8;
  --base-color-system--warning-yellow-dark: #5e5515;
  --base-color-system--error-red: #f8e4e4;
  --base-color-system--error-red-dark: #3b0b0b;
  --base-color-system--focus-state: #2d62ff;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

body {
  color: #231f20;
  font-family: Proximanova, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--link-color--link-primary);
}

ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1rem;
}

ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 4px;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.utility-page_component {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility-page_wrapper {
  max-width: 20rem;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.utility-page_form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.utility-page_image {
  margin-left: auto;
  margin-right: auto;
}

.global-styles {
  display: block;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.form_input {
  min-height: 3rem;
  border: 1px solid var(--border-color--border-primary);
  background-color: rgba(0, 0, 0, 0);
  margin-bottom: .75rem;
  padding: .5rem 1rem;
}

.form_input::-ms-input-placeholder {
  color: var(--text-color--text-secondary);
}

.form_input::placeholder {
  color: var(--text-color--text-secondary);
}

.form_message-error {
  background-color: var(--background-color--background-error);
  color: var(--text-color--text-error);
  margin-top: .75rem;
  padding: .75rem;
}

.button {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-alternate);
  text-align: center;
  border-radius: .25rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
}

.nav_fixed {
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.section_header {
  z-index: 2;
  margin-top: -18px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.global_padding {
  padding-left: 5%;
  padding-right: 5%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
}

.padding-section-large {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.overview_text {
  color: var(--background-color--background-secondary);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}

.toggle {
  width: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #f7f7f7;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  font-size: 18px;
  font-weight: 700;
  transition: opacity .3s;
  display: flex;
}

.toggle:hover {
  opacity: .6;
}

.gray_box {
  background-color: #f0f0f0;
  border-radius: 16px;
  padding: 32px;
  font-size: 20px;
}

.mb-xsmall {
  margin-bottom: 10px;
}

.mb-xsmall.top30 {
  margin-top: 30px;
}

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

.mb-xsmall.top-10 {
  margin-top: -20px;
}

.trigger {
  width: 28px;
  height: 28px;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.line {
  width: 3px;
  height: 80%;
  background-color: #000;
  border-radius: 100px;
  position: absolute;
}

.line.l2 {
  width: 80%;
  height: 3px;
  flex: none;
  position: absolute;
}

.line.l1 {
  flex: none;
}

.line_horizontal {
  width: 80%;
  height: 2px;
  background-color: #000;
  border-radius: 100px;
  position: absolute;
}

.div-block-3 {
  display: none;
}

.nav-menu {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.padding-section-small {
  padding-top: 20px;
  padding-bottom: 48px;
}

.navigation {
  border-top: 2px solid #000;
}

.header_component {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .55fr;
  grid-auto-columns: 1fr;
  display: none;
}

.image {
  width: 100%;
}

.mb-small {
  margin-bottom: 16px;
}

.mb-medium {
  margin-bottom: 28px;
}

.mb-large {
  margin-bottom: 20px;
}

.mb-large.bot10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.letpticell_box {
  border: 3px solid #ebebeb;
  border-radius: 20px;
  padding: 20px;
}

.top_pick {
  background-color: var(--background-color--background-secondary);
  color: var(--text-color--text-alternate);
  margin-bottom: 5px;
  padding-left: 4px;
  padding-right: 4px;
  font-size: 23px;
  font-weight: 600;
  display: inline-block;
}

.text-block-3 {
  color: var(--background-color--background-secondary);
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
}

.div-block-5 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-6 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.letpticell_info {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  display: flex;
}

.get_letpticell {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--base-color-neutral--white);
  text-align: center;
  text-transform: uppercase;
  background-color: #74c713;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .3s;
  display: flex;
}

.get_letpticell:hover {
  opacity: .75;
}

.text-block-4 {
  text-align: center;
  font-size: 15px;
}

.component_left {
  max-width: 760px;
}

.div-block-10 {
  color: #74c713;
  padding-top: 10px;
  padding-bottom: 10px;
}

.rating_value {
  font-weight: 700;
}

.lepticell_grid {
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 26px;
}

.review_box {
  border-bottom: 1px solid #e4e4e4;
  padding-top: 24px;
  padding-bottom: 24px;
}

.dropdown_wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-bottom: 1px solid #e4e4e4;
  justify-content: space-between;
  align-items: center;
  padding-top: 4px;
  padding-bottom: 4px;
}

.dropdown_wrap.is-first {
  border-top: 1px solid #e4e4e4;
}

.tab {
  border-bottom: 1px solid #e4e4e4;
}

.div-block-13 {
  height: 0;
  overflow: hidden;
}

.pros-cons {
  flex-flow: column;
  margin-top: 20px;
  display: flex;
}

.lepticell_footer {
  max-width: 420px;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  display: flex;
}

.linkblock {
  font-weight: 700;
  text-decoration: underline;
  transition: opacity .3s;
}

.linkblock:hover {
  opacity: .75;
}

.div-block-10-copy {
  color: #74c713;
}

.list {
  color: var(--background-color--background-secondary);
  font-size: 16px;
}

.link-block-3 {
  color: var(--background-color--background-secondary);
}

.paragraph {
  font-size: 24px;
}

.dropdown {
  width: 100%;
}

.dropdown-list {
  padding: 10px 24px 24px 40px;
  position: static;
}

.dropdown-list.w--open {
  background-color: #f7f7f7;
}

.toggle2 {
  width: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  font-size: 18px;
  font-weight: 700;
  transition: opacity .3s;
  display: flex;
}

.toggle2:hover {
  opacity: .6;
}

.dropdownlist2 {
  background-color: rgba(221, 221, 221, 0);
  padding: 10px 24px 24px;
  position: static;
}

.feature_item {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: start;
  font-size: 19px;
  display: grid;
}

.checkmark_icon {
  height: 12px;
  margin-top: 7px;
}

.feature_list {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-16 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  display: flex;
}

.list-wrap {
  padding-left: 16px;
}

.price_list {
  font-size: 18px;
}

.heading {
  font-size: 20px;
}

.what-on {
  min-height: 450px;
  background-color: #f7f7f7;
  padding: 24px;
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
}

.heading_wrap {
  max-width: 760px;
}

.header_grid {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  color: #fff;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.banner {
  min-height: 57px;
  background-color: #0f68a4;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  line-height: 1.2;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.review_text {
  color: #81cc29;
  margin-top: -25px;
  font-size: 26px;
  font-weight: 700;
}

.header_left {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.padding_global2 {
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
}

.container2 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.banner_text {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.header_img {
  z-index: 2;
  width: 400px;
  max-width: 100%;
  position: relative;
}

.lepticell_heading-wrap {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.letpticell_grid {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 20px;
  display: grid;
}

.div-block-25 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  display: flex;
}

.div-block-26 {
  border-bottom: 1px solid #b5b5b5;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  font-weight: 700;
  display: flex;
}

.heading-2 {
  color: var(--background-color--background-secondary);
  font-size: 24px;
}

.heading-2.top20 {
  margin-top: 40px;
}

.heading-2.top10 {
  margin-top: 20px;
}

.pros_grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: start;
  display: grid;
}

.pros_grid.top30 {
  margin-top: 40px;
  display: flex;
}

.pros_grid.top40 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-top: 40px;
}

.pro_heading {
  color: var(--background-color--background-secondary);
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.fat_burner {
  background-color: var(--background-color--background-secondary);
  color: #fff;
  margin-bottom: 10px;
  padding: 12px 20px;
  font-weight: 700;
}

.supplimet_head {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-block-8 {
  background-color: var(--background-color--background-secondary);
  color: #fff;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
}

.fat_name {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.2;
}

.fat_name.smaller {
  font-size: 48px;
}

.suppliment_grid {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.suppliment_info {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 20px;
  display: grid;
}

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

.rating_wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #f0f0f0;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  padding: 16px;
  font-size: 17px;
  line-height: 1.2;
  display: flex;
}

.rating {
  color: var(--background-color--background-secondary);
  font-size: 65px;
  font-weight: 700;
  line-height: 1;
}

.suppliment_list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.suppliment_item {
  border-bottom: 3px solid #868686;
  padding-top: 16px;
  padding-bottom: 40px;
}

.suppliment_item.last {
  border-bottom-style: none;
}

.div-block-34 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.section-copy-copy {
  display: none;
}

.div-block-35 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.div-block-36 {
  width: 100%;
  height: 100%;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.header_bg {
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url('../images/header-bar.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 20px;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.text-block-9.bigger {
  font-size: 28px;
}

.heading-3, .heading-4 {
  font-size: 60px;
}

.top20 {
  margin-top: 20px;
}

.underline {
  text-decoration: underline;
}

.footer-logo {
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.container-footer {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
}

.padding-footer {
  text-align: center;
  padding: 30px 5%;
}

.footers {
  text-align: center;
  background-color: #fff;
  border-top: 2px solid #000;
  margin-top: 0;
  margin-bottom: 0;
}

.foot-notes {
  font-size: 16px;
}

.heading-5 {
  font-family: Droid Serif, serif;
  font-size: 22px;
}

.testi-block {
  border-style: solid;
  border-width: 0 0 1px;
  border-color: black black var(--base-color-neutral--neutral-light);
  margin-top: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.testi-block2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-style: solid;
  border-width: 0 0 1px;
  border-color: black black var(--base-color-neutral--neutral-light);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  display: block;
}

.testi-block2.last {
  margin-bottom: 0;
}

.div-block-39 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.image-5 {
  border-radius: 150px;
}

.right {
  text-align: right;
}

.imgtesti {
  width: 140px;
  border: 1px solid #fff;
  border-radius: 150px;
  margin-top: 10px;
  box-shadow: 2px 2px 12px 3px rgba(0, 0, 0, .2);
}

.star-img {
  padding-bottom: 5px;
}

.quick-stack {
  padding-top: 10px;
  padding-bottom: 10px;
}

.video {
  margin-top: 10px;
}

.resultvary {
  text-align: right;
  margin-top: 0;
  font-size: 16px;
}

@media screen and (max-width: 991px) {
  .section_header {
    margin-top: 0;
    padding-top: 0;
  }

  .global_padding {
    margin-top: 0;
  }

  .header_grid {
    min-height: 200px;
  }

  .banner {
    font-size: 18px;
  }

  .header_left {
    padding-top: 0;
    padding-bottom: 20px;
  }

  .banner_text {
    font-size: 20px;
  }

  .letpticell_grid, .suppliment_grid {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .div-block-35 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .header_bg {
    margin-top: 0;
    padding-top: 0;
    top: 0;
  }

  .heading-3 {
    margin-top: -10px;
    font-size: 50px;
  }

  .heading-4 {
    font-size: 50px;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 18px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: .875rem;
  }

  .overview_text {
    font-size: 22px;
  }

  .gray_box {
    padding: 20px;
    font-size: 18px;
  }

  .nav-menu {
    justify-content: center;
    align-items: center;
  }

  .padding-section-small {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .header_component {
    grid-template-columns: 1fr;
  }

  .mb-small {
    margin-bottom: 12px;
  }

  .mb-medium {
    margin-bottom: 24px;
  }

  .top_pick {
    font-size: 18px;
  }

  .text-block-3 {
    font-size: 28px;
  }

  .div-block-5 {
    grid-template-columns: 1fr;
  }

  .get_letpticell, .paragraph {
    font-size: 20px;
  }

  .toggle2 {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .what-on {
    min-height: 300px;
  }

  .image-2 {
    width: 170px;
  }

  .header_grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .banner {
    z-index: 5;
    min-height: 60px;
  }

  .review_text {
    font-size: 22px;
  }

  .header_left {
    padding-top: 0;
    padding-bottom: 20px;
  }

  .banner_text {
    font-size: 18px;
  }

  .lepticell_heading-wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .letpticell_grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
    margin-bottom: 32px;
  }

  .div-block-26 {
    font-size: 17px;
  }

  .pros_grid {
    grid-template-columns: 1fr;
  }

  .supplimet_head {
    flex-flow: wrap;
  }

  .text-block-8 {
    font-size: 40px;
  }

  .fat_name {
    font-size: 44px;
  }

  .suppliment_grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .suppliment_info {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .rating_grid {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: start;
  }

  .rating_wrap {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
  }

  .rating {
    font-size: 50px;
  }

  .suppliment_item {
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .div-block-35 {
    padding-top: 0;
  }

  .grade {
    width: 50px;
  }

  .heading-3, .heading-4 {
    font-size: 40px;
  }

  .footer-logo {
    justify-content: center;
    align-items: center;
  }

  .div-block-38 {
    text-align: center;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  .overview_text {
    font-size: 20px;
  }

  .mb-xsmall {
    margin-bottom: 8px;
  }

  .trigger {
    width: 28px;
    height: 28px;
  }

  .padding-section-small {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .mb-medium {
    margin-bottom: 16px;
  }

  .get_letpticell, .linkblock {
    font-size: 16px;
  }

  .list-wrap {
    padding-left: 8px;
  }

  .what-on {
    min-height: auto;
  }

  .image-2 {
    width: 150px;
  }

  .header_grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .banner {
    font-size: 16px;
  }

  .lepticell_heading-wrap {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .letpticell_grid {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    margin-bottom: 24px;
  }

  .div-block-26 {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .pros_grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .pros_grid.top30 {
    flex-flow: column;
  }

  .text-block-8 {
    font-size: 34px;
  }

  .fat_name {
    font-size: 36px;
  }

  .fat_name.smaller {
    font-size: 28px;
  }

  .suppliment_grid, .rating_grid {
    grid-template-columns: 1fr;
  }

  .rating_wrap {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
  }

  .rating {
    font-size: 40px;
  }

  .image-4 {
    width: 160px;
  }

  .text-block-9 {
    font-size: 16px;
  }

  .text-block-9.bigger {
    font-size: 25px;
    line-height: 1.3;
  }

  .heading-3 {
    font-size: 35px;
  }

  .heading-4 {
    font-size: 36px;
  }

  .div-block-37, .product_img-wrap {
    text-align: center;
  }

  .text-block-10, .text-block-11, .text-block-12, .text-block-13, .text-block-14, .text-block-15, .text-block-16, .text-block-17, .text-block-18, .text-block-19, .text-block-20, .text-block-21, .text-block-22, .text-block-23, .text-block-24, .text-block-25, .text-block-26, .text-block-27, .text-block-28, .text-block-29, .text-block-30, .text-block-31, .text-block-32, .text-block-33, .text-block-34, .text-block-35, .bold-text, .text-block-36, .text-block-37, .text-block-38, .text-block-39 {
    font-size: 18px;
  }
}

#w-node-c5dfbddc-e045-e73d-bfa9-781bcb92f240-278f79d2, #w-node-c09a03f6-ce07-bf8d-9117-7e79b9cc8737-278f79d2 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_1dec5d5e-f696-bd08-6dfc-4d001ce1394d-278f79d2 {
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
}

#w-node-a700815b-0805-d258-68d8-862e858ff084-278f79d2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_69d0e40e-b4f0-9c1d-fff6-6d9a90472faf-278f79d2 {
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
}

#w-node-_69d0e40e-b4f0-9c1d-fff6-6d9a90472fb5-278f79d2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a593fe5c-13e2-7ec6-943e-a14ae2f5e7d7-278f79d2 {
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
}

#w-node-a593fe5c-13e2-7ec6-943e-a14ae2f5e7dd-278f79d2, #w-node-dc4264e9-b6be-e875-84be-32f9a5335753-278f79d2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dc4264e9-b6be-e875-84be-32f9a5335767-278f79d2, #w-node-dc4264e9-b6be-e875-84be-32f9a533576b-278f79d2 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_90c87287-ecad-98f7-b172-864967847749-278f79d2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_90c87287-ecad-98f7-b172-864967847775-278f79d2, #w-node-_90c87287-ecad-98f7-b172-864967847779-278f79d2, #w-node-a88fca63-3153-2a3b-8d5d-caa47681bd48-278f79d2, #w-node-_2d068b1c-34c8-4a33-addd-10d6db6a160e-278f79d2 {
  grid-area: 1 / 1 / 2 / 2;
}

@media screen and (max-width: 767px) {
  #w-node-a88fca63-3153-2a3b-8d5d-caa47681bd9f-278f79d2, #w-node-_2d068b1c-34c8-4a33-addd-10d6db6a1665-278f79d2 {
    order: -9999;
  }
}


@font-face {
  font-family: 'Proximanova';
  src: url('../fonts/ProximaNova-Extrabold.otf') format('opentype'), url('../fonts/ProximaNova-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Proximanova';
  src: url('../fonts/ProximaNova-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Proximanova';
  src: url('../fonts/ProximaNova-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Proximanova';
  src: url('../fonts/ProximaNova-RegItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Proximanova';
  src: url('../fonts/ProximaNova-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}